Skip to content

Instantly share code, notes, and snippets.

@gordielachance
gordielachance / After Effects Expression : Reveal text (TypeOn + blinking cursor)
Last active May 21, 2022 13:36
After Effects Expression : Reveal text (TypeOn + blinking cursor)
//put this expression for the 'Source Text' value on your text layer, and add 4 markers on the layer : 'cursorStart', 'textStart', 'textStop', 'cursorStop'
cursor="|";
cursorBlink = 1; //seconds
txt = value;
timeIn = thisLayer.inPoint; //seconds
txtSize = text.sourceText.length;
animateText = true;
showCursor = true;
@gordielachance
gordielachance / openprice.php
Last active March 7, 2018 08:15
The Events Calendar - Open Price module
<?php
//Add this in your functions.php file
add_action( 'tribe_events_cost_table', 'event_backend_open_price', 9 );
add_action( 'tribe_events_event_save', 'event_save_open_price', 10, 3 );
add_filter( 'tribe_get_cost','event_get_open_price',10,3);
function event_backend_open_price($event_id){
$isOpenPrice = ($event_id) ? get_post_meta( $event_id, '_EventOpenPrice', true ) : false;
?>
@gordielachance
gordielachance / nthObjectSelector.py
Last active April 10, 2018 21:15
Blender script that reduce your section of objects to nth objects.
"""
nthObjectSelector by gordielachance
This will reduce your current selection of object to nth objects.
https://gist.github.com/gordielachance/ba32a3087f8d327bfdeb9d0ea7fb4935
"""
import bpy
#SETUP
nth = 3 #Specify your nth value here !
@gordielachance
gordielachance / AE expression : check for backfacing (2D layer)
Last active November 6, 2019 09:19
AE expression : check for backfacing (2D layer)
var rot = transform.xRotation;
var flipAngle = 180;
var flips = Math.round(rot / flipAngle);
var isFront = (flips%2) ? false : true;
Hi, i've got problems validating parameters sent to my API route.
puts "PARAMS"
puts params.to_json
=begin
{
"url":"http://www.last.fm/user/grosbouff/loved",
"options":{
"selectors":{
"playlist":{
{"properties":{"selectors":{"properties":{"track":{"properties":{"artist":{"properties":{"path":"artist"}},"title":{"properties":{"path":"title"}},"album":{"properties":{"path":"album"}},"image":{"properties":{"path":"cover"}}}}}}},"station_slug":"radio17bis"}
@gordielachance
gordielachance / jspftypes.ts
Last active March 31, 2023 14:21
typescript JSPF tests
//
https://github.com/metabrainz/listenbrainz-server/blob/cdc4df46738402d7d003acf08febfe7c7cf2fe4f/frontend/js/src/utils/types.d.ts
export type URI = string;
export type URICollection = URI[];
export type JSPFAttribution = Record<string,URI>;
export type JSPFAttributionCollection = JSPFAttribution[];
export type JSPFLink = Record<URI,URI>;