Skip to content

Instantly share code, notes, and snippets.

View ylogx's full-sized avatar
🤘
<div><ståtús/></div>

Shubham Chaudhary ylogx

🤘
<div><ståtús/></div>
View GitHub Profile
@ylogx
ylogx / zomato_bookmarklet.js
Last active September 26, 2018 06:24
A bookmarklet to find various zomato resource properties. To use, copy this code and paste it in URL field of a new bookmark.
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];

Keybase proof

I hereby claim:

  • I am shubhamchaudhary on github.
  • I am chaudhary (https://keybase.io/chaudhary) on keybase.
  • I have a public key whose fingerprint is FBD2 1E51 18DF 1B4C 2F18 82B1 71B6 881F FAB5 2DCA

To claim this, I am signing this object:

@ylogx
ylogx / xgboost_incremental.ipynb
Last active February 16, 2024 14:25
XGBoost Incremental Learning
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

Keybase proof

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:

@ylogx
ylogx / perf_bytes_io.py
Created November 13, 2018 09:55
Performance Analysis of Bytes IO vs File IO
"""
Usage:
>>> ipython
>>> %load perf_bytes_io.py
>>> <ENTER>
"""
import logging
import tempfile
import cv2