Skip to content

Instantly share code, notes, and snippets.

View MKlblangenois's full-sized avatar
👨‍💻
Busy to make the world better #JAMstackLover

Logan Blangenois MKlblangenois

👨‍💻
Busy to make the world better #JAMstackLover
View GitHub Profile
@t3dotgg
t3dotgg / try-catch.ts
Last active April 2, 2025 19:12
Theo's preferred way of handling try/catch in TypeScript
// Types for the result object with discriminated union
type Success<T> = {
data: T;
error: null;
};
type Failure<E> = {
data: null;
error: E;
};
@treetrum
treetrum / index.js
Last active August 19, 2021 09:33
jQuery Slideup & Slidedown replacement with GSAP - TweenLite
import { TweenLite } from 'gsap';
const DEFAULT_DURATION = 0.3;
export const hideElement = (el, speed = DEFAULT_DURATION) => {
const oldSpacing = { height: el.clientHeight };
const newSpacing = { height: 0 };
const additionalSpacingProperties = ['paddingTop', 'paddingBottom', 'marginTop', 'marginBottom'];
additionalSpacingProperties.forEach(property => {
@ethicka
ethicka / localhost-ssl-certificate.md
Last active March 25, 2025 20:43
Localhost SSL Certificate on Mac OS

🚨 2020 Update: I recommend using mkcert to generate local certificates. You can do everything below by just running the commands brew install mkcert and mkcert -install. Keep it simple!


This gives you that beautiful green lock in Chrome. I'm assuming you're putting your SSL documents in /etc/ssl, but you can put them anywhere and replace the references in the following commands. Tested successfully on Mac OS Sierra and High Sierra.

Set up localhost.conf

sudo nano /etc/ssl/localhost/localhost.conf

@mdo
mdo / 00-intro.md
Last active March 4, 2025 19:03
Instructions for how to affix an Ikea Gerton table top to the Ikea Bekant sit-stand desk frame.

Ikea Bekant standing desk with Gerton table top

@mattclements
mattclements / function.php
Last active October 29, 2024 22:04
Wordpress Disable Comments (add to function.php)
<?php
add_action('admin_init', function () {
// Redirect any user trying to access comments page
global $pagenow;
if ($pagenow === 'edit-comments.php') {
wp_redirect(admin_url());
exit;
}