** Step 1 **
Install ffmpeg with the vidstab plugin.
- OSX: Install via Homebrew -
brew install ffmpeg --with-libvidstab
- Linux: download binaries here (vidstab included)
- Windows: download binaries here (vidstab included)
** Step 1 **
Install ffmpeg with the vidstab plugin.
brew install ffmpeg --with-libvidstab
git log --pretty=format:"%h - %an, %ar : %s" |
To be ran with:
claude-3-opus-20240229
0.0
Context: https://twitter.com/VictorTaelin/status/1776677635491344744
public class PalindromeChecker { | |
public static boolean isPalindrome(String string) { | |
String strippedString = string.replaceAll("\\W", ""); | |
int length = strippedString.length(); | |
if (length > 1) { | |
return palindrome(strippedString.toLowerCase(), 0, length - 1); | |
} |
A::B is a system with 4 tokens: `A#`, `#A`, `B#` and `#B`. | |
An A::B program is a sequence of tokens. Example: | |
B# A# #B #A B# | |
To *compute* a program, we must rewrite neighbor tokens, using the rules: | |
A# #A ... becomes ... nothing | |
A# #B ... becomes ... #B A# |
function hideAllOthersSheets() { | |
var spreadsheet = SpreadsheetApp.getActiveSpreadsheet(); | |
var sheets = spreadsheet.getSheets(); | |
var actualSheet = spreadsheet.getActiveSheet().getName() | |
for (var sheet = 0; sheet < sheets.length; s++) { | |
if (sheets[sheet].getName() != actualSheet) { | |
sheets[sheet].hideSheet(); | |
} | |
} |
static void pause(int seconds) { | |
try { | |
Thread.sleep(1000 * seconds); | |
} catch (InterruptedException e) { | |
} | |
} |
static void cleanScreen() { | |
System.out.print("\033[H\033[2J"); | |
System.out.flush(); | |
} |
import java.util.Scanner; | |
class ClassWithScanner { | |
public static void main(String[] args) { | |
Scanner entrada = new Scanner(System.in); | |
entrada.close(); | |
} |
class ClassName { | |
public static void main(String[] args) { | |
} | |
} |