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 bash | |
# Fit pictures to digital photoframe | |
#Samsung SPF-107H | |
#================ | |
# | |
#Resolution: 1024x600 | |
# | |
#Fit height: |
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
# Generated by mksrcinfo v8 | |
# Sat Jul 29 17:45:58 UTC 2017 | |
pkgbase = antergos-kde-setup | |
pkgdesc = Setup configuration for Antergos KDE | |
pkgver = 0.1.9 | |
pkgrel = 1 | |
url = http://www.antergos.com | |
install = antergos-kde-setup.install | |
arch = any | |
license = GPL3 |
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
[INFO] Scanning for projects... | |
[INFO] | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] Building jpeek 1.0-SNAPSHOT | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] | |
[INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ jpeek --- | |
[INFO] Deleting ~/jpeek/target | |
[INFO] | |
[INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-maven) @ jpeek --- |
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
#Turn on debugging for p2 | |
org.eclipse.equinox.p2.core/debug=true | |
#Detailed debugging information while parsing p2 data files | |
org.eclipse.equinox.p2.core/core/parseproblems=true | |
#Detailed debugging information when a repository is removed from a repository manager | |
org.eclipse.equinox.p2.core/core/removeRepo=true | |
#Detailed debugging information while parsing site.xml and feature.xml files in the generator |
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 bash | |
set -euo pipefail | |
########## | |
# Config # | |
########## | |
readonly GIT_BRANCH='android-8.0.0_r12' | |
readonly API_LEVEL='26' |
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 | |
set -o errexit -o nounset | |
DOMAIN="example.com" | |
PASSWORD="changeit" | |
TEMP_PKCS12="temp.p12" | |
KEYSTORE="keystore.jks" | |
openssl pkcs12 -export -in "/etc/letsencrypt/live/${DOMAIN}/fullchain.pem" -inkey "/etc/letsencrypt/live/${DOMAIN}/privkey.pem" -out "${TEMP_PKCS12}" -password pass:"${PASSWORD}" |
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
public class CreateLotteries | |
{ | |
private static final String LOG_TAG = "CreateLotteries"; | |
private final SingleEntityStore<Persistable> data; | |
public CreateLotteries(SingleEntityStore<Persistable> data) | |
{ | |
this.data = data; | |
} |
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
apply plugin: 'com.android.application' | |
android { | |
compileSdkVersion 25 | |
buildToolsVersion "25.0.0" | |
defaultConfig { | |
applicationId "de.comp.pingme" | |
minSdkVersion 19 | |
targetSdkVersion 25 | |
versionCode 1 |
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 python | |
import re, fileinput, tempfile | |
from optparse import OptionParser | |
IGNOREDPREFIXES = [ | |
'PRAGMA', | |
'BEGIN TRANSACTION;', | |
'COMMIT;', | |
'DELETE FROM sqlite_sequence;', |
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
import QtQml 2.0 | |
import com.qownnotes.noteapi 1.0 | |
QtObject { | |
function init() { | |
script.registerCustomAction("convertToMediaWiki", "Convert note to MediaWiki", "Convert to MediaWiki" ); | |
} | |
function customActionInvoked(identifier) { |