$ ssh [email protected]
$ mkdir test
$ cd test
| { | |
| "workbench.startupEditor": "newUntitledFile", | |
| "editor.fontFamily": "Fira Code", | |
| "editor.fontLigatures": true, | |
| "editor.fontSize": 16, | |
| "workbench.iconTheme": "material-icon-theme", | |
| "material-icon-theme.showWelcomeMessage": false, | |
| "liveServer.settings.donotShowInfoMsg": true, | |
| "[html]": { | |
| "editor.defaultFormatter": "vscode.html-language-features" |
$ ssh [email protected]
$ mkdir test
$ cd test
| #! /bin/bash | |
| # ECHO COMMAND | |
| # echo Hello World! | |
| # VARIABLES | |
| # Uppercase by convention | |
| # Letters, numbers, underscores | |
| NAME="Bob" | |
| # echo "My name is $NAME" |
| ## To list all python versions in default locations | |
| ls /usr/bin/python* | |
| ## To remove just python3 package | |
| sudo apt-get remove python3.5 | |
| ## plus it's dependent packages | |
| sudo apt-get remove --auto-remove python3.5 | |
| ## plus configuration and/or data files of python3 | |
| sudo apt-get purge python3.5 |
| public static class EndpointExtensions | |
| { | |
| public static IServiceCollection AddEndpoints(this IServiceCollection services, Assembly assembly) | |
| { | |
| var types = assembly | |
| .GetTypes() | |
| .Where( | |
| t => | |
| t is { IsInterface: false, IsAbstract: false } && | |
| typeof(IEndpoint).IsAssignableFrom(t) |
| { | |
| "$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", | |
| "blocks": [ | |
| { | |
| "alignment": "left", | |
| "newline": true, | |
| "segments": [ | |
| { | |
| "background": "#feae34", | |
| "foreground": "#262b44", |
| var mediaJSON = { "categories" : [ { "name" : "Movies", | |
| "videos" : [ | |
| { "description" : "Big Buck Bunny tells the story of a giant rabbit with a heart bigger than himself. When one sunny day three rodents rudely harass him, something snaps... and the rabbit ain't no bunny anymore! In the typical cartoon tradition he prepares the nasty rodents a comical revenge.\n\nLicensed under the Creative Commons Attribution license\nhttp://www.bigbuckbunny.org", | |
| "sources" : [ "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4" ], | |
| "subtitle" : "By Blender Foundation", | |
| "thumb" : "images/BigBuckBunny.jpg", | |
| "title" : "Big Buck Bunny" | |
| }, | |
| { "description" : "The first Blender Open Movie from 2006", | |
| "sources" : [ "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4" ], |
| Originall From: Posted 2015-05-29 http://ubwg.net/b/full-list-of-ffmpeg-flags-and-options | |
| This is the complete list that’s outputted by ffmpeg when running ffmpeg -h full. | |
| usage: ffmpeg [options] [[infile options] -i infile]… {[outfile options] outfile}… | |
| Getting help: | |
| -h — print basic options | |
| -h long — print more options | |
| -h full — print all options (including all format and codec specific options, very long) |
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"