Note
Obligatory disclaimer: this is for educational purposes only. I am not responsible for any damages caused by following this guide, or using any of the script(s) herein.
This guide prioritizes arm64 macOS, but may also work for other platforms.
Note
Obligatory disclaimer: this is for educational purposes only. I am not responsible for any damages caused by following this guide, or using any of the script(s) herein.
This guide prioritizes arm64 macOS, but may also work for other platforms.
| title | date | og | author | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Saas - Notes |
2021-03-01 |
|
|
| /* | |
| This is a custom css file for Chrome. It can be used to create an | |
| initial stylesheet for a document. | |
| It should be placed in the following location: | |
| Windows: C:\Users\<user>\AppData\Local\Google\Chrome\User Data\Default\User StyleSheets | |
| Mac: Mac: ~/Library/Application Support/Google/Chrome/Default/User StyleSheets/Custom.css | |
| Linux (Chromium): ~/.config/chromium/Default/User StyleSheets/Custom.css |
| ## Unity ## | |
| *.cs diff=csharp text | |
| *.cginc text | |
| *.shader text | |
| *.mat merge=unityyamlmerge eol=lf | |
| *.anim merge=unityyamlmerge eol=lf | |
| *.unity merge=unityyamlmerge eol=lf | |
| *.prefab merge=unityyamlmerge eol=lf |
| hook name: registernewrole | |
| Hook: | |
| add_action( 'jet-form-builder/custom-action/registernewrole', 'register_new_user_role', 10, 2 ); | |
| function register_new_user_role( $request, $handler ) { | |
| // Get the role name from the form field (assuming the field name is 'role_name') | |
| $role_name = isset( $request['role_name'] ) ? sanitize_text_field( $request['role_name'] ) : ''; | |
| // Get the capabilities from the form field (assuming the field name is 'select_capabilities') | |
| $capabilities = isset( $request['select_capabilities'] ) ? array_map( 'sanitize_text_field', (array) $request['select_capabilities'] ) : []; |
In the last years I've been asked multiple times about the comparison between raylib and SDL libraries. Unfortunately, my experience with SDL was quite limited so I couldn't provide a good comparison. In the last two years I've learned about SDL and used it to teach at University so I feel that now I can provide a good comparison between both.
Hope it helps future users to better understand this two libraries internals and functionality.
| AWSTemplateFormatVersion: '2010-09-09' | |
| Description: private-isu template | |
| Parameters: | |
| KeyPairName: | |
| Description: "Amazon EC2 Key Pair" | |
| Type: AWS::EC2::KeyPair::KeyName | |
| GitHubUsername: | |
| Description: "GitHub Username for SSH public key" | |
| Type: String |
| @(set "0=%~f0"^)#) & powershell -nop -c iex([io.file]::ReadAllText($env:0)) & exit /b | |
| #:: just copy-paste into powershell - it's a standalone hybrid script | |
| sp 'HKCU:\Volatile Environment' 'Edge_Removal' @' | |
| $also_remove_webview = 1 | |
| ## why also remove webview? because it is 2 copies of edge, not a slimmed down CEF, and is driving bloated web apps | |
| $also_remove_widgets = 1 | |
| ## why also remove widgets? because it is a webview glorified ad portal on msn and bing news cathering to stupid people | |
| $also_remove_xsocial = 1 | |
| ## why also remove xsocial? because it starts webview setup every boot - xbox gamebar will still work without the social crap |
Video Link: Apache Kafka Crash Course | What is Kafka?