Skip to content

Instantly share code, notes, and snippets.

View varun1729's full-sized avatar
🚀
Working

Varun Narayanan varun1729

🚀
Working
  • Los Angeles, California
View GitHub Profile
@varun1729
varun1729 / hackathon_ideas.txt
Last active June 29, 2018 10:40
Hackathon Ideas
Car Play: An app that allows uses to add songs to a playlist using bluetooth or other NFC based channels.
Code Transfer: A website that teaches people an new language really quickly by only showcasing the differences between their strongest language and the new language they wish to learn.
@tegansnyder
tegansnyder / Preventing-Puppeteer-Detection.md
Created February 23, 2018 02:41
Preventing Puppeteer Detection

I’m looking for any tips or tricks for making chrome headless mode less detectable. Here is what I’ve done so far:

Set my args as follows:

const run = (async () => {

    const args = [
        '--no-sandbox',
        '--disable-setuid-sandbox',
        '--disable-infobars',
@arxdsilva
arxdsilva / tokenGeneratorExample.go
Last active May 22, 2024 03:06
Golang - How to generate a random Token
package main
// https://play.golang.org/p/5VsRVVtyo-J
import (
"crypto/rand"
"fmt"
)
func tokenGenerator() string {