This file contains hidden or 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
package com.kaput.portal.templaterenderer; | |
import io.quarkus.qute.TemplateEnum; | |
import io.quarkus.qute.TemplateExtension; | |
@TemplateExtension | |
public class RatingStarsTemplateRenderer { | |
@TemplateEnum | |
public enum StarStyleEnum { |
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>org.example</groupId> | |
<artifactId>SpringKafkaDependencyIssue</artifactId> | |
<version>1.0-SNAPSHOT</version> |
This file contains hidden or 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
/** | |
* Generic method that properly awaits a given condition to become true within a given timeout. | |
* This is superior to {@code sleep()} methods because it returns early when the condition is met. | |
* | |
* @param boolSupplier the supplier for evaluating the condition, should return {@code true} if condition is met, {@code false} otherwise | |
* @param timeout timeout number | |
* @param timeUnit timeout unit | |
* @return {@code true} if condition is met within given time, {@code false} otherwise | |
*/ | |
private boolean waitForCondition(final BooleanSupplier boolSupplier, long timeout, final TimeUnit timeUnit) { |
This file contains hidden or 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
package com.kaput.littlehelper; | |
import java.util.Enumeration; | |
import java.util.Iterator; | |
import java.util.NoSuchElementException; | |
import java.util.Objects; | |
/** | |
* Helper class to be able to use a{@link Iterator} (i.e. {@link java.util.stream.Stream}) with {@link Enumeration}. | |
* This can be useful, i.e.: |
This file contains hidden or 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
<html> | |
<head> | |
<title>JUnit Test Report Pie Chart over test durations</title> | |
<meta content=""> | |
<style></style> | |
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script> | |
<script type="text/javascript"> | |
// Load google charts | |
google.charts.load('current', {'packages':['corechart']}); | |
// google.charts.setOnLoadCallback(drawChart); |
This file contains hidden or 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
\documentclass[10pt, a4paper]{article} | |
\usepackage[english,ngerman]{babel} | |
\usepackage{amsmath, amssymb, wasysym} | |
\usepackage{textcomp} | |
\usepackage{graphicx} % Graphics package | |
%\usepackage{graphs} % c.f. http://www8.cs.umu.se/~drewes/graphs/ | |
\usepackage{tikz} | |
\usepackage[T1]{fontenc} | |
% \usepackage[latin9]{inputenc} % Encoding |
This file contains hidden or 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
<?php | |
/* | |
> CONTACT: | |
Jan Hendriks | |
http://www.gawe-design.de | |
[email protected] | |
> DESCRIPTION: | |
The functions (you can also use them via php-include) checks if a given IP is in a given IP range | |
These functions are much more efficient than the ip2long / long2ip functions from php that can only be used for IP v4 and have polynomial costs | |
These functions are about O(number of positions), e.g. IP v.4: O(4); (I think) |
This file contains hidden or 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
import org.primefaces.component.orderlist.OrderList; | |
import javax.faces.component.UIComponent; | |
import javax.faces.context.FacesContext; | |
import javax.faces.convert.Converter; | |
import java.util.List; | |
import java.util.Objects; | |
/** | |
* Generic converter for primefaces component (orderList). |
This file contains hidden or 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
import org.primefaces.component.picklist.PickList; | |
import org.primefaces.model.DualListModel; | |
import javax.faces.component.UIComponent; | |
import javax.faces.context.FacesContext; | |
import javax.faces.convert.Converter; | |
import java.util.List; | |
import java.util.Objects; | |
/** |
This file contains hidden or 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
/* | |
* Simple demo program showing how to use boosted training in openCV | |
* File: opencv_2class_boosting_example.cpp | |
* Author: Jan Hendriks, [email protected], http://www.janhendriks.de | |
* | |
* Created on 18. August 2011, 13:55 | |
*/ | |
#include <cstdlib> | |
#include "opencv/cv.h" |
NewerOlder