This is something I made up, the idea of it is to announce that I am attempting something new with a date, I will not update often on my progress but rather show it in my blogsI also will post projects and concepts What am I going to do…I am going to research math (networking […]
pong in javascript, ‘multiplayer’
Javascript/HTML5 is way too easy to use. Then again, it is only pong, another game is probably coming out in a month if my classmates will do their work. Link to the game: https://github.com/EthienDuckett/javascriptpongJust download the zip file and double click on the html file, it is pretty simple. Note: it likes to use every […]
a poorly optimized solution for integer null value
Integers use Two’s compliment which replaces the largest bit with a 1 for negative and a 0 for positive, which does negatively square the biggest number you can represent. 10000000 = -0, 00000000 = 0. I have a question now, if integers are 4 bytes how come I can only assign 2 bytes worth of […]
unknown future
I am not the owner of ejware.com, the owner is currently experiencing issues in real life, ejware has a decent chance of having a different owner in a year or two. My github page will still be up and I will be active on it. https://github.com/EthienDuckettIf I can be certain that this website will remain […]
Data flip flops
how to make them, what they do, and how they work To follow along with me go to http://nandgame.com and complete all of the levels up to the data flip flop. (though the website is called nandgame I won’t show how to make everything with just nand gates) Data flip flops probably have a better […]
Black Jack in python3
https://github.com/EthienDuckett/blackjack It finally works, and I think the rules needed to be fixed in the real life version as well.
Conway’s game of life (python3)
Code is on my github page. github.com/EthienDuckett To make the program I watched a video tutorial and checked out the page’s documentation. I think pyglet is the easiest GUI programming is going to get without using scratch, visual studio, or pygame. Also pyglet is a lot faster than pygame. Also an alternate announcment, I am […]
findimg release!
I am also planning on making a Youtube comment indexer in the future and something for discord maybe?check it out on https://github.com/EthienDuckettAlso I am looking to work with someone to make an atom ui
How find the number of lines in a file shell scripting and also take the lines from the file
part 1. But first if you like this sort of stuff https://discord.gg/4yYVkU4 join my coding group discord serverroad map: The first part, LEN1 is being assigned to a string. The string is generated by the command $( wc -l file.txt ). wc is a command for finding stats on a document, the -l command returns […]
c++ substr() is broken
If you find that substr is broken you can just use a function. I don’t know why it breaks but it just broke for me. It probably is not efficient at all but at least it works all the time.
Recent Comments