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
diff --git a/zpm.t b/zpm.t | |
index 1448bd3..095e33b 100644 | |
--- a/zpm.t | |
+++ b/zpm.t | |
@@ -115,15 +115,15 @@ Plugin directory is properly unlinked after remove | |
$ zpm "zsh-users/zsh-syntax-highlighting" > /dev/null | |
$ zpm remove "zsh-users/zsh-syntax-highlighting" > /dev/null | |
$ ls ~/.zpm/plugins/zsh-users/zsh-syntax-highlighting | |
- ls: cannot access '.*/.zpm/plugins/zsh-users/zsh-syntax-highlighting': No such file or directory (re) | |
- [2] |
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
language: c | |
compiler: | |
- clang | |
- gcc | |
before_script: | |
- sudo apt-get install zsh | |
install: |
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
curl https://api.github.com/search/repositories\?q\=antigen bundle+in:readme | json -a items| json -a id name full_name html_url |
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 bash | |
set -e | |
[ -z "$DEBUG" ] || set -x; | |
usage() { | |
echo "$0 <repo> <tag> [<release name>] [-- <asset>...]" >&2; | |
} | |
if [ "$1" = "-h" -o "$1" = "--help" ]; then |
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
Notes on making a signed software release | |
========================================= | |
Create a signed tag called NAME-VERSION with | |
git tag --message=NAME-VERSION --sign NAME-VERSION | |
Generate a release tar.gz and signature with | |
git archive --output=NAME-VERSION.tar.gz --prefix=NAME-VERSION/ NAME-VERSION |
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
1- sudo su - ; sh /home/dario/Playground/update_grub.sh | |
2- dnf install VirtualBox | |
3- sudo akmods; sudo systemctl restart systemd-modules-load.service |
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
<?php | |
namespace App\Authentication; | |
use Auth; | |
use App\Authentication\UserProvider; | |
use Illuminate\Support\ServiceProvider; | |
class AuthServiceProvider extends ServiceProvider | |
{ |
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
#!/bin/bash | |
rm -f /tmp/mtime.$$ | |
for x in {1..10} | |
do | |
/usr/bin/time -f "real %e user %U sys %S" -a -o /tmp/mtime.$$ $@ | |
tail -1 /tmp/mtime.$$ | |
done |
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
#!/bin/bash | |
# | |
# GUID:F9FC4F74-501A-46BC-B57E-F9D8B4EFB83E | |
function client_hello() { | |
echo "ClientHello" | |
echo "Name=${1}" | |
echo "ExpectedVersion=2.0" | |
echo "EndMessage" | |
} |
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
# This is Git's per-user configuration file. | |
[user] | |
# Please adapt and uncomment the following lines: | |
name = Your name | |
email = Your email | |
[push] | |
default = simple | |
[core] | |
excludesfile = /path/to/your/.global_ignore | |
pager = less |