Value | Color |
---|---|
\e[0;30m | Black |
\e[0;31m | Red |
\e[0;32m | Green |
\e[0;33m | Yellow |
\e[0;34m | Blue |
\e[0;35m | Purple |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
PyDF Renamer (v4.1.3) | |
Prompts user for location to look for PDF files, | |
asks if users wishes to rename any PDF files found there, | |
and if user affirms batch renaming, the PDF files will be | |
renamed using the first eight (8) words from the contents | |
of each file (appending incrementing numeral for | |
duplicated names). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
notags() { | |
while read line; do | |
echo $line | sed -e "s/<[^>]*>/ /g" -e "s/ / /g" | |
done | |
} | |
user=$1 | |
wanted=$2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* This is free and unencumbered software released into the public domain. | |
* | |
* For more information, please refer to <https://unlicense.org> | |
*/ | |
//Regular text | |
#define BLK "\e[0;30m" | |
#define RED "\e[0;31m" | |
#define GRN "\e[0;32m" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
shellcolors | |
#!/bin/bash | |
##################################################### | |
# Number of columns (width) of current terminal | |
##################################################### | |
export termcols=$(tput cols) | |
export termCols=$(tput cols) |
A Pen by Matt Daniel Brown on CodePen.
The second version of my previous pen(CSS Modal). In this one, I showed that there are three different modals with their own unique ids and I am using different links to open and close them.
A Pen by Matt Daniel Brown on CodePen.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- MAIN --> | |
<main> | |
<!-- images/emojis --> | |
<!-- --------------------------------------------------------------------------------- --> | |
<svg viewBox="0 0 1440 1024" fill="none" id="v-images"> | |
<defs> | |
<pattern id="pattern0" patternContentUnits="objectBoundingBox" width="1" height="1"> | |
<use xlink:href="#image0" transform="scale(0.015625)" /> | |
</pattern> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- MAIN --> | |
<main> | |
<!-- images/emojis --> | |
<!-- --------------------------------------------------------------------------------- --> | |
<svg viewBox="0 0 1440 1024" fill="none" id="v-images"> | |
<defs> | |
<pattern id="pattern0" patternContentUnits="objectBoundingBox" width="1" height="1"> | |
<use xlink:href="#image0" transform="scale(0.015625)" /> | |
</pattern> |
A Pen by Matt Daniel Brown on CodePen.