Skip to content

Instantly share code, notes, and snippets.

View rtablada's full-sized avatar

Ryan Tablada rtablada

View GitHub Profile
@rtablada
rtablada / .0how-to.md
Last active April 27, 2019 23:57
Terminal Stuff

How To Install

xcode-select --install

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

brew install wget

https://gist.githubusercontent.com/rtablada/8d720b6eb51c9ab108f2d94e8adab9b3/raw/super-installer.sh
<p>{{value}}</p>
<button {{action "goUp"}}>Click</button>
{{lookup-component Foo in "foo"}}
{{lookup-component Bar in "baz"}}
{{lookup-component Unused in "tomster"}}
{{lookup-component NavBar in "ui/nav-bar"}}
<Foo />
<Bar />
<NavBar />

Community and Jobs

Paid Learning Resources

@rtablada
rtablada / portfolio.md
Created January 9, 2019 15:59
A Short Post on doing your best to get a job and being more efficient with finding a jorb!

Getting a Job Presence

Each section has a first pass time frame estimate, try to constrain yourself to only focusing for this amount of time before "shipping" and moving on to the next task. These time estimates do not represent a final version of any of these portions of your professional profile, just a first pass. It's important to make a profile and persona then update it and work on it over time. Time you spend with no presence is time that people won't know who they could be hiring!

1. Create or Update your LinkedIn Profile (1-3 Hours)

Make sure that you have a picture of yourself, education, and job history on your LinkedIn profile.

import Ember from 'ember';
import { inject as service } from '@ember/service';
import { computed } from '@ember/object';
export default Ember.Controller.extend({
router: service(),
appName: 'Ember Twiddle',
value: 0,
queryParams: ['value', 'value2'],
  • Create a new project named "like-button-14" using the ember new command
  • Run hub create to create a new repository on Github
  • Push master branch
  • Create develop branch
  • Generate a new like-counter component
  • Create like-counter in your application.hbs template with a score attribute of 0
  • Work on like-counter component implementation
    • Build basic HTML for a like-counter in the .hbs file for this component
    • Create action function for changing scores in .js file for this component
    • Add action to buttons in the like-counter template
@rtablada
rtablada / todos.md
Created March 22, 2016 14:00
Login Form Todos
  • Fork Repository TIY-TN-FEE-2016-spring/12-login-form on Github
  • Run hub clone 12-login-form to clone your repo locally
  • Run npm install in project directory to install test and build dependencies
  • Create develop branch
  • Run npm run test to run tests
  • GOAL JS: LoginForm class
    • CHECKPOINT JS: LoginForm constructor
    • CHECKPOINT JS: LoginForm validate
    • CHECKPOINT JS: LoginForm validates inputs
  • CHECKPOINT JS: LoginForm listens for clicks
@rtablada
rtablada / bus
Last active December 30, 2018 17:55
Rail
Rail
---
---
Power
Power
---
---
import Ember from 'ember';
export default Ember.Component.extend({
init() {
console.log(arguments);
// Where is this getting set???
console.log(this.get('hi'));
this._super(...arguments);
}