Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×

Comment Re:Great for nvidia but, (Score 1) 178

On the desktop, and you know it...

People don't care what OS their computers run.

True.

PS4 runs whatever it has to run to play games.

BSD

Their desktop computer runs Windows because that is what runs Office, TurboTax, games, etc.

Who needs Windows to run a word processor? Who needs Windows to run TurboTax when the preparation companies own web based products work just fine in almost any web browser? Who needs Windows for games when there's a BSD running PS4?

I don't need Windows:


[CronoCloud@ ~]$ uname -a
Linux 3.19.1-201.fc21.x86_64 #1 SMP Wed Mar 18 04:29:24 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
[CronoCloud@ ~]$ cat /etc/redhat-release
Fedora release 21 (Twenty One)

Comment Re:I am going to see who committed on that project (Score 1) 765

1) Honestly, who doesn't? Everyone is biased. I am just telling you how I judge how people will integrate with my team. I have a rubric. Most people have some bias, e.g. 'no girls allowed', but try to hide it or are in denial.

2) but there actually is not enough information to appropriately judge
There never is. I can only look at resumes, references, and any public postings. How well a person *really* performs is only shown over a matter of time. But there have been time when I was not as critical as I should have been and it blew up in my face. My gut said 'no' but my brain rationalized things. I then spent 90% of my time dealing with a troublesome employee or team member. By the way it cuts both ways. I use the same method when interviewing employers.

3) The guilty verdict would come down, before the defendant even got to made their case repudiating all the apparent "evidence" from the prosecution.
If you want to find out what a person is really like observe them in unguarded moments. Not the front they put up. That is how you screen out sociopaths.

Comment Re:That'll make everyone a programmer (Score 1) 211

Why is using the built in features of one runtime program but using the built in features of another runtime not programming?

That is a VERY good point, and you are technically correct, but I think the "real programmers" would laugh at me if I called that bit I did with sed, programming. We have to draw a line "somewhere".

You can write things like the game arkanoid or the calculator dc for sed. Do they suddenly become non-programs?

Well, sed IS Turing complete, true. But again, we have to draw a line "somewhere". Don't ask me where, I'm not a programmer! Yes, yes I've given sed, bash and BASIC examples in this discussion, but I can't program my way out of a paper bag.

That said, I think a course in scripting or computing concepts would be more useful to more people than teaching them Java (Personally I think they should use python). Knowing the very basics of if/then/else/do/while/for/next concepts has been useful for me. Heck just teaching people that there's more to computing than their web browser would be good.

Comment Re:I am going to see who committed on that project (Score 1) 765

It is not a crime, but it does indicate an attitude which makes me believe that a person who revels in such behavior will make a poor team player. I would infer that that persons 'sense of humor' and attitudes would make it difficult for them to integrate into a team of mixed genders, religious beliefs, and moral attitudes. Therefore it would make them a liability both in the legal sense and in terms of team cohesion. Since teams are necessary to get things done, a smooth functioning team is a necessity.

Therefore I would recommend 'Do not hire'.

Seriously, everyone now involved in that project may have made a serious career limiting mistake.

Comment Re:That'll make everyone a programmer (Score 1) 211

So you're trying to prove that most people don't need to know who to write a program *by writing a program*?

Using the built in features of sed or vim, isn't "programming" "to me."

Now if you were talking about writing bash scripts, now that would be more akin to programming.. And personally I think knowing "scripting" would be more useful to more people than knowing "programming".

For example, if I wanted to check if list of websites were offline or not...I could open them in tabs.....or:


#!/bin/sh
for x in $(cat url_list.txt);
do
              lynx -dump $x | grep -ol "Error 404";
done

That is more akin to a program than my simple usage of sed, but still isn't the same as:


10 print "input name"
20 input a$
30 print "Hello, "a$

Comment Re:That'll make everyone a programmer (Score 1) 211

A batch script that extracts all lines from a CSV file containing the string "w00t" could save a single operator hours or days trying to do the same thing with search... copy... paste... search... copy... paste... search... copy... paste... search... copy... paste... search... [ad nauseam].

Who needs a batch script.

sed -i".bak" '/w00t/d' foo.csv

I don't even know sed syntax, all it took was a bit of googling. Looks similar to vim syntax which I am slightly more familiar with. Open up the file in vim and :g/w00t/d

Comment Re:Build it yourself -- from source (Score 1) 237

However, I've tried to make my own custom builds of Firefox and it's a nightmare. The build process used by Firefox is so complicated and convoluted, it would make Rube Goldberg laugh.

I once built a Firefox build on a PS2, I had the libs so I could enable a ton of features that the community builds didn't. The process was so horrible I only did it once....and then settled for the community builds even if they lacked gtk2 support (and other things)

I figured out that it was easier to IGNORE most of the build instructions and just do a standard traditional ./configure, because setting up a frickin MOZCONFIG that worked was the devil's work.

Slashdot Top Deals

Always draw your curves, then plot your reading.

Working...