Remove c
article thumbnail

Site-Speed Topography

CSS Wizardry

The whole point of the exercise that follows is to allow me to move quickly, spotting patterns from afar, and not having to do any slow or meticulous work yet. I want to be able to form hypotheses and draw conclusions without viewing a single URL or a line of source code. That work is what comes next. Final Word.

Speed 328
article thumbnail

Building High-Quality Software

DZone

It sits at the very beginning of the process before the code is written and can save an immense amount of time down the road (of somebody spending tons of time just to get to a dead-end). I really like what one of the smartest people with whom I worked said: “A good design is a design where you can see the code”. Important note.

Software 245
Insiders

Sign Up for our Newsletter

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

article thumbnail

cppfront: Midsummer update

Sutter's Mill

Safety and simplicity are the two core things I want to try to dramatically improve in C++, and are why I’m doing my cppfront experiment, so although the above absorbed some time away from cppfront coding it all contributes to the same goal. (If Support all C++23 and draft C++26 headers that have feature test flags.

C++ 100
article thumbnail

Overlooked T-SQL Gems

SQL Performance

Consequently, handling our task becomes a no-brainer: DECLARE @s AS VARCHAR ( 20 ) = '123.456.789,00' ; SELECT TRANSLATE ( @s , '.,' , ',' ) ; This code generates the desired output: 123,456,789.00. As an exercise, try solving this task with a pre-SQL Server 2017 compatible solution where you cannot use TRIM and TRANSLATE.

C++ 111
article thumbnail

Basis Path Testing in Software Testing

Testlodge

The tester established a baseline by selecting the most critical, common, or obvious path through the code selection. Steps to Performing Basis Path Testing The first step is to create a control flow graph for a specified code section. The second step is to select a baseline path through the code.

Testing 75
article thumbnail

Your First C Program

Sutter's Mill

As a tribute in honor of Dennis Ritchie’s passing , I’d like to invite you to share your thoughts in this post’s comments about your first C program – either the code if you remember it approximately, or a story about when you wrote it. After all, this was just a warm-up initial exercise for the course. Here’s mine.

C++ 40
article thumbnail

Missing Library: A pg_upgrade History

Percona

In this blog post, I will show you a particular example I faced when working with an upgrade exercise using pg_upgrade. When working with the upgrade exercise, the goal was to move from PostgreSQL 11 to PostgreSQL 12. for lib in $(psql -qtA pgbench -c"select extname||'.so' for lib in $(psql -qtA pgbench -c"select extname||'.so'

C++ 84