This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[alias] | |
aliases = config --get-regexp alias | |
br = branch | |
### commit | |
caam = commit -a --amend --no-edit ### commit tracked files squashing onto the last commit | |
caamn = commit --no-verify -a --amend --no-edit ### --no-verify ignores pre-commit hook | |
cam = commit -am ### add tracked files and commit with message |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Create a new Go project with a main.go file and a Go module | |
# Option -c, --cobra: Initialize a Cobra CLI project in the module | |
while getopts ":c" opt; do | |
case $opt in | |
c) | |
c_flag=true | |
;; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# problem: | |
# you installed a new version of Xcode, and now the previously installed extensions are | |
# not visible any more in menus or accessible via custom keyboard shortcuts | |
# solution: | |
# https://nshipster.com/xcode-source-extensions/ | |
# ... when multiple copies of Xcode are on the same machine, extensions can stop working completely. In this case, Apple Developer Relations suggests re-registering your main copy of Xcode with Launch Services. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Create a new Go project with a main.go file and a Go module | |
# Option -c, --cobra: Initialize a Cobra CLI project in the module | |
while getopts ":c" opt; do | |
case $opt in | |
c) | |
c_flag=true | |
;; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# originally from | |
# https://gist.github.com/maciekish/66b6deaa7bc979d0a16c50784e16d697 | |
# rudifa: added TARGET logic and kill CoreSimulatorService | |
killall Xcode | |
pkill -int com.apple.CoreSimulator.CoreSimulatorService | |
xcrun -k | |
xcodebuild -alltargets clean | |
rm -rf "$(getconf DARWIN_USER_CACHE_DIR)/org.llvm.clang/ModuleCache" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 1. Main prepares a Menu that will let the user | |
// increment/decrement a counter, whose valu will be displayed | |
// in the rendered page | |
// On user click, the callback will send a message | |
// on the channel (update-counter) with the value to add | |
// 2. Preload defines the function handleCounter | |
// that will let the renderer to specify the callback | |
// to be called when a message on the channel (pdate-counter) | |
// arrives from the main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 1. Renderer defines a listener that will, on the user click, | |
// call asynchronously window.electronAPI.openFile(), | |
// which is defined by preload. | |
// Function openFile returns the data | |
// (the file path selected by the user) that the handler in main | |
// obtained from the OS dialog. | |
// The listener updates the html text with this data. | |
// 2. Preload defines function openFile that calls invoke(<channel>) | |
// which will be handled by the main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 1. the renderer attaches a listener to the button defined in the html file | |
// . on user click, the listener calls the function setTitle passing on the value from the input element | |
// 2. the preload defines the function that will be called by setTitle and pass on the title sending the event set-title | |
// 3. the main attaches a listener for the event set-title | |
// that will get the title an put it into the browser window title |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 1. in preload, the contextBridge exposes a copy of a process variable for info | |
// 2. the renderer inserts the info into the view |
NewerOlder