I hereby claim:
- I am vimota on github.
- I am vimota (https://keybase.io/vimota) on keybase.
- I have a public key whose fingerprint is C4A0 E803 F5B6 F655 20AF B022 770A 518A 2A14 E3C4
To claim this, I am signing this object:
| Verifying that +vimota is my Bitcoin username. You can send me #bitcoin here: https://onename.io/vimota |
I hereby claim:
To claim this, I am signing this object:
| for n in *; do | |
| fi="$(find ../../../../../../../ -name "$n" | grep -v 'this_directory/')"; | |
| echo $fi; | |
| if [[ ! -z "$fi" ]] rm "$(basename $fi)"; | |
| ln -s $fi . ; | |
| done |
| Verifying my Blockstack ID is secured with the address 12j5XKuLqDtoQrdujTTN6JDbNLSMzPZkCR https://explorer.blockstack.org/address/12j5XKuLqDtoQrdujTTN6JDbNLSMzPZkCR |
| Verifying my Blockstack ID is secured with the address 12j5XKuLqDtoQrdujTTN6JDbNLSMzPZkCR https://explorer.blockstack.org/address/12j5XKuLqDtoQrdujTTN6JDbNLSMzPZkCR |
| FROM "codercom/code-server:latest" | |
| RUN apt-get install -y wget | |
| RUN wget -q https://packages.microsoft.com/config/ubuntu/18.10/packages-microsoft-prod.deb | |
| RUN dpkg -i packages-microsoft-prod.deb | |
| RUN apt-get install apt-transport-https | |
| RUN apt-get update | |
| RUN apt-get install -y dotnet-sdk-2.2 |
| ### Keybase proof | |
| I hereby claim: | |
| * I am vimota on github. | |
| * I am vimota (https://keybase.io/vimota) on keybase. | |
| * I have a public key ASAgfjz6-1RaZKeXdzSr5Yq6aAuW4cqZNoTh0wSLZps5HAo | |
| To claim this, I am signing this object: |
| import { Database } from 'duckdb-async'; | |
| import fs from 'fs'; | |
| import readline from 'readline'; | |
| // Check if the file exists | |
| const path = '/tmp/localpy.duckdb'; | |
| const fileExists = fs.existsSync(path); | |
| const db = await Database.create(path); |
| import duckdb | |
| # Check if the file exists: | |
| import os | |
| path = "/tmp/localpy.duckdb" | |
| file_exists = os.path.isfile(path) | |
| con = duckdb.connect(path) | |
| con.sql("install httpfs") | |
| if not file_exists: |
| import duckdb from 'duckdb'; | |
| import fs from 'fs'; | |
| import readline from 'readline'; | |
| // Check if the file exists | |
| const path = '/tmp/localpy.duckdb'; | |
| const fileExists = fs.existsSync(path); | |
| // Create a new database object | |
| const db = new duckdb.Database(path); |