Please see: https://github.com/kevinSuttle/html-meta-tags, thanks for the idea @dandv!
Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/
| #!/usr/bin/env python | |
| # | |
| # Script to check who of your Facebook friends were removed from FB or unfriend | |
| # you. | |
| # | |
| # Requirements | |
| # ============ | |
| # | |
| # * Linux / Mac OS X / other Unix | |
| # * `Python <http://www.python.org/>`_ 2.6 or 2.7 |
| package com.paddypower.financials.market.management.rest.logging; | |
| import java.io.BufferedReader; | |
| import java.io.ByteArrayInputStream; | |
| import java.io.IOException; | |
| import java.io.InputStream; | |
| import java.io.InputStreamReader; | |
| import javax.servlet.Filter; | |
| import javax.servlet.FilterChain; |
| Latency Comparison Numbers (~2012) | |
| ---------------------------------- | |
| L1 cache reference 0.5 ns | |
| Branch mispredict 5 ns | |
| L2 cache reference 7 ns 14x L1 cache | |
| Mutex lock/unlock 25 ns | |
| Main memory reference 100 ns 20x L2 cache, 200x L1 cache | |
| Compress 1K bytes with Zippy 3,000 ns 3 us | |
| Send 1K bytes over 1 Gbps network 10,000 ns 10 us | |
| Read 4K randomly from SSD* 150,000 ns 150 us ~1GB/sec SSD |
| import java.io.*; | |
| import java.nio.file.*; | |
| import java.security.*; | |
| import java.security.cert.*; | |
| import javax.net.ssl.*; | |
| import org.bouncycastle.jce.provider.*; | |
| import org.bouncycastle.openssl.*; | |
| public class SslUtil |
| // additional required configuration to hook into the build script | |
| android { | |
| signingConfigs { | |
| release | |
| } | |
| buildTypes { | |
| release { | |
| signingConfig signingConfigs.release | |
| } |
| <?xml version="1.0" encoding="utf-8"?> | |
| <layer-list xmlns:android="http://schemas.android.com/apk/res/android" > | |
| <!-- Drop Shadow Stack --> | |
| <item> | |
| <shape> | |
| <padding | |
| android:bottom="1dp" | |
| android:left="1dp" | |
| android:right="1dp" |
| #!/bin/sh | |
| DATE_TO_PRUNE='-60 day' | |
| DB_CURRENT="quassel-storage.sqlite" | |
| DB_BACKUP="$DB_CURRENT.bak" | |
| DB_TEMP="$DB_CURRENT.tmp" | |
| die() { | |
| echo $@ |
| #!/bin/bash | |
| if [[ -z "$1" ]]; | |
| then | |
| echo "No SVG file specified. Exiting." | |
| exit -1 | |
| fi | |
| ispng=$(file $1) | |
| echo $ispng | grep -q SVG |
| public static int lighten(int color, double fraction) { | |
| int red = Color.red(color); | |
| int green = Color.green(color); | |
| int blue = Color.blue(color); | |
| red = lightenColor(red, fraction); | |
| green = lightenColor(green, fraction); | |
| blue = lightenColor(blue, fraction); | |
| int alpha = Color.alpha(color); | |
| return Color.argb(alpha, red, green, blue); | |
| } |