- Text Content Generator - http://www.lipsum.com
- Favicon Generator - http://tools.dynamicdrive.com/favicon
- Data Generator - https://mockaroo.com/
- Mobile Mockup Generator - https://mockuphone.com
- Logo Generator - https://www.logaster.com
- UUID Generator - https://www.uuidgenerator.net/
- Hash Generator - https://passwordsgenerator.net/sha256-hash-generator/
- Ultimate Code Generator - https://webcode.tools/
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: 12, | |
| // font family with optional fallbacks | |
| fontFamily: 'Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace', | |
| // terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk) | |
| cursorColor: 'rgba(248,28,229,0.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
| const path = require('path') | |
| const HtmlWebpackPlugin = require('html-webpack-plugin') | |
| const ExtractTextPlugin = require('extract-text-webpack-plugin') | |
| module.exports = { | |
| entry: { | |
| app: './src/js/index.jsx' | |
| }, |
If a project has to have multiple git repos (e.g. Bitbucket and Github) then it's better that they remain in sync.
Usually this would involve pushing each branch to each repo in turn, but actually Git allows pushing to multiple repos in one go.
If in doubt about what git is doing when you run these commands, just
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 10 hrs 33 mins βββββββββββββββββββββ 64.0% | |
| TypeScript 2 hrs 7 mins βββββββββββββββββββββ 12.9% | |
| Smarty 2 hrs 5 mins βββββββββββββββββββββ 12.7% | |
| Nginx 25 mins βββββββββββββββββββββ 2.5% | |
| JavaScript 20 mins βββββββββββββββββββββ 2.0% |
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 * as qs from "qs"; | |
| import { PathLike } from "fs"; | |
| export const apiConfig = { | |
| returnRejectedPromiseOnError: true, | |
| withCredentials: true, | |
| timeout: 30000, | |
| baseURL: "https://jsonplaceholder.typicode.com/", | |
| headers: { | |
| common: { |
OlderNewer