Skip to content

Instantly share code, notes, and snippets.

View arunsathiya's full-sized avatar

Arun Sathiya arunsathiya

View GitHub Profile
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Session Export - 2025-11-14T09-04-57-547Z_f0409d02-08d5-4465-b381-a6073d3ada52.jsonl</title>
<style>
* {
margin: 0;
padding: 0;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Session Export - 2025-11-14T08-52-19-367Z_3f2ecb51-787c-49f8-aea3-d5ff2a81e487.jsonl</title>
<style>
* {
margin: 0;
padding: 0;
@arunsathiya
arunsathiya / 2025-11-14T09-04-57-547Z_f0409d02-08d5-4465-b381-a6073d3ada52.html
Created November 14, 2025 09:12
Pi coding-agent session: GitHub issue creation and gist deployment discussion
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Session Export - 2025-11-14T09-04-57-547Z_f0409d02-08d5-4465-b381-a6073d3ada52.jsonl</title>
<style>
* {
margin: 0;
padding: 0;
@arunsathiya
arunsathiya / 2025-11-14T09-04-57-547Z_f0409d02-08d5-4465-b381-a6073d3ada52.html
Created November 14, 2025 09:12
Pi coding-agent session: Created GitHub issue for message queuing feature
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Session Export - 2025-11-14T09-04-57-547Z_f0409d02-08d5-4465-b381-a6073d3ada52.jsonl</title>
<style>
* {
margin: 0;
padding: 0;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Session Export - 2025-11-14T09-04-57-547Z_f0409d02-08d5-4465-b381-a6073d3ada52.jsonl</title>
<style>
* {
margin: 0;
padding: 0;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Session Export - 2025-11-13T20-08-34-073Z_9ba167be-94c9-4d6e-a386-0b4d24fefcb0.jsonl</title>
<style>
* {
margin: 0;
padding: 0;
@arunsathiya
arunsathiya / sample.txt
Created August 1, 2025 15:09
Sample text file created with Claude Code
Hello from Claude Code!
This is a sample text file created to demonstrate GitHub gist functionality.
Current date: 2025-08-01
Created by: arunsathiya
Purpose: Testing gh CLI gist upload
Feel free to modify this file or use it as a template for your own gists.
const findClosestSlug = (requestedSlug: string, currentSlugs: string[]): string | null => {
const requestedKeywords = extractKeywords(requestedSlug);
let bestMatch = {
slug: '',
score: 0,
matchedKeywords: 0
};
for (const slug of currentSlugs) {
const slugKeywords = extractKeywords(slug);
@arunsathiya
arunsathiya / hide-blocks-certain-widths.css
Created September 28, 2021 08:30
hide-blocks-certain-widths.css
@media screen and (min-width: 1100px) {
.home .to-show-on-mobile {
display: none;
}
}
@media screen and (min-width: 782px) and (max-width: 1099px) {
.home .to-show-on-mobile {
display: none;
}
# (c) 2020 Humu
# MIT License
from typing import Any
import github
AUTOMERGE_LABEL_NAME = 'automerge'