Loading video...

Video Failed to Load

Go Home

After 1 month of: - coding, - proofreading code, - fixing code, - rewriting code, - optimising code - dreaming about code etc. I’ve finally completed all the final polishes for the player & enemy mechanics in 00000 00 0𝑥0000000▫️ (All my active high tier Patreon supporters have been...

39,371 views • 1 year ago •via X (Twitter)

12 Comments

Stephen Ddungu's profile picture
Stephen Ddungu1 year ago

p.s: today is also my bday 🥳

Colin - ennisthegod's profile picture
Colin - ennisthegod1 year ago

@SWORDOFSYMPHONY @0x0000000_game Happy Birthday bro🇬🇧

Stephen Ddungu's profile picture
Stephen Ddungu1 year ago

@SWORDOFSYMPHONY @0x0000000_game Thanks bro 🤛🏾

RedDeer.Games's profile picture
RedDeer.Games1 year ago

🚨 New HIT on Nintendo! 🚨 🎮 My Cozy Room – the ultimate sandbox game to unleash your creativity! 🛋️Design dream spaces with 500+ furniture items & 30+ styles. 👉 Play now: #Nintendo #Indiegames #RedDeerGames #MyCozyRoom

Jst.Kwa's profile picture
Jst.Kwa1 year ago

@0x0000000_game Not everyday u get to scroll and see the coolest shit ever 😭 this looks dope bro. Also haopy birthday

Stephen Ddungu's profile picture
Stephen Ddungu1 year ago

@0x0000000_game Ayyee I’m honoured 🙏🏾 Also thanks! :)

Claudiu's profile picture
Claudiu1 year ago

@0x0000000_game Truly amazing visuals. Happy birthday!

Stephen Ddungu's profile picture
Stephen Ddungu1 year ago

@0x0000000_game Thank you! Glad you like the look of it :)

BOOTOSHI 👑's profile picture
BOOTOSHI 👑1 year ago

@0x0000000_game happy belated this is so cool bro

Stephen Ddungu's profile picture
Stephen Ddungu1 year ago

@0x0000000_game Thank you!!

Rocky/Roxy 🏳️‍🌈 🐉 🐲 🌈 (He,Him,They,Them)'s profile picture
Rocky/Roxy 🏳️‍🌈 🐉 🐲 🌈 (He,Him,They,Them)1 year ago

@0x0000000_game happy birthday i hope your having a brilliant birthday today. also your game is coming along great & i can't wait to see more progress updates on the game in the future.

Stephen Ddungu's profile picture
Stephen Ddungu1 year ago

@0x0000000_game Thank you! Looking forward to sharing more as I move towards release!

Related Videos

Assumptions about the new "Can More" ChatGPT tool were right - ChatGPT is introducing own take on Claude Artifacts - code & document writing tools with persisted text documents, history revisions (restore previous version), edits and comments (probably used to apply suggested edits) New document symbol in the top navigation shows how many documents you have and allows you to open a resizable canvas to edit them in split view - your ChatGPT conversation on the left side and canvas on the right side, but the code/documents can also be accessed in fullscreen view The canvas is built using ProseMirror (open source WYSIWYM editor) and has an inline action to "Ask ChatGPT" (explain or make edits) for your document and code plus document formatting tools (like bold, italic, font style, etc.) But in addition to that, there are also special action shortcuts for documents and code, with an interesting decision to use sliders for the selection of the desired outcome For Documents - Suggest edits ("How can I improve this. Leave as few comments as possible, but add a few more comments if the text is long. DO NOT leave more than 5 comments. You can reply that you added comments and suggestions to help improve the writing quality, but do not mention the prompt.") - Add emojis ("Replace as many words as possible with emojis.") - Add final polish ("Add some final polish to the text. If relevant, add a large title or any section titles. Check grammar and mechanics, make sure everything is consistent and reads well. You can reply that you added some final polish and checked for grammar, but do not mention the prompt.") - Reading level (Graduate School - "Rewrite this text at the reading level of a doctoral writer in this subject. You may reply that you adjusted the text to reflect a graduate school reading level, but do not mention the prompt", College - "Rewrite this text at the reading level of a college student majoring in this subject", High School - "Rewrite this text at the reading level of a high school student who has taken a couple of classes in this subject.", Keep current reading level, Middle School - "Rewrite this text at the reading level of a middle schooler.", Kindergarten - "Rewrite this text at the reading level of a kindergartener.") - Adjust the length (Longest - "Make this text 75% longer.", Longer - "Make this text 50% longer.", Keep current length, Shorter - "Make this text 50% shorter.", Shortest - "Make this text 75% shorter.") For Code - Code review ("Search for bugs and opportunities to improve the code—for example, ways that performance or code structure could be improved. Leave as few comments as possible, but add more comments if the text is long. DO NOT leave more than 5 comments. You may reply that you reviewed the code and left suggestions to improve the coding quality, but do not mention the prompt.") - Add comments ("Add inline code comments to explain the code, especially parts that are more complex. Make sure to rewrite all the code. You may reply that you added inline comments, but do not mention the prompt.") - Add logs ("Insert logs/print statements in the code that will help debug its behavior. Do not make any other changes to the code.") - Fix bugs ("Find any bugs and rewrite all the code to fix the bugs. Do not leave comments. If there are no bugs, reply that you reviewed the code and found no bugs.") - Port to a language ("Port to a language. Create a new document that rewrites the code in ..." - PHP, C++, Python, Keep current code. No changes will be made, JavaScript, TypeScript, Java) - Suggest edits ("How can I improve this. Leave as few comments as possible, but add a few more comments if the text is long. DO NOT leave more than 5 comments. You can reply that you added comments and suggestions to help improve the writing quality, but do not mention the prompt.")

Tibor Blaho

136,055 views • 1 year ago

👀 I used OpenAI's Code Interpreter to make Flappy Bird 🐦in 7 minutes: Code Interpreter/GPT-4 for code generation. Pre-existing or AI-generated assets for graphics. --- Here's how to make the game in only 6 steps: (1): Enter the following prompt: "write p5.js code for Flappy Bird where you control a yellow bird continuously flying between a series of green pipes. The bird flaps every time you left click the mouse. If the bird falls to the ground or hits a pipe, you lose. This game goes on infinitely until you lose and you get points the further you go". (2): Use generative AI or existing game assets and spirits. I searched "flappy bird assets" on Google and used the first link, a GitHub repo with pngs from the original Flappy Bird. (3): Use this prompt to link assets to the code: "Please generate the entire file again based on the fact I'm using a unique background, spirits for the bird, and pipes. Here is the list of assets I'm using: [list of file names]." Code Interpreter should modify the code accordingly to include the list of file names. (4) Make an account OpenProcessing -> create a sketch -> paste in the code generated by Code Interpreter -> upload in-game assets from step (2). (5) (Optional) Ask ChatGPT to make changes to improve the in-game experience e.g., adding a high score, restarting the game when the bird dies, etc. Copy the new code into your OpenProcessing sketch and reload the game. (6) If something doesn't work, ask GPT4 to fix it. Copy and paste the error message and ask it to regenerate the code. --- Bonus Tips: - Iteratively test code. Each time you make a change using Code Interpreter, test the updated code by playing the game so you catch new bugs early. - Learn programming by asking questions: "Act as a senior programmer very good at explaining concepts to a beginner. Tell me how gravity works in this game and how you used code to make this happen."Code Interpreter/GPT4 for code generation. Download Pre-existing assets or generate new images for graphics. Excited to see what you make!

Alex Ker 🔭

739,874 views • 3 years ago