Influenced by Wesbos cobolt theme
- Install CaskaydiaCove Nerd Font
- Import Terminal Profile.
- Update Powershell $profile.
code $profile. - Sign in to VS Code and sync profile.
Influenced by Wesbos cobolt theme
code $profile.| { | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "actions": | |
| [ | |
| { | |
| "command": | |
| { | |
| "action": "copy", | |
| "singleLine": false | |
| }, |
| Import-Module posh-git | |
| Import-Module Terminal-Icons | |
| Set-PoshPrompt -Theme C:\Users\*changeme*\.powerline-override.json | |
| # This key handler shows the entire or filtered history using Out-GridView. The | |
| # typed text is used as the substring pattern for filtering. A selected command | |
| # is inserted to the command line without invoking. Multiple command selection | |
| # is supported, e.g. selected by Ctrl + Click. | |
| Set-PSReadLineKeyHandler -Key F7 ` | |
| -BriefDescription History ` |
| { | |
| "$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", | |
| "blocks": [ | |
| { | |
| "alignment": "left", | |
| "segments": [ | |
| { | |
| "background": "transparent", | |
| "foreground": "#ffffff", | |
| "powerline_symbol": "", |
| registry='https://docker-registry.laterooms.io:5000' | |
| names='tlrg/logstash-hra-pipe' | |
| for name in ${names}; do for n in $( | |
| for p in $(curl -sSL "${registry}/v2/${name}/tags/list" | jq -r '.tags[]'); do | |
| curl -sSL -I \ | |
| -H "Accept: application/vnd.docker.distribution.manifest.v2+json" \ | |
| "${registry}/v2/${name}/manifests/${p}" \ | |
| | awk '$1 == "docker-content-digest:" { print $2 }' \ | |
| | tr -d $'\r' |
| import styled from 'styled-components'; | |
| const MyComponent = styled.div` | |
| background: red; | |
| color: white; | |
| `; | |
| MyComponent.displayName = 'MyComponent'; | |
| const ThemeMyComponent = styled(MyComponent).attrs({ |
| # Dev Cheat sheet | |
| > Just a dumping groud to store useful things. | |
| ### git alias's | |
| 1. deletes all local merged branches | |
| `[alias] | |
| dd = "!git branch -d $(git branch --merged | grep -v master | tr -d ' ')" | |
| dc = "!git branch --merged | grep -v master | tr -d ' '" |
| <wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> | |
| <s:String x:Key="/Default/CodeInspection/CSharpLanguageProject/LanguageLevel/@EntryValue">CSharp50</s:String> | |
| </wpf:ResourceDictionary> |
| using (WebApp.Start<Startup>("http://localhost:1234")) | |
| { | |
| Console.WriteLine("Listening on port: 1234"); | |
| Console.ReadLine(); | |
| } |
| var http = require('http'); | |
| http.createServer(function (req, res) { | |
| res.writeHead(200, {'Content-Type': 'text/plain'}); | |
| res.end('Hello World\n'); | |
| }).listen(1337, '127.0.0.1'); | |
| console.log('Server running at http://127.0.0.1:1337/'); |