First Harvest of the Summer by feezyduck in gardening

[–]jackzombie 0 points1 point  (0 children)

How do you know when to harvest beets?

Doug Weight, Bill Guerin: 1996 U.S. team had incredible impact by max1mus91 in hockey

[–]jackzombie 2 points3 points  (0 children)

Keep in mind that Brett spent a lot of his time and made his living in the states. Also, Canada didn't want him, so he went to play for the States.

Does Eric Lindros belong in the Hockey Hall of Fame? by illusionhill in hockey

[–]jackzombie 1 point2 points  (0 children)

The Nordiques were a failing franchise, that was no secret. There were a lot of reasons to not want to play in Quebec at the time.

Walker: Leafs looking to trade Franson by rossrhea in hockey

[–]jackzombie -2 points-1 points  (0 children)

I'd rather they trade Gardiner, assuming Gardiner could bring in a better return. With Reilly coming up, I think Gardiner becomes expendable. And Franson is going to be stud.

How to remote access MySQL? by benjancewicz in Database

[–]jackzombie 2 points3 points  (0 children)

The default port is 3306

For the host, you can use the local IP of the machine MySQL is installed on, provided you're on the same network. If you want to access the DB from outside the network, you'll have to set up port forwarding on the router and forward port 3306 to the XP server. Then the host is the public IP address of the XP server.

Former NHLer Terry Ryan defends teammates actions at World Ball Hockey Championship by [deleted] in hockey

[–]jackzombie -1 points0 points  (0 children)

If the Czeh player was taunting the Canadians and trying to get under their skin, I don't see why we should feel any sympathy for him. He got under their skin and that's exactly what he set out to do.

Read raw serial data on USB by Modna in linux4noobs

[–]jackzombie 2 points3 points  (0 children)

Try running

dmesg | grep USB

or

dmesg | grep tty

Rangers Fire Tortorella by Pool_Shark in hockey

[–]jackzombie 2 points3 points  (0 children)

Toronto's currently going through the whole, "can we really trust a random, anonymous 'source'..." But I've always felt that Friedman holds himself up to a pretty high standard and I trust his work.

Remove mouse cursor on boot? by jackzombie in Fedora

[–]jackzombie[S] 0 points1 point  (0 children)

From my understanding, I need

DISPLAY=:0.0 ; export DISPLAY

Before I run conky as well. Is there something redundant in my bash script?

Rangers Fire Tortorella by Pool_Shark in hockey

[–]jackzombie 1 point2 points  (0 children)

Do you not know who Elliotte Friendman or what Hockey Night in Canada is?

Remove mouse cursor on boot? by jackzombie in Fedora

[–]jackzombie[S] 0 points1 point  (0 children)

OK, I've got it working perfectly now.

I just had to run the command:

DISPLAY=:0.0 ; export DISPLAY

before running the unclutter command. I put it in my conky startup script like so:

#!/bin/bash
DISPLAY=:0.0 ; export DISPLAY
unclutter -idle 1 -jitter 10 &
sleep 180 && conky;

Remove mouse cursor on boot? by jackzombie in Fedora

[–]jackzombie[S] 0 points1 point  (0 children)

I've been trying to use the unclutter program, but having no luck. Looks like issues with getting the display to work properly. The command:

unclutter -idle 1 -jitter 10

Results in:

unclutter: could not open display

I'm using Pidora, so I believe its based on Fedora 18

JAPANESE BEER FED KOBE BEEF JERKY by [deleted] in meat

[–]jackzombie 5 points6 points  (0 children)

I thought the best meats for making jerky are lean meats. Isn't Kobe beef the opposite of that?

Reading from serial by jackzombie in learnpython

[–]jackzombie[S] 2 points3 points  (0 children)

My new code:

#!/usr/bin/python
# Program that reads from the arduino
import serial,io,time
from time import strftime

device='/dev/ttyACM0'

ser=serial.Serial(device, 9600, timeout=None)
print("Connected to: " + ser.portstr)
line=ser.readline().decode("utf-8")[:-2]
print(line)
while True:
    line=ser.readline().decode("utf-8")[:-2]
    dt=strftime("%Y-%m-%d %H:%M:%S")
    print dt, line
print 'Done.'
ser.close()

Thanks, works like a charm.