Skip to content

Instantly share code, notes, and snippets.

View sibelius's full-sized avatar
🦈
give me a feedback https://entria.feedback.house/sibelius

Sibelius Seraphini sibelius

🦈
give me a feedback https://entria.feedback.house/sibelius
View GitHub Profile
@biantris
biantris / twitter-101.md
Created December 16, 2022 04:15
twitter 101 by @sibelius
  • learn to read the collective consciousness
  • tweet about trending stuff
  • read a lot
  • extract phrases from books, articles and tweet
  • make people think
  • generate unique and good content
  • link and relink your content
  • help a lot of people
  • provide mentorship
  • provide more value to your subscribers, followers
@brian-codes
brian-codes / nivo-arc.es.js
Created December 5, 2022 07:19
Solution to overlapping labels
var computeArcLink = function computeArcLink(arc, offset, diagonalLength, straightLength) {
var centerAngle = getNormalizedAngle(arc.startAngle + (arc.endAngle - arc.startAngle) / 2 - Math.PI / 2);
const { angleDeg } = arc;
const absSin = Math.abs(Math.sin(centerAngle));
const offsetReducer = angleDeg < 10 ? 1 : 2;
const baseOffset = radiansToDegrees(Math.asin(absSin)) / offsetReducer;
const linkDiagonalLengthOffset = baseOffset * absSin;
var point0 = positionFromAngle(centerAngle, arc.outerRadius);
@Grubba27
Grubba27 / 2fa.svelte
Created November 29, 2022 23:47
2fa example
<script>
let twoFactor;
let isCorrect = true;
$: isCorrect
function maybeRight() {
console.log(twoFactor)
Math.random() > 0.5 ? isCorrect = true : isCorrect = false;
}
@CMCDragonkai
CMCDragonkai / tagged_unions_in_typescript.md
Created November 6, 2022 05:50
Tagged Unions in TypeScript #typescript #adt

There are number of ways of creating tagged unions.

type X = { type: A, prop: number } | { type: B, prop: string };

type Y = { type: A, data: { prop: number } } | { type: B, data: { prop: string } };

type Z = ['A', { prop: number }] | ['B', { prop: string }];
const PericiaList = () => {
const navigate = useNavigate();
const [isLoading, setIsLoading] = useState(true);
const [pericias, setPericias] = useState([] as PericiaWithCarAndCostumer[]);
const [periciasFiltered, setPericiasFiltered] = useState(
[] as PericiaWithCarAndCostumer[]
);
const periciasFilterContext = useContext(
PericiasFilterContext
) as PericiasFilterContextProps;
@beauwilliams
beauwilliams / Vagrant-M1-Install.bash
Last active March 19, 2025 01:08
Run x86 VM's on Mac M1 arm using vagrant with qemu hypervisor
brew install vagrant qemu
#Due to dependency errors, we must install vbguest first..
vagrant plugin install vagrant-vbguest
vagrant plugin install vagrant-qemu
#cd to working dir you like to keep your vagrant files
cd ~/VM-and-containers/VagrantMachines/M1-vagrantfiles/ubuntu18-generic-64/
#Create a vagrant file
$EDITOR Vagrantfile
@ak4zh
ak4zh / migration.sql
Created September 22, 2022 08:48
Double Entry Book Keeping with Journals and Voucher
CREATE TABLE public.vouchers (
id serial PRIMARY KEY,
name text NOT NULL
);
INSERT INTO vouchers
(name)
VALUES
('Sales'),
('Purchase'),
@sibelius
sibelius / woovi_job.md
Last active August 31, 2024 16:18
Woovi Job Description
@tyhopp
tyhopp / render-to-pipeable-stream-error-handling.js
Last active May 6, 2024 10:23
renderToPipeableStream error handling
const React = require(`react`);
const { renderToPipeableStream } = require(`react-dom/server`);
const { Writable } = require(`stream`);
function MyComponent() {
throw new Error(`My error`);
}
class MyWritableStream extends Writable {
constructor() {
@bassemawhoob
bassemawhoob / cohort.sql
Last active April 12, 2024 18:15
Revenue Retention Cohort Analysis - PostgreSQL
-- Based on: https://medium.com/quick-code/how-to-write-sql-to-calculate-user-cohort-retention-a1b3b57c7a2f
-- Uses DATE_PART instead of DATE_DIFF as it is not supported by PostgreSQL
-- (branch_id, scheduled_for, total_cents)
WITH activities AS (
SELECT branch_id, scheduled_for, total_cents
FROM orders
WHERE orders.status = 'complete'
),
-- (branch_id, cohort_month): cohort month is the first order date