I hereby claim:
- I am matteogheza on github.
- I am matteogheza (https://keybase.io/matteogheza) on keybase.
- I have a public key ASBOugiVGSeGepcHkc4FckeWDN3jH-_zVIh5SAUNthtpAAo
To claim this, I am signing this object:
| param( | |
| [string]$Url, | |
| [string]$TimestampsFile, | |
| [string]$OutputDir | |
| ) | |
| if (-not $Url -or -not $TimestampsFile -or -not $OutputDir) { | |
| Write-Host "Usage: .\download_clips.ps1 -Url <video_url> -TimestampsFile <timestamps.txt> -OutputDir <output_dir>" | |
| exit | |
| } |
| #!/usr/bin/env python3 | |
| import subprocess | |
| import sys | |
| import argparse | |
| from datetime import datetime | |
| import os | |
| # python git_log.py --repo /path/to/repo --strings "redacted_string1" "redacted_string2" |
| // Go to https://photos.google.com/search/_tra_ | |
| javascript:(function(){ | |
| let count = 0, maxRuns = 50; | |
| let intervalTime = 800; | |
| function clickCheckboxes(){ | |
| let boxes = document.querySelectorAll('div[role="checkbox"][aria-label*="RAW" i]'); | |
| let unchecked = 0; | |
| boxes.forEach(e=>{ | |
| if(e.getAttribute('aria-checked')!=='true'){ | |
| e.click(); |
| // Vibe-coded since I'm in a hurry, but it gets the work done | |
| const puppeteer = require('puppeteer'); | |
| const width = 1707; | |
| const height = 13062; | |
| //const zoomFactor = 1.5; | |
| const zoomFactor = 1; | |
| const url = "http://localhost:8000/"; |
| SELECT "focalLength", COUNT(*) AS "count" | |
| FROM "main"."AgHarvestedExifMetadata" | |
| WHERE "focalLength" IS NOT NULL | |
| GROUP BY "focalLength" | |
| ORDER BY "focalLength" ASC; |
I hereby claim:
To claim this, I am signing this object:
| $Folder = Read-Host "Specify folder with videos" | |
| $TMPFolder = "tmp" | |
| $SkippedFilesNumber = 0 | |
| If (Test-Path -Path $TMPFolder -PathType Container) { | |
| Get-ChildItem -Path $TMPFolder -Include *.* -Recurse | foreach { $_.Delete()} | |
| } Else { | |
| New-Item $TMPFolder -ItemType Directory > $null | |
| } |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE FixtureDefinition> | |
| <FixtureDefinition xmlns="http://www.qlcplus.org/FixtureDefinition"> | |
| <Creator> | |
| <Name>Q Light Controller Plus</Name> | |
| <Version>4.12.6</Version> | |
| <Author>Lars Kildholt and Matteo Gheza</Author> | |
| </Creator> | |
| <Manufacturer>Stairville</Manufacturer> | |
| <Model>CX-30 RGB WW Bk</Model> |
| # Go to https://gist.github.com/MatteoGheza/17a63a6b27e1b1d37aa62cdba7d7f2b1 for more information | |
| <IfModule mod_rewrite.c> | |
| <IfModule mod_negotiation.c> | |
| Options -MultiViews -Indexes | |
| </IfModule> | |
| RewriteEngine On |