Skip to content

Instantly share code, notes, and snippets.

King_of_Dragons jotted down notes from sit-down at Blizzards WoW preview:
Features/Misc
hour and a half to go from bottom to top of Azeroth
2 continents, Azeroth and Kalimdor
PVP will be consensual, 90% of world is non-pvp, 10% is
the Stranglethorn Arena will be player pvp. Players can buy tickets to fight dragons, hyrdras, etc.
Multiple players can fight a monster at once, but there will be limits.
Team battles, either groups vs groups or groups vs monster(s)
Guild battles planned, will be advertise
@GrenderG
GrenderG / ChangePassword.java
Created February 19, 2018 14:25 — forked from zach-klippenstein/ChangePassword.java
The keystore password on Java keystore files is utterly pointless. You can reset it without knowing it, as shown by this code. Note that private keys are still secure, as far as I know. The JKS implementation is copyright Casey Marshall (rsdio@metastatic.org), and the original source is available at http://metastatic.org/source/JKS.java. I've in…
import java.util.*;
import java.io.*;
import java.security.*;
public class ChangePassword
{
private final static JKS j = new JKS();
public static void main(String[] args) throws Exception
{
@GrenderG
GrenderG / SomeFragment.java
Created October 3, 2016 20:47 — forked from joshdholtz/SomeFragment.java
Android Google Maps V2 - MapView in XML
public class SomeFragment extends Fragment {
MapView mapView;
GoogleMap map;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.some_layout, container, false);