I hereby claim:
- I am bennyfactor on github.
- I am bennyfactor (https://keybase.io/bennyfactor) on keybase.
- I have a public key whose fingerprint is 6CA7 5D93 8C28 B486 82FB 9191 67A6 C881 5ABE B552
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| b |
| #!/usr/bin/php | |
| <? | |
| // Load the existing image | |
| $image = new Imagick(dirname(__FILE__) . '/triangle-optical-illusion-1.gif'); | |
| // make animation into filmstrip form | |
| $image = $image->coalesceImages(); | |
| $new_image = new Imagick(); |
It's a lot better to do this in bash, zsh's expansion/glob facilities are too smart for their own good and mess up some of the commands.
wget --random-wait -e robots=off -U mozilla https://manuals.co/workshop/dodge/ram/dodge-ram-1990-workshop-manual-rear-wheel-drive-truck/5575968/{1..1134}
grep -o s3.eu.west.1.amazonaws.com.manuals.co.5575968.bg.\*.png * | sed -e "s/:/.png https:\/\//g" | sed -e "s/^/wget -e robots=off -U mozilla \-O /g" > wget.sh
bash wget.sh
ls | grep -v .png | xargs rm
rename 's/.png$//' *
for f in *; do mv $f `printf %04d ${f}`; done
rename 's/$/.png/' *
| Summary: A fast image processing library with low memory needs | |
| Name: vips | |
| Version: 8.7.4 | |
| Release: 1%{?dist} | |
| License: LGPLv2.1+ | |
| Source0: https://github.com/jcupitt/libvips/releases/download/v8.7.4/%{name}-%{version}.tar.gz | |
| URL: https://github.com/jcupitt/libvips | |
| BuildRequires: chrpath, gtk-doc, libxml2-devel, libjpeg-turbo-devel, libpng-devel | |
| BuildRequires: libtiff-devel, libexif-devel, libgsf-devel, lcms-devel | |
| BuildRequires: ImageMagick-devel, gobject-introspection-devel, libwebp-devel |
| class Mysql55 < Formula | |
| desc "Open source relational database management system" | |
| homepage "https://dev.mysql.com/doc/refman/5.5/en/" | |
| url "https://dev.mysql.com/get/Downloads/MySQL-5.5/mysql-5.5.56.tar.gz" | |
| sha256 "3fd30a24267cef84ee8aeb327a5b08a669d3ab8c4d76d1b1b3b66d26cf777a0a" | |
| bottle do | |
| sha256 "57a68b94580d89ac07c633904da7218bb73092dcbc7d31071d96090a9b65c517" => :sierra | |
| sha256 "867a059b4ea2769b2c54b6124f3c6d0558bdea87d5880043b084850d226d91f3" => :el_capitan | |
| sha256 "477c1abafe1181b27fde3588725e475a0204159621214953deeaf3d4c4c21efa" => :yosemite |
| diff --git source/distro/google-perftools-1.7/src/tcmalloc.cc source/distro/google-perftools-1.7/src/tcmalloc.cc | |
| index 8d94d20..0769425 100644 | |
| --- source/distro/google-perftools-1.7/src/tcmalloc.cc | |
| +++ source/distro/google-perftools-1.7/src/tcmalloc.cc | |
| @@ -137,6 +137,13 @@ | |
| # define WIN32_DO_PATCHING 1 | |
| #endif | |
| +// GLibc 2.14+ requires the hook functions be declared volatile, based on the value of the | |
| +// define __MALLOC_HOOK_VOLATILE. For compatibility with older/non-GLibc implementations, |
| #!/bin/sh | |
| # go to the base directory of your twitter archive, ie something like twitter-YYYY-MM-DD-deadbeefcafe42069 | |
| # run this for loop: | |
| for i in `grep -oh "https://t.co/[[:alnum:]]*" data/*.js | sort | uniq` | |
| do | |
| echo $i $(curl -Is ${i} | grep location | sed -e 's/location./, /') | sed -e 's/ ,/,/' | tee -a tco.csv | |
| done |
| # This is based on https://gist.github.com/whitehat101/87c06c29dabfe15f094ec331b77a7c6d and https://solitum.net/openssl-os-x-el-capitan-and-brew/ | |
| # I take no responsibility for the damage it may do to any other build system you run. | |
| # Disable system integrity protection before this mess. | |
| # Uninstall everything critical to get back to baseline | |
| rbenv uninstall ree-1.8.7-2012.02 |
| From 345c4d6124b1a5802ddaafaf9f74d35a3da46758 Mon Sep 17 00:00:00 2001 | |
| From: Your Mom | |
| Date: Sat, 4 Mar 2023 09:13:11 -0500 | |
| Subject: [PATCH] patch to run on metal for radeon macbook pro on monterey | |
| --- | |
| macos-torch-patch.sh | 12 ++++++++++++ | |
| requirements.txt | 2 +- | |
| webui-user.sh | 25 +++++++++++++++++++++---- | |
| 3 files changed, 34 insertions(+), 5 deletions(-) |