Hacker Newsnew | past | comments | ask | show | jobs | submit | jnericks's commentslogin

+1


Learn and adopt a flexibility routine, perform all or some of it before doing a workout or just at night before bed... I suggest the Limbar 11 as a starting point https://youtu.be/FSSDLDhbacc


Agreed, debuggers can be nice to have but they are mostly a crutch.... Write modular code with unit tests and you find your need for debuggers is really a rarity


Not every codebase you are working with (or would be working with) has unit tests.

Sometimes you’ll inherit such a project from a dev who left and you would be begging for a debugger.

Otherwise failing that, then the rewrite begins... Debuggers save us that effort in such a codebase.


This. Only time I use debugger working on C# is on crash dumps.


You can also use the bang command at the end of your query.... Just learned this myself recently and makes changing your search engine quickly if you don't like the results


And you can also write bangs "backwards", i.e. `w!` instead of `!w`. This may not seem like a big deal until you've tried to write `foo !w` on Android and had it "corrected" to `foo! w`.


You can use the bang anywhere in the qurey.


I didn't know this, thank you.


check out the videos that Francesc Campoy is putting out on his youtube channel "JustForFunc", he does code reviews and the one of him implementing the context package is great for learning the go way of doing things.

https://www.youtube.com/channel/UC_BzFbxG2za3bp5NRRRXJSw

https://github.com/campoy/justforfunc


galaxy s7/note7 are both waterproof with 3.5mm jacks


this was inevitable


You are correct but part of the work being done to get .NET native working is the aot compilation. https://blog.rendle.io/what-ive-learned-about-dotnet-native/


This, I've recently been writing more Java lately and I miss C# quite a bit


  // this hack is gross  
  final String[] val = new String[1];  
  Callable func = () -> val[0] = "Hello";  
  func.call();  
  System.out.print(val[0]);


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: