Skip to content

Instantly share code, notes, and snippets.

View Reflic's full-sized avatar

Kevin B. Reflic

  • Aachen
View GitHub Profile
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="https://wsdemo.ax4.com/ws/GeneralOvernight" xmlns:tns="https://wsdemo.ax4.com/ws/GeneralOvernight" xmlns:exc="https://wsdemo.ax4.com/ws/GeneralOvernight/exception" xmlns:data="https://wsdemo.ax4.com/ws/GeneralOvernight/data" xmlns:prob="https://wsdemo.ax4.com/ws/GeneralOvernight/exception/problems" name="SendungsDatenPort">
<wsdl:types>
<!-- Sendungserstellung -->
<xsd:schema id="operationDocsSchema" xmlns:data="https://wsdemo.ax4.com/ws/GeneralOvernight/data" targetNamespace="https://wsdemo.ax4.com/ws/GeneralOvernight">
<!-- Sendungsdaten -->
<xsd:complexType name="Sendung">
<xsd:sequence>
<template>
<table class="table">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Vorname</th>
<th scope="col">Nachname</th>
<th scope="col"></th>
</tr>
</thead>
bubble(root);
const node = svg.selectAll('.node').data(root.children)
.enter().append('g').attr('class', 'node')
.attr('transform', function (d: any) {
return 'translate(' + d.x + ',' + d.y + ')';
});
node.append('title').text(function (d: any) {
return d.data.shortName;
});
# Created by https://www.gitignore.io/api/atmelstudio
### AtmelStudio ###
## Ignore Atmel Studio temporary files and build results
# http://www.atmel.com/microsite/atmel_studio6/
# Atmel Studio is powered by an older version of Visual Studio,
# so most of the project and solution files are the same as VS files,
# only prefixed by an `at`.
#Build Directories
[Dd]ebug/
[Rr]elease/
<mainparent component>
<listentry>
<a href="#" v-on:click="settings()"></a>
</listentry>
<listentry></listentry>
<listentry></listentry>
<listentry></listentry>
<settings v-if="visible"></settings>
@Reflic
Reflic / README.md
Last active May 18, 2020 11:13
Backup MySQL Database to Amazon S3

Backup MySQL Database automatically to Amazon S3

Amazon S3 services is a wonderful fast and good service to backup your databases. This script dumps currently only one, database and uploads the file to a s3 bucket.

0. Register and prepare AWS S3

  1. Make your self an Amazon AWS account if you dont already have one. 2.Create a new bucket for your backups (https://console.aws.amazon.com/s3/home).
  2. (optional) Maybe you want also create a lifecycle policy for example to delete all backups older than 30 days or so. Just edit the properties of the bucket.
  3. Create a new user in the IAM an give him the policy AmazonS3FullAccess.
@Reflic
Reflic / main.js
Created March 20, 2016 18:36
main.js
import { extend } from 'flarum/extend';
import TextEditor from 'flarum/components/TextEditor';
import UploadButton from 'reflic/file-upload/components/UploadButton';
console.log("test2");
app.initializers.add('reflic-file-upload', app => {
console.log("test2");
/**