Use Appveyor to build pyinsane2.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
| [user] | |
| name = "Christian Fobel" | |
| email = "[email protected]" | |
| editor = vim | |
| [alias] | |
| lg = log --graph --pretty=format:'%Cred%h%Creset - [%an] %s %Cgreen(%cr)%Creset %d' --abbrev-commit --date=relative | |
| tree = log --graph --decorate --pretty=oneline --abbrev-commit | |
| [color] |
This file contains hidden or 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
| <style> | |
| body { margin: 1em 2em } | |
| h1 { text-decoration : underline } | |
| div { border: 10px solid; background: #ddd } | |
| @page { margin: 2.5cm; } | |
| header { | |
| position: fixed; | |
| top: -2.5cm; | |
| left: -2.5cm; |
This file contains hidden or 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
| #!/usr/bin/env zsh | |
| # Zsh bootstrap script | |
| # See: https://chatgpt.com/share/67206e10-24f8-800c-9b0e-cfc4998e4960 | |
| # Function to append or create file based on user confirmation | |
| update_file() { | |
| local file=$1 | |
| local content=$2 | |
| if [ -e "$file" ]; then |
OlderNewer