Skip to main content

Posts

A dip into DeepSeek

  Introduction to DeepSeek  DeepSeek is a Chinese AI company founded in 2023 by Liang Wenfeng. It is located in Hangzhou, Zhejiang. DeepSeek has focused on open-source large language models. Within a very short time, the company has caught people's attention through its new models, DeepSeek-V3 and DeepSeek-R1, which could soon become the new benchmark to rival leading AI models from other tech companies. About DeepSeek DeepSeek's models are highly performing and efficient. DeepSeek stresses more on open-source development, therefore, models, and training facts about them are free to use and alter. Such practices helped DeepSeek grow by leaps and bounds and now it is one of the market leaders in the AI domain. DeepSeek's models have been developed under serious challenges from U.S. export bans on advanced hardware, notwithstanding such challenges, DeepSeek has been amazing. Comparison with ChatGPT, Microsoft Copilot, and Gemini Model Key Featur...
Recent posts

.Net 8 - A look for Technical Architect

 .NET 8, the latest Long-Term Support (LTS) release from Microsoft, arrived in November 2023.  As a technical architect, you're likely interested in what this means for your development and the applications you're building.  Performance Boost .NET 8 comes with significant performance improvements. Such as garbage collection optimizations and core library enhancements, your applications will see a noticeable speedup. This results in a better user experiences and improved scalability. Geared up with C# 12 .NET 8 introduces C# 12. C# 12 offers several new features that improve code readability and maintainability, such as global using and improved pattern matching. These features empower developers to write cleaner and more efficient code. Cross-Platform Development .NET 8 strengthens the cross platform capabilities of .Net. Whether you're targeting Windows, Linux, macOS, or mobile platforms, .NET 8 provides the tools and libraries you need to build robust applications. Expa...

Getting started and working with Karma

Getting started and working with Karma In this article, I will talk about Installing and working with Karma for code coverage We will go step by step to get started using it. Pre-requisite - You are familiar with Angular coding and writing unit test cases. So let's get started!!       1. You need to install karma-coverage      a.     npm i karma-coverage 2.         Changes to karma.config (blue highlighted are changed/added ones and comments are in bold white underlined text) 3       module . exports = function ( config ) { 4.      config . set ({ 5.        basePath: '' , 6.        frameworks: [ 'jasmine' , '@angular-devkit/build-angular' ],        files: [ 8             { pattern: "app/**/*.+(ts|html)" }   --- added to se...