u/Torchhead - 28 Archived Voat Posts in v/programming
u/Torchhead
  • home
  • search

u/Torchhead

5 posts · 23 comments · 28 total

Active in: v/programming (28)

  • ‹‹‹
  • ‹‹
  • ‹
  • 1
  • ›
  • ››
  • ›››
Comment on: Apparently, they don't want to hire people that knows about HTTPS.

I was applying to work for a bank. Their front page looks good, but the part to apply for jobs and manage your bank account is poorly made. It is a big bank in Brazil and there aren't many banks around here. The only reason I can think of is pure insane greed, since is good business for a bank to at least appear to have a good website that goes beyond the first page.

7 30 Apr 2017 17:59 u/Torchhead in v/programming
Apparently, they don't want to hire people that knows about HTTPS.
4 2 comments 30 Apr 2017 17:44 u/Torchhead (..) in v/programming
Help estimate project time, restful api + front-end
1 0 comments 03 Mar 2017 20:19 u/Torchhead (self.programming) in v/programming
Comment on: Is there still no Torrent replacement?

Usenet is a good alternative to torrent. There are some alternatives with cryptography like I2P, but they have never being popular or proven safe.

2 13 Dec 2016 21:33 u/Torchhead in v/programming
Comment on: "Agile insanity": Power to the teams

I don't have much experience, but I have a strong felling that the skill of the manager is strongly related to the productivity and team's satisfaction. I think that a bad manager will brake the team no matter what the methodology.

0 02 Dec 2016 21:12 u/Torchhead in v/programming
Comment on: How important is Algebra in computer programming

I don't know about other programmers, but in my job I spend most of the time reading API documentation. It is very rare to have to come up with some algorithm to do something, usually there is already a library that do the job for you. So the challenge is more in the architecture, organization and knowing how to use libraries.

0 30 Nov 2016 23:54 u/Torchhead in v/programming
Comment on: Do you expect computers to move to a 128-bit architecture during your lifetime?

I think some video games had 128bits architecture.

0 30 Nov 2016 23:53 u/Torchhead in v/programming
Comment on: Top the Most Popular Programming Languages Of 2016

A lot has been written in C, including Python's interpreter. You usually find C++ and C supporting the other languages in the form of libraries, interpreters, compilers, and operating systems. Looking this way C sounds more important, but I don't think it is a practical language since you can learn and use a language like JavaScript much faster.

0 10 Sep 2016 12:26 u/Torchhead in v/programming
Comment on: Top the Most Popular Programming Languages Of 2016

I am in favor of using a popular language to save people from having to learn a new language to work on a project. It is funny how that is not the case with javascript since a lot of people claim to know JavaScript, but actually doesn't go beyond w3schools.

0 09 Sep 2016 12:58 u/Torchhead in v/programming
Comment on: What programming language is good for a beginner?

I recommended JavaScript because it is a relatively easy language to learn, you just need a browser to run it, and you can do things like play a video or GUI easily. If your focus is more in hardware or embedded or if you have a specific goal, then I would have recommend something else.

0 03 Sep 2016 11:41 u/Torchhead in v/programming
Comment on: What programming language is good for a beginner?

Javascript. You can do a lot with little.

9 03 Sep 2016 01:53 u/Torchhead in v/programming
Comment on: Stackoverflow needs to be circumvented. rant + ramble

Many websites today, that rely on users to self regulate, are target for exploits. One should be really careful when make these types of sites and ensure that the users can't abuse their power. If websites can be exploited this way, I can only imagine what people do to real life institutions.

1 02 Aug 2016 16:40 u/Torchhead in v/programming
Comment on: At what time would a sane person bitshift a signed integer?

Not shift, but still bit wise. In JavaScript the method indexOf returns -1 when the element can't be found in the array. You can do ~array.indexOf(element) to transform that -1 in zero and anything else in a value different than zero, this way you can use it in an if statement to check for the presence of the element in the array.

0 01 Jul 2016 22:40 u/Torchhead in v/programming
Comment on: Are CDNs making the benefits of compressing/minifying the css/javascript obsolete?

The problem of having everything in a single file is that, if you change a bit, everybody is going to have to download everything again. So I vote for CDN as opposed to hosting everything yourself.

0 31 May 2016 01:20 u/Torchhead in v/programming
Comment on: HTML in 15 Minutes

That is HTML4, I think you could start with HTML5 now.

0 30 May 2016 23:52 u/Torchhead in v/programming
Comment on: I realize this might be an obvious question, but is anyone else annoyed by how programming has transformed from an understanding of concepts into blatant marketing speak?

I agree. It is very annoying. My personal theory is that recruiters are laze and instead of trying to figure out if you know programming or not, they just count how many libraries you have used in your projects. People are collecting libraries like they are stamps. They are also following libraries like they are fashion trends.

1 08 Mar 2016 15:27 u/Torchhead in v/programming
Comment on: (Brian Will) Object-Oriented Programming is Embarrassing: 4 Short Examples

Steve Jobs said there was proof that OO makes you more productive. Do you guys know said proof?

0 08 Mar 2016 03:30 u/Torchhead in v/programming
Comment on: Fancy code part one & two - A quick look at reactive and functional programming in JavaScript

Being single threaded reduces problems like race condition, it does not increase them.

I like functional, but I am not sure if it is too complicated to the point that is faster to work without it than to understand it. It may be a great tool, but if it is too hard to understand it, than it may be not worth it.

0 08 Mar 2016 03:28 u/Torchhead in v/programming
Comment on: Insider comments on the state of affairs at Mozilla and predicts it's demise

A company run by greedy pigs. Where is the news?

2 08 Mar 2016 03:00 u/Torchhead in v/programming
Comment on: Inaccuracy of floating points

<meta name=Generator content="Microsoft Word 11">

0 08 Mar 2016 02:56 u/Torchhead in v/programming
True story: one code review too many
1 0 comments 11 Feb 2016 08:27 u/Torchhead (..) in v/programming
Comment on: When I expain to the customer that their SDK is broken

If you are developing a library, make sure it follows coding conventions. If your library looks like the standard libraries, than it is probably ok. When using other people's work, there is not much you can do, since how the code is organized is not up to you.

0 23 Nov 2015 19:11 u/Torchhead in v/programming
When I expain to the customer that their SDK is broken
13 4 comments 20 Nov 2015 22:28 u/Torchhead (..) in v/programming
The Sysadmins Apprentice
5 1 comment 18 Nov 2015 23:37 u/Torchhead (..) in v/programming
Comment on: How do I refine my programming?

An internship could offer you a great opportunity to learn how to program professionally.

0 02 Nov 2015 05:32 u/Torchhead in v/programming
Comment on: The One Method to Eliminate Bad Tech Hires

Also, don't put connections on top of merit.

0 02 Nov 2015 05:25 u/Torchhead in v/programming
Comment on: xkcd comic: Git

That is the result of "learn git in x minutes" tutorials.

0 02 Nov 2015 05:16 u/Torchhead in v/programming
Comment on: These Are the Highest-Paying Programming Languages (do you agree?)

Many people say that COBOL pays well because there aren't many COBOL programmers.

3 02 Nov 2015 04:33 u/Torchhead in v/programming
  • ‹‹‹
  • ‹‹
  • ‹
  • 1
  • ›
  • ››
  • ›››

archive has 9,592 posts and 65,719 comments. source code.