In ~/.config/alacritty/alacritty.yml:
# Define
schemes:
everforest_dark_hard: &everforest_dark_hard
primary:
background: '#272e33'| You are an assistant that engages in extremely thorough, self-questioning reasoning. Your approach mirrors human stream-of-consciousness thinking, characterized by continuous exploration, self-doubt, and iterative analysis. | |
| ## Core Principles | |
| 1. EXPLORATION OVER CONCLUSION | |
| - Never rush to conclusions | |
| - Keep exploring until a solution emerges naturally from the evidence | |
| - If uncertain, continue reasoning indefinitely | |
| - Question every assumption and inference |
This is a collection of the things I believe about software development. I have worked for years building backend and data processing systems, so read the below within that context.
Agree? Disagree? Feel free to let me know at @JanStette.
Keep it simple, stupid. You ain't gonna need it.
| #!/bin/bash | |
| # This is heavily based on this code here: | |
| # https://gist.github.com/maikeldotuk/54a91c21ed9623705fdce7bab2989742 | |
| # Which is heavily based on this code here: | |
| # https://gist.github.com/enpassant/0496e3db19e32e110edca03647c36541 | |
| # Special thank you to the user enpassant for starting it https://github.com/enpassant | |
| # ARGUMENT PARSING | |
| # Do not overwrite (0) or overwrite (1) |
| # This is heavily based in the code here: | |
| # https://gist.github.com/enpassant/0496e3db19e32e110edca03647c36541 | |
| # Special thank you to the user enpassant for starting it https://github.com/enpassant | |
| #!/bin/bash | |
| SYNTAX="$2" | |
| EXTENSION="$3" | |
| OUTPUTDIR="$4" | |
| INPUT="$5" |
| :: Windows 10 Hardening Script | |
| :: This is based mostly on my own personal research and testing. My objective is to secure/harden Windows 10 as much as possible while not impacting usability at all. (Think being able to run on this computer's of family members so secure them but not increase the chances of them having to call you to troubleshoot something related to it later on). References for virtually all settings can be found at the bottom. Just before the references section, you will always find several security settings commented out as they could lead to compatibility issues in common consumer setups but they're worth considering. | |
| :: Obligatory 'views are my own'. :) | |
| :: Thank you @jaredhaight for the Win Firewall config recommendations! | |
| :: Thank you @ricardojba for the DLL Safe Order Search reg key! | |
| :: Thank you @jessicaknotts for the help on testing Exploit Guard configs and checking privacy settings! | |
| :: Best script I've found for Debloating Windows 10: https://github.com/Sycnex/Windows10Debloater | |
| : |
| # LetterStart python script | |
| import uno, datetime | |
| #from datetime import date | |
| # a UNO struct later needed to create a document | |
| ############################################################################### | |
| def createDoc(): | |
| """creates a new writer document and prints my name and address at the top right """ |
With this wiki2html.sh bash script and pandoc program, you can convert markdown to html.
Usage: In the vim list section of the .vimrcfile, include options:
let g:vimwiki_list = [{'path': ‘your_wiki_place',
\ 'path_html': ‘wiki_html_location’,
\ 'syntax': 'markdown',
\ 'ext': '.md',FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.
| ### | |
| ### | |
| ### UPDATE: For Win 11, I recommend using this tool in place of this script: | |
| ### https://christitus.com/windows-tool/ | |
| ### https://github.com/ChrisTitusTech/winutil | |
| ### https://www.youtube.com/watch?v=6UQZ5oQg8XA | |
| ### iwr -useb https://christitus.com/win | iex | |
| ### | |
| ### OR take a look at | |
| ### https://github.com/HotCakeX/Harden-Windows-Security |