Skip to content

Instantly share code, notes, and snippets.

View neocoder's full-sized avatar

Aliaksei Ladyha neocoder

View GitHub Profile
@neocoder
neocoder / untilfail
Created January 30, 2018 08:20
runs command until it finishes with error code
#!/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"
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';
@neocoder
neocoder / sonar.css
Last active December 19, 2015 02:58
Sonar animation for attention point.
.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;
@neocoder
neocoder / main.js
Created April 11, 2012 07:44
Disable elastic page bounce in mobile webkit.
document.addEventListener( 'touchmove', function(e) {
e.preventDefault();
}, false );
@neocoder
neocoder / MainViewController.m
Created April 10, 2012 13:44
PhoneGap/Cordova patch to disable page elastic bounce
- (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;
}
}
@neocoder
neocoder / gist:1891404
Created February 23, 2012 07:54
Remove .DS_Store and ._* files
find . -iname ".DS_Store" -exec rm {} \;
find . -iname "._*" -exec rm {} \;
@neocoder
neocoder / gist:1236966
Created September 23, 2011 08:36
Logorithmic slider function
// 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);