I hereby claim:
- I am gigq on github.
- I am gigq (https://keybase.io/gigq) on keybase.
- I have a public key whose fingerprint is D048 7EEF 640C CF79 7859 D37E 5693 BB4A 431E 11CE
To claim this, I am signing this object:
| #!/bin/bash | |
| git add . | |
| # Run git diff and capture the output, excluding yarn.lock for js/ts projects | |
| diff_output=$(git diff HEAD -- . ':(exclude)yarn.lock') | |
| # Prepend the commit message to the diff output | |
| commit_message="Output just a properly formatted git commit message from the following, be accurate and concise, no need to specify prefixes, don't assume why changes were made:" | |
| full_output="$commit_message\n\n$diff_output" |
| import speech_recognition as sr | |
| """Make some requests to OpenAI's chatbot""" | |
| import time | |
| import os | |
| from playwright.sync_api import sync_playwright | |
| PLAY = sync_playwright().start() | |
| BROWSER = PLAY.chromium.launch_persistent_context( |
I hereby claim:
To claim this, I am signing this object:
| <?xml version="1.0" encoding="utf-8"?> | |
| <Client name="iOS"> | |
| <TranscodeTargets> | |
| <VideoProfile container="mp4" codec="h264" audioCodec="ac3,aac" context="all"> | |
| <!-- Inspired by Handbrake's profiles --> | |
| <Setting name="VideoEncodeFlags" value="-x264opts bframes=3:cabac=1" /> | |
| </VideoProfile> | |
| <VideoProfile protocol="hls" container="mpegts" codec="h264" audioCodec="ac3,aac,mp3" context="streaming"> | |
| <Setting name="VideoEncodeFlags" value="-x264opts bframes=3:cabac=1" /> | |
| </VideoProfile> |
| package main | |
| import ( | |
| "flag" | |
| "log" | |
| "menteslibres.net/gosexy/redis" | |
| "os" | |
| "os/signal" | |
| "time" | |
| ) |
| Index: test/org/apache/pig/test/TestSplitCombine.java | |
| =================================================================== | |
| --- test/org/apache/pig/test/TestSplitCombine.java (revision 0) | |
| +++ test/org/apache/pig/test/TestSplitCombine.java (revision 0) | |
| @@ -0,0 +1,441 @@ | |
| +/* | |
| + * Licensed to the Apache Software Foundation (ASF) under one | |
| + * or more contributor license agreements. See the NOTICE file | |
| + * distributed with this work for additional information | |
| + * regarding copyright ownership. The ASF licenses this file |
| find . -name "*.*" -exec basename '{}' \; | sort > /tmp/full | |
| find . -name "*.*" -exec basename '{}' \; | sort | uniq > /tmp/uql | |
| comm -3 /tmp/full /tmp/uql |
| Results from http://gist.github.com/167477 script. | |
| This test is to see the performance hit on TokyoCabinet BTree DB through TokyoTyrant | |
| as more rows are loaded into the database. | |
| Specifically how long it takes to insert 1000 rows one at a time as the database continues to grow. | |
| This is what I'm seeing on an EC2 small instance. | |
| Measurements are in the number of seconds to insert 1000 rows into TokyoCabinet. | |
| (Batch 1 - 1,000 rows in DB) |
| #!/usr/bin/env ruby | |
| require 'rubygems' | |
| require 'tokyotyrant' | |
| require 'uuidtools' | |
| require 'benchmark' | |
| results = File.new("/tmp/tokyoload.csv", "w") | |
| rdb = TokyoTyrant::RDB::new | |
| rdb.open("localhost", 1978) | |
| rdb.vanish |
| Results from http://gist.github.com/166802 script. | |
| This test is to see the performance hit on CouchDB as more rows are loaded into the database. | |
| Specifically how long it takes to insert 1000 rows in a batch insert as the database continues to grow. | |
| This is what I'm seeing on an EC2 small instance. | |
| Measurements are in the number of seconds to insert that batch of 1000 into CouchDB. | |
| (Batch 1 - 1,000 rows in DB) | |
| 1 1.02298092842102 |