Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror
×

Comment Re:April Fools stories are gay (Score 2) 1482

Since Obama took office? Have you been living under a rock for the last 10,000 years? Intolerance is practically a way of life and has been for many people living on this planet going as far back as recorded history can measure.

You're only noticing it more because YOU are paying more attention now than you did before.

Comment Re:You're Old (Score 2) 218

I really wouldn't want to work somewhere that has 20 year olds doing interviews. A 20-something "senior engineer" is a fallacy they are what "expert beginners" and they often make mistakes someone with more experience will not make, and that includes the hiring process.

I've been shown the door in an interview by 20-somethings after not answering their vague questions exactly the way they wanted them answered. My current company gave me the highest marks they've ever given an employee and they've been around 15 years. They have experienced people giving interviews and performance reviews.

But isn't it also age discrimination not wanting to work with 20-something "senior engineers" or worse, 20-something CTOs who will be your superior when you have 30 years of experience?

Comment Re:You're getting old? (Score 5, Interesting) 218

I had to dye my hair for the first time ever during my recent job search, because I was being interviewed by 20-something and they aren't as likely to hire someone in their 40s if they look like they are in their 40s.

There is a misconception in the industry that younger == better, but nothing could be further from the truth. The younger ones invariably cause many problems by making mistakes that more experienced people have already made and know to avoid.

I will by dying my hair again only if/when I need to look for another job.

Comment Re:Why? (Score 2) 465

My co-worker gave me his personal tablet to use for work purposes (app testing), with his photos and music still on it. He gave it for me and then took an assignment in another office and hasn't cared to ask for it back. I haven't looked to see if I could purchase with his appleId but I don't really care to even try. This kind of thing probably happens all the time, except in your narrow view of the world.

Most people don't give a second thought about privacy, especially when they don't have anything to hide, and I'd bet grandma had nothing to hide on that tablet.

Apple has once again proven their overbearing stranglehold on everything they touch.

Comment Re:Do not want. (Score 0, Offtopic) 125

> Second, with the dynamic photo loading (why the hell are there photos now?) I hate having my webpage constantly bouncing around up and down when I'm trying to navigate (especially painful when I'm trying to click a link, only for the device to "catch up" and finish fully rendering the page after I have already made the move for my finger to click on the link but before the finger actually touches the screen, causing me to click a different link than intended). This, compounded with the first issue above, take Slashdot well outside the realm of usability. I don't know for sure, but from reading around, this second issue seems to be due to the Javascript, which seemingly almost as many users complaining about are claiming is NOT a problem. What???

Javascript is NOT the problem on this one, inexperienced developers and shoddy implementation is. What is happening here is there is an unloaded image in the layout and when the image loads, suddenly it takes up some space on the page and causes a reflow of the text and this makes the page appear to bounce around.

What should be implemented to fix this is, any place there is an image, the image should be inside a div, and the div width and height should be the exact size of the image being loaded so that the div takes up the space and when the image loads inside the div, it doesn't cause a reflow of the layout.

It is a very simple thing to do, but many developers don't do this because they are either too new at doing this type of work, or they aren't that good at it to begin with. It kills usability on many websites, not just slashdot.

Comment Re:Run to the hills! (Score 1) 505

Look, javascript has sort method. In its default use, it sorts strings because that's how it works. If you need to sort other things like complex objects in an array, that can be done too using the same function with logic you supply.

Just saying the whole language "sucks" because it doesn't have x y and z features is a bit disingenuous. Any language you name probably is also missing some things when compared to javascript, so you can't make everyone happy all the time.

Only noobs cry bloody murder when they get the wrong sort order back. It's that way for a reason, and it isn't impossible to sort an array of numbers. Everyone just needs to calm down and maybe learn how something works before declaring "it sucks".

Comment Re:Run to the hills! (Score 2) 505

The default sort coerces the array items into strings before sorting. If you want to sort integers, use the sort function like this:

[ 10 , 1, 5].sort(function(a,b){
if(a>b){return 1};
if(a<b){return -1};
return 0
})


The sort method in javascript gets it done, but you have to know how it works. Maybe you just don't really know javascript if you cry about this.

Comment Re:I has a sad (Score 0, Troll) 505

Dynamic typing scares him. It scares a lot of people that don't understand how it works or how to use it.

Many people have no problems with Javascript.

Only programmers who cling to their compiler to tell them they did something wrong fear Javascript. I never, ever, have any errors due to an unexpected type, or whatever boogeyman people like @narcc seem to be afraid of.

Or, maybe they are just afraid of Javascript's market share and the possibility that they will have to learn to use it to earn a living someday.

Comment Re:jscript (Score 1) 505

Oh you're such a big, brave programmer because you aren't a "Script Kiddie", and hiding behind "Anonymous Coward". Give me a break. slashdot seems to be filled with people with narrow vision such as yourself.

Comment Re:Replusive (Score 2) 505

If that is how you think about Javascript, then you have just illustrated your own stupidity. Or maybe it's fear that you are displaying?

Javascript is far from "the worst technologies", and your quip about being "barely able to solve the problem" is pretty ignorant.

I'll get off your lawn now.

Slashdot Top Deals

Thus spake the master programmer: "After three days without programming, life becomes meaningless." -- Geoffrey James, "The Tao of Programming"

Working...