Make the daisy Create the white cross Solve the first layer Solve the second layer Create the yellow cross: F U R U' R' F' Solve the yellow face: R U R' U R U2 R' Move yellow stickers upper right-hand corner of left-face Orient "fish" down and to the left relative to your perspective
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
def delete_layer(layer_name): | |
s = requests.Session() | |
GEOSERVER_USER = 'someusername' | |
GEOSERVER_PASS = 'asecretthingy' | |
s.auth = (GEOSERVER_USER, GEOSERVER_PASS) | |
headers_json = {'Content-type': 'application/json', } | |
del_url = "https:/yourgeoserver.com/workspaces/SsmeWorkspaceName/datastores/someDataStoreName/featuretypes/" + layer_name + "?recurse=true" | |
r = s.delete(del_url, headers=headers_json, data={}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# git commits per developer | |
git shortlog -sn --no-merges --since "01 January 2019" | |
# a clearer better git log view of commits | |
git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash -e | |
set -o pipefail | |
# Any arguments are incorrect. Note that git intercepts --help and tries to | |
# open the man page. | |
if [ $# -gt 0 ]; then | |
echo 'Usage: git merge-stats' | |
exit 1 | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- hosts: all | |
become: yes | |
gather_facts: false | |
tasks: | |
- name: Install docker packages | |
remote_user: ubuntu | |
apt: | |
name: "{{ item }}" | |
state: present | |
update_cache: yes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UPDATE multipoly_table_with_rings AS myrings | |
SET geom = noring.geom | |
FROM ( | |
SELECT id, ST_Collect(ST_MakePolygon(geom)) AS geom | |
FROM ( | |
SELECT id, ST_NRings(geom) AS nrings, | |
ST_ExteriorRing((ST_Dump(geom)).geom) AS geom | |
FROM multipoly_table_with_rings | |
WHERE ST_NRings(geom) > 1 | |
) AS foo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT DISTINCT s.id, s.tags | |
FROM myspace_polys as s | |
JOIN mypoi_points as as p | |
ON ST_Contains(s.geom, p.geom); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ docker run --name=postgis -d -e POSTGRES_USER=user001 -e POSTGRES_PASS=123456789 -e POSTGRES_DBNAME=gis -p 5432:5432 kartoza/postgis:9.6-2.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt install python3-gdal gdal-bin | |
pip install --global-option=build_ext --global-option="-I/usr/include/gdal" GDAL==`gdal-config --version` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# sheets formula to round the value in cell F2 to the nearest quarter hour | |
=HOUR(F2) + (MROUND(MINUTE(F2),15)/60) | |
if 1:18:33 is the duration the result is 1.25. |
NewerOlder