Search Results for “#tech”

Page 3 of 5

My company #Fynydd just updated SQribe to .NET 7. SQribe is a cross-platform #opensource tool to backup/restore SQL Server databases. It generates T-SQL scripts so you can version your database in git and copy databases across VPNs.

SQribe: Backup and Restore SQL Server Databases on Mac OS, Windows, and Linux
SQribe: Backup and Restore SQL Server Databases on Mac OS, Windows, and Linux

sqribe.app

#tech #software #recommendation #dotnet #csharp #code

Dec 20, 2022

Chip transistor density is currently measured in nanometers. A human hair is 100,000 nanometers wide. By 2025 we’ll be talking about chip transistor density in angstroms. A human hair is 1,000,000 angstroms wide.

Imec Presents Sub-1nm Process and Transistor Roadmap Until 2036: From Nanometers to the Angstrom Era
Imec Presents Sub-1nm Process and Transistor Roadmap Until 2036: From Nanometers to the Angstrom Era

www.tomshardware.com

#science #tech

Dec 18, 2022

For those interested in the #ElonMusk clown car crashing into the dumpster fire that is #twitter, I highly recommend this website to keep up on the #tech disaster.

Twitter is Going Great!
Twitter is Going Great!

twitterisgoinggreat.com

Dec 16, 2022

I know I know, another terminal #recommendation. But this one is different in that the input area is more of a text editor, and it isolates the output per command. It also uses AI to help you complete commands much like Github Copilot does for your #code. VERY cool #software #tech. Available for #Apple #Mac now. Will be available for #Windows and #Linux soon.

Warp: Your terminal, reimagined
Warp: Your terminal, reimagined

www.warp.dev

Dec 15, 2022

If you're looking for a better option to the Ember mug, try the OHOM ui ceramic mug. It uses a Qi charger that also charges your phone. The ceramic reacts with the charger and heats the mug to 130F without a battery. It's half the price of an Ember mug.

Ui Fine Ceramic Self Heating Mug | Coffee and Tea Cup | Ohom
Ui Fine Ceramic Self Heating Mug | Coffee and Tea Cup | Ohom

ohom.com

#tech #gadget #recommendation

Sep 1, 2022

Software Development is Not Coding

When asked, most people think that software development is about coding; the physical act of programming apps and platforms for servers, computers, and mobile devices. This is not the case.

Software development is the process of solving problems through software. It's a creative process that is centered on discovery and adaptation which uses tactics like programming (coding) to accomplish its ends. Likewise, software development is not the act of reusing existing software for a new purpose. That's just copying bits.

So it is important for those involved in the software development process to understand and acknowledge the following key aspects.

Discovery and adaptation is the focus.

Understanding the problem domain is the key to a successful software development process. And we know the least about a problem domain at the outset. So it doesn't make sense to plan everything out at the beginning. Software development is an exercise in learning. We learn more and more about the problem to be solved as we move through the process. And as the problem domain comes into focus we should be refining or redefining what we should be building as we learn.

Mistakes will be made.

Mistakes help us solve problems and are one way in which we learn. Embrace them. Plan for them.

We cannot predict the future.

Perfect plans are usually perfectly wrong. It is impossible to perfectly know the steps, mistakes, discoveries, interruptions, and goals for a project, nor the time impact of each, all in advance.

Estimates are guesses about the future.

Great software doesn't just manifest in one go. It springs forth in a deficient state and evolves over time. This makes guessing about its future state with any accuracy a fools errand. It also means that creating precise specifications for those guesses can be a waste of time.

Accuracy and precision are not the same. Something can be very precise but horribly wrong. This has been shown by various studies, including those in the Microsoft Press book Rapid Development by Steve McConnell. According to the book it doesn't matter how diligent or thorough an estimate may be. The data shows that when compared to a more broad, high-level, or piecemeal approach based on past experience, the error bounds are largely the same.

Right-fit planning works.

We must understand the level of precision that makes sense. For example, it doesn't make sense to plan an entire project with the same precision as planning next week's work. Likewise, planning specific deliverables for dates far out into the future is also problematic. Small time horizons increase the accuracy of our guesses.

Release often.

By deploying changes frequently, we allow the entire team to steer the direction of the project early and often. This agile approach will ensure that the final product performs as it should for its users.

#tech #code #philosophy #Fynydd

Jun 22, 2022

I was disappointed to discover that the new Apple Silicon MacBook Air and Pro (all sizes) only support 866mbps WiFi 5 speeds whereas the older Intel models supported 1300mbps speeds. Not enough MIMO channels. They do support WiFi 6 at that speed, however.

#tech #apple #mac

Jun 21, 2022

#Apple #Mac mechanical keyboard users who want a great set of PBT double-shot shine-through keys for their keyboard, check out this set from PWNAGE for only $15.

Full Keycap Set - Double Shot PBT Shine Through
Full Keycap Set - Double Shot PBT Shine Through

pwnage.com

#tech #gadget #recommendation

Jun 18, 2022

Only a study involving the dairy industry would come to the conclusion that it’s a great idea to hide the expiration date on milk cartons.

Consumers embrace milk carton QR codes, may cut food waste
Consumers embrace milk carton QR codes, may cut food waste

phys.org

#tech #food #opinion

Jun 2, 2022

I just posted a new SQL Server ORM library for .NET 6.0 (C#) named DataStore, which uses JSON object storage and a fluent-style querying pattern.

GitHub - argentini/Argentini.DataStore: SQL Server ORM library that stores models as JSON data with custom indexed computed columns for fast search and ordering (like mongodb). DataStore uses a fluent pattern for powerful querying and ordering of paged data, and parallel bulk saves (Windows, macOS, Linux, .NET 7.0, x64, Arm64, Apple Silicon)
GitHub - argentini/Argentini.DataStore: SQL Server ORM library that stores models as JSON data with custom indexed computed columns for fast search and ordering (like mongodb). DataStore uses a fluent pattern for powerful querying and ordering of paged data, and parallel bulk saves (Windows, macOS, Linux, .NET 7.0, x64, Arm64, Apple Silicon)

github.com

#tech #code #csharp #dotnet

May 28, 2022

I built a virtual Enigma Machine using .NET 6.0 and C#. Unlike the original hardware, this one can encipher the entire UTF-16 character set! It's configurable and very strong for a keyless cipher.

GitHub - argentini/Argentini.Enigma: A virtual Enigma Machine that enciphers and deciphers UTF-16 strings, and which can be used for keyless encryption in mobile, desktop, and server apps (Windows, macOS, Linux, .NET 7.0, x64, Arm64, Apple Silicon).
GitHub - argentini/Argentini.Enigma: A virtual Enigma Machine that enciphers and deciphers UTF-16 strings, and which can be used for keyless encryption in mobile, desktop, and server apps (Windows, macOS, Linux, .NET 7.0, x64, Arm64, Apple Silicon).

github.com

#tech #code #csharp #dotnet

May 27, 2022

I updated my Benford's Law project to .NET 6.0 and C# 10. What is it? It uses the law of anomalous numbers to determine if data or images have been altered.

GitHub - argentini/Argentini.Benford: Experiment with Benford's Law to find data anomalies in number lists and images (Windows, macOS, Linux, .NET 7.0, x64, Arm64, Apple Silicon)
GitHub - argentini/Argentini.Benford: Experiment with Benford's Law to find data anomalies in number lists and images (Windows, macOS, Linux, .NET 7.0, x64, Arm64, Apple Silicon)

github.com

#tech #code #csharp #dotnet

May 27, 2022

The one, I’d venture to say the ONLY, feature people really want in a paid subscription version of #Twitter is an ad-free experience. Looks like #TwitterBlue failed at the start.

#tech

Mar 15, 2022

$9,600 + $960/year for a single domain #Umbraco deployment tool makes it clear that a post-acquisition Umbraco has no plans to support indie developers and small businesses.

#tech #opinion

Jan 23, 2022

Facebook doesn’t need section 230 changed. They can stop prioritizing inflammatory content at any time of their choosing.

#tech #opinion

Oct 23, 2021

If you’re having issues with alarm volume on #iOS being super low try disabling the Face ID “attention aware feature” setting. It drops the volume when it thinks you’re using the phone but I’ve seen it happen sitting on a nightstand.

#apple #tech #recommendation

Oct 21, 2021

If you're interested in beta testing my new iOS app “Āthepedia” let me know. Need an iPhone running iOS 13 or later (Android version coming soon).

#atheism #Apple #iOS #tech #software #recommendation

Jul 20, 2021

Darkside #ransomware as a service takes a smaller cut of the profits from an attack than Apple takes from App Store sales. I feel like this means something.

#tech #security

May 22, 2021

Apple announced lossless audio for #Apple Music and has no headphones that can play the lossless music.

#tech #opinion

May 18, 2021

Pretty interesting PC laptop product that is more sustainable and configurable.

Framework Laptop 16 pre-orders are now open
Framework Laptop 16 pre-orders are now open

frame.work

#tech #gadget #recommendation

Apr 13, 2021

#Twitter, #Facebook, etc. are privately held companies. Their free services require that users agree to and follow their terms of service. Getting banned is solely at their discretion based on violations of these terms. It’s not censorship to ban #Trump, even for life.

#tech #politics

Jan 9, 2021

#Apple Watch owners, what does it mean when you get off the toilet and your watch congratulates you for closing your activity rings? Asking for a friend.

#tech #humor

Jan 9, 2021

My company #Fynydd just released SQribe as an #opensource project! It’s a cross-platform tool to backup/restore SQL Server databases. It generates T-SQL scripts so you can version your database in git and copy databases across VPNs.

SQribe: Backup and Restore SQL Server Databases on Mac OS, Windows, and Linux
SQribe: Backup and Restore SQL Server Databases on Mac OS, Windows, and Linux

sqribe.app

#tech #software #recommendation #dotnet #csharp #code

Dec 3, 2020

Great article on AI.

AI pioneer Geoff Hinton: “Deep learning is going to be able to do everything”
AI pioneer Geoff Hinton: “Deep learning is going to be able to do everything”

www.technologyreview.com

#tech #recommendation

Nov 3, 2020

Page 3 of 5
Pageof 5

Copyright © 2024 Michael Argentini. All rights reserved.