Skip to content

Instantly share code, notes, and snippets.

View cdtweb's full-sized avatar
🏠
Working from home

Clint Tyler cdtweb

🏠
Working from home
  • CDT Web Solutions, LLC
  • Murray, UT
View GitHub Profile
@cdtweb
cdtweb / codeigniter-restful-remap.php
Last active August 29, 2015 14:03
RESTful remap method for CodeIgniter controllers
<?php
/**
* RESTful remap method for CodeIgniter controllers
*
* @author Clint Tyler <ctyler@cdtwebsolutions.com>
*/
class MY_Controller extends CI_Controller
{
public function _remap($method, $arguments = array())
{
@cdtweb
cdtweb / shell-infinit-loop
Last active October 6, 2016 20:21
Run shell command infinitely
while true; do [command]; done;
@cdtweb
cdtweb / basic-apache2-virtualhost
Created October 6, 2016 20:16
Basic Apache VirtualHost
<VirtualHost *:80>
ServerAdmin admin@example.org
DocumentRoot /var/www/example.org/public
ServerName example.org
ServerAlias www.example.org
<Directory /var/www/example.org/public>
Options All
AllowOverride All
Require all granted
</Directory>
@cdtweb
cdtweb / ubuntu-php71-install.sh
Created February 22, 2017 22:17
Ubuntu PHP 7.1 Installer
#!/bin/bash
# Works with Ubuntu 14.04 - 16.10:
# See https://launchpad.net/~ondrej/+archive/ubuntu/php for more information
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt-get install -y php7.1
@cdtweb
cdtweb / php-data-type-check.php
Last active October 3, 2022 21:22
PHP Data Type Check
<?php
// data to be tested
$data = [
null,
false,
true,
0,
1,
'',
@cdtweb
cdtweb / install-minergate.sh
Created December 6, 2017 02:03
Install minergate-cli on Ubuntu
#!/bin/bash
sudo apt-get update && wget https://minergate.com/download/deb-cli -O minergate-cli.deb && sudo dpkg -i minergate-cli.deb;
@cdtweb
cdtweb / xmr-miner.sh
Created December 6, 2017 21:15
Install minergate and start mining XMR on Ubuntu
#!/bin/bash
wget https://gist.githubusercontent.com/cdtweb/0f2e8df3858a3ab0c4c9fa3d132a36e6/raw/6c9a06a663f80b384b177f700a368936aa067ece/install-minergate.sh
chmod +x install-minergate.sh
./install-minergate.sh
minergate-cli -user <YOUR_EMAIL> -xmr
@cdtweb
cdtweb / bcn-miner.sh
Created January 3, 2018 19:46
Install minergate and start mining Bytecoin on Ubuntu
#!/bin/bash
wget https://gist.githubusercontent.com/cdtweb/0f2e8df3858a3ab0c4c9fa3d132a36e6/raw/6c9a06a663f80b384b177f700a368936aa067ece/install-minergate.sh
chmod +x install-minergate.sh
./install-minergate.sh
minergate-cli -user <YOUR_EMAIL> -bcn
@cdtweb
cdtweb / delete-tweets.js
Last active August 1, 2018 23:26
JS delete your tweets
// This may or may not work for you
// Browse to the 'tweets' page on your profile
// Copy & paste into the browser console and hit enter
// Interval set to 10s to hopefully avoid rate limiting
// You may need to prove you are not a robot
setInterval(function() {
// scroll to bottom of screen
window.scrollTo(0, document.body.scrollHeight);
@cdtweb
cdtweb / unlike-tweets.js
Last active August 1, 2018 23:26
JS unlike all tweets
// This may or may not work for you
// Browse to the 'likes' section for your profile
// Copy & paste into the browser console and hit enter
// Interval set to 10s to hopefully avoid rate limiting
// You may need to prove you are not a robot
setInterval(function() {
window.scrollTo(0, document.body.scrollHeight);
$('button.ProfileTweet-action--unfavorite').click();
}, 10000);