- Navigate to https://shakedown.social/settings/applications
- Click "New Application", name it something like "Airtable"
- Check off the
write:statuses
scope and uncheck all the other ones. - Click "Submit" at the bottom of the page.
- Click into the "Airtable" application you just made.
- Copy the value for "Your access token". Paste it into
ACCESS_TOKEN_HERE
in the script. - Populate
STATUS_TEXT_HERE
in the script with that status text you want.
This file contains hidden or 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
DROP TABLE if exists temp; | |
CREATE TABLE temp ( | |
`table` varchar(250) DEFAULT NULL, | |
`colum` varchar(250) DEFAULT NULL, | |
`type` varchar(250) DEFAULT NULL, | |
`number_of_PK` tinyint(2) DEFAULT NULL, | |
`alter` varchar(250) DEFAULT NULL | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
This file contains hidden or 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
div.status.status-public.status-reply span.status__visibility-icon .fa-globe::before { | |
content: " "; | |
} | |
div.status.status-unlisted.status-reply span.status__visibility-icon .fa-unlock::before { | |
content: " "; | |
} | |
div.status.status-direct.status-reply span.status__visibility-icon .fa-at::before { | |
content: " "; |
OlderNewer