• 0 Posts
  • 81 Comments
Joined 1Y ago
cake
Cake day: Aug 08, 2023

help-circle
rss

It’s more about scale. Small open source projects might get one PR a month. Your average tech company is dealing with dozens of PR every single day. Review fatigue is real in these environments


He had an interview with Google and they asked him to invert a binary tree, which is essentially taking a tree of data and swapping the positions of all sibling nodes.

While most people agreed it was a pretty pointless question to ask at an interview, mxcl had a full “don’t you know who I am” shit fit on social media.


If anyone hasn’t made the connection, mxcl is the infamous Google interview binary tree guy


It depends on your intent. If you’re doing it to keep history clean and linear in the long term, it’s a huge waste of time as it gets splatted into a single squashed merge commit. It also makes it difficult for reviewers to rereview your changes as GitHub/Lab can’t calculate the diff because you keep moving the goalposts with force pushes.

If you’re doing it for cleanliness on your local branch then I guess that’s fine, but I find it anti-social in a multi participant repo.


Agreed. I’ve been trying to explain to someone recently why rebasing and force pushing their feature branch has no benefit when we use a squash commit strategy for merging to main.

Again, tools are not blame, but when combined with a lack of understanding and accumulated “git dogma”, it can be quite disheartening.


Same. I mostly use sourcetree to do quick self-reviews and to discard lines or hunks before a commit.

But I’ve also grown very weary of having to dig people out of git messes they’ve made with sourcetree and the likes.

Visual clients aren’t to blame for that, but they contribute. So many times I’ve asked “and what git commands did that run?” only to receive a dumb stare as a reply.


I think it’s exactly that. They are targeted at bootstrapping projects and prototyping and are, frankly, very good at that job.


Not sure on your use case, but I’ve been using Hetzner for a while and it does what it says on the tin.


Files have formats. Anything “hidden” here is destroyed by conversion to a different font format before redistribution.

There is no way of controlling this from the authors side without some sort of DRM.




It creates an ssh tunnel and then sends the file over http, so … literally no advantage to using this over ssh/scp.

Worse in every way, actually.





I’ve smoothed a schleem or two in my time


Absolutely. I generally find any kind of analogous coding tasks - leetcoder style or otherwise - to be a huge waste of time.

It tells you significantly less than a 30 minute conversation will. Someone who doesn’t know what they’re talking about will out themselves quickly when you get into the nitty gritty of the full software delivery lifecycle.


I have a GCSE in IT, and a degree in CompSci and… I completely agree. You don’t need any of it, relevant experience is worth in the region of 5x-10x for every hiring manager I’ve known, and for myself.

However, it does cause a bootstrapping problem. Getting that first opportunity can be tough, and there’s a good chance that you’ll be filtered out at CV vetting time by a recruiter matching keywords and tallying CV content before you even get to a stage of consideration by hiring managers.

And they both have pros and cons. The pros of not doing a degree are mostly fiscal. I’d advise anyone who can afford the overhead of doing a degree to do one still.

tl;dr - lack of education isn’t and shouldn’t be an obstacle to starting a programming career, but you should still understand what you’re up against in the average hiring process and tune your approach accordingly.



Exactly this. They aren’t for the company, they’re for you to have confidence that your shipped code isn’t going to blow anything up.


You didn’t, you typed the words “I understand”, which isn’t acknowledgement of comprehension, exactly the same as it is when you “accept the EULA” after not having read it. The very thing that has been deemed non-defensible for EULA litigation.




If you want something for managing all your containers, consider Portainer. I’ve been using it with my homelab for a while and it’s invaluable for quickly dealing with issues that crop up.



To repeat the other person’s point a bit, what you’re describing sounds very much like LLVM, and other IR languages.

IRs exist to allow a variety of programming languages to be specified in a way that doesn’t require direct compilation of that language to asm. This means the IR has to support some representation of the superset of all those languages’ features.

So I guess your question could be interpreted as: why don’t we just use an IR to write code? Mostly because they require you to forego many of the modern conveniences of modern programming languages. The whole point of going higher level and more opinionated in language choice is to allow you to turn designs into code faster than you can with lower level representations.

I don’t entirely follow what you’re trying to achieve with the plugins idea but it very much sounds like a combination of ideas that are found in LLVM combined with features from modern workbench IDEs. You might want to read about the architecture of Eclipse.

Eclipse was a popular development “workbench” that allowed you to plug in various tools at every level and stage of development and configure them to your taste, as well as allowing you to build your own plugins to work with languages in a bespoke way.

https://www.eclipse.org/articles/Article-Plug-in-architecture/plugin_architecture.html



It puts the adverts on its eyes or else it gets the premium subscription


Chances this meme was made without a GUI: 0%




Making games, which, I’ve come to discover, is basically the Santa Claus of programming because most professional developers that I know started for the same reason and absolute do not program or develop games.


They said in their reply.

Are you for real? Everything you said reads like a tech bro caricature






I’m a huge fan of Cascadia Code so definitely gonna check these out.



Computer scientist code is some of the “worst” code that exists because it usually needs to do one thing well enough to produce a set of findings that support or reject some thesis.