- Hardware Support
- Audio
- Works
- RIL
- Emergency Calls not yet tested
- Encryption
- Works
- Wifi
- Works
- Audio
- USB
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
# Global variables | |
SHELL=/bin/bash | |
PATH=/sbin:/bin:/usr/sbin:/usr/bin | |
MAILTO=root | |
HOME=/ | |
# check scripts in cron.hourly, cron.daily, cron.weekly and cron.monthly | |
59 * * * * root rm -f /var/spool/cron/lastrun/cron.hourly | |
9 3 * * * root rm -f /var/spool/cron/lastrun/cron.daily | |
19 4 * * 6 root rm -f /var/spool/cron/lastrun/cron.weekly |
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
[Unit] | |
Description=rTorrent | |
After=network.target | |
[Service] | |
Type=forking | |
KillMode=none | |
User=%I | |
ExecStart=/usr/bin/screen -d -m -fa -S rtorrent /usr/bin/rtorrent | |
ExecStop=/usr/bin/killall -w -s 2 /usr/bin/rtorrent |
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 python3 | |
# vim: autoindent tabstop=4 shiftwidth=4 expandtab softtabstop=4 filetype=python | |
# This file is part of Supermicro IPMI certificate updater. | |
# Supermicro IPMI certificate updater is free software: you can | |
# redistribute it and/or modify it under the terms of the GNU General Public | |
# License as published by the Free Software Foundation, version 2. | |
# | |
# This program is distributed in the hope that it will be useful, but WITHOUT |
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
function npp() { | |
args=() | |
for v in "$@"; do | |
if [[ "$v" == /mnt/?/* ]]; then | |
args+=( "${v:5:1}:${v:6}" ) | |
else | |
args+=( "$v" ) | |
fi | |
done | |
test -z "${args[*]}" && return |
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 | |
function deploy_challenge { | |
# This hook is called once for every domain that needs to be | |
# validated, including any alternative names you may have listed. | |
# | |
# Parameters: | |
# - DOMAIN | |
# The domain name (CN or subject alternative name) being | |
# validated. |
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
<?php | |
/* | |
Twitter JSON to Atom proxy for Twitter API 1.1 - @yliu | |
Original version by Russell Beattie ( https://gist.github.com/russellbeattie/3898467 ) | |
Fork of upstream to remove use of short tags; add t.co expansion and URL formatting for feed reader | |
License: BSD | |
*/ | |
date_default_timezone_set('America/Los_Angeles'); |
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
07-11 23:38:13.032 642 3454 E OMX-VDEC-1080P: vendor library not set in ro.vendor.extension_library | |
07-11 23:38:13.032 4886 4886 D AndroidRuntime: Shutting down VM | |
07-11 23:38:13.033 4886 4886 E AndroidRuntime: FATAL EXCEPTION: main | |
07-11 23:38:13.033 4886 4886 E AndroidRuntime: Process: com.android.phone, PID: 4886 | |
07-11 23:38:13.033 4886 4886 E AndroidRuntime: java.lang.IllegalAccessError: Method 'void com.android.internal.telephony.Phone.restoreSavedNetworkSelection(android.os.Message)' is inaccessible to class 'com.qualcomm.qti.internal.telephony.QtiRadioCapabilityController' (declaration of 'com.qualcomm.qti.internal.telephony.QtiRadioCapabilityController' appears in /system/framework/qti-telephony-common.jar) | |
07-11 23:38:13.033 4886 4886 E AndroidRuntime: at com.qualcomm.qti.internal.telephony.QtiRadioCapabilityController.sendSubscriptionSettings(QtiRadioCapabilityController.java:562) | |
07-11 23:38:13.033 4886 4886 E AndroidRuntime: at com.qualcomm.qti.internal.telephony.QtiRa |
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
<Configuration> | |
<Add OfficeClientEdition="64" Channel="Monthly" Branch="Current"> | |
<Product ID="ProPlusRetail"> | |
<Language ID="de-de" /> | |
<ExcludeApp ID="OneDrive" /> | |
<ExcludeApp ID="Access" /> | |
<ExcludeApp ID="Lync" /> | |
<ExcludeApp ID="Outlook" /> | |
<ExcludeApp ID="InfoPath" /> | |
<ExcludeApp ID="Groove" /> |
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 python3 | |
import os | |
import sys | |
import time | |
import signal | |
from twitch import TwitchClient | |
os.chdir(os.path.dirname(os.path.abspath(__file__))) | |
class AlarmException(Exception): |