This file contains hidden or 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 youtube-play() { | |
| if [ $# -eq 1 ]; then | |
| YOUTUBE_LINK=$1 | |
| else | |
| YOUTUBE_LINK=`xclip -o -selection "clipboard" | grep -oE 'http[^&]*' | head -n1` | |
| fi | |
| YOUTUBE_COOKIES=$HOME/.youtube.cookies | |
| if [ ! -e $YOUTUBE_COOKIES ]; then | |
| curl -c $YOUTUBE_COOKIES http://www.youtube.com > /dev/null 2>&1 | |
| fi |
This file contains hidden or 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
| #!/bin/bash | |
| RESPONSE="`$HOME/bin/post-picasa "$1" 2>&1`" | |
| if [ $? = 0 ]; then | |
| zenity --entry --entry-text="$RESPONSE" --title="Изображение $1 загружено" --text="Нажмите «OK», чтобы скопировать адрес и закрыть это окно" | xclip -selection clipboard | |
| else | |
| echo $RESPONSE | zenity --text-info --title="Произошла ошибка" | |
| fi |
This file contains hidden or 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
| - Adblock Plus | |
| - Add Bookmark Here ² | |
| - Add to Search Bar (Отключено, Несовместимо) | |
| - CoolPreviews | |
| - Element Hiding Helper для Adblock Plus (Отключено, Несовместимо) | |
| - Extension List Dumper | |
| - FireGestures | |
| - GMarks (Отключено, Несовместимо) | |
| - Greasemonkey | |
| - Locationbar² (Отключено, Несовместимо) |
This file contains hidden or 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
| 'use strict'; | |
| angular.module('saSchedulerApp.directives') | |
| .directive('pickadate', [function () { | |
| return { | |
| require: '?ngModel', | |
| link: function (scope, elm, attrs, ngModel) { | |
| var pickadateOptions = { format: 'dd.mm.yyyy' }; | |
| if (!ngModel) { |
This file contains hidden or 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 ruby | |
| KEYS_BY_ACTION = { next: :Right, prev: :Left, toggle: :space } | |
| action = (ARGV.first || 'toggle').to_sym | |
| action = :toggle unless KEYS_BY_ACTION.has_key? action | |
| unless (window = `xdotool search "Google Play"`[0..-2]).empty? | |
| `xdotool keydown --window #{window} #{KEYS_BY_ACTION[action]}` | |
| else |
This file contains hidden or 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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
This file contains hidden or 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 pluralize(n, forms) { | |
| return forms[n % 10 == 1 && n % 100 != 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2]; | |
| } |
This file contains hidden or 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
| <div id="draggable-block" style="border: 2px solid black; padding: 20px; display:inline-block">Drag me</div> |
This file contains hidden or 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
| #!/bin/sh | |
| spinner() | |
| { | |
| local pid=$1 | |
| local delay=0.1 | |
| local spinners=(⠋ ⠙ ⠹ ⠸ ⠼ ⠴ ⠦ ⠧ ⠇ ⠏) | |
| local spinners_count=${#spinners[@]} | |
| local spinstr='⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏' | |
| local infotext=$2 |
This file contains hidden or 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
| atom-fuzzy-grep@0.15.0 | |
| atom-move-line@0.3.3 | |
| atom-ternjs@0.17.0 | |
| autocomplete-modules@1.6.7 | |
| autocomplete-paths@1.0.5 | |
| code-peek@1.4.14 | |
| date@1.1.1 | |
| docblockr@0.9.1 | |
| double-tag@0.4.0 | |
| editorconfig@2.2.0 |
OlderNewer