Skip to content

Instantly share code, notes, and snippets.

View KilianB's full-sized avatar

Kilian Brachtendorf KilianB

  • Germany
View GitHub Profile
HEDERA_ACCOUNT_ID=0.0.XXXXXXXX
HEDERA_PRIVATE_KEY=YourPrivateKey
@KilianB
KilianB / DeployNodeApp.yaml
Created June 1, 2021 14:13
Deploy Node App
name: CD
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Query all devices on network
1. grep broadcast address of network
ifconfig | grep broadcast
2. ping broadcast address to resolve all devices on network
ping ....
3. resolve names via arp
arp - a | grep :
@KilianB
KilianB / LuceneEscapedSearch.java
Created October 4, 2018 09:21
Demonstrating lucene fulltext search not working with escaped colon
package com.github.kilianB;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
/**
* @author Kilian