Timing cached reads = 2950.47 MB/sec
Timing buffered disk reads = 79.60 MB/sec
This file contains 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
************************************************************ | |
This is an analysis of using version control system for magazine creation project. | |
# Use case: | |
The source contains scribus files, and images which are not mergeable | |
More than one person should be able to access the files | |
At any time, the latest version should be available for anyone. | |
People should not lose their work since they started working with old files. | |
People should be able to take work to home without the need to have access to central server. |
This file contains 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://serverfault.com/questions/167029/restoring-data-from-corrupted-ext4-partition-under-lvm-fsck-or-repair-bad-bloc | |
http://grover.open2space.com/content/recovering-data-damaged-hard-drive-partition | |
http://www.expertslogin.com/linux-administration/how-to-backup-lvm-configuration-on-linux/ | |
http://www.gnu.org/software/ddrescue/ddrescue.html | |
http://www.youtube.com/watch?v=vqq9A01geeA |
mke2fs -c -c -t <fs_type e.g. ext4> -L <label e.g. home> <device e.g. /dev/sda1>
-c
checks for readability of blocks. identifies bad blocks. mentioning twice checks writing as well. slower.
-c
takes about 10 min per 50gb. -c -c
takes about 2 hours per 50gb.
- HTML5 Spec for Web Developers
- caniuse -- Compatibility tables for support of HTML5, CSS3, SVG and more in desktop and mobile browsers.
- validator -- HTML5 validation.
- QuirksMode -- Fixes specific for browsers
- Google Web fonts
- FontSquirrel -- Font resource
This is my study notes for HTML5 & CSS3. You will find lot of basic HTML/CSS stuff as well. This is because I didn't know even the basics and taking notes on them as well.
reference: http://developers.whatwg.org/ and several other sources. Many points were noted using firebug (firefox add-on) during usual browsing.
This document has 3 major sections:
- HTML5
- CSS3
- How To
This file contains 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
# Vim How To | |
### Add a blank line | |
... and not go to insert mode | |
### Set dir of current file as working dir | |
`set autochdir` |
CoffeeScript study notes
- compiles into javascript
- encourages good use of javascript's good parts
OlderNewer