Skip to content

Instantly share code, notes, and snippets.

View zacharyc's full-sized avatar
Working from home

Zachary Cohen zacharyc

Working from home
View GitHub Profile
#!/usr/bin/env ruby
if ARGV.count < 1
puts "Usage: #{$0} projectName"
exit
end
projectName = ARGV[0];
puts "Creating a web project: " + projectName
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
if (indexPath.section == TIP_SECTION && indexPath.row == TIP_ROW) {
if (cell.userInteractionEnabled) {
[cell layoutSubviews];
UIView *editView = [self pencilView];
editView.frame = CGRectMake(cell.textLabel.frame.origin.x + cell.textLabel.frame.size.width + X_OFFSET,
cell.textLabel.frame.origin.y - Y_OFFSET,
editView.frame.size.width,
editView.frame.size.height);
@zacharyc
zacharyc / email.html
Created November 18, 2021 23:34
Just an email Template for HTML Email
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Lime Insurance</title>
<style type="text/css">
body{
-webkit-text-size-adjust:none;
-ms-text-size-adjust:none;
@zacharyc
zacharyc / better.tsx
Created November 19, 2021 22:05
How do I do this better
const openApiList = [
{
swagger: "2.0",
info: {
description: "Test API",
version: "1.0.0",
title: "Request Catcher Testing API",
},
host: "kyung.requestcatcher.com",
basePath: "/root",