These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.
| const allContent = [] | |
| function createCSV(data, fileName) { | |
| const headers = [ | |
| 'id', | |
| 'email', | |
| 'firstName', | |
| 'lastName', | |
| 'postId', | |
| 'postText', |
| import * as stream from 'stream'; | |
| import { promisify } from 'util'; | |
| const finished = promisify(stream.finished); | |
| export async function downloadFile(fileUrl: string, outputLocationPath: string): Promise<any> { | |
| const writer = createWriteStream(outputLocationPath); | |
| return Axios({ | |
| method: 'get', | |
| url: fileUrl, | |
| responseType: 'stream', | |
| }).then(async response => { |
The game can be hacked pretty easily, making your dinosaur not even flinch at the sight of a cactus.
To hack the game, first go the the error message page where your dinosaur is hanging out.
Go ahead and press the space bar to start the game. Once the game starts, right-click and select Inspect” to open up Chrome DevTools, then select the Console tab.
This is an up-to-date guide on running Chromium in Vercel serverless functions in 2022. What you will read below is the result of two days of research, debugging, 100+ failed deployments, and a little bit of stress.
Use chrome-aws-lambda that comes with Chromium pre-configured to run in serverless, and puppeteer-core due to the smaller size of Chromium distributive.
Command Flags
| Flag | Options | Description |
|---|---|---|
-codec:a |
libfaac, libfdk_aac, libvorbis | Audio Codec |
-quality |
best, good, realtime | Video Quality |
-b:a |
128k, 192k, 256k, 320k | Audio Bitrate |
-codec:v |
mpeg4, libx264, libvpx-vp9 | Video Codec |
A ThreeJS scene featuring a displacement sphere using Perlin noise. This is featured on my website at https://codyb.co, fully interactive via TweenJS.
A Pen by mansisisangiya on CodePen.
| $videoPath = Read-Host "Enter the input video path:" | |
| $outputDirectory = Read-Host "Enter the output directory path:" | |
| # Get the total duration of the video using FFprobe | |
| $duration = & ffprobe.exe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 $videoPath | |
| # Convert the duration to seconds | |
| $durationSeconds = [math]::Round($duration, 0) | |
| # Calculate the number of parts based on a 30-second duration |
To convert animation GIF to MP4 by ffmpeg, use the following command
ffmpeg -i animated.gif -movflags faststart -pix_fmt yuv420p -vf "scale=trunc(iw/2)*2:trunc(ih/2)*2" video.mp4
movflags – This option optimizes the structure of the MP4 file so the browser can load it as quickly as possible.
pix_fmt – MP4 videos store pixels in different formats. We include this option to specify a specific format which has maximum compatibility across all browsers.