from Microprocessing and Microprogramming, Volume 15, Issue 5, May 1985, Pages 253-261.
The present discussion is a contribution
import numpy as np | |
import json | |
import base64 | |
def _add_dataset_to_rfs( | |
rfs: dict, | |
shape: list[int], | |
dtype: np.dtype, | |
dset_name: str, |
import matplotlib.pyplot as plt | |
import numpy as np | |
import pandas as pd | |
groups = ['citizenship', 'race', 'sex', 'institute', 'religion', 'occupation', 'first names', 'eye color'] | |
# List of grouped people, e.g. [1 - iranian, 1 - italian, 4 - russians] | |
number_of_people = [[1, 1, 4], [1, 5], [1, 5], [1, 1, 4], [6], [1, 1, 4], [2, 1, 1, 1, 1], [2,2,2]] | |
# Total number of people | |
n_people = 6 |
-----BEGIN PGP SIGNED MESSAGE----- | |
Hash: SHA512 | |
My resignation from freenode staff | |
================================== | |
I joined the freenode staff in March 2019 [1]. | |
Before I joined the staff, Freenode Ltd was sold [2] to a person named | |
Andrew Lee as part of a sponsorship deal. The informal terms of that |
<!DOCTYPE qgis_style> | |
<qgis_style version="2"> | |
<symbols> | |
<symbol alpha="1" force_rhr="0" clip_to_extent="1" type="fill" name="pencilish"> | |
<layer class="MarkerLine" pass="0" locked="0" enabled="1"> | |
<prop k="average_angle_length" v="4"/> | |
<prop k="average_angle_map_unit_scale" v="3x:0,0,0,0,0,0"/> | |
<prop k="average_angle_unit" v="MM"/> | |
<prop k="interval" v="0.02"/> | |
<prop k="interval_map_unit_scale" v="3x:0,0,0,0,0,0"/> |
Here's an example of the kind of GraphQL query that Code.gov might submit to the GitHub GraphQL endpoint. It also explains why the switch to using GraphQL (in GitHub API version 4) makes things a ton easier than all the REST calls we were doing before (in GitHub API version 3).
#!/bin/bash | |
# | |
set -u | |
set -e | |
set -x | |
COOKIES=cookies.txt | |
LOGIN_URL=https://omero.host/prefix/webclient/login/ |
require "set" | |
require 'regexp_parser' | |
require 'commons-collections4-4.1.jar' | |
module PreRegexp | |
def self.tokenize sentence | |
sentence.split(/[\s;()|]+/).sort.reverse | |
end |