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
[wwalker@uranium ~] [] $ vboxmanage showvminfo $VBID | egrep -i 'rde|vid' | |
2D Video Acceleration: off | |
Video mode: 720x400x0 | |
VRDE: enabled (Address 0.0.0.0, Ports 3389, MultiConn: off, ReuseSingleConn: off, Authentication type: null) | |
Video redirection: disabled | |
VRDE Connection: not active | |
[wwalker@uranium ~] [] $ ps -ef | grep -i vbox[h] | |
wwalker 20242 19404 6 11:30 pts/9 00:00:35 /usr/lib64/virtualbox/VBoxHeadless -s 70147e5d-3c65-411e-b94e-369be8c7cc77 -v enable |
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
/src/rsync-3.2.7 # history | |
0 apk add bash vim acl liblz4-dev libacl1-dev attr libattr1-dev libxxhash-dev libzstd-dev libssl-dev | |
1 apk | |
2 apk search liblz4 | |
3 apk add bash vim acl lz4-dev acl1-dev attr attr1-dev xxhash-dev zstd-dev ssl-dev | |
4 apk add bash vim acl lz4-dev acl-dev attr attr1-dev xxhash-dev zstd-dev ssl-dev | |
5 apk add bash vim acl lz4-dev acl-dev attr attr-dev xxhash-dev zstd-dev ssl-dev | |
6 apk search ssl-dev | |
7 apk add bash vim acl lz4-dev acl-dev attr attr-dev xxhash-dev zstd-dev libressl-dev | |
8 apk add wget gcc g++ gawk autoconf automake python3-cmarkgfm |
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
>$ echo "$GITLAB_TOKEN" | |
asdf | |
>$ export GITLAB_TOKEN | |
>$ echo "$GITLAB_TOKEN" | |
asdf | |
>$ /usr/bin/env | /usr/bin/grep GIT | |
>$ bash --version | |
GNU bash, version 5.1.16(1)-release (x86_64-pc-linux-gnu) | |
Copyright (C) 2020 Free Software Foundation, Inc. | |
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> |
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
def walk(prefix : Array(String)) | |
@item = @j if prefix.size == 0 | |
if @item.nil? | |
puts "walk: #{prefix.join(".")} is Nil THIS SHOULD NOT HAPPEN" | |
return | |
end | |
case @item.class | |
when Hash | |
@item.as_h.keys.each do |k| | |
puts "walk: #{prefix + [k]} ia a Hash" |
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
Why does this say "[Style/RedundantBegin] Redundant `begin` block detected" (from vim Syntastic) |
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/sh | |
# i3-get-window-criteria - Get criteria for use with i3 config commands | |
# To use, run this script, then click on a window. | |
# Output is in the format: [<name>=<value> <name>=<value> ...] | |
# Known problem: when WM_NAME is used as fallback for the 'title="<string>"' criterion, | |
# quotes in "<string>" are not escaped properly. This is a problem with the output of `xprop`, | |
# reported upstream: https://bugs.freedesktop.org/show_bug.cgi?id=66807 |
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
git clone https://github.com/nim-lang/Nim.git | |
cd Nim | |
./build_all.sh | |
nim c koch.nim | |
koch boot -d:release | |
PATH=~/git/Nim/bin:$PATH | |
cd .. | |
git clone https://github.com/tsoding/boomer | |
cd boomer | |
nimble build |
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
# | |
# /home/wwalker/.nvidia-settings-rc | |
# | |
# Configuration file for nvidia-settings - the NVIDIA X Server Settings utility | |
# Generated on Fri Jan 31 16:30:55 2020 | |
# | |
# ConfigProperties: | |
RcFileLocale = C |
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
# Global Postfix configuration file. This file lists only a subset | |
# of all parameters. For the syntax, and for a complete parameter | |
# list, see the postconf(5) manual page (command: "man 5 postconf"). | |
# | |
# For common configuration examples, see BASIC_CONFIGURATION_README | |
# and STANDARD_CONFIGURATION_README. To find these documents, use | |
# the command "postconf html_directory readme_directory", or go to | |
# http://www.postfix.org/. | |
# | |
# For best results, change no more than 2-3 parameters at a time, |
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
--- | |
- name: Install Elasticsearch | |
hosts: all | |
tasks: | |
- name: add rancher user to consume cattle db | |
become: true | |
become_user: root | |
community.mysql.mysql_user: | |
name: rancher |
NewerOlder