Skip to content

Instantly share code, notes, and snippets.

View OriCat101's full-sized avatar
🏳️‍⚧️

OriCat101

🏳️‍⚧️
View GitHub Profile
@stevewithington
stevewithington / muraSendEmail.cfm
Last active February 20, 2024 14:33
Mura CMS : How to send an email to the person who submitted the form
<!--- 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">
@Thomasvdam
Thomasvdam / soundCloudPlaylist.js
Last active October 9, 2023 18:45
Copy SoundCloud playlist items from one to another.
// 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;
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
@droogie
droogie / jwplayer_downloader.py
Last active April 24, 2023 01:59 — forked from iluxonchik/jwplayer_downloader.py
Download JWPlayer .ts files, merge them into a single file and then convert the file to .mp4
"""
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