Keybase proof
I hereby claim:
- I am obahareth on github.
- I am obahareth (https://keybase.io/obahareth) on keybase.
- I have a public key whose fingerprint is CAB8 5952 5444 8B43 F4F2 0615 BFFD 1B8F 549C C61D
To claim this, I am signing this object:
package com.deviant.security.shield; | |
public final class BuildConfig { | |
public static final String BUILD_TYPE = "debug"; | |
public static final boolean DEBUG; | |
public static final String FLAVOR = ""; | |
public static final String PACKAGE_NAME = "com.deviant.security.shield"; | |
public static final int VERSION_CODE = 4; | |
public static final String VERSION_NAME = "2.2"; |
/* Taken zigmob's (http://forums.macrumors.com/showthread.php?t=1742566) workaround a step further | |
And added some triggers to clean up these dodgy character combinations (ff, fi, fl). | |
Still crashes on initial message read but saves having to manually run the sql query eve time a message contains the character combinations */ | |
-- Working well for me so far -- | |
CREATE TRIGGER insert_Ff AFTER INSERT ON ZWAMESSAGE | |
BEGIN | |
UPDATE ZWAMESSAGE | |
SET ZTEXT = replace( ZTEXT, 'ff', 'f f') | |
WHERE ZWAMESSAGE.ZTEXT like '%ff%'; |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
require 'fileutils' | |
require 'mini_magick' | |
# Get all files of any type within the 4x folder, within any subdirectory | |
sources = Dir.glob(File.join('**', '4x', '**', '*.png')) | |
# Create our target directories, and the size factor for that directory | |
target_directories = [ | |
{ name: '2x', size_factor: 0.5 }, | |
{ name: '1x', size_factor: 0.25 } |
AddType application/vnd.ms-fontobject .eot | |
AddType font/ttf .ttf | |
AddType font/otf .otf | |
AddType application/x-font-woff .woff |
$("#myImg").load(function() | |
{ | |
alert('I loaded!'); | |
}).each(function() | |
{ | |
if(this.complete) | |
$(this).load(); | |
}); |
Declare an array that will hold the coordinates within the viewDidLoad function/method. Then fill the array with the coordinates. Then define a MKPolygon pointer that will use that array. Last, add the overlay to the map. |
# Add the "https://github.com/jwt/ruby-jwt" gem to your "Gemfile" | |
gem 'jwt' |
# | |
# Delete all objects matching a query | |
# | |
# @param query the query string | |
# @param params the optional query parameters | |
# | |
def delete_by_query(query, params = nil) | |
raise ArgumentError.new('query cannot be nil, use the `clear` method to wipe the entire index') if query.nil? && params.nil? | |
params ||= {} | |
params.delete(:hitsPerPage) |
I hereby claim:
To claim this, I am signing this object: