Thanks to visit codestin.com
Credit goes to gist.github.com

Skip to content

Instantly share code, notes, and snippets.

@lexrus
lexrus / AI_007_prompt.en.txt
Last active September 19, 2025 01:25
AI 通宵干活 prompt
__This is the requirements section, please replace it yourself__
Above are the requirements, below are the decision-making requirements:
- I'm going to sleep now, all product and technical decisions are under your control, I'll come to review the results tomorrow morning
- I'll sleep for about 8 hours, so don't rush to produce results, take your time with all the details, don't save tokens, getting it right is most important
- When you encounter uncertainties, first check the documentation in context7, if still uncertain, search online
- Execute all subtasks in phases, run unit tests after each phase is completed, to avoid having to start over after completing everything only to find it doesn't work
- Don't get hung up on the UI part, try to use mainstream conventional approaches, I'll polish the details tomorrow, you just focus on getting the functionality working
@alexpchin
alexpchin / Setting_upa_new_repo.md
Last active September 19, 2025 01:23
Create a new repository on the command line

Setting up a new Git Repo

##Create a new repository on the command line

touch README.md
git init
git add README.md
git commit -m "first commit"

git remote add origin [email protected]:alexpchin/.git

@lifthrasiir
lifthrasiir / .gitignore
Last active September 19, 2025 01:20
WebAssembly interpreter in a Header (WAH)
*.exe
test_new_types
test_new_ops
test_traps
test_wah
@notnotrobby
notnotrobby / cgp.md
Last active September 19, 2025 01:19
List of free resources to study computer graphics programming.
@luizbills
luizbills / README.md
Last active September 19, 2025 01:13
Simple Litecanvas plugin to handle buttons/actions. Useful to multiple controls.

Plugin Code

/**
 * @version 1.1.0
 */
function pluginButtons(engine) {
  let _btns
  
 const buttons = (data) => {
@Dzlem
Dzlem / gist:87d1ac03e39ad15dde7b64e017c7db72
Created September 13, 2025 14:55
RDP-powershell script
# Enable RDP by setting the registry key
Set-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server' -Name 'fDenyTSConnections' -Value 0
# Allow RDP to run while minimized
Set-ItemProperty -Path 'HKLM:\Software\Microsoft\Terminal Server Client' -Name 'RemoteDesktop_SuppressWhenMinimized' -Value 2