VirtualBox Host OS: | Windows 10 Pro |
---|---|
VirtualBox Guest OS: | Ubuntu 16.04 LTS |
This file contains 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
// Source: https://gist.github.com/blakerohde/ec55ac3710b540adac2eda8f3924a3fa | |
// Launch options (Steam > Library > Team Fortress 2 > Properties > Set Launch Options...): -windowed -noborder | |
// Script-based (C:\SteamLibrary\steamapps\common\Team Fortress 2\tf\cfg\autoexec.cfg): | |
// Unbind unused keys: | |
unbind MWHEELUP | |
unbind MWHEELDOWN | |
unbind I |
This file contains 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
Install Eclipse CDT (C/C++) IDE: | |
1) $ sudo dnf install eclipse-cdt | |
2) Within Eclipse, install the "C/C++ Development Tools" and "C/C++ Development Tools SDK" plugins using the IDE plugin manager | |
3) Within the IDE plugin manager, search for all "C++" plugins and Install All The Things (.jpg) | |
Download and Setup openFrameworks: | |
1) Download and extract openFrameworks: http://openframeworks.cc/download/ | |
2) Follow the Linux Install guide: http://openframeworks.cc/setup/linux-eclipse/ | |
3) Follow the Linux Eclipse Setup guide: http://openframeworks.cc/setup/linux-eclipse/ |
This file contains 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
Sources: | |
Bypassing needless CenturyLink Wireless Router on Gigabit Fiber | |
http://kmwoley.com/blog/bypassing-needless-centurylink-wireless-router-on-gigabit-fiber/ | |
untagAll vs tagAll on Avaya Ethernet Routing Switches | |
https://blog.michaelfmcnamara.com/2012/02/untagall-vs-tagall-on-avaya-ethernet-routing-switches/ | |
Amazon.com: NETGEAR ProSAFE GS105Ev2 5-Port Gigabit Web Managed (Plus) Switch (GS105Ev2) | |
http://www.amazon.com/NETGEAR-ProSAFE-GS105Ev2-Gigabit-Managed/dp/B00HGLVZLY |
This file contains 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
# Color hack for fun | |
rainbow = ( | |
'cyan', | |
'blue', | |
'magenta', | |
'pink', | |
'red', | |
'orange', | |
'yellow', | |
'green', |
This file contains 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
cp crt crt_bundle | |
cat COMODORSADomainValidationSecureServerCA.crt >> crt_bundle | |
cat COMODORSAAddTrustCA.crt >> crt_bundle | |
cat AddTrustExternalCARoot.crt >> crt_bundle |
- Change the default root password using
# passwd
. - Copy
firewall
shell script and modify it accordingly. Run it. - Setup SSH by editing
/etc/ssh/sshd_config
and adding/editing the following lines. Note each allowed SSH user must replace USERNAME1, USERNAME2, etc. below.
This file contains 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
#!/usr/bin/env python | |
""" | |
seafile-conflict-detector.py | |
Used to search a starting directory recursively looking for files with seafile conflict strings in their filename. | |
:copyright: (c) 2013 by Blake Rohde. | |
:license: ISC, see LICENSE for more details. | |
""" |
NewerOlder