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
1033edge.com | |
11mail.com | |
123box.net | |
123.com | |
123india.com | |
123mail.cl | |
123qwe.co.uk | |
126.com | |
150mail.com | |
150ml.com |
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/python2 | |
import sys | |
def mean_angle(angles): | |
edges = [a - angles[i] for i, a in enumerate(angles[1:])] + [360 - angles[-1] + angles[0]] | |
maxedge = max(edges) | |
start = (edges.index(maxedge) + 1) % len(edges) | |
angles2 = angles[:start] + [a - 360 for a in angles[start:]] | |
mean = float(sum(angles2)) / len(angles) | |
if mean < 0: |
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
┌─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┲━━━━━━━━━┓ | |
│ ~ ≈ │ ! │ @ │ # │ $ │ % │ ^ │ & │ * │ ( │ ) │ _ │ + ± ┃ ⌫ ┃ | |
│ ` ʼ │ 1 ¹ │ 2 ² │ 3 ³ │ 4 $ │ 5 │ 6 │ 7 & │ 8 • │ 9 │ 0 │ - — │ = ≠ ┃Backspace┃ | |
┢━━━━━┷━┱───┴─┬───┴─┬───┴─┬───┴─┬───┴─┬───┴─┬───┴─┬───┴─┬───┴─┬───┴─┬───┴─┬───┺━┳━━━━━━━┫ | |
┃ ┃ Q │ W │ E │ R │ T ‡ │ Y │ U │ I │ O │ P ˝ │ { { │ } } ┃ | ┃ | |
┃ Tab ↹ ┃ q │ w │ e € │ r ® │ t † │ y ¥ │ u µ │ i │ o ° │ p ´ │ [ [ │ ] ] ┃ \ ┃ | |
┣━━━━━━━┻┱────┴┬────┴┬────┴┬────┴┬────┴┬────┴┬────┴┬────┴┬────┴┬────┴┬────┴┬────┺━━━━━━━┫ | |
┃RUS UKR ┃ A │ S § │ D │ F │ G │ H │ J ‚ │ K ‘ │ L ’ │ : │ " ┃ ┃ | |
┃ ENG ┃ a ́ │ s $ │ d ÷ │ f £ │ g │ h ₴ │ j „ │ k “ │ l ” │ ; ‘ │ ' ’ ┃ Enter ⏎ ┃ | |
┣━━━━━━━━┻━┱───┴─┬───┴─┬───┴─┬───┴─┬───┴─┬───┴─┬───┴─┬───┴─┬───┴─┬───┴─┲━━━┻━━━━━━━━━━━━┫ |
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
digraph "Art Movements" { | |
ranksep=1.25; rankdir=BT; size=12 | |
// ranksep=1.25; rankdir=LR; nodesep=0.75; size=24 // Left-to-right drawing | |
node [shape=plaintext,fontsize=20]; | |
longago -> XIV -> XVII -> XVIII -> XIX -> post19_1 -> post19_2 -> | |
XX -> post20 [style=invis]; |
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
#!/bin/bash | |
# Dirty script to download covers for the album of currently playing song by mpd | |
# with glyrc | |
# Copyright (c) 2013 Vyacheslav Levit | |
# Licensed under The MIT License: http://opensource.org/licenses/MIT | |
MUSIC_DIR="$HOME/Music" | |
TEMPDIR=/var/tmp |
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
#!/bin/bash | |
# Script intended to be executed from ncmpcpp (execute_on_song_change | |
# preference) running from urxvt to set album cover as background image | |
# Copyright (c) 2013 Vyacheslav Levit | |
# Licensed under The MIT License: http://opensource.org/licenses/MIT | |
MUSIC_DIR=$HOME/Music | |
DARKEN=50 # 0 - original image colors, 100 - absolutely black background |
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
#!/bin/bash | |
# close all windows and optionally wait until some of them close | |
# Copyright (C) 2012 Vyacheslav Levit | |
# License: GPLv3 or later. See <http://www.gnu.org/licenses/> | |
function usage | |
{ | |
echo "Usage: ${0##*/} [--wait [window_classes]]" |