I hereby claim:
- I am jonnyburger on github.
- I am jonnyburger (https://keybase.io/jonnyburger) on keybase.
- I have a public key ASCF5kxi5SE_vRLDOSX3EVzXiuNAcf30d65zlDwdQHJ0fgo
To claim this, I am signing this object:
// We have migrated the captions format to the `Caption` type: | |
// https://remotion.dev/docs/captions/caption | |
// This will allow other captioning solutions as well. | |
// If you have already created captions, migrate them using: | |
// Run this with `bun migrate.ts` | |
import { toCaptions } from "@remotion/install-whisper-cpp"; | |
import { write } from "bun"; |
<!-- Does not work with file:// protocol --> | |
<!-- You need to serve this via localhost, e.g `npx serve .` --> | |
<script type="importmap"> | |
{ | |
"imports": { | |
"@remotion/media-parser/web-fs": "https://unpkg.com/@remotion/[email protected]/dist/esm/web-fs.mjs", | |
"@remotion/media-parser/buffer": "https://unpkg.com/@remotion/[email protected]/dist/esm/buffer.mjs", | |
"@remotion/media-parser": "https://unpkg.com/@remotion/[email protected]/dist/esm/index.mjs", | |
"webcodecs": "https://unpkg.com/@remotion/[email protected]/dist/esm/index.mjs" |
import React from 'react'; | |
import { | |
AbsoluteFill, | |
interpolate, | |
Sequence, | |
spring, | |
useCurrentFrame, | |
useVideoConfig, | |
} from 'remotion'; |
import {AbsoluteFill} from 'remotion'; | |
import React, {useState} from 'react'; | |
import {random, useVideoConfig} from 'remotion'; | |
export const TriangleEntrace: React.FC<{ | |
progress: number; | |
children: React.ReactNode; | |
showMask: boolean; | |
}> = ({children, progress, showMask}) => { | |
const {height, width} = useVideoConfig(); |
sudo yum install autoconf automake bzip2 bzip2-devel cmake freetype-devel gcc gcc-c++ git libtool openjpeg2-devel make mercurial pkgconfig zlib-devel openjpeg2-devel -y | |
mkdir ~/ffmpeg_sources | |
# nasm | |
cd ~/ffmpeg_sources | |
curl -O -L https://www.nasm.us/pub/nasm/releasebuilds/2.14.02/nasm-2.14.02.tar.bz2 | |
tar xjvf nasm-2.14.02.tar.bz2 | |
cd nasm-2.14.02 | |
./autogen.sh | |
./configure --prefix="$HOME/ffmpeg_build" --bindir="$HOME/bin" |
export const App => <DepthCameraComp /> |
I hereby claim:
To claim this, I am signing this object:
- run: | | |
echo "$SUPPLYFILE" | base64 -d > app/android/supplyfile.json | |
env: | |
SUPPLYFILE: ${{ secrets.SUPPLYFILE }} |
diff --git a/android/app/src/main/java/host/exp/exponent/GeofencingTaskConsumer.java b/android/app/src/main/java/host/exp/exponent/GeofencingTaskConsumer.java | |
index b6909fd..076f760 100644 | |
--- a/android/app/src/main/java/host/exp/exponent/GeofencingTaskConsumer.java | |
+++ b/android/app/src/main/java/host/exp/exponent/GeofencingTaskConsumer.java | |
@@ -17,6 +17,7 @@ | |
import com.google.android.gms.location.LocationServices; | |
import java.util.ArrayList; | |
+import java.util.Collections; | |
import java.util.HashMap; |
I want to figure out if it is worth it to upgrade to a faster MacBook for faster JS development.
If you have a MacBook, older or newer than mine, can you help me by running the same benchmark as me. As a benchmark, we are compiling VS Code from TS to JS which is one of the biggest open source TS projects I imagine.
git clone https://github.com/microsoft/vscode