# | Detector ID |
---|---|
01 | D212 |
02 | D121 |
03 | D272 |
04 | D721 |
05 | D392 |
06 | D931 |
07 | D4412 |
08 | D1141 |
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
Show hidden characters
// This file contains the settings for Sublime Alignment to work with R files | |
// Sublime Alignment -> https://github.com/wbond/sublime_alignment | |
// Put this file in the "/Packages/Alignment/" directory of your ST2 installation | |
{ | |
// The mid-line characters to align in a multi-line selection, changing | |
// this to an empty array will disable mid-line alignment | |
"alignment_chars": [ "=", "-" ], | |
// If the following character is matched for alignment, insert a space | |
// before it in the final alignment |
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 this file through ST2 menu: Preferences -> Settings - More -> Syntax-Specific User | |
// It will be placed in the "Packages/User/" directory of your ST2 installation | |
// Paste the content of this file in it and save it | |
{ | |
// Sets the colors used within the text area | |
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme", | |
"font_face": "Monospace", | |
"font_size": 10, |
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
h1. Sublime Text 2 - Useful Shortcuts | |
Loosely ordered with the commands I use most towards the top. Sublime also offer "full documentation":http://www.sublimetext.com/docs/2/. | |
h2. Editing | |
| *Ctrl+C* | copy current line (if no selection) | | |
| *Ctrl+X* | cut current line (if no selection) | | |
| *Ctrl+⇧+K*| delete line | | |
| *Ctrl+↩* | insert line after | |
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
{ | |
"scope": "source.r", | |
"completions": | |
[ | |
"abline", | |
"abs", | |
"anova", | |
"anova.glm", | |
"anova.lm", |
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
mysqldump -u[user] -p[password] [dbname]| gzip --best -c > [dbname].sql.gz && (date && echo "[mail subjext]" && uuencode [dbname].sql.gz ) | mail [mail] -s "[mail subjext]" |
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
# note: 4.A and 4.B are mutually exclusive | |
# 1 # blumblebee repository | |
sudo add-apt-repository ppa:bumblebee/stable | |
# 2 # nvidia drivers | |
sudo add-apt-repository ppa:ubuntu-x-swat/x-updates | |
# 3 # update | |
sudo apt-get update |
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
Informations about TSIS-CORSIM™ model for Viale Cesare Battisti, Monza - Italia. |
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
'use strict'; | |
let behaviors = Symbol('behaviors') | |
const SkeletonPolymerBehavior = { | |
// Define your behavior | |
}; | |
class SkeletonPolymer { |
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
{ | |
"RED": { | |
"50": "#ffebee", | |
"100": "#ffcdd2", | |
"200": "#ef9a9a", | |
"300": "#e57373", | |
"400": "#ef5350", | |
"500": "#f44336", | |
"600": "#e53935", | |
"700": "#d32f2f", |
OlderNewer