Core concepts
Model
- An object that stores data (data persistance layer abstraction).
- Templates transforms models into HTML.
- Same thing as Rails model.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
[{ | |
"Question": { | |
"QID": 1, | |
"Type": "multiple", | |
"ContentType": "multiple", | |
"Text": "What is best programming language?", | |
"OptionList": [{ | |
"Opt": { | |
"Value": 1, | |
"OTexts": "Ruby", |
#This script is to take mysql backup script, take backup into compressed format and delete old backups | |
# Author: Manish Shrivastava | |
#!/bin/bash | |
# BEGIN CONFIGURATION ========================================================== | |
BACKUP_DIR="/home/whatever" # The directory in which you want backups placed | |
KEEP_MYSQL="14" # How many days worth of mysql dumps to keep | |
KEEP_SITES="2" # How many days worth of site tarballs to keep |
# This script is to take daily backup of mongodb | |
#**** Created by Manish Shrivastava **** | |
#================================================= | |
# Instead of backing up on set days this will check the time differences | |
# between the last backup and the time the script running. | |
# Useful if you're backing up irregularly on a laptop | |
#!/usr/local/ruby/bin/ruby -w |