Hacker News
- Which AI Writes the Best Code or Generates the Most Realistic Image? https://www.nytimes.com/2024/04/15/technology/ai-models-measurement.html 7 comments
- No Engineer will ever be happy with a line of code that he didn't write himself. http://www.gamasutra.com/blogs/BenjaminQuintero/20100625/5446/Now_I_Know_How_Epic_Feels.php 29 comments
- Show HN: A GPT-4 chat loop that can directly read and write your code files https://github.com/martinpllu/chisel 3 comments
- Writing Testable Code https://medium.com/feedzaitech/writing-testable-code-b3201d4538eb 45 comments java
- Write asynchronous code in a breeze with async and await https://www.carlrippon.com/typescript-async-and-await/ 4 comments javascript
- Where to learn to write better code? https://www.reddit.com/r/compsci/comments/5jk0pk/where_to_learn_to_write_better_code/ 47 comments compsci
- Having some trouble with some simple code I'm writing https://www.reddit.com/r/learnprogramming/comments/62piz6/having_some_trouble_with_some_simple_code_im/ 3 comments learnprogramming
- How I got a medal from the Army for writing code http://vivin.net/2014/06/26/how-i-got-a-medal-for-writing-code/ 49 comments programming
- Checkerboard Programming - match checkerboard patterns by writing code https://www.checkerboardprogramming.com/ 5 comments programming
- Don’t Do coding tricks when writing embedded systems. https://www.electronicdesign.com/embedded-revolution/don-t-do-it-coding-tricks 23 comments programming
- How to get better at writing simpler, more efficient code? https://www.reddit.com/r/learnprogramming/comments/7ola6h/how_to_get_better_at_writing_simpler_more/ 10 comments learnprogramming
- Writing efficient numerical code in D http://blog.mir.dlang.io/ndslice/algorithm/optimization/2016/12/12/writing-efficient-numerical-code.html 9 comments programming
- The Law of Demeter - Writing Shy Code http://codeahoy.com/2016/06/17/the-law-of-demeter-writing-shy-code/ 16 comments programming
- A blind Google engineer explains how he writes code http://www.businessinsider.com/how-blind-google-engineer-writes-code-2015-5 39 comments programming
- how do you write your DSL with a safe code walker? http://guicho271828.github.io/blog/2013/05/05/common-lisp-de-code-walker-woshi-zhuang-surunara/ 7 comments lisp
- Weird error when writing code using OpenCobolIDE http://www.csis.ul.ie/cobol/examples/Tables/MonthTable.htm 9 comments cobol
- Writing C code in Java/Clojure: GraalVM specific programming https://yyhh.org/blog/2021/02/writing-c-code-in-javaclojure-graalvm-specific-programming/ 5 comments java
- Writing code to play NES games [podcast] https://player.fm/series/cross-cutting-concerns-podcast/podcast-098-eric-potter-on-nintaco 4 comments programming
- Buterin: Ethereum Can’t be Forced to Adopt Code I Write, Merit of Decentralization https://cryptoslate.com/buterin-ethereum-cant-be-forced-to-adopt-code-i-write-merit-of-decentralization/ 70 comments ethereum
- I write a blackjack game. Can anyone review my code and reply-back to me? https://github.com/varheartnull/Blackjack 15 comments csharp
- Is it OK to use try - catch blocks as a way of writing failsafe code? https://www.reddit.com/r/javascript/comments/6nsur3/is_it_ok_to_use_try_catch_blocks_as_a_way_of/ 35 comments javascript
- Need help to write a non-blocking code or asynchronous code in Arduino, any help is appreciated. https://www.reddit.com/r/arduino/comments/ham5vn/need_help_to_write_a_nonblocking_code_or/ 18 comments arduino
- If you had to guess, what percentage of retail investors write code to help make decisions? https://www.reddit.com/r/investing/comments/6xv87w/if_you_had_to_guess_what_percentage_of_retail/ 9 comments investing
- Poor Visual Studio code generation for reading from and writing to member variables http://www.forwardscattering.org/post/51 20 comments cpp
- Simple Zen Coding for Emacs, write mark-up faster http://www.emacswiki.org/emacs/zencoding#toc2 23 comments programming
- Google quietly launches internal AI model named 'Goose' to help employees write code faster, leaked documents show https://www.businessinsider.com/google-goose-ai-model-language-ai-coding-2024-2 79 comments technology
- After 2 years of learning programing, I knew how to write code, but didn't know how to make an application. So now, I'm writing the guide that I wish I had at that time. Here's part 1. https://www.reddit.com/r/learnprogramming/comments/gyqxed/after_2_years_of_learning_programing_i_knew_how/ 177 comments learnprogramming
- ProtoGraphQL - Build, Visualize and Test your new GraphQL implementation. All before writing your first line of code. http://www.protographql.com/ 6 comments reactjs
- Certain efficient code is not possible to write in Rust due to no match with fallthrough or goto, will such extensions come to unsafe code? https://www.reddit.com/r/rust/comments/5xsro8/certain_efficient_code_is_not_possible_to_write/ 20 comments rust
- I'm an engineer who is doing a PhD in computer science but has almost no professional programming experience. Here is what it looks like when I write code. How am I doing? https://www.youtube.com/watch?v=q4kg5tLCO5E 94 comments coding
- I worked endlessly for 7 months writing C++ code to develop the world's first polygonal 3D modeling app for the HoloLens x-post /r/hololens https://vertostudio.com/holo.php 8 comments technology
- Is there a better way to write this benchmark or get better LLVM-IR result? I wanted to analyse the generated LLVM-IR code but it generates a ~8Mb .ll file (rustc -C opt-level=3 --emit=llvm-ir foo.rs -o foo.ll ) that hurts to read through for such a small .rc file... http://pastebin.com/mgtyhbxw 9 comments rust
- The IBM Swift Sandbox - Interactive Website that lets you write Swift code and execute it in a server environment https://developer.ibm.com/swift/2015/12/03/introducing-the-ibm-swift-sandbox/ 26 comments programming
- Created Twitter bot that runs as a Cron job on my computer and writes to the filesystem. Where can I host it with minimal changes to the code? https://twitter.com/BenFrankBot/with_replies 3 comments learnprogramming
- As someone who doesn't write code, I think the idea of "Done is better than perfect" is wrong. Please tell me your side of it. http://www.wired.com/wiredenterprise/2011/12/facebook-hackathon 27 comments programming
- When writing performance-sensitive code, consider custom, specialized State/Reader/Writer monads http://stackoverflow.com/questions/3236442/iteration-of-a-randomized-algorithm-in-fixed-space-and-linear-time/3239837#3239837 9 comments haskell
- "Coding in C++ is like a knife fight. The compiler is your first enemy, and the system you're writing is the second." http://web.mit.edu/~axch/www/writing_rant.html? 182 comments programming
- I get the impression they write code by asking a million tiny questions and cutting and pasting together all the replies. http://blogs.msdn.com/oldnewthing/archive/2009/08/04/9856634.aspx 46 comments programming
- Beautiful folding in Haskell : how to write a memory-friendly mean without ugly code http://squing.blogspot.com/2008/11/beautiful-folding.html 66 comments programming
- It’s a matter of thinking for 3 hours, writing 3 minutes worth of elegant code, versus thinking for 3 minutes, spending 3 hours typing up code http://compsci.ca/blog/developing-at-the-speed-of-thought/ 64 comments programming