Skip to content

Instantly share code, notes, and snippets.

View devDoubleH's full-sized avatar
👨‍💻
Trying to speak native in JavaScript

Ismoiljon devDoubleH

👨‍💻
Trying to speak native in JavaScript
View GitHub Profile
@balazsorban44
balazsorban44 / apple-gen-secret.mjs
Last active October 8, 2024 11:35
Script to generate Apple Client secret
// This is now built into `npx auth add apple`! :tada:
// https://github.com/nextauthjs/cli/pull/10
#!/bin/node
import { SignJWT } from "jose"
import { createPrivateKey } from "crypto"
if (process.argv.includes("--help") || process.argv.includes("-h")) {
@gokulkrishh
gokulkrishh / media-query.css
Last active November 10, 2024 02:00
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
/* CSS */