Skip to content

Instantly share code, notes, and snippets.

View ajubin's full-sized avatar
😢
Trop triste qu'il me réponde plus

ajubin ajubin

😢
Trop triste qu'il me réponde plus
View GitHub Profile
@ajubin
ajubin / auth0-account-linking.css
Last active June 27, 2023 16:39
auth0-account-linking-test-css
img.auth0-lock-header-logo {
height: 30px !important;
}
@ajubin
ajubin / invite.html
Last active May 22, 2023 16:17
template-n8n-invite-with-no-tracker
<p>Hi there</p>
<p>You have been invited to join n8n ({{ domain }}).</p>
<p>To accept, click the following link:</p>
<p><a clicktracking=off href="{{ inviteAcceptUrl }}" target="_blank">{{ inviteAcceptUrl }}</a></p>
@ajubin
ajubin / trello-done.md
Last active March 16, 2021 17:32
Trello - Useful bookmarklet to know how much was done in storypoints

Trello - Utils

Sum storypoints of attributed cards in a column and group them by last activity date.

For multi members cards, only your representation is shown.

How to

Setup

To use them simply create a new bookmark and copy past the code in the url field.

@ajubin
ajubin / machine.js
Created April 24, 2020 10:22
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
This file has been truncated, but you can view the full file.
[
{
"points": 89,
"title": "Caymus 1998 Cabernet Sauvignon (Napa Valley)",
"description": "Creamy black cherry aromas layered with fresh brussel sprouts and spicy arugula flavors of red plums and toasted oak.",
"taster_name": null,
"taster_twitter_handle": null,
"price": 70,
"designation": null,
"variety": "Cabernet Sauvignon",
@ajubin
ajubin / wine.ts
Created May 23, 2019 10:14
add-algolia.ts
export const InfiniteHits = connectInfiniteHits(InfiniteHitsComponent);
export const SearchBox = connectSearchBox(({ refine, currentRefinement }) => (
<SearchBoxComponent
onChangeText={text => refine(text)}
value={currentRefinement}
/>
));