Skip to content

Instantly share code, notes, and snippets.

View dylancwood's full-sized avatar

Dylan Wood dylancwood

View GitHub Profile
@dylancwood
dylancwood / time-management-instructions.md
Last active April 19, 2026 19:31
AI Time Management System — Claude Project instructions for daily planning, habit tracking, and weekly reviews using Todoist + Google Calendar

AI Time Management System — Claude Project instructions for daily planning, habit tracking, and weekly reviews using Todoist + Google Calendar

AI Time Management System — Claude Project Instructions

What this is: Instructions for a Claude Project that turns Claude into a personal time management assistant using Todoist and Google Calendar. Paste this into a Claude Project's custom instructions, connect Todoist and Google Calendar via MCP, and you get an AI assistant that plans your day, schedules tasks, tracks habits, and runs daily/weekly reviews.

Requirements: Claude Pro/Team with a Claude Project, Todoist MCP connector, Google Calendar MCP connector.

How to customize: Search for [CUSTOMIZE] tags — these mark the sections you need to adapt to your own life. The system design works as-is; you just need to fill in your details.

@dylancwood
dylancwood / README.md
Created March 21, 2026 20:00
Linear Daemon for Claude Code — polls Linear for labeled issues and spawns autonomous Claude Code agents to implement them

Linear Daemon for Claude Code

A bash daemon that polls Linear for labeled issues and spawns autonomous Claude Code instances to implement them.

How It Works

  1. Polls Linear's GraphQL API every 60 seconds
  2. Finds issues with a configurable label (default: claude) in Todo status
  3. Spawns a claude -p instance in an isolated git worktree for each issue
  4. The Claude agent autonomously: reads the issue, creates a plan, implements the fix, runs tests, merges to main, and pushes
@dylancwood
dylancwood / wmlabs-awesome.md
Last active April 8, 2019 19:37
Walmartlabs Software Engineer job description

Walmart Labs | Software Engineer, All Levels

Extremely competitive compensation package | Portland, OR / Sunnyvale, CA / Remote (USA only ) | Full Time, Contract to Hire

  • Full stack developers: Node.js, React, Typescript
  • Native Mobile developers: iOS, Android
  • DevOps CI/CD toolchain engineer

Are you a passionate engineer with a thirst to build quality software that impacts millions of people? We are the Digital Acceleration team at Walmart Labs, and we share your enthusiasm! Walmart’s mobile apps and website are used daily by millions of customers. As a member of the DA team, you'll be deeply involved with creating novel features that make customer’s lives easier by linking digital and physical shopping experiences.

Our team is energized and expanding rapidly- we are on the forefront of the battle for the future of retail. You'll be working shoulder-to-shoulder with a top-notch and diverse group of iOS, Android and services developers. The team is still small enough to feel intimate, but driven

@dylancwood
dylancwood / data-record-schema.xml
Created December 10, 2015 21:49
add schema for data-records and data-uploads
<?xml version="1.0" encoding="UTF-8"?>
<databaseChangeLog
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.1.xsd">
<changeSet id="add tables for independent-blob schema"
author="DWOOD">
<comment>Create tables for file-record and file-upload schema</comment>

Here's how bad channel data is stored in the COINS DB: Each scan session is stored as a row in the mrs_scan_sessions table. Multiple scan series may be associated with each scan, and are stored in the mrs_series table. Scan metadata categories like bad channels are stored in the mrs_scan_data_types table. Series are associated with many metadata categories the mrs_series_data table (which contains a series_id, a scan_data_type_id and a value).

Exporting this data through our more modern API would result in the following format:

[
@dylancwood
dylancwood / post.md
Created August 16, 2015 00:52
Promise tips

I spent a little time in a Promise rabbit-hole today, and thought I'd share two rules-of-thumb that I came up with to avoid such holes in the future. This came from writing Mocha tests, but it applies to lots of code:

Example:

describe('Some Async Test', () => {
    var myPromise;
    before('Do some async setup', () => {
        myPromise = doSomethingAsync();
 return myPromise;
@dylancwood
dylancwood / gist:3ab0569cff6996c17724
Created July 27, 2015 23:12
scans route with todos
'use strict';
//TODO: add '['api']' tags to each route (see auth/login.js for exampe)
//TODO: also add notes and description fields for swagger.
const boom = require('boom');
exports.register = function(server, options, next) {
const path = '/scans';
// TODO: should be Scan
@dylancwood
dylancwood / testserver.js
Last active August 29, 2015 14:14
Quick server to test whether http module automatically decodes url
var http = require('http');
var server = http.createServer();
server.on('request', function(req, res) {
console.log(req.url);
res.end();
});
server.listen(8123);
@dylancwood
dylancwood / split.js
Created May 10, 2014 00:36
AppData Cleanup!!
/*
TODO:
write a new file that contains calls to each function found in each of the splitFileDirPath
function getSubjectTags() {
return className->getSubjectTags($args);
}
Address methods that reference other methods as '$this->doSomething()'
+ $this->select() Could be addressed by each class extending BaseAppData
+ Grep for methods defined in File 'A' that are referenced in File 'B' using $this->
+ Alternatively, change all calls to '$this' to be $AppData.
@dylancwood
dylancwood / php_leading_zero_numbers.php
Last active December 31, 2015 02:39
This simple script illustrates that PHP interprets digits with leading zeros as an octal. This can cause problems when interpreting user input as an integer without converting it to a string first then parsing it (e.g with intval()).
<?php
echo 'This simple script illustrates that PHP interprets digits with leading zeros as an octal. This can cause problems when interpreting user input as an integer without converting it to a string first then parsing it (e.g with intval()).';
echo '<br>Notice that numbers greater than 7 do not compare nicely with their leading-zero counterparts.';
echo '<br>';
echo '9';
echo '<br>';
echo '9==09 ... ';
echo iif(9==09, 'true', 'false');
echo '<br>';
echo '9==9 ... ';