Directly from CLI
alias x='exit'
funcsave x
or create a file in
~/.config/fish/functions
with name
Directly from CLI
alias x='exit'
funcsave x
or create a file in
~/.config/fish/functions
with name
| #!/usr/bin/env zsh | |
| # | |
| # This script generates and writes to file another bash-script (output_script) | |
| # that implements "vscodeInstallExtensions" function which installs all | |
| # Visual Studio Code extensions that were originally installed on your machine | |
| # at the moment of generation output_script by running | |
| # "vscodeUpdateExtensionsInstallationScript" function that is implemented here below. | |
| # | |
| # # How to use | |
| # |
| <?xml version="1.0"?> | |
| <ruleset name="Laravel Standards"> | |
| <!-- | |
| The name attribute of the ruleset tag is displayed | |
| when running PHP_CodeSniffer with the -v command line | |
| argument. The description tag below is not displayed anywhere | |
| except in this file, so it can contain information for | |
| developers who may change this file in the future. | |
| --> |
| <?php | |
| class RavenDB { | |
| var $server; | |
| var $database; | |
| var $pem; | |
| function __construct($server, $database, $pem = NULL) { | |
| $this->server = $server; | |
| $this->database = $database; |
/!\ Be very carrefull in your setup : any misconfiguration make all the git config to fail silently ! Go trought this guide step by step and it should be fine 😉
~/.ssh/config, set each ssh key for each repository as in this exemple:| { | |
| "name": "my_vendor_name/my_package", | |
| "description": "My Package Description", | |
| "license": "GPL-3.0", | |
| "autoload": { | |
| "classmap": [ // search these directories for classes | |
| "lib/" | |
| ] | |
| }, | |
| "repositories": { |
| # RydMike LINTER Preferences v1.2.9 | |
| # | |
| # All original source credit and thanks to @rydmike (https://gist.github.com/rydmike) | |
| # for his Gist here: | |
| # https://gist.github.com/rydmike/fdb53ddd933c37d20e6f3188a936cd4c | |
| # | |
| # Include `all_lint_rules.dart` file, which lists all available lint rules as | |
| # enabled. | |
| # Source: https://dart-lang.github.io/linter/lints/options/options.html | |
| # |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| import { final } from './final.ts'; | |
| import { frozen } from './frozen.ts'; | |
| @final | |
| @frozen | |
| export class Example { | |
| } | |
| export class ExampleSub extends Example { | |
| } |