I hereby claim:
- I am euraldius on github.
- I am lupinewayfarer (https://keybase.io/lupinewayfarer) on keybase.
- I have a public key whose fingerprint is D03D 1F69 A153 6801 F69C 6785 6E79 AAFF 3E5B EBC2
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
uninstall() { | |
list=`gem list --no-versions` | |
for gem in $list; do | |
gem uninstall $gem -aIx | |
done | |
gem list | |
gem install bundler | |
} |
import UIKit | |
class ViewController: UIViewController, UITableViewDataSource { | |
let jobTableIdentifier = "JobTableIdentifier" | |
@IBOutlet weak var tableView: UITableView! | |
override func viewDidLoad() { | |
super.viewDidLoad() |
import UIKit | |
extension UIView { | |
class func loadNib() -> UINib { | |
return UINib(nibName: NSStringFromClass(self.dynamicType), bundle: .None) | |
} | |
} |
%li{id: person.slug, class: 'person', :'data-person-id' => person.slug}<> | |
= image_tag "people/#{person.image_slug}", alt: person.name | |
.person-info | |
%h3= person.name | |
%h4= person.title | |
%p= raw person.bio |
- content_for(:title, "#{t('people.title')} - thoughtbot") | |
%header#page-header | |
.wrap | |
.page-header-content | |
%h2 | |
= t('people.title') | |
%p | |
= t('people.details') | |
= link_to 'http://apprentice.io', title: 'Visit Website' do |
$ = jQuery | |
doc = $(document) | |
$window = $(window) | |
class People | |
constructor: -> | |
@_setupPhotoGrid() | |
@_followPersonLink() | |
_setupPhotoGrid: -> |
$expanded-grid-breakpoint: new-breakpoint(max-width 1250px); | |
$collapsed-grid-breakpoint: new-breakpoint(max-width 800px); | |
#page-header .page-header-content { | |
@include media($mobile) { | |
margin: 0; | |
padding: em(150) em(20) em(100); | |
text-align: left; | |
width: 100%; | |
} |
tl;dr - You can now preview your solution on Learn before submitting, and you can view | |
past versions of your solution. | |
Hello subscribers! | |
You may have noticed a few new features appearing in the Learn exercises last | |
week. These are part of our ongoing attempt to give you a learning experience | |
that best simulates the coding process we have found productive here at | |
thoughtbot. |