I hereby claim:
- I am kevinsimper on github.
- I am kevinsimper (https://keybase.io/kevinsimper) on keybase.
- I have a public key ASCG1XWtsxqP-WApckSPN264AVczgbnEqAdbRkwzzp-4IAo
To claim this, I am signing this object:
| #!/bin/bash | |
| # Count TypeScript files statistics in src directory | |
| echo "=== TypeScript Files Statistics ===" | |
| echo | |
| # Count files | |
| file_count=$(find src -name "*.ts" -o -name "*.tsx" | wc -l) | |
| echo "Total files (.ts and .tsx): $file_count" |
| import gradio as gr | |
| import random | |
| def create_hello_world_tab(): | |
| with gr.Blocks() as hello_world: | |
| def greet_on_load(): | |
| return f"Random Hello Number: {random.randint(1, 100)}" | |
| output = gr.Textbox(label="Greeting Message") | |
| # First install GNU CoreUtils | |
| $ brew install coreutils | |
| # pass bytes to numfmt | |
| $ numfmt --to=iec-i --suffix=B --format="%9.2f" 3168122 | |
| 3.03MiB |
| SELECT | |
| normalizedUrl, | |
| COUNT(1) | |
| FROM ( | |
| SELECT | |
| httpRequest.requestUrl, | |
| REGEXP_REPLACE(REGEXP_REPLACE(REGEXP_REPLACE(httpRequest.requestUrl, r'/_next/data/[^/]+', ''), r'\d+', '[id]'), r'\.json', '') AS normalizedUrl | |
| FROM | |
| `greenmobility.cloudrun_requests.run_googleapis_com_requests` | |
| WHERE |
| const color = car.isReserved ? "#ff9900" : "#" + car.vehicleState.color; | |
| const icon = { | |
| path: | |
| "m30,65c-8,-11 -17,-27 -18,-34c-1,-5 2,-13 7,-19c11,-13 34,-10 41,5c4,9 4,13 1,23c-3,8 -18,31 -22,33c-1,0 -5,-3 -9,-8z", | |
| fillColor: color, | |
| fillOpacity: 0.9, | |
| scale: 0.7, | |
| strokeColor: "#fff", | |
| strokeWeight: 3, | |
| anchor: new google.maps.Point(40, 74), |
| commit 4efbae971b6d4f5aeeb876307657c86545f8948b | |
| Author: Kevin Simper <[email protected]> | |
| Date: Thu Mar 26 17:26:43 2020 +0100 | |
| Article spelled client_id wrong | |
| diff --git a/server.js b/server.js | |
| index c3b2928..b7980ac 100644 | |
| --- a/server.js | |
| +++ b/server.js |
| $Path = $env:TEMP; $Installer = "chrome_installer.exe"; Invoke-WebRequest "http://dl.google.com/chrome/install/375.126/chrome_installer.exe" -OutFile $Path\$Installer; Start-Process -FilePath $Path\$Installer -Args "/silent /install" -Verb RunAs -Wait; Remove-Item $Path\$Installer |
I hereby claim:
To claim this, I am signing this object:
| apiVersion: apps/v1 | |
| kind: Deployment | |
| metadata: | |
| name: nginx-deployment | |
| labels: | |
| app: nginx | |
| spec: | |
| replicas: 3 | |
| selector: | |
| matchLabels: |
| type http; | |
| [@bs.deriving abstract] | |
| type req = {url: string}; | |
| type res; | |
| [@bs.send] external _end : (res, string) => unit = "end"; | |
| type handler = (req, res) => unit; | |
| type server; | |
| [@bs.send] external listen : (server, int) => unit = ""; | |
| [@bs.send] external createServer : (http, handler) => server = ""; | |
| [@bs.module] external http : http = ""; |