| Profile | download (kb/s) | upload (kb/s) | latency (ms) |
|---|---|---|---|
| Native | 0 | 0 | 0 |
| GPRS | 50 | 20 | 500 |
| 56K Dial-up | 50 | 30 | 120 |
| Mobile EDGE | 240 | 200 | 840 |
| 2G Regular | 250 | 50 | 300 |
| 2G Good | 450 | 150 | 150 |
| 3G Slow | 780 | 330 | 200 |
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
| #!/bin/bash | |
| #: Title : ftpush | |
| #: Author : Boris Diakur | |
| #: Version : 1.0 | |
| #: Description : Transmits all changed (tracked and uncommited) files to an ftp server via Transmits DockSend. | |
| #: Options : None | |
| for i in $(git status --short --untracked-files=no); do | |
| if [[ -e "$i" ]]; then | |
| echo "Transmitting $i" |
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
| (function () { | |
| 'use strict'; | |
| var body = document.body, | |
| html = document.documentElement; | |
| var docHeight = Math.max(body.scrollHeight, body.offsetHeight, html.clientHeight, html.scrollHeight, html.offsetHeight); | |
| var findingColor = 'limegreen'; | |
NewerOlder