Skip to content

Instantly share code, notes, and snippets.

View nfarina's full-sized avatar

Nick Farina nfarina

View GitHub Profile
@nfarina
nfarina / UIWebView+HideShadows.h
Created July 7, 2010 15:18
Hide Shadows from UIWebView
// Removes those unsightly shadows from the top+bottom of your nice webview
@interface UIWebView (HideShadows)
- (void)hideShadows;
- (void)showShadows;
@end
@nfarina
nfarina / base.js
Created January 5, 2011 21:36
A minimal jQuery-based JavaScript UI framework. In-progress and a bit raw.
(function(){ // begin private function
var copyProperties = function(props, o, overwrite, wrapFunctions) {
var wrap = wrapFunctions ? wrapFunctionWithSelf : nowrapFunction;
if (props) {
for (key in props) if (overwrite || o[key] === undefined) {
var getter = props.__lookupGetter__(key);
var setter = props.__lookupSetter__(key);
@nfarina
nfarina / NSDate+Drawing.h
Created November 17, 2011 15:49
Useful functions for drawing NSDate in the exact style of Apple's iOS Mail app.
/*
The MIT License
Copyright (c) 2010 Nick Farina
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
@nfarina
nfarina / UIView+FrameAdditions.h
Created August 21, 2012 06:40
UIView Frame helper getter/setter category methods
#import <UIKit/UIKit.h>
@interface UIView (SMFrameAdditions)
@property (nonatomic, assign) CGPoint $origin;
@property (nonatomic, assign) CGSize $size;
@property (nonatomic, assign) CGFloat $x, $y, $width, $height; // normal rect properties
@property (nonatomic, assign) CGFloat $left, $top, $right, $bottom; // these will stretch the rect
@end
@nfarina
nfarina / Client.java
Created October 16, 2013 19:30
Code to reproduce an issue where Vert.x's `HttpClient.connectWebSocket()` hangs indefinitely and never calls the exception handler, if the connection is terminated during WebSocket connection negotiation.
HttpClient httpClient = vertx.createHttpClient();
httpClient.setHost("localhost");
httpClient.setPort(8888);
httpClient.setConnectTimeout(1000); // 1 second
httpClient.exceptionHandler(new Handler<Throwable>() {
@Override
public void handle(Throwable event) {
System.out.println("Failed!"); // never called
}
});
@nfarina
nfarina / mock-storage.js
Last active November 23, 2023 15:50
Mock Google Cloud Storage for JS
//
// Quick & Dirty Google Cloud Storage emulator for tests. Requires
// `stream-buffers` from npm. Use it like this:
//
// `new MockStorage().bucket('my-bucket').file('my_file').createWriteStream()`
//
class MockStorage {
buckets: {[name: string]: MockBucket};
@nfarina
nfarina / AutoThemeSwitcher.js
Created May 14, 2019 19:04
Auto Dark Theme for Storybook
import addons from '@storybook/addons';
import { FORCE_RE_RENDER } from '@storybook/core-events';
import { themes } from '@storybook/theming';
// Automatically switch light/dark theme based on system pref.
addons.register("auto-theme-switcher", api => {
const prefersDark = window.matchMedia('(prefers-color-scheme: dark)');
let lastTheme;
@nfarina
nfarina / useLocalStorage.ts
Last active December 24, 2022 15:04
Fix for Safari
import { useCallback, useEffect, useState } from "react";
// Adapted from:
// https://github.com/rehooks/local-storage/blob/master/src/use-localstorage.ts
type Setter<S> = (value: S) => any;
/**
* React hook to enable updates to state via localStorage.
* This updates when the {writeLocalStorage} function is used, when the returned function
@nfarina
nfarina / duolingohelper.js
Last active February 28, 2022 16:10
UserScript adding useful features to Duolingo, including more keyboard shortcuts, and hiding the "hint text" for translation exercises to focus on listening skills.
// ==UserScript==
// @name Duolingo Helper
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Adds useful features to Duolingo, including more keyboard shortcuts, and hidden "hint text" for translation exercises to concentrate on listening skills.
// @author Nick Farina
// @match https://*.duolingo.com/*
// @grant none
// ==/UserScript==
/**
* A "fast" version of @types/styled-components that does not impact the
* performance of the TypeScript language service (which is directly related to
* the performance of VSCode).
*
* NOTE: This implements only a fraction of the features provided by the
* @types/styled-component package. Notably, it does not support typing the
* "props" parameter when interpolating within template strings. If someone
* knows how to type that without impacting performance, please let me know!
*/