From a7ca2f9377b00d2ab734e1947d44361356759bfb Mon Sep 17 00:00:00 2001 From: Jeeves Date: Fri, 14 Feb 2025 17:05:43 -0700 Subject: [PATCH] clean up and add README --- README.md | 6 ++++++ src/main.zig | 31 +------------------------------ 2 files changed, 7 insertions(+), 30 deletions(-) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..3e5665d --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +# Streamboy! + +Jeeves' personal streaming toolkit. + +{insert stereotypical message of This Is A Mess Not Designed For Others} +so Good Luck Have Fun :) diff --git a/src/main.zig b/src/main.zig index 40e22ff..7eea06a 100644 --- a/src/main.zig +++ b/src/main.zig @@ -31,9 +31,6 @@ pub fn main() !void { // }, allocator); // try vlc.spawn(); - // const buf = try allocator.alloc(u8, 1024 * 32); - // defer allocator.free(buf); - var tz_file = try std.fs.openFileAbsolute("/etc/localtime", .{}); defer tz_file.close(); var tz = try std.tz.Tz.parse(allocator, tz_file.reader()); @@ -44,14 +41,13 @@ pub fn main() !void { try updateStatus(allocator); scroll += 1; } - // ♪ Red Soul (Super Metroid) - Nostalvania, The OC Jazz Collective // try vlc.kill(); } const base64_encoder = std.base64.standard.Encoder; -const topic = "Something Fun For Everyone With Streamboy!!!!!!!!"; +const topic = "Something Fun For Everyone With Streamboy!!!!!!!! git.jeevio.xyz/jeeves/streamboy"; var scroll: usize = 0; @@ -137,28 +133,6 @@ fn getSongInfo(allocator: std.mem.Allocator) !SongInfo { } } - // var new_title: ?[]const u8 = null; - // if (title) |t| { - // std.debug.print("{s}\n", .{t}); - - // // if (std.mem.indexOf(u8, t, "&#")) |amp| { - // // if (std.mem.indexOfScalarPos(u8, t, amp, ';')) |semi| { - // // const int = try std.fmt.parseInt(u8, t[amp + 2 .. semi], 10); - // // const new = try allocator.alloc(u8, std.mem.replacementSize(u8, t, t[amp .. semi + 1], &[1]u8{int})); - // // errdefer allocator.free(new); - // // _ = std.mem.replace(u8, t, t[amp .. semi + 1], &[1]u8{int}, new); - // // new_title = new; - // // } - // // } - // } - - // if (title) |t| title = try allocator.dupe(u8, t); - // errdefer if (title) |t| allocator.free(t); - // if (album) |a| album = try allocator.dupe(u8, a); - // errdefer if (album) |a| allocator.free(a); - // if (artist) |a| artist = try allocator.dupe(u8, a); - // errdefer if (artist) |a| allocator.free(a); - return .{ .title = title, .album = album, @@ -219,9 +193,6 @@ fn updateTime(tz: std.Tz) !void { }); } -// example format -// Friday 14 February 2025 10:32:48 AM - fn getMonthName(month: std.time.epoch.Month) []const u8 { return switch (month) { .jan => "January",