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

 



Forgot your password?
typodupeerror

Comment Re: It a guidebook... (Score 1) 198

my son's teacher told us that it helped with developing fine motor control, particularly in children that had below average motor control.

For one, is this based on research or speculation? Second there are different kinds of motor control. Following an existing pattern or shape is one type, while cursive is another because one tends to develop patterns based on personal preferences.

Comment Re:More than meets the eye (Score 1) 198

In 5th grade my teacher wanted to wring my neck because I was growing quite skillful in drawing and art, yet my cursive writing was worse than a drunk doctor's. I didn't see them as connected, but it was in the teacher's mind. I had a semi-impressionistic art style such that stroke precision mattered less.

Comment Re:Async bloat (Score 1) 81

I guess I'm not working on "typical CRUD apps" then?

Based on your description, no, you are not, other than maybe "data stores". Sounds like systems programming. And it's rare to need such for app-level database access (unless you did something wrong or bad).

other than async and await keywords here and there.

It tends to force the need to parts that have nothing to do with asynchronous programming other than being referenced by parts that do. It pollutes and spreads like prions in a brain.

Comment Re:C/C++ code covers more complex legacy code (Score 1) 32

Rust [...] makes it harder for you to work around the compiler when it comes to memory.

... which, to be clear, is a good thing. Working around the compiler is dangerous and a code smell, so it shouldn't be something that is easy to do. It usually indicates that either the compiler's capabilities aren't sufficient to meet your needs (in which case, a better solution would be either a better compiler, or to re-evaluate the wisdom of your approach), or that you are doing something the wrong way and should find a way to do it that works with the compiler, rather than around it, so that you get the benefits of the compiler's co-operation.

Comment Re:Cable guy? (Score 1) 116

Yes. I remember seeing a movie that took place in rural Arizona in the early '50s. Part of the plot had to do with moving a small herd of horses across country to a dirt road that was good enough that they could drive a truck up it and load the horses on it so they could take them to market and sell them. One evening they stopped at a ranch house that was still lit by kerosene lanterns because the team stringing electric cables wasn't due to get there for another six months.

Comment Re:Really? (Score 3, Insightful) 27

Fear or corruption?

This isn't some Manhattan style project, with great secrecy over methods, attracting the best and brightest.

It is a MASSIVE wealth transfer though, disregarding law and scrutiny, with some of the most dubious leading the charge.

I would rather that it was fear driving this as there would be more evaluation of how this will play out globally instead of an endless black hole to dump the nation's wealth.

Slashdot Top Deals

This process can check if this value is zero, and if it is, it does something child-like. -- Forbes Burkowski, CS 454, University of Washington

Working...