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

 



Forgot your password?
typodupeerror
×

Comment timing - which year (Score 2) 72

I travel a ton and stay in dozens of different hotels every year. Domestically, and in maybe 50% of the foreign cases, the high priced hotels had worse and slower internet up until a couple of years ago. For the last 2 years they have gotten better, on the average. Oh, I was in a 5-star Vegas resort last night that had horrible bandwidth. In the past, my joke was accurate that the difference between a Four Seasons (just an example) and a Super 8 is that at the Super 8 the internet worked and was free. The most important thing to me in a hotel is computer use. The fancy suites in major hotels are often set up for entertaining friends and DON'T even have a computer desk. I ask my wife to book me into Super 8's whenever possible.

Comment Re:The question to me seems to be... (Score 1) 148

End goal: change the constitution. We need a start. It's easy to see how hard this will be and to give up early, but some of us feel the imperative to fight for it. We can change things. The vast will of the masses (corporation political donations are not equivalent to the free speech we enjoy as individuals) needs to be strategically gathered. Critical mass could take decades, as with things like gay marriage.

Comment Poor journalism (Score 0) 62

I forwarded this along to my Japanese wife, who went and researched into the issue. Her response:

That article is not accurate. The police has identified at least 50 drug dealers using the website to sell illegal drugs now. The police has requested the founder to delete those posts many times, but he claimed that the ownership of the site has been sold to someone (which turned out to be a lie), kept ignoring the police warnings, and left the posts there.

2ch used to be one of the most popular forums, but the quality of posts have been questionable in the past couple of years. In fact, my uncle owned a clinic and someone kept posting horrible stuff about the clinic, so my uncle had to move his practice to other place and changed the clinic name. They tried to sue 2ch for not doing quality control properly but back then, there were no laws that could protect their rights. 2ch is now turning into something different where you can buy/sell illegal stuff and adult/kids porn. It's really really bad.

If the situation was the case as Japan Probe reported, there would be some more mainstream news sources picking up on it (Asahi, Yomiuri, BBC, etc). I would evaluate their article with a grain of salt.

Comment Re:It's a very sad thing to admit, but (Score 2) 260

Intel graphics and wifi has a good Linux reputation. Atom was an exception because they used a 3rd party GPU (PowerVR).

Thinkpad with a full Intel stack (CPU, graphics, wifi, SSD) is the preferred route. I prefer the T430 (14") or X230 (12"). The biggest draw back is low resolution (1600x900 or 1366x768). You may want to look into the X1 Carbon as well.

If cost is an issue, I would choose an X220 or T420. I actually prefer the older models as they have 7-row, traditional Thinkpad keyboard vs the newer 6-row chiclet style (Apple) keyboard. You can find them on Lenovo refurbished or off eBay / Craigslist. If the X220 had better resolution, I'd be stockpiling them in my closet. As it is, I'm pretty damn happy with my X220. I even have audio output through my Display Port working in Arch! (Is that awesome or kind of sad?)

If you're looking for a non-Thinkpad solution, the biggest headaches are usually graphics chipset, wifi. AMD / NVIDIA? Check chipset support. With wifi try to stick Intel once again, some Atheros chipsets are nasty and require a flaky ndiswrapper. Paying an extra $10 - 20 to upgrade to an Intel chipset is worth avoiding problems down the road. For touchpad, you usually want to make sure it's Synaptics for multi-touch support. I've had ACPI issues with desktops, but not with laptops thus far (Dell Inspirons / Latitudes, Asus EEE PCs, and Thinkpads).

Comment Higher priority at Dropbox (Score 4, Interesting) 261

Google's search engine was originally in Python, but the company has since moved on to use Java on the front end, C++ on the back end, and Python has been relegated to glue code.

On the other hand, Dropbox has been using Python for its entire stack. I believe they made a few performance related contributions to CPython as well.

Guido is a great engineer (besides being a language designer), and still writes a lot of code. He probably would get more satisfaction working at a growing company where Python is a first class citizen rather than at Google.

Comment Re:Python VS PHP (Score 1) 261

Python list comprehension method:


        filtered = [x for x in unfiltered where x.foo=="bar"]

Or you could just use Python's filter() which is conceptually the same as PHP's version:

        filtered = filter(lambda x: x.foo == 'bar', unfiltered)

Python has better syntax than PHP, but this is one of the weaker examples.

Slashdot Top Deals

With your bare hands?!?

Working...