Comment on: Dynamic Typing vs. Static Typing
TypeScript says why not both?
Comment on: Sex joke gets a React Week 2019 Conference boycotted, new CoC developed to "protect" participants
That joke was mild, okay.
Incredibly mild; the only way you can perceive that joke as sexist is if you fundamentally believe that only men enjoy sex; which is itself a rather sexist view.
Comment on: Who says girls can't code?
No.
table is not a valid child of table
h1 isn't a valid child of table either.
The missing closing tags for <p> is technically valid but bad practice.
same with the use of "bgcolor"
The CSS looks valid.
Comment on: Huh... Today, v/programming is almost at the top of the list for submissions with the most comments!
Voat’s community is borne out of petty politically motivated censorship elsewhere.
So yeah, we like what we like.
Comment on: Report: 80's kids started programming at an earlier age than today's millennials
I member being too poor to have a sound card so I had to deal with the “pc speaker” (the thing that beeps on boot) for sound effects for years.
Comment on: I just spent 12h in Delphi trying to fix fatal bug. At the end I had to check almost line per line until I removed a '\' character from a string.
Some languages are worse than others, but this sort of thing can happen with any of them I think.
I think it's stuff like this that causes me occasional existential crisis as a developer. It's really demoralizing when all you have to show for X hours of frustration is a single character change.
Comment on: I might not be in the right place. I would like to lock edits to excel files
Not really, your best bet might be to include a cryptographic signature of the document with the signature. This would be the only way to effectively prove exactly what document you approved.
Comment on: 2 Simple Test Helpers every Ember-Data Developer should know
I love Ember, but I advise avoiding ember-data, it's more pain than it's worth most of the time.
Comment on: Model shows off her sick coding skills (X-Post from /v/funny)
Yeah it's a ruby program with a function concatenate_strings and a line that calls that function but does nothing with the result.
Automatic 3Dification of Nintendo games: The glEnd() of Zelda
1 0 comments 02 Apr 2016 13:20 u/go1dfish (..) in v/programmingThe Deep History of Your Apps: Steve Jobs, NeXTSTEP, and Early Object-Oriented Programming
1 0 comments 22 Mar 2016 06:03 u/go1dfish (..) in v/programmingComment on: Object-Oriented Programming is Bad
Glad you liked it, I'm personally working on switching to a more pure functional style myself and this video helped convince me a former die hard OOP guy to consider such a change.
Graphing when your Facebook friends are awake
1 0 comments 18 Feb 2016 15:21 u/go1dfish (..) in v/programmingComment on: Data analysis of GitHub contributions reveals "unexpected" gender bias
5 12 Feb 2016 20:15 u/go1dfish in v/programmingComment on: Should I host jQuery Library, fonts, etc or should I just link them from external websites like Google Fonts, etc?
Not always, the people bringing up privacy concerns are right; so there are some cases where it isn't appropriate.
Comment on: Should I host jQuery Library, fonts, etc or should I just link them from external websites like Google Fonts, etc?
I recommend using a CDN, the benefit is that if a visitor has already visited another site using the same CDN those assets are cached, also you save yourself the bandwidth; and browsers commonly limit themselves to two simultaneous connections per domain when loading assets. Having some of your assets at another location can help parallelize your load time.
Comment on: A Catalog of Programming Languages that Programmers Hate
Which is why I'm surprised JavaScript isn't on the list
Comment on: A Catalog of Programming Languages that Programmers Hate
It never really bothered me, I quite liked python. But I do pretty much all JS all the time now. ES6 is really nice.
A Catalog of Programming Languages that Programmers Hate
14 17 comments 17 Jan 2016 05:54 u/go1dfish (..) in v/programmingComment on: Python: Best GUI dev. toolkit?
Yeah I seem to recall having some issues with this as well, but realistically I don' think there are any other python friendly toolkits that mesh with Windows/Mac/Linux UIs as well as pyqt even given its shortcomings.
Comment on: Python: Best GUI dev. toolkit?
PyQT is not bad at all once you get it installed/setup but getting that far can be a bitch and a half.
To expand on your idea, you could always go the HTML UI route, with python serving as a local web service.
If this is an indication you are using TypeScript for upcoming Voat stuff I highly recommend it.
I've transitioned most all of my code over to typescript (not yet the ui yet though)
https://github.com/notabugio/notabug-peer/tree/master/src
VS Code is pretty nice too; I do feel a bit dirty using MS software again though.