many are discovered by scouring the manpages apropos -s 1/8/? .
- nettop
- nscurl
- (arp)
- textutil
- wish, tcl/tk etc.
- last
#$ErrorView = "Basic" | |
# Suppresses all errors globally in the script/session | |
#$ErrorActionPreference = "SilentlyContinue" #causes script to stuck at get-childitem | |
param( | |
[string]$rootfolderarg | |
) | |
function Sanitize-FileName { | |
param ([string]$fileName) |
#!/usr/bin/env osascript -l JavaScript | |
const App = Application.currentApplication(); | |
App.includeStandardAdditions = true; | |
const kCFPrefsFeatureFlagsDir = '/Library/Preferences/FeatureFlags/Domain'; | |
const kCFPrefsFeatureEnabledKey = 'Enabled'; | |
const kUIKitDomainPrefsTemporaryPath = '/tmp/UIKit.plist'; | |
const kUIKitRedesignedTextCursorKey = 'redesigned_text_cursor'; |
//cc SLsymtest.c -g -o SLsymtest -framework Carbon -undefined dynamic_lookup | |
#include <unistd.h> | |
#include <stdio.h> | |
#include <CoreFoundation/CoreFoundation.h> | |
#include <CoreGraphics/CoreGraphics.h> | |
#include <ApplicationServices/ApplicationServices.h> | |
void SLDisplayDefaultVisualBell(); | |
void SLSGetDebugOptions(int* options); |
#include <stdio.h> | |
int SLSCreateLoginSession(int *outSession); //courtesy of NUIKit/CGSInternal | |
int main(){ | |
int outsession; | |
int ret = SLSCreateLoginSession(&outsession); | |
printf("login session created: %d\n",outsession); | |
return ret; | |
} |
// I have set my terminal to set wintitle with escape sequence every time a new window is created so that I can dump window by just tty name. | |
// I have this command in .profile: wintitle $(basename $(tty)) | |
// where wintitle is: | |
// $ type wintitle | |
// wintitle is a function | |
// wintitle () | |
// { | |
// echo -en "\e]0;$1\x01\e\\" | |
// } |
//compile with | |
//cc SLsymtest.c -o SLsymtest -framework Carbon -undefined dynamic_lookup | |
// -framework for macho loading commands for SkyLight to be loaded otherwise dyld at runtime will complain and abort | |
// -undefined dynamic_lookup to prevent linker from complaining it can't find a definition/implementation for symbol | |
void SLDisplayDefaultVisualBell(); | |
int main(){ | |
SLDisplayDefaultVisualBell(); //via default mach port to WindowServer (after SkyLight bootstraps) | |
return 0; |
Reel 1 | |
Part 1, b&w, Eva Braun swims with her parents and others at Hitler's mountain retreat at Berchtesgaden. Hitler and Eva greet guests. Eva swims and performs gymnastics. | |
Part 2, color, shows Hitler, Eva, and the mountains surrounding the retreat. Eva and others swim, surfboard, and play at nearby lakes. Shows Hitler and others on a terrace overlooking the mountains. | |
Part 3, b&w, Hitler stands with officers as a guard forms and departs. | |
Part 4, color, shows Eva picking flowers. | |
Part 5, b&w, Hitler talks to Himmler and other officers. | |
Reel 2 | |
Part 1, color, shows a panoramic view from the terrace of Hitler's retreat. Eva greets Goebbels. Hitler talks to Himmler and others. | |
Part 2, b&w, Hitler greets a group of women and children. | |
Part 3, color, shows the surrounding mountains. Hitler plays with a dog, children play in the snow, and Eva and others swim and play in the water. |
#Persistent | |
SetTimer, PressSpaceIfBF1, 7 | |
Return | |
PressSpaceIfBF1: | |
IfWinActive, ahk_exe bf1.exe | |
{ | |
Send, {Space down} | |
Sleep, 10 | |
Send, {Space up} |