Skip to content

Instantly share code, notes, and snippets.

View Joaquin6's full-sized avatar
🏠
Working from home

Joaquin Briceno Joaquin6

🏠
Working from home
  • Overland Park, KS
View GitHub Profile
@Joaquin6
Joaquin6 / resume.json
Last active September 28, 2020 14:50
Joaquin Briceno resume-cli generation
{
"basics": {
"name": "Joaquin Briceno",
"label": "Sr. Software Engineer / Full Stack Developer",
"picture": "https://drive.google.com/file/d/0B0oNJDwY35xcWVBJTlZPR2JSVHc/view?usp=sharing",
"email": "joaquinbriceno1@gmail.com",
"phone": "(818) 746-0550",
"website": "http://joaquinbriceno.com",
"summary": "Software Engineer with a proven track record of creative visions, quick delivery, and demonstrated ability to inspire/mentor teams to implement latest application technology for future standards.",
"location": {
@Joaquin6
Joaquin6 / Logger.ps1
Last active August 21, 2020 07:54
Duplicates the powershell profile from Documents/PowerShell to Documents/WindowsPowerShell if it does not exist.
<#
.NOTES
===========================================================================
Created on: 8/20/2020
Created by: Joaquin6
Organization:
Filename: Logger.ps1
URL: https://gist.github.com/Joaquin6/a44e10ebf7ee3391a924acf721f340f6#file-logger-ps1
===========================================================================
.DESCRIPTION
@Joaquin6
Joaquin6 / README.md
Last active August 6, 2020 04:39 — forked from chrisdhanaraj/osx.ahk
Autohotkey script to bring OSX keybinds to Windows

Mapping your macOS keybinds to Windows

Maybe Brad Frost’s horror story about the new MacBook Pro worried you or maybe #davegoeswindows convinced you — but, long story short, you bit the bullet and went Windows. Hopefully, you found Owen William’s great post to setting up your perfect Windows developer environment, but there’s just… just one thing that’s bothering you.

Who in the world wants to use their pinky finger to use their main modifier key? The Control button is so far away! The Command button placement was perfect! Not to worry, with a combination of Sharp Keys and AutoHotkey you can simulate the same keyboard environment as you’re used to.

TL;DR

  1. Use Sharp Keys to remap Ctrl and Alt
  2. Use AutoHotkey + [this starter script](https://gist.github.com/Joaquin6/3d3f37586839
@Joaquin6
Joaquin6 / vscode-user-settings.json
Last active July 26, 2019 09:07
Visual Studio Code Settings Sync Gist
{
"docker-compose.showExplorer": true,
"docker-explorer.containerLogsOptions": "--tail 50 -f",
"docker-explorer.showDockerContainers": true,
"docker-explorer.showDockerImages": true,
"docker-explorer.showAzureRegistries": false,
"docker-explorer.showDockerHubTreeView": false,
"docker-explorer.showSuggestedDockerImages": false,
"markdownlint.run": "onSave",
"npm.registry": "https://registry.npmjs.org",
@ediblecode
ediblecode / package-json-build-number.ps1
Created August 23, 2017 07:22
Powershell script to parse a package.json version and use as the build number in TeamCity
$version = (Get-Content package.json) -join "`n" | ConvertFrom-Json | Select -ExpandProperty "version"
$buildCounter = "%build.counter%"
$buildNumber = "$version.$buildCounter"
Write-Host "##teamcity[buildNumber '$buildNumber']"
@GianlucaGuarini
GianlucaGuarini / post-merge
Last active August 22, 2023 20:54 — forked from sindresorhus/post-merge
Git hook that gets triggered after any 'git pull' whenever one of the files specified has changed. Useful to update any web application dependency using bower npm or composer
#/usr/bin/env bash
# MIT © Sindre Sorhus - sindresorhus.com
# forked by Gianluca Guarini
changed_files="$(git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD)"
check_run() {
echo "$changed_files" | grep -E --quiet "$1" && eval "$2"
}
@sindresorhus
sindresorhus / post-merge
Last active July 25, 2024 06:53
git hook to run a command after `git pull` if a specified file was changed.In this example it's used to run `npm install` if package.json changed and `bower install` if `bower.json` changed.Run `chmod +x post-merge` to make it executable then put it into `.git/hooks/`.
#!/usr/bin/env bash
# MIT © Sindre Sorhus - sindresorhus.com
# git hook to run a command after `git pull` if a specified file was changed
# Run `chmod +x post-merge` to make it executable then put it into `.git/hooks/`.
changed_files="$(git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD)"
check_run() {
echo "$changed_files" | grep --quiet "$1" && eval "$2"