Skip to content

Instantly share code, notes, and snippets.

View amitbisht511's full-sized avatar

Amit Bisht amitbisht511

View GitHub Profile
@amitbisht511
amitbisht511 / setup.py
Last active November 20, 2020 14:06
Python Script to write and move cursor around open some tab in browser and write some files
import pyautogui
import time
import webbrowser
import random
import os
import urllib.request as urllib
import sys
# this determine how much time it will take to end this script
links = [
@amitbisht511
amitbisht511 / gist:b22a8fd49f177fc2efb95a085c322c2d
Last active April 3, 2019 12:46
My PHP CS fixer configuration
<?php
$finder = Symfony\Component\Finder\Finder::create()
->notPath('vendor')
->notPath('bootstrap')
->notPath('storage')
->name('*.php')
->notName('*.blade.php');
return PhpCsFixer\Config::create()