Skip to content

Instantly share code, notes, and snippets.

View seveibar's full-sized avatar
💭
twitter dms or mentions to get my attenion!

Severin Ibarluzea seveibar

💭
twitter dms or mentions to get my attenion!
View GitHub Profile
{ "title": "Test JSON", "someNumbers": [1,2,3] }
@seveibar
seveibar / presign_post_message.rb
Last active February 13, 2021 22:43
Presigning ReceiveMessage and SendMessage SQS Queue Operations in Ruby
require "httparty"
require("aws-sdk")
message_body = { "hello": "world" }
msg_body_encoded = CGI.escape(message_body.to_json)
signer = Aws::Sigv4::Signer.new(
service: "sqs",
region: "us-east-1",
access_key_id: "ACCESS KEY ID",

Seam Connect NoiseAware Integration Guide

This guide is for Seam Connect customers who are interested in enabling their users (airbnb hosts, homeowners etc.) to grant access to their NoiseAware devices. By using Seam Connect, customers can see all of a host's devices, see noise events, and add, change or remove noise thresholds.

Getting Started

All requests to the Seam API should have the following header:

# This file has been auto-generated by i3-config-wizard(1).
# It will not be overwritten, so edit it as you like.
#
# Should you change your keyboard layout some time, delete
# this file and re-run i3-config-wizard(1).
#
# i3 config file (v4)
#
# Please see https://i3wm.org/docs/userguide.html for a complete reference!
const dictionary = {
word1List: [
"afraid",
"ancient",
"angry",
"average",
"bad",
"big",
"bitter",
"black",
@seveibar
seveibar / prebuilt-with-fake.tsx
Created May 26, 2023 23:54
Seam prebuilt component using fake, read-only server
import { SeamProvider, DeviceTable } from "@seamapi/react"
export default () => {
return (
<SeamProvider
endpoint="https://react.seam.co/api"
clientSessionToken="seam_cst1_0000"
>
<DeviceTable />
</SeamProvider>
import { Circuit } from "@tscircuit/core"
const circuit = new Circuit()
circuit.add(
<board width="12mm" height="10mm">
<chip
name="U1"
footprint="soic8"
pinLabels={{ pin1: "PWR", pin8: "GND" }}