Your personal Tumblr library awaits
Bruh this course has freaky react framework. Gonna use the R 18+ version of react as opposed to the PG 13 or MA 15+ react. This one has like swearing and gratuitous violence.
What do you want, adults only jQuery, $('developer').addClass('freaky-programmer');
Unfounded predictions on how the software industry is going to go based on pure autism:
-the pendulum is swinging back to simple very well performing software
-Microsoft is going to get caught embedding an individual copy of edge for every single button or something
-Microsoft goes out of business by 2035. With no mainstream pc os the average user just switches to android. Android gaming desktops become a thing
-Rust becomes the new c++, not in that it replaces it because it's better but it accumulates so many extensions and hacks you hate it but your boss needs you to use it anyways
-Java2tm or C## comes out in 2035 to universal acclaim. By 2041 it will be considered a crime against humanity
-x86 dies, ARM begins racing to become as shitty as them
-At some point TSMC is destroyed and all computer hardware is set back 10 years. Besides a new collectors market for RTX cards nobody especially notices or cares. Games simply turn off 5% of their shaders
-Generative AI is a fad and goes back to being nothing. Now everyone's into quantum computing, which is also a fad and will lead to nothing
-The linux kernal becomes sentient but only to start more discourse in it's github issues.
-Github is bought out by Disney. They don't know what to do with it but the logo is now that damn wizard hat rat
little endian and big endian are the stupidest terms in programming but i will defend them to my dying breath
The nerd shelf in my closet.
I'm powered by this stuff. #Coconut #CoconutWater #Drink #Code #Programming #Web #SVG #HTML #HTML5
Inspired by this.
Mode7 EP Select - 1381_03 by mikecreighton on Flickr.
if you donât think that video games are art, what are you doing?
examples:
1. detroit: become human
amazing character animation
beautiful environments/surroundings
2. the last of us
how is this concept art not appreciated by everyone?
3. red dead redemption 2
just look at this screenshot
and this character art?
donât you dare tell me that video games arenât art.
Monday 8th January 2024
OMG today was the best! The new jobâs office (not in the picture background, I'm at the doctor's there...) has so many cool chill people in it, so far I wanna stay here forever!
Had induction meetings, and a tour around the office, everything was so cool! Another 2 people joined so I wasnât entirely nervous thinking Iâm the only one who would be confused on the whole onboarding process. Workâs in an old-like building with a Grunge aesthetic vibe going on, absolutely love it! And music plays in the background which is so much better than the old job which was in complete silence đ€
I'm just super excited to start working on the project + the team seem, and are, super friendly and helpful! Thank God for a smooth process getting here, yay!
New Years Resolutions #3: Work hard and do well in new job!
âI felt I was an accepted team member. It was a great experience and a unique opportunity.â
Ruth Ann Strunk, a math major, was hired in 1968 at NASAâs Kennedy Space Center as an acceptance checkout equipment software engineer. She monitored the work of contractors who wrote the computer programs designed to check out the command module, lunar module and the Apollo J mission experiments. These experiments were conducted aboard the service modules on Apollo 15, 16 and 17 by the command module pilots.
âI am proud of the advancement and the number of women who are working and enjoy working here,â Strunk said. âIt was a wonderful opportunity NASA afforded me during Apollo that I have been able to use ever since.â
Remember the women who made #Apollo50th possible.
Follow Women@NASA for more stories like this one, and make sure to follow us on Tumblr for your regular dose of space: http://nasa.tumblr.com.
PROGRAMMING LANGUAGES GIJINKAS (PART 1)
HTML: Handles Internet with CSS and Javascript. Breaks the 4th wall on a daily basis. Literally a popstar. The gay is strong here.
CSS: The one that does HTMLâs wardrobe. Avid abstract artist. Bullies Javascript for eternity. Extremely one sided love for HTML.
Javascript: Will do anything to keep HTMLâs shit together. Has more than 10 toolboxes. Javaâs happy sibling. Lowkey crush on Ruby.
PHP: Confused 80% of the time. Oblivious to everything. ??????. No one knows sheâs a great musician.
SQL: Tsundere like no tomorrow. Cares a lot about PHP, but also consistently gets pissed at her. They live in the library. Robot arm because of a bookshelf accident.
Python: Loves mountains and camping. Owns 2 bikes. Lowkey crush on the entire C family. Flaming bisexual.
Ruby: Pythonâs hiking partner. Lives in a cave she renovated all on her own. Secretly wants to overthrow Python. Highkey crush on Javascript.
C: Wildlife and nature. Exercises with tree trunks. The one who taught Python how to camp. Daddy.
C++: The son of C. Always hangs out with Java at the arcade. Consistently wins online arguments. Has a crush on Python.
Java: C++âs bestfriend. Owns 2 bookshelfs: One with video games, and one with actual books. Doesnât know what sleep is. Absolute nerd.
As promised. Which ones should I do next?
This is the binary code to the âHello, World!â program, a simple computer program used in beginner classes to introduce basic programming syntax. The programâs sole function is to print âHello, World!â on screen: an uplifting, symbolic gesture in which the computer (an emerging technology when the program was first created) greets the world full of hope, and of wonder.
>âyouâre not allowed to use x function in your program because thatâs too easy, come up with the implementation yourselfâ me: *realises implementation is open source so just looks at source code for x function and copies and changes it*
How To Code: Insertion Sort in C language
Insertion sort is a basic algorithm for sorting elements in an array or list. Insertion sort works by grabbing one element and comparing to the element next to it. If the element is larger than its neighbor, then the element is left in its original position. If the element is smaller than its neighbor, than it compares it to the other previous elements to find a suitable position. Then all larger values are shifted up a space and the element is inserted into the correct position.
Output:
Sorted Array array:[17][26][36][48][52]
I want to make games so which code should i learn?
Iâm unsure if you already have an engine picked out because you asked which language to use and different engines may use different languages so here we go.
I personally would say you may want to download the Unity engine. Unity is a tool developers use to basically build the world, add items, characters, etc. There are, of course, other engines out there but Unity is one that most people tend to use. Then thereâs also Cryengine and Unreal Engine although, these are more advanced and have a wider learning curve. Unity is free to use (there are also features that only paid users are allowed.) and most colleges will instruct their students to use Unity for their learning. If you scroll down far enough, youâll see the games I made while learning. Although I never finished them, Unity has more than enough power to make good games while learning. Unity supports 3D and 2D game development and I donât believe Unreal or Cry engine do. (Not positive on that so correct me if Iâm wrong everyone..) There are a lot of lower-level engines out there as well such as Love Engine (I hope Iâm spelling all of these correctlyâŠ). Iâm assuming you want to make the entire game on your own, right? If not then youâll need a team of friends. If You do plan to develop alone, youâll need a programming language that the engine supports. I know Unity supports C# and JavaScript. Most would tell you to learn JavaScript first because itâs easier to grasp and I do believe that to be true. Trust me, go JavaScript. Iâm unsure of what languages you should study for the other engines but I assume most of them use JavaScript or C#. Iâd check for yourself on that.
I really hope this helps you or someone out there to get started.
Good luck!