Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror
×

Comment Fun little project, of course ... (Score 4, Insightful) 41

Ah, but this will not be able to implement the ability to swing around corners that traditional pacman has, which lets you get away from chasing ghosts, just a little bit.

Otherwise, it's a great project if you want to work with microcontrollers and embedded programming. Beats the obvious tetris clone at least. Sokoban might be another good game to implement. And Bejeweled.

Comment Re:You can do Open right (Score 1) 156

Yes, given the need to maximise headcount per square foot, open plan offices are here to stay. I agree with your points (I get most of them), they will keep morale higher.

Hot desking for tech people has to be the singular most stupid idea ever. In fact it is stupid for everyone, I think most people would prefer to have an assigned 'callcentre' style desk than to hotdesk. I have not heard a single good thing about the concept from people forced to endure it. As an aside, I worked on 'smart office' stuff for BT back in 2000, the idea was to personalise hot desks - clever stuff to keep the area personal with shared facilities (a person's photos would travel to the digital picture frame on the hot desk they were logged into, etc). It sucked back then.

I just wish the flexible working hours aspect was more of a thing here. Early in, early home would be nice for some, late in late home for others.

And yes, given a choice, I bet people would stick with open plan offices rather than a pay cut (to get a bigger work space) or commuting to some out of town office park full of empty Disaster Recovery offices, no food outlets, no pubs, no nothing.

Comment Re:because it's cheap, and you're expendable (Score 1) 156

You got a divider! Lucky sod.

Open plan offices suck, but they're here to stay because to work in a decent area, you have to pay more for the offices, and for many companies that is an undesirable situation. Most people can cope with background noise and hubbub, or use headphones to become totally unapproachable, you get distracted by the hot QA girl that walks by every so often which is a nice perk, etc.

It's a shame that most places don't use curved desks, so that the person behind you isn't directly behind you. Also the new thing seems to be about removing cabinets from desks, or moving to lockers. That's saving like fifty dollars, on a potentially $100k member of headcount.

They do work for overhearing things in your team that you can contribute to. But that would still work in a Team Lab space type office layout, with six to twelve people in a large room.

The days of individual offices, 10ft by 10ft or more, are over for most employees. At best you can hope for a 6ft by 8ft area. And that works partially because monitors are thin; you need 1/10th the paperwork and books and manuals you needed even ten years ago, never mind 20; no one ever prints so 2 printers can service an entire floor; and people are generally used to timewasting .... sorry, internet time, that they don't care if you do it as you would have done it in your cube.

Comment Re:it's not "slow and calculated torture" (Score 1) 743

It would be best to let Greece exit, and go back to the Drachma and rebuilding themselves in the way they want to.

However they should not have been allowed into the Euro initially with such a corrupt tax collection ("evasion") system in place.

OTOH Austerity doesn't work unless you can control it yourself (i.e., devalue your own currency). As Greece doesn't have its own currency, Austerity is simply ongoing pain and punishment for them. Austerity is counter-productive in that it reduces GDP faster than debts are repaid (whereas Keynsian economics says spend money to raise GDP faster than the debt rises - successfully used by Obama in the US after the financial crash to give the US great rates of growth relative to other countries). Hopefully this will be the first step in the collapse of Germany's economic invasion of Europe, and in the future a more equitable and sensible combined currency can be created that doesn't have all the issues.

And yes, I'm generally in favour of the concept of the EU, the Euro, etc. However the current setup doesn't work right for many members and the incumbents (Germany, France) don't want to change it as it works for them.

Comment Re:flat as a pancake: invasion pending (Score 1) 236

This wouldn't be such an issue if they provided an alternative. Or hell, make it themeable, even at a very basic* level.

And no, the Windows 95 style 'alternative' isn't reasonable.

For example, adding settings that were only:

* UI element bevel, inset: 0 - n pixels
* UI light source: Top Left, Top, Top Right

You could allow unflattening of UI elements with just some bevel drawing and light sources. Hell, it could be a normal map on the UI elements and the GPU could render the bevels itself, no line-drawing required.

Metro is a big ass of a UI, that requires the user to learn locations of functionality rather than being easy to discover by use of functional groupings and large identifiable icons (not small monochrome abstractions). It's one of those UIs that's good on paper, and maybe screenshots (because of the blocks of colour), but is just horrible to use.

Comment Re:One small problem (Score 1, Flamebait) 509

This is why your phone needs to be set to upload videos to the cloud at all times. You cannot let the pigs get the phone and conveniently lose it or break it to eradicate the evidence. Also make sure someone else has at least read access to the upload folder.

Surely the best move is to ensure that you are recording at the best quality the device can do, and the closest optical zoom the device can achieve, whilst staying out of the situation.

Comment Re:jQuery is for lazy, fat, "developers" (Score 1) 218

1. Don't use the compat version of jQuery then if you don't need to support old browsers. jQuery 2 exists for a reason.

2. Yes, JSONP is a way to transport data between different domains. Don't call domains you don't absolutely trust. JSONP isn't a fault of jQuery, but the browser security model.

3. jQueryUI is a different dependency. Don't use it if you don't want it. It really depends on your application though, if it's presenting a UI, then are you going to implement it all yourself, or pick one of the many UI JS libraries that will be in the same size ballpark. Browser downloads once, browser caches, job done - and these libraries are usually accessed from a CDN, so you probably already have it in your cache.

Comment Re:meh (Score 1) 218

Err, updating the DOM and making updates to small parts of the page as a result of Ajax calls within a front-end Javascript application is the right way to create modern web apps.

What you are advocating is the full page reload, which is a massive horror for many websites. The only use case for full page reload for trivial content updates these days is to serve another bundle of ads around the next bit of content, and single-article based websites where the content is most of the page (e.g., a news site where you are clicking between stories via category links and indexes of articles).

Seriously, many modern websites are a set of single-page applications (and maybe static pages). The only page reloads should be switching between these applications. [Page resources (JS, images, etc) should ideally be stored in a CDN if you can afford that.].

Comment Re:You forget memory usage... (Score 1) 218

I think that Javascript devs need to learn more about creating a build process to minify and crush the JS dependencies into a single file, rather than which new framework to use for each new project they start.

If your build process takes your dependencies (from npm, for example) and then concatenates them, and minifies them into a single dependency, that saves bandwidth, http calls, and time. If it can do dead code analysis too, to remove those unused functions, then great.

From reading comments, etc, there seems to be an argument into splitting the Ajax convenience methods of jQuery out from the rest, as lots of developers use the former, but you don't need the other niceties such as the highly abstract and overhead inducing $('thing') notation. Perhaps the jQuery 3 work will go some way to fixing this anyway, as it will be far smaller in the non-compat option.

Comment Re:Sounds like upper middle class housing developm (Score 1) 540

There is always the option that the news outlets have confused final asset value with construction cost.

I.e., the properties will be worth $900k each on average, once built, but the build cost is likely to be a lot lot lower.

This would seem far more reasonable for 2 and 3 bedroom apartments in a low-rise housing block, however high quality the construction is.

And assuming a more reasonable $1000 a month rent, or even $1500 a month, the financials start to make more sense if the building cost is closer to $50m than $200m.

Slashdot Top Deals

THEGODDESSOFTHENETHASTWISTINGFINGERSANDHERVOICEISLIKEAJAVELININTHENIGHTDUDE

Working...