- 这是我的50条,它不是严格按时间顺序排列的!
- ~~首先就是:~~我叫布偶君(可以随意添加前缀)
- 另称 ShadowRZ / HID_System
以上两个名字都是随便起的- 略宅
- 经常感觉无事可做
- 因此觉得自己
比咸鱼还咸鱼、比萌新还萌新
- 因此觉得自己
- 是个学生
- 一直在用 Firefox
- 人家喜欢这种排版😣
# Custom history configuration | |
# Run script using: | |
# chmod u+x better_history.sh | |
# sudo su | |
# ./better_history.sh | |
echo ">>> Starting" | |
echo ">>> Loading configuration into /etc/bash.bashrc" | |
echo "HISTTIMEFORMAT='%F %T '" >> /etc/bash.bashrc | |
echo 'HISTFILESIZE=-1' >> /etc/bash.bashrc |
conky.config = { | |
double_buffer = true, | |
alignment = 'top_right', | |
background = true, | |
border_width = 0, | |
cpu_avg_samples = 2, | |
default_color = 'ffffff', | |
default_outline_color = '000000', | |
default_shade_color = 'ffffff', | |
draw_borders = false, |
rsync -auzPhv --delete --exclude-from=rsync_exclude.txt SOURCE/ DEST/ -n
-a
->--archive
; recursively sync, preserving symbolic links and all file metadata-u
->--update
; skip files that are newer on the receiver; sometimes this is inaccurate (due to Git, I think...)-z
->--compress
; compression-P
->--progress
+--partial
; show progress bar and resume interupted transfers-h
->--human-readable
; human-readable format-v
->--verbose
; verbose output
-n
->--dry-run
; dry run; use this to test, and then remove to actually execute the sync
// | |
// Simple listener.c program for UDP multicast | |
// | |
// Adapted from: | |
// http://ntrg.cs.tcd.ie/undergrad/4ba2/multicast/antony/example.html | |
// | |
// Changes: | |
// * Compiles for Windows as well as Linux | |
// * Takes the port and group on the command line | |
// |
There aren't many tutorials about this, the only tutorials I've found were about passing through entire PCIe cards to VMs, or refered to old ESXI versions (below 6.5) that used a more comprehensive desktop client instead of the web app. In v6.5, the web app was introduced and the desktop client was deprecated. You used to be able to setup RDMs in the desktop client, but with the introduction of the web console, this is no longer the case. This tutorial shows you how to pass SATA HDDs to the virtual machine on VMWare ESXI 6.5. This tutorial is partially based on VMWare's own KB and the now deprecated Forza IT blog post.
There is now an option while editing your VM's settings to add a New raw disk
when you click `Add ha
Let's say the plugin is at a GitHub URL https://github.com/manasthakur/foo
.
First get the plugin by either cloning it (git clone https://github.com/manasthakur.foo.git
) or simply downloading it as a zip (from its GitHub page).
Adding a plugin in Vim is equivalent to adding the plugin's code properly into its runtimepath (includes the $HOME/.vim
directory by default).
For example, if the layout of a plugin foo
is as follows:
foo/autoload/foo.vim
foo/plugin/foo.vim