Bash script which will:
- Iterate all commits made within a Git repository.
| // | |
| // NSObject+Blocks.h | |
| // Filemator | |
| // | |
| // Created by Zachary Waldowski on 4/12/11. | |
| // Copyright 2011 Dizzy Technology. All rights reserved. | |
| // | |
| @interface NSObject (Blocks) |
| [[NSNotificationCenter defaultCenter] addObserverForName:nil object:nil queue:nil usingBlock:^(NSNotification *note) { | |
| NSLog(@"%@: %@", note.name, note.userInfo); | |
| }]; |
| // | |
| // SKTimingFunction.swift | |
| // Pods | |
| // | |
| // Created by Takuya Okamoto on 2015/10/06. | |
| // | |
| // | |
| // inspired by https://gist.github.com/raphaelschaad/6739676 |
| # Claude Opus 3 wrote most of the code below (I edited it as I went). After I was happy, I prompted | |
| # "write me a prompt that will make you emit that code with all the relevant decisions we've made along the way." | |
| # Claude produced the following: | |
| I have a Spotify account and I want to create a Python script that does the following: | |
| Reads a list of artist names from a file named after the artist. For example, if the file is named "artists.txt", the script should create a playlist named "artists". | |
| For each artist in the list, the script should: | |
| Search for an exact match of the artist name on Spotify. | |
| If an exact match is found and the artist has albums, add the tracks from their latest album to the playlist. |