Síða 3 af 4

Re: Hvað ertu með copy'að ?

Sent: Mið 02. Des 2009 20:42
af binnip
"http://www.youtube.com/watch?v=Yk_-4HQ4RSg "
Sá þetta á forsíðunni á youtube og varð forvitinn

Re: Hvað ertu með copy'að ?

Sent: Mið 02. Des 2009 21:53
af demigod

Re: Hvað ertu með copy'að ?

Sent: Mið 02. Des 2009 21:55
af Glazier

Re: Hvað ertu með copy'að ?

Sent: Mið 02. Des 2009 22:12
af Ulli
20:42:55 Notify Targeting attempt failed as the designated object is no longer present.

Re: Hvað ertu með copy'að ?

Sent: Mið 02. Des 2009 22:19
af Glazier
length

Re: Hvað ertu með copy'að ?

Sent: Mið 02. Des 2009 22:22
af Pandemic
hersey squirts

Re: Hvað ertu með copy'að ?

Sent: Mið 02. Des 2009 23:08
af 121310
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

Re: Hvað ertu með copy'að ?

Sent: Mið 02. Des 2009 23:17
af Glazier
GIGABYTE ATI RADEON HD5850

Re: Hvað ertu með copy'að ?

Sent: Mið 02. Des 2009 23:28
af Allinn

Re: Hvað ertu með copy'að ?

Sent: Mið 02. Des 2009 23:41
af TwiiztedAcer
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

Re: Hvað ertu með copy'að ?

Sent: Mið 02. Des 2009 23:48
af Glazier

Re: Hvað ertu með copy'að ?

Sent: Mið 02. Des 2009 23:52
af SteiniP

Re: Hvað ertu með copy'að ?

Sent: Fim 03. Des 2009 00:16
af Allinn
.

Re: Hvað ertu með copy'að ?

Sent: Fim 03. Des 2009 00:26
af Aravil
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ð!)

Sent: Fim 03. Des 2009 00:53
af Hvati
eytt

Re: Hvað ertu með copy'að ?

Sent: Fim 03. Des 2009 01:47
af intenz

Re: Hvað ertu með copy'að ?

Sent: Fim 03. Des 2009 02:20
af sakaxxx
killing a Toyota pt

Re: Hvað ertu með copy'að ?

Sent: Fim 03. Des 2009 08:43
af stebbi-
Gigabyte M8000

Re: Hvað ertu með copy'að ?

Sent: Fim 03. Des 2009 10:11
af BjarkiMTB

Re: Hvað ertu með copy'að ?

Sent: Fim 03. Des 2009 10:13
af BjarkiMTB

Re: Hvað ertu með copy'að ?

Sent: Fim 03. Des 2009 10:21
af BjarkiMTB

Re: Hvað ertu með copy'að ?

Sent: Fim 03. Des 2009 15:55
af FriðrikH
Upplýst samþykki hefur verið móttekið.

Re: Hvað ertu með copy'að ?

Sent: Fim 03. Des 2009 16:02
af Lester

Re: Hvað ertu með copy'að ?

Sent: Fim 03. Des 2009 16:08
af Glazier
David G - Sexy Bitch

Re: Hvað ertu með copy'að ?

Sent: Fim 03. Des 2009 16:09
af starionturbo

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#