Thanks for 4 Years of Glorious Bass Forum-ing!

April 2nd is a sharp April 1st.

12 Likes

Date(‘04-01-2023’) + days(1); is what I’d have to write. Your method is much nicer and cleaner :upside_down_face:

5 Likes

I mean, it kinda depends on the language.

For SQL, I’d write something like:

SELECT CAST(DATEADD(DAY,1,'2023-04-01') AS DATE) AS BassBuzzBirthday

But for C# I’d write something more like:

using System;

public class Program
{
	public static void Main()
	{
		DateTime BassBuzzBirthday = new DateTime();
		BassBuzzBirthday = Convert.ToDateTime("2023-04-01").AddDays(1);
		Console.WriteLine(BassBuzzBirthday.ToString("yyyy-MM-dd"));
	}
}

Both would output 2023-04-02. :slight_smile:

HAH! So it’d be 2023-04-01#

8 Likes

Well, now I am certain that the new edition of the Encyclopedia Britannica will feature this thread under the entry “Geeking out” :wink:

10 Likes

I mean… “timsgeekery”. :smiley:

6 Likes

Hidden in plain sight :crazy_face:

7 Likes

Nomen est omen :nerd_face:

3 Likes

Happy birthday, Bassbot! And happy non-birthday to everyone else who’s birthday it isn’t. If you’re a horse, happy birthay :slight_smile:

5 Likes

for a 3 yr old, he shreds

3 Likes

I appreciate the support that @JoshFossgreen and all of you, too, sustain for newbies like me without a clue. BB exemplifies the ideal of the (early?) Net: to bring us together and share our common passion(s). This one is G-rated, for the most part, and family friendly, too…

6 Likes