100 things every designer needs to know about people (book review from blinkist)
What’s in it for me? Find out what makes great design great. What comes to mind when you think of great design? Probably something that […]
What’s in it for me? Find out what makes great design great. What comes to mind when you think of great design? Probably something that […]
What’s in it for me? Walk and talk like a street-smart business savant. Perhaps you’ve aced all of your exams at business school, and maybe […]
Concept How many caching form does ASP.NET have? Page level output caching The simplest form of caching, output caching simply keeps a copy of the […]
A query with SELECT DISTINCT can be rewritten using GROUP BY. So this [sql] SELECT DISTINCT city FROM HR.Employees WHERE country = N’USA’ AND region […]
Concept DB design 1 “users” table [sql] 1 AA 2 BB [/sql] “authority_groups” table [sql] group_auto name 1 Admin 2 Writer [/sql] “authority_group_items” table [sql] […]
Concept ASP.NET Use ASCX file. A file with the ASCX file extension is an ASP.NET Web User Control file. Basically, ASCX files make it easy […]
DB design Create table IMAGE to save image [sql] sample_image varbinary(MAX) [/sql] Create SP to save image [sql] CREATE PROCEDURE [insert_image] @input varbinary(MAX), @length bigint […]
What’s in it for me? Master your inner child and parent. We’ve all been there. In the heat of an argument, or when discussing a […]
GET (https://www.w3schools.com/xml/ajax_intro.asp) [js] var xhttp = new XMLHttpRequest(); xhttp.open(“GET”, “ajax_info.txt”, true); xhttp.send(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { […]
[js] function get_browser_info(){ var ua=navigator.userAgent,tem,M=ua.match(/(opera|chrome|safari|firefox|msie|trident(?=\/))\/?\s*(\d+)/i) || []; if(/trident/i.test(M[1])){ tem=/\brv[ :]+(\d+)/g.exec(ua) || []; return {name:’IE ‘,version:(tem[1]||”)}; } if(M[1]===’Chrome’){ tem=ua.match(/\bOPR\/(\d+)/) if(tem!=null) {return {name:’Opera’, version:tem[1]};} } M=M[2]? [M[1], […]
Copyright © 2024 | WordPress Theme by MH Themes