Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×

Comment Re:Take That, Capitalists! (Score 1) 205

Only a few hundred? Great! I'll get them delivered. Just set up a small box down-town with a charging socket on a post and a sign that says, "Free for the first 2 months - Leaf and Volt owners only!" That way my delivery people know that they're bringing you the wire for free. They'll drive the wire to your collection station and attach them to let you know they're ready to be harvested. I'll throw in some batteries too if you're willing to invest in a pry-bar.

As far as the delivery of the cow... I'm willing to take it piece-by-piece as long as the remaining balance stays refrigerated.

Seriously though, my state has quite a few trees, but driving out to them kind of defeats the purpose of going "green". It's more recreational. Planting them close-by is just unfeasible. A potted cactus maybe, but certainly not a proper tree.

Comment Feel free to improve (Score 1) 105

This post may be freely copied, modified, and distributed as readers see fit.

That said, it kind of sucks, but it's free so feel free to improve it and give it some functionality should you see fit.

Note: If you're blind or require any kind of special apparatus to manipulate this post, you may be in violation of this license.

Comment Re:Take That, Capitalists! (Score 1) 205

...stick a seed in the ground...

Have you checked the price of tree-worthy ground lately? Or materials to provide nutrients and hydration to said ground? I started digging a nursery on Broadway, but the local traffickers got all bent out of shape. Do you have a cow? Because I have a pocket full of very young trees I'd like to trade you.

Comment Re:Most common pathogens (Score 1) 205

We can never let that happen. As a member of PETP, I demand to know whether the trees were properly anesthetized prior to being bled alive, used without consent as subjects for scientific testing, and mutilated. If these trees were young, were their parents consulted? Color me outraged.

Comment Re:Still should be hands free (Score 2) 142

I don't know about state laws, but you'd better be "hands-free" in Santa Fe. Personally, I find someplace to pull over should I need to talk because I find myself distracted but am safer looking at a GPS-focused map than craning my neck to figure where the hell I'm going. My wife's just the opposite - She talks on the phone just fine while driving, but looking at a GPS unit could endanger herself and others.

Comment Re:Wouldn't work (Score 1) 313

When can I expect gcc to make me pie?

#include "mpi.h"
#include
#include
int main( int argc, char *argv[] )
{
        int n, myid, numprocs, i;
        double PI25DT = 3.141592653589793238462643;
        double mypi, pi, h, sum, x;
        MPI_Init(&argc,&argv);
        MPI_Comm_size(MPI_COMM_WORLD,&numprocs);
        MPI_Comm_rank(MPI_COMM_WORLD,&myid);
        while (1) {
                if (myid == 0) {
                        printf("Enter the number of intervals: (0 quits) ");
                        scanf("%d",&n);
                }
                MPI_Bcast(&n, 1, MPI_INT, 0, MPI_COMM_WORLD);
                if (n == 0)
                        break;
                else {
                        h = 1.0 / (double) n;
                        sum = 0.0;
                        for (i = myid + 1; i = n; i += numprocs) {
                                x = h * ((double)i - 0.5);
                                sum += (4.0 / (1.0 + x*x));
                        }
                        mypi = h * sum;
                        MPI_Reduce(&mypi, &pi, 1, MPI_DOUBLE, MPI_SUM, 0,
                              MPI_COMM_WORLD);
                        if (myid == 0)
                                printf("pi is approximately %.16f, Error is %.16f\n",
                                              pi, fabs(pi - PI25DT));
                }
        }
        MPI_Finalize();
        return 0;
}

Slashdot Top Deals

Kleeneness is next to Godelness.

Working...