video walkthrough of my JavaScript portfolio project, Double Dog Dare
art blog(derogatory)

Janaina Medeiros
will byers stan first human second
PUT YOUR BEARD IN MY MOUTH
Xuebing Du
TVSTRANGERTHINGS

@theartofmadeline
tumblr dot com

Origami Around
todays bird
h

YOU ARE THE REASON

shark vs the universe

ellievsbear
Mike Driver

JBB: An Artblog!
Monterey Bay Aquarium

seen from Australia

seen from Australia
seen from United States
seen from United States

seen from India

seen from Canada

seen from TĂźrkiye
seen from T1

seen from Germany
seen from Netherlands
seen from Netherlands

seen from TĂźrkiye

seen from Germany

seen from Germany
seen from France
seen from United States

seen from Netherlands
seen from TĂźrkiye

seen from Mexico
seen from TĂźrkiye
@mjcodedit
video walkthrough of my JavaScript portfolio project, Double Dog Dare

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
Visual walkthrough of my new project matchmaking!
Working on flushing out my code for my second portfolio project at the Flatiron School. Iâve been working on this one for a while and I have definitely made huge strides in understanding restful routes and the CRUD process. One thing that I really have had to hammer in though, is what can be passed through views and redirects.
For example:
 get â/loginâ do
 @duck = âquack"
 if logged_in?
   redirect â/projectsâ
 else
   erb :login
  end
end
 Here in the corresponding view, the @duck variable is valid and can be accessed is the block of code above. What I believed was, that because the variable was used and had a definition in the same block, that the variable would be passed in with the redirect. However, when you redirect to a new route it is like a new instance.
  I believe my biggest hindrance to understanding this was the use of helpers in my case the session.
For example:
 get '/projects/:project_project_name' do
  if Helpers.is_logged_in?(session)
   @user = Helpers.current_user(session)
   @project = Helpers.current_project(session)
   erb :'projects/projects'
  else
   redirect '/login'
  end
 end
 The session is passed to the âerb :'projects/projects':â because this is not a redirect to a route but instead is requesting the project.erb file in the projects folder under the views.
Recording of my finished Sinatra project using CRUD, and RESTful routes! Â
This is my second final project at Flatiron School. This one is Sinatra based and focuses on CRUD(Create,Read,Update,Destroy) and RESTful routes. Before my coding hiatus, I had completed this section up to this lab, so the first step of the completion process was review. After reminding myself how to code the routes and create databases and their relationships, I had to look into how to make sure the usernames and project names would be unique. I then created hyperlinks for easy route navigation.Â
This project allows users to sign in and create projects and the idea behind it was that others would be able to access the projects contribute to it and have their name added to the contributors of the project.

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
Recording of my finished command line interface (CLI) using Nokogiri!
Just resumed my coding experience at the Flat Iron School after a couple month hiatus and came back to a command line interface (CLI) program. Firstly it feels good to be coding again but I am amazed at how hard it was to get fully back in the swing of things. This project was coupled with pulling web info with Nokogiri and was by far the most tedious part. I had to keep switching sites as I couldnât figure out how to access the information I was targeting and still didnât quite exactly what I wanted. I will have to delve deeper into this in the future.