Various
Updated on
Last site update: 8 May 2024
hugo server --notHTTPCache
always refreshed. 😄- Horizontal margins apply to inline elements but vertical margins do not
- The home page object:
{{ site.Home }}
mkdir -p dir4/dir5/dir6
the -p switch means create parent too.rmdir -p dir1/dir2/dir3
deletesdir3
, thendir2
thendir1
as long as they are empty.rm -i
means interactive.rm -i *.md
will prompt you for each file to delete. Usey
orn
to decide.wc
for word count. This counts no. of lines, no. of words and no. of characters. To get just one of these use the switches-l
for lines,-w
for words and-c
for characters.- You can use
wc
to count the number of items in a directory.ls /etc|wc -l
list the items in theetc
directory and count the number of lines. One on each line so.. - The
less
command is a modern version ofmore
.ls /etc | less
will mean not more than one page’s worth of items will be displayed. Pressingenter
gets more but you can scroll back up too. Pressq
to quit. - To get help with a command use
man
for manual. Eg.man uniq
.
SVG Generators
There are many of these but some require a sign up and can be a bit of a pain.
- Haikei.app is one of my favourites, well made, nice and dark too.
- SVG Wave.in is another good one.
- Public Domain Vectors is old and bit different which is what makes it interesting. You can even generate patterns from letters and characters as well as words and phrases. Another version is here.
- ffflux good for creating some interesting gradient effects.
- SVG Generator: Wavy Transitions Between Sections Although very simple the nice thing is that it’s very simple to get a transition section with very succinct code.
- SVG Sprite Generator a useful tool when you have multiple SVG’s.
- Monogram Maker quckly makes up 1, 2 or 3 letter monograms that can be sized and downloaded in various formats inc. SVG.
- SVG Circus for quickly making animated pattern SVG’s.
Favicon Generators
- Real Favicon Generator creates a set of favicons from an image in different sizes, dark and light modes, vector and rastor formats.
- Formito quickly create a
<link>
containing an inline SVG. Choose a letter or letters with any google font.
Links
- Great article on the Linux CLI by Ubuntu