Skip to content

Instantly share code, notes, and snippets.

View mdippery's full-sized avatar
💭
Have you seen an older me go by in a time machine?

Michael Dippery mdippery

💭
Have you seen an older me go by in a time machine?
View GitHub Profile
@mdippery
mdippery / window.m
Last active March 14, 2025 23:34
Get window information using Core Graphics
#import <stdio.h>
#import <sys/sysctl.h>
#import <unistd.h>
#import <Foundation/Foundation.h>
#import <CoreGraphics/CoreGraphics.h>
/* Returns the parent of any arbitrary process, more flexible than
* getpid() and getppid().
*/
@mdippery
mdippery / screen-size.c
Created March 8, 2025 01:29
Get screen resolutions using low-level CoreGraphics primitives
#include <stdio.h>
#include <CoreGraphics/CoreGraphics.h>
// clang -framework CoreGraphics -o screen-size-cg -arch x86_64 -arch arm64 screen-size.c
static void ShowDisplay(CGDirectDisplayID id)
{
CGRect frame = CGDisplayBounds(id);
CGSize resolution = frame.size;
@mdippery
mdippery / screen-size.m
Last active March 8, 2025 01:46
Objective-C program to retrieve screen resolution
#import <stdio.h>
#import <AppKit/AppKit.h>
/* Compilation: clang -framework AppKit -o screen-size -arch x86_64 -arch arm64 main.m */
/* The main issue is that when run from the command line, there is no window
* context, so AppKit doesn't know what the active window is, and thus
* doesn't know what the "main screen" is, so I think it always returns the
* first one. Is there a way to get the window that launched the process
* and return the screen it is on?
@mdippery
mdippery / abilities.py
Last active October 21, 2020 22:36
Calculate expected value of D&D ability generation
#!/usr/bin/env python
import random
import sys
def d6():
return random.randrange(1, 7)
@mdippery
mdippery / Dockerfile
Created April 26, 2019 00:12
Dockerfile for jimmyless/space-web
FROM alpine:3.9 AS checkout
RUN apk add --update git
RUN git clone https://github.com/jimmylee/space-web.git /app
FROM alpine:3.9
RUN apk add --update npm
@mdippery
mdippery / singleton.py
Last active December 12, 2021 03:10
Creating a Singleton in Python
class Singleton(type):
def __init__(cls, name, bases, dict):
super(Singleton, cls).__init__(name, bases, dict)
cls.instance = None
def __call__(cls, *args, **kwargs):
if cls.instance is None:
cls.instance = super(Singleton, cls).__call__(*args, **kwargs)
return cls.instance
@mdippery
mdippery / byte.c
Created October 10, 2018 00:33
Read one byte at a time and print the value
#include <stdio.h>
int main(int argc, char **argv)
{
int i = 0;
int g = 0;
unsigned char ch;
if (argc > 1) {
@mdippery
mdippery / trees.py
Last active April 29, 2016 00:37
Demonstrating depth-first search and breadth-first-search in Python
import random
class TreeNode(object):
def __init__(self, value, left=None, right=None):
self.value = value
self.left = left
self.right = right
def __hash__(self):
@mdippery
mdippery / group.m
Created June 30, 2015 06:20
Get file's group name in Cocoa
#import <Foundation/Foundation.h>
#include <grp.h>
#include <string.h>
#include <sys/stat.h>
@interface FileOwnerManager : NSObject
- (BOOL)isWheelPresent:(NSString *)path;
@end
@implementation FileOwnerManager
@mdippery
mdippery / Blood.hs
Created February 27, 2015 00:47
Blood pressure calculator
import System.Console.GetOpt (ArgOrder(..), getOpt)
import System.Environment (getArgs, getProgName)
data BloodPressureCategory = Normal
| Prehypertension
| Hypertension1
| Hypertension2
| HypertensiveCrisis