openpgp4fpr:2D53CFEA1AB4017BB327AFE310A46CC3152D49C5
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
#!/usr/bin/env bash | |
# # Overview | |
# The goal of the enforce-style script is to make sure that submitters run clang-format before submitting a patch. It does not enforce styling for existing manually formatted files, but will enforce that NEW/MANAGED files that are staged when committing are formatted with clang-format. This way we can incrementally adopt clang-format. | |
# | |
# # Managed files | |
# Managed files are those whose styling is managed by this script. This means that the styling is enforced for these files. A precommit-hook will automatically format these files and stage the result. Gerrit will also automatically format these files and stage the result. | |
# | |
# # Incremental adoption | |
# This script is designed for incremental adoption of styling. It achieves this by differentiating between managed (styling enforced) and ignored (styling not enforced) files. Initially all existing files were added to the list of ignored files. When a staged file matches the clang-format style, it is automatically removed from the |
Scraped on 15.11.2022 from https://www.innungsbaecker.de
Contains 21905 bakeries
To use the script clone this into a folder and run
Scraped on 15.11.2022 from https://www.buchhandlung-finden.de , they probably got their data from somewhere else
To use the script clone this into a folder and run
npm install
npm run download
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
# firebase.tf https://gist.githubusercontent.com/Zebreus/906b8870e49586adfe8bd7bbff43f0a8/raw/firebase.tf | |
# Terraform configuration for creating a firebase project with firestore, functions and storage | |
# Unfinished | |
terraform { | |
required_providers { | |
google-beta = { | |
source = "hashicorp/google-beta" | |
version = "4.11.0" | |
} |
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
// An alternative extension for a defender carholder 202 | |
holderHeight = 40; | |
holderLength = 100; | |
thickness = 2.5; | |
ballRadius = 10.5; | |
beamSize = (ballRadius+thickness)*2; | |
beamHoleLength = 40; | |
holeRadius = 8.5; | |
ballCylinderLength = 5; |
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
:- use_module(library(clpfd)). | |
% A simple test kakuro | |
kakuroValues1(Configuration, Values) :- | |
Configuration = [ | |
[21,[A1,A2,A3]], | |
[11,[B1,B2,B3]], | |
[10,[C1,C2,C3]], | |
[23,[A1,B1,C1]], | |
[12,[A2,B2,C2]], |
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 | |
# Specify source repo | |
SOURCE_REPO="[email protected]:Zebreus/pruefungsplaner-scheduler.git" | |
SOURCE_BRANCH="master" | |
CREATE_TEMP_SOURCE_DIRECTORY=false | |
CLONE_SOURCE_REPO=true | |
SOURCE_REPO_DIRECTORY_NAME="source" | |
SOURCE_REPO_DIRECTORY="." |
NewerOlder