Featured Post

QAnon: The Q-Sort Personality Profile Builder

Gettin Billy with It QAnon is based on Q-Sort: A psychological technique of which there are many variations, resulting in 50 descript...

Monday, April 9, 2018

Time of Day.applescript

MOAR Federal gangstalking techniques.  This appears to be a method by which they can change the Time of Day remotely using a VoiceOver Time of Day.applescript found in Library/VoiceOver.  Another possibility is that it merely does as it states, and speaks the time of day for recording devices planted in the house or on other electronic devices.

Watch Deerfield, Illinois in coming weeks for a false flag event.  One of their schools is literally DHS-media.org!  Another is named South Park (Church of Scientology, though this may be a red herring, as Federal agencies are directly and specifically involved).

Both the DHS and FBI are orchestrating these events, and there appears to be some kind of rift in their communities.  But make no mistake about it: Elements within both organizations are directly responsible for all of this, from the bombings blamed on children wearing fright wigs to illegal aliens to mosque bombings to mail bombs and beyond.

ALL of this comes back to the US military, mostly out of District 7 (Miami).  This is Debbie Wasserman-Schulz' land (Ft. Lauderdale).  The Austin, TX mix is a mess of CIA "cults" and ANTIFA-style "militias" run and infiltrated by FBI, DHS, CIA, and other Federal agencies.  It also has ties to gang activity, most of whom were responsible for the burnings of historic black churches in the run-up to the 2016 election.

Disregard the Democrat/Republican Hegelian Dialectic; most of their marks suffer from psychiatric issues, and are easily controlled.  The rest (also crazy AF) are either gang-related or being directed through an adherence to identity politics.  This is more specific to black gangs and organizations, but not isolated to them.


(* 
 Speaks the  date and time of day

 Copyright 2008 Apple Inc. All rights reserved.

 You may incorporate this Apple sample code into your program(s) without
 restriction.  This Apple sample code has been provided "AS IS" and the
 responsibility for its operation is yours.  You are not permitted to
 redistribute this Apple sample code as "Apple sample code" after having
 made changes.  If you're going to redistribute the code, we require
 that you make it clear that the code was descended from Apple sample
 code, but that you've made changes.
 *)

on isVoiceOverRunning()
set isRunning to false
tell application "System Events"
set isRunning to (name of processes) contains "VoiceOver"
end tell
return isRunning
end isVoiceOverRunning

on isVoiceOverRunningWithAppleScript()
if isVoiceOverRunning() then
set isRunningWithAppleScript to true
-- is AppleScript enabled on VoiceOver --
tell application "VoiceOver"
try
set x to bounds of vo cursor
on error
set isRunningWithAppleScript to false
end try
end tell
return isRunningWithAppleScript
end if
return false
end isVoiceOverRunningWithAppleScript

set currentDate to current date
set amPM to "AM"
set currentHour to (currentDate's hours)
set currentMinutes to currentDate's minutes

if (currentHour ≥ 12 and currentHour < 24) then
set amPM to "PM"
else
set amPM to "AM"
end if

--  make minutes below 10 sound nice
if currentMinutes < 10 then
set currentMinutes to ("0" & currentMinutes) as text
end if

--  ensure 0:nn gets set to 12:nn AM
if currentHour is equal to 0 then
set currentHour to 12
end if

--  readjust for 12 hour time
if (currentHour > 12) then
set currentHour to (currentHour - 12)
end if

set currentTime to ((currentDate's month) as text) & " " & ((currentDate's day) as text) & ", " & (currentHour as text) & ":" & ((currentMinutes) as text) & " " & amPM as text

if isVoiceOverRunningWithAppleScript() then
tell application "VoiceOver"
output currentTime
end tell
else
say currentTime
delay 2

end if

© Copyright 2018, The Cyberculturalist

No comments: