This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// swiftc -o /tmp/InternetReachable ~/Temp/InternetReachable.swift && /tmp/InternetReachable | |
import AppKit | |
import Cocoa | |
import Foundation | |
import Network | |
private var window: NSWindow = { | |
let w = NSWindow( | |
contentRect: NSRect(x: 0, y: 0, width: NSScreen.main!.frame.width, height: 20), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Cocoa | |
import Foundation | |
func restart() { | |
// Check if the app was started fresh or if was restarted with arg `restarts=timestamp:timestamp:...` | |
// If the app was restarted more than 3 times in 10 seconds, exit with status 1 | |
guard CommandLine.arguments.count == 1 || ( | |
CommandLine.arguments.count == 2 && CommandLine.arguments[1].starts(with: "restarts=") | |
) else { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env fish | |
# Needs rg: `brew install ripgrep` | |
set -xg visitedLibs | |
function libdeps -a bin depth -d "Finds all dylibs that a binary depends on recursively and prints them on separate lines, sorted alphabetically" | |
if test -z "$depth" | |
set depth 0 | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aacsportmuntenia.ro | |
adventstore.ro | |
aeroventic.ro | |
albertshop.ro | |
aliatokazii.ro | |
amanetlizeanu.ro | |
anton-schaaf.de | |
anunturi-apibio.ro | |
artuniversum.ro | |
audicanalplustour.es |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*://*.amuddycup.com/* | |
*://*.athabasca-foto.com/* | |
*://*.cfadnc.org/* | |
*://*.codefaq.info/* | |
*://*.codeflow.site/* | |
*://*.coredump.biz/* | |
*://*.culinarydegree.info/* | |
*://*.developreference.com/* | |
*://*.domainelespailles.net/* | |
*://*.ec-europe.org/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env swift | |
// Inspired by: https://eclecticlight.co/2021/09/14/how-to-run-commands-and-scripts-on-efficiency-cores/ | |
// Run directly: | |
// chmod +x runbg.swift | |
// ./runbg.swift | |
// | |
// Compile to static binary: | |
// swiftc runbg.swift -o runbg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| | { | |
| | "QoSDebug" = 1 | |
| | "ean-mode-caching" = 0 | |
| | "CFBundleIdentifierKernel" = "com.apple.driver.AppleMobileDispH13G-DCP" | |
| | "IOMFBTemperatureCompensationEnable" = No | |
| | "PixelClock" = 533333328 | |
| | "maxAverageBpp" = 0 | |
| | "IOMFBBICSType" = 0 | |
| | "enableDither" = Yes | |
| | "BacklightMatching" = {"IOPropertyMatch"={"backlight-control"=Yes}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import Darwin; | |
@import Foundation; | |
@import IOKit; | |
// clang -fmodules -o i2cwrite-scan i2cwrite-scan.m && ./i2cwrite-scan | |
typedef CFTypeRef IOAVServiceRef; | |
extern IOAVServiceRef IOAVServiceCreate(CFAllocatorRef allocator); | |
extern IOAVServiceRef IOAVServiceCreateWithService(CFAllocatorRef allocator, io_service_t service); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Cocoa | |
import Foundation | |
enum OSDImage: Int64 { | |
case brightness = 1 | |
case contrast = 11 | |
case volume = 3 | |
case muted = 4 | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import Darwin; | |
@import Foundation; | |
@import IOKit; | |
// clang -fmodules -o i2cwrite i2cwrite.m && ./i2cwrite | |
typedef CFTypeRef IOAVServiceRef; | |
extern IOAVServiceRef IOAVServiceCreate(CFAllocatorRef allocator); | |
extern IOAVServiceRef IOAVServiceCreateWithService(CFAllocatorRef allocator, io_service_t service); |
NewerOlder