- 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
| body { | |
| font-family: tahoma; | |
| color:#282828; | |
| margin: 0px; | |
| } | |
| .nav-bar { | |
| background: linear-gradient(-90deg, #84CF6A, #16C0B0); | |
| height: 60px; | |
| margin-bottom: 15px; |
- Consider Your Options - covers stock grants, nonqualified options, incentive stock options and employee stock purchase plans in an easy to understand way.
- Customer Success: How Innovative Companies Are Reducing Churn and Growing Recurring Revenue
- Creativity, Inc. by Ed Catmull - Lessons learned at Pixar while trying grow and sustain an incredible and creative culture
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
| # Items that don't need to be in a Docker image. | |
| # Anything not used by the build system should go here. | |
| Dockerfile | |
| .dockerignore | |
| .gitignore | |
| README.md | |
| # Artifacts that will be built during image creation. | |
| # This should contain all files created during `npm run build`. | |
| build |
Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...
// see: https://github.com/chadoe/docker-cleanup-volumes
$ docker volume rm $(docker volume ls -qf dangling=true)
$ docker volume ls -qf dangling=true | xargs -r docker volume rm
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
| # Create a container from the mongo image, | |
| # run is as a daemon (-d), expose the port 27017 (-p), | |
| # set it to auto start (--restart) | |
| # and with mongo authentication (--auth) | |
| # Image used is https://hub.docker.com/_/mongo/ | |
| docker pull mongo | |
| docker run --name YOURCONTAINERNAME --restart=always -d -p 27017:27017 mongo mongod --auth | |
| # Using the mongo "localhost exception" (https://docs.mongodb.org/v3.0/core/security-users/#localhost-exception) | |
| # add a root user |
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
| $ python | |
| Python 2.7.6 (default, Mar 22 2014, 22:59:56) | |
| [GCC 4.8.2] on linux2 | |
| Type "help", "copyright", "credits" or "license" for more information. | |
| >>> class C: | |
| ... def __init__(self, name): | |
| ... self.name = name | |
| ... def foo(self): | |
| ... print self.name | |
| ... |
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
| # abs(var) | |
| print(abs(-23)) | |
| print(abs(3 + 5j)) | |
| # all(var) | |
| print(all([1, 2, 3, 4, 5])) | |
| print(all("string")) | |
| print(all([0, 1, 1])) | |
| # any(var) | |
| print(any([])) | |
| print(any([0, 0, 0, 1, 0, 0, ])) |
NewerOlder