- 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/
- Nodejs -> https://nodejs.org/en/
- Typescript -> https://www.typescriptlang.org/
- Express -> http://expressjs.com/pt-br/
- Angular -> https://angularjs.org/
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
| /** | |
| * HTTP Status Codes | |
| * Copyright (c) 2012, marlun78 | |
| * MIT License, https://gist.github.com/marlun78/bd0800cf5e8053ba9f83 | |
| * | |
| * Taken from: http://en.wikipedia.org/wiki/List_of_HTTP_status_codes | |
| * Visual Studio find regex: ^(\d{3}) ([^\r\n]+)\r\n | |
| * Visual Studio replace regex: '$1': '$2', // | |
| * Notes wrapped in parens moved manually | |
| */ |
| Character | Name | OS | Code | ASCII | Unicode |
|---|---|---|---|---|---|
| LF | Line Feed | Unix, Linux, OSX | \n | 10 | U+000A |
| CR | Carriage Return | macOS-9 | \r | 13 | U+000D |
| CR+LF | CR+LF | Windows, DOS | \r\n | 13+10 | U+000D + U+000A |
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
| https://coderwall.com/p/lhsrcq/one-line-browser-notepad | |
| data:text/html, <html contenteditable> | |
| data:text/html;charset=utf-8, <html contenteditable></code> | |
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
| #301 Redirects for .htaccess | |
| #Redirect a single page: | |
| Redirect 301 /pagename.php http://www.domain.com/pagename.html | |
| #Redirect an entire site: | |
| Redirect 301 / http://www.domain.com/ | |
| #Redirect an entire site to a sub folder | |
| Redirect 301 / http://www.domain.com/subfolder/ |
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
| The MIT License (MIT) | |
| Copyright (c) 2015 Justin Perry | |
| Permission is hereby granted, free of charge, to any person obtaining a copy of | |
| this software and associated documentation files (the "Software"), to deal in | |
| the Software without restriction, including without limitation the rights to | |
| use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | |
| the Software, and to permit persons to whom the Software is furnished to do so, | |
| subject to the following conditions: |
