new ch.
I’m diving into learning some Flutter! This will be an exciting new chapter where I can develop both iOS and Android apps simultaneously.

izzy's playlists!

ellievsbear
occasionally subtle

roma★
Sade Olutola

titsay
he wasn't even looking at me and he found me
"I'm Dorothy Gale from Kansas"

Origami Around
art blog(derogatory)
RMH
Fai_Ryy

oozey mess
Sweet Seals For You, Always
noise dept.
No title available
let's talk about Bridgerton tea, my ask is open
Monterey Bay Aquarium
Cosmic Funnies

Love Begins
seen from Ecuador
seen from United States

seen from United States
seen from United States
seen from United States
seen from United States

seen from United States
seen from United States

seen from United States
seen from T1
seen from United States

seen from United States
seen from United States

seen from T1

seen from United States

seen from Jordan
seen from Jordan
seen from Argentina
seen from Malaysia
seen from United States
@alexcodelove-blog
new ch.
I’m diving into learning some Flutter! This will be an exciting new chapter where I can develop both iOS and Android apps simultaneously.
chess board
//found this for loop within for loop very cute
let board = “”;
for (let y = 0; y < 8; y++) {
for (let x = 0; x < 8; x++) {
if ((x + y) % 2 == 0) {
board += “ ”; }
else {
board += “#”; } }
board += “\n”; }
console.log(board);
# # # #
# # # #
# # # #
# # # #
made a blog-like site with mongo database. Im looking to improve it by adding some security measures and user logins! Would love to pair up with anyone!
On Robo 3T,
thanks for making my life so much easier by making monoDB’s with a GUI!
everyone should get on board, but I know I know
terminal looks cooler, and is faster. class A hacker movies.
Also,
love using Postman when checking out PUT, PATCH and DELETE
both of these just help you visualize the backend
https://robomongo.org/
Published my web app w/heroku
https://lit-lowlands-11448.herokuapp.com/
made a quick reminders web app.
the beauty of ejs
// app.js res.render('index', { arr })
//index.html
<ul>
<% for(var i=0; i<arr.length; i++) {%> <li> <%= arr[i] %> </li> <% } %>
</ul>
and you pretty much get yourself a todo list. Now that’s amazing
a few new changes
I’ve switched from Chrome to Firefox !
Also trying to get the hang of using the mailChimp API. Other than that, I really think Firefox is much faster. A great test is to watch a twitch stream on both browsers to see how Firefox handles it better. And you know what the developer tools aren’t half bad, ALSO! dont worry about the extensions, because a lot of popular ones like Momentum, are available for firefox as well.
made the switch from terminal to hyper!
quick simon game using jQuery
next steps: add hella good music! hahahaha
these fonts are up to 499USD..
made a quick/simple keyCode Generator
used a cool library called Pure for inputs.
methods in constructor function
function CarRacer (name, age, driversLicense) {
this.name = name;
this.age = age;
this.driversLicense = driversLicense;
this.drive = function() {
alert(”hittting the gas pedal”);
goingToSixty();
move();
}
}
constructor function and intialising object
function CarRacer (name, age, driversLicense, finishedRaces) {
this.name = name;
this.age = age;
this.drivesLicense = driversLicense;
this.finishedRaces = finishedRaces;
}
var carRacer1 = new CarRacer(”Alex”, 31, true, [”Daytonna”, “Grand Prix”, “Mumba Rumba”]);
DOM
really enjoyed messing around with the dom
and make randomly generated images upon refresh. This can easily be done with click functionality as well, and very simple card games like black jack can be made.
For starters just generate anything random and fun, like Dice for DnD or even simpler flipping a coin.
I think flipping a coin will be the easiest way to go.
Start out by get 2 images of a coin with Heads and Tails.
feel free to go crazy styling the background with CSS if you wish.
create a random number variable between 1 and 2 or 0 and 1--doesnt matter.
using querySelector and setAttribute assign an image using string concatenation(using the 1 and 2 or 0 and 1).
this would probably take like 5 mins to code up, unless you’re trying to really stylize it.
fibonachigenerator For reference
function fibonacciGenerator(n) { var output = [];
for(var i =0; i<n; i++) {
if(output.length === 0) { output.push(0); } else if (output.length === 1) { output.push(1); } else {
/*ordering of [output.length-2] and [output.length-1] doesnt matter, you just need to add the last two numbers of the array.*/
var nextNumber = output[output.length-2] + output[output.length -1]; output.push(nextNumber); }
} return output; }
fibonacciGenerator(11)