Skip to content

Instantly share code, notes, and snippets.

View Qkyrie's full-sized avatar

QDS Qkyrie

  • Layer 0
View GitHub Profile
@Qkyrie
Qkyrie / config.toml
Created April 23, 2021 08:38
Binance smart chain full node configuration file
[Eth]
NetworkId = 56
NoPruning = false
NoPrefetch = false
LightPeers = 100
UltraLightFraction = 75
TrieTimeout = 100000000000
EnablePreimageRecording = false
EWASMInterpreter = ""
EVMInterpreter = ""
0xeaa85e656164ab925d168efd710a6ae0f67c5922
0x059a547e6c978254f35e5b12082a29c8bd470454
@Qkyrie
Qkyrie / gist:99738c105805250e241c9072fbff37b2
Created July 27, 2017 12:34
0xc3190dfc56e7e7ed28b981918c19d230388183ce
0xc3190dfc56e7e7ed28b981918c19d230388183ce
0x286019058B95817F435FcCea2d6CCd2ABb8d2e8E
0x2788d2a5b8f5C4E17276c72BB2cac25969CB6eef
0x2788d2a5b8f5C4E17276c72BB2cac25969CB6eef
0x6f96a8dA0AbD21523f074471c092FC9723274F2B
@Qkyrie
Qkyrie / IpcCrudRepository.java
Created July 31, 2014 08:19
Ipc Repository structure, including the full jparepository interface, as well as guava's optional in the findOne
package be.ipc.crp.core.repository;
import com.google.common.base.Optional;
import org.springframework.data.repository.NoRepositoryBean;
import org.springframework.data.repository.Repository;
import java.io.Serializable;
@NoRepositoryBean
public interface IpcCrudRepository<T, ID extends Serializable> extends Repository<T, ID> {
@Qkyrie
Qkyrie / AbstractSpecification.java
Created May 15, 2014 09:12
Specification Pattern
public abstract class AbstractSpecification<T> implements Specification<T> {
protected String messageKey;
public AbstractSpecification(String messageKey) {
this.messageKey = messageKey;
}
public AbstractSpecification() {
this.messageKey = "specification_" + getClass() + "_broken";
}