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 | |
# encoding: utf-8 | |
# | |
# Find minimal required versions of the gtk/gdk/gdk_pixbuf/glib/cairo libs | |
# for pqiv | |
# | |
import re | |
import sys | |
import urllib |
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 | |
# | |
# Build i3 and depencendies. | |
# by Phillip Berndt, www.pberndt.com, June 2013 | |
# | |
# The default developer packages from debian based distributions, | |
# cmake and cairo headers are prerequisites for this script. If | |
# anything else is missing on your system, this script should be | |
# easily extendible by inserting further packages into the | |
# BUILD array below. |
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
diff --git a/services/java/com/android/server/PrivacyTelephonyRegistry.java b/services/java/com/android/server/PrivacyTelephonyRegistry.java | |
index 36f2d9e..95a3f58 100644 | |
--- a/services/java/com/android/server/PrivacyTelephonyRegistry.java | |
+++ b/services/java/com/android/server/PrivacyTelephonyRegistry.java | |
@@ -44,17 +44,25 @@ public class PrivacyTelephonyRegistry extends TelephonyRegistry{ | |
private static final int PERMISSION_CALL_STATE = 3; | |
private static final int PERMISSION_SERVICE_STATE = 4; | |
+ | |
+ private Context _context; |
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 | |
# | |
# This script moves a disk's partition. This is useful if you | |
# want to resize two parititions, making the first one smaller and the second one bigger. | |
# | |
# Note that if your partitions are not encrypted, there are GUI tools to | |
# acomplish this (Gnome's GParted) and if you are using LVM you don't need this | |
# at all because there is no problem having fragmented partitions with LVM. | |
# If you can avoid using this script, do it! Using a GUI tool for such delicate stuff | |
# helps you avoid headaches ;-) |
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/perl -w | |
use LWP::Simple; | |
use Storable; | |
use strict; | |
# Configuration | |
# You can define multiple urlfilter.ini lists to be downloaded | |
my @remotes = qw( | |
http://secure.fanboy.co.nz/adblock/opera/urlfilter.ini | |
); |
NewerOlder