Hvað ertu með copy'að ?
-
- spjallið.is
- Póstar: 401
- Skráði sig: Mið 15. Apr 2009 14:44
- Reputation: 0
- Staðsetning: fyrir framan skjáinn.
- Staða: Ótengdur
Re: Hvað ertu með copy'að ?
"http://www.youtube.com/watch?v=Yk_-4HQ4RSg "
Sá þetta á forsíðunni á youtube og varð forvitinn
Sá þetta á forsíðunni á youtube og varð forvitinn
nVidia 9600GT - 600GB HD- ASRockP43DE - Intel E6600 2.4 GHz - GeIL Ultra 4GB 1066 MHz
Re: Hvað ertu með copy'að ?
"Walking on water and developing software from a specification are easy if both are frozen." Edward V. Berard
-
- BMW
- Póstar: 2511
- Skráði sig: Fös 30. Jan 2009 22:20
- Reputation: 14
- Staðsetning: Mosó
- Staða: Ótengdur
Re: Hvað ertu með copy'að ?
20:42:55 Notify Targeting attempt failed as the designated object is no longer present.
I7-950 4.2Ghz1.4VStable! Rampage III Extream Corsair H70 Corsair Dominator 8-8-8-24 3x2Gb DDR3 1600 Asus R9 280x Samsung 470 series 64Gb SSD WD Green 2 TB Raven II Turn Beng Q V2420 Corsair AX850
Re: Hvað ertu með copy'að ?
limit((5*x+3/x)/(4-7/x), x = infinity) = (5*infinity+3/(infinity))/(4-7/(infinity)) and (5*infinity+3/(infinity))/(4-7/(infinity)) = (5*infinity+0)/(4+0) and (5*infinity+0)/(4+0) = (1/4)*(5*infinity) and (1/4)*(5*infinity) = infinity
-
- Vélbúnaðarníðingur
- Póstar: 339
- Skráði sig: Fös 23. Jan 2009 15:02
- Reputation: 0
- Staða: Ótengdur
Re: Hvað ertu með copy'að ?
Allinn skrifaði:http://www.youtube.com/watch?v=fpqMBtxodj0
suddalegt lag
annars er ég með þetta copy'að
http://buy.is/product.php?id_product=183
-
- BMW
- Póstar: 2511
- Skráði sig: Fös 30. Jan 2009 22:20
- Reputation: 14
- Staðsetning: Mosó
- Staða: Ótengdur
Re: Hvað ertu með copy'að ?
.
Síðast breytt af Allinn á Fim 03. Des 2009 20:46, breytt samtals 1 sinni.
Re: Hvað ertu með copy'að ?
You made the weapons for us all,
Just look at us now,
einhver hérna sem veit hvaða textabrot þetta er? (google er bannað!)
Just look at us now,

-
- Besserwisser
- Póstar: 3337
- Skráði sig: Mið 08. Okt 2008 22:07
- Reputation: 35
- Staðsetning: /dev/null
- Staða: Ótengdur
Re: Hvað ertu með copy'að ?
i7 920 @ 2.8 GHz | Gigabyte EX58-UD3R | CSX 3x2 GB DDR3 @ 1600 MHz | Gigabyte ATi Radeon HD 5850 | Sileo 500 | RealPower 600W | Corsair Force 3 120 GB | 27" FullHD | W7 x64
Re: Hvað ertu með copy'að ?
killing a Toyota pt
2600k gtx780 16gb
sjónvarps Intel Core2 Quad q6600 @3.0 Gtx660
▲
▲ ▲
sjónvarps Intel Core2 Quad q6600 @3.0 Gtx660
▲
▲ ▲
-
- Fiktari
- Póstar: 62
- Skráði sig: Sun 15. Feb 2009 03:42
- Reputation: 0
- Staðsetning: Reykjavík
- Staða: Ótengdur
Re: Hvað ertu með copy'að ?
Gigabyte M8000
Intel Core i7-6850K 3.6GHz - Gigabyte X99-Ultra Gaming - Corsair Vengeance 64GB DDR4 3200MHz - Samsung 950 Pro M.2 512GB - Samsung 850 Pro 512GB - GIGABYTE GeForce GTX 1080 G1 Gaming - Corsair RM1000i
-
- Gúrú
- Póstar: 542
- Skráði sig: Mán 24. Des 2007 11:23
- Reputation: 8
- Staðsetning: localhost
- Staða: Ótengdur
Re: Hvað ertu með copy'að ?
Kóði: Velja allt
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;
using System.Xml.XPath;
namespace eXceLSior.Components
{
using System.Security;
using System.Security.Cryptography;
public class DigestAdapter : IAdapter
{
public string Process(string input)
{
byte[] hash;
switch (Type)
{
case DigestType.HMACRIPEMD160:
{
using (var algorithm = new HMACRIPEMD160())
{
string test = "<request><hashkey>asdf</hashkey><hashvalue>" + input + "</hashvalue></request>";
XPathNavigator navigator = test.AsXPathNavigator();
string key = navigator.SelectSingleNode("/request/hashkey").InnerXml;
algorithm.Key = Encoding.ASCII.GetBytes(key);
string value = navigator.SelectSingleNode("/request/hashvalue").InnerXml;
hash = algorithm.ComputeHash(Encoding.UTF8.GetBytes(value));
break;
}
}
case DigestType.MD5:
hash = new MD5CryptoServiceProvider().ComputeHash(Encoding.UTF8.GetBytes(input));
break;
case DigestType.SHA1:
hash = new SHA1CryptoServiceProvider().ComputeHash(Encoding.UTF8.GetBytes(input));
break;
case DigestType.SHA256:
hash = new SHA256CryptoServiceProvider().ComputeHash(Encoding.UTF8.GetBytes(input));
break;
case DigestType.SHA384:
hash = new SHA384CryptoServiceProvider().ComputeHash(Encoding.UTF8.GetBytes(input));
break;
case DigestType.SHA512:
hash = new SHA512CryptoServiceProvider().ComputeHash(Encoding.UTF8.GetBytes(input));
break;
default:
return input;
}
StringBuilder sb = new StringBuilder(hash.Length);
foreach (byte b in hash)
sb.Append(String.Format("{0:x4}", b));
return sb.ToString();
}
public string Process(XPathNavigator input)
{
return String.Empty;
}
public DigestType Type
{
get;
set;
}
}
}
c#
Foobar