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
/** | |
* Need to ensure its desktop and chrome browser only | |
* Crate CONFIG object that holds the constant value | |
* Create timer function that trigger show modal function | |
* after 30 seconds of inactivity | |
* | |
* add Event listener for mousemove, click and keypress | |
* * Show modal function should check if the cart empty or not | |
* * if empty, do nothing. It item present trigger modal with last item | |
* create show modal function to render html |
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
module.exports = { | |
config: { | |
// default font size in pixels for all tabs | |
fontSize: 19, | |
opacity: 0.95, | |
// font family with optional fallbacks | |
fontFamily: 'PowerlineSymbols, "jetBrains Mono"', |
This file has been truncated, but you can view the full file.
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
<?xml version="1.0" encoding="UTF-8"?> | |
<rss version="2.0" | |
xmlns:content="http://purl.org/rss/1.0/modules/content/" | |
xmlns:wfw="http://wellformedweb.org/CommentAPI/" | |
xmlns:dc="http://purl.org/dc/elements/1.1/" | |
xmlns:atom="http://www.w3.org/2005/Atom" | |
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" | |
xmlns:slash="http://purl.org/rss/1.0/modules/slash/" | |
xmlns:georss="http://www.georss.org/georss" |
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
{"lastUpload":"2021-12-16T15:38:44.048Z","extensionVersion":"v3.4.3"} |
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
import express from 'express'; | |
import bcrypt from 'bcryptjs'; | |
import { User, validateUser } from '../../models/userSchema'; | |
const router = express.Router(); | |
/** | |
* @routes GET /api/users/register | |
* @desc Register routes |
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
{ | |
"colors": { | |
"activityBar.background": "#282c34", | |
"activityBar.foreground": "#d7dae0", | |
"activityBarBadge.background": "#4d78cc", | |
"activityBarBadge.foreground": "#f8fafd", | |
"badge.background": "#282c34", | |
"button.background": "#404754", | |
"debugToolBar.background": "#282c34", | |
"diffEditor.insertedTextBackground": "#00809b33", |
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
filetype off " required | |
" set the runtime path to include Vundle and initialize | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
Plugin 'VundleVim/Vundle.vim' | |
Plugin 'mileszs/ack.vim' | |
Plugin 'rking/ag.vim' | |
Plugin 'alnjxn/babel-vim-snippets' |
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
set nocompatible " be iMproved, required | |
so ~/.vim/plugins.vim | |
let $PATH = '/usr/local/bin:'.$PATH | |
" Configure backspace so it acts as it should act | |
"Accidentally pressing Shift K will no longer open stupid man entry | |
noremap K <nop> |
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 gulp = require('gulp'); | |
var less = require('gulp-less'); | |
var notify = require('gulp-notify'); | |
var plumber = require('gulp-plumber'); | |
var gutil = require("gulp-util"); | |
var webpack = require("webpack"); | |
var path = require("path"); | |
var WebpackNotifierPlugin = require('webpack-notifier'); |
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
/* Bootstrap */ | |
/* ====================================================== */ | |
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */ | |
html { | |
font-family: sans-serif; | |
-ms-text-size-adjust: 100%; | |
-webkit-text-size-adjust: 100%; | |
} | |
body { | |
margin: 0; |
NewerOlder