- Firefox
- Firefox Addons
- BitWarden
- Cookie Manager
- Facebook Container
- Firefox Multi-Account Containers
- FoxyProxy Standard
ldd ./HueForge|grep lib64 (this is usr/bin/HueForge) | |
libOpenGL.so.0 => /lib64/libOpenGL.so.0 (0x00007f16ca9a2000) | |
libm.so.6 => /lib64/libm.so.6 (0x00007f16c911d000) | |
libc.so.6 => /lib64/libc.so.6 (0x00007f16c8413000) | |
/lib64/ld-linux-x86-64.so.2 (0x00007f16ca9f5000) | |
libcom_err.so.2 => /lib64/libcom_err.so.2 (0x00007f16c8846000) | |
libresolv.so.2 => /lib64/libresolv.so.2 (0x00007f16c7d87000) | |
Below is the plugins directory: | |
./iconengines/libqsvgicon.so |
"call pathogen#infect() | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
Plugin 'VundleVim/Vundle.vim' | |
Plugin 'mileszs/ack.vim' | |
Plugin 'ctrlpvim/ctrlp.vim' | |
Plugin 'vim-scripts/synic.vim' |
- https://en.wikipedia.org/wiki/HTTP_Public_Key_Pinning
- https://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security
- https://davidwong.fr/tls13/
- https://moxie.org/blog/ssl-and-the-future-of-authenticity/
- https://nullsweep.com/http-security-headers-a-complete-guide/
- https://rehn.me/posts/pki-for-busy-people.html
- http://performantcode.com/web/do-you-really-know-cors
- https://www.chromium.org/Home/chromium-security/root-ca-policy
- https://textslashplain.com/2018/02/14/understanding-the-limitations-of-https/
- https://blog.cloudflare.com/https-or-bust-chromes-plan-to-label-sites-as-not-secure/
- Download Raspbian (I used the "Lite" variant)
- Copy to SD Card
% dmesg # to figure out which device is being used
...
% dd bs=4M if=2019-07-10-raspbian-buster-lite.img of=/dev/sdc conv=fsync status=progress
- Mount boot partition and create file
ssh
In order to make Citrix Receiver on Linux function nicely, I have modified the following settings in ~/.ICAClient/All_Regions.ini
:
- In
[Virtual Channels\Seamless Windows]
:- Set
TWIMode=FALSE
- This forces the window into true Fullscreen mode (as opposed to Seamless mode where the window happens to be fullscreen - there is a big difference!)
- Set
- In
[Virtual Channels\Mouse]
:- Set
MouseSendsControlV=False
- This makes the middle mouse button function as a middle mouse button (as opposed to sending Ctrl+V, which I can't imagine anyone on Earth would actually want)
- Set
- In
[Virtual Channels\Keyboard]
: - Set
TransparentKeyPassthrough=FullScreenOnly
This document is based on an older DigitalOcean document: https://www.digitalocean.com/community/tutorials/how-to-setup-and-configure-an-openvpn-server-on-centos-7
- Install openvpn:
yum install openvpn
- Install easy-rsa (for your own CA):
yum install easy-rsa
- Configure openvpn:
- Find location of the sample server.conf file from the openvpn distribution and copy to
/etc/openvpn/server
:cp /usr/share/doc/openvpn-2.4.2/sample/sample-config-files/server.conf /etc/openvpn/server
- Edit the configuration file and uncomment the following lines:
- `toplogy subnet
comp-lzo
- Find location of the sample server.conf file from the openvpn distribution and copy to
user nobody
This file describes the customizations that I have made to my IntelliJ installation:
- Editor -> File and Code Templates -> Includes -> File Header: Empty
- Editor -> General -> Uncheck "Honor "CamelHumps" words settings when selecting on double click
- Editor -> General -> Smart Keys -> Check "Use "CamelHumps" words"
Templates
This is my description of what I did to customize a base install of the Fedora 23 XFCE spin to my needs.
Apparently there is some sort of bug the the Nouveau driver with dual monitors (at least on the GTX 750). So step 1 was to unplug one of my monitors. I didn't really customize anything, but as soon as it was done installing, I installed the propriatary NVidia drivers. I'm a big Free Software fan, but sometimes I need to Get Things Done and the fact is that the Nouveau drivers kinda suck (also they don't work in my setup).
@Bean | |
public EmbeddedServletContainerCustomizer containerCustomizer() { | |
return new EmbeddedServletContainerCustomizer() { | |
public void customize(ConfigurableEmbeddedServletContainer factory) { | |
if (factory instanceof TomcatEmbeddedServletContainerFactory) { | |
TomcatEmbeddedServletContainerFactory containerFactory = (TomcatEmbeddedServletContainerFactory) factory; | |
containerFactory.addContextValves(new ValveBase() { | |
@Override | |
public void invoke(Request request, Response response) throws IOException, ServletException { |