This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # claude-usage — authoritative Claude subscription usage via the undocumented | |
| # OAuth endpoint (the same data that powers Claude Code's `/usage` panel). | |
| # | |
| # Notes / gotchas: | |
| # * Undocumented internal endpoint — fields can churn (tangelo, iguana_necktie, | |
| # omelette_promotional, etc. are experimental). Treat automation as best-effort. | |
| # * Sends the same UA as the official client; requests without it are rejected. | |
| # * Do NOT poll faster than ~180s or you'll rate-limit yourself. | |
| # * `curl -q` ignores ~/.curlrc (which appends a -w timing line that breaks JSON). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "resourceName": "people/109541090636104663422", | |
| "phoneNumbers": [ | |
| { | |
| "formattedType": "Home", | |
| "type": "home", | |
| "value": "11234561234", | |
| "metadata": { | |
| "source": { | |
| "type": "PROFILE", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # HELP builder_builds_failed_total Number of failed image builds | |
| # TYPE builder_builds_failed_total counter | |
| builder_builds_failed_total{reason="build_canceled"} 0 | |
| builder_builds_failed_total{reason="build_target_not_reachable_error"} 0 | |
| builder_builds_failed_total{reason="command_not_supported_error"} 0 | |
| builder_builds_failed_total{reason="dockerfile_empty_error"} 0 | |
| builder_builds_failed_total{reason="dockerfile_syntax_error"} 0 | |
| builder_builds_failed_total{reason="error_processing_commands_error"} 0 | |
| builder_builds_failed_total{reason="missing_onbuild_arguments_error"} 0 | |
| builder_builds_failed_total{reason="unknown_instruction_error"} 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| stages: | |
| - build | |
| - test | |
| - push | |
| - deploy | |
| default: | |
| image: docker:19.03 | |
| variables: | |
| # When using dind, it's wise to use the overlayfs driver for |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Dump some basic info | |
| # See https://unix.stackexchange.com/a/26782/54389 | |
| [[ $- == *i* ]] && i='interactive' || i='non-interactive' | |
| shopt -q login_shell && l='login' || l='non-login' | |
| echo ".bash_profile: Running for $i,$l shell" | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- mainWindow.js 2016-01-02 19:05:37.556205523 -0500 | |
| +++ /usr/share/nemo-preview/js/ui/mainWindow.js 2016-01-02 20:04:04.704105784 -0500 | |
| @@ -283,6 +283,8 @@ | |
| yFactor = 0.92; | |
| } | |
| + yFactor = 0; | |
| + | |
| this._texture.set_size(textureSize[0], textureSize[1]); | |
| this._textureYAlign.factor = yFactor; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| Vagrant.configure(2) do |config| | |
| config.vm.box = "atomia/windows-2012R2" | |
| config.vm.box_check_update = false | |
| config.vm.communicator = "winrm" | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| zeromq is installed! | |
| /home/vagrant/FrameworkBenchmarks/installs /home/vagrant/FrameworkBenchmarks/installs | |
| Cloning into 'nawak'... | |
| remote: Counting objects: 155, done. | |
| remote: Total 155 (delta 0), reused 0 (delta 0), pack-reused 155 | |
| Receiving objects: 100% (155/155), 391.69 KiB | 0 bytes/s, done. | |
| Resolving deltas: 100% (69/69), done. | |
| Checking connectivity... done. | |
| Note: checking out 'b34b0b5077541ae9671957452a70e2578894d3a8'. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Hamiltons-MacBook-Pro:linux hamiltont$ cat fw_depends | |
| #!/bin/bash | |
| source $FWROOT/toolset/setup/linux/bash_functions.sh | |
| fw_depends "$@" | |
| Hamiltons-MacBook-Pro:linux hamiltont$ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| INFO:root:Running setup module start (cwd=/home/vagrant/FrameworkBenchmarks/frameworks/Clojure/compojure) | |
| INFO:root:To run compojure manually, copy/paste this: | |
| export FWROOT=/home/vagrant/FrameworkBenchmarks && \ | |
| export TROOT=/home/vagrant/FrameworkBenchmarks/frameworks/Clojure/compojure && \ | |
| export IROOT=/home/vagrant/FrameworkBenchmarks/installs && \ | |
| export DBHOST=127.0.0.1 && \ | |
| export LOGDIR=/home/vagrant/FrameworkBenchmarks/results/ec2/latest/logs/compojure && \ | |
| export MAX_THREADS=2 && \ | |
| cd /home/vagrant/FrameworkBenchmarks/frameworks/Clojure/compojure && \ | |
| sudo -u testrunner -E -H stdbuf -o0 -e0 bash -ex setup.sh |
NewerOlder