Advice for Business
Some advice from Steve and Sam Altman, whether you work in business or want to build one.
2024-01-08
156 reads
Some advice from Steve and Sam Altman, whether you work in business or want to build one.
2024-01-08
156 reads
A good way to showcase your skills is by working through and documenting a project and solution. Steve notes today that this is important in today's hiring market and asks for sample projects you might suggest for others.
2024-01-05
493 reads
Happy New Year from Steve, with a reminder to work on your career plan for 2024.
2024-01-01
77 reads
On the last working day of 2023, Steve says you should think about making a 2024 plan for your career.
2023-12-29
206 reads
Steve has been doing a cybersecurity advent challenge and has found it to be interesting, fun, and career building.
2023-12-22
143 reads
An OReilly Radar report on AI has some interesting data to Steve. Read what he thinks about the state of this technology in 2023.
2023-12-20
176 reads
Steve has some advice on how to grow your career by growing your skills and developing deeper knowledge.
2023-12-08
178 reads
A stagnant career can be stifling, and it can make you unhappy at work, where you spend a lot of time. Steve has a few thoughts on how to avoid that.
2023-12-06
186 reads
If you are considering moving into management as a career goal, read today's editorial from Steve, with some advice based on an interesting article from someone with experience at Facebook and Stripe.
2023-12-01
95 reads
Steve doesn't think you need a degree to work in technology and more companies agree with this all the time.
2023-11-11
90 reads
Setting page visibility and the active page are often overlooked last steps when publishing...
By Steve Jones
It’s time for T-SQL Tuesday again and this time Todd Kleinhans has a great...
By Steve Jones
Recently I was working in VS Code and I saw a walkthrough for the...
Comments posted to this topic are about the item Password Guidance
Comments posted to this topic are about the item Using table variables in T-SQL
I am trying to check out elastic query between two test instances we have...
What happens if you run the following code in SQL Server 2022+?
declare @t1 table (id int); insert into @t1 (id) values (NULL), (1), (2), (3); select count(*) from @t1 where @t1.id is distinct from NULL;See possible answers