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
sudo ln -s /usr/lib/jvm/openjfx/rt/lib/amd64/libglassgtk2.so /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.191.b12-11.fc28.x86_64/jre/lib/amd64/ |
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
// disable iitc plugin if it's on | |
// go to https://www.ingress.com/intel | |
// open console and paste in the code below, press enter | |
// join https://t.me/passcodes for more passcodes | |
// add jquery | |
var jq = document.createElement('script'); | |
jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"; | |
document.getElementsByTagName('head')[0].appendChild(jq); |
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
[ 97%] Building CXX object CMakeFiles/ccls.dir/src/messages/workspace_did_change_watched_files.cc.o | |
[ 98%] Building CXX object CMakeFiles/ccls.dir/src/messages/workspace_symbol.cc.o | |
[100%] Linking CXX executable ccls | |
/usr/bin/ld: cannot find -lLLVMSupport | |
/usr/bin/ld: cannot find -lLLVMDemangle | |
/usr/bin/ld: cannot find -lncurses | |
collect2: error: ld returned 1 exit status | |
gmake[2]: *** [CMakeFiles/ccls.dir/build.make:1061: ccls] Error 1 | |
gmake[1]: *** [CMakeFiles/Makefile2:100: CMakeFiles/ccls.dir/all] Error 2 | |
gmake: *** [Makefile:130: all] Error 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
(master=)$ cmake -DCMAKE_BUILD_TYPE=Release -Brelease -H. | |
-- The CXX compiler identification is GNU 7.3.1 | |
-- Check for working CXX compiler: /usr/lib64/ccache/c++ | |
-- Check for working CXX compiler: /usr/lib64/ccache/c++ -- works | |
-- Detecting CXX compiler ABI info | |
-- Detecting CXX compiler ABI info - done | |
-- Detecting CXX compile features | |
-- Detecting CXX compile features - done | |
-- Using downloaded Clang | |
-- Downloading Clang 6.0.0 (https://releases.llvm.org/6.0.0/clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04.tar.xz) ... |
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
Delivered-To: [email protected] | |
Received: by 2002:adf:81b5:0:0:0:0:0 with SMTP id 50-v6csp1536344wra; | |
Fri, 11 May 2018 18:51:09 -0700 (PDT) | |
X-Received: by 2002:aca:851:: with SMTP id 78-v6mr864228oii.61.1526089869585; | |
Fri, 11 May 2018 18:51:09 -0700 (PDT) | |
ARC-Seal: i=3; a=rsa-sha256; t=1526089869; cv=pass; | |
d=google.com; s=arc-20160816; | |
b=0xFiA3gy8u8HmcVDHNEeXTLbRZWOb80NmGob7EvI7Q4AsKFO+x6RImOzkiqslNTrvo | |
YiFzxdyQxGPCW4j8tHfUMPedS1VC4Xpw/7C+isPIpv43GMY96p4uiIzQul7u0yN8PAsJ | |
upOz/oNI/90MQzdGWOVQzSE7+vYl7UF+VngtMbiyaaccNqEsqNG0J33/jq3tc4mTuUFR |
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 | |
# vim730: set tw=80 cc=+1: | |
# Bring up IPv6 through ISATAP tunnel. | |
version="1.0" | |
usage() { | |
cat <<EOF | |
USAGE: |
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
@-moz-document regexp('https?://.*\\.cn/.*'), regexp('https?://dict.youdao.com/.*') { | |
@font-face {font-family:'宋体';src: local('Source Han Sans CN Normal');} | |
@font-face {font-family:'SimSun';src: local('Source Han Sans CN Normal');} | |
@font-face {font-family:'新宋体';src: local('Source Han Sans CN Normal');} | |
@font-face {font-family:'NSimSun';src: local('Source Han Sans CN Normal');} | |
@font-face {font-family:'微软雅黑';src: local('Source Han Sans CN Normal');} | |
@font-face {font-family:'Microsoft YaHei';src: local('Source Han Sans CN Normal');} | |
@font-face {font-family:'Courier New';src: local('monospace');} | |
@font-face {font-family:'Courier';src: local('monospace');} | |
} |
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 | |
# vim: set et sw=4: | |
# Thunderbird contact pull and push. | |
usage () | |
{ | |
echo "USAGE:" | |
echo "$0 push/pull" | |
} |