Skip to content

Instantly share code, notes, and snippets.

@msmuenchen
msmuenchen / 00_MAIN.md
Last active April 7, 2025 01:45
Patching around the Samsung Wearable ecosystem for fun and (no) profit

tl;dr: Samsung is a bunch of crap company that doesn't inform their customers about serious limitations on their Wearables lineup. Great hardware, dog poo software.

So, what's this about: Samsung omits a bunch of crucial information for consumers anywhere on the Galaxy Watch product pages - at least on those for the Galaxy Watch 4, Galaxy Watch 5 or Galaxy Watch 6.

They omit on the product pages, the pages that should inform a consumer about requirements and limitations, that:

  1. unless you're rooted, the companion phone actually must be a phone, tablets and even phablets like the Galaxy Tab Active 3 are not supported. (If you're rooted, you can patch that away. Just follow along for the guide)
  2. only certain wearables
@sarah-j-smith
sarah-j-smith / simple-vimrc
Last active April 7, 2025 01:42
Simple .vimrc for Mac OSX
" Use spaces instead of tabs
set expandtab
" Be smart when using tabkey
set smarttab
" 1 tab == 4 spaces
set shiftwidth=4
set tabstop=4
@qwfys
qwfys / 202005281327.md
Last active April 7, 2025 01:40
国内拉取google kubernetes镜像
@ryerh
ryerh / tmux-cheatsheet.markdown
Last active April 7, 2025 01:38 — forked from MohamedAlaa/tmux-cheatsheet.markdown
Tmux 快捷键 & 速查表 & 简明教程

注意:本文内容适用于 Tmux 2.3 及以上的版本,但是绝大部分的特性低版本也都适用,鼠标支持、VI 模式、插件管理在低版本可能会与本文不兼容。

Tmux 快捷键 & 速查表 & 简明教程

启动新会话:

tmux [new -s 会话名 -n 窗口名]

恢复会话:

@thomaspark
thomaspark / bobross.css
Last active April 7, 2025 01:35
Bob Ross’ color palette in CSS
.sap-green {
background-color: #0A3410;
}
.sap-green-text {
color: #0A3410;
}
.sap-green-border {
border-color: #0A3410;
}
Registered Name: https://zhile.io
License Key: 48891cf209c6d32bf4
@devinschumacher
devinschumacher / post.md
Last active April 7, 2025 01:33
The Best Components, Templates & Block Libraries for React, Next.js & Tailwind UI
title tags
The Best Component Libraries for React, Next.js & Tailwind UI
react
next.js
tailwindcss
ui components

The Best Component Libraries for React, Next.js & Tailwind UI

In modern web development, leveraging component libraries can significantly accelerate the development process, ensure design consistency, and enhance user experience. Below is a curated list of notable component libraries tailored for React, Next.js, and Tailwind CSS, highlighting their features and applications.

@RedToor
RedToor / Suma.asm
Last active April 7, 2025 01:32
Suma en Lenguaje Ensamblador
; 1) PROGRAM in ASM FOR 8086/x32
; by RedToor
.MODEL SMALL
.STACK
.DATA
N1 DB 0 ; VARIABLE PARA ENTRADA 1
N2 DB 0 ; VARIABLE PARA ENTRADA 2
N3 DB 0 ; VARIABLE PARA RESULTADO
@0xdevalias
0xdevalias / reverse-engineering-macos.md
Last active April 7, 2025 01:30
Some notes, tools, and techniques for reverse engineering macOS binaries
@pontusab
pontusab / proximity-prefetch.tsx
Created April 6, 2025 06:43
Next.js Proximity Prefetch (PPF)
"use client";
import { useRouter } from "next/navigation";
import type { ReactNode } from "react";
import { useCallback, useEffect, useState } from "react";
interface ProximityPrefetchProps {
children: ReactNode;
threshold?: number;
predictionInterval?: number;