| Provider | Singleton | Instantiable | Configurable |
|---|---|---|---|
| Constant | Yes | No | No |
| Value | Yes | No | No |
| Service | Yes | No | No |
| Factory | Yes | Yes | No |
| Decorator | Yes | No? | No |
| Provider | Yes | Yes | Yes |
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
| # python -t format_duplicated_rows.py | |
| with open('input.csv','r') as in_file, open('output.csv','w') as out_file: | |
| seen = set() | |
| for line in in_file: | |
| if (line in seen): | |
| continue | |
| else: | |
| seen.add(line) | |
| out_file.write(line) |
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
| # ANSI color codes | |
| RS="\[\033[0m\]" # reset | |
| HC="\[\033[1m\]" # hicolor | |
| UL="\[\033[4m\]" # underline | |
| INV="\[\033[7m\]" # inverse background and foreground | |
| FBLK="\[\033[30m\]" # foreground black | |
| FRED="\[\033[31m\]" # foreground red | |
| FGRN="\[\033[32m\]" # foreground green | |
| FYEL="\[\033[33m\]" # foreground yellow | |
| FBLE="\[\033[34m\]" # foreground blue |
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
| Control + Shift + e = split Horizontally | |
| Control + Shift + o = split Vertically | |
| Control + Shift + t = open new tab | |
| Control + Shift + i = open new window | |
| Control + Shift + w = close terminal | |
| Control + Shift + q = close window | |
| Control + Shift + g = reset and clear the terminal | |
| Alt + any directional button = focus on terminal depending on direction |
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
| dconf write /org/gnome/desktop/interface/cursor-size 48 |
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
| # http://editorconfig.org | |
| root = true | |
| [*] | |
| charset = utf-8 | |
| indent_size = 2 | |
| end_of_line = lf | |
| indent_style = space | |
| insert_final_newline = true |
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
| /////////////////////////////////////////////////////////////////////////////// Inheritance | |
| package main | |
| import "fmt" | |
| type Vehicle struct { | |
| wheelCount int | |
| } |
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
| . | |
| ├── app | |
| │ ├── app.js | |
| │ ├── common | |
| │ │ ├── controllers | |
| │ │ ├── directives | |
| │ │ ├── filters | |
| │ │ └── services | |
| │ ├── home | |
| │ │ ├── controllers |
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
| { | |
| "folders": | |
| [ | |
| { | |
| "path": "/home/fernando/code/<my-folder>", | |
| "binary_file_patterns": ["*.min.js"], | |
| "folder_exclude_patterns": ["node_modules", ".idea", "bower_components", "dist"] | |
| } | |
| ] | |
| } |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
OlderNewer