Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env php
<?php
define( 'DEBUG_RECURSION', false );
if ( $_SERVER['argc'] > 1 ) {
if ( substr( $_SERVER['argv'][1], 0, 1 ) !== "/" ) {
define( 'FUNCTION_MATCH', "/" . preg_quote( $_SERVER['argv'][1] ) . "/" );
} else {
define( 'FUNCTION_MATCH', $_SERVER['argv'][1] );

About this document

This will tell you how to use your iPhone as a webcam input source on your Mac (running OSX) for web based video conferencing apps such as WhereBy and VirtualEDH

So... How absurd is this setup? Well here in the opening of 2020 with the pandemic drying up the market for cheap webcams... it's a lot less absurd now than it would have been 3 months ago, and probably a lot more absurd after that whole thing clears up. Right now finding a webcam can be difficult.

Phase 1: Install Software

On your iPhone

Download a full screen camera app. I used FullScreeen which cost me one dollar in app to buy pro as an IAP

@apokalyptik
apokalyptik / bash.face.sh
Last active March 16, 2022 14:45
fun, crazy, little bash prompt
#!/bin/bash
function my_custom_prompt {
ECODE=$?
local HAPPYF=( "('◡')" '(•‿•)' '(˘‿˘)' '(^‿^)' )
local SADF=( '(⊙‸⊙)' '(⊙_☉)' '(o_O)' )
local BLACK="\[\033[0;30m\]"
local LBLACK="\[\033[0;90m\]"
@apokalyptik
apokalyptik / init.lua
Created March 16, 2023 17:56
My NVIM configuration
-- Install packer
local install_path = vim.fn.stdpath 'data' .. '/site/pack/packer/start/packer.nvim'
local is_bootstrap = false
if vim.fn.empty(vim.fn.glob(install_path)) > 0 then
is_bootstrap = true
vim.fn.system { 'git', 'clone', '--depth', '1', 'https://github.com/wbthomason/packer.nvim', install_path }
vim.cmd [[packadd packer.nvim]]
end