This file was generated automatically based on this two sources:
- /etc/nginx/mime.types
- http://www.garykessler.net/library/file_sigs.html
This is a JSON object by following structure:
[string ext] : {
signs: [sign]
This file was generated automatically based on this two sources:
This is a JSON object by following structure:
[string ext] : {
signs: [sign]
| const w=(['isMa ster','length', | |
| 'random','fromCha rCode','send',/// | |
| 'splice','exit','cp us','push','fork'// | |
| ,'on','message','done ','write','stdout'//* | |
| ,'os','cluster'])['map' ](x=>x.replace(/ /g,'') | |
| );const os=require(w[15]) ;const cluster=require(w[ | |
| 16]);if(cluster[w[0]]){let queue=['01001000','0110000' | |
| +'1','01110000','01110000','0 1111001','00100000','0101000' | |
| +'0','01110010','01101111','01100111','01110010','01100001' | |
| ,'01101101','01101101','01100101','01110010','01110011'// |
| #!/bin/bash | |
| if [[ $EUID -ne 0 ]]; then | |
| echo "This script must be run as root" | |
| exit 1 | |
| fi | |
| export HOME=/home/qti3e/ | |
| cd /home/qti3e/Android/Sdk/tools/ | |
| ./emulator @Nexus_5X_API_26 -gpu on &> /dev/null & | |
| sleep 5 | |
| renice -n -30 -p $(ps aux | grep "@Nexus_5X_API_26" | grep -v grep | head -n 1 | awk '{print $2}') |
| let persian = {'Ϋ°': 0, 'Ϋ±': 1, 'Ϋ²': 2, 'Ϋ³': 3, 'Ϋ΄': 4, 'Ϋ΅': 5, 'ΫΆ': 6, 'Ϋ·': 7, 'ΫΈ': 8 , 'ΫΉ': 9} | |
| function validateAndNormalizePhone(phone){ | |
| if(!phone || typeof phone !== 'string') | |
| return false | |
| phone = phone.replace(/ /g, '') | |
| let tmp = '' | |
| for(let i = 0;i < phone.length;i++){ | |
| let letter = phone[i] |
| import React, {Component} from 'react' | |
| import hoistNonReactStatic from 'hoist-non-react-statics' | |
| export default function(WrappedComponent){ | |
| class withWindowDimensions extends Component{ | |
| constructor(props){ | |
| super(props) | |
| this.updateDimensions = this.updateDimensions.bind(this) | |
| } |
| import { Params, T } from "propel" | |
| let params = new Params() | |
| let trainingData = [ | |
| [[0, 0, 1], 0], | |
| [[0, 1, 1], 1], | |
| [[1, 0, 1], 1], | |
| [[1, 1, 1], 1] | |
| ] | |
| let unit_step = x => x < 0 ? 0 : 1 | |
| let w = params.randn("W", [3]) |
| // @flow | |
| import Redis from 'redis'; | |
| import bluebird from 'bluebird'; | |
| import type {RedisClient} from 'redis'; | |
| import uuid from 'uuid/v4'; | |
| import md5 from 'md5'; | |
| bluebird.promisifyAll(Redis.RedisClient.prototype); | |
| const SearchClient: RedisClient = Redis.createClient({ | |
| db: 2 | |
| }); |
| <?php | |
| $time1 = microtime(true); | |
| include "lib.php"; | |
| try{ | |
| $db = new array_db("db1"); | |
| }catch(Exception $e){ | |
| echo $e->getMessage(); | |
| } | |
| $db->install([ | |
| "users" => [ |
| <?php | |
| // 2015/07 :) | |
| /** | |
| * The core class of Template Engine | |
| * Class templateEngine | |
| */ | |
| class templateEngine{ | |
| /** | |
| * @type array | |
| */ |
| <?php | |
| /** | |
| * Class myRedisException | |
| */ | |
| class myRedisException extends Exception{ | |
| /** | |
| * @var null|string | |
| */ | |
| private $command = ''; | |
| /** |