Programming Tips πŸ’‘
51.6K subscribers
67 photos
10 videos
30 files
354 links
Programming & AI:
Tips πŸ’‘
Articles πŸ“•
Resources πŸ‘Ύ
Design Patterns πŸ’Ž
Software Principles βœ…

πŸ‡³πŸ‡± Contact: @MoienTajik

🎯 Buy ads: https://telega.io/c/ProgrammingTip
Download Telegram
AutoMapper 6.2.0 Released ✨

A couple of big features in this release include inline maps, where AutoMapper no longer requires you to call CreateMap for new maps.

To configure an inline map, use the mapping options πŸ€™πŸ» :

var source = new Source();

var dest = Mapper.Map<Source, Dest>(source, opt => opt.ConfigureMap().ForMember(dest => dest.Value, m => m.MapFrom(src => src.Value + 10)));


You can use local functions to make the configuration a little easier to read πŸ€“ :

var source = new Source();

void ConfigureMap(IMappingOperationOptions<Source, Dest> opt) {
opt.ConfigureMap()
.ForMember(dest => dest.Value, m => m.MapFrom(src => src.Value + 10))
};

var dest = Mapper.Map<Source, Dest>(source, ConfigureMap);



https://t.me/pgimg/54

[ Release Notes ] : http://bit.do/atmp

γ€°γ€°γ€°γ€°γ€°γ€°
#AutoMapper #CSharp
@ProgrammingTip
Passing Tests πŸ˜ΆπŸ˜‚

#Fun
@ProgrammingTip
Why i choose Angular❓

Choosing a front-end framework is no small task these days. ⏰

There are a lot of options out there, each with pros and cons. βœ…

When I decided I wanted to move to a β€œnext gen” framework, I surprised myself by going with a framework that I initially had a lot of negative feelings about :
πŸ…°οΈngular.

In this post, I’m going to explain how Angular won out over the competition.

https://t.me/pgimg/55

[ Article ] : http://bit.do/angwon

γ€°γ€°γ€°γ€°γ€°γ€°
#Angular #React #Vue
@ProgrammingTip
AppCode - Swift Execution Of Your Bright Ideas πŸ’Ž

β€’ Efficient Project Navigation πŸŒ€
Jump to any file, class, or symbol in your project in no time, use hierarchical and structure views to get through your project structure. πŸ—ƒ


β€’ Through Code Analysis πŸ”Ž
AppCode is constantly monitoring the quality of your code. βœ…

It warns you of errors and smells and suggests quick-fixes to resolve them automatically. βš™οΈ


β€’ Smart Completion πŸ’‘
AppCode offers 2 kinds of code completion :
1️⃣ Basic as-you-type completion
2️⃣ SmartType completion for more precise filtering of suggestions.


β€’ Reliable Refactorings πŸ”¨
Modify and improve your code anytime with safe, accurate and reliable refactorings.

πŸ”ΉπŸ”ΈπŸ”ΉπŸ”Έ

AppCode provides over 60 code inspections just for Objective-C, C and C++, and a number of code inspections for other supported languages. ✨

All code inspections are run on the fly. πŸ¦…

https://t.me/pgimg/56

[ Website ] : jetbrains.com/objc

γ€°γ€°γ€°γ€°γ€°γ€°
#IDE #Swift #ObjectiveC
@ProgrammingTip
Top 5 ASP.NET MVC Action Filters πŸ’Ž

Action Filters have been around since the first release of ASP.NET MVC. πŸ‘Ύ

Today, I give you my five favorite Action Filters to use right away in your MVC code ( DanylkoWeb ) .

Filters ⚑️ :
β€’ Compress Filter
β€’ Whitespace Filter
β€’ ETag Filter
β€’ SearchBot Filter
β€’ TidyHtml Filter

https://t.me/pgimg/58

[ Website ] : http://bit.do/afil

γ€°γ€°γ€°γ€°γ€°γ€°
#AspMvc #ActionFilter #Attribute
@ProgrammingTip
The Pragmatic Programmer.pdf
2.6 MB
The Pragmatic Programmer πŸ“™

Authors : Andy Hunt, Dave Thomas πŸ–Š

Level : Advanced πŸ”

γ€°γ€°γ€°γ€°γ€°γ€°
#Book #CleanCode #Refactoring
@ProgrammingTip
Material-UI ✨

A Set of React Components that Implement Google's Material Design βš›οΈ

Material-UI is available as an npm package :
npm install material-ui

https://t.me/pgimg/59

[ Website ] : material-ui.com

γ€°γ€°γ€°γ€°γ€°γ€°
#React #Material #Library
@ProgrammingTip
ASP.NET Core Web Optimizer ⚑️

ASP.NET Core middleware for bundling and minification of CSS and JavaScript files at runtime. βŒ›οΈ

With full server-side and client-side caching to ensure high performance. πŸ’¨

No complicated build process and no hassle. βœ…

πŸ”ΈπŸ”ΉπŸ”ΈπŸ”Ή

Installation πŸ“₯ :

1️⃣ Add the NuGet package LigerShark.WebOptimizer.Core to any ASP.NET Core 2.0 project :
dotnet add package LigerShark.WebOptimizer.Core


2️⃣ Add this to Configure in Startup.cs before app.UseStaticFiles :
app.UseWebOptimizer();


3️⃣ Finally add this to ConfigureServices :
services.AddWebOptimizer();


That's it. 🀚🏻
You have now enabled automatic CSS and JavaScript minification. πŸ’Ž

πŸ”ΈπŸ”ΉπŸ”ΈπŸ”Ή

Features πŸ”₯ :
β€’ Minification
β€’ Bundling
β€’ Cache Busting
β€’ Inlining Content
β€’ Compiling SCSS
β€’ Compiling LESS
β€’ Compiling TypeScript

https://t.me/pgimg/60

[ Demo ] : http://bit.do/optde
[ Github ] : http://bit.do/optgit

γ€°γ€°γ€°γ€°γ€°γ€°
#AspMvc #Core #Bundling #Minify
@ProgrammingTip
Overloading VS Overriding πŸŒ“

γ€°γ€°γ€°γ€°γ€°γ€°
#Fun #SimplyExplained
@ProgrammingTip
JavaScript β€” Double Equals VS Triple Equals ✨

JavaScript has two visually similar, yet very different, ways to test equality. πŸ€“

You can test equality with == or === πŸ”…


Triple Equals βœ…
When using triple equals === in JavaScript, we are testing for strict equality.

This means both the type and the value we are comparing have to be the same.

Example :
77 === '77'
// false (Number v. String)


πŸ”ΉπŸ”ΈπŸ”ΉπŸ”Έ

Double equals βœ…
When using double equals in JavaScript we are testing for loose equality.

Double equals also performs type coercion.

Example :
77 == '77'
// true


https://t.me/pgimg/61

[ Article ] : http://bit.do/jseq

γ€°γ€°γ€°γ€°γ€°γ€°
#JavaScript #Equality
@ProgrammingTip
Write tests,
Not too many,
Mostly integration. βœ…


A while back, Guillermo Rauch‏ ( Creator of Socket.io ) tweeted something profound :

Write tests. Not too many. Mostly integration.πŸ’Ž 


This is deep, albeit short, so let’s dive in. πŸŒ€

https://t.me/pgimg/62

[ Article ] : http://bit.do/iut

γ€°γ€°γ€°γ€°γ€°γ€°
#UnitTest
@ProgrammingTip
Forwarded from Code Tweets 🐝
This media is not supported in your browser
VIEW IN TELEGRAM
Programmers Life :)))

{ @CodeTweets }
PopSQL ✨

Modern, collaborative SQL editor for your team. πŸ—‚

πŸ”ΉCollaborate in realtime, just like a Google Doc

πŸ”ΉShare queries by URL, and organize them in folders

πŸ”ΉVisualize your data automatically

πŸ”ΉWorks with many types of databases

https://t.me/pgimg/65

[ Website ] : popsql.io

γ€°γ€°γ€°γ€°γ€°γ€°
#SQL #Database #Tools
@ProgrammingTip
Axosoft GitKraken: Unleash Your Repo! πŸ™

The legendary Git GUI client for Windows, Mac and Linux. 🐧

Axosoft GitKraken is a Git client with efficiency, elegance and reliability at the core. It was made for devs by devs. 🀘

Features
You can do all the standard things you should be able to do with a git client; branching, merging, pulling, pushing, reverting, etc. ✨

The range of options you have for each commit πŸ”₯
πŸ”Ή Set Upsteam
πŸ”Έ Branch from a historic commit
πŸ”Ή Cherrypick from commit
πŸ”Έ Revert the commit
πŸ”Ή Edit the commit message
πŸ”Έ Deleting the commit (and remote versions of it)
πŸ”Ή Creating a tag from a commit

https://t.me/pgimg/66

[Website] : https://gitkraken.com

γ€°γ€°γ€°γ€°γ€°γ€°
#Git #VCS
@ProgrammingTip
Import and export in ES6 πŸ“š

Export is ES6' way of saying πŸ—£ :
β€œMake this code available for other modules.”


Import is the opposite, and tries to get code from other modules.

πŸ”ΉWhat is modules❓
πŸ”ΈDiffrence between export and export default

https://t.me/pgimg/67

[ Article ] : https://goo.gl/EJ3e6H

γ€°γ€°γ€°γ€°γ€°γ€°
#JavaScript #ES6 #Modules
@ProgrammingTip
NGX Toastr πŸ’Ž
Easy Toasts for Angular πŸ…°οΈ


πŸ”ΉπŸ”ΈπŸ”ΉπŸ”Έ

Features ✨:

β€’ Toast Component Injection without being passed ViewContainerRef

γ€°γ€°γ€°

β€’ No use of *ngFor. Fewer dirty checks and higher performance.

γ€°γ€°γ€°

β€’ AoT compilation and lazy loading compatible

γ€°γ€°γ€°

β€’ Component inheritance for custom toasts

γ€°γ€°γ€°

β€’ SystemJS/UMD rollup bundle

γ€°γ€°γ€°

β€’ Animations using Angular's Web Animations API

γ€°γ€°γ€°

β€’ Output toasts to an optional target directive

γ€°γ€°γ€°

β€’ Individual Options

πŸ”ΉπŸ”ΈπŸ”ΉπŸ”Έ

https://t.me/pgimg/68

[ Github ] : http://bit.do/ngxg
[ Demo ] : http://bit.do/ngxd

γ€°γ€°γ€°γ€°γ€°γ€°
#Angular #Notification #Toastr
@ProgrammingTip
File Ultimate πŸ”₯

File manager control for integrating file browsing, upload & download features into your ASP.NET MVC & WebForms application or site rapidly. πŸ’Ž

Supports ✨ :
β€’ ASP.NET Web Forms ( C# )
β€’ ASP.NET Web Forms ( VB )
β€’ ASP.NET MVC ( C# )
β€’ ASP.NET MVC ( VB )

Features ⚑️ :
β€’ Browse and manage files with access control.

β€’ Accept files with the advanced upload functionality.

β€’ Offer a structured and neat download area.

β€’ Preview documents (70+ file formats, including PDF Β© Microsoft Office), images, audios and videos.

πŸ”ΉπŸ”ΈπŸ”ΉπŸ”Έ

https://t.me/pgimg/69

[ Github ] : http://bit.do/fgit
[ Demo ] : http://bit.do/fmade

γ€°γ€°γ€°γ€°γ€°γ€°
#AspMvc #FileManager #Uploader
@ProgrammingTip
Cool, the " Ranges " feature is planned for C# 7.3❗️

[ Github ] : http://bit.do/csran

γ€°γ€°γ€°γ€°γ€°γ€°
#CSharp
@ProgrammingTip
What is Dynamic Proxy❓

A proxy, in its most general form, is a class functioning as an interface to something else. ↗️

The proxy could interface to anything :
β€’ A network connection 🌐
β€’ A large object in memory πŸ—‚
β€’ A file πŸ“„
β€’ Some other resource that is expensive or impossible to duplicate. πŸ’Έ

πŸ”ΉπŸ”ΈπŸ”ΉπŸ”ΈπŸ”ΉπŸ”Έ

One way of thinking about proxies, is by the analogy to The Matrix πŸ•Ά by Krzysztof KoΕΊmic πŸ€” :

β€œPeople in the matrix aren’t the actual people ( β€œThe spoon does not exist”, remember❓)

They’re proxies to the actual people that can be… wherever.🌍

They look like ones, they behave like ones, but at the same time, they are not them actually.πŸ™…πŸ»β€β™‚οΈ

Another implication is the fact that different rules apply to proxies.✳️

Proxies can be what the proxied objects are, but they can be more (flying, running away from bullets, that kind of stuff).✈️

One more important thing, is that proxies ultimately delegate the behavior to the actual objects behind them (kind of like – β€œif you’re killed in the matrix, you die in the real life as wellβ€β˜ οΈ).”


A dynamic proxy is a proxy that is generated on the fly at runtime. βœ…

https://t.me/pgimg/70

γ€°γ€°γ€°γ€°γ€°γ€°
#Proxy #DynamicProxy
@ProgrammingTip
All Kyle Simpson's (You Don't Know JS author) courses are free πŸ’Έ untill the next monday❗️

https://t.me/pgimg/71

[ Website ] : http://bit.do/ksim

γ€°γ€°γ€°γ€°γ€°γ€°
#JavaScript #ES6 #Tutorial
@ProgrammingTip