- metalrobot Металлический конструктор
- inkdatatable An Inkscape extension for creating tables with text fields
- textext Inkscape LaTeX plugin originally from http://pav.iki.fi/software/textext/
- inkscape-gs An inkscape's extension to create guides with offset, useful to create a grid system.
- NiceCharts An Inkscape-extension to draw charts
- gdadin GUI to Draw Algorithms Designed with Inkscape
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 | |
if [[ $# -gt 0 ]]; then | |
CLONE=1 | |
else | |
CLONE=0 | |
fi | |
function get_max_resolution() { | |
xrandr | grep -A100 "^$1 " | grep -P '^\s+[0-9]+x[0-9]+\s+[0-9\.]+\s*\*?\+.*$' | head -1 | awk '{ print $1; }' | |
} |
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
--- tools.py 2015-11-12 18:46:13.489194658 +0100 | |
+++ tools.new.py 2015-11-12 18:45:35.178614760 +0100 | |
@@ -239,8 +239,8 @@ def message_if_missing(filename): | |
return _CLIENT_SECRETS_MESSAGE % filename | |
try: | |
- from oauth2client.old_run import run | |
- from oauth2client.old_run import FLAGS | |
+ from oauth2client1412.old_run import run | |
+ from oauth2client1412.old_run import FLAGS |
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 | |
set -o errexit | |
set -o nounset | |
set -o pipefail | |
# Automatically update your CloudFlare DNS record to the IP, Dynamic DNS | |
# Can retrieve cloudflare Domain id and list zone's, because, lazy | |
# Place at: | |
# /usr/local/bin/cf-ddns.sh |
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
# | |
# See /usr/share/doc/unbound/examples/unbound.conf for a commented | |
# reference config file. | |
server: | |
# The following line will configure unbound to perform cryptographic | |
# DNSSEC validation using the root trust anchor. | |
auto-trust-anchor-file: "/var/lib/unbound/root.key" | |
do-not-query-localhost: no | |
local-zone: "168.192.in-addr.arpa" transparent |
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 python | |
#coding=utf-8 | |
# | |
# Generate a list of dnsmasq rules with ipset for gfwlist | |
# | |
# Copyright (C) 2014 http://www.shuyz.com | |
# Ref https://code.google.com/p/autoproxy-gfwlist/wiki/Rules | |
import urllib2 | |
import re |
##Configurations for Raspberry Pi Home Server## #####Using Raspbian##### (although the procedures are similar/compatible with most debian based systems.)
###Added###
- [sysctl.conf mods] (#file-sysctl-md)
- [Firewall config] (#file-firewall-md)
- [DNS Server] (#file-dns-md)
- [Dynamic Dns] (#file-dyndns-md)
- [Git Server] (#file-git-server-md)
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 | |
# latest-chrome Version 1.3.1 | |
# This script will find the latest Google Chrome binary package, | |
# download it and repackage it into Slackware format. | |
# I don't use Chrome for regular browsing but it is handy for | |
# comparative tests against Vivaldi. :P | |
# Copyright 2015 Ruari Oedegaard, Oslo, Norway |
-
Installation
$ sudo pacman -Sy $ sudo pacman -S pdnsd
-
Configure pdnsd
$ sudo vi /etc/resolvconf.conf
$ sudo vi /etc/pdnsd.conf
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
jQuery( ".selector" ).click(function( event ) { ... } ) | |
//でも駄目なら | |
jQuery( ".selector" ).on( "tap", function( event ) { ... } ) | |
//まだ駄目なら | |
jQuery( ".selector" ).live( "tap", function( event ) { ... } ) |