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
""" | |
Update URL/Filename, execute script and provide output filename as parameter | |
Requirements: | |
* Python 3.x | |
* "ffmpeg" command-line tool. | |
""" | |
import sys | |
import urllib.request | |
from os import system, remove |
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
https://otokonokopharma.wixsite.com/otokonokopharma | |
Every ingredient can be bought from Amazon. | |
(except the raw powder that you can find on Alibaba, most suppliers there are trustable don't worry) | |
What you'll need: | |
Oil injections: | |
-Benzyl benzoate | |
-Benzyl alcohool |
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
// Configuration | |
const WAIT_OPEN_PLAYLIST_POPUP = 1000; | |
const WAIT_AFTER_ADD_PLAYLIST = 1500; | |
const TARGET_PLAYLIST_NAME = 'To Do'; | |
// Should the new playlist be in reverse order? | |
const REVERSE = false; | |
// Should liked items be skipped? | |
const SKIP_LIKED = true; |
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
<!--- Drop this in your Site or Theme eventHandler.cfc ---> | |
<cffunction name="onAfterFormSubmitSave"> | |
<cfargument name="$"> | |
<cfset var msg = '' /> | |
<cfset var formBean = $.event().getValue('formBean') /> | |
<cfset var formResultBean = $.event().getValue('formDataBean') /> | |
<cfset var formResultStruct = $.event().getValue('formDataBean').getValue('formResult') /> | |
<cfif formBean.getTitle() eq 'Your Desired Form Title'> | |
<cfsavecontent variable="msg"> |