REGEX remove blank lines:
FROM: http://www.ultraedit.com/support/tutorials_power_tips/ultraedit/remove_blank_lines.html
FIND:
^(?:[\t ]*(?:\r?\n|\r))+
#!/usr/bin/perl -w | |
# | |
# opml2html.pl, (c) Jeremy Zawodny -- http://jerermy.zawodny.com/blog/ | |
# | |
# Updated by Michael Radwin (http://www.radwin.org/michael/blog/) | |
# on Dec 26th, 2003 to include image size attributes and link | |
# titles. | |
# | |
# You may distribute this code freely. It's not rocket science. | |
# |
REGEX remove blank lines:
FROM: http://www.ultraedit.com/support/tutorials_power_tips/ultraedit/remove_blank_lines.html
FIND:
^(?:[\t ]*(?:\r?\n|\r))+
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
#g { | |
background: black; | |
margin: auto; | |
display: block; | |
} |
#!/bin/bash | |
## UNLICENSE file for license information | |
# Misc checks | |
if [ $(id -u) -ne 0 ] | |
then | |
echo "This script needs root to work." # It really does. We're installing packages. | |
exit 1 | |
fi |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using AhorcadoPalabras; | |
namespace ahorcadoString | |
{ |
name: GH Pages | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: |
Author: Keyitdev
Source: Keyitdev/notes
Last edited on: 9 Sep 2023
sudo pacman -S qemu-full virt-manager virt-viewer dnsmasq vde2 bridge-utils openbsd-netcat dmidecode
I have two Github accounts: oanhnn (personal) and superman (for work). I want to use both accounts on same computer (without typing password everytime, when doing git push or pull).
Use ssh keys and define host aliases in ssh config file (each alias for an account).