I hereby claim:
- I am osapon on github.
- I am osapon (https://keybase.io/osapon) on keybase.
- I have a public key whose fingerprint is 2306 990F FA7E 8235 804B 1924 3ADF B39C D4D1 BEAE
To claim this, I am signing this object:
| <script src="//ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> | |
| <script> | |
| $(function() { | |
| $('.blog-posts > .date-outer').each(function(idx,obj) { | |
| var title = $('.post-title',obj).text(); | |
| $('.post-share-buttons',obj).append('<a href="https://mastoshare.net/post.php?text=' + encodeURIComponent(title) + '" onclick="window.open(this.href, \'\', \'width=500,height=400\'); return false;"><img src="https://mastoshare.net/img/toot.svg" width="75" height="20"></a>'); | |
| }); | |
| }); | |
| </script> |
I hereby claim:
To claim this, I am signing this object:
| .drawer { | |
| overflow : visible ; | |
| width : 25% !important ; | |
| height : 400px !important ; | |
| } | |
| .emoji-dialog { | |
| z-index : 1 !important ; | |
| position : fixed !important ; |
| put_slack() { | |
| channel_id=`curl -s "https://slack.com/api/im.open" --data "token=${slack_team_key}" --data "user=${slack_user_id}" --data "pretty=1" | jq -r ".channel.id"` | |
| curl -s 'https://slack.com/api/chat.postMessage' \ | |
| --data "token=${slack_team_key}" \ | |
| --data "channel=${channel_id}" \ | |
| --data "pretty=1" \ | |
| --data-urlencode "text=$1" | |
| } |
| (function (lstorage) { | |
| lstorage.set = function(name,val) { | |
| while(true) { | |
| var key_name = '', old_dt = Date.now(); | |
| try{ | |
| localStorage.setItem(name, window.JSON.stringify({ | |
| 'data':val, | |
| 'dt':Date.now() | |
| })); | |
| } |