text stringlengths 0 15.7k | source stringlengths 6 112 |
|---|---|
property PERSON : missing value | emoji.applescript |
property PHONE : missing value | emoji.applescript |
property faucet : missing value | emoji.applescript |
property DOMAIN : missing value | emoji.applescript |
property PLUG : missing value | emoji.applescript |
property THUNDER : missing value | emoji.applescript |
property WHITE_CHECK : missing value | emoji.applescript |
property RED_CROSS : missing value | emoji.applescript |
property TRASH_BIN : missing value | emoji.applescript |
property HISTORY : missing value | emoji.applescript |
property PIN : missing value | emoji.applescript |
property CIRCLE_GREEN : missing value | emoji.applescript |
property CIRCLE_RED : missing value | emoji.applescript |
property CIRCLE_WHITE : missing value | emoji.applescript |
property SQUARE_GREEN : missing value | emoji.applescript |
property SQUARE_RED : missing value | emoji.applescript |
set logger to std's import("logger")'s new("emoji") | emoji.applescript |
set config to std's import("config")'s new("emoji") | emoji.applescript |
set work to config's getValue("EMOJI_WORK") | emoji.applescript |
set TUBE to config's getValue("EMOJI_TUBE") | emoji.applescript |
set WEB to config's getValue("EMOJI_WEB") | emoji.applescript |
set GUARD to config's getValue("EMOJI_GUARD") | emoji.applescript |
set QA to config's getValue("EMOJI_QA") | emoji.applescript |
set BOT to config's getValue("EMOJI_BOT") | emoji.applescript |
set CLOCK to config's getValue("EMOJI_CLOCK") | emoji.applescript |
set CHECK to config's getValue("EMOJI_CHECK") | emoji.applescript |
set DASH to config's getValue("DASH") | emoji.applescript |
set HORN to config's getValue("EMOJI_HORN") | emoji.applescript |
set RED_Q to config's getValue("EMOJI_RED_QM") | emoji.applescript |
set NOTE_BLACK to config's getValue("EMOJI_NOTE_BLACK") | emoji.applescript |
set NOTE_YELLOW to config's getValue("EMOJI_NOTE_YELLOW") | emoji.applescript |
set INFO to config's getValue("EMOJI_INFO") | emoji.applescript |
set ANT to config's getValue("EMOJI_ANT") | emoji.applescript |
set CHECKBOX to config's getValue("EMOJI_CHECKBOX") | emoji.applescript |
set PENCIL_FLAT to config's getValue("EMOJI_PENCIL_FLAT") | emoji.applescript |
set PENCIL_DOWN to config's getValue("EMOJI_PENCIL_DOWN") | emoji.applescript |
set PERSON to config's getValue("EMOJI_PERSON") | emoji.applescript |
set PHONE to config's getValue("EMOJI_PHONE") | emoji.applescript |
set faucet to config's getValue("EMOJI_FAUCET") | emoji.applescript |
set DOMAIN to config's getValue("EMOJI_DOMAIN") | emoji.applescript |
set PLUG to config's getValue("EMOJI_PLUG") | emoji.applescript |
set THUNDER to config's getValue("EMOJI_THUNDER") | emoji.applescript |
set WHITE_CHECK to config's getValue("EMOJI_WHITE_CHECK") | emoji.applescript |
set RED_CROSS to config's getValue("EMOJI_RED_CROSS") | emoji.applescript |
set TRASH_BIN to config's getValue("EMOJI_TRASH") | emoji.applescript |
set HISTORY to config's getValue("EMOJI_HISTORY") | emoji.applescript |
set PIN to config's getValue("EMOJI_PIN") | emoji.applescript |
set CIRCLE_WHITE to config's getValue("EMOJI_CIRCLE_WHITE") | emoji.applescript |
set CIRCLE_GREEN to config's getValue("EMOJI_CIRCLE_GREEN") | emoji.applescript |
set CIRCLE_RED to config's getValue("EMOJI_CIRCLE_RED") | emoji.applescript |
set SQUARE_GREEN to config's getValue("EMOJI_SQUARE_GREEN") | emoji.applescript |
set SQUARE_RED to config's getValue("EMOJI_SQUARE_RED") | emoji.applescript |
fmGUI_ManageDb_ListOfTableNames({}) | fmGUI_ManageDb_ListOfTableNames.applescript |
on fmGUI_ManageDb_ListOfTableNames(prefs) | fmGUI_ManageDb_ListOfTableNames.applescript |
set defaultPrefs to {stayOpen:false} | fmGUI_ManageDb_ListOfTableNames.applescript |
set fmTableNames to value of static text 1 of (every row of (table 1 of scroll area 1 of tab group 1 of window 1) whose value of static text 2 is "FileMaker") | fmGUI_ManageDb_ListOfTableNames.applescript |
if not stayOpen of prefs then fmGUI_ManageDB_Save({}) | fmGUI_ManageDb_ListOfTableNames.applescript |
return fmTableNames | fmGUI_ManageDb_ListOfTableNames.applescript |
error "unable to fmGUI_ManageDb_ListOfTableNames - " & errMsg number errNum | fmGUI_ManageDb_ListOfTableNames.applescript |
end fmGUI_ManageDb_ListOfTableNames | fmGUI_ManageDb_ListOfTableNames.applescript |
set inputsource to do shell script "/Users/IceHe/Documents/Tools/inputsource/inputsource" | switch_zh_input_source.applescript |
if inputsource = "com.sogou.inputmethod.sogou.pinyin" then | switch_zh_input_source.applescript |
key code 49 using {control down} | switch_zh_input_source.applescript |
set theTitle to title of active tab of front window as string | jira_link_to_markdown.scpt |
set theURL to URL of active tab of front window | jira_link_to_markdown.scpt |
set theTitle to first text item of my splitText(theTitle, " - ") | jira_link_to_markdown.scpt |
set theTitle to my findAndReplaceInText(theTitle, "[", "") | jira_link_to_markdown.scpt |
set theTitle to my findAndReplaceInText(theTitle, "]", "") | jira_link_to_markdown.scpt |
set the clipboard to "[" & theTitle & "]" & "(" & theURL & ")" | jira_link_to_markdown.scpt |
--Tells QuickTime Player to jump to the given time. First prompts for minutes, then seconds | Jump to time.applescript |
display dialog "Jump to time (minutes)" default answer "0" buttons {"Cancel", "OK"} default button 2 | Jump to time.applescript |
set theMinutes to ((the text returned of the result) as integer) * 60 | Jump to time.applescript |
display dialog "Jump to time (seconds)" default answer "0" buttons {"Cancel", "OK"} default button 2 | Jump to time.applescript |
set current time of document 1 to (((the text returned of the result) as integer) + theMinutes) | Jump to time.applescript |
name of (first process whose frontmost is true) | first process whose frontmost is true.applescript |
script scriptName | ScriptObjects.applescript |
repeat with i from 2 to count of paragraphs of selection | Text - remove_indents.applescript |
set c to length of (paragraph (i - 1) of selection) | Text - remove_indents.applescript |
tell paragraph i of selection | Text - remove_indents.applescript |
set a to left indent | Text - remove_indents.applescript |
set a to word 1 of a as number | Text - remove_indents.applescript |
set b to first indent | Text - remove_indents.applescript |
set b to word 1 of b as number | Text - remove_indents.applescript |
if a > 8 or b > 8 or c = 1 then | Text - remove_indents.applescript |
set left indent to 0 | Text - remove_indents.applescript |
set first indent to 0 | Text - remove_indents.applescript |
set color to "cyan" | Text - remove_indents.applescript |
set theSwitch to "/usr/local/Cellar/switchaudio-osx/1.0.0/SwitchAudioSource" | Switch-Audio-Source.scpt |
set theSource to do shell script theSwitch & " -c" | Switch-Audio-Source.scpt |
if theSource = "Built-in Output" then | Switch-Audio-Source.scpt |
do shell script theSwitch & " -s \"# SoundBar\"" -- >>Choose Dvice Name Here<<-- | Switch-Audio-Source.scpt |
if note_found = {} then | note_exist.applescript |
else if (count of note_found) > 1 then | note_exist.applescript |
return (count of note_found) | note_exist.applescript |
set photoURL to {} | Web Scraping - 1688.com product images.applescript |
repeat with i from 0 to 28 by 3 | Web Scraping - 1688.com product images.applescript |
set end of photoURL to do JavaScript "document.getElementById('desc-lazyload-container').childNodes[3].childNodes[" & i & "].src" | Web Scraping - 1688.com product images.applescript |
repeat with photo in photoURL | Web Scraping - 1688.com product images.applescript |
set URL to photo | Web Scraping - 1688.com product images.applescript |
tell application "System Events" to keystroke "s" using command down | Web Scraping - 1688.com product images.applescript |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.