

C# GZip Multiple Files
Using C# quickly Compress and Decompress multiple files without the use of 3rd party libraries!
WunderVision
Sep 15, 20191 min read
1,083 views
0 comments


C# Xml Easy Read and Write
Use C# to easily read and write XML files.
WunderVision
Sep 6, 20193 min read
250 views
0 comments

Simple JavaScript Letter Draw
JavaScript code that creates a cool letter etching animation
WunderVision
Sep 2, 20193 min read
25 views
0 comments


Basic WPF Thermometer
Create a basic thermometer control using WPF xaml and C#
WunderVision
Aug 25, 20193 min read
494 views
0 comments


Simple WPF Compass Control
Create a simple WPF Compass Control
WunderVision
Aug 24, 20193 min read
793 views
0 comments
ASP.NET Core - Starting down the rabbit hole.
Although my primary day job is a Windows Desktop developer. (Unfortunately part of that includes outdated C++ MFC). I have been dabbling...
WunderVision
Jul 27, 20191 min read
8 views
0 comments

UWP vs .Net Framework File Access
Source: https://github.com/Corey255A1/.NetStandardFileSystemInterface For better or worse I started working on a UWP (Universal Windows...
WunderVision
Jun 24, 20192 min read
276 views
0 comments

Write your own HTTP Server?
I have an idea for an application that may one day be all moved to the web. However, my day to day job, and therefore the most of my...
WunderVision
Mar 9, 20192 min read
270 views
0 comments


.NET Standard Simple HTTP Server: Websockets
Source: https://github.com/Corey255A1/BareBonesHttpServer Suggested Reading: Previous Post: https://www.wundervisionenvisionthefuture.com...
WunderVision
Mar 9, 20192 min read
39 views
0 comments


.NET Standard Simple HTTP Server
Like the title suggests, we are going to build a simple HTTP Server. https://github.com/Corey255A1/BareBonesHttpServer Suggested Reading...
WunderVision
Mar 9, 20193 min read
281 views
0 comments


WPF C# Drag and Drop Icon (Adorner)
Quick demonstration and explanation of Drag and Drop Icons (Adorners) in WPF
WunderVision
Sep 15, 20183 min read
4,638 views
0 comments


Card Player: Detecting Cards
Phase 4 of my Card Player series. I am attempting to create a solitaire playing bot in python. Phase 1: Prepare the data set Phase 2:...
WunderVision
Jul 4, 20182 min read
209 views
0 comments


Card Player: Command Line Solitaire
This is Phase 3 of the Card Player series I have been blogging about. I am attempting to make a Solitaire playing bot. Phase 1: Prepare...
WunderVision
Jul 4, 20181 min read
121 views
0 comments


Card Player: Keras Training
In the previous post I talked about gathering data and data augmentation. This post will cover some of the things I encountered while...
WunderVision
Jun 24, 20182 min read
166 views
0 comments


Card Player: Keras/TensorFlow
This we be split over several different blog posts because my end goal is to use machine learning to play solitaire. The code is all...
WunderVision
Jun 23, 20183 min read
465 views
0 comments


How to compress a Video using VLC
A friend asked me what the best options were for compressing a video. The max file size was 50MB and the original video was 250MB. The...
WunderVision
Jun 15, 20182 min read
1,025 views
0 comments


C++ Vector Iteration
At work one day a few coworkers and I were discussing the various ways to iterate through a vector in C++. I thought that it was...
WunderVision
Apr 22, 20182 min read
25 views
0 comments


WunderVision PIOT (Phase 3)
If you have been following along, a while back I demoed the ability to take apart one of those 3 outlet remote controls and rig it up in...
WunderVision
Mar 21, 20184 min read
30 views
0 comments


Corey255A1.GitHub.IO
I recently discovered that GitHub allows you to create a static webpage. This is great, because I can host all of my various javascript...
WunderVision
Mar 13, 20181 min read
24 views
0 comments

WebSocket Paint
Over the course of the last few days, I have really doubled down on the web projects I have been working on. The first project I...
WunderVision
Mar 12, 20183 min read
81 views
0 comments


JavaScript Sound Visualizer
I woke up Saturday and was thinking about Discrete Fourier Transforms (you know normal things) and wondered how hard it would be to...
WunderVision
Mar 12, 20182 min read
42 views
0 comments

Node.JS Beginnings
This morning's Coffee and Code session consisted of setting up a basic Node.JS server and getting a checkbox to emit its status to all of...
WunderVision
Feb 28, 20182 min read
2 views
0 comments

HTML, CSS, and Javascript
Over the last few months, I have been trying to close gaps in my general knowledge of Computer Science. I dabble a lot all different...
WunderVision
Feb 25, 20182 min read
1 view
0 comments


Saturday Morning Coding - Template Matching and Sign Detection
Edi 2/9/2019: Turns out I didn't leave a link to the github repo for this. So here it is! https://github.com/Corey255A1/BasicPythonOpenCV...
WunderVision
Jan 27, 20182 min read
189 views
0 comments


SHA-256 and Bitcoin
A few months ago I wanted to take a hard look at the ideas behind Bitcoin and also the SHA256 algorithm at its core. Bitcoin In a...
WunderVision
Jan 20, 20183 min read
6 views
0 comments

My Journey into Machine Learning and Neural Networks
The past few months I kind of went on a tangent trying to learn all I can about Machine Learning and Neural Networks. I had felt that I...
WunderVision
Jan 16, 20182 min read
5 views
0 comments


Word Streak/Boggle With Friends Automation
This project combined the use of Python, OpenCV, and Keras (TensorFlow). After learning about Word Streak, of course the Software...
WunderVision
Jan 13, 20183 min read
165 views
0 comments


Raspberry PI IOT Hub
Last year after Christmas, I wrote about using the ESP8266 and Arduino to turn one of those push button remote outlet controllers into a...
WunderVision
Dec 16, 20172 min read
0 views
0 comments

Endless Snake Maze: Available on Google Play
I've been working on a Android Game. Each level is generated. Which is really why I started making the game. I have been fascinated with...
WunderVision
May 5, 20172 min read
20 views
0 comments


IFTTT, Google Home, WebServer, ESP8266 and Remote Light Switches
My parents got me the Google Home Assistant for Christmas this year. It is one of the first in most likely a wave of personal home...
WunderVision
Dec 30, 20164 min read
71 views
0 comments


ESP8266 Pt3 - Arduino
Very Very Basic Arduino Code that assumes your ESP8266 is already setup to connect to your wifi and sends a "Hello World" as a UDP Packet...
WunderVision
Nov 30, 20162 min read
10 views
0 comments


ESP8266 Pt2 - Hello World
Once I was able to talk to the ESP, it was then time to connect to my Wifi. I enabled the Station and Access Point modes, because at some...
WunderVision
Nov 30, 20161 min read
6 views
0 comments


CVS Pure Digital Disposable Camera
So I was recently given the challenge of retrieving some footage from a ~10 year old Disposable Digital camera. Some time around 2006 and...
WunderVision
Nov 29, 20164 min read
405 views
0 comments
The ESP8266
Hello there. It has been a while. I recently came across a little board known as the ESP8266. It is a Wifi board with a full TCP/IP...
WunderVision
Nov 29, 20163 min read
18 views
0 comments
Nerf Turret
Remote controlled automatic Nerf Turret. Several things going on in the project. Currently the movement and shooting is controlled using...
WunderVision
Jun 1, 20151 min read
212 views
0 comments
Experimenting with Microsoft Hyperlapse at Orlando Wetlands
The title pretty much says it all. I jumped on board the beta train and was able to download the Microsoft Hyperlapse app on the Android...
WunderVision
May 25, 20151 min read
2 views
0 comments
Wifi Android App Controlled Raspberry Pi Robot
In this video, I go from testing the motor driving capability of the Raspberry Pi to controlling it via WiFi using a custom Android App....
WunderVision
Jan 18, 20152 min read
209 views
0 comments
Gravity Paint
Draw a picture and then watch it get destroyed by gravity!!! Written in C#. Still some glitches, and not really reflective of real life...
WunderVision
Dec 20, 20141 min read
3 views
0 comments
Scribbler Pt.2
This time around, I went for manual control. I used two 5K Potentiometers to control the x and y axis servos. I used a button on the...
WunderVision
Nov 23, 20142 min read
9 views
0 comments
Scribbler (Servo Plotter)
I had been wanting to make a plotter for a while. So I finally made a basic one using 3 servos, K-Nex, a raspberry pi and an arduino. I...
WunderVision
Nov 22, 20141 min read
0 views
0 comments


Solar USB Recharger+
I will be taking a flight soon, so I was thinking about ways to recharge my phone on the go. I saw the solar panel and thought how cool...
WunderVision
May 2, 20141 min read
1 view
0 comments
Remote Lamp
Using the Raspberry Pi, I created a simple Python TCP server that monitors a port for commands. When the script received the appropriate...
WunderVision
Apr 15, 20141 min read
3 views
0 comments


Remote Lamp
Using the Raspberry Pi, I created a simple Python TCP server that monitors a port for commands. When the script received the appropriate...
WunderVision
Apr 14, 20141 min read
0 views
0 comments
Tweet 'n Wave
I was thinking of a fun way for people to interact with one of my weekend creations. What I came up with was a hand that waves everytime...
WunderVision
Mar 23, 20141 min read
4 views
0 comments


Tweet 'n Wave
I was thinking of a fun way for people to interact with one of my weekend creations. What I came up with was a hand that waves everytime...
WunderVision
Mar 23, 20141 min read
1 view
0 comments
Solar USB Recharger+
I will be taking a flight soon, so I was thinking about ways to recharge my phone on the go. I saw the solar panel and thought how cool...
WunderVision
Mar 2, 20141 min read
1 view
0 comments
Microwave to Ball Toss game
I tore apart a microwave. What I wound up with was a nice casing to use for something. I don't have all the proper tools to cut it the...
WunderVision
Feb 25, 20141 min read
3 views
0 comments
WunderVision Jam Session
Was it perfect? No. Was it fun? Yes. I do like to jam out and relax. For those of you who are wondering, I use the video editor called...
WunderVision
Feb 14, 20141 min read
0 views
0 comments


WunderVision Jam Session
Was it perfect? No. Was it fun? Yes. I do like to jam out and relax. For those of you who are wondering, I use the video editor called...
WunderVision
Feb 14, 20141 min read
0 views
0 comments
Smartphone Controlled Camera Tripod
A smartphone controlled camera tripod. Using a GUI in a cool scripting language called FASL on the Android market, I am able to control...
WunderVision
Feb 9, 20141 min read
1 view
0 comments