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
<pap name="Lohnsteuer2019Big" version="1.0" versionnummer="1.0"> | |
<variables> | |
<!-- Stand: 2018-11-12 --> | |
<!-- ITZBund Düsseldorf--> | |
<!-- EINGABEPARAMETER --> | |
<inputs> | |
<!-- 1, wenn die Anwendung des Faktorverfahrens gewählt wurden (nur in Steuerklasse IV) --> | |
<input name="af" type="int" default="1"/> | |
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 db_web1_1.pickware_erp_warehouse_article_detail_configurations pew | |
JOIN (SELECT sod.name name, | |
pew.articleDetailId detailID, | |
pew.minimumStock minimumStock, | |
SUM(sod.quantity) sum_quantity | |
FROM db_web1_1.s_order_details sod | |
JOIN db_web1_1.s_order so ON sod.orderID = so.id | |
JOIN db_web1_1.s_articles_details sad ON sod.articleordernumber = sad.ordernumber | |
JOIN db_web1_1.s_articles_attributes saa ON sad.id = saa.articledetailsID |
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
/* /index.html 200 |
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 subtree push --prefix backend subdomain master | |
(cd frontend && exec yarn run build) | |
(cd frontend && exec netlify deploy --dir=./build --prod) |
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
function randomizeText(selection, documentRoot) { | |
documentRoot.children.forEach(node => { | |
// [1] | |
if (node instanceof Artboard) { | |
// [2] | |
let artboard = node; | |
let rectangles = artboard.children.filter(artboardChild => { | |
// [3] | |
return artboardChild instanceof Text; |
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
chrome_settings = webdriver.DesiredCapabilities.CHROME.copy() | |
remote_chrome_driver = webdriver.Remote(desired_capabilities=chrome_settings) |
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
# Usage: | |
# docker-compose up --force-recreate | |
version: "2.1" | |
services: | |
#--------------# | |
zalenium: | |
image: "dosel/zalenium" | |
container_name: zalenium | |
hostname: zalenium |
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
interface NewsletterDetailProps extends RouteComponentProps<any>, React.Props<any> { | |
} | |
const NewsletterDetail: React.StatelessComponent<NewsletterDetailProps> = props => { | |
const match = props.match; | |
return ( | |
... | |
); | |
}; |
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
mkdir /home/dokku/minio/nginx.conf.d/ | |
echo 'client_max_body_size 50m;' > /home/dokku/minio/nginx.conf.d/upload.conf | |
chown dokku:dokku /home/dokku/minio/nginx.conf.d/upload.conf | |
service nginx reload |
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
dokku plugin:install https://github.com/dokku/dokku-letsencrypt.git | |
dokku config:set --no-restart minio [email protected] | |
dokku letsencrypt minio |
NewerOlder