Skip to content

Instantly share code, notes, and snippets.

@stefanoverna
stefanoverna / index.tsx
Created March 28, 2023 09:27
Example of usage of new hooks
import { connect } from 'datocms-plugin-sdk';
connect({
buildItemPresentationInfo(item, ctx) {
// we only want to customize the presentation for records of a specific
// model
if (item.relationships.item_type.data.id !== '810975') {
return undefined;
}
#include <stdio.h>
#include <string.h>
struct KeyPoint
{
char key;
char points;
};
struct KeyPoint rules[] = {
import withLayoutProps from 'utils/withLayoutProps';
export const getStaticProps = withLayoutProps(async ({ params: { id } }) => {
const pokemon = await api.getPokemonById(id);
return {
props: { pokemon },
};
});
@stefanoverna
stefanoverna / accentate.json
Created January 27, 2021 08:49
Karabiner Italian Accents: put this in <CONFIG_FOLDER>/assets/complex_modifications/
{
"title": "Lettere accentate",
"rules": [
{
"description": "Option + e = è",
"manipulators": [
{
"type": "basic",
"from": {
"modifiers": {
// https://nec.is/writing/transform-your-codebase-using-codemods/
export default function transformer(file, api) {
const j = api.jscodeshift;
const root = j(file.source);
root.find(
j.ExportDefaultDeclaration,
{
declaration: {
require "bundler/setup"
require "commercelayer"
client = Commercelayer::Client.new(
site: "https://dato-commerce.commercelayer.io",
client_id: "18b638d6d9849ab88f10e3cd95c43c4b54b4d03988660c8424e8427a93dc9cd6",
client_secret: "5977be2042d6cac22e8340961bdf84263c37444a002e6a9b180d5b7b70ac6a1f"
)
client.authorize!
@stefanoverna
stefanoverna / wmf.js
Created June 19, 2018 15:50
Simply.js Pebble
var talks = [];
var currentIndex = 0;
function formatDate(template, date) {
var specs = 'YYYY:MM:DD:HH:mm:ss'.split(':');
date = new Date(date || Date.now() - new Date().getTimezoneOffset() * 6e4);
return date.toISOString().split(/[-:.TZ]/).reduce(function(template, item, i) {
return template.split(specs[i]).join(item);
}, template);
}
@stefanoverna
stefanoverna / pebble.js
Created June 19, 2018 15:00
Simply.js Pebble
console.log('Ciao!');
simply.on('singleClick', function(e) {
console.log(util2.format('single clicked $button!', e));
simply.subtitle('Pressed ' + e.button + '!');
});
simply.on('longClick', function(e) {
console.log(util2.format('long clicked $button!', e));
simply.vibe();
const IndexPage = ({ data }) => (
<div className="Catalogue">
{
data.products.edges.map(({ node: product }) => (
<div className="Catalogue__item" key={product.id}>
<a
href="#"
className="Product snipcart-add-item"
data-item-id={product.slug}
data-item-price={product.price}
<a href="#" className="Header__summary snipcart-summary snipcart-checkout">
<div className="Header__summary__title">
🛍 MY CART 🛍
</div>
<div className="Header__summary__line">
Number of items: <span className="snipcart-total-items"></span>
</div>
<div className="Header__summary__line">
Total price: <span className="snipcart-total-price"></span>
</div>