This file contains hidden or 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
-- phpMyAdmin SQL Dump | |
-- version 4.7.4 | |
-- https://www.phpmyadmin.net/ | |
-- | |
-- Host: 127.0.0.1 | |
-- Generation Time: Sep 30, 2018 at 02:57 PM | |
-- Server version: 5.5.16 | |
-- PHP Version: 7.1.11 | |
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; |
This file contains hidden or 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
Mozilla/5.0 (Android; Mobile; rv:36.0) Gecko/36.0 Firefox/36.0 | |
Opera/9.80 (Android; Opera Mini/7.5/34.1784; U; en) Presto/2.8 Version/11.10 | |
Opera/9.80 (Android; Opera Mini/7.5/34.1153; U; en) Presto/2.8 Version/11.10 | |
Opera/9.80 (Android; Opera Mini/7.5/34.1944; U; en) Presto/2.8 Version/11.10 | |
Mozilla/5.0 (Android; Mobile; rv:27.0) Gecko/27.0 Firefox/27.0 | |
Opera/9.80 (Android; Opera Mini/7.5/34.1088; U; en) Presto/2.8 Version/11.10 | |
Mozilla/5.0 (Android; Mobile; rv:27.0) Gecko/27.0 Firefox/27.0 | |
Opera/9.80 (Android; Opera Mini/7.5/35.3956; U; en) Presto/2.8 Version/11.10 | |
Opera/9.80 (Android; Opera Mini/7.5/34.1697; U; en) Presto/2.8 Version/11.10 | |
Opera/9.80 (Android; Opera Mini/7.5/34.1244; U; en) Presto/2.8 Version/11.10 |
This file contains hidden or 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
{ | |
"expo": { | |
"name": "Txxx A", | |
"description": "Txx Booking App", | |
"slug": "snack-xxxxx", | |
"privacy": "unlisted", | |
"sdkVersion": "31.0.0", | |
"version": "1.0.0", | |
"orientation": "portrait", | |
"primaryColor": "#cccccc", |
This file contains hidden or 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
from random import choice | |
from string import ascii_lowercase, digits | |
from django.contrib.auth import get_user_model | |
def generate_random_username(length=16, chars=ascii_lowercase+digits, split=4, delimiter='-'): | |
username = ''.join([choice(chars) for i in xrange(length)]) | |
if split: | |
username = delimiter.join([username[start:start+split] for start in range(0, len(username), split)]) |
This file contains hidden or 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
REM *******QBAIC PROGRAM TO CALCULATE THE ROOT OF QUADRATIC EQUATION********* | |
REM *******http://niarageeks.com.ng************************************** | |
CLS | |
DIM v(3) AS INTEGER | |
DIM x(2) AS DOUBLE | |
DIM s AS INTEGER | |
DIM d AS INTEGER | |
DO | |
CLS |
NewerOlder