![]() :bowtie: |
😄 :smile: |
😆 :laughing: |
---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
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
<?php | |
//on pageload | |
session_start(); | |
$idletime=60;//after 60 seconds the user gets logged out | |
if (time()-$_SESSION['email']>$idletime){ | |
session_destroy(); | |
session_unset(); | |
header('Location: ../index.php');// relocating user to home page |
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
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\SOFTWARE\Classes\AtomicRedTeam.1.00] | |
@="AtomicRedTeam" | |
[HKEY_CURRENT_USER\SOFTWARE\Classes\AtomicRedTeam.1.00\CLSID] | |
@="{00000001-0000-0000-0000-0000FEEDACDC}" | |
[HKEY_CURRENT_USER\SOFTWARE\Classes\AtomicRedTeam] | |
@="AtomicRedTeam" | |
[HKEY_CURRENT_USER\SOFTWARE\Classes\AtomicRedTeam\CLSID] | |
@="{00000001-0000-0000-0000-0000FEEDACDC}" | |
[HKEY_CURRENT_USER\SOFTWARE\Classes\CLSID\{00000001-0000-0000-0000-0000FEEDACDC}] |
I hereby claim:
- I am dextel2 on github.
- I am dextel2 (https://keybase.io/dextel2) on keybase.
- I have a public key ASCsQ5cB8VBZy8Ofovyk6Hhc8eKoamLcW84t_juU9NPm4Qo
To claim this, I am signing this object:
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
const gulp = require("gulp"); | |
const sass = require("gulp-sass"); | |
const concat = require("gulp-concat"); | |
const cssnano = require("gulp-cssnano"); | |
const uglify = require("gulp-uglify"); | |
const prefix = require("gulp-autoprefixer"); | |
let autoPrefixer = [ | |
"> 1%", | |
"last 2 versions", | |
"firefox >= 4", |
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
image: node:8.11.3 | |
test: | |
script: | |
- cd client && npm install | |
- CI=true npm test | |
only: | |
- master | |
# To manage things more clean you can create a folder inside src named `__tests__` and tests will work just fine | |
# File extension must be Filename.test.js |
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
var chars = 'abcdefghijklmnopqrstuvwxyz1234567890_'; | |
var string = ''; | |
var domainName = ["hitmail.com","rxdoc.biz","cox.com","126.net","126.com","comast.com","comast.net", "yandex.com","wegas.ru","twc.com","charter.com",]; | |
for (var index = 0; index < 15; index++) { | |
string += chars[Math.floor(Math.random() * chars.length)]; | |
} | |
var finalEmail = string + "@" + domainName[Math.floor(Math.random() * domainName.length)]; | |
console.log(finalEmail); |
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
stats |
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
JavaScript 🕓 1h31m ████████████░░░░░░░░░░░░░░░░ 43.1% | |
JSON 🕓 45m █████▉░░░░░░░░░░░░░░░░░░░░░░ 21.4% | |
HTML 🕓 24m ███▏░░░░░░░░░░░░░░░░░░░░░░░░ 11.4% | |
Markdown 🕓 22m ██▉░░░░░░░░░░░░░░░░░░░░░░░░░ 10.3% | |
TypeScript 🕓 14m █▉░░░░░░░░░░░░░░░░░░░░░░░░░░ 6.8% |
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
TypeScript 5 hrs 34 mins █████████████▋░░░░░░░ 65.2% | |
Other 1 hr 6 mins ██▋░░░░░░░░░░░░░░░░░░ 13.0% | |
Java 40 mins █▋░░░░░░░░░░░░░░░░░░░ 7.9% | |
SQL 23 mins ▉░░░░░░░░░░░░░░░░░░░░ 4.6% | |
YAML 15 mins ▋░░░░░░░░░░░░░░░░░░░░ 3.0% |