No Image

Hosting – Windows

July 4, 2017 hung-nb 0

Install Wamp Config Wamp Change port 80 to 8080 Open the httpd.conf, find “Listen” and change like this [html]Listen 0.0.0.0:8080 Listen [::0]:8080[/html] Find “ServerName” and […]

No Image

ASP.net & Javascript

July 3, 2017 hung-nb 0

What is Ajax life cycle in ASP.NET? http://ajaxtutorials.com/general/client-side-page-life-cycle-with-updatepanel-with-javascript/ Why is Javascript affect gone after postback? Issue When clicking on a button to get selected option […]

No Image

SQL: DB/ Table Queries

July 3, 2017 hung-nb 0

SQL Server Management Studio How to find a certain string inside a stored procedure/ function [sql]SELECT OBJECT_NAME(object_id) FROM sys.sql_modules WHERE OBJECTPROPERTY(object_id, ‘IsProcedure’) = 1 AND […]

No Image

SQL statements – SELECT

July 2, 2017 hung-nb 0

How to know number of rows being affected by SELECT/INSERT/UPDATE…? SQL Server[sql] UPDATE Employee SET JobTitle = N’Executive’ WHERE NationalIDNumber = 123456789 IF @@ROWCOUNT = […]

No Image

Reference – React Native

June 20, 2017 hung-nb 0

React Native Podcast reactnativeradio.com State management React State Museum Native + React Native https://artsy.github.io/blog/2018/04/17/making-a-components-pod/ Windows + Mac app by Microsoft https://microsoft.github.io/react-native-windows/ Debug Reactotron react-native-flipper JavaScript […]

No Image

node.js

June 20, 2017 hung-nb 1

Windows installation Install “msi” file from node js website Create “hello.js” file [js]console.log(‘Hello World’);[/js] Open Windows command prompt [js]node hello.js[/js]

No Image

JavaScript & jQuery: HTML DOM

June 20, 2017 hung-nb 0

How to debug JavaScript? [js]debugger[/js] Work with string How to split a string into an array? Javascript [js]var text = ‘part1||part2||part3’;var labelArr = text.split(‘||’);[/js] How […]

No Image

Windows tricks

June 20, 2017 hung-nb 0

Shutdown without updating [js]shutdown /s /f /t 0[/js] How to restore a  window? Hold down “Super” key and press “↑” How to adjust screen to […]

No Image

Query tuning

June 16, 2017 hung-nb 0

General Speed depends much on indexes than other things JOIN is quicker than IN Index Index improves performance of SELECT queries Index should be applied […]