create neovim rc file: %USERPROFILE%\AppData\Local\nvim\init.lua
this script enables NeoVim yank synced with either windows or wsl (windows subsystem for linux) clipboard.
create neovim rc file: %USERPROFILE%\AppData\Local\nvim\init.lua
this script enables NeoVim yank synced with either windows or wsl (windows subsystem for linux) clipboard.
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout] | |
"Scancode Map"=hex:00,00,00,00,00,00,00,00,03,00,00,00,1d,00,3a,00,3a,00,1d,00,00,00,00,00 |
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class MeshDestroy : MonoBehaviour | |
{ | |
private bool edgeSet = false; | |
private Vector3 edgeVertex = Vector3.zero; | |
private Vector2 edgeUV = Vector2.zero; |
#!/usr/bin/env bash | |
# | |
# Auto install latest kernel for TCP BBR | |
# | |
# System Required: CentOS 6+, Debian8+, Ubuntu16+ | |
# | |
# Copyright (C) 2016-2021 Teddysun <[email protected]> | |
# | |
# URL: https://teddysun.com/489.html | |
# |
My personal love setup for terminal. Tmux + Neovim
on alfred_script(q) | |
write_to_file(q, "/Users/USERNAME/.hyper_plugins/hyperalfred.txt", false) | |
tell application "Hyper" to activate | |
end alfred_script | |
on write_to_file(this_data, target_file, append_data) | |
try | |
tell application "System Events" to exists file target_file | |
if not the result then do shell script "> " & quoted form of target_file | |
set the open_target_file to open for access target_file with write permission |
2019-06-03
Note that Office2019 DO NOT support activate via simple copy/paste plist license file which is the simplest way to activate Office 2016. Fortunately, you can also use the VL Serializer tool, just install Office 2019 and Serializer, then run Serializer to activate.
.modtype_mediasite .mod-indent-outer .contentafterlink .no-overflow .mediasite-content { | |
display:none; | |
} |
#!/bin/sh | |
# you need to pre-install SSHPASS on your own computer, if not, check this out: https://gist.github.com/arunoda/7790979 | |
# My default username is root, you may change it to yourself. | |
# ====== VAR ====== | |
hugoRoot='/Users/xxxxxx/hugo/blog/' | |
publicFolder='/Users/xxxxxx/hugo/blog/public' | |
zipName='Archive.zip' | |
zipLoc=$publicFolder/$zipName | |
hostname='xxx.xxx.xxx.xxx' | |
upTo='/www/wwwroot/webxxx' |