View Testing.html
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
<html> | |
<body> | |
<a href="clarityfirst://order/66/documents">Order 66</a> | |
</body> | |
</html> |
View ExampleUseCase.kt
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
// You could call this somewhere in your ViewModel | |
insertUserWithAddressUseCase.execute(this, user, address) | |
// ......... | |
// The Interface of the Use Case. | |
interface InsertUserWithAddressUseCase { | |
interface Callback { | |
fun onUserSuccessfullyInserted(insertedUser: User) | |
fun onErrorWhileTryingToInsertUser(e: Throwable) |
View prevent_click.js
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
$('head').append('<style type="text/css">crawler_selected{ background:#FFFF00; }</style>'); | |
$(document).click(function(event){ | |
event.preventDefault() | |
$(event).addClass("crawler_selected") | |
console.log(event.target) | |
}); |
View get_all_streets_from_oms.py
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
# pip install requests | |
# pip install bs4 | |
# pip install overpass | |
# pip install html5lib | |
from pprint import pprint | |
import overpass | |
import urllib.parse | |
import requests | |
from bs4 import BeautifulSoup |
View flattenArrays.kt
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
// Feel free to run it here try.kotlinlang.org | |
fun main(args: Array<String>) { | |
val testCollection = arrayOf( | |
1, 2, 3, | |
arrayOf(4, 5, emptyArray<Int>()), null, | |
arrayOf(emptyArray<Int>(), emptyArray<Int>()), | |
arrayOf(6) | |
) |
View index.html
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
<html> | |
<head> | |
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script> | |
<script src="https://cdn.jsdelivr.net/gh/ethereum/web3.js/dist/web3.min.js"></script> | |
<script> | |
$( document ).ready(function() { | |
var Web3 = require('web3'); | |
var address = "0xcbbfbafedb0eb83016d2a96a4e80d30b20fa3e30" | |
View testingdeeplinks.html
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
<html> | |
<body> | |
<ul> | |
<li><a href="siplay://messages/team/SS-624296">SI PLAY messages/team/SS-624296</a></li> | |
<li><a href="siplay://team/home/SS-624296">SI PLAY team/home/SS-624296</a></li> | |
<li><a href="siplay://team/schedule/SS-624296">SI PLAY team/schedule/SS-624296</a></li> | |
<li><a href="siplay://team/roster/SS-624296">SI PLAY team/roster/SS-624296</a></li> | |
<li><a href="siplay://team/standings/SS-624296">SI PLAY team/standings/SS-624296</a></li> | |
<li><a href="siplay://team/photos/SS-624296">SI PLAY team/photos/SS-624296</a></li> | |
<li><a href="siplay://ratetheapp">SI PLAY ratetheapp</a></li> |
View ISO8601TimeAdapter.java
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
import com.google.gson.JsonDeserializationContext; | |
import com.google.gson.JsonDeserializer; | |
import com.google.gson.JsonElement; | |
import com.google.gson.JsonParseException; | |
import com.google.gson.JsonPrimitive; | |
import com.google.gson.JsonSerializationContext; | |
import com.google.gson.JsonSerializer; | |
import com.google.gson.JsonSyntaxException; | |
import net.misove.mypvrcommon.serialization.ISO8601DateParser; |
View ISO8601DateParser.java
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
package com.siplay.android_siplay.helper; | |
/* | |
* Copyright 1999,2004 The Apache Software Foundation. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 |
View ISO8601DateAdapter.java
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
public class ISO8601DateAdapter implements JsonSerializer<Date>, JsonDeserializer<Date> { | |
public ISO8601DateAdapter() { | |
} | |
@Override | |
public Date deserialize(JsonElement json, Type type, JsonDeserializationContext jsonDeserializationContext) throws JsonParseException { | |
if (!(json instanceof JsonPrimitive)) { | |
throw new JsonParseException("The date should be a string value"); | |
} | |
Date date = deserializeToDate(json); |
NewerOlder