Skip to content

Instantly share code, notes, and snippets.

View sorbanbela's full-sized avatar
💭
Még egy hazajáró kecske se tudja, hogy mivan LOL

sorbanbela sorbanbela

💭
Még egy hazajáró kecske se tudja, hogy mivan LOL
  • 16:27 (UTC +03:00)
View GitHub Profile
@hugo4715
hugo4715 / pom.xml
Created December 28, 2016 19:01 — forked from Pocketkid2/pom.xml
pom.xml template for Bukkit/Spigot plugins
<!-- My pom.xml's usually look like this and I don't like retyping stuff -->
<!-- If any of these are not filled out you should -->
<groupId>CHANGE ME - PACKAGE IDENTIFIER</groupId>
<artifactId>CHANGE ME - PROJECT PACKAGE IDENTIFIER</artifactId>
<version>CHANGE ME - EVERY VERSION</version>
<name>CHANGE ME - NO SPACES RECOMMENDED</name>
<description>CHANGE ME - ONE SENTENCE DESCRIPTION RECOMMENDED</description>
<properties>
@huljas
huljas / FacebookCookie.java
Created November 15, 2011 17:54
Facebook cookie authentication
package models;
import com.google.gson.Gson;
import org.apache.commons.codec.binary.Base64;
import javax.crypto.Mac;
import javax.crypto.spec.SecretKeySpec;
import java.io.UnsupportedEncodingException;
import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;