If .DS_Store was never added to your git repository, simply add it to your .gitignore file.
.gitignore
In your the root directory of your app and simply write
#!/usr/bin/env python3 | |
""" | |
Professional Vedic Calendar Calculator using Skyfield | |
Calculates Ekadashi, Purnima, and Important Fasting Dates with NASA-grade precision | |
Installation: pip install skyfield pytz | |
Data files download automatically on first run (~20MB) | |
FIXED: Resolved Skyfield vector addition error in get_sun_moon_times() | |
""" |
import json | |
from pathlib import Path | |
import requests | |
import subprocess | |
import os | |
import base64 | |
from urllib.parse import urlparse | |
# Configuration |
// ==UserScript== | |
// @name GDPR Cookies Unconsent | |
// @namespace http://legbehindneck.com/unconsent | |
// @version 1.0 | |
// @description Uncheck all cookie consent checkboxes | |
// @author legbehindneck | |
// @match *://*/* | |
// @grant none | |
// ==/UserScript== |
#!/usr/bin/env python3 | |
import json | |
import re | |
import sys | |
from pathlib import Path | |
# install with: pip3 install openai — see https://pypi.org/project/openai/ | |
from openai import OpenAI |
const pw = require('playwright'); | |
const UserAgent = require('user-agents'); | |
const uuid = require('uuid'); | |
const tmp = require('tmp-promise'); | |
const UINT32_MAX = (2 ** 32) - 1; | |
const WEBGL_RENDERERS = ['ANGLE (NVIDIA Quadro 2000M Direct3D11 vs_5_0 ps_5_0)', 'ANGLE (NVIDIA Quadro K420 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (NVIDIA Quadro 2000M Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (NVIDIA Quadro K2000M Direct3D11 vs_5_0 ps_5_0)', 'ANGLE (Intel(R) HD Graphics Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) HD Graphics Family Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (ATI Radeon HD 3800 Series Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) HD Graphics 4000 Direct3D11 vs_5_0 ps_5_0)', 'ANGLE (Intel(R) HD Graphics 4000 Direct3D11 vs_5_0 ps_5_0)', 'ANGLE (AMD Radeon R9 200 Series Direct3D11 vs_5_0 ps_5_0)', 'ANGLE (Intel(R) HD Graphics Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) HD Graphics Family Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) HD Graphics Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) HD Graphics Family Direct3D |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>WebSocket Client</title> | |
<style> | |
#output { | |
border: solid 1px #000; | |
} | |
</style> | |
</head> |
#!/bin/sh -x | |
set -e | |
SIZES=" | |
16,16x16 | |
32,16x16@2x | |
32,32x32 | |
64,32x32@2x | |
128,128x128 |
#!/usr/bin/env python3 | |
# | |
# Example Usage | |
# ------------------------------------------------------------------------------- | |
# modify dates from 30-10-2024 to 2024-10-30 | |
# find-replace-in-files25.py -g "*.html" "(\d\d)-(\d\d)-(\d\d\d\d)" "\3-\2-\1" | |
# ------------------------------------------------------------------------------- | |
import argparse |
#!/usr/bin/env python3 | |
import codecs | |
import fnmatch | |
from pathlib import Path | |
from urllib.parse import urlparse | |
import lxml.html | |
import requests | |
import urllib3 | |
from lxml.etree import ElementTree |