Skip to content

Instantly share code, notes, and snippets.

View aviaryan's full-sized avatar
:electron:
Working

Avi Aryan aviaryan

:electron:
Working
View GitHub Profile
@chitchcock
chitchcock / 20111011_SteveYeggeGooglePlatformRant.md
Created October 12, 2011 15:53
Stevey's Google Platforms Rant

Stevey's Google Platforms Rant

I was at Amazon for about six and a half years, and now I've been at Google for that long. One thing that struck me immediately about the two companies -- an impression that has been reinforced almost daily -- is that Amazon does everything wrong, and Google does everything right. Sure, it's a sweeping generalization, but a surprisingly accurate one. It's pretty crazy. There are probably a hundred or even two hundred different ways you can compare the two companies, and Google is superior in all but three of them, if I recall correctly. I actually did a spreadsheet at one point but Legal wouldn't let me show it to anyone, even though recruiting loved it.

I mean, just to give you a very brief taste: Amazon's recruiting process is fundamentally flawed by having teams hire for themselves, so their hiring bar is incredibly inconsistent across teams, despite various efforts they've made to level it out. And their operations are a mess; they don't real

@saetia
saetia / gist:1623487
Last active May 1, 2024 19:55
Clean Install – OS X 10.11 El Capitan

OS X Preferences


most of these require logout/restart to take effect

# Enable character repeat on keydown
defaults write -g ApplePressAndHoldEnabled -bool false

# Set a shorter Delay until key repeat
@jfcalvo
jfcalvo / JavaC.sublime-build
Created September 26, 2012 18:21
Sublime Text 2 Build System for Java (Compile and running)
{
"cmd": ["javac \"$file_name\" && java \"$file_base_name\""],
"shell": true,
"file_regex": "^(...*?):([0-9]*):?([0-9]*)",
"selector": "source.java"
}
@aviaryan
aviaryan / ScriptMem [Function].ahk
Last active May 28, 2019 16:34
Reduce memory consumption of your Autohotkey scripts. Works with all Ahk versions.
/*
ScriptMem - Reduce Memory consumption of your AHK Script
by Avi Aryan
Thanks --
HERESY - for EmptyMem function
just me - for GetScriptPID fucntion
Works with all AHK
@aviaryan
aviaryan / Extreme Screen Clipper.ahk
Last active May 28, 2019 16:37
Extreme Screen Clipper - Capture selected area screenshots and resize them on the fly.Save screenshots as jpg, png, tiff .
/*
ProgramName = Extreme Clipper
ProgramVersion = 1
Author = Avi Aryan
Special Thanks = Sean
****************************************************
.......................
INSTRUCTIONS
***************************************************
USE ONLY WITH AHK_L ANSI
@aviaryan
aviaryan / Sublime Text Autocomplete Adder.ahk
Last active December 15, 2015 21:19
Sublime-Text Autocompletions Adder - Add auto-completions (auto-completes) to Sublime Text fastly. Comes with Duplicate-checker and backup facility.
; INSTRUCTIONS ##########################################
;Sublime-Text Autocomplete Adder
;By Avi Aryan
;
;Place in it in directory of Sublime-Text.exe
;Tested with Sublime-Text 2
;Absolutely No guarranty
;Make sure to create a backup before going
;Dont worry about Duplicates, they will not be added again.
;########################################################
@aviaryan
aviaryan / Mouse De-accelerator.ahk
Last active December 15, 2015 21:29
Decrease speed of Mouse Cursor via Autohotkey script
;By Avi Aryan
;Set that 4 [line 8] to lower if you want finer results.
#Persistent
CoordMode,Mouse
SetBatchLines, -1
SetMouseDelay, -1
SetTimer,mouseslow,4
mouseslow:
anonymous
anonymous / Delimiter Replacement Script.ahk
Created April 8, 2013 06:45
Replace variables denoted by delimiters in Notepad
/*
Program Author = Avi Aryan
USAGE::
Run the Script
Open your text file with all variables in NOTEPAD..By Notepad , i mean Notepad
Hit Ctrl+Alt+F to start.
When First Match is found,Change the text to required text and then hit F6 . Spaces will be automatic.
...
@aviaryan
aviaryan / Delimeter Replacement.ahk
Created April 8, 2013 06:47
Replace variables denoted by delimiters in Notepad
/*
Program Author = Avi Aryan
USAGE::
Run the Script
Open your text file with all variables in NOTEPAD..By Notepad , i mean Notepad
Hit Ctrl+Alt+F to start.
When First Match is found,Change the text to required text and then hit F6 . Spaces will be automatic.
...
@aviaryan
aviaryan / Github Debug Error Fix.txt
Last active April 13, 2018 17:06
Debug Error - GitHub for Windows, --> debug the state of this repo - Easy Fix
By Avi Aryan
This Text explains how to get around with "debug the state of this repo" Error.
This text does not uses Cmd and Powershell, so it can be followed by a basic user.
If you face the above Error in GitHub for Windows, then ------
* First Go to your local repo i.e. the repo's local folder.
* Show Hidden Files via the Folder Options.
* You will see a ".git" named folder in your local repo as soon as hidden files are set to be seen.