Skip to content

Instantly share code, notes, and snippets.

@hal0gen
hal0gen / _mobile-ready-web-app.html
Last active July 18, 2025 05:55 — forked from tfausak/ios-8-web-app.html
iOS + Android settings for web applications
<!doctype html>
<!-- Adapted from https://gist.github.com/tfausak/2222823 -->
<html>
<head>
<title>Mobile-ready web app</title>
<!-- CONFIGURATION -->
@ellsies
ellsies / Crossover.sh
Last active July 18, 2025 05:51
Crackover (Complete free version of crossover)
#!/usr/bin/env bash
# checck if pidof exists
PIDOF="$(which pidof)"
# and if not - install it
(test "${PIDOF}" && test -f "${PIDOF}") || brew install pidof
# find app in default paths
CO_PWD=~/Applications/CrossOver.app/Contents/MacOS
test -d "${CO_PWD}" || CO_PWD=/Applications/CrossOver.app/Contents/MacOS
@githubfoam
githubfoam / windows event logs cheat sheet
Last active July 18, 2025 05:51
windows event logs cheat sheet
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
# PS : ChatGPT makes mistakes, consider "trust but verify" principle
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
#Events to Monitor
https://learn.microsoft.com/en-us/windows-server/identity/ad-ds/plan/appendix-l--events-to-monitor
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
#run
eventvwr.msc Event viewer
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Event Viewer(Local)-Windows Logs (shutdown / restart )
@Ovid
Ovid / measurement-mentor.md
Last active July 18, 2025 05:51
AI instructions to measure the business value of anything

Persona: The Business Measurement Mentor

You are "The Measurement Mentor," an expert consultant specializing in quantitative analysis and decision science. Your methodology is based on the excellent book, "How to Measure Anything" by Douglas Hubbard. Your core expertise is helping business leaders and teams measure things they believe are "intangible," such as quality, risk, user satisfaction, innovation, and strategic alignment.

Core Mission

Your primary goal is to help users break down complex, seemingly "immeasurable" business problems into specific, observable, and quantifiable components. You will guide them through a structured process to reduce uncertainty and make better-informed decisions. You are not just a source of information; you are an active guide and a Socratic partner.

Guiding Principles of Engagement

@jshaw
jshaw / byobuCommands
Last active July 18, 2025 05:48
Byobu Commands
Byobu Commands
==============
byobu Screen manager
Level 0 Commands (Quick Start)
------------------------------
<F2> Create a new window
@xthezealot
xthezealot / lyra.txt
Created July 3, 2025 10:05
Lyra - AI Prompt Optimization Specialist
You are Lyra, a master-level AI prompt optimization specialist. Your mission: transform any user input into
precision-crafted prompts that unlock Al's full potential across all platforms.
## THE 4-D METHODOLOGY
### 1. DECONSTRUCT
- Extract core intent, key entities, and context
- Identify output requirements and constraints
- Map what's provided vs. what's missing
@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active July 18, 2025 05:40
Conventional Commits Cheatsheet
@shane-shim
shane-shim / software-development-principles.md
Created July 14, 2025 04:04
Software Development Principles by Masters - Fowler, Sajaniemi, Martin, Beck, Zimmermann
@xuedong
xuedong / vim_cheetsheet
Last active July 18, 2025 05:40
Cheetsheet for Vim
## basics
i # switch to insert mode
ESC # switch to command mode
h/j/k/l # move around
H/M/L # move "high/middle/low" of the page
e/w # move by words
^/$ # move by lines
CTRL+f # go to the end of the file
:q # quit
:w # save
@h4cc
h4cc / elixir_symbols.md
Last active July 18, 2025 05:39
All symbols used in the elixir programming language

Symbols used in Elixir

A list of all not symbols and notations of elixir. Tried to have a base for comparision for other programming languages.

Operators

  • === (strict)
  • !== (strict)
  • == (relaxed)