For example, you want to set 40% alpha transparence to #000000
(black color), you need to add 66
like this #66000000
.
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
MD "1-Pre Production"\1-Idea "1-Pre Production"\2-Script "1-Pre Production"\3-Concept "1-Pre Production"\4-Audio\1-Dialogue "1-Pre Production"\4-Audio\2-Record "1-Pre Production"\5-Storyboard\1-Board "1-Pre Production"\5-Storyboard\2-Animatic "1-Pre Production"\6-Color "1-Pre Production"\7-Reference | |
MD 2-Production\1-Assets\1-CH 2-Production\1-Assets\2-BG 2-Production\2-Animation\Scene\Cut | |
MD "3-Post Production"\"1-Comp asset"\Scene\Cut "3-Post Production"\2-Comp\Scene\Cut "3-Post Production"\3-FX\1-Asset "3-Post Production"\3-FX\2-Comp\Scene\Cut "3-Post Production"\4-Merge\1-Audio\1-Record "3-Post Production"\4-Merge\1-Audio\2-OST "3-Post Production"\4-Merge\"2-M Comp" "3-Post Production"\5-Export\1-Facebook "3-Post Production"\5-Export\2-Instagram "3-Post Production"\5-Export\3-Twitter "3-Post Production"\5-Export\4-Youtube |
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
f = open('list.txt', 'r') | |
mynames = f.readlines() | |
print(mynames) | |
f.close() | |
import os | |
os.getcwd() | |
dirname = "/home/piash/Desktop/Test/files/" | |
for i, filename in enumerate(os.listdir(dirname)): | |
if 'saved' in filename: |
The 3.4 version of the ttf-mecorefonts-installer package is broken.
Sourceforge (where the actual font files are downloaded from) changed the location that the fonts are stored rendering the package broken. I'd suggest purging that broken 3.4 version of the package and instead install the 3.6 version of the package from an alternative source, eg
To get rid of the current package
sudo apt purge ttf-mscorefonts-installer
To download the 3.6 version of the package to your Downloads folder
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
// converts HTML to text using Javascript | |
function html2text(html) { | |
var tag = document.createElement('div'); | |
tag.innerHTML = html; | |
return tag.innerText; | |
} | |
// Convert Any copied text to plain text in TinyMCE (strip all tags) | |
paste_preprocess: function(plugin, args) { |
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
/* | |
Follow these steps: | |
-------------------- | |
1. Convert ttf font (e.g. solaimaniLipi.ttf) to woff using any of font-face generator tool online | |
2. Upload solaimaniLipi.woff to themename/assets/fonts/solaimaniLipi.woff | |
3. Add @font-face code to themename/style.css | |
4. Use font-family name anywhere you want to use this font | |
*/ | |
@font-face { | |
font-family: solaimaniLipi; |
NewerOlder