Skip to content

Instantly share code, notes, and snippets.

View Karthikkumarjain's full-sized avatar

Karthik Kumar B Karthikkumarjain

View GitHub Profile
@Karthikkumarjain
Karthikkumarjain / gist:7ba302389f9fff2b6f7c1215ebe1d92a
Created October 3, 2023 09:39
Creation of new Playwright project
# New Project Setup and Helpers
Steps to create a fresh Project :
Create a folder in your local.
Open cmd --> type "code ." and press enter .
Visual studio code application will open(If it is * installed on the system)
Add on: Plugin -->playwright(by micorsoft)-->download
CTRL+SHIFT+P--->COMMAND PANEL
install playright
select browsers and OK
@Karthikkumarjain
Karthikkumarjain / Brewfile
Created September 14, 2023 04:18
~/Brewfile
# file location: ~/Brewfile
# This file is used along with the `brew bundle` command to ensure that required packages and apps are installed.
# Also can be used to ensure that any package/apps that were installed as experimentation are uninstalled from the system.
# If you are starting such a file on a machine where you have already installed some apps using brew, then use `brew bundle dump` to create this file and avoid starting from scratch
# For a more detailed explanation of the philosophy/reasoning behind this file, please see https://openfolder.sh/macos-migrations-with-brewfile
# List all casks that are outdated (and which have version marked as 'latest')
# alias bcg='brew outdated --greedy'
@Karthikkumarjain
Karthikkumarjain / fresh-install-of-osx.sh
Last active September 14, 2023 04:26 — forked from vraravam/fresh-install-of-osx.sh
Steps to get "up and running" with new Mac OSX
#!/usr/bin/env bash
# This script can be used to setup a macos machine based on Vijay's configurations. As of now, this script is idempotent and will restore your local setup to the same state if run multiple times.
# If you have the same files already present, it will prompt you whether to override or not
# file location: <anywhere> (just need to invoke it from that location)
# You can run this script using this command:
# curl -L https://gist.github.com/Karthikkumarjain/ed463a8b3b223a42d3b9570372ba4026/raw -o fresh-install.sh; chmod +x ./fresh-install.sh; ./fresh-install.sh