Thursday, September 28, 2023

VC/Investor Job sites And Others as of September 2023


Youtube SEO Notes

 Here are my notes on how to optimize YouTube for search, aka Search Engine Optimization, or SEO.

  1. Have a clear single keyword in mind
    1. Multiple keywords dilute the search value
  2. Put that keyword early in the title
  3. Include your keyword early in your description. You should have at least 50 words in the description
  4. Add a Transcript to your video
  5. Ask people to Like or Share your video
    1. Friends and family ok too
  6. Include keywords in your video file name, title cards, descriptions, end screens, transcript/script, and overlays
  7. Tag your video with popular keywords
  8. Categorize your video
  9. Upload Subtitles and Closed Caption files from an SRT file
  10. Make sure there is a Call To Action (CTA) in the video AND the description (ie Subscribe now, Call us today, comment below)
  11. Add Cards and End Screens to increase your channels ownership (AKA "Subscribe Now")
  12. Add HashTags
  13. Add a playlist on related topics for social sharing
  14. Review analytics and understand which lengths that work from your audience
  15. optional: Leave a pinned comment on your own video
  16. Curate and respond to your comments promptly. If you engage with them, they'll engage with you

Wednesday, February 1, 2023

Help me get a generator for the Amigos Academy in Nicaragua

 The Amigos Academy Need a Generator

(Post Summary: I'm raising $1000 for a generator for a school in Nicaragua. Donate here)

Friends, as you know, I have been working with a great NGO in Nicaragua, Amigos for Christ, for over 10 years. I have written about various trips over the last few years. Since I have started working with them, we've build clear water systems, run labs in the communities to help families get free from parasitic infection, and we have also built a school, the Amigos Academy.

You Really Should See The School

Its amazing. I remember the school when it was a rice field. Then the next year we built a wall around the property, as is customary in Nicaragua. The next year we build the pre-school area. The year after that we participated in the building of the primary class buildings. Since then the feeding center/cafeteria has been completed. They are now running a K-6 school with around 200 kids. See some pictures of the school here.

They Have Computers!

They even have a computer room where they teach the kids the basics of using computers for writing. They are also considering robotics projects as well, which is super exciting.

They Need a Generator

The school is roughly here.  As you can imagine, the power infrastructure in rural Nicaragua is not always stable. And when the school has a power outage, its is really disruptive to the students' education. So the principals of the school have told me they could use generator to help them through the power outages for the computer room and related infrastructure. They are looking for a generator roughly like this


I'm raising $1000 for a Generator For the School


To do this, I would like to raise $1000 so the Amigos Academy can purchase a generator for the school. If you are interested, please go here, and give whatever you can. No amount is too small. Or you can use the obvious giant button below. Their EIN is 58-2484257 if you are giving via a system like BrightFunds. You can give by other means, described here, but please mention in the notes that this is for "Amigos Academy Generator".



For more info on Amigos For Christ, check out their work here.


Monday, January 23, 2023

Build Your Own Geiger Counter with Raspberry PI

 The result of Covid and Work From Home has been....we stay home a lot. There are upsides, like not commuting every day. There are downsides, as we have more idle time. Since my memoir might be titled "A Mind Forever Wandering," I was thinking one day about how much we really know about background radiation. This led to a couple of searches around Geiger Tubes, and real-time databases, etc.

After a few random purchases around the internet and a bit if python code and a left over Raspberry PI 4 1G box, I have put together a DIY Geiger Counter. Here is how I did it, and here is the code, etc, you'll need.

Here's what you need:

Set up Raspberry PI

First, get a Raspberry PI 3 or 4. You'll need some kind of Raspbian OS/Raspberry PI OS on it. I always use the Raspberry PI OS installation instructions here. In short, get the OS and the imager, and create an image on the SD card. Then boot up the Raspberry PI.

You'll also need to add Python3 and pip to get the code working. You'll need to do something like:

$ sudo apt install python3 pip

I am using Python 3. I have not tested Python 2. Once done with that, you should use pip to install the following additional packages:

$ pip install influxdb_client RPi.GPIO

Set Up Geiger Tube

Next, Set up the Geiger-Miller tube, and the board. My pinout for a Raspberry Pi 4 1G device is pretty simple. GND pin on the board goes to pin 6. The 5V pin is wired to pin 2 for 5V of power, and the VIN input line is wired to pin 7, GPIO4. (No reason not to do pin 3 or 5. It's just what I picked). I also pulled the J1 jumper, since the clicks get annoying. Back background radiation is about 15-35 CPM, BTW. Which is normal. About 0.11-0.15 microsieverts for those of you doing math in your heads.

Next, set up the code. My Raspberry Pi Geiger Counter code is here. You will have to set up your Influx DB v2 database, but I'll write that up in the next blog entry.

Once you do connect to to InfluxDB you'll be able to get cool graphs like this, in the InfluxDB v2 UI:



"CPM" here means clicks per minute. The full build is pictured below:



Questions? Ask them in the comments.

More links to Related Projects