Skip to content

Instantly share code, notes, and snippets.

View thelastfantasy's full-sized avatar
😄

Tao Yulong thelastfantasy

😄
  • Osaka
View GitHub Profile
@thelastfantasy
thelastfantasy / resize_window.lua
Last active January 2, 2025 07:22
MPV Resize window
-- resize_window.lua
local mp = require 'mp'
local msg = require 'mp.msg'
local options = {
min_height = 1080,
max_screen_ratio = 0.75,
enabled = true
}
@thelastfantasy
thelastfantasy / deletes tweets.js
Last active May 2, 2018 02:05
Delete all of your tweets
// Go to your Twitter profile page: https://twitter.com/username
setInterval(deleteTweets, 2000);
function deleteTweets() {
jQuery('.js-stream-item:visible').each(function () {
var id = jQuery(this).data('item-id');
var that = this;
jQuery.post(
'https://twitter.com/i/tweet/destroy',
{
'_method': 'DELETE',