From here.
Run git config --global --edit and add the following under the [alias] section.
squash = "!f(){ git reset --soft HEAD~${1} && git commit --edit -m\"$(git log --format=%B --reverse HEAD..HEAD@{1})\"; };f"
| { | |
| "enable_highlight": true, | |
| "github_mode": "gfm", | |
| "github_inject_header_ids": true, | |
| "enable_autoreload": true, | |
| } |
| /** | |
| * This parses multipart/form-data when passed into a Lambda function through | |
| * API Gateway using the following Integration Request Mapping Template: | |
| #set($allParams = $input.params()) | |
| { | |
| "body" : $input.json('$'), | |
| "params" : { | |
| #foreach($type in $allParams.keySet()) | |
| #set($params = $allParams.get($type)) |
| #!/usr/bin/env python | |
| # | |
| # Hi There! | |
| # You may be wondering what this giant blob of binary data here is, you might | |
| # even be worried that we're up to something nefarious (good for you for being | |
| # paranoid!). This is a base85 encoding of a zip file, this zip file contains | |
| # an entire copy of pip. | |
| # | |
| # Pip is a thing that installs packages, pip itself is a package that someone | |
| # might want to install, especially if they're looking to run this get-pip.py |
From here.
Run git config --global --edit and add the following under the [alias] section.
squash = "!f(){ git reset --soft HEAD~${1} && git commit --edit -m\"$(git log --format=%B --reverse HEAD..HEAD@{1})\"; };f"
| mkdir em && robocopy em node_modules /MIR | |
| rmdir em && rmdir node_modules |
| /** | |
| * Merge two JS Objects | |
| * | |
| * returns a new Object with values of | |
| * first and second added to each other. | |
| * | |
| * Note: | |
| * Object items should only have integers for values | |
| * ..otherwise, boom! | |
| */ |
This is basically the first thing I do after installing git.
From here by Filipe Kiss.
git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"
| <?php | |
| /** | |
| * Basic mailer. | |
| * @author Willem Labu | |
| * | |
| * | |
| */ | |
| // Edit this: |
| <snippet> | |
| <content><![CDATA[ | |
| echo "<pre>"; | |
| print_r (\$${1:variable}); | |
| echo "</pre>"; | |
| ]]></content> | |
| <!-- Optional: Set a tabTrigger to define how to trigger the snippet --> | |
| <tabTrigger>echopre</tabTrigger> | |
| <!-- Optional: Set a scope to limit where the snippet will trigger --> | |
| <scope>source.php</scope> |
| eyJzdiI6eyJjIjoiMjlubWZlZzdpMmIiLCJjcyI6IjI4ZGswZWMzbGVhIiwidyI6IjczazBlNDkiLCJjbCI6ImMxOjF8YzI6MXxjMzoxfGM0OjF8YzU6MXxjNjphfGM3OjE5fGM4OmN8Yzk6Y3xjMTA6bHxjMTE6a3xjMTI6YXxjMTM6N3xjMTQ6M3xjMTU6MXxjMTY6MXxjMTc6MCIsInNsIjoiczE6MXxzMjoxaGh8czM6MXxzNDo4OHxzNTo4OHxzNjo0NHxzNzprfHM4OmF8czk6YXxzMTA6NDR8czExOmF8czEyOmZ8czEzOjd8czE0OjJ8czE1OjF8czE2OjF8czE3OjAiLCJibiI6ImIxOjF8YjI6YXxiMzoyY3xiNDoxZ3xiNTprfGI2OmN8Yjc6YXxiODo3fGI5OjJ8YjEwOjJ8YjExOjF8YjEyOjF8YjEzOjIiLCJ1IjoidTAxfHUwMnx1MDN8dTA0fHUwNXx1MDZ8dTA3fHUwOHx1MDl8dTEwfHUxMXx1MTJ8dTEzfHUxNHx1MTV8dTE2fHUxN3x1MTh8dTE5fHUyMHx1MjF8dTIyfHUyM3x1MjR8dTI1fHUyNnx1Mjd8dTI4fHUyOXx1MzB8dTMxfHUzMnx1MzN8dTM0fHUzNXx1MzZ8dTM3fHUzOHx1Mzl8dTQwfHU0MXx1NDJ8dTQzfHU0NHx1NDV8dTQ2fHU0N3x1NDcuMXx1NDh8dTQ5fHU1MHx1NTAuMXx1NTAuMnx1NTF8dTUyfHU1M3x1NTR8dTU1IiwicyI6InNlbGxlcl9ycHM6YzAyMWE3aXxjbGlja2VyX3JwczpjNjA2OW5mfGJhbmtfcnBzOjEzZTc1YTZoN2h8Y2hlYXRlZF93aWRnZXRzOjB8Y2hlYXRlZF9jYXNoOjB8aGFuZF9tYWRlX3dpZGdldHM6ZGw0YW4zbG1kOXxtYWRlX3dpZGdldHM6MTBmaWc1YWJtZzkuM2l8c29sZF93aWRnZXRzOjEwbWU3YWNuZ21kLjI2 |