Skip to content

Instantly share code, notes, and snippets.

@Rokko11
Rokko11 / import-flow.http
Created February 11, 2020 08:52
This http call imports a flow file into H2O Flow. First the raw curl command, second the corresponding IntelliJ http file
###
POST http://localhost:54321/3/NodePersistentStorage.bin/notebook/my-model
Content-Type: multipart/form-data; boundary=WebAppBoundary
--WebAppBoundary
Content-Disposition: form-data; name="file"; filename="my-model.flow"
< path/to/my-model.flow
--WebAppBoundary--
@Rokko11
Rokko11 / input.md
Last active September 10, 2019 21:47
Um ein PDF-Beispiel-Dokument zu erstellen: Beispiel herunterladen und run.sh oder run.bat ausführen.
title author lang lof geometry
Dynamische Dokumentation
Simone Görner und Richard Vogel
de
true
margin=3cm, left=3cm

Pandoc

@Rokko11
Rokko11 / SampleIT.java
Last active September 10, 2019 21:42
Generierung Benutzerhandbuch aus Selenium-Test
public class SampleIT extends SeleniumTestCase {
@Test
@Login
@ImportFile(name = "brief/Datenbasis.xls")
public void testErfolgreicherVersand() throws Exception {
new VertragPage()
.setLogStrategy(new MarkdownStrategy())
.title("handbuch.briefversand.title")
.describe("handbuch.briefversand.description")
@Rokko11
Rokko11 / docker-compose.yml
Last active August 20, 2019 07:02
Beispiel-Code für die Transformation eines docker-compose.yml in ein Markdown-File. Dieses wird mit dem pandoc-plantuml-Filter in ein Diagramm überführt.
version: '3'
services:
proxy:
image: nginx:1.15-alpine
labels:
description: "nginx SSL Proxy"
depends_on:
- webapp
- docs
@Rokko11
Rokko11 / ReleaseNotes.md
Last active August 19, 2019 12:28
Erzeugung von ReleaseNotes mit dem maven-changes-plugin. Nach dem Auslesen aus Jira werden sie per Apache Velocity in Markdown exportiert. Die Issues werden anschließend mit einem Lua-Filter verlinkt.

Version 1.2.3

Stories:

  • MYPROJECT-1: Kurzbeschreibung Story 1
  • MYPROJECT-2: Kurzbeschreibung Story 2

Fixed Bugs:

  • MYPROJECT-12: Anzeigefehler auf Seite 1
@Rokko11
Rokko11 / MarkdownUsageFormatter.java
Last active August 8, 2019 08:10
Kommandozeilentool
import com.beust.jcommander.*;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.Map;
public class MarkdownUsageFormatter implements IUsageFormatter {
private final JCommander commander;
@Rokko11
Rokko11 / design_adminhmtl_default_default_template_cmsforbundle_product_edit_bundle_option.phtml
Created August 30, 2013 06:54
Problem: Werte von Bundle/Option werden nicht im option.phtml vorselektiert
<script type="text/javascript">
optionTemplate = '<div id="<?php echo $this->getFieldId() ?>_{{index}}" class="option-box"> ' +
'<div class="option-title"> ' +
'<label for="<?php echo $this->getFieldName() ?>[{{index}}][title]"><?php echo Mage::helper('bundle')->__('Default Title') ?> <span class="required">*</span></label>' +
<?php if ($this->isDefaultStore()): ?>
'<input class="input-text required-entry" type="text" name="<?php echo $this->getFieldName() ?>[{{index}}][title]" id="id_<?php echo $this->getFieldName() ?>_{{index}}_title" value="{{title}}">' +
<?php else: ?>
'<input class="input-text required-entry" type="text" name="<?php echo $this->getFieldName() ?>[{{index}}][default_title]" id="id_<?php echo $this->getFieldName() ?>_{{index}}_default_title" value="{{default_title}}">' +
<?php endif; ?>
'<?php echo $this->jsQuoteEscape($this->getOptionDeleteButtonHtml()) ?>' +
@Rokko11
Rokko11 / gist:6376918
Created August 29, 2013 11:28
How to add foreign key from bundle_option to cms_block
/** @var $installer Mage_Catalog_Model_Resource_Setup */
$installer = $this;
$installer->startSetup();
$installer->getConnection()->addColumn($installer->getTable('bundle/option'), 'block_id',
array(
'nullable' => true,
'unsigned' => true,
'type' => Varien_Db_Ddl_Table::TYPE_INTEGER,
@Rokko11
Rokko11 / openligadb_ruby_rails_example_snippet
Created August 10, 2013 20:26
Getting Information of OpenLigaDb with Ruby in a Rails project
# This snippet works with Ruby Gem "Savon"
client = Savon.client(wsdl: "http://www.OpenLigaDB.de/Webservices/Sportsdata.asmx?WSDL")
method = "get_matchdata_by_league_date_time"
message = {from_date_time: 5.hours.ago, to_date_time: Time.now, league_shortcut: 'bl1'}
result = client.call(:"#{method}", message: message)
data_array = result.body[:"#{method}_response"][:"#{method}_result"][:matchdata]
data_array.each do |data|
puts data[:match_id]
end
<div id="stack-trace">other.package.MyTry.exec(MyTry.java:19)</div>
Now I need a jQuery/JS-Method which parses this Element by the Regex "\(\w*\.java:\d*\)" and modifies the content of this div to following:
<div id="stack-trace">other.package.MyTry.exec(<a href="MyTry.java:19">MyTry.java:19</a>)</div>