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
Disclaimer: many of those are extremely important but I believe that social media isn't fit to discuss them | |
## Politics ## | |
alt-right | |
bipartisan | |
Brexit | |
Capitol | |
CCP | |
China | |
CIA |
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
/* | |
* Discord: Don't copy stuff into this box | |
* Me: dOn'T COpy sTuFf iNtO tHIs bOx | |
*/ | |
clearMessages = function (guild_id, author_id, authToken, deleted = new Set()) { | |
if (guild_id[0] == "_" && guild_id[guild_id.length - 1] == "_") { | |
alert("Oops! You forgot to set the guild_id. Please fill it in.") | |
return; | |
} | |
if (author_id[0] == "_" && author_id[author_id.length - 1] == "_") { |
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
// since there is no API for checking if the silent mode is on, the trick is to play a 50ms silent system sound | |
// if it takes just a few milliseconds, it means the sound wasn't allowed to play and the silent mode is on | |
using System; | |
using Foundation; | |
using AudioToolbox; | |
using System.Threading.Tasks; | |
public class SilentSwitch | |
{ |
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
<!-- | |
Nowadays Xcode has a "Delete Line" key binding, but it jumps to the beginning of the next line after deletion. | |
The custom one jumps to the end of the next line. | |
Custom key bindings have to be added after every Xcode update. | |
Open the following file with any text editor: | |
/Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Resources/IDETextKeyBindingSet.plist | |
…and insert the following: | |
--> |
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 is_windows = navigator.platform.indexOf('Mac') > -1; | |
var is_macOS = false; | |
var is_ipadOS = false; | |
var is_iOS = /(iPhone|iPod)/i.test(navigator.platform); | |
var is_Android = navigator.platform.indexOf('Android') > -1; | |
var is_Linux = navigator.platform.indexOf('Linux') > -1; | |
if (navigator.platform.indexOf('Mac') > -1) { | |
if (navigator.maxTouchPoints > 1) | |
is_ipadOS = true |
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 words = [ | |
'php', 'js', 'css', 'html', 'java', 'ruby', 'rust', 'golang', 'kotlin', 'perl', | |
'elixir', 'elm ', 'erlang', 'clojure', 'lisp', 'racket', 'scala', | |
'mozilla', 'firefox', 'mysql', 'mongo', 'latex', 'webgl', | |
'kubernetes', 'docker', 'tensor', 'graphql', ' ml ', 'machine learning', 'artificial intelligence', 'ai ', | |
'google', 'facebook', 'amazon', 'aws ', 'dell', 'amd', 'verizon', 'airbnb', 'uber', 'tesla', 'spacex', 'self-driving', | |
'fundraising', 'investor', 'venture', 'unicorn', 'billionaire', 'musk', 'bezos', 'bill gates', | |
'bitcoin', 'btc', 'ethereum', 'blockchain', 'cryptocurrenc', | |
'francisco', 'new york', 'california', 'bay area', 'texas', 'florida', 'wall street', | |
'politics', 'u.s.', 'white house', 'federal', 'president', 'congress', 'senate', 'scotus', 'court', 'police', 'military', 'fbi', 'cia', 'nsa', 'immigration', 'democracy', 'election', 'mayor', 'trump', 'biden', |