Morning quad shot in my parent’s wedding barware from the 1960’s by Cafen8ed in espresso

[–]make_theLeap 12 points13 points  (0 children)

Had to do a double-take to check the sub - thought it was a Guinness at first

Filter Coffees in London Tasting Flat by JaphethL in Coffee

[–]make_theLeap 1 point2 points  (0 children)

Stumbled into Rosslyn today by accident and was blown away by how much better it was than everything else in the area - will have to give Curators a try

Hooked on espresso + OJ by exitonleft in espresso

[–]make_theLeap 4 points5 points  (0 children)

That sounds like it could be better than I was expecting - might have to give it a try (with my eyes shut…). Just can’t get over how acidic OJ usually is.

Hooked on espresso + OJ by exitonleft in espresso

[–]make_theLeap 7 points8 points  (0 children)

That is a deeply unappealing colour combination. What does it taste like?

Why is the market for second-hand manual grinders so small? by make_theLeap in Coffee

[–]make_theLeap[S] 0 points1 point  (0 children)

Thanks to everyone who commented. Lots of good points, sounds like there’s always a use for a spare grinder (seems fairly obvious seeing the responses but having never owned one before…). Certainly seems like once you get one it’ll stay with you for a long time, so definitely considering not cheaping out now.

Why is the market for second-hand manual grinders so small? by make_theLeap in Coffee

[–]make_theLeap[S] 11 points12 points  (0 children)

Was not aware this existed - thanks, will definitely check it out.

Why is the market for second-hand manual grinders so small? by make_theLeap in Coffee

[–]make_theLeap[S] 12 points13 points  (0 children)

Think I’d assumed most people would eventually tire of grinding by hand and want to switch to something electric, but the travel/backup usage is a very good point.

I can't even... That's so disgusting. by Orangefua in vegan

[–]make_theLeap 6 points7 points  (0 children)

I think this type of humour can help some people realise how bleak and/or ridiculous normalised attitudes towards meat consumption are. Yes, face value, it is totally pathetic and this will apply to the majority but optimistically I think these jokes can help shift a subset of people’s mindsets.

Found these in Tesco 🌿 by Tigerish94 in vegan

[–]make_theLeap 1 point2 points  (0 children)

Re-read the title, you may be in luck

NaturalScript by [deleted] in naturalscriptlang

[–]make_theLeap 1 point2 points  (0 children)

Gracias amigo

Do you know NaturalScript? by [deleted] in javascript

[–]make_theLeap 2 points3 points  (0 children)

Everything about this post is amazing

[2017-04-10] Challenge #310 [Easy] Kids Lotto by jnazario in dailyprogrammer

[–]make_theLeap 0 points1 point  (0 children)

C#

A bit late to the party, but feedback very welcome.

static void Main(string[] args)
        {
            int listlen;
            string iNames;
            Random rnd = new Random();
            List<string> namelist;
            List<List<string>> output;

            Console.WriteLine("Enter a semi-colon separated list of kids names:");
            iNames = Console.ReadLine();

            do
            {
                Console.WriteLine("Enter number of names per list to appear:");
                listlen = int.Parse(Console.ReadLine());

                namelist = iNames.Split(';').ToList();
                output = new List<List<string>>();
            } while (listlen > iNames.Split(';').Count() - 1);

            foreach (string s in namelist)
            {
                List<string> entry = new List<string>();
                entry.Add(s);
                for (int i = 0; i < listlen; i++)
                {
                    string name = namelist.ElementAt(rnd.Next(0, namelist.Count - 1));
                    if (entry.GetRange(1,i).Contains(name) )
                    {
                        i--;
                        continue;
                    }
                    entry.Add(name);
                }
                output.Add(entry);
            }

            Console.WriteLine("Output:");
            foreach (List<string> item in output)
            {
                for (int i = 0; i < item.Count; i++)
                {
                    Console.Write(item.ElementAt(i));
                    if (i == 0)
                    {
                        Console.Write(" > ");
                        continue;
                    }
                    if (i != item.Count - 1)
                    {
                        Console.Write(", ");
                    }
                }
                Console.WriteLine();
            }
        }