2022-10-24
196 reads
2022-10-24
196 reads
Passwords cracked in under an hour using modern hardware have Steve shaking his head.
2022-10-22
415 reads
Working remotely can be more than working at home, which Steve thinks helps the work-life balance.
2022-10-21
155 reads
Meeting are work, even though we sometimes don't think of them as a productive part of our job.
2022-10-19
196 reads
2022-10-17
104 reads
2022-10-14
177 reads
Building software is becoming harder as new attacks try to inject malicious code into products.
2022-10-12
126 reads
Steve shares a few things he's learned from customers trying to migrate their systems to cloud computing platforms.
2022-10-10
236 reads
On nights and weekends, I've been playing with Arduino controllers. I have a couple of projects I'm working through (building a robot that can roll around with "eyes" to avoid obstacles). I've also been trying to work with STM32 controllers, because in a lot of ways, they're more powerful than an Arduino. However, I've hit […]
2022-10-08
164 reads
Building a toolbox of useful scripts and code is important for any technology professional.
2022-10-07
269 reads
By Steve Jones
“Don’t aim to have others like you; aim to have them respect you.” –...
Many years ago, before I joined Oracle, I was working on a major modernisation...
If you work with data pipelines, SQL, notebooks, or machine learning models, a Mac...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
WhatsApp: 0817839777 Jl. Pemuda No.90-92, Kembangsari, Kec. Semarang Tengah, Kota Semarang, Jawa Tengah 50133
WhatsApp: 0817839777 Gg. Tengah No.88, Kranggan, Kec. Semarang Tengah, Kota Semarang, Jawa Tengah 50137
In SQL Server 2025, I have a table (dbo.UserPermission) that contains this data:
UserID UserPermissions 15 23 37What is returned when I run this code:
select bit_count(UserPermissions) as PermissionCount from dbo.UserPermission where UserID = 3;See possible answers