🧘♂️ In focus mode — working on something important. Will reply later.
💡 Need me urgently? Tag me or drop an email.
⌛ Heads down in deep work. Will be back online at [insert time].
https://www.nerdfonts.com/font-downloads
The following solution thanks to @hackerzgz & @snacky101 will install all nerd fonts;
brew tap homebrew/cask-fonts
brew search '/font-.*-nerd-font/' | awk '{ print $1 }' | xargs -I{} brew install --cask {} || trueThis is a cheat sheet for how to perform various actions to ZSH, which can be tricky to find on the web as the syntax is not intuitive and it is generally not very well-documented.
| Description | Syntax |
|---|---|
| Get the length of a string | ${#VARNAME} |
| Get a single character | ${VARNAME[index]} |
| FROM microsoft/windowsservercore:1709 | |
| # Install Powershell | |
| ADD https://github.com/PowerShell/PowerShell/releases/download/v6.0.0/PowerShell-6.0.0-win-x64.zip c:/powershell.zip | |
| RUN powershell.exe -Command Expand-Archive c:/powershell.zip c:/PS6 ; Remove-Item c:/powershell.zip | |
| RUN C:/PS6/pwsh.EXE -Command C:/PS6/Install-PowerShellRemoting.ps1 | |
| # Install SSH | |
| ADD https://github.com/PowerShell/Win32-OpenSSH/releases/download/0.0.24.0/OpenSSH-Win64.zip c:/openssh.zip | |
| RUN c:/PS6/pwsh.exe -Command Expand-Archive c:/openssh.zip c:/ ; Remove-Item c:/openssh.zip |
| #!/bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: TeamCity Build Agent | |
| # Required-Start: $remote_fs $syslog | |
| # Required-Stop: $remote_fs $syslog | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: Start build agent daemon at boot time | |
| # Description: Enable service provided by daemon. | |
| ### END INIT INFO |
| defmodule Enum.Query.CompileError do | |
| @moduledoc ~S""" | |
| Raise compile time error while building query | |
| """ | |
| defexception [:message] | |
| end | |
| defmodule Enum.Query do | |
| @moduledoc ~S""" |
| <!doctype html> | |
| <title>Site Maintenance</title> | |
| <style> | |
| body { text-align: center; padding: 150px; } | |
| h1 { font-size: 50px; } | |
| body { font: 20px Helvetica, sans-serif; color: #333; } | |
| article { display: block; text-align: left; width: 650px; margin: 0 auto; } | |
| a { color: #dc8100; text-decoration: none; } | |
| a:hover { color: #333; text-decoration: none; } | |
| </style> |
| import javafx.animation.*; | |
| import javafx.application.Application; | |
| import javafx.event.*; | |
| import javafx.geometry.Pos; | |
| import javafx.scene.*; | |
| import javafx.scene.control.*; | |
| import javafx.scene.layout.*; | |
| import javafx.scene.text.Text; | |
| import javafx.scene.web.WebView; | |
| import javafx.stage.Stage; |