Skip to content

Instantly share code, notes, and snippets.

View shakeel's full-sized avatar

Shakeel Mahate shakeel

View GitHub Profile

Keybase proof

I hereby claim:

To claim this, I am signing this object:

@shakeel
shakeel / windows-10-setup.md
Last active November 12, 2021 10:21
How I setup Windows 10

Setup Windows 10

Use scoop to install all of the UNIX command line tools and most of my needed software tools.

powershell
Set-ExecutionPolicy RemoteSigned -scope CurrentUser
iex (new-object net.webclient).downloadstring('https://get.scoop.sh')
scoop bucket add versions
scoop install curl
@shakeel
shakeel / homebrew.md
Created August 13, 2018 21:48 — forked from indiesquidge/homebrew.md
How to and Best of Homebrew

Homebrew

How To

Homebrew is a package management system for OS X. You can read more about it here, or simply run

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

to install it.

@shakeel
shakeel / BUILD.zlib
Created November 1, 2017 18:59
Bazel BUILD file for zlib
# Bazel build file for zlib compression library
package(default_visibility = ["//visibility:public"])
cc_library(
name = "zlib",
srcs = [
"adler32.c",
"compress.c",
"crc32.c",