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 static class Example { | |
public static void main(String[] argss) throws Exception { | |
int intStart = 6; | |
try (ServerSocket serverSocket = new ServerSocket()) { | |
serverSocket.bind(new InetSocketAddress(0)); | |
Thread serverThread = new Thread(() -> { | |
try { | |
while (serverSocket.isBound()) { |
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
# Maintainer: Ivan Shapovalov <[email protected]> | |
# Contributor: Matthew Bauer <[email protected]> | |
pkgname=idevicerestore | |
pkgver=1.0.1 | |
pkgrel=1 | |
pkgdesc="Restore/upgrade firmware of iOS devices" | |
arch=('i686' 'x86_64') | |
url="http://www.libimobiledevice.org" | |
license=('LGPL3') |
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
# /system/usr/keylayout/ | |
# Generic USB Gamepad with XY ZRZ sticks | |
# | |
# `evtest` can help you discover the right bindings. Axis keys needs to start | |
# with axis and have the hexadecimal order of the key | |
key 288 BUTTON_X | |
key 289 BUTTON_A | |
key 290 BUTTON_B | |
key 291 BUTTON_Y |
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
extra-keys = [['ESC','CTRL','PGUP','HOME','UP','END'],['TAB','ALT','PGDOWN','LEFT','DOWN','RIGHT']] |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE fontconfig SYSTEM "../fonts.dtd"> | |
<fontconfig> | |
<!-- First, we apply the general rules --> | |
<match target="font"> | |
<test name="family" compare="eq" ignore-blanks="true"> | |
<string>Cantarell</string> | |
</test> | |
<edit name="antialias" mode="assign"> | |
<bool>true</bool> |
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
# /etc/pulse/ | |
# This change is optional if you are not satisfied with sound quality. Please try different bitrate options and | |
# use the most compatible one. For instance, you may run "arecord -f dat -r 48000 -D hw:0,0 -d 5 test.wav" to | |
# record a sample audio. Change the bitrate accordingly by using "r" option. | |
default-sample-rate = 48000 | |
alternate-sample-rate = 44100 |
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
# /etc/systemd/system/bt-agent.service | |
[Unit] | |
Description=Bluetooth Auth Agent | |
[Service] | |
ExecStart=/usr/bin/bt-agent -c NoInputNoOutput | |
Type=simple | |
[Install] |
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
/* This stylesheet is generated, DO NOT EDIT */ | |
/* Copyright 2009, 2015 Red Hat, Inc. | |
* | |
* Portions adapted from Mx's data/style/default.css | |
* Copyright 2009 Intel Corporation | |
* | |
* This program is free software; you can redistribute it and/or modify it | |
* under the terms and conditions of the GNU Lesser General Public License, | |
* version 2.1, as published by the Free Software Foundation. | |
* |
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
<?xml version="1.0"?> | |
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
<!-- this config file forces system full hinting--> | |
<!-- file: /etc/fonts/conf.d/10-hinting-full.conf --> | |
<fontconfig> | |
<its:rules xmlns:its="http://www.w3.org/2005/11/its" version="1.0"> | |
<its:translateRule translate="no" selector="/fontconfig/*[not(self::description)]"/> | |
</its:rules> |
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 +x # Do not leak information | |
# Exit immediately if one of the files given as arguments is not there | |
# because we don't want to delete the existing release if we don't have | |
# the new files that should be uploaded | |
for file in "$@" | |
do | |
if [ ! -e "$file" ] |
NewerOlder