<?xml version="1.0"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>INFORBIRO RSS Blog Articles</title>
		<link>http://www.inforbiro.com/blog-eng/</link>
		<atom:link href="http://www.inforbiro.com/blog-eng/" rel="self" type="application/rss+xml" />
		<description></description>

		
		<item>
			<title>GIMP 2.8 - What&#39;s New</title>
			<link>http://www.inforbiro.com/blog-eng/gimp-2-8-what-s-new/</link>
			<description>&lt;p&gt;&lt;img class=&quot;left&quot; src=&quot;http://www.inforbiro.com/assets/Uploads/Blogs/_resampled/resizedimage150145-gimp-2.8-logo.jpg&quot; alt=&quot;GIMP 2.8 What's New&quot; title=&quot;GIMP 2.8 What's New&quot; width=&quot;150&quot; height=&quot;145&quot;/&gt;GIMP (GNU Image Manipulation Program) is a free and open source software image retouching and editing tool[4] and is freely available in versions tailored for most popular operating systems including Microsoft Windows, Apple Mac OS X, and Linux.&lt;/p&gt;
&lt;p&gt;The latest stable release of GIMP is v2.8 and it seems that it includes many changes, most of them are related to the user interface. This version is available for all main operating systems.&lt;/p&gt;
&lt;p&gt;We provide some of the main improvements in GIMP 2.8.&lt;/p&gt;
&lt;h3&gt;Single Window Mode&lt;/h3&gt;
&lt;p&gt;This is probably the biggest change available in new version. But it is not enabled by default, in order to turn it on you need to select in the menu:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Windows -&amp;gt; Single Window Mode&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Group Layers&lt;/h3&gt;
&lt;p&gt;This is also one of the most wanted feature, especially by Photoshop users. Now you can group layers and show and hide sets of layers or change their position together, delete them or do whatever you want. This way you can save your time working on many layers at the same time.&lt;/p&gt;
&lt;h3&gt;Image Navigation&lt;/h3&gt;
&lt;p&gt;The single window features brings new navigation system for different tabs opened at the same time. Tabs are located above image with a little thumbnail representing image it contains. The navigation between opened canvases is much faster and easier thanks to this feature.&lt;/p&gt;
&lt;h3&gt;Customisable Toolbars &lt;/h3&gt;
&lt;p&gt;Toolbars in the earlier GIMP versions couldn't be easily organized, or couldn't be organized at all. Users are now allowed to rearrange toolbars to suit their needs very easily. You can organize your workspace at your will.&lt;/p&gt;
&lt;h3&gt;Text editing on canvas&lt;/h3&gt;
&lt;p&gt;So far, GIMP displayed new window for adding text to the working canvas, but now users can edit text directly inside the canvas. &lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Tip: You need to highlight the text in order to make changes take effect. &lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Brushes&lt;/h3&gt;
&lt;p&gt;There are improvement in working with brushes and their organisation, too. They can now be easier find and one new feature, never present before, brushed can be rotated.&lt;/p&gt;
&lt;p&gt;Users can tagg and categorize brushes, patterns and gradients and filter them by tags.&lt;/p&gt;
&lt;p&gt;Very useful feature is that brushes have an outline of the area that a brush will cover.&lt;/p&gt;
&lt;h3&gt;Conclusion&lt;/h3&gt;
&lt;p&gt;It seems that this is the version with the most new long-awaited features so far. Improvements were made both in the user interface as well as in the code.&lt;/p&gt;
&lt;p&gt;And what is the most important GIMP is still free software!&lt;/p&gt;
&lt;h3&gt;Related Articles&lt;/h3&gt;
&lt;p&gt;&lt;a title=&quot;GIMP Business Card Tutorial&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=107]&quot;&gt;&lt;strong&gt;- GIMP Business Card Tutorial&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a title=&quot;Geeky Business Cards Created With GIMP&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=97]&quot;&gt;&lt;strong&gt;- Geeky Business Cards Created With GIMP&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a title=&quot;Insert QR Code Into Image With GIMP&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=95]&quot;&gt;&lt;strong&gt;- Insert QR Code Into Image With GIMP&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;</description>
			<pubDate>Tue, 15 May 2012 10:35:37 -0500</pubDate>
			
			<guid>http://www.inforbiro.com/blog-eng/gimp-2-8-what-s-new/</guid>
		</item>
		
		<item>
			<title>SilverStripe - How to Logout Inactive Users</title>
			<link>http://www.inforbiro.com/blog-eng/silverstripe-how-to-logout-inactive-users/</link>
			<description>&lt;p&gt;SilverStripe content management system is near version 3, the latest stable version that will be released in several months, and we continue to provide &lt;a title=&quot;SilverStripe tips and tricks&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=178]&quot;&gt;&lt;strong&gt;SilverStripe tips and tricks&lt;/strong&gt;&lt;/a&gt; to you.&lt;/p&gt;
&lt;p&gt;This article shows how to logout inactive user after some period of time.&lt;/p&gt;
&lt;p&gt;First, you need to make changes in the init() function in the Page.php file, class Page_Controller:&lt;/p&gt;
&lt;pre class=&quot;brush: php;fontsize: 100; first-line: 1; &quot;&gt;...
function init() { 
	parent:: init();
	
	// Call function to logout inactive user
	self::logoutInactiveUser(); 
}
...&lt;/pre&gt;
&lt;p&gt;After this modification, create the function that will actually logout inactive user after some period of inactivity:&lt;/p&gt;
&lt;pre class=&quot;brush: php;fontsize: 100; first-line: 1; &quot;&gt;/**
* The function will logout a user after certain amount of time
*
*/
function logoutInactiveUser() { 
	// Set inactivity to half an hour (converted to seconds)
	$inactivityLimit = 30 * 60;
	
	// Get value from session
	$sessionStart = Session::get('session_start_time'); 
	if (isset($sessionStart)) {
		$elapsed_time = time() - Session::get('session_start_time');
		// If elapsed time is greater or equal to inactivity period, logout user
		if ($elapsed_time &amp;gt;= $inactivityLimit) { 
			$member = Member::currentUser(); 
			if($member) {
				// Logout member
				$member-&amp;gt;logOut();
			}
			// Clear session
			Session::clear_all();
			// Redirect user to the login screen
			Director::redirect(Director::baseURL() . 'Security/login'); 
		} 
	}
	
	// Set new value
	Session::set('session_start_time', time()); 
}&lt;/pre&gt;
&lt;p&gt;Now, all users that were inactive in the last 30 minutes will be automatically logout from SilverStripe and redirected to the login page.&lt;/p&gt;
&lt;h3&gt;Related Articles&lt;/h3&gt;
&lt;p&gt;&lt;a title=&quot;SilverStripe Tips and Tricks&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=178]&quot;&gt;&lt;strong&gt;- SilverStripe Tips and Tricks&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a title=&quot;How to Migrate SilverStripe CMS to Another Server&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=214]&quot;&gt;&lt;strong&gt;- How to Migrate SilverStripe CMS to Another Server&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a title=&quot;Grid Field Tutorial&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=216]&quot;&gt;&lt;strong&gt;- Grid Field Tutorial&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a title=&quot;How to Implement Most Popular Article Feature&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=235]&quot;&gt;&lt;strong&gt;- How to Implement Most Popular Article Feature&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;</description>
			<pubDate>Sun, 13 May 2012 05:57:00 -0500</pubDate>
			
			<guid>http://www.inforbiro.com/blog-eng/silverstripe-how-to-logout-inactive-users/</guid>
		</item>
		
		<item>
			<title>SQL Server - Get Column Name and Type From Table</title>
			<link>http://www.inforbiro.com/blog-eng/sql-server-get-column-name-and-type-from-table/</link>
			<description>&lt;p&gt;Microsoft SQL Server provides two methods for obtaining meta data: system stored procedures or information schema views.&lt;/p&gt;
&lt;p&gt;Here are the SQL snippets for getting meta information about a database table in SQL Server. These queries could provide answer to the following requests:&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;&lt;strong&gt;How to get the name of all columns of a table in SQL Server&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;How to get colum and field type in SQL Server&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;How to get meta data about SQL Server table&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;h3&gt;Solution #1&lt;/h3&gt;
&lt;pre class=&quot;brush: sql;fontsize: 100; first-line: 1; &quot;&gt;SELECT COLUMN_NAME, DATA_TYPE, CHARACTER_MAXIMUM_LENGTH
FROM information_schema.columns
WHERE TABLE_NAME = [table_name]
ORDER BY COLUMN_NAME&lt;/pre&gt;
&lt;h3&gt;Solution #2&lt;/h3&gt;
&lt;pre class=&quot;brush: sql;fontsize: 100; first-line: 1; &quot;&gt;SELECT * FROM sys.columns
WHERE object_id = OBJECT_ID('dbo.[table_name]')&lt;/pre&gt;
&lt;p&gt;We prefer the first solution over the second one (that gets information from &quot;sys.columns&quot;) because in the frist case the query shows DATA_TYPE directly.&lt;/p&gt;
&lt;h3&gt;Related Articles&lt;/h3&gt;
&lt;p&gt;&lt;a title=&quot;SQL Server Tips and Tricks&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=209]&quot;&gt;&lt;strong&gt;- SQL Server Tips and Tricks&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a title=&quot;SQL Tips and Tricks&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=243]&quot;&gt;&lt;strong&gt;- SQL Tips and Tricks&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a title=&quot;How to Update a Table From Another Table With SQL&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=213]&quot;&gt;&lt;strong&gt;- How to Update a Table From Another Table With SQL&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a title=&quot;How to Change Column Size using SQL&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=239]&quot;&gt;&lt;strong&gt;- How to Change Column Size using SQL&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;</description>
			<pubDate>Sun, 13 May 2012 05:56:54 -0500</pubDate>
			
			<guid>http://www.inforbiro.com/blog-eng/sql-server-get-column-name-and-type-from-table/</guid>
		</item>
		
		<item>
			<title>Ubuntu 12.04 - Most Common Problems and Solutions</title>
			<link>http://www.inforbiro.com/blog-eng/ubuntu-12-04-most-common-problems-and-solutions/</link>
			<description>&lt;p&gt;&lt;img class=&quot;left&quot; src=&quot;http://www.inforbiro.com/assets/Uploads/Blogs/_resampled/resizedimage150150-ubuntu-12.04-precise-pangolin.jpg&quot; alt=&quot;Ubuntu 12.04 Problems and Solutions&quot; title=&quot;Ubuntu 12.04 Problems and Solutions&quot; width=&quot;150&quot; height=&quot;150&quot;/&gt;Although Ubuntu 12.04 Precise Pangolin is LTS release, long term supported and stable GNU/Linux version, it has some issues.&lt;/p&gt;
&lt;p&gt;We provide the list with the most common Ubuntu 12.04 Precise Pangolin problems and their solutions.&lt;/p&gt;
&lt;p&gt;This article is regularly updated, so stay tuned!&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;h3&gt;Ubuntu 12.04 can't restart&lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;Issue&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Ubuntu 12.04 can't restart following the standard reboot procedure: &lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Click system button in upper right corner &amp;gt; Shut down... &amp;gt; Restart button&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;It ends up in a black screen.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Solution&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The reason for the problem could be a BIOS issue or the hardware setup of the system&lt;/p&gt;
&lt;p&gt;1) Enter the command in the terminal&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;sudo gedit /etc/default/grub&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;2) Find &lt;strong&gt;GRUB_CMDLINE_LINUX=&quot;&quot;&lt;/strong&gt; and change it to &lt;strong&gt;GRUB_CMDLINE_LINUX=”reboot=efi”&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;3) Save the file and run the command:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;sudo update-grub&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;If this is not working, try with some other parameter instead of &lt;strong&gt;efi&lt;/strong&gt; (i.e.: &lt;strong&gt;reboot=efi&lt;/strong&gt;). For detailed list of available parameters read &lt;a title=&quot;Ubuntu Restart Problem&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=228]&quot;&gt;&lt;strong&gt;this article&lt;/strong&gt;&lt;/a&gt;.&lt;/p&gt;
&lt;h3&gt;There is no &quot;Show Desktop&quot; option&lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;Issue&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;By default, Ubuntu 12.04 doesn't have enabled options to show desktop except using shortcut keys &lt;strong&gt;Ctrl+Super+D&lt;/strong&gt; (the Super button is the Windows button in the most cases)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Solution&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Show Desktop in Ubuntu 12.04 via CompizConfig Settings Manager (the first way)&lt;/p&gt;
&lt;p&gt;1) Install and run &lt;strong&gt;CompizConfig Settings Manager&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;2) Click on Desktop category on left sidebar&lt;/p&gt;
&lt;p&gt;3) Click on &lt;strong&gt;Ubuntu Unity Plugin&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;4) Select the &lt;strong&gt;Experimental&lt;/strong&gt; tab&lt;/p&gt;
&lt;p&gt;5) Mark option Show &quot;Desktop Icon&quot; in the launcher&lt;/p&gt;
&lt;p&gt;The desktop icon will appear in the Unity launcher and you can click on it in order to show desktop.&lt;/p&gt;
&lt;p&gt;For more ways to show desktop in Ubuntu 12.04 read &lt;a title=&quot;How to show desktop in Ubuntu&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=232]&quot;&gt;&lt;strong&gt;this article&lt;/strong&gt;&lt;/a&gt;.&lt;/p&gt;
&lt;h3&gt;Unity launcher auto hide problem&lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;Issue&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Many users compain that after &lt;a title=&quot;enabling Unity Launcher auto hide&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=224]&quot;&gt;enabling Unity Launcher auto hide&lt;/a&gt;, it doesn't show when cursor is moved to the left edge of the screen in Ubuntu 12.04.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Solution&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The trick here is not how hard the mouse cursor is moved to the left screen edge but how far (or fast). Here are the steps that could help you in using the launcher in the way you like:&lt;/p&gt;
&lt;p&gt;1) Install CompizConfig Settings Manager (known by its shortname CCSM)&lt;/p&gt;
&lt;p&gt;2) After the installation, start CompizConfig Settings Manager&lt;/p&gt;
&lt;p&gt;3) Go to Desktop &amp;gt; Ubuntu Unity Plugin &amp;gt; Experimental tab&lt;/p&gt;
&lt;p&gt;4) Find the option &quot;&lt;strong&gt;Launcher Reveal Pressure&lt;/strong&gt;&quot;&lt;/p&gt;
&lt;p&gt;5) Default value is 20, but you can change it to any lower&lt;/p&gt;
&lt;h3&gt;Hibernate option missing&lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;Issue&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Ubuntu 12.04 doesn't have enabled hibernate feature by default, but you can enable it if your hardware &lt;a title=&quot;Ubuntu Hibernation&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=233]&quot;&gt;supports hibernation&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Solution&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;1) Create file&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;/etc/polkit-1/localauthority/50-local.d/com.ubuntu.desktop.pkla&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;2) Add the content:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;[Re-enable hibernate by default]&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Identity=unix-user:*&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Action=org.freedesktop.upower.hibernate&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;ResultActive=yes&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;3) Save the file, restart the machine and new menu item should appear under the system button in upper right corner&lt;/p&gt;
&lt;h3&gt;&quot;Ubuntu 12.04 has experienced an internal error&quot; message&lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;Issue&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Ubuntu 12.04 contains error reporting system named Apport that can send error information to Ubuntu center in case that something goes wrong on your system. There could be many reported issues caused with various reasons displaying the message error:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&quot;Sorry, Ubuntu 12.04 has experienced an internal error&quot;&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;strong&gt;Solution&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The only solution to stop displaying error messages is to disable the Apport, the error reporting system:&lt;/p&gt;
&lt;p&gt;1) Run the command&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;sudo gedit /etc/default/apport&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;2) Change the value of the &quot;&lt;strong&gt;enabled&lt;/strong&gt;&quot; parameter from &quot;&lt;strong&gt;1&lt;/strong&gt;&quot; to &quot;&lt;strong&gt;0&lt;/strong&gt;&quot;&lt;/p&gt;
&lt;p&gt;3) Save changes&lt;/p&gt;
&lt;h3&gt;Unity Launcher Hiding Behind Other Windows&lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;Issue&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;In some cases, Unity Launcher goes in the background, behind all windows and the Unity Shell, and it's not possible to move it to the frontend, in front all other windows (what is its default and normal behavior). This happens no matter whether you enabled Unity Launcher auto hide option or not. Usualy, GIMP causes this annoying Unity Launcher's behavior.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Solution&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Sometime, after some further use and without any additional actions, the computer could freeze for a brief moment and Unity Launcher and Dash could continue to work properly. If this doesn't happen here is the way to restart unity launcher without destroying the session and avoiding computer restarting:&lt;/p&gt;
&lt;p&gt;1) Start terminal&lt;/p&gt;
&lt;p&gt;2) Enter the following command:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;sudo unity&amp;amp;disown&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;3) Hit Enter button&lt;/p&gt;
&lt;p&gt;Screen will flick a few times and after that everything will be back again.&lt;/p&gt;
&lt;h3&gt;Can't change Ubuntu 12.04 default font&lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;Issue&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;There is no configuration option for changing default font type and size in Ubuntu 12.04&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Solution&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;1) Instal gnome tweak tool:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;sudo apt-get install gnome-tweak-tool&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;2) Start gnome tweak tool either by click on Dash Home and entering &quot;advanced settings&quot; or typing command &quot;gnome-tweak-tool&quot; in the terminal&lt;/p&gt;
&lt;p&gt;3) GNOME Tweak Tool window will appear&lt;/p&gt;
&lt;p&gt;4) Select the Fonts section on the left&lt;/p&gt;
&lt;p&gt;5) Choose your preferent default font, document, monospace and window title font as well as font size and hinting and antialiasing types.&lt;/p&gt;
&lt;h3&gt;Wireless connection doesn't remember password&lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;Issue&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Wireless connecton continue asking for password in window &quot;Wireless Connection Authentication Required&quot; every time the computer is started.  &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Solution&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;1) Click on the connection icon on the taskbar&lt;/p&gt;
&lt;p&gt;2) Select the last menu item &quot;&lt;strong&gt;Edit Connections...&lt;/strong&gt;&quot;&lt;/p&gt;
&lt;p&gt;3) Click on the Wireless tab&lt;/p&gt;
&lt;p&gt;4) Select you connection and click the Edit button&lt;/p&gt;
&lt;p&gt;5) New window will appear&lt;/p&gt;
&lt;p&gt;6) Check &quot;&lt;strong&gt;Connect automatically&lt;/strong&gt;&quot; checkbox&lt;/p&gt;
&lt;p&gt;7) Click &quot;&lt;strong&gt;Wireless Security&lt;/strong&gt;&quot; tab&lt;/p&gt;
&lt;p&gt;8) Select the connection's Security (usually it is &quot;WEP 40/128-bit Key (Hex or ASCII)&quot;)&lt;/p&gt;
&lt;p&gt;9) Enter your password in the Key field. You can check the &quot;Show key&quot; checkbox if you want to see what password you entered&lt;/p&gt;
&lt;p&gt;10) Click &quot;&lt;strong&gt;Save...&lt;/strong&gt;&quot; button&lt;/p&gt;
&lt;h3&gt;Related Articles&lt;/h3&gt;
&lt;p&gt;&lt;a title=&quot;How to Enable Unity Launcher Auto Hide in Ubuntu 12.04 Precise Pangolin&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=224]&quot;&gt;&lt;strong&gt;- How to Enable Unity Launcher Auto Hide in Ubuntu 12.04 Precise Pangolin&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a title=&quot;Ubuntu Tips and Tricks&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=230]&quot;&gt;&lt;strong&gt;- Ubuntu Tips and Tricks&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;</description>
			<pubDate>Sun, 13 May 2012 05:56:44 -0500</pubDate>
			
			<guid>http://www.inforbiro.com/blog-eng/ubuntu-12-04-most-common-problems-and-solutions/</guid>
		</item>
		
		<item>
			<title>SQL - Delete Duplicate Rows</title>
			<link>http://www.inforbiro.com/blog-eng/sql-delete-duplicate-rows/</link>
			<description>&lt;p&gt;Working with data in databases could be very intensive and complex especially if you do not have experience and routine. &lt;/p&gt;
&lt;p&gt;We still grow our knowledgebase with real-life examples that you could use. One of our favorite &lt;a title=&quot;SQL tips and tricks&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=243]&quot;&gt;SQL tips and tricks&lt;/a&gt; is how to delete duplicate records in SQL.&lt;/p&gt;
&lt;p&gt;Here is the syntax of query that will delete all duplicated rows except the last one.&lt;/p&gt;
&lt;pre class=&quot;brush: sql;fontsize: 100; first-line: 1; &quot;&gt;-- SQL command deletes duplicate records
DELETE
FROM [table_name]
WHERE ID NOT IN (
	SELECT MAX([id_column])
	FROM [table_name]
	GROUP BY id_column
)&lt;/pre&gt;
&lt;p&gt;For exampe, if we want to delete duplicates in table Students with ID as an identity column we'll use the following query:&lt;/p&gt;
&lt;pre class=&quot;brush: sql;fontsize: 100; first-line: 1; &quot;&gt;DELETE
FROM Students
WHERE ID NOT IN (
	SELECT MAX(ID)
	FROM Students
	GROUP BY ID
)&lt;/pre&gt;
&lt;h3&gt;Related Articles&lt;/h3&gt;
&lt;p&gt;&lt;a title=&quot;SQL Tips and Tricks&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=243]&quot;&gt;&lt;strong&gt;- SQL Tips and Tricks&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a title=&quot;Ubuntu Tips and Tricks&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=230]&quot;&gt;&lt;strong&gt;- Ubuntu Tips and Tricks&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a title=&quot;ocPortal Tips and Tricks&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=179]&quot;&gt;&lt;strong&gt;- ocPortal Tips and Tricks&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a title=&quot;SQL Server Tips and Tricks&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=209]&quot;&gt;&lt;strong&gt;- SQL Server Tips and Tricks&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;</description>
			<pubDate>Sun, 13 May 2012 05:56:24 -0500</pubDate>
			
			<guid>http://www.inforbiro.com/blog-eng/sql-delete-duplicate-rows/</guid>
		</item>
		
		<item>
			<title>SQL Tips and Tricks</title>
			<link>http://www.inforbiro.com/blog-eng/sql-tips-and-tricks/</link>
			<description>&lt;p&gt;&lt;strong&gt;Inforbiro&lt;/strong&gt; is an Information Technology and Marketing Agency with its own Internet marketing network &lt;strong&gt;BlicKlik&lt;/strong&gt;. We have a lot of experience in software development as well as in Internet marketing and advertising. We constantly try not only to develop great web sites, mobile, desktop or facebook applications but also to share our knowledge.&lt;/p&gt;
&lt;p&gt;Therefore, below is a collection of &lt;strong&gt;SQL Tips and Tricks&lt;/strong&gt; articles written on our company blog that could be useful to all of you.&lt;/p&gt;
&lt;h2&gt;&lt;a title=&quot;How to Update Table From Another Table&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=213]&quot;&gt;How to Update Table From Another Table&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt; &lt;/p&gt;
&lt;h2&gt;&lt;a title=&quot;How to Change Table Column Size&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=239]&quot;&gt;How to Change Table Column Size&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt; &lt;/p&gt;
&lt;h2&gt;&lt;a title=&quot;Deleting Duplicate Rows&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=248]&quot;&gt;Deleting Duplicate Rows&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt; &lt;/p&gt;
&lt;h2&gt;&lt;a title=&quot;Getting Meta Information About Table and Column in SQL Server&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=250]&quot;&gt;Getting Meta Information About Table and Column in SQL Server&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt; &lt;/p&gt;
&lt;h3&gt;Related Articles&lt;/h3&gt;
&lt;p&gt;&lt;a title=&quot;SQL Server Tips and Tricks&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=209]&quot;&gt;&lt;strong&gt;- SQL Server Tips and Tricks&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a title=&quot; jQuery Tips and Tricks&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=175]&quot;&gt;&lt;strong&gt;- jQuery Tips and Tricks&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a title=&quot;SilverStripe Tips and Tricks&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=178]&quot;&gt;&lt;strong&gt;- SilverStripe Tips and Tricks&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a title=&quot;C# Tips and Tricks&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=177]&quot;&gt;&lt;strong&gt;- C# Tips and Tricks&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;</description>
			<pubDate>Sat, 12 May 2012 13:30:26 -0500</pubDate>
			
			<guid>http://www.inforbiro.com/blog-eng/sql-tips-and-tricks/</guid>
		</item>
		
		<item>
			<title>C# - Sorting a List Collection of Classes With Properties</title>
			<link>http://www.inforbiro.com/blog-eng/c-sorting-a-list-collection-of-classes-with-properties/</link>
			<description>&lt;p&gt;In one of our previous articles we described &lt;a title=&quot;how to add values to ComboBox together with Ids in C#&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=241]&quot;&gt;how to add values to ComboBox together with Ids in C#&lt;/a&gt; using class for keeping Id and Value.&lt;/p&gt;
&lt;p&gt;Simillar to this logic, you can easily find yourself in a situation that you need to sort values in the list by some of the class property.&lt;/p&gt;
&lt;p&gt;Here is, by our opinion, the easiest way for sorting a list collection of classes by some of its properties in C#. In this example we'll use &quot;Name&quot; as a class' property.&lt;/p&gt;
&lt;pre class=&quot;brush: csharp;fontsize: 100; first-line: 1; &quot;&gt;// Create the list
List&amp;lt;TestClass&amp;gt; testList = new List&amp;lt;TestClass&amp;gt;();

...
// Populate the list
...

// Sort the list by some property
testList = testList.OrderBy(p =&amp;gt; p.Name).ToList();&lt;/pre&gt;
&lt;h3&gt;Related Articles&lt;/h3&gt;
&lt;p&gt;&lt;a title=&quot;C# Tips and Tricks&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=177]&quot;&gt;&lt;strong&gt;- C# Tips and Tricks&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a title=&quot;How to add values to ComboBox together with Ids in C#&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=241]&quot;&gt;&lt;strong&gt;- How to add values to ComboBox together with Ids in C#&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a title=&quot;How to Change Default Enter Key Behavior in DataGridView&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=201]&quot;&gt;&lt;strong&gt;- How to Change Default Enter Key Behavior in DataGridView&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;</description>
			<pubDate>Sat, 12 May 2012 13:29:43 -0500</pubDate>
			
			<guid>http://www.inforbiro.com/blog-eng/c-sorting-a-list-collection-of-classes-with-properties/</guid>
		</item>
		
		<item>
			<title>C# - How to Add Value with ID to Combobox</title>
			<link>http://www.inforbiro.com/blog-eng/c-how-to-add-value-with-id-to-combobox/</link>
			<description>&lt;p&gt;Combobox is a C# class that displays values in a dropdown list. Usually, it keeps simple string data only, but often we need to know an  identificator of selected string value.&lt;/p&gt;
&lt;p&gt;This article contains information how to add values with Id to combobox in C#. The trick is to use a class with properties, Id and Name and to add an instance of the class as the combobox item.&lt;/p&gt;
&lt;p&gt;Class to be used as container for id and value:&lt;/p&gt;
&lt;pre class=&quot;brush: csharp;fontsize: 100; first-line: 1; &quot;&gt;///
/// Class for keeping atribute value and id in combobox
///
class ComboboxValue
{
	public int Id { get; private set; }
	public string Name { get; private set; }

	public ComboboxValue(int id, string name)
	{
		Id = id;
		Name = name;
	}

	public override string ToString()
	{
		return Name;
	}
}&lt;/pre&gt;
&lt;p&gt;How to use the class in the code for inserting value with id into combobox and getting from it:&lt;/p&gt;
&lt;pre class=&quot;brush: php;fontsize: 100; first-line: 1; &quot;&gt;...
// Create combobox
Combobox cb = new Combobox();
...
// Add class to combobox items
cb.Items.Add(new ComboboxValue(10, &quot;Example value&quot;));
...
// Get values from selected checkbox item
ComboboxValue tmpComboboxValue = (ComboboxValue)cb.SelectedItem;
...&lt;/pre&gt;
&lt;h3&gt;Related Articles&lt;/h3&gt;
&lt;p&gt;&lt;a title=&quot;C# Tips and Tricks&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=209]&quot;&gt;&lt;strong&gt;- C# Tips and Tricks&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a title=&quot;How to Remove Non Numeric Characters From String&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=180]&quot;&gt;&lt;strong&gt;- How to Remove Non Numeric Characters From String&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a title=&quot;Changing Default Enter Key Behaviour in DataGridView&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=201]&quot;&gt;&lt;strong&gt;- Changing Default Enter Key Behaviour in DataGridView&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;</description>
			<pubDate>Sat, 12 May 2012 13:28:40 -0500</pubDate>
			
			<guid>http://www.inforbiro.com/blog-eng/c-how-to-add-value-with-id-to-combobox/</guid>
		</item>
		
		<item>
			<title>MySQL INT Field Length/Size</title>
			<link>http://www.inforbiro.com/blog-eng/mysql-int-field-length-size/</link>
			<description>&lt;p&gt;A very common question regarding integer datatype in MySQL is: &quot;&lt;strong&gt;Are INT(1) and INT(10) the same?&lt;/strong&gt;&quot; or &quot;&lt;strong&gt;What is difference between INT(1) and INT(10)?&lt;/strong&gt;&quot;&lt;/p&gt;
&lt;p&gt;The answer is &lt;strong&gt;YES&lt;/strong&gt;, they are actually exactly the same!&lt;/p&gt;
&lt;p&gt;An unsigned int uses 4 bytes of data and it has the max value of 4294967295. It doesn't matter whether it is represented as INT(1) or INT(10)&lt;/p&gt;
&lt;h3&gt;What does the number in the brackets mean?&lt;/h3&gt;
&lt;p&gt;The number inside brackets is called the display width. It represents a number between 1 and 255 and you can set it for determing how many ciphers will be displayed, e.g. int(1) will display only one cipher, int(3) will display 3 ciphers.&lt;/p&gt;
&lt;p&gt;The display width is not related to fields length and how many bytes of data will be used for data storage. It only represents display width, nothing else. If you, however, would like to use different amount of bytes you need to choose a proper datatype; for example if you will not use values above 127 and -128, you should use a tinyint.&lt;/p&gt;
&lt;h3&gt;Related Articles&lt;/h3&gt;
&lt;p&gt;&lt;a title=&quot;SQL Server Tips and Tricks&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=209]&quot;&gt;&lt;strong&gt;- SQL Server Tips and Tricks&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a title=&quot;MySQL Varchar Field Length Changing&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=203]&quot;&gt;&lt;strong&gt;- MySQL Varchar Field Length Changing&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a title=&quot;How to Fix Problem With Orphan Users in SQL Server&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=99]&quot;&gt;&lt;strong&gt;- How to Fix Problem With Orphan Users in SQL Server&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;</description>
			<pubDate>Sat, 12 May 2012 13:27:39 -0500</pubDate>
			
			<guid>http://www.inforbiro.com/blog-eng/mysql-int-field-length-size/</guid>
		</item>
		
		<item>
			<title>SQL - Change Column Size</title>
			<link>http://www.inforbiro.com/blog-eng/sql-change-column-size/</link>
			<description>&lt;p&gt;We hope that the examples below will help you if you want to change the size of a column in SQL.&lt;/p&gt;
&lt;h3&gt;Changing the size of a column with a SQL query&lt;/h3&gt;
&lt;p&gt;The syntax for changing the size of a column with SQL query is:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;ALTER TABLE [table_name] ALTER COLUMN [column_name] [data_type]&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;For example, if a database contains a table &quot;Students&quot; with column &quot;Name&quot; that is nvarchar(10) and you want to change it to nvarchar(100) the following query will do the job:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;ALTER TABLE Students ALTER COLUMN Name nvarchar(100)&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Changing the size of a column in SQL Server with the Server Manager&lt;/h3&gt;
&lt;p&gt;1) Right-click on a table&lt;/p&gt;
&lt;p&gt;2) Click on Design&lt;/p&gt;
&lt;p&gt;3) Change datatype of column(s)&lt;/p&gt;
&lt;h3&gt;Changing the size of a column in MySQL&lt;/h3&gt;
&lt;p&gt;1) Login to phpMyAdmin and go to a database&lt;/p&gt;
&lt;p&gt;2) Select table which field's length you want to change in the sidebar&lt;/p&gt;
&lt;p&gt;3) Click Structure in the top menu&lt;/p&gt;
&lt;p&gt;4) Click Change in Action column for field which varchar length you want to change&lt;/p&gt;
&lt;p&gt;5) Set field Length/Values to desired value&lt;/p&gt;
&lt;p&gt;6) Save the changes&lt;/p&gt;
&lt;h3&gt;Related Articles&lt;/h3&gt;
&lt;p&gt;&lt;a title=&quot;SQL Server Tips and Tricks&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=209]&quot;&gt;&lt;strong&gt;- SQL Server Tips and Tricks&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a title=&quot;How to Return Bool From Stored Procedure in SQL Server&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=210]&quot;&gt;&lt;strong&gt;- How to Return Bool From Stored Procedure in SQL Server&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a title=&quot;How to Update Table From Another Table With SQL&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=213]&quot;&gt;&lt;strong&gt;- How to Update Table From Another Table With SQL&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a title=&quot;Changing VARCHAR Field Length in MySQL&quot; href=&quot;http://www.inforbiro.com/[sitetree_link id=203]&quot;&gt;&lt;strong&gt;- Changing VARCHAR Field Length in MySQL&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;</description>
			<pubDate>Sat, 12 May 2012 12:52:42 -0500</pubDate>
			
			<guid>http://www.inforbiro.com/blog-eng/sql-change-column-size/</guid>
		</item>
		

	</channel>
</rss>
