I hereby claim:
- I am ylogx on github.
- I am chaudhary (https://keybase.io/chaudhary) on keybase.
- I have a public key ASD1Ch1-5EWG9Sr7RwFNaIGhe-WSVzAlJLv_FNHByL0c2Ao
To claim this, I am signing this object:
""" | |
Usage: | |
>>> ipython | |
>>> %load perf_bytes_io.py | |
>>> <ENTER> | |
""" | |
import logging | |
import tempfile | |
import cv2 |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
javascript: void | |
function($) { | |
var loadBookmarklet = function($) { | |
(function() { | |
if ("www.zomato.com" == document.domain) { | |
var msg = ""; | |
try { | |
splits = $('meta[property="al:android:url"]').attr("content").split("/"); | |
const id = splits[3], | |
page_type = splits[2]; |
import numpy as np | |
import pickle | |
def load_and_cache(filename): | |
output = None | |
cache_dir = '/tmp/my_project_cache/' | |
os.makedirs(cache_dir, mode=0o744, exist_ok=True) | |
cache = cache_dir + filename + '.pkl' | |
if not os.path.exists(cache): | |
output = np.genfromtxt(filename, dtype=float, delimiter=',') # TODO: Fill your logic |
package com.peplet.hulkdownloader.app.background.utils; | |
import android.content.Context; | |
import android.content.SharedPreferences; | |
import android.provider.Settings.Secure; | |
import android.support.annotation.NonNull; | |
import android.telephony.TelephonyManager; | |
import java.io.UnsupportedEncodingException; | |
import java.util.UUID; |
tasks.withType(Test) { | |
testLogging { | |
// set options for log level LIFECYCLE | |
events "passed", "skipped", "failed", "standardOut" | |
showExceptions true | |
exceptionFormat "short" | |
showCauses true | |
showStackTraces true |
#!/usr/bin/env bash | |
PACKAGE=com.example.demo | |
ACTIVITY=.MainActivity | |
APK_LOCATION=app/build/outputs/apk/app-debug.apk | |
echo "Package: $PACKAGE" | |
echo "Building the project with tasks: $TASKS" | |
./gradlew $TASKS |
######################################################################### | |
# | |
# Makefile - This Makefile compiles all c files in given folder | |
# Copyright (c) 2014-2015 Shubham Chaudhary <[email protected]> | |
# | |
######################################################################### | |
#SPECIFIED_SRC_FILE = $(foreach d,$(SPECIFIED_SRC_DIRS),$(wildcard $(addprefix $(d)/*,*.c))) | |
#CC = gcc |