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
//given an entity ID (not documentId), | |
//return the full chain of items for a relation field (manyToOne). | |
//NB: getRelationChainIds() uses a single DB request to retrieve the chain of IDs. | |
//How to use ? | |
//const chainItems = await getRelationChain(strapi,itemId,'api::category.category','parent'); | |
//will return the whole hierarchy of items (as a flat ordered array) from the 'parent' field, for categories. | |
import _ from 'lodash'; |
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://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>; |
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
{"properties":{"selectors":{"properties":{"track":{"properties":{"artist":{"properties":{"path":"artist"}},"title":{"properties":{"path":"title"}},"album":{"properties":{"path":"album"}},"image":{"properties":{"path":"cover"}}}}}}},"station_slug":"radio17bis"} |
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
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":{ |
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
var rot = transform.xRotation; | |
var flipAngle = 180; | |
var flips = Math.round(rot / flipAngle); | |
var isFront = (flips%2) ? false : 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
""" | |
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 ! |
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
<?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; | |
?> |
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
//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; |