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
# Others | |
$removeparam=ref | |
$removeparam=referral | |
$removeparam=SID | |
$removeparam=s_id | |
$removeparam=cid | |
$removeparam=utm_source | |
$removeparam=utm_campaign | |
$removeparam=irclickid | |
$removeparam=adid |
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
/*! | |
* Fontisto 3.0.4 by @kenangundogan - http://fontisto.com - @fontisto | |
* License - http://fontisto.com/license (CSS: MIT License) | |
*/@font-face{font-family:"fontisto";src:url("../../fonts/fontisto/fontisto.eot?v=304");src:url("../../fonts/fontisto/fontisto.eot?#iefix&v=304") format("embedded-opentype"), url("../../fonts/fontisto/fontisto.ttf?v=304") format("truetype"), url("../../fonts/fontisto/fontisto.woff?v=304") format("woff"), url("../../fonts/fontisto/fontisto.svg?v=304#fontisto") format("svg")}.fi{display:inline-block;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;text-rendering:auto;line-height:1;font-family:"fontisto";font-size:14px;font-size:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fi-acrobat-reader:before{content:"\eabf"}.fi-applemusic:before{content:"\eac0"}.fi-atlassian:before{content:"\eac1"}.fi-aws:before{content:"\eac2"}.fi-baidu:before{content:"\eac3"}.fi-bing:before{content:"\eac4"}.fi-bower:before{content:"\eac5"}.fi-d |
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
User: ISHAAN,glaitm | |
Key: 27R3VDEFYFX4N0VC3FRTQZX |
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
'use strict'; | |
const express = require('express'); | |
const bcrypt = require('bcrypt'); | |
const bodyParser = require('body-parser'); | |
const fccTesting = require('./freeCodeCamp/fcctesting.js'); | |
const app = express(); | |
fccTesting(app); //For FCC testing purposes | |
const saltRounds = 13; |
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
/********************************************** | |
* 4. Applied InfoSec Challenges | |
* ============================= | |
***********************************************/ | |
var express = require('express'); // Do Not Edit | |
var app = express(); // Do Not Edit | |
// ---- |
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
/********************************************** | |
* 3. FCC Mongo & Mongoose Challenges | |
* ================================== | |
***********************************************/ | |
'use strict' | |
const mongoose = require('mongoose') | |
const Schema = mongoose.Schema | |
/** # MONGOOSE SETUP # | |
/* ================== */ |
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
'use strict' | |
const express = require('express') | |
const helmet = require('helmet') | |
const logger = require('morgan') | |
const compression = require('compression') | |
const path = require('path') | |
const bodyParser = require('body-parser') | |
const app = express(); | |
app.use(helmet()) |