ThorinJacobs | 5 years ago | on: A photo is crashing some Android phones
ThorinJacobs's comments
ThorinJacobs | 5 years ago | on: We at $Famous_company switched to $Hyped_technology
ThorinJacobs | 5 years ago | on: Humans Not Invited
ThorinJacobs | 6 years ago | on: For 11 Years, the Soviet Union Had No Weekends (2018)
ThorinJacobs | 6 years ago | on: YouTube moderators forced to sign statement acknowledging job can give them PTSD
ThorinJacobs | 6 years ago | on: Developers Who Use Spaces Make More Money Than Those Who Use Tabs (2017)
ThorinJacobs | 7 years ago | on: Source code for Zork, Hitchhiker’s Guide, and other Infocom games
ThorinJacobs | 7 years ago | on: Source code for Zork, Hitchhiker’s Guide, and other Infocom games
[0] https://en.wikipedia.org/wiki/The_Hitchhiker%27s_Guide_to_th...
ThorinJacobs | 7 years ago | on: Source code for Zork, Hitchhiker’s Guide, and other Infocom games
ThorinJacobs | 7 years ago | on: 2019 Stack Overflow Developer Survey Results
ThorinJacobs | 7 years ago | on: Gimli – A Visual Studio Code extension for front-end developers
Does the UI viewer work with dynamic content such as that loaded from a back-end (or say, from a sample .json file in the event that we want to skip the API call)? I've done a lot of work in WPF/MVVM applications where everything ends up becoming a ResourceDictionary and breaks the Visual Studio UI viewer, so I'm curious how you handle it.
Also, do you have any plans to incorporate a compatibility view? It would be really cool if I could select an item from a combo box and see what my UI would look like in (say) IE or Opera
ThorinJacobs | 7 years ago | on: Autistic Burnout: The Cost of Masking and Passing (2017)
My response to a self-diagnosed or clinically diagnosed person that was having a behavior problem would be the same, so why question? Why not just be kind and understanding?
ThorinJacobs | 7 years ago | on: 80 Characters per Line Is a Standard Worth Sticking to Even Today
I can only imagine that this would be even more important for individuals with more severe vision impairments.
ThorinJacobs | 7 years ago | on: “Git Tower” revokes licenses when discussing bugs/feedback on Reddit
I like Sourcetree for this particularly because its buttons map fairly well to the actual CLI commands that it will be executing, and makes it painless to open a CLI terminal for instances where I want more fine-tuned control.
ThorinJacobs | 7 years ago | on: Ask HN: Top three questions for a startup before accepting a job offer?
- In the main projects I'd be working on, how many new files are necessary to consume data from an outside source (say JMS) and log the result.
- What is the frequency of your releases
- How long does it take for a minor feature request to make it from initial conception to delivery to the user
These aren't actually specific to a startup largely because I haven't been burnt by a failed startup. YMMV
ThorinJacobs | 7 years ago | on: Lombok makes Java cool again
One of the parts of Lombok that really works well for me is that its notations are completely optional and fit many different levels of granularity as you see fit. Don't want sneaky exceptions? Don't use them!
I mostly end up using it to make my Java code feel like C# though...
ThorinJacobs | 7 years ago | on: Falsehoods Programmers Believe About Names – With Examples
All anecdata, but I expect those of us who read these sorts of lists will likely understand them quickly without needing examples. There's a large number of developers that are not reading software blogs and lists and are not applying much thought to their programs beyond "how do I meet the minimum requirements put forth in this user story". As long as those sorts of developer continue to be prevalent it's partly on the business to specify these requirements explicitly.
Tragically I don't see this changing any time soon.
ThorinJacobs | 7 years ago | on: Go 2, here we come
ThorinJacobs | 7 years ago | on: Advent of Code 2018
Last year I tried to solve at least the first few days in a bunch of different languages, doing Red/Green TDD so I could learn how to set up a basic project and do tests in languages I was less familiar with. Still trying to decide if I should take that approach again this year or focus on getting every day done in a single new language.
ThorinJacobs | 7 years ago | on: US proposal for defining gender has no basis in science
Unfortunately, because of the way Java handles checked exceptions, I can't feed the supplier with a lambda or any other method reference that I'm aware of that throws a checked exception and let it be passed up to the original caller directly. So I need to catch my checked exceptions and wrap them in an unchecked exception to catch. Not pretty.
There's probably something I'm missing but the language certainly doesn't go out of its way to help with this sort of thing.