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
-- this is working in Zoom v4.6.7 | |
set appname to "zoom.us" | |
set botmessage to "[karaoke bot] ping! this message keeps the karaoke app running :)" | |
repeat while true | |
tell application appname | |
activate | |
end tell | |
tell application "System Events" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
var sketch = context.api() | |
var MAX_CHARS = 60 | |
var document = sketch.selectedDocument | |
var selection = document.selectedLayers | |
var renamedTextLayers = false | |
selection.iterate(function(item) { | |
if (!item.isText) { | |
return |
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
//: Playground - noun: a place where people can play | |
// Converts a string into it's ROT13 equavalent. Note, this is not a secure way (at all) to encrypt private data. | |
// Please look into BCRYPT or something similar for sensistive data | |
extension String { | |
var encrypt: String { | |
return self.run(self, rotateAmount: 13) | |
} | |
var decrypt: String { |
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
#pagelet_trending_tags_and_topics, | |
#pagelet_ego_pane, | |
.rhcFooterWrap { | |
display: none !important; | |
} | |
[data-reactid*="$interestsNav"], | |
[data-reactid*="$developerNav"], | |
[data-reactid*="$pagesNav"], | |
[data-reactid*="$listsNav"], | |
[data-reactid*="$eventsNav"], |
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
{"data":[{"id":"1432750582849","json":"{\"enabled\":true,\"name\":\"Twitter: Hide Trends\",\"url\":\"\",\"updateUrl\":\"\",\"sections\":[{\"code\":\".module.trends { display: none; }\",\"domains\":[\"twitter.com\"],\"regexps\":[],\"urlPrefixes\":[],\"urls\":[\"\"]}]}"},{"id":"1432750082921","json":"{\"enabled\":true,\"name\":\"Twitter: Hide Promoted Tweets\",\"url\":\"\",\"updateUrl\":\"\",\"sections\":[{\"code\":\"*[data-promoted] { display:none; }\",\"domains\":[\"twitter.com\"],\"regexps\":[],\"urlPrefixes\":[],\"urls\":[\"\"]}]}"},{"id":"1432750240677","json":"{\"enabled\":true,\"name\":\"Twitter: Hide Who to Follow\",\"url\":\"\",\"updateUrl\":\"\",\"sections\":[{\"code\":\".wtf-module,\\n.WhoToFollow {\\n\\tdisplay: none !important;\\n}\",\"domains\":[\"twitter.com\"],\"regexps\":[],\"urlPrefixes\":[],\"urls\":[\"\"]}]}"},{"id":"1432750414498","json":"{\"enabled\":true,\"name\":\"Twitter: Hide Footer\",\"url\":\"\",\"updateUrl\":\"\",\"sections\":[{\"code\":\".Footer { display: none }\",\"domains\":[\"t |
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
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HiServices.framework/Versions/A/Resources/cursors |
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
@cdn: "rons-house"; | |
.add-bg(@url) { | |
background-image: @url; | |
} | |
.foo { | |
// works: background-image: url("@{cdn}/bar.png"); | |
// works: .add-bg(@cdn); | |
.add-bg(url("@{cdn}/bar.png")); // doesn't work |
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
## No Cache | |
# | |
# Add this to your development .htaccess (or .conf) in an attempt to stop web browsers | |
# from caching files. Make sure to remove this from your site when launching live. | |
# | |
<FilesMatch "\.*"> | |
Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate" | |
Header set Pragma "no-cache" | |
Header set Expires "Thu, 01 Jan 1970 00:00:00 GMT" | |
</FilesMatch> |
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
# | |
# Add the following line to ~/.profile to enable recursively adding all unversioned. | |
# You'll need to close and open terminal for this to take [e|a]ffect. Or run '. ~/.profile' | |
# | |
# Usage: Type 'svnaddall' (without quotes) from a directory containing unversioned files | |
# | |
alias svnaddall="svn st | grep '^\?' | tr '^\?' ' ' | xargs svn add" |
NewerOlder