Programming

lianass, in MERN Stack Development Company | MERN Stack Developer

Yes, now there are really many companies that help in the development of your business with their latest technologies. I spent a long time choosing specialists read more here And found a large search of worthy companies from which I chose the one that really helped me. Thanks to her, my business has reached a new level.

harsh3466, in Resources for begginer programmers

This is great. Thank you for sharing. Just a small correction. macOS default shell is zsh.

javajuggler,

thanks for the correction. by the way i would like to invite you to join our community, register and contribute. thanks

paucampillo, in Facultat d'Informàtica de Barcelona

A

paucampillo,

B

paucampillo,

C

paucampillo,

D

paucampillo, in Facultat d'Informàtica de Barcelona

test

HectorASW, in Just a try

Hey hey hello

HectorASW,

hihihihihihihi

HectorASW, in Just a try

deleted_by_author

  • Loading...
  • robert_tayl, in Can I Purchase Ativan Online Cheap In Oregon USA

    Looking for a suitable or reliable source of getting all kind of drugs delivered swiftly and discreetly to your doorstep with no confistication…? I strongly recommend buying from LIDCO then… They have the best analysis and protocols.

    LIDCO DRUGSTORE is a well known online illicit drug store that offers innovative delivery of both prescribed and non-prescribed drugs to your doorstep. You can look them up on Instagram @lidcodrugs. They are safe, legit and have a money back guarantee policy if you didn’t get your package. They offer free shipping on orders over $300 and 12% off for your first order.

    LIDCO DRUGSTORE also provides in depth comparative analysis on more than 300 drug delivery technologies and delivery devices. Since 2011 LIDCO DRUGSTORE has been dealing with all kinds of drug trades in the dark.

    Drugs like Clonazepam, Zopiclone, Lorazepam, Promethazine, Carisoprodol, Meth, LSD, MDMA, DMT, OxyContin, Dexedrine, Hydrocodone, Fentanyl, Phentermine, Valium, Molly, Ecstasy, Ativan, Tramadol, Morphine, Hydromorphone, Suboxone, Shrooms, Vapes, Adderall, Oxycodone, Anxiety medications, Pain medications, Marijuana strains, Psychedelic drugs, Modafinil, Cialis, Alfuzosin, Vyvanse, Xanax, Ketamine, Ritalin, Cocaine, Codeine, Viagra and more…

    They deliver worldwide… ||United States, Russia, Italy, Philippine, United Kingdom, Brazil, Netherlands, Australia, Canada, Germany, France, Italy, China, Brazil, Colombia, Argentina, South Africa, Ukraine etc…

    Get in touch with them with any of the following:

    |Signal/WhatsApp: +1 (323) 379-3199

    |Instagram: @lidcodrugstore

    |Telegram: lidco2011

    |Email: lidcodrugs@gmailcom

    rlogicaltechsoft, in Leverage Our Custom iOS App Development Services

    From iOS app consulting to design to development and deployment, you can smoothly enjoy the process with our unique mechanism. Our talented pool of competent mobile app developers is dedicated to delivering result-oriented iPhone app development services. Over the past years, we have worked across all industry verticals and provided remarkable iOS app solutions.

    DarkNightoftheSoul, in Need Advice: "Developer Training" doesn't feel helpful and I am not sure what to do
    @DarkNightoftheSoul@mander.xyz avatar

    ass value

    ehhhehehe

    Seriously though, maybe the guy is not meant for teaching. A lot of amazing performers in industry suck at teaching the relevant skills, and vice versa.

    ZahzenEclipse,

    lol fixed- thank you. I think you are on to something there - I don't necessarily think he is a bad MENTOR but I don't think he's taught programming before so he doesn't have a formal system for teaching us. I am wondering if there might be a way I can try to work with him to try to make what we are learning/teaching easier to digest for myself cause i am certain it would benefit the other devs.

    Snarwin, in Need Advice: "Developer Training" doesn't feel helpful and I am not sure what to do

    Honestly, meetings like the one you describe don't sound like they'd be helpful for anyone, especially not beginners. You say you "feel like" the new developers are getting something out of them, but have you actually asked them? My guess is, they're just as bored as you are, but doing a better job of hiding it.

    Unforeseen,

    Agreed this sounds horrific to me. I wouldn’t be able to learn that way, I’d probably end up resenting it

    ZahzenEclipse,

    Honestly, appreciate you all confirming this. Makes me feel less crazy or less of the problem. I was at the point that I felt like I needed to go get tested for ADHD cause of my inability to focus on these presentations at times.

    ZahzenEclipse,

    Thank you for responding. I think you may be on to something in that sense regarding the new developers. I think they are still so new in software dev that they probably aren't even sure what is the most effective for them but the reason why I say they are probably learning better than I am is due to the fact that they worked (watched) him design and create business rules DLLs and standards which we didn't have when I first created my first program (I started about 2 years before others, while the team was still brand new and we couldn't get devs from outside to stay longer than a year).

    TheOneCurly, in Need Advice: "Developer Training" doesn't feel helpful and I am not sure what to do

    Is the atmosphere appropriate to you taking a laptop with you and doing some personal research/training while the lecture is happening? You can be involved when necessary and catch important tips but otherwise can treat it like self-led learning time.

    ZahzenEclipse,

    Thank you - I appreciate the response. That is what I do but I felt like I wasn't being very helpful in both situations because I was attempting to multitask and I am honestly terrible at it. Recently, I've tried to try my best to focus on the content, thinking I was struggling due to multi-tasking but I think it's just the way he's teaching. He is an amazing supervisor/boss so I know I can talk to him but I feel like I need to come to him with concrete suggestions before doing so. I don't like raising problems without solutions personally. I do appreciate the thought though, maybe that is what I should revert to doing.

    kevincox, in git bisect and the importance of a clean history
    @kevincox@lemmy.ml avatar

    All of this can only work with a clean git history containing only working commits.

    This isn’t really true.

    1. You can use git bisect skip to skip commits that can’t be evaluated. So if you are tracking down the failure of test foo and this commit fails to build, you can skip it.
    2. If all merged commits are green then you can use –first-parent to avoid testing inside a development branch. This way you can identify which merge caused the issue, even if other merges had broken commits.

    So it is easier in general if you have all working commits, but it isn’t necessary. Really as long as you have green history on your main branch you will be able to get good results without much effort. I would highly suggest using some sort of merge-queue based workflow to ensure that the master branch is always green.

    I would generally prefer using –first-parent rather than forcing squashing. As smaller commits can be much easier to understand and the fact that commit IDs don’t change when being merged can make it much easier to manage stacked PRs and hotfix backporting.

    danrot,

    I agree that some stuff is easier when not squashing commits, but for the teams I've been working with I've felt that the pros of squashing outweigh the cons, but of course YMMV.

    But I didn't know about git bisect skip, thanks for the tip! But sincere question: What happens if there are e.g. three adjacent broken commits? If I have skip all three of those and the error was introduced in one of them, then git cannot tell me which commit introduced the error, right?

    kevincox,
    @kevincox@lemmy.ml avatar

    Yeah, if the problem was introduced in the skipped commits or the commit after the skipped commits git won’t be able to tell the difference. It it will only be able to know that it was one of those N+1 commits.

    But as long as most of your commits are green it should be easy enough to do the final narrowing.

    kevincox, in git bisect and the importance of a clean history
    @kevincox@lemmy.ml avatar

    bisect stands for “binary search commit”

    Haha, that is a funny misunderstanding. “bisect” stands for bisect. It is a word. It means to cut in half. Because the command cuts the range of suspicious commits into two, then tests which half the problem started in.

    to divide into two usually equal parts

    www.merriam-webster.com/dictionary/bisect

    But I guess it can be misread as BInary SEarch CommiT.

    danrot,

    I swear, I didn't come up with that myself, I read that somewhere else, but of course I don't have a source anymore 🙈 Maybe some git developer is a huge fan of wordplays?

    yetAnotherUser, in Can I Purchase Ativan Online Cheap In Oregon USA

    ??

    Turbo, in Using LLMs to reverse JavaScript variable name minification

    Pretty cool!

  • All
  • Subscribed
  • Moderated
  • Favorites
  • programming
  • kavyap
  • ngwrru68w68
  • Durango
  • DreamBathrooms
  • mdbf
  • magazineikmin
  • thenastyranch
  • Youngstown
  • khanakhh
  • slotface
  • everett
  • vwfavf
  • rosin
  • osvaldo12
  • provamag3
  • GTA5RPClips
  • ethstaker
  • tacticalgear
  • InstantRegret
  • cisconetworking
  • cubers
  • tester
  • anitta
  • modclub
  • Leos
  • normalnudes
  • megavids
  • JUstTest
  • All magazines