This file contains hidden or 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
/* | |
===================================================================== | |
Elusien's WebVfx framework for Shotcut (http://elusien.co.uk/shotcut) | |
===================================================================== | |
This framework enables Shotcut HTML Overlay filters to be developed quickly using a modern browser, | |
with all its development tools (e.g. using function key F12) at your disposal. Shotcut does not have any | |
such tools, other than a basic console.log, and in many cases of error you just end up with a blank screen. | |
You can style the HTML elements as normal using CSS then modify the properties you want to animate |
This file contains hidden or 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
<!DOCTYPE html><html><head><meta charset="UTF-8"> | |
<script src="qrc:/scripts/jquery.js"></script> | |
<script src="qrc:/scripts/rangy-core.js"></script> | |
<script src="qrc:/scripts/rangy-cssclassapplier.js"></script> | |
<script src="qrc:/scripts/htmleditor.js"></script> | |
<!-- this is possible thanks to http://www.elusien.co.uk/shotcut/ --> | |
<style> | |
html, body {margin: 0; width: 100%; height: 100%; overflow: hidden; } | |
#credits {position: absolute; top: 100%; width: 100%; padding: 25px 0; margin:0; text-align: center;} | |
/****************************************/ |
This file contains hidden or 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
[Contractor Entry] | |
Name=Open terminal here | |
Icon=terminal | |
Description=Open terminal here | |
MimeType=inode;application/x-sh;application/x-executable; | |
Exec=pantheon-terminal -w %U | |
Gettext-Domain=pantheon-terminal |
This file contains hidden or 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
-- code by Iwan 'qubodup' Gabovitch | |
-- licesnse/terms: public domain (cc0) | |
-- meaning do what you want, no credit needed, you can delete this text too | |
-- video tutorial: https://youtu.be/sArl6wypDfY | |
-- you can make a bee.png from https://openclipart.org/detail/215877/cartoon-bee | |
function love.load() | |
gw = love.graphics.getWidth() -- game width | |
gwp = gw/10 -- game widht "part" |
This file contains hidden or 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
Because ctrl+f | |
q Detach MOC from the server | |
ENTER Start playing at this file or go to this directory | |
DOWN Move down in the menu | |
UP Move up in the menu | |
PAGE_DOWN Move one page down | |
PAGE_UP Move one page up | |
HOME Move to the first item in the menu | |
END Move to the last item in the menu |
This file contains hidden or 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
For this video: http://youtu.be/mxce5nKIe5k | |
[youtube]{SIMPLETEXT}[/youtube] | |
<iframe width="560" height="410" src="http://www.youtube.com/embed/{SIMPLETEXT}"></iframe><br /> | |
<a href="http://youtu.be/{SIMPLETEXT}">youtu.be/{SIMPLETEXT}</a> | |
[youtube]VideoID[/youtube] example: [youtube]mxce5nKIe5k[/youtube] |
This file contains hidden or 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
# http://stackoverflow.com/questions/21146211/ | |
for i in $* | |
do | |
echo $i | |
sed \ | |
-e 's/get_progress(P_\([_A-Za-z0-9]*\))/progress\.\L\1/g' \ | |
-e 's/set_progress(P_\([_A-Za-z0-9]*\), \([0-9_a-zA-Z+ -\.]*\))/progress\.\L\1 = \2/g' \ | |
-e 's/P_\([_A-Z0-9]*\)/progress\.\L\1/g' \ | |
$i > $i-low | |
mv $i-low $i |
This file contains hidden or 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
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
# This requires python3 | |
# Add Freesound API key below | |
# Needs "ids.txt" containing two columns, separated by " " and the second one = Sound ID | |
# credits.txt will be overwritten (I think) | |
# some of these might be useless |
NewerOlder