w9d4
Almost done!!

pixel skylines
Sweet Seals For You, Always

blake kathryn

Origami Around
Mike Driver
One Nice Bug Per Day

Kaledo Art

titsay
KIROKAZE

let's talk about Bridgerton tea, my ask is open
will byers stan first human second
Aqua Utopiaļ½ęµ·ć®åŗć§čØę¶ćē“”ć

Discoholic šŖ©

wallacepolsom
"I'm Dorothy Gale from Kansas"
Today's Document

#extradirty
seen from United States

seen from United States

seen from Malaysia
seen from United Kingdom
seen from Mexico
seen from Romania

seen from Türkiye

seen from Ireland

seen from Argentina

seen from United States

seen from United States
seen from Canada

seen from United States
seen from Türkiye
seen from Netherlands
seen from United States
seen from Türkiye

seen from Spain
seen from United States

seen from United States
@therealyoshi12
w9d4
Almost done!!

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch ⢠No registration required ⢠HD streaming
w7d5
What we did:
Full Project from start to finish. Today was the first time we put everything we learned from the past 7 weeks into a final specād out assignment. Assignment was to createĀ āBenchBnbā an Airbnb clone for benchās within the city.Ā
The assignment showed us how to use the google maps api, which is pretty amazing! Basically learned how to place markers on a map that you place on the page. Everytime we dragged the map somewhere else, the markers would refresh based on the location of the page! Awesome!
The one thing i noticed about the assignment was that it was extremely react intensive. About 80% of it was dealing with the complexities of the React framework. Which is cool since itās such an up and coming portion of front-end developement, yet at the same time we spent a lot of time on other portions of web development as well.Ā
Tomorrow weāll be working on the 2nd half of Benchbnb, and then itās off to start our final projects!
I chose www.giphy.com as mine.Ā
Topics where I struggled:
The struggle was really remembering all the different methods we learned. For example when we were setting up the rails model, I almost forgot how to type in ruby since we had been javascript intensive for so long! I donāt understand how people learn so many different languages.Ā
Felt a lot more improved:
Well I have an idea of the big picture of web development now so thatās a plus.Ā
How Iām feeling:
Big relief that testing is done for now, but a new nervousness is creeping up. Usually for assignments we have guidelines which direct us toward creating the project. For final projects, all that gets taken away. Training wheels are off.Ā
8/10 motivation
Checkout my projects!
https://github.com/theRealYoshi
Iām taking suggestions!
https://yoshihiroluk.typeform.com/to/ilJBBy
w7d4
What we did:
React-based Pokedex. Todayās assignment was creating a react /flux app with all the react paradigms we learned from the past couple of days. The only twist was the inclusion of nested routes within react.Ā
For the past couple of days weāve only been manipulating objects within a one-page state. Therefore, once you loaded your HTML elements, you were manipulating elements within the page but not refreshing the whole page. A piano app thatās loaded on the index page is a good example. We were manipulating the keys of the piano (list elements) but not refreshing to another page.Ā
What if you wanted to move on over to another page without making a call to the server? This is where react routing comes in. React gives you the ability to stay within one request/response cycle but still switch to another page! This might be true for other front-end frameworks but itās REALLY fast since you donāt have to load all the HTML elements again by making a request to the server.
On a separate note, thereās no assessment next week, therefore we all passed! Now we can finally focus on our final projects and then go straight into job search mode.Ā
How Iām feeling:
Amazing! Now all we have to focus on is our final project.
Checkout my projects!
https://github.com/theRealYoshi
Iām taking suggestions!
https://yoshihiroluk.typeform.com/to/ilJBBy
w7d3
What we did:
React / Flux music player. Today we really got to understand firsthand the architectural foundation behind Flux and React by building a organ player in the browser. We were given a set of music notes with a different range of frequencies, linked up a note-playing API and then directed our application to play those notes based on which key we pressed.Ā
This new Flux way or (in latin: flow), utilizes a one-direction state-control therefore making it easier and faster for developers to identify a bug in the code and also the state does not have to traverse through multiple models to refresh itās data. Hereās how I learned about it in the context of the piano keys.
- The page is loaded and the browser is waiting for some input to occur.Ā
- User hits a key
- Page listeners hear about this new input and then immediately routes it to the action controller, which attaches a type of action to the input and then routes it to the dispatcher.Ā
- The dispatcher (which lives in the store!) determines whether it is a legitimate action and then calls a method in the store to add it to itās array of inputs.Ā
- The store emits a change event notifying all parts in the application that the state has changed.Ā
- In react (the view) constantly listens for a change in the store. Since the store emitted a change, it processes itās current state and then calls a method based on the current state.Ā
- React re-renders based on the current state and the cycle is started over again.Ā
So how does this translate to pressing a key and emitting a sound?
- User hitās keyĀ āfā
- Page hears that the keyĀ āfā has been hit and routes to the action controller.Ā
- Action controller adds aĀ ācreate noteā action along with the keyĀ āfā routes to dispatcher to which attaches an action to the dispatcher
- Store receives request from dispatcher with both actionĀ ācreate noteā and keyĀ āfā
- Store adds keyĀ āfā into itās array and also notifies that there is a change in the state in the system
- the view is notified of a change in the state, looks at itās current state and sees if the keyĀ āfā has been pressed by matching iwth the array of store keys. Since there is a match, it calls _playNote which emits the sound by translating theĀ āfā to a frequency
- This ends one complete flow of Flux.Ā
- When the finger is lifted off of keyĀ āfā, it notifies another change in the state of the store, therefore emptying the store of the keyĀ āfā as well as a change in the state.Ā
- The view is notified and then compares itās current state to the store array and realizesĀ āfā is no longer there, therefore it calls the end_note method which stops the sound.Ā
The hardest and most confusing part about this framework was to wrap my mind around the fact that all of this can happen in milliseconds! I would literally hit a key the sound would emit and then when I took my finger off the key it didnāt emit at all! Iām a very visual person and this was not visualizing in my head.Ā
Topics where I struggled:
React and Flux in general are just hard concepts to grasp since there are a lot of moving parts. Again, I donāt know what the other front-end frameworks are like, so Iām finding it having a hard time understanding how itās better.Ā
Felt a lot more improved:
React/Flux. I have a clearer understanding of whatās going on under the hood now.Ā
Code that == Mind Blown!
All that code in the changehandler is pretty amazing in the store. I honestly donāt know how some of these guys come up with this stuff.Ā
How Iām feeling:
I missed morning lecture today since I was sick, but was able to make it to class after. Iām still feeling sick, but I was glad I was able to do this project since itās fundamental for react/flux.
7/10 motivation
Code Music
The beeping sounds of the computer made piano soothed my ears today.Ā
Checkout my projects!
https://github.com/theRealYoshi
Iām taking suggestions!
https://yoshihiroluk.typeform.com/to/ilJBBy
w7d2
What we did:
Full rails integration with React. Our job today was to create a fully integrated site with a rails backend and a react-powered front-end. It was our first full experience using bothĀ ārails new todo-appā andĀ āreach.createClassā on the same day! Groundbreaking stuff.Ā
Switching back to ruby after a couple weeks was a weird experience. NoĀ ā;ā after every single line, no declaration of variables! What was this world coming to? Iām glad I retained some of my ruby knowledge and havenāt completely put it to waste.Ā
The project for today consisted of creating a todo-list app with a react front-end. Sadly, the setup with .ajax calls and rails back-end was hard enough hurdle that me and my partner were not able to get to the actual react portion. I would like to finish this project up soon, since itās one of the first projects where we get full integration but at the same time we have a mega-ton of reading on Flux tonight.Ā
Which reminds me, shout out to Matt for uncovering this beautiful gem of a pun during lecture today:
-TA:Ā āyeah... since React is a relatively new subject, weāre still trying to decide what stays on the curriculum and what doesnātā
-Matt:Ā āSo youāre saying the programās in.... Flux?ā
Youāre gonna be a great dad Matt.Ā
And finally, they sent out more details about our final project weāre supposed to show off to potential employers. What do you think? More functionality or more flashy?
Topics where I struggled:
Integration with .ajax and react was a bit of a struggle today. Weāre so used to having controllers which render to actual pages in rails that it was hard for me to fathom the controllers just passing Json objects to the āJavascriptified-front-endā to handle most of the legwork of the view. Once we got this down, felt like it would be a bit easier.Ā
Felt a lot more improved:
Iām glad I still retained knowledge of rails and ruby. I may have forgotten some of the finer points of the syntax but still understand the basic concepts. Also Iām starting to like Javascript a lot more.Ā
Code that == Mind Blown!
React.createClass{}. As far as I know, React.createClass and react.render are the core building blocks which allow you to break up your front end code into sizeable chunks. Facebookās new... framework? allows for easier and faster front-end development with their newĀ ālanguageā.Ā
How Iām feeling:
Iām still either recovering from sickness or about to get even sicker. I have no clue. But pho for sure tonight.Ā
7/10 motivation.Ā
Code Music
The sound of silence has actually been a nice change. You know... the clatter of the keyboard or the occassional siren from Market st.Ā
Interesting Sidenote
Checkout my projects!
https://github.com/theRealYoshi
Iām taking suggestions!
https://yoshihiroluk.typeform.com/to/ilJBBy

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch ⢠No registration required ⢠HD streaming
w7d1
What we did:
React.js. React is one of those exciting new things you hear about that you never really understand. Weāre the first new group from App Academy thatās learning this stuff and weāre not learning the apparently tedious backbone framework.Ā
Itās really tough to gauge how much more convenient React is from other front-end frameworks, since I really donāt have experience with any other front-end frameworks. However, from what I learned today it makes it seem like thereās a backend on the front-end. From my limited knowledge of css and HTML it seems like whenever a front-end developer wanted to change something on the client side, they would have to manually go into the view and then go through the code piece by piece to Ā remove specific elements.Ā
Through our exercises today, React provides a framework that allows the front-end developer to make mass changes on the front while also shortening the amount of code necessary to make those changes. Nice!
In addition, it seems INCREDIBLY fast. Itās more expensive (slow) to load each DOM (html/css element) rather than run some javascript to output the HTML/CSS. From a design perspective, it seems incredibly clean as well.Ā
Anyways, we have to think of final projects in the coming week. Anyone have any ideas?
Topics where I struggled:
The syntax is not too bad, nor is the logic, but we are working with a javascript-like language for React called JSX.Ā
How Iām feeling:
I may be coming down with a cold so I didnāt feel too good today. Also felt like my mind has been in a haze all day. Getting that chicken soup after.Ā
5/10 motivation.Ā
Checkout my projects!
https://github.com/theRealYoshi
Iām taking suggestions!
https://yoshihiroluk.typeform.com/to/ilJBBy
w6d5
What we did:
Passed the 5th assessment! Barely, and Iām talking about ... barely. Which means Iām 99% sure Iāll pass through a/A. There are 6 assessments, if you fail 2 then you get kicked out of the program. Therefore, unless I have a catastrophic 6th assessment (where I fail and then proceed to fail the retake), I should move on to the final project and jobs curriculum of the program. There might be some with 1 failed test in our group so far, but Iām 100% confident everyone in the group right now will pass on to the final project and job curriculum stage as well.Ā
Onto the final bits of jQuery. One such great functionality of jQuery is the ability to significantly simplify and shorten ajax calls. What is ajax? You know when you type in a google search bar and it autocompletes your search question or sometimes even pops up some of the results as you type? Thatās ajax.
Short for Asynchronous Javascript And XML, itās really a method to load bits and pieces of a webpage rather than having to load the whole page itself. In the olden days of the internet (pre 2004?), pages were loaded and reloaded in its entirety whenever an action was performed. So in those days if youĀ ālikeā a status the whole page would refresh and then youād see that the event that youĀ ālikedā had your like. Imagine if you were to comment on a facebook status today and you had to reload the entire page just to see the status comment section updated. How barbaric.Ā
With ajax, users can update certain sections of pages without having to reload the entire page, allowing for a more seamless and streamlined user experience. I wonāt go into too much detail about how it works (because Iām too sure myself) but I will say that itās almost like having a mini-window within the page which continuously updates with a bit of javascript.Ā
The earliest instance of ajax, that I remember was the announcement of google waveĀ which was googleās project on instantaneous chat. The demo shows how one user can see what the other user was typing in real time. And then the search bar autocomplete came as well and I remember being a bit wowāed by that as well.
All in all, ajax is an awesome bit of functionality to have on your website primarily because its fast and seamless for the user.Ā
Now onto react.js, the hot new darling of front-end development that we will be immersed in this week. Exciting to learn but I will leave with this quote from Ned:Ā āBeware of the cutting edge, it can cut you.ā
Topics where I struggled:
Test taking has become an issue thatās really hard to ignore. I prepped just as much as everyone this week and I definitely had a below average score (although passing) for the assessment.Ā
Felt a lot more improved:
Iām just glad I 99% passed into the jobs curriculum.Ā
Code that == Mind Blown!
$.ajax{
url:Ā ā/usersā
data: data,
datatype:Ā ājsonā,
success: function(){
console.log(āhiā);
}
}
This is the request / response mainly for ajax. Awesome!
How Iām feeling:
Did nothing code related yesterday for the first time in a long time. Now itās onto react.Ā
7/10 motivation
Code Music
This was stuck in my head this morning so... here you go:
https://soundcloud.com/universalrepublic/kiesza-hideaway-radio-edit
Checkout my projects!
https://github.com/theRealYoshi
Iām taking suggestions!
https://yoshihiroluk.typeform.com/to/ilJBBy
w6d4
What we did:
Today we tried to implement this:Ā http://appacademy.github.io/jQueryPlugins/html/carousel.html
From the looks of it, it looks like a relatively easy project to do, however in order to make it look pretty thereās actually a lot going on in the backend and browser.
First thereās the positioning of the pictures to make sure they fit within the frame of its container. If the picture is slightly larger than the container that holds it, the picture will pop out of its frame and all over the place on the browser!
Second, the smooth sliding transition you see of the cat picture actually requires some work to implement. If this were done hastily pictures without a transition would appear out of nowhere and disappear just as quickly when replacing its counterpart. However with a transition, one must think about a mix of javascript, css and the order at the most precise level. For example, one must consider the end of the transition period when the picture goes out and then time it with when the picture goes in. Of course javacsript and jquery has methods to help you time these functions, but in order to have to take these into account requires a lot of broad and complex thinking.Ā
And finally the last layer was ability to go backwards or forwards which means twice the complexity in terms of logic.Ā
I thought front-end was easy! Now Iāve come to understand thatās not the case. Still want to implement parallax scrolling though.Ā
Topics where I struggled:
The order of when to call the various methods for Jquery tripped up our project a couple of times. A relatively new element that was introduced (callbacks, setTimeout, setInterval) tripped me up a couple of times since we thought we had parsed our code fully but then when we were debugging found that some functions were called in an asynchronous order.Ā
Felt a lot more improved:
Debugging. Iām mainly starting to like javascript purely for its practicality with Chrome Dev Tools. The fact that youāre able to debug your code within browser is simply amazing!Ā
Code that == Mind Blown!
Currying
No, this is not your favorite indian dish or a basketball move, this is teh concept of calling a function in separate instances until it fulfills a certain number of arguments. Traditionally a sum funciton is written like this:
sum(arg1, arg2, arg3){
return arg1 + arg2 + arg3;
}
But with currying you can call a function like this:
var sum = curriedSum(3);
var sum1 = sum(4);
var sum2 = sum1(20);
sum2(30) => 54;
You donāt have to give all your arguments to the function all at once. So why is this useful? Perhaps youāre a developer for a grocery store and they want you to build a calculator? Currying can help you show the incremental sum as you add items to your checkout and then show you the final total at the end.Ā
How Iām feeling:
Surprisingly excited to get this 5th assessment over with. Lots of different topics to study tonight:
7/10 motivation
Checkout my projects!
https://github.com/theRealYoshi
Iām taking suggestions!
https://yoshihiroluk.typeform.com/to/ilJBBy
w6d3
What we did:
JQuery. Some of the features that really wow you when you a visit a website, flashy pop-ups, disappearing fields, data that comes by without reloading the page is mainly powered by front-end javascript. Since javascript is sometimes extremely tedious to write (especially with HTML mixed in) a Javascript library called JQuery is used to ease the stress on a developers fingers.Ā
JQuery allows the (easier) referencing of the many HTML & CSS elements on the page and allows for easier access to do cool stuff like transitions, fades, and AJAX requests. You know front-endy design-y stuff that really makes your website look good.Ā
Todayās projects were to make the UIās of three games: Towers of Hanoi, Tic Tac Toe and Snake. While in weeks past we were working primarily on the logic, this time we were given a skeleton back-end which handled the logic and instructed to make a fully useable UI interface.
That includes alerts when a invalid move was made, Transitions when games were won and potential move highlights. It really feels like the studying has come full circle since we worked on the logic in the beginning and now weāre designing the front-end with the end goal of making a fully functioning, beautiful website. Excited to see what the next weeks bring!
Topics where I struggled:
Still struggling with game logic. Today we tried to implement Snake and it was just too much to have to think through when initiating the game. Also realized I canāt code when I havenāt slept a lot.Ā
Felt a lot more improved:
Javascript. We blazed through some of the jQuery front-end portions.Ā
How Iām feeling:
Sleepy. Must get some sleep.
4/10 Motivation.
Code Music
Havenāt really been updating this, but I like this Greek DJ a lot! Can only find him on mixcloud. Might be a repost.Ā
https://www.mixcloud.com/thanassipsarras/after-summer-2012/
Interesting Sidenote
I canāt believe itās October already. Feels like it has been the longest shortest month ever. I also canāt believe Iāll potentially be looking for jobs in a few short weeks and creating a capstone project. Any ideas anyone?
Checkout my projects!
https://github.com/theRealYoshi
Iām taking suggestions!
https://yoshihiroluk.typeform.com/to/ilJBBy
w6d2
What we did:
CAT CSS. Ā We created a facebook for cats ( I think a/A is obsessed with cats) without all the functionality of facebook. That meant starting from a blank html page and adding the css and HTML elements one by one.
Weāve done some complicated stuff over the past couple of weeks with algorithms, frameworks and data structures, but CSS was just downright tedious! Thereās potential to screw up a lot of things if you donāt know what youāre doing (well which is the case for many things).Ā
We started with a simple header bar with three links. One link had a dropdown menu upon hover which was hard to implement but interesting to learn about.Ā
Next we moved onto the content header section and content section. Making the content fit within the page and making sure they were within their borders was a challenging as well.Ā
And finally by the end of the day we created a picture and profile sidebar section. Hopefully I can start putting up some of these projects up soon!
Topics where I struggled:
Floats and position:relative vs. position:absolute. Some of these took an hour to debug.Ā
Felt a lot more improved:
Javascript. I donāt necessarily feel ready to take the assessment yet, but Iāll get there.Ā
How Iām feeling:
Feels like Iāve been burning the candle on both ends for quite a while now. And I understand there will not be a end soon.
6/10 Motivation
Checkout my projects!
https://github.com/theRealYoshi
Iām taking suggestions!
https://yoshihiroluk.typeform.com/to/ilJBBy

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch ⢠No registration required ⢠HD streaming
w6d1
What we did:
Asteroids. Today was our first foray into creating a browser based game and we started with the iconic 80ā²s arcade game asteroids. For those that were not born in the 80ā²s or before... here you go:Ā http://www.freeasteroids.org/
The great thing about Javascript and what sets itself apart from Ruby is the fact that you can immediately test your code on your browser without having to push to a server or do all this ridiculous prep work. You can change your code and then check on your browser.Ā
So back to creating asteroids. Iāve never really been much of a gamer, except for a instances in middle school where I was hooked on Goldeneye (who wasnāt?) and a quarter in college where I literally played starcraft every single day. BUT, being on the end where creating a simple game like Asteroid makes me respect what some of these game devs go through and have to think about!
This was none more evident than when we created our asteroids. As you develop the game, here are some of the things we had to think about:
- size of the asteroid (in our case a circle)
- the velocity of the asteroid
- Whether it would collide and how to calculate that
- How to wrap the asteroids back onto the screen when it goes off the canvas.Ā
The biggest realization I had as of today was that when youāre displaying a game, youāre actually displaying 20 millisecond (well depends on computing power) snapshots of each frame. So what looks like a moving object on your screen is just each snapshot of that instance computed REALLY quickly. Take for example a moving object. It starts at pixel (1, 1). If itās moving the next snapshot will show it at (2,2) and then (3,3) and so on.Ā
Wrapping the asteroid to come back onto the screen also took a lot of math that I havenāt used in a while... must brush off those rusty skills.Ā
On top of that, I was learning Javascript syntax as we went along with the project!
Hopefully Iāll finish this up soon and host it on a server for a playable online version.Ā
Topics where I struggled:
I have no used my high school math more than I have at any point. We totally busted out the use of Pythagorean theorem today: x2 + y2 = z2. The sum of two squares equals the square of the distance.Ā
Felt a lot more improved:
Javascript inheritance and scope. Just when I was getting comfortable with how Ruby flowed and inherited from other classes, I feel like Iām starting at square one (which I am) with Javascript. Itās not necessarily harder than Ruby, itās just a different syntax. I would imagine its the difference between Chinese and Japanese (similar but different?) Slowly but surely Iām understanding more.Ā
Code that == Mind Blown!
Javascript:
setInterval(callback, time increments);
This piece of code makes it possible to create the display of games. Itās basically a function that repeats a function (in this case the callback) for x amount of time increments. This is central to the asynchronous nature of Javascript as well as rendering the game.Ā
How Iām feeling:
I took a mini break from studying this weekend but it was exactly what I needed. Have an assessment on Friday so thereās not much room for rest. On a separate note, I canāt believe itās week 6 already, should I start looking at potential industries Iām interested in?Ā
7/10 motivation
Checkout my projects!
https://github.com/theRealYoshi
Iām taking suggestions!
https://yoshihiroluk.typeform.com/to/ilJBBy
w5d5
What we did:
Another day of Javascript exercises.Ā Today we learned basically how to translate some of the things we did in Ruby to Javascript. It was kind of like rewriting our projects from Ruby into Javascript and boy... were we spoiled.Ā
Some of the funny things I noticed from my translation from Ruby to Javascript:
When you push into an array in Ruby, the return value (as itās clearly most logical) is the array with the new value pushed in to the back:
[1,2,3] << 4 returns:
=> [1,2,3,4] Makes sense?
With javascript:
[1,2,3].push(4);Ā
=> 4 ??? Returns the new size of the array. Does not compute.
The fact that a lot of objects are instantiated via function(){} trips me up a little bit as well.Ā
Considering this language was created in a mere 10 days (https://en.wikipedia.org/wiki/Brendan_Eich), itās amazing how itās the number 1 web language in the world.Ā
But! I understand javascript can do lots of cool front-end design like parallax scrolling (Ā https://en.wikipedia.org/wiki/Parallax_scrolling), which Iām really interested in integrating into a project that Iāll do later on. Hereās some of the best parallax scrolling sites Iāve encountered:
- www.onlycoin.com
-Ā http://www.artofflightmovie.com/
These sites are just so beautiful, makes me want to cry.Ā
Topics where I struggled:
Some of the syntax is just really weird. Doing the algorithms + new syntax is not fun.Ā
Felt a lot more improved:
Javascript?Ā But iāll be studying all weekend...
How Iām feeling:
Iām so glad itās the weekend. Iām able to catch Ā up on some projects I missed over the week:
7/10 motivation
Checkout my projects!
https://github.com/theRealYoshi
Iām taking suggestions!
https://yoshihiroluk.typeform.com/to/ilJBBy
w5d4
What we did:
Javascript. THE language of the web. Traditionally it was a front-end language, Ā i.e. the stuff you see on your browser but now there are several frameworks (node.js) where one can develop a full website with just javascript.Ā
Coming from a syntax perspective, itās slightly more tedious, itās like taking off the training wheels after going from Ruby. Imagine, having to recreate your own loops every single time if you want to find an element in an array! Itās kind of like having to gather the kindling, chop the wood, set up a pit and fire for cooking instead of turning on the gas stove.Ā
Here are some of the differences I noticed right off the bat:
- A lot more semicolons (;) and usually more prevelant in ever line.Ā
- More tedious, have to make sure to dot your iās and cross your tās. For example in order to define a function you might have empty ()ās parenthesis even if the function does not take a parameter. In ruby, this would be left off if the function did not take any methods.Ā
- The better thing about javascript is now itās phenomenally easier to start coding browser based applications. The chess games we were producing earlier in the course was primarilly on a computer based console called terminal. With javascript weāre now able to create games on the browser, and thus easier to share.Ā
So why would we ever learn Javascript if itās not as syntactically fluid as Ruby? It basically powers every single page of the web, both on the front-end and back-end side AND itās faster than other languages. I havenāt learned why yet but Iām sure I will. While there may not be a noticeable difference with small applications, it certainly bubbles up when you are handling lots of traffic and data.Ā
Today was just an intro into javascript as we went over the basics of arrays functions and a little bit of a browser game. This coming week will be a full on immersion of javascript, so look out for more browser based games soon.Ā
Topics where I struggled:
Recursion. We were asked to recreate some of our old projects form ruby-recursion to javascript recursion. I understood the language, I still didnāt understand the concepts... I heard this comes up a lot in interviews so something super important to learn.Ā
Felt a lot more improved:
Javascript... duh.
Code that == Mind Blown!
Hereās a sample of ruby code that counts from 1 to 5:
Ruby:
def count_to_five(n)
n.times { |x| puts x }
end
Hereās the same thing in Javascript (to the extent of my limited knowledge of Javascript).
Javascript
var countToFive = function(n) {
for(var i = 1; i === 5; i++){
console.log(i);
}
}
See a difference? Iām definitely not bashing javascript. Just the differences.Ā
How Iām feeling:
After the monster that was Rails-lite and activerecord lite, itās nice to be able to work onĀ āeasierā concepts like javascript.Ā
8/10 motivation
Checkout my projects!
https://github.com/theRealYoshi
Iām taking suggestions!
https://yoshihiroluk.typeform.com/to/ilJBBy
w5d3
What we did:
Second half of Rails Lite. Like yesterday we continued on the path towards creating the rails framework.Ā
As I mentioned before, rails is a web framework that makes it easier for developers to build and set up a website quickly and efficiently. We covered the database last week through activerecord these past few days focused on the controller and routes.Ā
Whenever you type inĀ āwww.google.comā or whatever address youāre looking to go to, your computer goes through these steps in order to get you to where you want to go. The www.google.com is essentially an alias for your ip addressĀ which is the precise place that you want to go. In order to get the appropriate ip address your computer executes the following steps once you hit theĀ āEnterā button:
1. Looks through your cache in your browser to see if the address was stored there.Ā
2. If not looks through the massive servers (I believe there are 13) which are house all the domains that have ever been created. While looking through the servers may take a while, it seems they are categorized in a manner that makes it easier for your computer to search for the address
3. Once the address is found, your browser and the receiving server, in this caseĀ āgoogle.comā create an open TCP protocol, effectively a handshake. (https://en.wikipedia.org/wiki/Transmission_Control_Protocol)
4. You do your thing on the site and then the connection would either be closed or kept open.Ā
Ok, I gave an extremely generic version of how the internet works, but the project that we worked on for the past couple of days was centered around handling those TCP requests. Ā
Topics where I struggled:
This server stuff is really interesting but really really complex! I was able to power through the assignment today, but I donāt necessarily know if I comprehend it all.Ā
Felt a lot more improved:
My knowledge of how the internet works in general. I knew slight nuances about websockets, but now that weāre going step by step on how it works, itās really coming full circle.
Code that == Mind Blown!
server = WEBrick::HTTPServer.new(Port: 3000) server.mount_proc('/') do |req, res|
Controller.new(req, res)
end
Apperantly you can create your own server to handle requests with this little snippet of code and with theĀ āwebrickā gem.Ā
How Iām feeling:
Still extremely tired. The pace is mind-numbingly fast. Apparently weāre supposed to learn javascript in a week.Ā
3/10 motivation
Interesting Sidenote
I havenāt exercised in a full month. Going to shoot around for a little bit today, release some endorphins
Checkout my projects!
https://github.com/theRealYoshi
Iām taking suggestions!
https://yoshihiroluk.typeform.com/to/ilJBBy
w5d2
What we did:
Assessment 4 passed!Ā 4 down, 2 more to go. If I pass the next one I wonāt have to worry about the last one! Todayās rails assessment was surprisingly straightforward and it took me about the half the assessment time it usually takes to finish. Iām usually scrambling towards the end of these assessments but Iām glad I finally didnāt have to feel nervous after taking an assessment.Ā
After the assessment it was immediately onto creating Rails-lite. A two-day solo project, weāre basically creating rails with ruby and learning the inner-workings of rails along the way. In terms of what rails does, everything makes logical sense, but the actual act of implementation is MIND BOGGLING. No wonder DHH is modern day genius (http://david.heinemeierhansson.com/)
I struggled getting the routes and queries down right from the get go. But a full day to work on this tomorrow!
Topics where I struggled:
Params and routes for rails lite. The serializing and deserializing of the hashes always gets me!
Felt a lot more improved:
App Academy. Passing the 4th assessment really gives me 99% confidence Iāll pass the program.Ā
How Iām feeling:
I am so tired. Maybe it has been the constant preparation for tests or the hectic study schedule but today has been one of those days where I can barely lift a finger. Going to take it easy tonight and resume tomorrow
2/10 motivation
Code Music
Music to accompany my dreary mood:
https://soundcloud.com/sea_breeze174/meant-to-be-late-night-alumni?in=the_real_yoshi/sets/late-night-alumni
Interesting Sidenote
Iāve been thinking more about living situation post App Academy. I never thought Iād say this, but I might like living and working in the suburbs a lot more than the city! Who knows what Iāll look for after a/A.Ā
Checkout my projects!
https://github.com/theRealYoshi
Iām taking suggestions!
https://yoshihiroluk.typeform.com/to/ilJBBy

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch ⢠No registration required ⢠HD streaming
w5d1
What we did:
Integration testing and Capybara. Why is integration testing important? Similar to rspec, it helps the developer do testing on the public facing portions of their website. For example if you were to create aĀ āCommentā functionality for a specific portion of your website, the integration test framework (that you yourself write) will help you ensure that the comment belongs in the right place on the page, and is not accessible by unintended users or modified by anyone else but yourself when you place a comment. This rigid system of test, pass and refactor fits into the whole system of test-driven development.Ā
The concepts themselves were not that hard but the total implementation of tests and then the logic essentially doubles the time it takes for one to put up some logic! In the same token, it ensures that one also puts a less mistaken website as well.Ā
Rails assessment is tomorrow, and supposedly itās a big cahuna. 2 hour long test and you have to set up a rails app. Will be studying for a while tonight.Ā
Topics where I struggled:
Capybara language. Itās similar to rspec but not entirely. Also creating new instances of users with FactoryGirl and Faker were time consuming but not a mess.Ā
Felt a lot more improved:
Understanding rails in general. Getting a great view of how everything works under the hood.Ā
Code that == Mind Blown!
Faker gem. Thereās a ruby gem that creates fake names for youĀ
How Iām feeling:
Anxious. Tomorrow is the big 2-hour rails test. I feel like if I pass this, I can pass a/A for good.Ā
9/10 motivation
10/10 anxiety
Checkout my projects!
https://github.com/theRealYoshi
Iām taking suggestions!
https://yoshihiroluk.typeform.com/to/ilJBBy
w4d5
What we did:
Another full day of rails with an emphasis on polymorphic associations and nested routes. Today we were asked to create a Reddit clone that has posting functionality, comment functionality, subreddit-moderator relationships and login/logout ability. Of course it looks absolutely nothing like reddit but it was pretty interesting getting the basics down.Ā
In addition a good friend from the previous cohort came to visit a/A, went out Ā for an interview and received an offer for a job! Awesome! Seems like that job within 2 months of graduating had some truth behind it.Ā
For now itās a night of catching up with friends, watching portlandia and then Ā a whole weekend of studying for the 4th (and perhaps hardest) assessment.Ā
Topics where I struggled:
There were a couple parts where in the HTML form to controller transfer I had a tough time on, but it wasnāt really about the logic but more about the complexity of communicating between the view and the controller.Ā
Felt a lot more improved:
Authentication. Was able to set up the authentication portion of rails within 30 minutes of getting the instruction, something that seemed unlikely 3 days ago.Ā
Code that == Mind Blown!
When passing a params hash from the form to the controller it was pretty awesome that arrays are able to be passed into the controller as an array AND objects will be created for each item thatās passed.Ā
params.require(:user).permit(:username, :password, user_id: [ ] )
theĀ āparamsā is able to the the user_id as an array and then create multiple associations in another table! Rails is truly amazing.Ā
How Iām feeling:
Itās Friday. Iām le tired.
7/10
Interesting Sidenote
My typing speed has increased overall from 89 wpm to 98 wpm in a span of 4 weeks! See if you can beat my score on typeracer.com. Oh yeah Iāve gone over 100 wpm before.Ā
Checkout my projects!
https://github.com/theRealYoshi
Iām taking suggestions!
https://yoshihiroluk.typeform.com/to/ilJBBy