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
class CreditCardNumberFormattingTextWatcher : TextWatcher { | |
private var current = "" | |
override fun onTextChanged(s: CharSequence, start: Int, before: Int, count: Int) { | |
} | |
override fun beforeTextChanged(s: CharSequence, start: Int, count: Int, after: Int) { | |
} | |
override fun afterTextChanged(s: Editable) { |
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
var redirector = new Object(); | |
redirector.openLink = function(url, playStoreId, appStoreId) { | |
var isAndroid = navigator.userAgent.match(/Android/), | |
isIos = navigator.userAgent.match(/iPhone|iPad|iPod/), | |
isFirefox = navigator.userAgent.match(/Firefox/), | |
isOpera = navigator.userAgent.match(/OPR/); | |
if (isAndroid) { | |
if (isFirefox) { | |
setTimeout('market://details?id=' + playStoreId); | |
window.location.replace(url); |
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 java.lang.reflect.Field; | |
import java.util.Random; | |
/** | |
* Unicorns may be betray'd with trees. | |
*/ | |
public class Unicorn { | |
private static boolean patted = false; | |
static { |
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
package matrix; | |
import java.util.Arrays; | |
public class ArrayMatrix<T> implements Matrix<T> { | |
private Object[][] array; | |
public ArrayMatrix(int height, int width) { | |
array = new Object[height][width]; | |
} |
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
<html> | |
<head> | |
<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.11/themes/base/jquery-ui.css" /> | |
<style type="text/css"> | |
/* css for timepicker */ | |
.ui-timepicker-div .ui-widget-header{ margin-bottom: 8px; } | |
.ui-timepicker-div dl{ text-align: left; } | |
.ui-timepicker-div dl dt{ height: 25px; } | |
.ui-timepicker-div dl dd{ margin: -25px 0 10px 65px; } | |
.ui-timepicker-div td { font-size: 90%; } |
NewerOlder