- Skype
- Google Hangout
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
function mm2umsatz() { | |
awk -F "\"*;\"*" 'NR>1 {print $1";;" $4";;;;;19%;"$8}' $1 > $1:r_umsatz.csv | |
} |
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
alias nr="_nr" | |
function _nr() { | |
for arg in $@; do npm run $arg; done; | |
} |
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 popup = window.open(location.href,'testPopup',"height=1, width=1",true); | |
setTimeout( function() { | |
if(!popup || popup.outerHeight === 0) { | |
//First Checking Condition Works For IE & Firefox | |
//Second Checking Condition Works For Chrome | |
alert("Popup Blocker is enabled! Please add this site to your exception list."); | |
} else { | |
//Popup Blocker Is Disabled | |
popup.close(); | |
} |
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
// copy the folling line into the URL field of a bookmark(let) | |
// you may need to allow popups in yout browser | |
javascript:(()=>{ [1920, 1660, 1360, 1160, 960, 760, 560, 360].forEach((value) => { window.open(location.href, `${value}`, `height=600,width=${value}`)});})() |
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 gulp = require('gulp'); | |
var gutil = require('gulp-util'); | |
var bower = require('bower'); | |
var concat = require('gulp-concat'); | |
var sass = require('gulp-sass'); | |
var minifyCss = require('gulp-minify-css'); | |
var rename = require('gulp-rename'); | |
var sh = require('shelljs'); | |
var coffee = require('gulp-coffee'); | |
var jade = require('gulp-jade'); |
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 | |
# you might need to install ionic and cordova | |
# npm install -g cordova ionic | |
USAGE="Usage: ionic-app [AppPath/]AndName [ionic starter template]" | |
APP_TEMPLATE='tabs' |
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
.progress | |
.inner-progress |
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
.progress | |
.inner-progress |
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
=keyframes($name) | |
@-webkit-keyframes #{$name} | |
@content | |
@-moz-keyframes #{$name} | |
@content | |
@keyframes #{$name} | |
@content | |
=animation($name, $duration) | |
-webkit-animation-name: #{$name} |
NewerOlder