How to know/change the compiler qt creator is using?
If you click here and there trying to find the current compiler qt creator is using, you will soon be disappointed. You can find many places mentioning about the compilers/debuggers, […]
If you click here and there trying to find the current compiler qt creator is using, you will soon be disappointed. You can find many places mentioning about the compilers/debuggers, […]
WordPress xml-rpc calls are nothing but http post requests. The core stuff is building the body for the post request. The body is an xml containing the information such as […]
You must be knowing thinkphp stores its run time stuff in the Runtime directory. The directory includes four sub-folders: Runtime/Cache, Runtime/Data, Runtime/Logs, and Runtime/Temp. If you do not know where […]
If you do online business with Chinese, you are almost inevitable to integrate alipay payment gateway into your website. Today, we learn how to integrate alipay gateway on your site […]
When mouse movers on an HTML element, a tooltip is popped up displaying some useful information about the element. This sounds cool. Today, we will learn how to add a […]
After attending an HTML class, your first excise to submit an html form must be using a <input type=”submit”> button. Clicking the button will submit the values in the form […]
When you see a switching tab on the web at the first time, you must be attracted by its amazing design. You click a tab header(title), it shows you the […]
How to change image on hover using CSS? Here we give you two methods: using two images <html> <head> <title>test</title> <style> .altericon1{width:130px; display:block; height:33px; line-height:33px; overflow:hidden; background-image:url(icon1.jpg); background-repeat:no-repeat; } .altericon2{width:130px; […]
When you visit a url (such as http://myprogrammingnotes.com/go)in Firefox, and the url is redirected to another url such as http://google.com, Firefox will remember the redirecting url. Thus, if you type […]
CORS – Cross Origin Resource Sharing, is mainly a stuff on client side(more accurately, a browser) . It is a policy exerted by modern browsers to block accessing resources on […]