Comet C/2023 A3 (Tsuchinshan-ATLAS) as seen from the Canary Islands on 30 September CARLOS DE SAA/EPA-EFE/Shutterstock Earth is about to have a close encounter with a comet, possibly passing through its ion tail – a rare occurrence. If we are lucky, it could show up as a blue streak in the northern hemisphere night sky. […]
In today’s digital age, WordPress website speed and optimization play a crucial role in delivering an optimal user experience. Slow-loading websites not only frustrate visitors but can also adversely affect your search engine rankings and overall online reputation. In fact, statistics have shown that 40% of users will leave a website if it doesn’t load […]
In today’s digital age, WordPress website speed and optimization play a crucial role in delivering an optimal user experience. Slow-loading websites not only frustrate visitors but can also adversely affect your search engine rankings and overall online reputation. In fact, statistics have shown that 40% of users will leave a website if it doesn’t load […]
In the last 10 years I’ve given more than 400 coding interviews. That’s the equivalent of 2 working months just watching strangers having a crack at the same few programming challenges. Some of my would-be colleagues solve the problems without incident, but others run into trouble for similar, easily-correctable reasons. I wish I could give […]
Microsoft T-SQL supports a language feature called table-valued parameter (TVP), which is a parameter of a table type that can be passed to a stored procedure or function. For example, you may write: CREATE TYPE u_number_table AS TABLE (column_value INTEGER); CREATE FUNCTION f_cross_multiply ( @numbers u_number_table READONLY ) RETURNS @result TABLE ( i1 INTEGER, i2 […]
A question that comes back often when using Coordinator pattern in iOS development is how to pass data between views. Today I’ll share different approaches for a same solution, regardless if you are using MVVM, MVC or other architectural design pattern. As a reminder, Coordinator pattern is an architectural design pattern dedicated to handle navigation […]