Skip to content

Instantly share code, notes, and snippets.

View sCrewLoU's full-sized avatar
💭
_fwerkin_.twerkin_(forrealtwerking)=aintdoingshit~/.fr

howlow sCrewLoU

💭
_fwerkin_.twerkin_(forrealtwerking)=aintdoingshit~/.fr
  • inceptioncollection
  • Earf
View GitHub Profile
@sCrewLoU
sCrewLoU / com.apple.screensharing.agent.launchd
Created December 24, 2024 12:37 — forked from inC3ASE/com.apple.screensharing.agent.launchd
//private/etccom.apple.screensharing.agent.launchd may be useful but Id have no idea what to do with it
416c6c20776f726b20616e64206e6f20706c6179206d616b65204a61636b20612064756c6c20626f79
@sCrewLoU
sCrewLoU / Settings.plist
Created June 9, 2024 18:12 — forked from inC3ASE/Settings.plist
usr/share/mecabra/ja
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>kAverageLikelihood</key>
<real>-1.5</real>
<key>kBigramLearningBaseCost</key>
<integer>-2000</integer>
<key>kBigramLearningPrefixBaseCost</key>
<integer>-900</integer>
@sCrewLoU
sCrewLoU / PosInfo.plist
Created June 9, 2024 18:11 — forked from inC3ASE/PosInfo.plist
mecabra/ja
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>adjectivePosID</key>
<integer>1396</integer>
<key>adverbPosID</key>
<integer>19</integer>
<key>auxVerbRegionBeginPosID</key>
<integer>20</integer>
@sCrewLoU
sCrewLoU / realEntitlements.txt
Created September 6, 2023 12:57 — forked from dlevi309/realEntitlements.txt
A breakdown of all the actual entitlements accessed when granting the com.apple.private.security.no-container entitlement
com.apple.private.security.disk-device-access
com.apple.private.security.no-container
com.apple.private.security.storage.AppBundles
com.apple.private.security.storage.AppDataContainers
com.apple.private.security.storage.AppStoreCache
com.apple.private.security.storage.BulletinDistributor
com.apple.private.security.storage.CallHistory
com.apple.private.security.storage.CloudKit
com.apple.private.security.storage.CoreKnowledge
com.apple.private.security.storage.DCIM
@awoyemivictora
awoyemivictora / .git...HEAD
Created October 19, 2022 05:47
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
ref: refs/heads/main
@Dygear
Dygear / qFlipper 1.1.3 - 0.64.3
Last active September 2, 2022 07:15
qflipper update logs
262 [APP] qFlipper version 1.1.3 commit f9bd612e 2022-08-17T10:23:02
262 [APP] OS info: Pop!_OS 22.04 LTS 22.04 5.19.0-76051900-generic
285 [REG] Detected new device: VID_0x483:PID_0xdf11
536 [DBG] Device reported transfer size: 1024
538 [DBG] Bytes uploaded: 32 100%
538 [DBG] Upload has finished.
540 [REG] Registering the device
540 [BKD] Current device changed to "Otu"
559 [UPD] Fetched update information from https://update.flipperzero.one/qFlipper/directory.json
559 [UPD] Fetched update information from https://update.flipperzero.one/firmware/directory.json
@StephenHwang
StephenHwang / server_ding_watcher.md
Created August 18, 2022 19:59
Local notification of server-ran command completion/exception

Server command completion watcher

Commands ran on a server may take underdetermined amount of time. With tmux allowing for multiple windows and panes, I found it disruptive to jump around checking whether a command completed running. This gist outlines my solution using port forwarding and ncat to listen for connections and play a sound and pop-up notification on completion or error.

Set up

Local

Set up the local machine to recieve notification from server. The used ports are only for example; and should be changed to user's preference.

@dlevi309
dlevi309 / realEntitlements.txt
Created June 15, 2021 14:35
A breakdown of all the actual entitlements accessed when granting the com.apple.private.security.no-container entitlement
com.apple.private.security.disk-device-access
com.apple.private.security.no-container
com.apple.private.security.storage.AppBundles
com.apple.private.security.storage.AppDataContainers
com.apple.private.security.storage.AppStoreCache
com.apple.private.security.storage.BulletinDistributor
com.apple.private.security.storage.CallHistory
com.apple.private.security.storage.CloudKit
com.apple.private.security.storage.CoreKnowledge
com.apple.private.security.storage.DCIM
@qrealka
qrealka / bitmasks.cpp
Created February 27, 2019 13:19
c++ compile-time bitmasks
// https://stackoverflow.com/questions/54786278/how-do-i-write-a-maintainable-fast-compile-time-bit-mask-in-c
#include <bitset>
enum Flags { A = 1, B = 2, C = 3, D = 5,
E = 8, F = 13, G = 21, H,
I, J, K, L, M, N, O };
#define CPP_VERSION 14
#if CPP_VERSION==11