Skip to content

Instantly share code, notes, and snippets.

View RonSkons's full-sized avatar
📚
Studying

Ron Friedman RonSkons

📚
Studying
  • Beautiful British Columbia
View GitHub Profile
@RonSkons
RonSkons / TweetBot.php
Created February 28, 2016 01:28
A competition bot made in PHP.
<?php
require "https://raw.githubusercontent.com/J7mbo/twitter-api-php/master/TwitterAPIExchange.php";
echo "===START===<br>";
$settings = array(
'oauth_access_token' => "",
'oauth_access_token_secret' => "",
'consumer_key' => "",
'consumer_secret' => "");
@RonSkons
RonSkons / quine1.php
Last active June 20, 2020 11:13
First attempt at making a quine in PHP. Not pretty, but it works.
<?php
$c="ZWNobygiPD9waHBcbiIuJyRjPSInLiRjLiJcIjtcbiIuYmFzZTY0X2RlY29kZSgkYykpOw==";
echo("<?php\n".'$c="'.$c."\";\n".base64_decode($c));