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 libs\mysql; | |
class PDODbImporter{ | |
private static $keywords = array( | |
'ALTER', 'CREATE', 'DELETE', 'DROP', 'INSERT', | |
'REPLACE', 'SELECT', 'SET', 'TRUNCATE', 'UPDATE', 'USE', | |
'DELIMITER', 'END' | |
); |
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
<!DOCTYPE HTML 4.01 Transitional> | |
<html> | |
<head></head> | |
<body bgcolor="#33FFFF"> | |
<style type="text/css"> | |
form {background-color: pink; box-shadow: 10px 10px #000;} | |
</style> | |
<body> | |
<form style = "padding: 20px; width: 215px; border: 5px solid purple; border-radius: 8px; margin: 0 auto; margin-top: 60px;" id="form"> |
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 | |
/** | |
* UUID class | |
* | |
* The following class generates VALID RFC 4122 COMPLIANT | |
* Universally Unique IDentifiers (UUID) version 3, 4 and 5. | |
* | |
* UUIDs generated validates using OSSP UUID Tool, and output | |
* for named-based UUIDs are exactly the same. This is a pure | |
* PHP implementation. |
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 | |
/** | |
* Get Feedback | |
* Set this on views | |
*/ | |
class Feedback { | |
/** | |
* renders the feedback messages into the view |
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 | |
$pages = 20; | |
$padding = 3; | |
$dedicated = 4; | |
function paginate($page) | |
{ | |
global $pages; | |
global $padding; |
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 | |
/** | |
* PHP GeoJSON Constructor, adpated from https://github.com/bmcbride/PHP-Database-GeoJSON | |
*/ | |
# Connect to MySQL database | |
$conn = new PDO('mysql:host=localhost;dbname=mydatabase','myusername','mypassword'); | |
# However the User's Query will be passed to the DB: | |
$sql = 'SELECT * from GDA_database WHERE user_query = whatever'; |
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
06-02 05:57:19.789 D/LauncherLog( 865): Launcher:: startActivity: pkg: org.ppsspp.ppsspp clz: org.ppsspp.ppsspp.PpssppActivity | |
06-02 05:57:19.789 I/ActivityManager( 700): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=org.ppsspp.ppsspp/.PpssppActivity bnds=[132,397][240,527] (has extras)} from pid 865 | |
06-02 05:57:19.819 D/KeyguardViewMediator( 789): setHidden false | |
06-02 05:57:19.819 D/KeyguardUpdateMonitor( 789): sendKeyguardVisibilityChanged(true) | |
06-02 05:57:19.819 D/KeyguardUpdateMonitor( 789): handleKeyguardVisibilityChanged(1) | |
06-02 05:57:19.839 D/KeyguardViewMediator( 789): setHidden false | |
06-02 05:57:19.839 D/KeyguardUpdateMonitor( 789): sendKeyguardVisibilityChanged(true) | |
06-02 05:57:19.839 D/KeyguardUpdateMonitor( 789): handleKeyguardVisibilityChanged(1) | |
06-02 05:57:19.859 D/dalvikvm( 4939): Process 4939 nice name: org.ppsspp.ppsspp | |
06-02 05:57:19.859 D/dalvikvm( 4939): Extra Options: not specified |
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
06-10 12:15:27.643 23349-23349/mobiledev.g1userapp I/PriceRatesFragment: getAccountType: corporate | |
06-10 12:15:27.653 23349-23349/mobiledev.g1userapp D/PriceRatesFragment: pricing:Pricing{pick_prov_uuid='3da15a1f-5e86-7416-e6ba-9132580b486f', pick_mun_uuid='d6a0db24-dc92-580f-94ac-dce434e4c76d', pick_sec_uuid='8c4a78af-0dc3-3eb8-2844-179820b83997', drop_prov_uuid='3da15a1f-5e86-7416-e6ba-9132580b486f', drop_mun_uuid='0508af56-c383-060a-03d7-d1659df8499e', drop_sec_uuid='85928b43-d92e-76a9-3ebc-67264cb3856e', vehicle_uuid='05880003-d5dd-ff9d-bd3f-aa950a7d1683', company_uuid='a5b4107c-5e0b-8ff8-0cd3-a8301e4b960f', type='corporate'} | |
06-10 12:15:27.653 23349-23349/mobiledev.g1userapp D/PriceRatesFragment: company_uuid: a5b4107c-5e0b-8ff8-0cd3-a8301e4b960f | |
06-10 12:15:27.653 23349-23349/mobiledev.g1userapp I/PriceRatesFragment: getResults for vehicle: 05880003-d5dd-ff9d-bd3f-aa950a7d1683 with client type: corporate | |
06-10 12:15:27.653 23349-23349/mobiledev.g1userapp I/PriceRateController: Pre-Accessed roboPriceRate |
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 | |
// nah | |
use Gregwar\Captcha\CaptchaBuilder; | |
class UserModel | |
{ | |
public function __construct($db) | |
{ |
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
{ | |
"vars": { | |
"@gray-base": "#000", | |
"@gray-darker": "lighten(@gray-base, 13.5%)", | |
"@gray-dark": "lighten(@gray-base, 20%)", | |
"@gray": "lighten(@gray-base, 33.5%)", | |
"@gray-light": "lighten(@gray-base, 46.7%)", | |
"@gray-lighter": "lighten(@gray-base, 93.5%)", | |
"@brand-primary": "darken(#428bca, 6.5%)", | |
"@brand-success": "#5cb85c", |
OlderNewer