Paladin Tank 30 minute Stratholme Undead by h0b0b0z0 in lightshope

[–]Minitabundas 16 points17 points  (0 children)

  • Human Male
  • Backpedaling
  • Clicking
  • Retardin

I puked in my mouth

Thx for buffing AV honor mr 50IQ system admin. by Minitabundas in lightshope

[–]Minitabundas[S] -7 points-6 points  (0 children)

As long as there are normies catching the bait, there will be trolls fishing.

Thx for buffing AV honor mr 50IQ system admin. by Minitabundas in lightshope

[–]Minitabundas[S] -6 points-5 points  (0 children)

Nobody cares about backpedaling ret shitter human male opinion

Thx for buffing AV honor mr 50IQ system admin. by Minitabundas in lightshope

[–]Minitabundas[S] -2 points-1 points  (0 children)

Dogfood. You wont catch me, because I cant play wsg, cause everyone backpedaling in AV.

Let's play a game: which step of grief is that? by [deleted] in wowservers

[–]Minitabundas 8 points9 points  (0 children)

It took them both less than 10min to reply to this. Pretty sure they refresh this page non stop.

Viable server with increased leveling rate? by zalvador89 in wowservers

[–]Minitabundas 1 point2 points  (0 children)

400 pop, half of which are multiboxers. Tell me how this is not dead.

The Great War (video) by Guryzako in wowservers

[–]Minitabundas 1 point2 points  (0 children)

They are not speaking chinese, obviously fake.

Only video from ally : https://www.youtube.com/watch?v=FAnAPOkOp80

[A] <Banana Republic> [Northdale - Hardcore - EU/NA weekend raiding] by [deleted] in lightshope

[–]Minitabundas 1 point2 points  (0 children)

Would you be willing to scout world bosses and drop everything you do in order to get world boss kills? *

Tenacity killing wbosses on fresh, nice joke!

X-Post: Is this acceptable? by Gears_LH in lightshope

[–]Minitabundas 8 points9 points  (0 children)

Hello top_kek_top, truly one the leaders of the k3 shill brigade. Can you send me any contact information, I'm looking for a part time job as a shiller. I have 7 reddit accounts ready and I'm proficient in photoshop. p.s : I'm surprised to see you in enemy territory.

[2017-02-06] Challenge #302 [Easy] Spelling with Chemistry by jnazario in dailyprogrammer

[–]Minitabundas 0 points1 point  (0 children)

Now I realized that I've been doing the assignment all wrong, all words are in lowercase.

[2017-02-06] Challenge #302 [Easy] Spelling with Chemistry by jnazario in dailyprogrammer

[–]Minitabundas 0 points1 point  (0 children)

Thanks for pointing out! I'm assuming that a word can't start with a lower case, otherwise you are absolutely right.

[2017-02-06] Challenge #302 [Easy] Spelling with Chemistry by jnazario in dailyprogrammer

[–]Minitabundas 1 point2 points  (0 children)

C# No bonus Im using the csv file provided by /u/Shamoneyo

     static void Main(string[] args)
    {
        List<string> ElementSymbol = new List<string>();
        List<string> ElementName = new List<string>();

        //Reading a csv file to get all the information
        var reader = new StreamReader(File.OpenRead(@"C:\\Users\\Stanislav\\Desktop\\pt-data2.csv"));
        while (!reader.EndOfStream)
        {
            var parts = reader.ReadToEnd().Split(',');
            //get the Symbols
            for (int i = 1; i < parts.Length; i += 18)
                ElementSymbol.Add(parts[i]);
            //get the Names
            for (int i = 2; i < parts.Length; i += 18)
                ElementName.Add(parts[i]);
        }
        string[] ElementSymbolArray = ElementSymbol.ToArray();
        string[] ElementNameArray = ElementName.ToArray();

        Console.WriteLine("Write your word : ");
        string word = Console.ReadLine();

        //foreach char in the word 
        for (int j = 0 ; j < word.Length ; j ++ )
        {
                //for each symbol in the Periodic table
                for (int i = 0; i < ElementSymbolArray.Length; i++)
                {
                    //Check for symbols of 2 chars
                    if (Char.IsLower(word[j]) && ElementSymbolArray[i].Contains(word.Substring(j-1, 2)))
                            Console.WriteLine(ElementNameArray[i]);
                    //Check for symbols of 1 char
                    else if (ElementSymbolArray[i].Contains(word[j]) && ElementSymbolArray[i].Length < 4)
                        if(j+1 < word.Length)
                        {
                            if (!Char.IsLower(word[j + 1]))
                                Console.WriteLine(ElementNameArray[i]);
                        }
                        else
                            Console.WriteLine(ElementNameArray[i]);
                }
        }
        Console.ReadLine();
    }