- v1.2.0 update new CSEC Route, this should be the fastest route now.
- v1.3.0 update Found a way to skip Naix's hack
- v1.3.5 Route updates to skip getting eosdevicescanner and Faster Sequencer
- v1.4.0 2 Optimisations to the route, Route changes have been marked by [Route Change]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
git filter-branch -f --env-filter ' | |
an="$GIT_AUTHOR_NAME" | |
am="$GIT_AUTHOR_EMAIL" | |
cn="$GIT_COMMITTER_NAME" | |
cm="$GIT_COMMITTER_EMAIL" | |
if [ "$GIT_COMMITTER_EMAIL" = "[email protected]" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests, json | |
from subarucreds import username,password,pin # just a "subarucreds.py" that has some variables i didn't want to share | |
import datetime | |
#login | |
s=requests.Session() | |
loginr=s.post('https://www.mysubaru.com/login', data = {'username':username,'password':password}) | |
#should return a response 200 | |
#Where's my subaru? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @param null $user | |
* @return bool | |
*/ | |
public function isAuthorized($user = null) | |
{ | |
// Admin can access every action | |
if ($user && isset($user['is_admin']) && $user['is_admin']) { | |
$this->Auth->allow(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Controller\Api; | |
use Cake\Controller\Controller; | |
class ApiAppController extends Controller | |
{ | |
use \Crud\Controller\ControllerTrait; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Controller\Api; | |
/** | |
* Releases Controller | |
* | |
* @property \App\Model\Table\ReleasesTable $Releases | |
*/ | |
class ReleasesController extends ApiAppController | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @param $bool | |
* @return string | |
*/ | |
function yn($bool) | |
{ | |
return ($bool)?'Yes':'No'; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$this->addBehavior('Josegonzalez/Upload.Upload', [ | |
// You can configure as many upload fields as possible, | |
// where the pattern is `field` => `config` | |
// | |
// Keep in mind that while this plugin does not have any limits in terms of | |
// number of files uploaded per request, you should keep this down in order | |
// to decrease the ability of your users to block other requests. | |
'photo' => [ | |
'fields' => [ | |
// if these fields or their defaults exist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
mysql_connect("localhost", "root", "") or | |
die("Could not connect: " . mysql_error()); | |
mysql_select_db("unicentapos"); | |
$limit = 100; | |
if (!empty($_GET["limit"])) { | |
$limit = $_GET["limit"]; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Interpret whether the input needs to go to ansible, or ansible-playbook and run appropriately | |
# First update the git repos for each project | |
/usr/bin/update-git-repos | |
export ANSIBLE_FORCE_COLOR=1 | |
export ANSIBLE_RETRY_FILES_ENABLED=False |
NewerOlder