This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
counter=0 | |
while [ $? -eq 0 ]; do | |
counter=$((counter+1)) | |
clear | |
echo "Iteration: $counter"; | |
$@ | |
done | |
declare -r x="Crashed at ${counter} iteration" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var path = require('path'); | |
var _ = require('lodash'); | |
var webpack = require('webpack'); | |
var CleanWebpackPlugin = require('clean-webpack-plugin'); | |
var ManifestPlugin = require('webpack-manifest-plugin'); | |
var env = process.env.WEBPACK || 'dev'; | |
var hotMiddlewareScript = 'webpack-hot-middleware/client?path=/__webpack_hmr&timeout=20000'; // &reload=true'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.q_done_mrkr { | |
display: inline-block; | |
font-size: 0px; | |
cursor: pointer; | |
margin: 15px 30px; | |
width: 20px; | |
height: 20px; | |
border-radius: 50%; | |
text-align: center; | |
position: absolute; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.addEventListener( 'touchmove', function(e) { | |
e.preventDefault(); | |
}, false ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (void)viewDidLoad | |
{ | |
[super viewDidLoad]; | |
UIScrollView* sv = nil; | |
for(UIView* v in self.webView.subviews){ | |
if([v isKindOfClass:[UIScrollView class] ]){ | |
sv = (UIScrollView*) v; | |
sv.bounces = NO; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find . -iname ".DS_Store" -exec rm {} \; | |
find . -iname "._*" -exec rm {} \; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Thanks to STH - http://stackoverflow.com/users/56338/sth | |
function logslider(value) { | |
// value will be between 0 and 100 | |
var min = 0; | |
var max = 100; | |
// The result should be between 100 an 10000000 | |
var minv = Math.log(100); | |
var maxv = Math.log(10000000); |