Explore >> Select a destination


You are here

blog.iconfactory.com
| | www.turing.com
142.9 parsecs away

Travel
| | Explore the benefits of AI-augmented software development with LLMs, including faster code generation, improved testing, and enhanced code quality.
| | furbo.org
83.3 parsecs away

Travel
| | It's been awhile since I've done one of these deep dives on what goes on behind the scenes during the development of an Iconfactory app. There's a common thread to each one: I feel the need to document our work when there's a major change in how we build user interfaces. The first one was [...]
| | smsohan.com
83.3 parsecs away

Travel
| | Off late, I am working on a project to render real time business data with interesting visualizations, so people can feel the pulse of the business. For the last couple of months, I have been planning to write a detailed post about it. But after a few false starts, I am finally settling on smaller posts, telling a small part of the story each time. So, have you ever worked on a web application that is primarily viewed through 55"+ 1080p TV screens?
| | connorberry.com
193.2 parsecs away

Travel
| Language Comparison Perl: while (<>) { print "$. : $_" } Perl: while (<>) { print "$. : $_" } CSharp: using System; using System.IO; class App { public static void Main(string[] args) { int line_number = 1; foreach (string arg in args) { foreach (string line in File.ReadLines(arg)) { Console.WriteLine(line_number + ":" + line);...