• 0 Posts
  • 23 Comments
Joined 5 months ago
cake
Cake day: June 6th, 2025

help-circle




  • My biggest problem with Teams is that it doesn’t deliver messages when it thinks the computer isn’t active. Got Teams running on Computer A while you’re working on Computer B? Don’t expect to see anything from anyone, not even if you frequently glance over at your other monitor.

    I got a mouse wiggler just so that I could get messages.

    The most fundamental feature of a messaging platform is messaging. If it can’t do that properly, which for some reason Teams can’t or won’t, then it deserves all the hate it gets.









  • This works for both positive and negative numbers:

    private static bool isEven(int number)
    {
    	bool result = true;
    
    	while (number < 0)
    	{
    		number = number - 1;
    		if (result == true)
    			result = false;
    		else
    			result = true;
    	}
    	while (number > 0)
    	{
    		number = number - 1;
    		if (result == true)
    			result = false;
    		else
    			result = true;
    	}
    	return result;
    }
    

    Output:

    isEven(4) = True
    isEven(5) = False
    isEven(-4) = True
    isEven(-5) = False
    


  • jaupsinluggies@feddit.uktoCasual UK@feddit.ukIndeed
    link
    fedilink
    English
    arrow-up
    18
    ·
    4 months ago

    Fair enough. It’s probably just what you’re used to then. I remember being over in the Caribbean a few years ago, someone got out of the sea and went “it’s cold”. Cold I said? You come to England I’ll show you cold.

    Cue the northern Canadians scoffing at my definition of cold.

    It’s not often over 25° here so we’re not used to it. Plus our houses are designed to keep the heat in and the cold wet out.