I hereby claim:
- I am rohitpaulk on github.
- I am rohitpaulk (https://keybase.io/rohitpaulk) on keybase.
- I have a public key ASALGuPml2_DMms2tCBUrIF8MeCPIB-njkHBnF-mXw8NmQo
To claim this, I am signing this object:
| - language: clojure | |
| file_mappings: | |
| - source: starter_templates/README.md | |
| target: README.md | |
| - source: starter_templates/codecrafters.yml | |
| target: codecrafters.yml | |
| - source: starter_templates/clojure/.gitignore | |
| target: .gitignore | |
| - source: starter_templates/clojure/project.clj | |
| target: project.clj |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <sys/socket.h> | |
| #include <netinet/in.h> | |
| #include <netinet/ip.h> | |
| #include <string.h> | |
| #include <errno.h> | |
| #include <unistd.h> | |
| int main() { |
| package main | |
| import ( | |
| "fmt" | |
| "os" | |
| "strings" | |
| ) | |
| func main() { | |
| f, err := os.Create("/tmp/dat2") |
| RUN mkdir /root/Scribble-Server | |
| ADD Tests /root/Scribble-Server/Tests | |
| ADD Package.swift /root/Scribble-Server | |
| ADD Package.resolved /root/Scribble-Server | |
| # Add a dummy file for resolving dependencies and pre-building first | |
| ADD Sources/DummyForDependencies/main.swift /root/Scribble-Server/Sources/ScribbleServer/main.swift | |
| ADD Sources/DummyForDependencies/DummyModel.swift /root/Scribble-Server/Sources/CanvasModel/DummyModel.swift |
| from shell import shell | |
| from datetime import date, timedelta | |
| import json | |
| from concurrent.futures import ThreadPoolExecutor | |
| import csv | |
| DAYS_IN_PAST = 180 |
| from shell import shell | |
| from datetime import date, timedelta | |
| import json | |
| from concurrent.futures import ThreadPoolExecutor | |
| import csv | |
| DAYS_IN_PAST = 180 |
| from shell import shell | |
| from datetime import date, timedelta | |
| import json | |
| from concurrent.futures import ThreadPoolExecutor | |
| import csv | |
| DAYS_IN_PAST = 10 |
I hereby claim:
To claim this, I am signing this object:
| use teamcom_shard_01; | |
| DROP TABLE IF EXISTS contacts_test; | |
| CREATE TABLE contacts_test ( | |
| email VARCHAR(255) NOT NULL, | |
| public TINYINT(1), -- Values are either NULL, or True | |
| workspace_id INT(11) unsigned NOT NULL, | |
| creator INT(11) unsigned NOT NULL | |
| , UNIQUE KEY `only_one_public` (workspace_id, public, email) |
| use teamcom_shard_01; | |
| DROP TABLE IF EXISTS contacts_test; | |
| CREATE TABLE contacts_test ( | |
| name VARCHAR(255), | |
| email VARCHAR(255) NOT NULL, | |
| public TINYINT(1), -- Values are either NULL, or True | |
| workspace_id INT(11) unsigned NOT NULL, | |
| creator INT(11) unsigned NOT NULL |