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 org.openjdk.jmc.agent.util; | |
import java.util.ArrayList; | |
import java.util.Arrays; | |
import java.util.List; | |
// polyfill for pre-11 nest-based access control | |
public class NestBasedAccess { | |
private static int bar = 42; | |
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
Classfile /home/kxu/Documents/github.com/tabjy/java-snippets/target/classes/com/tabjy/snippets/asm/path_syntax_evaluation/Pojo.class | |
Last modified Nov 20, 2019; size 800 bytes | |
MD5 checksum ce2027f5c28d4f1634e8c67ef84efd97 | |
Compiled from "Pojo.java" | |
public class com.tabjy.snippets.asm.path_syntax_evaluation.Pojo | |
minor version: 0 | |
major version: 55 | |
flags: (0x0021) ACC_PUBLIC, ACC_SUPER | |
this_class: #9 // com/tabjy/snippets/asm/path_syntax_evaluation/Pojo | |
super_class: #10 // java/lang/Object |
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 the_package.MyObject; | |
import the_package.OtherObject; | |
import the_package.SubMyObject; | |
import java.lang.reflect.Field; | |
import java.lang.reflect.InvocationTargetException; | |
import java.lang.reflect.Method; | |
import java.lang.reflect.Modifier; | |
import java.util.Objects; |
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
{"code":200,"uwp":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
from pyspark import SparkConf, SparkContext | |
import sys | |
assert sys.version_info >= (3, 5) # make sure we have Python 3.5+ | |
# add more functions as necessary | |
def toTupples(line): | |
frags = line.split(" ") | |
return (frags[0], (frags[1], frags[2], frags[3], frags[4])) |
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
// exercise-loops-and-functions.go -------------------------------- | |
package main | |
import ( | |
"fmt" | |
"math" | |
) | |
func newton(x float64) float64 { | |
// base case |
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
/** modified by tabjy | |
* accroding to https://github.com/sultanxda/android_kernel_oneplus_msm8996/commit/abc05b16bbd33521c2fffaf491c5657a94bfcfc5 | |
* and https://github.com/sultanxda/android_kernel_oneplus_msm8996/commit/3a450b89a44c5e2eb357ff797298c6201c78e3b3 | |
* to bypass SafetyNet | |
*/ | |
#include <linux/fs.h> | |
#include <linux/init.h> | |
#include <linux/proc_fs.h> | |
#include <linux/seq_file.h> | |
#include <asm/setup.h> |
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
conky.config = { | |
alignment = 'top_right', | |
background = false, | |
border_width = 0, | |
draw_graph_borders = false, | |
color0 = '#2A558C', | |
color1 = '#6698D9', | |
color2 = '#2E4159', | |
color3 = '#B3CFF2', |
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 getPeerConnection() { | |
var RTCPeerConnection = window.RTCPeerConnection || | |
window.mozRTCPeerConnection || | |
window.webkitRTCPeerConnection; | |
//bypass naive webrtc blocking | |
if (!RTCPeerConnection) { | |
var iframe = document.createElement('iframe'); | |
iframe.style.display = 'none'; | |
document.body.appendChild(iframe); |
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 | |
# Script for installing Fish Shell on systems without root access. | |
# Fish Shell will be installed in $HOME/local/bin. | |
# It's assumed that wget and a C/C++ compiler are installed. | |
# exit on error | |
set -e | |
FHISH_SHELL_VERSION=2.3.1 |