Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror

Comment Germans are probably "wired" differently (Score 2, Interesting) 255

While this might work in a country that still has some modicum of work-ethic, I don't believe it would work in the US. A few years ago I had a client that had 100's of people on payroll that were mostly just above minimum wage. When they received their Earned Income Credit rebates annually, most of them wouldn't show up for work. Their reasoning was they had money so there wasn't any incentive to work. Company had to change to policy so that they could only receive EIC monthly, so the amount was too small to trigger them to no show up for work. Real world example.

Comment Any limited supply currency won't be adopted (Score 3) 153

Governments are not going to adopt any currency that has any limit to the amount that they can "manufacture" out of thin air. That's why we jettisoned the gold standard. Bitcoin is limited and it doesn't do small rapid transactions well. Not going to happen.

Comment Re:Quick everyone buy an electric car (Score 1) 74

My post was supposed to be sarcastic, but I don't know where you are getting your numbers: In 2020, greenhouse gas emissions from transportation accounted for about 27% of total U.S. greenhouse gas emissions, making it the largest contributor of U.S. greenhouse gas emissions. https://www.epa.gov/greenvehic....

Comment Reusable code accelerates development (Score 1) 70

I learned a LONG time ago that reusing well written and debugged pieces of code accelerates development DRAMATICALLY. Additionally it provides code with less bugs as the building blocks are refined over time. When I can include/import code blocks that have thousands of lines of code into a new application I know that I'm being efficient and my code will benefit greatly. Unless there is a good reason to "rewrite from the ground up" (programming language obsolescence or complete lack of talent in a language) it is best to leave running applications alone. Now refactoring "spaghetti" code can be beneficial, but unit testing and proper logging is a must.

Comment Re:Why? (Score 1) 27

There have been several attempts, but like Java some of the power of Python lies in the fact that it runs as byte code and is not compiled in the traditional sense. If you want you can always isolate routines that would benefit from running as compiled code and call them from Python. Many of the add-on libraries are done this way. If you haven't used Python you will be surprised at how well it runs without compiling.

Slashdot Top Deals

The IBM purchase of ROLM gives new meaning to the term "twisted pair". -- Howard Anderson, "Yankee Group"

Working...