Skip to content

Instantly share code, notes, and snippets.

View PaulHalliday's full-sized avatar
🚀
S H I P P I N G

Paul Halliday PaulHalliday

🚀
S H I P P I N G
View GitHub Profile
@PaulHalliday
PaulHalliday / app.py
Created June 7, 2018 04:12
Label Name and ID
# More information can be found on labels here: https://developer.todoist.com/sync/v7/#labels
import todoist
api = todoist.TodoistAPI("0123456789abcdef0123456789abcdef01234567")
api.sync()
labels = api.labels.all()
@PaulHalliday
PaulHalliday / Get-TodoistBackup.ps1
Last active June 11, 2018 16:44 — forked from dansmith65/Get-TodoistBackup.ps1
FIX: Powershell script to download the latest backup from Todoist
# Get-TodoistBackup.ps1
# Created By: Daniel Smith dan@dansmith65.com
#
# Download the latest backup from Todoist
#
$token = ""
$headers = @{
Authorization = "Bearer $token"
}
@PaulHalliday
PaulHalliday / main.dart
Created September 20, 2021 15:52
Elevation
import 'package:flutter/material.dart';
const Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override