Skip to content

Instantly share code, notes, and snippets.

@TarasDev
TarasDev / CompleteDiscordQuest.md
Created May 21, 2024 14:11 — forked from aamiaa/CompleteDiscordQuest.md
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This no longer works in browser!

Note

This no longer works if you're alone in vc! Somebody else has to join you!

How to use this script:

  1. Accept the quest under User Settings -> Gift Inventory
@TarasDev
TarasDev / knick-knack-bot.js
Created December 25, 2018 07:02 — forked from jabczyk/knick-knack-bot.js
Consumes all knick-knacks in Your steam inventory
/**
* Knick Knack Steam Bot
*
* Consumes all knick-knacks in Your steam inventory
*
* - Go to https://steamcommunity.com/my/inventory#753_6
* - Wait for inventory to load
* - Press F12
* - Paste the code in console tab
*
<?php
//run via cron every 2 minutes
$log_location = "/users/minecraft/minecraft/";
$web_viewable_location = "/var/www/gotham.extrafuture.com/public_html/";
$bot_email = "gotham@extrafuture.com";
$twittermail_account = "";
//Get the log file
<?php
/**
* Twitter List Tweets PHP script that order tweets by user.
*
* @author http://techslides.com
* @link http://techslides.com/grab-twitter-list-tweets-order-by-user
*/
function curl($url){
<?php
function flip(&$img)
{
$size_x = imagesx($img);
$size_y = imagesy($img);
$temp = imagecreatetruecolor($size_x, $size_y);
$x = imagecopyresampled($temp, $img, 0, 0, ($size_x-1), 0, $size_x, $size_y, 0-$size_x, $size_y);
return $temp;
}