Skip to content

Instantly share code, notes, and snippets.

View jugidev's full-sized avatar
🎯
Focusing

Julian Giesen jugidev

🎯
Focusing
View GitHub Profile
import { createStore } from "https://framer.com/m/framer/store.js@^1.0.0"
import { useEffect, useState, ComponentType } from "react"
import {
HEADINGS,
formatHeadings,
formatTableOfContent,
} from "https://framer.com/m/Utils-WIyM.js"
// Made with love by Clément: https://lionneclement.com/
// Full tutorial: https://framermart.com/tutorial/how-to-create-table-of-contents-cms-collections-framer
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active November 1, 2025 14:03
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@remarkablemark
remarkablemark / hide-status-bar-in-iphone-simulator.md
Created July 13, 2016 00:16
How to hide the status bar in the iPhone Simulator.

Hide status bar in iPhone Simulator

  1. Open Info.plist.
  2. Add row with key View controller-based status bar appearance and value NO if not present.
  3. Add row with key Status bar is initially hidden with value YES if not present.
  4. Save and run the project.

Source