I hereby claim:
- I am mekwall on github.
- I am mekwall (https://keybase.io/mekwall) on keybase.
- I have a public key whose fingerprint is C449 358B 90C8 77F1 A631 B7CF 9937 3E70 E32C E969
To claim this, I am signing this object:
| import { Stats } from "fs"; | |
| import { readdir, lstat, readFile, rename } from "fs/promises"; | |
| import path from "path"; | |
| import { transformAsync } from "@babel/core"; | |
| const isDry = !!process.argv.find((a) => a.includes("--dry")); | |
| const jsExtRegex = /\.(js)$/; | |
| async function* walkPath( | |
| basePath: string |
| name: Build and upload IPA to TestFlight | |
| on: | |
| push: | |
| tags: | |
| - testflight | |
| env: | |
| EXPO_APPLE_ID: ${{ secrets.EXPO_APPLE_ID }} | |
| EXPO_APPLE_PASSWORD: ${{ secrets.EXPO_APPLE_PASSWORD }} | |
| jobs: | |
| publish: |
| /* | |
| parseArgs works for the following: | |
| -f bar | |
| --foo bar | |
| -f=bar | |
| --f=bar | |
| */ | |
| const parseArgs = () => { | |
| const args = {}; | |
| const rxp = /-{1,2}(?<flag>[\w\n]+)[= ]{1}(?<value>[^\s]+)/gi; |
| import React from "react"; | |
| import { useStores } from "@app/stores"; | |
| import { TodoItem } from "@app/components"; | |
| export const TodoList = () => { | |
| const { todoStore } = useStores(); | |
| // This call will trigger a fetch automatically if we don't have any data | |
| const containers = todoStore.getAll(); |
| // Start polling it for online check and game installed properly (ie the API is setup correctly) | |
| // Origin needs some time starting + settings up the actual API correctly... | |
| var pollCheckIfSignedIn = function() { | |
| originlaunch.isOriginRunning(function(isRunning) { | |
| if(isRunning) { | |
| originlaunch.isOriginLoggedIn(function(isLoggedIn) { | |
| if(isLoggedIn) { | |
| function pollCheckIfGameIsInstalled() { | |
| originlaunch.isGameInstalled(S.globalContext.realm.game, | |
| function (isInstalled) { |
| @echo off | |
| SETLOCAL ENABLEDELAYEDEXPANSION | |
| echo video convert to web | |
| echo ************************** | |
| echo. | |
| if not "%1"=="" set input=%1 | |
| if "%1"=="" set /p input= Input File : | |
| set /p output= Output filename : |
I hereby claim:
To claim this, I am signing this object:
| const net = require("net"); | |
| var server = net.createServer(function (c) { | |
| var oldWrite = c.write; | |
| c.write = function(d) { | |
| if (!Buffer.isBuffer(d)) { | |
| d = new Buffer(d); | |
| } | |
| oldWrite.call(this, d); | |
| server.bytesSent += d.length; |