I hereby claim:
- I am bachmann1234 on github.
- I am bachmann (https://keybase.io/bachmann) on keybase.
- I have a public key ASBxcuyyEdg9vOylvD7rIbiE4uwajE4gR5vZZNb8Y7kkQwo
To claim this, I am signing this object:
| #!/bin/zsh | |
| set -euo pipefail | |
| IFS=$'\n\t' | |
| # i tried it and working like charm just have to note make the file .sh chmod +x and you may need sudo to run with permission but be carefull with sudo | |
| # be sure the $JAVA_HOME is configure correctly or make it static as commentedline 7 below | |
| OLDDIR="${PWD}" | |
| CACERTS_FILE=$(/usr/libexec/java_home -v 1.8)/jre/lib/security/cacerts | |
| mkdir /tmp/rds-ca && cd /tmp/rds-ca |
| import org.junit.jupiter.api.Assertions | |
| import org.junit.jupiter.api.BeforeEach | |
| import org.junit.jupiter.api.Test; | |
| import org.junit.jupiter.api.extension.ExtendWith | |
| import org.junit.jupiter.api.extension.ExtensionContext | |
| import org.junit.jupiter.api.extension.ParameterContext | |
| import org.junit.jupiter.api.extension.ParameterResolver | |
| class BasicParameterResolver : ParameterResolver { |
| import org.junit.jupiter.api.Assertions | |
| import org.junit.jupiter.api.BeforeEach | |
| import org.junit.jupiter.api.Test; | |
| import org.junit.jupiter.api.extension.ExtendWith | |
| import org.junit.jupiter.api.extension.ExtensionContext | |
| import org.junit.jupiter.api.extension.ParameterContext | |
| import org.junit.jupiter.api.extension.ParameterResolver | |
| class BasicParameterResolver : ParameterResolver { |
| from flask import Flask, request | |
| import json | |
| from pygments import highlight | |
| from pygments.formatters.terminal256 import Terminal256Formatter | |
| from pygments.lexers import get_lexer_by_name | |
| app = Flask(__name__) | |
| @app.route("/") |
| import uvicorn | |
| from graphene import ( | |
| ObjectType, | |
| String, | |
| Schema, | |
| AbstractType, | |
| Field, | |
| Int, | |
| List, | |
| Mutation, |
I hereby claim:
To claim this, I am signing this object:
| [ { | |
| "description" : "Part. A. 1. Information About You. 1. Enter Alien Registration Number (A. Number), if any.", | |
| "absolutePath" : "form1[0].#subform[0].PtAILine1_ANumber[0]", | |
| "relativePath" : "PtAILine1_ANumber[0]", | |
| "fieldType" : "TEXT", | |
| "value" : "" | |
| }, { | |
| "description" : "Part. A. 1. Information About You. 2. Enter U. S. Social Security Number, if any.", | |
| "absolutePath" : "form1[0].#subform[0].TextField1[0]", | |
| "relativePath" : "TextField1[0]", |
| #!/usr/bin/env python3 | |
| import random | |
| import logging | |
| logging.basicConfig(level=logging.INFO) | |
| logger = logging.getLogger(__name__) | |
| NUM_ROUNDS = 100000 | |
| def _get_doors(): | |
| doors = [False, False, False] |
| { | |
| "name": "Ultimate Workout Playlist", | |
| "description": "From 538's Reporting http://fivethirtyeight.com/features/the-ultimate-workout-playlist/", | |
| "tracks": [ | |
| { | |
| "name": "Panda", | |
| "artist": "Desiigner" | |
| }, | |
| { | |
| "name": "'Till I Collapse", |
| #!/usr/bin/env python3 | |
| import sys | |
| import json | |
| import re | |
| import os | |
| def find_date(doc_text): | |
| """ | |
| This may be fragile. Though im not sure what part of this wont be fragile... | |
| Basically look for the key phrase that suggests when the meeting will be and extract the date |