Blockchain_Bartender

66 posts

Blockchain_Bartender banner
Blockchain_Bartender

Blockchain_Bartender

@JR_BCTender

Bartender in SoFlo 🍹 Zero coding experience → Blockchain Developer Documenting my journey from Bartender to Blockchain tender Cheers 🍻

SoFlo Katılım Kasım 2025
75 Takip Edilen13 Takipçiler
Sabitlenmiş Tweet
Blockchain_Bartender
Blockchain_Bartender@JR_BCTender·
Day 1 starts now... Time to learn how to code. Follow if you want to see a bartender become a blockchain tender 🍻 (Any advice or resources are highly encouraged)
English
1
0
2
112
Blockchain_Bartender
Blockchain_Bartender@JR_BCTender·
More coding tomorrow! It’s been a busy couple of days so haven’t been able to code as consistently but I will be back
English
0
0
0
6
Blockchain_Bartender
Blockchain_Bartender@JR_BCTender·
Day 31: Today I learned about: Linters and formatters 📝 JavaScripts Memory management🧠 Closures and how they work🔒 These concepts help with quality coding whether it be on a project with other developers or by yourself. Linters check if there are any errors or undefined variables Formatters ensure consistent code formats Javascript automatically does memory management Closures can create private variables and functions, they also capture variables by reference not by value. (Meaning if the captures variables value changes, the closure will see the new value) #JavaScript #CodingJourney #LearningInPublic
English
0
0
0
9
Blockchain_Bartender
Blockchain_Bartender@JR_BCTender·
Day 30: Happy new Year! its crazy its already been 30 days of coding!🎉🎉 I've learned starting from data types to loops so far😎 Today I learned new ways to declare a variable using is, has or can. Also for functions like using get, set, handle or handler. lastly I learned how to create an empty array at a fixed length and how to get the length for an Array✅ #arrays #coding #javascript
English
0
0
0
13
Blockchain_Bartender
Blockchain_Bartender@JR_BCTender·
No coding today, I will be back tomorrow to finish day 30 before 2026🎉🍻
English
0
0
0
4
Blockchain_Bartender
Blockchain_Bartender@JR_BCTender·
Day 29: Now I am into the JavaScript fundamentals review section 😎 This section is very lab heavy so in the coming days ill have lots of code to share! Today I learned about string objects and how they differ from string primitives. I also learned about the Number constructor (Number()) #Coding #javascript #LearningInPublic
English
0
0
0
13
Blockchain_Bartender
Blockchain_Bartender@JR_BCTender·
Day 28: Today I finished up the loops section in freeCodeCamps JavaScript certification! 🎉 I finished the final lab "Build a missing letter detector" and also passed the Loop Quiz. 📝 The goal is to check the given strings like "abdef" and figure out what letter was missing and return that letter. So the console would log "c" if you wrote: console.log(fearNotLetter("abdef")); #loops #CodingJourney #LearningInPublic
Blockchain_Bartender tweet media
English
0
0
0
8
Blockchain_Bartender
Blockchain_Bartender@JR_BCTender·
Day 27 Today I kept practicing loops and how they function I completed 3 more labs using different loop techniques.♾ The first lab was a Chunk Array lab, where I needed to make a function that splits up an array into equal parts. The second lab was a profile lookup lab, where I needed to make a function that looks up information about people. (The contact information was already provided)🔎 The third and last lab was a string repeating lab, where I needed to make a function that repeated a string a certain amount of times without using (.repeat( )).🔁 #LearningInPublic #CodingJourney #loops
Blockchain_Bartender tweet mediaBlockchain_Bartender tweet mediaBlockchain_Bartender tweet media
English
0
0
0
13
Blockchain_Bartender
Blockchain_Bartender@JR_BCTender·
Day 26: Today I put into work everything I have learned so far about loops and how they work ♾ I did 3 labs today: 🧑‍💻🍻 1st- longest word finder app (left picture) 2nd- Factorial calculator (top right picture) 3rd- Mutations Algorithm (bottom right picture) The first and second labs are self explanatory. The third lab was to check if the first element of a two element array contained the same letters as the second element regardless of the capitalization and order. so if the array was ["Heart", "Earth"] The output would be true because they both contain the same letters. #CodingJourney #loops #LearnInPublic
Blockchain_Bartender tweet mediaBlockchain_Bartender tweet mediaBlockchain_Bartender tweet media
English
0
0
0
13
Blockchain_Bartender
Blockchain_Bartender@JR_BCTender·
Day 25: Today I am learning about Loops ♾ Here is what i've learned so far: 🤓 1⃣ What a loop is actually doing and how to avoid it running forever 2⃣How the syntax works using the "For" and "For...Of" loops 3⃣How the "For...in Loop" works and when to use it. I will continue to learn about the "While" and "do...While" loops and also about the break and continue statements and how they work in loops after my bar shift tonight🍻 #Coding #loops #JavaScript
English
0
0
0
9
Blockchain_Bartender
Blockchain_Bartender@JR_BCTender·
Day 24: Today I finished 2 labs: 🧑‍💻 Left picture "Build a quiz game" 📝 Right picture "Build a record collection"📀 I am still needing more practice to fully understand how objects work but doing these labs helped me a lot!😎 #learning #Coding #JavaScipt
Blockchain_Bartender tweet mediaBlockchain_Bartender tweet media
English
0
0
0
10
Blockchain_Bartender
Blockchain_Bartender@JR_BCTender·
Day 23: Today I built a recipe tracker using what I have learned in days 21 and 22 😎 I am starting to see how powerful Objects are because of how dynamic they can be. Tomorrow I will be continuing to create things using Objects🧑‍💻 #Coding #objects #JavaScript
Blockchain_Bartender tweet media
English
0
0
1
13
Blockchain_Bartender
Blockchain_Bartender@JR_BCTender·
Day 22: What I learned today 🧑‍💻🧠 1⃣ The differences between primitive and non-primitive data types 2⃣ When to use object ( ) constructors 3⃣ What JSON is and how JSON.parse( ) and JSON.stringify( ) work 4⃣ What object destructuring is and how it works I have seen and heard of JSON online but now I actually understand what it is (on the surface level) Tomorrow I will begin to put what i've learned so far to the test by making a "recipe tracker" and also building a "Quiz game" #CodingJourney #javascript #JSON
English
0
0
0
5
Blockchain_Bartender
Blockchain_Bartender@JR_BCTender·
Day 21: ✅ Arrays quiz completed ✅ Started Objects section So far I have learned that JavaScript is Object centric and that is what makes the language so versatile.😎 Also Objects store properties so instead of writing: let name = "Blockchain Bartender" let job = "Bartender" You could write: const person = { name: "Blockchain Bartender", job: "Bartender" }; so instead of making a variable for every property you can just assign properties to one variable! Here is my progress so far in the freeCodeCamp JavaScript Certification #JavaScript #codingafterwork #LearningInPublic
Blockchain_Bartender tweet media
English
0
0
0
8
Blockchain_Bartender
Blockchain_Bartender@JR_BCTender·
Day 20: What I learned today: New tools to use on an Array: 🧑‍💻⚙️🔎 indexOf ( ) splice( ) includes( ) With these methods added to the tool bag I can now add, extract, find where an element is, and find out if the element is included in an Array. Tomorrow I will be taking the Quiz on Arrays and then jumping into the Objects section😎 #CodingJourney #javascript #Arrays
English
0
0
0
7
Blockchain_Bartender
Blockchain_Bartender@JR_BCTender·
Day 19: Time to put what I have learned about Arrays to work!🧑‍💻 I finished 2 labs today: 1⃣ "Build a lunch picker program" 2⃣"Build a golf score translator" The first lab took me a little while to figure out but once I did it was a breeze but I still need a little more practice. The second lab I got down pretty quickly. I really only had some formatting issues, I got all the tests to run after I cleaned it up ✅ (Only attaching the code from the second lab because the first one was too long to get into 1 screenshot)🍻 #CodingJourney #LearningInPublic #Coding
Blockchain_Bartender tweet media
English
0
0
0
13
Blockchain_Bartender
Blockchain_Bartender@JR_BCTender·
Day 18: What I did today 1⃣Built a shopping list using what i learned yesterday 2⃣learned about one-dimensional and two-dimensional arrays and what makes them different 3⃣learned how to reverse a string using arrays Also learned that shopping carts in E-commerce websites use Arrays to "add" or "remove" items from the cart. #CodingJourney #javascript #LearningInPublic
English
0
0
0
11
Blockchain_Bartender
Blockchain_Bartender@JR_BCTender·
Day 17: I have been learning about Arrays and the methods used to manipulate Arrays 🍻 So far I have learned: 1⃣Arrays are zero-index 2⃣Arrays are dynamic 3⃣How to manipulate Arrays using ( pop( ), push( ), unshift( ), and shift( ). I will be continuing to learn about Arrays after I cook some fresh local caught fish from the coast of FL🐠🐟 #LearningInPublic #CodingJourney #Coding
English
0
0
0
10
Blockchain_Bartender
Blockchain_Bartender@JR_BCTender·
No coding today will start learning arrays tomorrow and will have some more code snippets to share 💪🤝🧑‍💻
English
0
0
0
15