My Son wanted to make this own costume this year. He wanted to be springtrap from fnaf. So we bought some foam, let him pick the outside fabric, and I started "vibe-crafting" with no real plan.
Here is the reference material:
And here is what we ended up with:
Last minute (literally the night before Halloween) I threw together some Led glasses (I knew he wouldn't be able to wear the mask at school, they don't let you cover your face, so the glasses would let him have SOMETHING on his face)
The suit is held together with random wires I ripped out of electronics I salvaged, and everything velcros in the back so he was able to put this on himself at school.
All in all, Im pretty happy with how it turned out.
The 3ds is an amazing piece of hardware. Especially if you hack it to add homebrew/emulators.
My son has been enjoying a bit of "free time" before bed, and playing with a generic "mini arcade" game system. The games are all generic knock offs, and I figured he'd love to play with my hacked 3ds which has thousands of high quality games...
The problem is, the 3ds doesn't have "screen time" controls to encourage him to put it down after X minutes so he gets some sleep. So I decided to download the source for the custom firmware I was using (https://github.com/LumaTeam/Luma3DS) and add the controls myself.
Because I wanted the parental controls to pause the game, and allow "sleep" to save his game, I had to add my code to the firmware itself. This lets me spawn a thread that is running in the background, even when a game is running to keep track of time, and screen time limits. I added the ability to call out to my website with the current game he's playing (so in the future if we want to have certain educational games count for less time, we can)
The basic logic is this: Every few seconds it sends the current game he's playing to my sever, which responds with the screen time limit. In order for this to work "offline" if we are not at home/near internet, it has a built in "default" time of 15 minutes. It then writes to a local file every second to keep track of actual screen time usage. Then if the current screen time usage is over the screen time limit, it pauses the OS, and pops up a screen telling him that his screen time is up.
It also has a hint on how to add more screen time (he's learning to read, so if he figures this out on his own, he deserves the bonus screen time) This is also a way for us to add more time if we need locally. We can add screen time via my server as well.
So far its working great, and just about ready for "prime time" (had some issues with the 3ds getting stuck in sleep mode, but I'm just about done with that.
Once I am finished with the code, I'll upload it all to GitHub so other parents can enjoy :)
I thought it would be cool to make one of his tonies tell him the weather for the day. So I threw this script together to generate a "text to speech" weather forecast for the day, and clothing recommendations for him to dress himself.
It runs every day to get the current weather, and uses the hourly high/lows and precipitation data to recommend what to wear. He wakes up in the morning, puts the yeti tonie on the box, and then knows exactly what to wear for the day.
fromnoaa_sdkimportNOAAimportjsonfromgttsimportgTTSimportshutilfrompprintimportpprintfromdatetimeimportdatetime,timedeltadefget_temp(temp,low):temps={100:"Very hot, Wear a Tshirt and shorts",85:"Hot, Wear a Tshirt and shorts",75:"Warm, Wear a Tshirt and shorts",65:"Nice, Wear a Tshirt and shorts",50:"Cool, Wear a Tshirt and pants",40:"Cold, Wear a Long Sleeves shirt and pants",30:"Very Cold, Wear a Long Sleeves shirt and pants"}fortintemps:iftemp>t:iflow<65:temp_data=temps[t].replace("shorts","pants")returntemp_datadefget_forcast(forecast_data,hourly_data):json_formatted_str=json.dumps(forecast_data,indent=2)print(json_formatted_str)tomorrow=datetime.now()+timedelta(1)tomorrow_string=tomorrow.strftime("%Y-%m-%d")# print(tomorrow_string)max=0min=100forhour_datainhourly_data:ifhour_data['startTime'][:10]==tomorrow_string:hour=int(hour_data['startTime'][11:13])ifhour>6andhour<17:# print(hour)ifhour_data['temperature']>max:max=hour_data['temperature']ifhour_data['temperature']<min:min=hour_data['temperature']print(f"High: {max} Low: {min}")temp=get_temp(forecast_data['temperature'],min)forcast_string=(f"{forecast_data['name']} will be {temp}. "+f"The forecast is {forecast_data['detailedForecast']} "+f"The Low will be {min}")returnforcast_stringn=NOAA()res=n.get_forecasts('19067','US',type="forecast")res2=n.get_forecasts('19067','US',type="forecastHourly")forecast=get_forcast(res[2],res2)print(forecast)myobj=gTTS(text=forecast,lang="en",slow=True)# Saving the converted audio in a mp3 file named# welcomepath="I:\\audio\\weather"filename="weather"ext="mp3"myobj.save(f"{path}\\{filename}0.{ext}")fornuminrange(1,3):shutil.copy(f"{path}\\{filename}0.{ext}",f"{path}\\{filename}{num}.{ext}")
My son wanted to be Iron Spider for Halloween this year.
(The photo is from our trunk or treat this year. I literally googled "spiderman trunk or treat" found an idea, and just copied it cutting out pieces from colored plastic table clothes)
Here is what iron spider looks like for reference.
We got an Iron Spider costume, but it obviously didn't come with the arms... So I started thinking how I could make the arms without also having him maim other kids walking down the street.
Then I remembered a last minute Halloween costume by Adam Savage from the Mythbusters,
So I got some 1/4" aluminum armature wire, and the insulation with adhesive on one side you use to insulate door jams. I stuck the insulation to itself on either side of the wire, then shaped it with some scissors, and spray painted it gold.
My wife then got an old backpack from a friend, cut everything off but the back pad, and the straps. She the cut a piece of wood to size, and drilled some holes with a jig to hold the arms in place. We fit the wood to the backpack with some screws (flat on the side that would be touching his back) then used colored duct tape to cover everything and fit with his costume.