- 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/
| command | usage | |
|---|---|---|
| git init | Creates an empty Git repository in the specified directory. | |
| git clone <repository name> | Clones a repository located at <repository name> onto your local machine. | |
| git add <directory> | Stages only the specified changes for the next commit. Replace <directory> with a <file> to change a specific file. | |
| git add . | Stages new files and modifications without deletions | |
| git add -A | Stages all changes | |
| git add -all | Equivalent to git add -A | |
| git add -u | Stages modifications and deletions without adding new files | |
| git add --update | Equivalent to git add -u | |
| git commit -m ”<message>” | Commits the staged snapshot. replace <message> with the commit message. |
| command | usage | |
|---|---|---|
| git init | Creates an empty Git repository in the specified directory. | |
| git clone <repository name> | Clones a repository located at <repository name> onto your local machine. | |
| git add <directory> | Stages only the specified changes for the next commit. Replace <directory> with a <file> to change a specific file. | |
| git add . | Stages new files and modifications without deletions | |
| git add -A | Stages all changes | |
| git add -all | Equivalent to git add -A | |
| git add -u | Stages modifications and deletions without adding new files | |
| git add --update | Equivalent to git add -u | |
| git commit -m ”<message>” | Commits the staged snapshot. replace <message> with the commit message. |
| apiVersion: v1 | |
| kind: ServiceAccount | |
| metadata: | |
| name: admin-user | |
| namespace: kube-system | |
| --- | |
| apiVersion: rbac.authorization.k8s.io/v1beta1 | |
| kind: ClusterRoleBinding | |
| metadata: | |
| name: admin-user |
Hopefully this will answer "How do I setup or start a Django project using REST Framework and ReactJS?"
I created this because it was SUCH a pain in the ass setting up a project using all the latest technologies. After some research, I figured it out and have it working. The repo that implements this is located here. Feel free to use it as a boilerplate ;)
Main features:
- Django REST APIs
- ReactJS with Redux Pattern
- Webpack module bundler manager
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Vue Axios Example</title> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.4.2/vue.js"></script> | |
| <script src="https://unpkg.com/axios/dist/axios.min.js"></script> | |
| </head> | |
| <body> | |
| <div id="app"> | |
| <ul> |
| #!/bin/bash | |
| usage() { echo "usage: --coursename [--coursename \"build-a-react-app-with-redux\"] --type [--type \"courses|lessons\"]" 1>&2; exit 1; } | |
| OPTS=$(getopt -o c:t: --long coursename:,type: -n 'download_egghead_videos.sh' -- "$@") | |
| if [ $? != 0 ] ; then echo "Terminating..." >&2 ; exit 1 ; fi | |
| eval set -- "$OPTS" |
Hopefully this will answer "How do I setup or start a Django project using REST Framework and ReactJS?"
I created this because it was SUCH a pain in the ass setting up a project using all the latest technologies. After some research, I figured it out and have it working. The repo that implements this is located here. Feel free to use it as a boilerplate ;)
Main features:
- Django REST APIs
- ReactJS with Redux Pattern
- Webpack module bundler manager
The first step is to remove older version of PostGIS if any.
sudo apt-get purge postgis
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt/ trusty-pgdg main" >> /etc/apt/sources.list.d/postgresql.list'