Skip to content

Instantly share code, notes, and snippets.

View rashedInt32's full-sized avatar

Rashed rashedInt32

View GitHub Profile
// ==================================================================
// Flexbox
//
// Implementation based on Chris Coyier's article:
// Using Flexbox: Mixing Old and New for the Best Browser Support || http://css-tricks.com/using-flexbox/
// ==================================================================
// Flexbox Context (applied to container element of flex items)
@mixin flex-display {
@include experimental-value(display, box, -moz, -webkit, not -o, -ms, not -khtml, official); // Old
/* 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;
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');
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>
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'
{
"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",
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
@rashedInt32
rashedInt32 / cloudSettings
Last active September 26, 2022 15:09
Visual Studio Code Settings Sync Gist
{"lastUpload":"2021-12-16T15:38:44.048Z","extensionVersion":"v3.4.3"}
This file has been truncated, but you can view the full file.
<?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"
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"',