I hereby claim:
- I am Twister915 on github.
- I am twister915 (https://keybase.io/twister915) on keybase.
- I have a public key whose fingerprint is A5AC 6BDF 416E CB5F F1F4 EFFE A712 40A0 57DD 27C2
To claim this, I am signing this object:
use std::marker::PhantomData; | |
pub enum TopK<I, E, K, F, const N: usize> { | |
// this TopK has just been created and no data has been computed | |
// this is the initial state | |
Prepared { | |
itr: I, | |
f: F, | |
_k: PhantomData<K>, | |
}, |
package main | |
import ( | |
"context" | |
"sync" | |
) | |
type fanOutResult[K any, R any] struct { | |
Key K | |
Result R |
package net.cogzmc.core.effect.npc; | |
import com.comphenix.protocol.PacketType; | |
import com.comphenix.protocol.ProtocolLibrary; | |
import com.comphenix.protocol.events.PacketAdapter; | |
import com.comphenix.protocol.events.PacketEvent; | |
import com.comphenix.protocol.wrappers.WrappedDataWatcher; | |
import com.comphenix.protocol.wrappers.WrappedWatchableObject; | |
import com.google.common.collect.ImmutableSet; | |
import lombok.*; |
package main | |
import ( | |
"github.com/jinzhu/gorm" | |
_ "github.com/lib/pq" | |
_ "github.com/go-sql-driver/mysql" | |
"github.com/spf13/viper" | |
"fmt" | |
"github.com/gin-gonic/gin" | |
"net/http" |
I hereby claim:
To claim this, I am signing this object:
<?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>me.twister915.scanner</groupId> | |
<artifactId>OfflineModeScanner</artifactId> | |
<version>1.0-SNAPSHOT</version> |
import java.util.ArrayList; | |
import java.util.Collections; | |
import java.util.List; | |
import java.util.Scanner; | |
public final class DigitToolsApplication extends Application { | |
public static void main(String[] args) { | |
new DigitToolsApplication().run(); | |
} |
package com.nebulas.dev; | |
import net.cogzmc.core.modular.command.CommandException; | |
import net.cogzmc.core.modular.command.ModuleCommand; | |
import net.cogzmc.core.player.CPlayer; | |
import org.bukkit.Material; | |
import org.bukkit.entity.Player; | |
import org.bukkit.inventory.ItemStack; | |
import org.bukkit.inventory.PlayerInventory; |
{ | |
"Name": "Puush", | |
"RequestType": "POST", | |
"RequestURL": "https://puush.me/api/up", | |
"FileFormName": "f", | |
"Arguments": { | |
"k": "YOUR API KEY HERE", | |
"z": "poop" | |
}, | |
"ResponseType": "Text", |
package net.cogzmc.core.util; | |
import java.util.HashMap; | |
import java.util.Map; | |
public final class TimeUtils { | |
private static final Map<Character, Double> TIMEMAP = new HashMap<>(); | |
static { | |
TIMEMAP.put('s', 1D); |