Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| - (void)viewDidLoad | |
| { | |
| [super viewDidLoad]; | |
| UITextView *textView = [[UITextView alloc] init]; | |
| textView.translatesAutoresizingMaskIntoConstraints = NO; | |
| [self.view addSubview:textView]; | |
| [self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|-[textView]-|" options:0 metrics:nil views:NSDictionaryOfVariableBindings(textView)]]; | |
| [self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|-[textView]-|" options:0 metrics:nil views:NSDictionaryOfVariableBindings(textView)]]; | |
| NSString *htmlString = @"<h1>Header</h1><h2>Subheader</h2><p>Some <em>text</em></p><img src='http://blogs.babble.com/famecrawler/files/2010/11/mickey_mouse-1097.jpg' width=70 height=100 />"; |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| source 'https://rubygems.org' | |
| gem 'jekyll' | |
| gem 'maruku' | |
| gem 'rake' | |
| gem 'sass' | |
| gem 'coffee-script' |
| server { | |
| # Redirect yoursite.com to www.yoursite.com | |
| server_name yoursite.com; | |
| rewrite ^(.*) http://www.yoursite.com$1 permanent; | |
| } | |
| server { | |
| # Tell nginx to handle requests for the www.yoursite.com domain | |
| server_name www.yoursite.com; |
| #!/usr/bin/env ruby | |
| # | |
| # check google serp for multiple sites using provided queries | |
| # | |
| require 'rubygems' | |
| require 'mechanize' | |
| SITES = [ | |
| 'moneyworks.ca', |