Movatterモバイル変換


[0]ホーム

URL:


Skip to content
Search Gists
Sign in Sign up

Instantly share code, notes, and snippets.

Discover gists

@sundowndev
sundowndev /GoogleDorking.md
Last activeOctober 13, 2025 15:07
Google dork cheatsheet

Search filters

FilterDescriptionExample
allintextSearches for occurrences of all the keywords given.allintext:"keyword"
intextSearches for the occurrences of keywords all at once or one at a time.intext:"keyword"
inurlSearches for a URL matching one of the keywords.inurl:"keyword"
allinurlSearches for a URL matching all the keywords in the query.allinurl:"keyword"
intitleSearches for occurrences of keywords in title all or one.intitle:"keyword"
@jexchan
jexchan /multiple_ssh_setting.md
CreatedApril 10, 2012 15:00
Multiple SSH keys for different github accounts

create different public key

create different ssh key according the articleMac Set-Up Git

$ ssh-keygen -t rsa -C "your_email@youremail.com"
@xyrilyn
xyrilyn /Authority.txt
CreatedOctober 3, 2022 14:42
Disco Elysium: The Final Cut [2022 October 3rd] - All Actors Text
This is the face worn by the first law-bringers, the noble tyrants. Today you join their number...
A glib remark. Don't let it stand -- assert yourself.
There's only one solution to this. You're a businessman.
Don't back down now. Say what you said again -- *proudly*.
That feels like a jab, but honestly -- you deserve it. Plus, it would be *rude* to reprimand her.
The words nail the man to his place. Unmoving, he stares down at the counter with his cheeks reddish.
He has no respect for you personally, but this man sees himself as a law-abiding citizen -- and you a representative of that law.
For a moment, the man fidgets under the lieutenant's gaze. Then he gives in.
He has no respect for you personally, but this man sees himself as a law-abiding citizen -- and you a representative of that law. He tries to avoid outright conflict.
That's cop for: "I haven't offered to pay because I don't have any money either."
/**************************************************************************/
/*!
@brief Custom lookup tables for full screen updates. Public domain (?) from Waveshare.
@note Video explainer: https://www.youtube.com/watch?v=MsbiO8EAsGw and more info:
https://benkrasnow.blogspot.com/2017/10/fast-partial-refresh-on-42-e-paper.html
@warning YOU CAN PERMANENELY DAMAGE YOUR DISPLAY BY ABUSING THESE LOOKUP TABLES!
Seriously, the controller is incredibly programmable and you can force all
kinds of voltages and timings onto the screen that it wasn't meant to deal
with. TWEAK AT YOUR OWN RISK!
*/
@stonehippo
stonehippo /using_circuitpython_native_used_for_serial_data.md
Last activeOctober 13, 2025 14:59
A note to self about using the CircuitPython native USB for serial data with usb_cdc

I was trying to get some CP code to talk to Processing over a serial port interface. Of course, the CP REPL is normally available on whatever serial port the board mounts by default. This is a little complicated, because although you can use something likeprint from the REPL (orcode.py) to print a value to the console,sys.stdin andsys.stdout are text-based streams, which may not be what you want. And you'll get REPL noise to boot. Not ideal.

This is whereusb_cdc comes in. It's a handy library for managing the USB CDC (serial) on most CircuitPython boards. First,usb_cdc can be used to control how many serial ports CP will provide at startup. You can modifyboot.py to make this work:

import usb_cdcusb_cdc.enable(console=True, data=False)
"use client";
// Import necessary utilities and components.
// tailwind-merge is used to intelligently merge Tailwind CSS classes, preventing conflicts.
importReactfrom"react";
import{twMerge}from"tailwind-merge";
// useState is a React Hook for managing state within the component.
import{useState}from"react";
// Custom icon components for the sidebar.
@pesterhazy
pesterhazy /geepaw-incrementalism.md
Last activeOctober 13, 2025 14:57
MMMSS: GeePaw Hill on Incrementalism in Software Development
csrutil disable
sudo nvram boot-args="intcoproc_unrestricted=1 kext-dev-mode=1 amfi_allow_any_signature=1 amfi_unrestrict_task_for_pid=1 PE_i_can_has_debugger=1 cs_enforcement_disable=1 amfi_get_out_of_my_way=1 amfi=0xff cs_debug=1 ipc_control_port_options=0"
sudo spctl --global-disable
sudo defaults write /Library/Preferences/com.apple.security GKAutoRearm -bool NO
sudo defaults write /Library/Preferences/com.apple.security.coderequirements Entitlements -string always
sudo defaults write /Library/Preferences/com.apple.security.coderequirements AllowUnsafeDynamicLinking -bool YES
sudo defaults write /Library/Preferences/com.apple.security.libraryvalidation.plist DisableLibraryValidation -bool YES
defaults write com.apple.loginwindow DisableScreenLockImmediate -bool yes

[8]ページ先頭

©2009-2025 Movatter.jp