###Sketch trial non stop
Open hosts files:
$ open /private/etc/hosts
Edit the file adding:
127.0.0.1 backend.bohemiancoding.com
127.0.0.1 bohemiancoding.sketch.analytics.s3-website-us-east-1.amazonaws.com
| # index.ios.js and index.android.js | |
| import './app.js'; |
| validate_sheet() | |
| set coins to {} | |
| -- retrieve the list of coins from number | |
| tell application "Numbers" | |
| tell table 1 of sheet 1 of document 1 | |
| set cntRow to count row | |
| set cntCol to count column | |
###Sketch trial non stop
Open hosts files:
$ open /private/etc/hosts
Edit the file adding:
127.0.0.1 backend.bohemiancoding.com
127.0.0.1 bohemiancoding.sketch.analytics.s3-website-us-east-1.amazonaws.com
| //This is a Redacted version to be used as a benchmark/example for React Native Router Flux | |
| import React, { | |
| Component, | |
| StatusBar, | |
| Text, | |
| View, | |
| StyleSheet, | |
| PixelRatio, | |
| } from 'react-native'; |
| #!/bin/bash | |
| # This script resizes all the images it finds in a folder (and its subfolders) and resizes them | |
| # The resized image is placed in the /resized folder which will reside in the same directory as the image | |
| # | |
| # Usage: > ./batch_resize.sh | |
| initial_folder="/your/images/folder" # You can use "." to target the folder in which you are running the script for example | |
| resized_folder_name="resized" | |
| all_images=$(find -E $initial_folder -iregex ".*\.(jpg|gif|png|jpeg)") |
| { | |
| "file_exclude_patterns": | |
| [ | |
| "*.svn", | |
| "*.git", | |
| "*.hg", | |
| "CVS", | |
| "*tmp/cache", | |
| "*._*", | |
| "*.DS_Store" |
| <?php | |
| // REMOVE WP-CONTENT | |
| // Rewrites DO NOT happen for child themes | |
| // Add .htaccess rewrite rules to convert urls | |
| // like "http://example.com/wp-content/themes/theme-name/path" into "http://example.com/path" | |
| /* | |
| in case your wordpress is in a folder, | |
| and you change the site_url to the root of the domain, | |
| add the folder name in lines 29 to 34, |
| /** | |
| * Create a web friendly URL slug from a string. | |
| * | |
| * Requires XRegExp (http://xregexp.com) with unicode add-ons for UTF-8 support. | |
| * | |
| * Although supported, transliteration is discouraged because | |
| * 1) most web browsers support UTF-8 characters in URLs | |
| * 2) transliteration causes a loss of information | |
| * | |
| * @author Sean Murphy <[email protected]> |