Skip to content

Instantly share code, notes, and snippets.

View rakeshtembhurne's full-sized avatar
😉
Writing a Book

Rakesh Tembhurne rakeshtembhurne

😉
Writing a Book
View GitHub Profile
@rakeshtembhurne
rakeshtembhurne / package.json
Created June 16, 2023 03:34
StandardJS: Adding standardjs settings into nodejs package.json
"standard.options": {
"ignore": [
"node_modules/**"
],
"javascript.format.enable": false,
"javascript.validate.enable": false,
"standard.enable": true,
"standard.autoFixOnSave": true,
"standard.validate": [
"javascript",
"use strict";
const puppeteer = require("puppeteer");
const _ = require('lodash');
const log = data => console.log(data);
async function autoScroll(page){
await page.evaluate(async () => {
@rakeshtembhurne
rakeshtembhurne / data.json
Created October 29, 2020 03:22
Output Data for testing
[
{
"date": "2020-09-30T09:15:00.000Z",
"open": 21482.3,
"high": 21514.75,
"low": 21405.05,
"close": 21468.9,
"volume": 533150,
"time": "Sep 30, 2020 2:45 PM",
"hma": 21360.62454978355,
@rakeshtembhurne
rakeshtembhurne / dailyOi.js
Created February 24, 2020 13:50
Extracts daily OI information of NIFTY and BANKNIFTY
const csv = require("csvtojson");
const _ = require('lodash');
const logD = data => {
console.log(data);
process.exit();
}
const args = process.argv.slice(2);
if (args.length !== 1 || !args[0]) {
{
"explore_tabs": [
{
"tab_id": "home_tab",
"tab_name": "homes",
"pagination_metadata": {
"has_next_page": true,
"items_offset": 18,
"section_offset": 5,
"search_session_id": "c20a7c71-74be-42e9-843f-927a4dafd9da",
function isChatMessage(message) {
if (message.__x_isSentByMe) {
return false;
}
if (message.__x_isNotification) {
return false;
}
if (!message.__x_isUserCreatedType) {
return false;
}
@rakeshtembhurne
rakeshtembhurne / format_usb_or_sdcard_on_mac.sh
Created June 24, 2018 07:18
Formatting USB or SD Card on Mac
diskutil list
diskutil unmountDisk /dev/disk3
diskutil eraseDisk FAT32 NAME_OF_DISK MBRFormat /dev/disk3
sudo dd if=my_img_or_iso_file.img of=/dev/disk3 bs=1m
diskutil unmountDisk /dev/disk3
diskutil eject /dev/disk3
@rakeshtembhurne
rakeshtembhurne / grub_efi_loader.sh
Last active October 19, 2023 19:21
Reinstall the GRUB boot loader to your Ubuntu installation in EFI mode this way (From live CD)
sudo mount /dev/sdXXX /mnt
sudo mount /dev/sdXX /mnt/boot/efi
for i in /dev /dev/pts /proc /sys /run; do sudo mount -B $i /mnt$i; done
sudo chroot /mnt
grub-install /dev/sdX
update-grub
# Note : sdX = disk | sdXX = efi partition | sdXXX = system partition
# 'Fixed' by replacing /boot/efi/EFI/Microsoft/Boot/bootmgfw.efi with /boot/efi/EFI/arch/grubx64.efi
@rakeshtembhurne
rakeshtembhurne / RemovePWA.js
Created May 18, 2018 06:29
PWA: Removes Cached Progressive web app from broser
navigator.serviceWorker.getRegistrations().then(function(registrations) {
for(let registration of registrations) {
registration.unregister()
} })