czardestructo

joined 1 year ago
[–] [email protected] 11 points 4 days ago (1 children)

I was going to retort they're similar sizes but the ioniq 5 is almost 20" longer, damn. My perception is so warped because everything is a god damn SUV and I get excited even when someone makes a large hatchback.

[–] [email protected] 0 points 4 days ago (4 children)
[–] [email protected] 5 points 4 days ago

I still have mine and my daughter is probably old enough to enjoy it. Guess I need to repair the barrel jack connector and make a USB PD to barrel jack adapter so she can play all day. Thanks for the reminder!

[–] [email protected] 4 points 4 days ago

You have to park in a garage and walk down a narrow path lined with people trying to sell you shit. Its more like visiting a mall with aggressive salesmen than a national park. It was the worst stop I made during a cross country road trip.

[–] [email protected] 5 points 1 week ago

I use Ruffle on my personal domain to host my college flash web page again. I made the super Mario world map into a web page for an internet gaming group on campus and spent way too much time doing it. I was delighted I could host it again.

For anyone that cares

[–] [email protected] 27 points 1 week ago (3 children)

Needing something is one thing, tax payer subsidies is another topic entirely. State tax payers have now all chipped in for these Data centers and the question is was it worth it for them.

[–] [email protected] 5 points 2 weeks ago (1 children)

Required course work for electrical engineers in the early 2000s.

[–] [email protected] 4 points 2 weeks ago (4 children)

Those leaves look too light green, the plant is stressed. How often do you water the plant and how much do you give it? What is your metric for 'enough'? Do you let water sit in that tray? I would just start by watering it 1/3 as much as you currently do and see how it goes, the leaves will wilt if you are stressing it due to lack of water but in my experience cannabis can handle serious drought stress, they're champs.

[–] [email protected] 6 points 2 weeks ago* (last edited 2 weeks ago) (1 children)

Just a heads up I grow mostly vegetables, have been an avid gardener for over 15 years so my advice will be generic and not specific to growing cannabis. In general I think cannabis growers over think something that is much simpler than it seems. After growing veggies for so long, I found that cannabis is so laughably easy to grow, its ridiculously robust, will handle all kinds of abuse and grows incredibly fast. Here is the little beast I grew two years ago

You mentioned you put them outside, how long ago? Did you re-pot them when you put them outside? They will need time to establish bigger roots when you replant them. Are you growing anything else outside that is doing well or just the cannabis? A picture of the leaves will tell a better story, green has lots of shades and a light green means stress. If you gave it lots of nutrients and you got no response that is bad, either you will over feed it and stress it out (Very hard in my experience) or it will take it up and burst into growth. What this tells me is your plant CANT take up the feed in the soil because the dirt is too wet. How often do you water the plant and do you check the soil to ensure its dry before watering? Has it rained a lot? Over-watered dirt will kill your plant because it cannot get the nutrients it needs, it needs to be damp but NOT wet or the roots aren't effective.

[–] [email protected] 3 points 2 weeks ago

I use the onboard CPU of my ryzen 5600g for my jellyfin and nextcloud (memories app) duties and it works flawless.

[–] [email protected] 23 points 2 weeks ago (2 children)

Taking an international flight where half the plane is smoking. Those were good times, especially in Greece where they loved smoking even more than the Americans.

[–] [email protected] 3 points 3 weeks ago (1 children)

May or may not be an option for you but buy any camera that supports rtsp, only allow that traffic from their network through and block everything else. Works fine for me and my Amcrest cameras. You could accomplish this with a pi and a USB network card and some basic iptables.

 

So I'm cleaning out a house and found a brand new Gateway2k Pentium 4 computer. Someone opened the boxes but never took the computer out, its all still in the plastic and I don't want to ruin the unboxing for someone that is into this. The computer is free to a good home in the Boston metro area to make your retro gaming dreams come true! Shoot me a message, first come, first served.

P4 Computer - Gateway 2000 model 510 - part number 2800434

17" TFT Monitor - Gateway FPD1730

Speakers - Boston Acoustics BA745

Edit: Found a taker, hopefully it goes to it's forever home on Saturday!

Edit edit: its gone!

 

Started the peppers in March and tomatoes in April. They were getting too big for my grow light so I evicted them outside. Plenty warm in the cold frame in Massachusetts.

 

So I had a verbal conversation with a coworker yesterday and now I'm getting fed very specific ads. No possible way it's accidental. I have most of the microphone access to apps limited, I have Google assistant turned off and no VPA setup in my home. I use a Oneplus 9 pro, does anyone have recommendations on how to further root cause this or just par for the course for using any standard android OS? Have other folks had similar experience after locking down their stock phones?

 

Action Video

For her birthday my daughter received a cuckoo clock. It had very limited programming for 'quiet hours' so I fiddled with it and ended up breaking it. I didn't want to disappoint her so I gutted it and proceeded to install a Pi Zero W and a headphone amplifier I had built. She now has a fully programmable, USB powered, linux based cuckoo clock where I can program it to whatever suites our needs and it syncs it's time with NTP severs. I even connected her night light to it which turns on at night and off to let her know when its time to get out of bed. This combination also allows us to have dance parties with flashing lights, a dancing bird and fun songs coming out of her cuckoo clock. It's ridiculous and eccentric but it makes us happy!

Build

  • The Pi Zero's dont come with a sound output so I built an audio output filter to convert the PWM output to an analog audio output
  • Connected the analog out to a OPA1642 based headphone amplifier I designed and built
  • Wired up the cuckoo bird's coil actuator to a simple MOSFET drive circuit to control it from the Pi's weak GPIO output
  • Wired up some 5V string lights (used to be battery powered) to a simple MOSFET driver circuit to control it from the Pi's 3.3V GPIO output
  • Wrote some bash code to make the bird dance, the light flash and the cuckoo bird sounds play
  • All the scheduling and execution of the code is done clean and simple in crontab
  • I also have a text to speech engine verbally state the hour after the cuckoo action so my daughter can better learn to tell time by herself

To re-map the audio to the PWM0 output of the Pi

add to /boot/config.txt to remap the audio to the PWM0 and PWM1 pins of the pi.

# Enable audio (loads snd_bcm2835)
dtparam=audio=on
#remaps the audio to the PWM0 and PWM1 pins (pins 18 and 13)
dtoverlay=audremap,pins_18_19

Code

Cron Scheduling

@reboot /home/pi/startup.sh

#cuckoo between 8am and 6pm, inclusive
0 8-18 * * * /home/pi/cuckoo.sh

#turn on the night light at 6:15 pm
15 18 * * * echo "1" > /sys/class/gpio/gpio26/value
#turn off the night light at 6:15 am
15 6 * * * echo "0" > /sys/class/gpio/gpio26/value

Startup Configuration for GPIO

#!/bin/bash

#setup the GPIO
#"In order to use a GPIO pin through sysfs, we first have to “export” each one to make the appropriate paths available."
echo "17" > /sys/class/gpio/export
echo "26" > /sys/class/gpio/export
#set direction
echo "out" > /sys/class/gpio/gpio17/direction #cuckoo movement
echo "out" > /sys/class/gpio/gpio26/direction #nightlight

Flashing Light Code

#!/bin/bash

i=1

while [ "$i" -le 3 ]; do
        #turning the GPIO on
        echo "1" > /sys/class/gpio/gpio26/value
        sleep 0.050
        echo "0" > /sys/class/gpio/gpio26/value
        sleep 0.050
        i=$((i + 1))
done

Cuckoo Code

#!/bin/bash
i=1
echo "Looping "$(date +%I)" times"

while [ "$i" -le "$(date +%I)" ]; do
        aplay /home/pi/cuckoo.wav &
        #flash the lights three times quickly
        /home/pi/flash.sh &
        #turn on the cuckoo bird coil to make it bob down and flaps its wings
        echo "1" > /sys/class/gpio/gpio17/value
        sleep 0.300
        #turn off the cuckoo bird coil so it sits back down
        echo "0" > /sys/class/gpio/gpio17/value
        sleep 0.700
        i=$((i + 1))
done
#Text to speech engine, speaks the current hour through the speaker
#date + sed command below returns the hour, in 12 format, and the sed command removes the leading zeros
espeak -v mb-en1 -s 120 "it is $(date +%I | sed 's/^0*//') oh clock"
 
 

Title says most of it. Spin electric scooters exited the Seattle market and abandoned their scooters all over the city and apparently they have a pi 4 in them!

 

Does anyone else have a Turbo Button™ on their router? My wifi router is in essentially attic space with no AC so it gets hot and acts up with connectivity issues. My turbo mode solves the problem.

 

"The paper, which the students wrote as part of an applied lab course, found that costs are diffused across a number of areas and involve things people don’t often consider. Beyond those for individual drivers, road maintenance, snow removal, and policing, there are less-obvious ones, such as those associated with added pollution, value of land set aside for parking lots, lost productivity from sitting in traffic, and various costs associated with injuries and deaths on the road.

Using publicly available data, the authors put the annual public tab at $35.7 billion, which amounts to about $14,000 for every household in the state. Those that do own vehicles pony up an additional $12,000 on average in direct costs."

 

Found some tiny coffee plants while in Hawaii and thought they looked amusingly fake so I grabbed a picture.

 

Took a nice macro shot of a flower while vacationing in Hawaii awhile back.

 

I call this nonsense host ‘Ghost’, for me it’s similar to a tape backup solution. Fairly simple concept, it’s an old Pi1 + external mechanical drive that sits dormant with its ethernet off. Once a month, at a random time and random date it enables the ethernet, spins up the drive and pulls data from the main server to update its drive then goes black until next month. The only way to check or maintain the pi is a push button that toggles the ethernet interface. I slapped it together with some scrap wood, spare hardware and screwed it to a 2x4 in a dark corner of my basement. It’s my 5th string backup, the ultimate insurance policy because I’m mental.

 
view more: next ›