I hereby claim:
- I am YannickFricke on github.
- I am yannickfricke (https://keybase.io/yannickfricke) on keybase.
- I have a public key whose fingerprint is 88B0 FE73 15E6 AA58 C498 B6EA 54FD 1853 0C3D 52C1
To claim this, I am signing this object:
{%- block form_start -%} | |
{%- do form.setMethodRendered() -%} | |
{% set method = method|upper %} | |
{%- if method in ["GET", "POST"] -%} | |
{% set form_method = method %} | |
{%- else -%} | |
{% set form_method = "POST" %} | |
{%- endif -%} | |
{% if attr.class is defined %} |
using System; | |
using Lappa.ORM; | |
namespace deployer.Definitions.User | |
{ | |
[DBTable(Name = "user", Pluralize = false)] | |
class User : Entity | |
{ | |
[DBField(Name = "id", Null = false)] | |
public int Id { get; set; } |
I hereby claim:
To claim this, I am signing this object:
package javaperf; | |
import java.util.*; | |
public class JavaPerf | |
{ | |
private static Map<Integer, UUID> uuidMap = new HashMap<>(); | |
private static List<UUID> uuids = new ArrayList<>(); | |
public static void main(String[] args) |
public class CountDown implements Runnable | |
{ | |
private JavaPlugin plugin; | |
private int countdown = 0; | |
private int threadId = 0; | |
private final Map<Integer, List<CountdownCallback>> callbacks = new HashMap<>(); | |
public CountDown(JavaPlugin plugin, int countdown) | |
{ |
return array( | |
/** | |
* name of the datasource | |
*/ | |
"main" => array( | |
"type" => \Infy\DataSource\InfyDataSourceType::$MYSQL, | |
"options" => array( | |
/** |
import org.bukkit.Bukkit; | |
import org.bukkit.configuration.file.YamlConfiguration; | |
import org.bukkit.entity.Player; | |
import org.bukkit.event.EventHandler; | |
import org.bukkit.event.Listener; | |
import org.bukkit.event.player.PlayerJoinEvent; | |
import org.bukkit.event.player.PlayerKickEvent; | |
import org.bukkit.event.player.PlayerQuitEvent; | |
import org.bukkit.plugin.java.JavaPlugin; | |
import org.bukkit.scheduler.BukkitRunnable; |
import java.lang.annotation.ElementType; | |
import java.lang.annotation.Retention; | |
import java.lang.annotation.RetentionPolicy; | |
import java.lang.annotation.Target; | |
@Retention(RetentionPolicy.RUNTIME) | |
@Target({ElementType.FIELD, ElementType.TYPE}) | |
public @interface ConfigKey | |
{ | |
String FILE(); |
import java.lang.annotation.ElementType; | |
import java.lang.annotation.Retention; | |
import java.lang.annotation.RetentionPolicy; | |
import java.lang.annotation.Target; | |
@Retention(RetentionPolicy.RUNTIME) | |
@Target({ElementType.FIELD, ElementType.TYPE}) | |
public @interface ConfigKey | |
{ | |
String FILE(); |
Array | |
( | |
[aktiva] => Array | |
( | |
[0] => Array | |
( | |
[konto] => Bank | |
[betrag] => 800 | |
) |