This trick can be accomplished with the use of some small commands in Terminal. The RAM memory increase can’t be noted in the System Monitor application.So, Let’s begin.
Create a file of 512 MB (The 512 indicates the RAM memory to be added):... [READ MORE]
GoDaddy WorldWide 99 cents for new or transfer domain of .COM
Plus ICANN fee of $0.18 per domain name per year. $0.99 price for the first year for one new or transfer .COM purchases only; not valid for renewals. Additional years or .COMs may be purchased for $9.99* per year. Discounts cannot be used in conjunction with any other offer or promotion. After the initial year, discounted domains will renew at the then-current renewal list price. Customers may not use gift cards, Store credit, PayPal® or AliPay to redeem this offer. Your discount will be applied in your shopping cart. Go Daddy reserves the right to deny use of this offer and/or cancel domains purchased using this offer if the offer is abused or used fraudulently, as determined by Go Daddy in its sole discretion.
... [READ MORE]
Loading A Window Created Using GLADE in Python
This small code will load the Glade file and displays the window.
Note : The Glade Project file format should be GtkBuilder.
Now, let’s get down to the code. Create a Python file named window.py in the folder containing the glade file and put in the following contents :... [READ MORE]
GoDaddy .COM domain for just 0.99$ Worldwide
This coupon is valid for everyone in the world.
Here is a table of price of .COM domain using this coupon :
Indian Rupee : 65
Australian Dollar : 1.07
British Pound Sterling : 0.62
Chinese Yuan : 6.06
Kuwaiti Dinar : 0.28
Just type in the following coupon in GoDaddy and you’re good to go.
Add Floating Like Box to Blogger Blog
Automatically Redirect A Blogger Blog To Another URL
So Let’s begin.
Go to Blogger -> Blog to be redirected -> Template -> Edit HTML.
You will get a box with a lot of text. Use one of the following methods to redirect :
Send Email using GMail SMTP server in PHP
If you have enabled application specific password feature on Google Accounts, you may have to generate a new application password and use that password for SMTP authentication. Otherwise the example won’t be able to login to your google account.... [READ MORE]
Setting up Google DNS in Ubuntu
Open Network Settings (network-admin) by going to System -> Preferences -> Network Connections. Go to your default net connection and click on Edit button.
You will get a window like below :
... [READ MORE]Execute Command Without Waiting For It To Finish
Here is a quick example :... [READ MORE]
Upload Image To Remote Server With PHP cURL & Handle File in Remote Server
For this submission we will use 2 files :
- form.php – The Page Where we will show the client the form. This file also sends the uploaded data to the external server.
- handle.php – The Page on the external server which receives the uploaded data from form.php using cURL.
We won’t copy the uploaded file by the client to our server, instead we will directly send the file to the external server. For sending we will encrypt the file with base64.
OK. Lets’ Start. First, Let’s create the FORM page :