mchahn

↗ HN profile [ 73.9 ms ] full profile
Karma
0
Created
()
Submissions
0
  1. Automatically refactor JavaScript or TypeScript functions to use object parameters instead of multiple positional parameters, improving readability and maintainability.

  2. I've just released Function Explorer. It is a vscode extension that provides a sidebar explorer much like the built-in file explorer. The big difference is that you can expand the file items to show their functions. It…

  3. JSON Commenter is a vscode extension that lets you create inline comments in a JSON file while keeping valid syntax. You create a block with a command that places the comment anywhere legal in the JSON. The text is…

  4. Definition Stack is a new vscode extension I have just released. It is a reading tool for Javascript and Typescript. It is available in the extension marketplace. You just click in a function in any source code, execute…

  5. I am in the camp of using dynamic typed languages. I have no need for typescript (or flow) to check my types for me. I don't care about the 15% less bugs when testing. However, I would kill for advanced…

  6. I'm in the process of developing a pure declarative language. The source consists of simple JS-like data structures that would be at home in a JSON file. I have two questions ... - I'm naturally considering using JSON,…

  7. I remember the start date for the 3-strike anti-piracy program that ISPs were supposedly going to implement. (maybe it was 4, 5, or more strikes?) That date went by and I haven't heard anything about it since. Did the…

  8. I have been using computers for many years and I always assumed output would become easier to read. But I still see numbers like 69882139 everywhere. How am I supposed to know if it is approximately 7e6, 7e7, or 7e8?…

  9. I've been using Node for over three years. In the beginning I looked for callback helpers like Async and tried everything I could find. Like many I settled into using vanilla callbacks. It has not been a problem. Back…