knitinr.blogspot.com
Nitin's Tech Blog: Disabling Smart Scopes in Ubuntu 13.10
http://knitinr.blogspot.com/2013/10/disabling-smart-scopes-in-ubuntu-1310.html
Sunday, October 20, 2013. Disabling Smart Scopes in Ubuntu 13.10. To disable smart scopes in Ubuntu 13.10, go to Settings, Security and Privacy, Search, and flip the switch for the setting Include online search results. To disable specific scopes, go to the Applications scope (Windows/Super key A), go to the Dash Plugins section and click on See more results. Click on the scope you want to disable and click the Disable button. For more tweaks that you can do to your Ubuntu 13.10 setup, take a look at:.
knitinr.blogspot.com
Nitin's Tech Blog: September 2013
http://knitinr.blogspot.com/2013_09_01_archive.html
Sunday, September 29, 2013. Enabling AutoComplete In ADT. Window Preferences Java Editor Content Assist Advanced. I enabled the Java Proposals, Java Type Proposals, and Java Non-Type Proposals, and as soon as I dismissed the dialog box by clicking the Ok button, I was able to use Ctrl Space for the code autocompletion! Saturday, September 28, 2013. Python: Subclassing the BaseHTTPRequestHandler. As discussed in my previous post. From http.server import HTTPServer from http.server import BaseHTTPR...In th...
knitinr.blogspot.com
Nitin's Tech Blog: 2 Days To 'Saucy Salamander' Release
http://knitinr.blogspot.com/2013/10/2-days-to-saucy-salamander-release.html
Tuesday, October 15, 2013. 2 Days To 'Saucy Salamander' Release. Subscribe to: Post Comments (Atom). I'm Nitin Reddy Katkam, a software contractor and a former blogger. View my complete profile. Disabling Smart Scopes in Ubuntu 13.10. Windows RT 8.1 Withdrawn From Store. Windows: Network Interface Information. ICQ: Wheres Its Target Audience? 2 Days To Saucy Salamander Release. Fixing Windows 8 WiFi Off Issue. Ubuntu 13.04 Remixes: The Feeling of Old With 13. Python: Why The global Statement.
knitinr.blogspot.com
Nitin's Tech Blog: Fixing Windows 8 WiFi Off Issue
http://knitinr.blogspot.com/2013/10/fixing-windows-8-wifi-off-issue.html
Tuesday, October 15, 2013. Fixing Windows 8 WiFi Off Issue. When using Windows 8, the WiFi can turn itself off when switching back and forth from Airplane mode. Disabling Airplane mode does not turn the WiFi back on. When such a problem occurs, press the Windows key and I at the same time (Win I) to go to the settings, click on Change PC Settings, and go to the Wireless tab. This settings page provides an interface to turn on WiFi adapters. The following screenshots will guide you through the process:.
knitinr.blogspot.com
Nitin's Tech Blog: Windows RT 8.1 Withdrawn From Store
http://knitinr.blogspot.com/2013/10/windows-rt-81-withdrawn-from-store.html
Sunday, October 20, 2013. Windows RT 8.1 Withdrawn From Store. The Windows RT 8.1 update has been withdrawn from the Microsoft Store because of reports of users being unable to boot their devices after the update. The error code reported on attempting to boot up on affected devices is 0xc000000d. The Windows 8.1 update, however, continues to remain available to users. Great article. I read this article properly. This is one of the best posts. Thanks sharing this article. August 11, 2016 at 6:02 AM.
knitinr.blogspot.com
Nitin's Tech Blog: October 2013
http://knitinr.blogspot.com/2013_10_01_archive.html
Sunday, October 20, 2013. Disabling Smart Scopes in Ubuntu 13.10. To disable smart scopes in Ubuntu 13.10, go to Settings, Security and Privacy, Search, and flip the switch for the setting Include online search results. To disable specific scopes, go to the Applications scope (Windows/Super key A), go to the Dash Plugins section and click on See more results. Click on the scope you want to disable and click the Disable button. For more tweaks that you can do to your Ubuntu 13.10 setup, take a look at:.
knitinr.blogspot.com
Nitin's Tech Blog: Python: Why The global Statement
http://knitinr.blogspot.com/2013/10/python-why-global-statement.html
Wednesday, October 2, 2013. Python: Why The global Statement. Film name = "painted skin" def film(): global film name print(film name) film(). Now, even when you leave out the global statement, Python is smart enough to figure out that the variable is a global variable, as in this case:. Film name = "painted skin" def film(): print(film name) film(). Suppose you perform a variable assignment within this second case, you would have code like this:. The error that you would now receive reads the following:.
knitinr.blogspot.com
Nitin's Tech Blog: Python 2 and Python 3: Two 'different' platforms
http://knitinr.blogspot.com/2013/10/python-2-and-python-3-two-different.html
Tuesday, October 1, 2013. Python 2 and Python 3: Two 'different' platforms. When you decide to do any Python development today, the first choice that you come across is the version of Python that you want to use. There's Python 2, the programming platform with lots of libraries that do everything except defying gravity. Don't really get all of the niceties that Python 2 users get. Subscribe to: Post Comments (Atom). I'm Nitin Reddy Katkam, a software contractor and a former blogger.
knitinr.blogspot.com
Nitin's Tech Blog: August 2013
http://knitinr.blogspot.com/2013_08_01_archive.html
Saturday, August 31, 2013. Sunday, August 25, 2013. CodeIgniter: "The upload path does not appear to be valid" error. This- upload- initialize($config);. You can also choose to create an upload.php file within the config directory and place the $config array within that file instead of the call to the initialize function. Friday, August 23, 2013. Enums (Enumerations) in ASP.NET MVC DropDownLists. Var selLst = new SelectList(listItems, "Value", "Text");. In the controller, assign it to a ViewData item (yo...
knitinr.blogspot.com
Nitin's Tech Blog: SQL Server 2012 Express Installation and Troubleshooting
http://knitinr.blogspot.com/2013/10/sql-server-2012-express-installation.html
Wednesday, October 2, 2013. SQL Server 2012 Express Installation and Troubleshooting. If you have Windows 7 or Windows 8, you can install either the SQL Server 2012 Express or the SQL Server 2012 Developer Edition. The Express edition is typically all you would need, unless you plan to use reporting services and the integration service in which case SQL Server 2012 Developer edition is what you require. The SQL Server 2012 installation performs the following checks before starting:. Error 0x80070422: The...