UPDATE: https://github.com/tassoevan/pdo-oci-extension
Special thanks to:
public function index(Request $request) | |
{ | |
$sortBy = 'id'; | |
$orderBy = 'desc'; | |
$perPage = 20; | |
$q = null; | |
if ($request->has('orderBy')) $orderBy = $request->query('orderBy'); | |
if ($request->has('sortBy')) $sortBy = $request->query('sortBy'); | |
if ($request->has('perPage')) $perPage = $request->query('perPage'); |
<?php | |
namespace App\Providers; | |
use Illuminate\Support\ServiceProvider; | |
use Illuminate\Support\Facades\Schema; | |
class AppServiceProvider extends ServiceProvider | |
{ | |
/** |
""" | |
importent links: | |
http://sebastianraschka.com/Articles/2014_sqlite_in_python_tutorial.html | |
http://www.pythoncentral.io/introduction-to-sqlite-in-python/ | |
""" | |
import sqlite3 |
UPDATE: https://github.com/tassoevan/pdo-oci-extension
Special thanks to:
import os | |
import email | |
import cPickle | |
import getpass | |
import imaplib | |
import datetime | |
IMAP_SERVER = 'imap.gmail.com' | |
def process_inbox(mail, email_address): | |
return_value, emails = mail.search(None, "ALL") |
//By Freezie Ule Msee | |
import java.util.Scanner; | |
public class Calculator { | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); |
This is applicable to both OS X and Linux. I use the same tools on both systems. In this guide, I'm going to set up an environment for a Flask app.