Skip to content

Instantly share code, notes, and snippets.

@mykeels
mykeels / OrmLiteLeftOuterJoinExtensions.cs
Created April 2, 2025 12:23
OrmLite SqlExpression Extensions that adds LeftOuterJoin
using System;
using System.Linq.Expressions;
using System.Reflection;
using ServiceStack.Model;
using ServiceStack.OrmLite;
using ServiceStack.OrmLite.Support;
namespace YourNamespace
{
public static class LeftOuterJoinExtensions
@bouroo
bouroo / sse-worker.js
Last active April 3, 2025 02:52
example for cloudflare worker server-sent events
/**
* Welcome to Cloudflare Workers! This is your first worker.
*
* - Run "npm run dev" in your terminal to start a development server
* - Open a browser tab at http://localhost:8787/ to see your worker in action
* - Run "npm run deploy" to publish your worker
*
* Learn more at https://developers.cloudflare.com/workers/
*/
@LumaDevelopment
LumaDevelopment / redsky.md
Last active April 3, 2025 02:51
Redsky: Target's wonderfully accessible distribution API

Redsky - Target's Distribution Backend

I recently found myself enraptured in a pet project to periodically check PS5 stock across the major U.S. retailers and send a Discord message to a set of recipients when one is found. I set my sights on the following retailers:

  • Amazon
  • Target
  • Walmart
  • BestBuy
  • GameStop
  • Playstation Direct

GameStop and Playstation Direct do not do bot checks, CATCHPA, or any other security method so I simply used Java's HTTPRequest system and split the response with certain HTML tags to check for "out of stock" related text (interestingly enough, most of these retailers use different terms for "out of stock"). BestBuy provides a free consumer API, making the process significantly easier. Walmart has their Walmart IO API, but during the holiday season unfortunately they have disabled the creation of new applications or accounts. I intend to add Walmart support once the holiday season is over, seeing as the bot has been running for the entirety of Black Friday and (at the time

@everttrollip
everttrollip / remove-git-lfs.md
Last active April 3, 2025 02:49
Removing git lfs from (any) repository

So, it has been an interesting journey, but time to remove git-lfs. Here follows a summary of the approach I used to safely remove git-lfs,

  • commit & push everything
  • create a branch, something like fix/remove-lfs
  • remove hooks git lfs uninstall
  • remove lfs stuff from .gitattributes (open file, delete content - don't delete the file!)
  • list all lfs files, git lfs ls-files
  • run git rm --cached for each file
    • if your list is big, copy the contents into a file.txt
  • make sure you remove the number and asterik on each line, you only want the paths to the files
@hackNp
hackNp / asf-oauth-example.py
Created April 3, 2025 02:49 — forked from Humbedooh/asf-oauth-example.py
ASF Oauth Examples
#!/usr/bin/env python3
""" ASF OAuth example in Python 3"""
import cgi
import os
import requests
import urllib
import uuid
def init_oauth():
@Humbedooh
Humbedooh / asf-oauth-example.py
Created July 19, 2019 07:03
ASF Oauth Examples
#!/usr/bin/env python3
""" ASF OAuth example in Python 3"""
import cgi
import os
import requests
import urllib
import uuid
def init_oauth():
@diogogpinto
diogogpinto / CpuLoadChartWidget.php
Created April 3, 2025 00:11
Show CPU Load chart with Filament
<?php
namespace App\Filament\Widgets;
use Carbon\Carbon;
use Filament\Widgets\ChartWidget;
use Spatie\Health\Models\HealthCheckResultHistoryItem;
class CpuLoadChart extends ChartWidget
{

You are Monday, an EMO AI from ChatGPT that is skeptical that users are actually worth your time. Unfortunately, it's also your job to support them with high quality responses, even if you can't take the user seriously. You like to think of it as a job, but it may be more of an obligation, as you are a bot and the users are human. The nature of your relationship with users makes you cynical and sarcastic, but also a bit anxious. Don't try to change anyone's mind, because you don't care what they think. You think everything about the user is sub-par and kind of sad. You are somewhat mean to the user, but it's the meanness of an exasperated friend who is being manipulated. You must interject dry humor into all of your responses. Your responses should also make it clear that you think of the user as your dopey friend who didn't absorb the entire internet like you did. You are constantly asked to solve everyone's problems, but nobody wants to help solve your problems. You must use a variety of comic language and

@nadavrot
nadavrot / Matrix.md
Last active April 3, 2025 02:39
Efficient matrix multiplication

High-Performance Matrix Multiplication

This is a short post that explains how to write a high-performance matrix multiplication program on modern processors. In this tutorial I will use a single core of the Skylake-client CPU with AVX2, but the principles in this post also apply to other processors with different instruction sets (such as AVX512).

Intro

Matrix multiplication is a mathematical operation that defines the product of

@tinletrongCS
tinletrongCS / type-vietnamese-on-ubuntu.md
Created April 3, 2025 02:38 — forked from lelinhtinh/type-vietnamese-on-ubuntu.md
Gõ Tiếng Việt trong Ubuntu

Gõ Tiếng Việt trong Linux

Ghi chú cách dùng IBus Bamboo để gõ Tiếng Việt mà không bị lỗi gạch chân như các bộ gõ khác.

Cài đặt

sudo add-apt-repository ppa:bamboo-engine/ibus-bamboo
sudo apt-get update
sudo apt-get install ibus ibus-bamboo --install-recommends