MidnightDevil Posted May 1, 2012 Share Posted May 1, 2012 http://www.dropbox.com/gallery/15394707/1/Android%20Stuff?h=3bfae7 Link to comment Share on other sites More sharing options...
+Frank B. Subscriber² Posted May 1, 2012 Subscriber² Share Posted May 1, 2012 http://f1zoom.co.cc/?year=2012&race=mugello050102&img=85&from=42&view=1 Link to comment Share on other sites More sharing options...
mps69 Posted May 1, 2012 Share Posted May 1, 2012 http://www.amazon.co.uk/POCKET-TOOL-ROLL-CARRY-HANDLE/dp/B005KHVMQ4/ref=sr_1_5?ie=UTF8&qid=1335869358&sr=8-5 Checking out a birthday prezzie for my daughter. Link to comment Share on other sites More sharing options...
firey Posted May 1, 2012 Share Posted May 1, 2012 http://hunt4freebies.com/ Site my buddy sent me. So far from it, i've ordered a pair of 3d glasses, and a bunch of cologne samples. Link to comment Share on other sites More sharing options...
Farstrider Posted May 1, 2012 Share Posted May 1, 2012 sudo netcfg ethernet-static My connection went down. Link to comment Share on other sites More sharing options...
cooky560 Veteran Posted May 1, 2012 Veteran Share Posted May 1, 2012 https://public.sn2.livefilestore.com/y1pgX8atlpwkzECPvixm3ETFhhZk3NGtjARKZkiOeLOk-DWgSiOxLpG-PplB4m4AjSklGlrM-JlWhAluNnkRrzCbg/desktop.png Link to comment Share on other sites More sharing options...
+Neowinian Subscriber² Posted May 2, 2012 Subscriber² Share Posted May 2, 2012 http://m.bbc.co.uk/news/uk-17922388?psdata=11_3_8_4_9_10__CD11__CK12_14_15_ Sent this article to a friend Link to comment Share on other sites More sharing options...
cooky560 Veteran Posted May 3, 2012 Veteran Share Posted May 3, 2012 2727936 Link to comment Share on other sites More sharing options...
eagle06 Posted May 3, 2012 Share Posted May 3, 2012 values ('HPJ85FCBXLQ28FICHXW7' ,'2012-04-04' ,'0' ,NULL ,'9999-12-31' ,NULL ,NULL ,NULL ,'N' ,'N' ,'9999-12-31' ,'2012-04-18 11:18:52.451089' ,NULL ,'2012-04-18 11:18:52.451089' ,'N' ,NULL ,'9999-12-31' ,NULL) Link to comment Share on other sites More sharing options...
Flae_qui Posted May 3, 2012 Share Posted May 3, 2012 http://www.pcmag.com/article2/0,2817,2403917,00.asp Link to comment Share on other sites More sharing options...
robertobaggio2k Posted May 3, 2012 Share Posted May 3, 2012 http://maps.google.com/maps/place?cid=1950437496413839758&hl=en-GB here's mine lol was sharing company google place on our facebook page :) Link to comment Share on other sites More sharing options...
Ambroos Posted May 3, 2012 Share Posted May 3, 2012 package domainmodel;/*** De klasse kaart stelt een kaart voor van een bepaald type* (Harten/Klaveren/Ruiten/Schoppen) en een bepaald nummer (1-13, waar 1 = Aas,* 11 = Boer, 12 = Dame, 13 = Koning)** @author Ambroos**//*** @author Ambroos**/public class Kaart {private String type = "Harten";private int nummer = 1;private boolean omgedraaid = true;/** * Maakt een nieuwe kaart aan met een bepaald type en een bepaald nummer. * * @param type * Het type van de kaart, moet Harten/Klaveren/Ruiten/Schoppen * zijn. * @param nummer * Het nummer van de kaart, moet 1-13 zijn. (1 = Aas, 11 = Boer, * 12 = Dame, 13 = Koning) * @throws IllegalArgumentException * Wanneer het type of het nummer van de kaart ongeldig is. */public Kaart(String type, int nummer) throws IllegalArgumentException { this.setType(type); this.setNummer(nummer);}private void setType(String type) throws IllegalArgumentException { if (type == null) throw new IllegalArgumentException("Type mag niet null zijn."); if (!(type.equals("Harten") || type.equals("Ruiten") || type.equals("Schoppen") || type.equals("Klaveren"))) throw new IllegalArgumentException( "Kaarttype moet Harten, Koeken, Schoppen of Klaveren zijn. Hoofdlettergevoelig."); this.type = type;}/** * Geeft het type van de kaart. (Harten/Klaveren/Ruiten/Schoppen) * * @return Het type van de kaart. */public String getType() { return type;}private void setNummer(int nummer) throws IllegalArgumentException { if (nummer < 1 || nummer > 13) throw new IllegalArgumentException( "Kaartnummer moet tussen 1 en 13 liggen.\n11 = Boer\n12 = Dame\n13 = Koning"); this.nummer = nummer;}/** * Geeft het nummer van de kaart. 1 = Aas, 11 = Boer, 12 = Dame, 13 = * Koning. * * @return Het nummer van de kaart; */public int getNummer() { return nummer;}/** * Draait de kaart om. Omgedraaide kaarten worden ont-omgedraaid. Ofzo. */public void draaiOm() { setOmgedraaid(!isOmgedraaid());}private void setOmgedraaid(boolean isOmgedraaid) { this.omgedraaid = isOmgedraaid;}/** * Geeft terug of de kaart is omgedraaid. * * @return True wanneer de kaart is omgedraaid. */public boolean isOmgedraaid() { return omgedraaid;}/* * (non-Javadoc) * * @see java.lang.Object#toString() */@Overridepublic String toString() { String result = null; String teken = "" + getNummer(); if (nummer == 1) { teken = "Aas"; } else if (nummer == 11) { teken = "Boer"; } else if (nummer == 12) { teken = "Dame"; } else if (nummer == 13) { teken = "Koning"; } if (isOmgedraaid()) { result = getType() + " " + teken; } else { result = "--"; } return result;}/** * Kijkt of een kaart op gebied van nummer en type gelijk is aan een andere * kaart. Of de kaarten dezelfde omdraaistatus hebben maakt niet uit. * * @param kaart * De kaart om te vergelijken met de oproepende kaart. * @return True wanneer beide kaarten hetzelfde type en hetzelfde nummer * hebben. */public boolean equals(Object o) { boolean result = false; if (o != null && o instanceof Kaart) { Kaart kaart = (Kaart) o; if (kaart.getNummer() == this.getNummer() && kaart.getType().equals(this.getType())) result = true; } return result;}/** * Interprets human input (such as "hartenaas" or "klaverenboer" or * "Harten tien" and almost all other possible valid inputs to return the * right card and maximize usability. * * @param input * any string input that might contain enough information to form * a card * @return the card the user put in * @throws IllegalArgumentException * when the input could not be interpreted properly or was * invalid */public static Kaart humanInput(String input) throws IllegalArgumentException { int nummer = 0; String type = null; if (input == null || input.length() == 0) { throw new IllegalArgumentException("De invoer is ongeldig."); } input = input.toLowerCase(); // Check all possible number inputs. if (input.contains("1") || input.contains("een") || input.contains("aas")) nummer = 1; if (input.contains("2") || input.contains("twee")) nummer = 2; if (input.contains("3") || input.contains("drie")) nummer = 3; if (input.contains("4") || input.contains("vier")) nummer = 4; if (input.contains("5") || input.contains("vijf")) nummer = 5; if (input.contains("6") || input.contains("zes")) nummer = 6; if (input.contains("7") || input.contains("zeven")) nummer = 7; if (input.contains("8") || input.contains("acht")) nummer = 8; if (input.contains("9") || input.contains("negen")) nummer = 9; if (input.contains("10") || input.contains("tien")) nummer = 10; if (input.contains("boer") || input.contains("11")) nummer = 11; if (input.contains("dame") || input.contains("koningin") || input.contains("12")) nummer = 12; if (input.contains("koning") || input.contains("heer") || input.contains("13")) nummer = 13; // Check all possible type inputs if (input.contains("hart")) { type = "Harten"; } if (input.contains("klaver")) { type = "Klaveren"; } if (input.contains("schop") || input.contains("schup")) { type = "Schoppen"; } if (input.contains("ruit") || input.contains("koek")) { type = "Ruiten"; } if (nummer == 0 || type == null) throw new IllegalArgumentException("De invoer is ongeldig."); return new Kaart(type, nummer);}/** * Vergelijkt twee kaarten op gebied van nummer, type en eventueel null of * niet. Deze methode kan gebruikt worden bij het sorteren. De * vergelijkingsvolgorde is de standaardvolgorde van de kaarten. * (Aas-2...10-Boer-Dame-Koning, Harten/Klaveren/Ruiten/Schoppen) * * @param kaart * De kaart om mee te vergelijken. * @return Een positief cijfer als de oproepende kaart juist staat tegenover * de parameterkaart. */public int compareTo(Kaart kaart) { int verschil = 0; if (kaart == null) { verschil = -1; } else { verschil = getType().compareTo(kaart.getType()); } if (verschil == 0) { verschil = getNummer() - kaart.getNummer(); } return verschil;}}[/CODE] You asked for it... Link to comment Share on other sites More sharing options...
+Dick Montage Subscriber² Posted May 3, 2012 Subscriber² Share Posted May 3, 2012 Link to comment Share on other sites More sharing options...
derkim Posted May 3, 2012 Share Posted May 3, 2012 221841796246 Shipment tracking Link to comment Share on other sites More sharing options...
soumyasch Posted May 3, 2012 Share Posted May 3, 2012 667145 The password to login to my bank account. Don't fret, its a single use passcode. Link to comment Share on other sites More sharing options...
Geoffrey B. Veteran Posted May 3, 2012 Veteran Share Posted May 3, 2012 1090552 wouldn't you like to know? Link to comment Share on other sites More sharing options...
Sir Topham Hatt Posted May 3, 2012 Share Posted May 3, 2012 Open the Eyes of My Heart Link to comment Share on other sites More sharing options...
leesmithg Posted May 3, 2012 Share Posted May 3, 2012 zemana 2012 Link to comment Share on other sites More sharing options...
leesmithg Posted May 3, 2012 Share Posted May 3, 2012 zemana 2012 Link to comment Share on other sites More sharing options...
leesmithg Posted May 3, 2012 Share Posted May 3, 2012 zemana 2012 Link to comment Share on other sites More sharing options...
Azusa Posted May 3, 2012 Share Posted May 3, 2012 14642 (Pixiv member ID found in url) Link to comment Share on other sites More sharing options...
riceBox Posted May 3, 2012 Share Posted May 3, 2012 Link to comment Share on other sites More sharing options...
Mystic Mungis Posted May 3, 2012 Share Posted May 3, 2012 http://www.youtube.com/watch?v=itvJybdcYbI Don't judge me :( Link to comment Share on other sites More sharing options...
+Frank B. Subscriber² Posted May 3, 2012 Subscriber² Share Posted May 3, 2012 <Laura|0> i am fapping like mad From the #neowin IRC topic. Link to comment Share on other sites More sharing options...
JJ_ Posted May 3, 2012 Share Posted May 3, 2012 http://www.1000uglypeople.com/photos/Ugly-Women/165.jpg Link to comment Share on other sites More sharing options...
Recommended Posts