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
| com.android.databinding $ javap -classpath ./compilerCommon/jars/compilerCommon-2.3.0.jar 'android/databinding/parser/BindingExpressionParser$IdentifierContext' | |
| Compiled from "BindingExpressionParser.java" | |
| public class android.databinding.parser.BindingExpressionParser$IdentifierContext extends org.antlr.v4.runtime.ParserRuleContext { | |
| public org.antlr.v4.runtime.tree.TerminalNode Identifier(); | |
| public android.databinding.parser.BindingExpressionParser$IdentifierContext(org.antlr.v4.runtime.ParserRuleContext, int); | |
| public int getRuleIndex(); | |
| public void enterRule(org.antlr.v4.runtime.tree.ParseTreeListener); | |
| public void exitRule(org.antlr.v4.runtime.tree.ParseTreeListener); | |
| public <T> T accept(org.antlr.v4.runtime.tree.ParseTreeVisitor<? extends T>); | |
| } |
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
| imap <C-p> backwardLine | |
| imap <C-n> forwardLine | |
| imap <C-k> deleteToEnd | |
| site '*://discordapp.com/*' { | |
| unmap <C-k> | |
| iunmap <C-k> | |
| } |
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
| function splitFrames(frames, cast, dwdelay, fst, offsets, showwields, enabledw, enabledrops) { | |
| var out = []; | |
| var firsthits = []; | |
| for (var i = 0; i <= offsets; i++) { | |
| var newhits = splitFramesOffset(frames, cast, dwdelay, fst, i, firsthits, showwields, enabledw, enabledrops); | |
| if (firsthits.length == 0) | |
| firsthits = newhits[0]; | |
| out = out.concat(newhits); | |
| } | |
| return out; |
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
| $ find . -name '*.sha1' | xargs -n 1 xxd | |
| 00000000: da39 a3ee 5e6b 4b0d 3255 bfef 9560 1890 .9..^kK.2U...`.. | |
| 00000010: afd8 0709 .... | |
| 00000000: da39 a3ee 5e6b 4b0d 3255 bfef 9560 1890 .9..^kK.2U...`.. | |
| 00000010: afd8 0709 .... | |
| 00000000: da39 a3ee 5e6b 4b0d 3255 bfef 9560 1890 .9..^kK.2U...`.. | |
| 00000010: afd8 0709 .... | |
| 00000000: da39 a3ee 5e6b 4b0d 3255 bfef 9560 1890 .9..^kK.2U...`.. | |
| 00000010: afd8 0709 .... | |
| 00000000: 3366 3831 6265 3437 3531 6337 3366 6234 3f81be4751c73fb4 |
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
| extern crate winapi; | |
| extern crate user32; | |
| extern crate gdi32; | |
| extern crate comctl32; | |
| extern crate kernel32; | |
| use std::ptr::null_mut; | |
| use std::mem::size_of; | |
| use std::mem::zeroed; | |
| use std::os::raw::c_int; |
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
| object Foo { | |
| import Listeners.IotaExtensionMaterializers._ | |
| val view = new View(null) | |
| val text = new TextView(null) | |
| text.onClick { () } | |
| text.onClickEx { view => "" } | |
| text.onTextChange { () } | |
| text.onTouchEx { (a, b) => true } | |
| text.onTouch { true } |
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 iota.sample | |
| import android.os.Bundle | |
| import android.support.v7.app.AppCompatActivity | |
| import android.graphics.drawable.Animatable | |
| import android.widget._ | |
| import android.view.ViewGroup.LayoutParams._ | |
| import iota._ | |
| class MainActivity extends AppCompatActivity { self => |
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 com.hanhuy.android.keepshare | |
| import android.app.Activity | |
| import android.view.{LayoutInflater, View, ViewGroup} | |
| trait TypedViewHolder[T <: View] { | |
| val rootViewId: Int | |
| val rootView: T | |
| } |
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/env python | |
| import socket | |
| import sys | |
| from sys import argv | |
| from os import getcwd | |
| if len(argv) < 2: | |
| print "Usage: client <command>" | |
| sys.exit(-1) |
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 com.hanhuy.android.vision; | |
| import android.app.Activity; | |
| import android.graphics.*; | |
| import android.media.Image; | |
| import android.os.Bundle; | |
| import android.view.*; | |
| import android.widget.FrameLayout; | |
| import java.io.File; |