Skip to content

Instantly share code, notes, and snippets.

View ar-juan's full-sized avatar

Arjan ar-juan

  • Rotterdam, The Netherlands
View GitHub Profile
@ar-juan
ar-juan / Resize iPhone videos
Created October 30, 2023 20:04
Script to resize videos, keeping all metadata. I use it to make iCloud videos smaller.
#!/bin/bash
# Source directory for input files
src_dir="/Volumes/ExterneSSD/Resize/ToBeConverted"
# Destination directory for converted files
dest_dir="/Volumes/ExterneSSD/Resize/Resized"
# Directory for moved original files
converted_originals_dir="/Volumes/ExterneSSD/Resize/ConvertedOriginals"
@ar-juan
ar-juan / rateview.php
Created September 3, 2013 09:03
Saves rating (1-5) of 'id' in MySQL database input: id, stars output: html success or fail, new total votes
<?php
header("Cache-Control: no-cache");
header("Pragma: nocache");
include("../phpsqlajax_dbinfo.php");
$units=5.0; // number of units possible
$id_sent = $_GET['id'];
$vote_sent = $_GET['stars'];
$ip =$_SERVER['REMOTE_ADDR'] ;
try {