Wednesday, May 26, 2010

Linux Short Tips

1. Avoid out of the session or close the terminal with the command Ctrl+D

  • set -o ignoreeof Enable Ctrl+D

  • set +o ignoreeof Disable Ctrl+D

2. The Alias — We introduce a command with an alias, and the shell will recode it with its value. For example, whether we define an alias this way: alias buscar=”find. -name”, when we input commands in the line buscar name_file the shell will execute find. -name name_file and will seek the file we ask starting in the current path.

Alias name_of_the_alias="command_which_will_execute_the_alias".

unalias To disable an alias use the command unalias: name_of_de_alias. If you want to see the alias defined in the system just write: alias.

3. Most recently used commands — Execute the following instruction in the console:

history|awk '{print $2}'|awk 'BEGIN {FS="|"} {print $1}'|sort|uniq -c|sort -rn|head -10

The history command shows a list of all recently executed commands. You can use the arrow keys to navigate the next and previous commands.

4. Kill all the process in a determined application — This command will be very useful when you are running programs which tend to drag on the system resources. Open terminal and type: ps aux c. The first column It will show you a complete list of running processes. contain the user owner of the process, the second one is the PID of the process and if we jump to the last column we will see the name of the application which belong to each processes. If the application you want to kill is, for example, Firefox, then it would be: ps aux c | grep firefox and then write kill -9. The next time you do a ps aux c | grep firefox, this program shouldn’t appear anymore.

5. Get the basic system information — There are some commands you can use to determine basic information of your machine such as kernel version, hardware information and others. The following command lines shows what they’ll return when executed;

$ cat /proc/version = "It returns a full string of information"

$ uname -m = "The result of the machine's number"

$ uname -r = "Show the version of the kernel"

$ uname -n = "Returns the local domain name"

$ uname -s = "Will show the system name"

$ uname -p = "It tells you the type and name of the processor"

$ uname -a = "Will show all the information above and also the date and time of the system"

6. Use the Calendar — With the following commands you can have different views and displays of the Calendar in the different versions of Linux.

cal -3 = "Simply display the calendar"

cal 1 2008 = "This command display a calendar of a particular month of the year"

date -d fri = "Display the date of the next on the current or next week"

date --date='25 Dec' +%A = "Tell you which day will be Christmas this year"

7. Disk Space — Having sufficient and optimized disc space is something vital for good performance of your system. In the case of Linux, here are the different ways to optimize your storage space and display information of your hard disc.

df -h = "This command display the free disc space"

fdisk -l = "Very similar to Windows environment show you the partitions of the disc"

ls -lSr = "Display the all the files and the biggest last"

du -s * | sort -k1,1rn | head = "Show top disc users in the current directory"

8. Set Operations — In Linux you can make operations with files quickly. Test the following commands which help you a lot to manipulate files.

LANG=C sort file1 file2 | uniq" = "Make the union of unsorted files"

LANG=C sort file1 file2 | uniq -d = "Intercept unsorted files"

LANG=C comm file1 file2 | sed 's/^\t*//' = "Union of sorted files"

LANG=C comm -3 file1 file2 | sed 's/^\t*// = "Symmetric difference of sorted files"

9. Text Manipulation — Manipulation of text is another very important aspect of the work. Let’s see some of this in Linux.

sed -n 's/.*\(.*\)<\/title>.*/\1/ip;T;q' = "Extract title from an HTML page"</span></span></p> <p style="margin-bottom: 0cm;"><span style="font-family:Courier New, monospace;"><span style="font-size:85%;">sed -n '10,20p;20q' = "Print lines from 10 to 20"</span></span></p> <p style="margin-bottom: 0cm;"><span style="font-family:Courier New, monospace;"><span style="font-size:85%;">sed ':a; /\\$/N; s/\\\n//; ta' = "Concatenate lines between \"</span></span></p> <p style="margin-bottom: 0cm;"><span style="font-family:Courier New, monospace;"><span style="font-size:85%;">sed 's/[ \t]*$//' = "Remove trailing spaces from lines"</span></span></p> <p style="margin-bottom: 0cm;"><span style="font-family:Courier New, monospace;"><span style="font-size:85%;">sed 's/string1/string2/g' = "Replace string1 with string2"</span></span></p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"><strong>10. Searching of Files</strong> — Faster method to search for almost anything under a Linux platform.</p> <p style="margin-bottom: 0cm;"><span style="font-family:Courier New, monospace;"><span style="font-size:85%;">alias l='ls -l --color=auto'page" = "Make a quick listing of directories"</span></span></p> <p style="margin-bottom: 0cm;"><span style="font-family:Courier New, monospace;"><span style="font-size:85%;">ls -lrt = "List files by date"</span></span></p> <p style="margin-bottom: 0cm;"><span style="font-family:Courier New, monospace;"><span style="font-size:85%;">find -name '*.[ch]' | xargs grep -E 'expr' "Search 'expr' in the current directory and below"</span></span></p> <p style="margin-bottom: 0cm;"><span style="font-family:Courier New, monospace;"><span style="font-size:85%;">find -type f ! -perm -444 = "Find files not readable by all"</span></span></p> <p style="margin-bottom: 0cm;"><span style="font-family:Courier New, monospace;"><span style="font-size:85%;">locate -r 'file[^/]*\.txt' = "Search cached index for names"</span></span></p> <p style="margin-bottom: 0cm;"> <br /></p> <p style="margin-bottom: 0cm;"><strong>11. Frozen Windows</strong> — Sometimes you can have a frozen window, and there are two fast ways to solve this problem without turning off your computer or restarting it. First, you can try the traditional key combination of Ctrl + Alt + Backspace. </p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;">The other way is a little more complicated than the previous one but is more efficient. Hit Ctrl + Alt + F2 to jump to the virtual console. Then log in with your user name, password and type the following: </p> <p style="margin-bottom: 0cm;"><span style="font-family:Courier New, monospace;"><span style="font-size:85%;">ps -ax | grep startx</span></span> </p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;">This executed command will provide you the PID of your Xserver. Then kill it with the next command</p> <p style="margin-bottom: 0cm;"><span style="font-family:Courier New, monospace;"><span style="font-size:85%;">kill -9 PID_Number</span></span> </p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;">If you want return to your first console, just press Alt + F1. </p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"><strong>12. Remote Execution</strong> — With the service “rexec” you can have remote execution, very useful when you are working on a network environment. The user using this service must authenticate with a user name and password.</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> <br /> <br /></p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> <br /> <br /></p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm; page-break-before: always;"> Installation Instructions for installing Java</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;">Install</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"># Linux self extracting binary file</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"># Linux RPM package</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;">To install the Linux (self-extracting) file</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> 1. At the terminal: Type:</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> su</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> 2. Enter the root password.</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> 3. Change to the directory in which you want to install. Type:</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> cd <directory></p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> For example, to install the software in the /usr/java/ directory, Type:</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> cd /usr/java/</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> Note about root access: To install the JRE in a system-wide location such as /usr/local, you must login as the root user to gain the necessary permissions. If you do not have root access, install the JRE in your home directory or a subdirectory for which you have write permissions.</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> 4. Change the permission of the file you downloaded to be executable. Type:</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> chmod a+x jre-1_5_0-linux-i586.bin</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> 5. Verify that you have permission to execute the file. Type:</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> ls -l</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;">Make sure the installation file has executable permission</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> 6. Start the installation process.Type:</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> ./jre-1_5_0-linux-i586.bin</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> This displays a binary license agreement. Read through the agreement. Press the spacebar to display the next page. At the end, enter yes to proceed with the installation.</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;">type YES to agree to the license agreement</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> 7. The JRE is installed into its own directory. In this example, it is installed in the /usr/java/jre1.5.0 directory. When the installation has completed, you will see the word Done.</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;">The installation completes</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> 8. The JRE is installed in jre1.5.(version number) sub-directory under the current directory. In this case, the JRE is installed in the /usr/java/jre1.5.0 directory. Verify that the jre1.5.0 sub-directory is listed under the current directory. Type:</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> ls</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;">Verify the installation filename</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;">The installation is now complete. Skip to the Enable and Configure section.</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> 1. Go to the plugins sub-directory under the Mozilla installation directory</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> cd <mozilla>/plugins</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> 2. In the current directory, create a symbolic link to the JRE ns7/libjavaplugin_oji.so file Type:</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> ln -s <jre>/plugin/i386/ns7/libjavaplugin_oji.so</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> <br /> <br /></p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> Example:</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> * If Mozilla is installed in this directory:</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> /usr/lib/mozilla-1.4/</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> * and if the JRE is installed at this directory:</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> /usr/java/jre1.5.0</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> * Then type at the terminal to go to the browser plug-in directory:</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> cd /usr/lib/mozilla-1.4/plugins</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> * Enter the following command to create a symbolic link to the Java Plug-in for the Mozilla browser.</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> ln -s /usr/java/jre1.5.0/plugin/i386/ns7</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> /libjavaplugin_oji.so .</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> 3. Start Mozilla browser or restart it if it is already running. Note that if you have other Mozilla components (ie: Messenger, Composer, etc) running, you will need to restart them as well.</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> 4. Go to Edit > Preferences. Under Advanced category > Select Enable Java</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;">Mozilla 1.2, Netscape 6 and later</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> 1. Go to the plugins sub-directory under the Netscape directory</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> cd <mozilla1.2>/plugins</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> 2. Create a symbolic link to the ns7-gcc29/libjavaplugin_oji.so file:</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> ln -s <jre>/plugin/i386/ns7-gcc29/libjavaplugin_oji.so</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> Example:</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> * If Netscape is installed at this directory:</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> /usr/lib/Mozilla1.2/</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> * And if the JRE is installed at this directory:</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> /usr/java/jre1.5.0</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> * Then type at the terminal to go to the browser plug-in directory:</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> cd /usr/lib/Mozilla1.2/plugins</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> * Enter the following command to create a symbolic link to the Java Plug-in for the Mozilla browser.</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> ln -s /usr/java/jre1.5.0/plugin/i386/ns7-gcc29</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> /libjavaplugin_oji.so .</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;"> 3. Start Mozilla browser or restart it if it is already running. Note that if you have other Mozilla components (ie: Messenger, Composer, etc) running, you will need to restart them as well.</p> <p style="margin-top: 0.49cm; margin-bottom: 0.49cm;">4. Go to Edit > Preferences. Under Advanced category > Select Enable Java</p> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'><span class='post-author vcard'> </span> <span class='post-timestamp'> at <a class='timestamp-link' href='https://letconex.blogspot.com/2010/05/linux-short-tips.html' rel='bookmark' title='permanent link'><abbr class='published' title='2010-05-26T09:14:00+03:00'>9:14 AM</abbr></a> </span> <span class='post-icons'> <span class='item-action'> <a href='https://www.blogger.com/email-post.g?blogID=494411124526204630&postID=411060663611008748' title='Email Post'> <img alt='' class='icon-action' height='13' src='http://www.blogger.com/img/icon18_email.gif' width='18'/> </a> </span> </span> </div> <div class='post-footer-line post-footer-line-2'><span class='post-labels'> Labels: <a href='https://letconex.blogspot.com/search/label/Linux' rel='tag'>Linux</a> </span> </div> <div class='post-footer-line post-footer-line-3'></div> </div> </div> <div class='comments' id='comments'> <a name='comments'></a> </div> </div> </div></div> </div> <div class='blog-pager' id='blog-pager'> <span id='blog-pager-newer-link'> <a class='blog-pager-newer-link' href='https://letconex.blogspot.com/2010/05/subtitle-manipulation-tools-for-linux.html' id='Blog1_blog-pager-newer-link' title='Newer Post'>Newer Post</a> </span> <span id='blog-pager-older-link'> <a class='blog-pager-older-link' href='https://letconex.blogspot.com/2010/05/change-gnome-panel-text-color.html' id='Blog1_blog-pager-older-link' title='Older Post'>Older Post</a> </span> <a class='home-link' href='https://letconex.blogspot.com/'>Home</a> </div> <div class='clear'></div> <div class='post-feeds'> </div> </div></div> </div> <div id='sidebar-wrapper'> <div class='sidebar section' id='sidebar'><div class='widget HTML' data-version='1' id='HTML5'> <h2 class='title'>Show IP and Country</h2> <div class='widget-content'> IP: <b><span id="user_ip"><span class="icon"><i class="loader"></i></span></span></b> Country code: <b><span id="user_countrycode"><span class="icon"><i class="loader"></i></span></span></b> <script type="application/javascript"> function geoip(json){ var userip = document.getElementById("user_ip"); var countrycode = document.getElementById("user_countrycode"); userip.textContent = json.ip; countrycode.textContent = json.country_code; } </script> <script async src="https://get.geojs.io/v1/ip/geo.js"></script> </div> <div class='clear'></div> </div><div class='widget AdSense' data-version='1' id='AdSense1'> <div class='widget-content'> <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6514552378461734&host=ca-host-pub-1556223355139109" crossorigin="anonymous"></script> <!-- letconex_sidebar_AdSense1_300x250_as --> <ins class="adsbygoogle" style="display:inline-block;width:300px;height:250px" data-ad-client="ca-pub-6514552378461734" data-ad-host="ca-host-pub-1556223355139109" data-ad-slot="4560337438"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> <div class='clear'></div> </div> </div><div class='widget BlogSearch' data-version='1' id='BlogSearch1'> <h2 class='title'>Search This Blog</h2> <div class='widget-content'> <div id='BlogSearch1_form'> <form action='https://letconex.blogspot.com/search' class='gsc-search-box' target='_top'> <table cellpadding='0' cellspacing='0' class='gsc-search-box'> <tbody> <tr> <td class='gsc-input'> <input autocomplete='off' class='gsc-input' name='q' size='10' title='search' type='text' value=''/> </td> <td class='gsc-search-button'> <input class='gsc-search-button' title='search' type='submit' value='Search'/> </td> </tr> </tbody> </table> </form> </div> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML2'> <h2 class='title'>LinkedIn Profile</h2> <div class='widget-content'> <script src="https://platform.linkedin.com/badges/js/profile.js" async defer type="text/javascript"></script> <div class="badge-base LI-profile-badge" data-locale="en_US" data-size="medium" data-theme="dark" data-type="VERTICAL" data-vanity="tiberiu-cristian-leon" data-version="v1"><a class="badge-base__link LI-simple-link" href="https://ro.linkedin.com/in/tiberiu-cristian-leon?trk=profile-badge">Tiberiu Cristian Leon</a></div> </div> <div class='clear'></div> </div><div class='widget Profile' data-version='1' id='Profile1'> <h2>About Me</h2> <div class='widget-content'> <dl class='profile-datablock'> <dt class='profile-data'> <a class='profile-name-link g-profile' href='https://www.blogger.com/profile/16802277287976622797' rel='author' style='background-image: url(//www.blogger.com/img/logo-16.png);'> Tiberiu Cristian Leon </a> </dt> <dd class='profile-textblock'>Freelance translator for Romanian, German, English Traducător germană engleză română Übersetzer Rumänisch-Deutsch-Englisch</dd> </dl> <a class='profile-link' href='https://www.blogger.com/profile/16802277287976622797' rel='author'>View my complete profile</a> <div class='clear'></div> </div> </div><div class='widget LinkList' data-version='1' id='LinkList1'> <h2>Useful Links</h2> <div class='widget-content'> <ul> <li><a href='http://www.traduceri.pluto.ro'>Traduceri.pluto.ro</a></li> <li><a href='http://traduceri.pluto.ro/?page_id=42'>Dictionary</a></li> <li><a href='http://www.infotraduceri.wordpress.com'>Infotraduceri.wordpress.com</a></li> </ul> <div class='clear'></div> </div> </div><div class='widget BlogArchive' data-version='1' id='BlogArchive1'> <h2>Blog Archive</h2> <div class='widget-content'> <div id='ArchiveList'> <div id='BlogArchive1_ArchiveList'> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2024/'> 2024 </a> <span class='post-count' dir='ltr'>(4)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2024/03/'> March </a> <span class='post-count' dir='ltr'>(4)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2023/'> 2023 </a> <span class='post-count' dir='ltr'>(83)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2023/11/'> November </a> <span class='post-count' dir='ltr'>(6)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2023/10/'> October </a> <span class='post-count' dir='ltr'>(12)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2023/09/'> September </a> <span class='post-count' dir='ltr'>(24)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2023/08/'> August </a> <span class='post-count' dir='ltr'>(11)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2023/07/'> July </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2023/06/'> June </a> <span class='post-count' dir='ltr'>(7)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2023/05/'> May </a> <span class='post-count' dir='ltr'>(4)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2023/03/'> March </a> <span class='post-count' dir='ltr'>(10)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2023/02/'> February </a> <span class='post-count' dir='ltr'>(5)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2023/01/'> January </a> <span class='post-count' dir='ltr'>(3)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2021/'> 2021 </a> <span class='post-count' dir='ltr'>(4)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2021/10/'> October </a> <span class='post-count' dir='ltr'>(2)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2021/02/'> February </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2021/01/'> January </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2020/'> 2020 </a> <span class='post-count' dir='ltr'>(14)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2020/12/'> December </a> <span class='post-count' dir='ltr'>(3)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2020/11/'> November </a> <span class='post-count' dir='ltr'>(2)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2020/10/'> October </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2020/09/'> September </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2020/03/'> March </a> <span class='post-count' dir='ltr'>(3)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2020/02/'> February </a> <span class='post-count' dir='ltr'>(2)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2020/01/'> January </a> <span class='post-count' dir='ltr'>(2)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2019/'> 2019 </a> <span class='post-count' dir='ltr'>(13)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2019/12/'> December </a> <span class='post-count' dir='ltr'>(4)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2019/11/'> November </a> <span class='post-count' dir='ltr'>(2)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2019/09/'> September </a> <span class='post-count' dir='ltr'>(2)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2019/07/'> July </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2019/06/'> June </a> <span class='post-count' dir='ltr'>(2)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2019/04/'> April </a> <span class='post-count' dir='ltr'>(2)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2018/'> 2018 </a> <span class='post-count' dir='ltr'>(47)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2018/11/'> November </a> <span class='post-count' dir='ltr'>(10)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2018/10/'> October </a> <span class='post-count' dir='ltr'>(12)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2018/08/'> August </a> <span class='post-count' dir='ltr'>(4)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2018/07/'> July </a> <span class='post-count' dir='ltr'>(6)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2018/02/'> February </a> <span class='post-count' dir='ltr'>(5)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2018/01/'> January </a> <span class='post-count' dir='ltr'>(10)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2017/'> 2017 </a> <span class='post-count' dir='ltr'>(25)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2017/12/'> December </a> <span class='post-count' dir='ltr'>(6)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2017/11/'> November </a> <span class='post-count' dir='ltr'>(4)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2017/04/'> April </a> <span class='post-count' dir='ltr'>(6)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2017/03/'> March </a> <span class='post-count' dir='ltr'>(7)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2017/02/'> February </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2017/01/'> January </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2015/'> 2015 </a> <span class='post-count' dir='ltr'>(3)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2015/12/'> December </a> <span class='post-count' dir='ltr'>(3)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2014/'> 2014 </a> <span class='post-count' dir='ltr'>(9)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2014/07/'> July </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2014/06/'> June </a> <span class='post-count' dir='ltr'>(4)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2014/02/'> February </a> <span class='post-count' dir='ltr'>(4)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2013/'> 2013 </a> <span class='post-count' dir='ltr'>(8)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2013/06/'> June </a> <span class='post-count' dir='ltr'>(7)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2013/02/'> February </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2012/'> 2012 </a> <span class='post-count' dir='ltr'>(23)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2012/10/'> October </a> <span class='post-count' dir='ltr'>(3)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2012/09/'> September </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2012/08/'> August </a> <span class='post-count' dir='ltr'>(2)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2012/06/'> June </a> <span class='post-count' dir='ltr'>(6)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2012/03/'> March </a> <span class='post-count' dir='ltr'>(5)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2012/02/'> February </a> <span class='post-count' dir='ltr'>(6)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2011/'> 2011 </a> <span class='post-count' dir='ltr'>(117)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2011/12/'> December </a> <span class='post-count' dir='ltr'>(11)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2011/11/'> November </a> <span class='post-count' dir='ltr'>(11)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2011/10/'> October </a> <span class='post-count' dir='ltr'>(17)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2011/09/'> September </a> <span class='post-count' dir='ltr'>(15)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2011/08/'> August </a> <span class='post-count' dir='ltr'>(4)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2011/07/'> July </a> <span class='post-count' dir='ltr'>(10)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2011/06/'> June </a> <span class='post-count' dir='ltr'>(17)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2011/05/'> May </a> <span class='post-count' dir='ltr'>(6)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2011/04/'> April </a> <span class='post-count' dir='ltr'>(10)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2011/03/'> March </a> <span class='post-count' dir='ltr'>(4)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2011/02/'> February </a> <span class='post-count' dir='ltr'>(5)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2011/01/'> January </a> <span class='post-count' dir='ltr'>(7)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate expanded'> <a class='toggle' href='javascript:void(0)'> <span class='zippy toggle-open'> ▼  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2010/'> 2010 </a> <span class='post-count' dir='ltr'>(85)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2010/12/'> December </a> <span class='post-count' dir='ltr'>(2)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2010/11/'> November </a> <span class='post-count' dir='ltr'>(3)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2010/10/'> October </a> <span class='post-count' dir='ltr'>(6)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2010/09/'> September </a> <span class='post-count' dir='ltr'>(2)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2010/08/'> August </a> <span class='post-count' dir='ltr'>(4)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2010/07/'> July </a> <span class='post-count' dir='ltr'>(5)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2010/06/'> June </a> <span class='post-count' dir='ltr'>(10)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate expanded'> <a class='toggle' href='javascript:void(0)'> <span class='zippy toggle-open'> ▼  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2010/05/'> May </a> <span class='post-count' dir='ltr'>(33)</span> <ul class='posts'> <li><a href='https://letconex.blogspot.com/2010/05/translation-memory-software.html'>Translation Memory Software</a></li> <li><a href='https://letconex.blogspot.com/2010/05/performance-tuning-linux-kernel-with.html'>Performance tuning Linux Kernel with swappiness pa...</a></li> <li><a href='https://letconex.blogspot.com/2010/05/getting-your-scanner-to-work-with.html'>Getting your scanner to work with Ubuntu (gt68xx)</a></li> <li><a href='https://letconex.blogspot.com/2010/05/make-your-own-usplash.html'>Make your own Usplash</a></li> <li><a href='https://letconex.blogspot.com/2010/05/made-your-own-gdm-theme.html'>Made your own GDM theme</a></li> <li><a href='https://letconex.blogspot.com/2010/05/linux-tips-and-tricks-2005.html'>Linux Tips and Tricks 2005</a></li> <li><a href='https://letconex.blogspot.com/2010/05/is-my-hardware-linux-compatible-find.html'>Is my hardware Linux-compatible? Find out here</a></li> <li><a href='https://letconex.blogspot.com/2010/05/linmodem-howto.html'>Linmodem howto</a></li> <li><a href='https://letconex.blogspot.com/2010/05/lilo-and-grub-boot-loaders-made-simple.html'>LILO and GRUB: Boot Loaders Made Simple</a></li> <li><a href='https://letconex.blogspot.com/2010/05/linux-commands-for-cli.html'>Linux commands for CLI</a></li> <li><a href='https://letconex.blogspot.com/2010/05/faxing-in-openofficeorg.html'>Faxing in OpenOffice.org</a></li> <li><a href='https://letconex.blogspot.com/2010/05/proprietary-programs-and-open-source.html'>Proprietary Programs and Open Source Alternatives</a></li> <li><a href='https://letconex.blogspot.com/2010/05/flags-in-gnome-keyboard-indicator.html'>Flags in the Gnome Keyboard Indicator (gswitchit)</a></li> <li><a href='https://letconex.blogspot.com/2010/05/meanings-of-folders-in-directory.html'>The meanings of the folders in the / directory</a></li> <li><a href='https://letconex.blogspot.com/2010/05/subtitle-manipulation-tools-for-linux.html'>Subtitle manipulation tools for Linux</a></li> <li><a href='https://letconex.blogspot.com/2010/05/linux-short-tips.html'>Linux Short Tips</a></li> <li><a href='https://letconex.blogspot.com/2010/05/change-gnome-panel-text-color.html'>Change Gnome Panel Text Color</a></li> <li><a href='https://letconex.blogspot.com/2010/05/six-tips-to-protect-your-search-privacy.html'>Six Tips to Protect Your Search Privacy</a></li> <li><a href='https://letconex.blogspot.com/2010/05/editing-basics-for-xorgconf-file.html'>Editing basics for the xorg.conf file</a></li> <li><a href='https://letconex.blogspot.com/2010/05/all-about-linux-swap-space.html'>All about Linux swap space</a></li> <li><a href='https://letconex.blogspot.com/2010/05/repair-your-grub-loader.html'>Repair your GRUB loader</a></li> <li><a href='https://letconex.blogspot.com/2010/05/word-macro-to-convert-trados-multiterm.html'>Word Macro to convert Trados Multiterm XML to CSV</a></li> <li><a href='https://letconex.blogspot.com/2010/05/cat-toolsmemoqtips-and-tricks-memoq.html'>CAT-Tools/MemoQ/Tips and Tricks - MemoQ</a></li> <li><a href='https://letconex.blogspot.com/2010/05/automatic-translation-of-numbers-in.html'>Automatic "translation" of numbers in MemoQ</a></li> <li><a href='https://letconex.blogspot.com/2010/05/optimizing-mysql-queries-and-indexes.html'>Optimizing MySQL: Queries and Indexes</a></li> <li><a href='https://letconex.blogspot.com/2010/05/indexing-basic-mysql-queries.html'>Indexing Basic MySQL Queries</a></li> <li><a href='https://letconex.blogspot.com/2010/05/mysql-query-optimization.html'>MySQL Query Optimization</a></li> <li><a href='https://letconex.blogspot.com/2010/05/search-in-mysql-database-for-exact-term.html'>Search in Mysql database for exact term with MATCH...</a></li> <li><a href='https://letconex.blogspot.com/2010/05/using-mysql-full-text-searching.html'>Using MySQL Full-text Searching</a></li> <li><a href='https://letconex.blogspot.com/2010/05/boot-from-usb-drive-even-if-bios-does.html'>Boot From a USB Drive Even if BIOS does not have t...</a></li> <li><a href='https://letconex.blogspot.com/2010/05/how-to-restore-grub-2-as-main.html'>How to Restore Grub 2 As The Main Bootloader</a></li> <li><a href='https://letconex.blogspot.com/2010/05/downgrading-grub-ubuntu-1004.html'>Downgrading GRUB [ Ubuntu 10.04 ]</a></li> <li><a href='https://letconex.blogspot.com/2010/05/how-to-find-open-source-software.html'>How to Find Open Source Software</a></li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2010/04/'> April </a> <span class='post-count' dir='ltr'>(9)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2010/03/'> March </a> <span class='post-count' dir='ltr'>(4)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2010/02/'> February </a> <span class='post-count' dir='ltr'>(3)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2010/01/'> January </a> <span class='post-count' dir='ltr'>(4)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2009/'> 2009 </a> <span class='post-count' dir='ltr'>(72)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2009/12/'> December </a> <span class='post-count' dir='ltr'>(16)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2009/11/'> November </a> <span class='post-count' dir='ltr'>(19)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2009/10/'> October </a> <span class='post-count' dir='ltr'>(16)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2009/09/'> September </a> <span class='post-count' dir='ltr'>(16)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2009/08/'> August </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2009/07/'> July </a> <span class='post-count' dir='ltr'>(4)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2007/'> 2007 </a> <span class='post-count' dir='ltr'>(3)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://letconex.blogspot.com/2007/12/'> December </a> <span class='post-count' dir='ltr'>(3)</span> </li> </ul> </li> </ul> </div> </div> <div class='clear'></div> </div> </div><div class='widget Label' data-version='1' id='Label1'> <h2>Tags</h2> <div class='widget-content cloud-label-widget-content'> <span class='label-size label-size-5'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Translation'>Translation</a> <span class='label-count' dir='ltr'>(151)</span> </span> <span class='label-size label-size-5'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Tips%20%2F%20Tricks'>Tips / Tricks</a> <span class='label-count' dir='ltr'>(133)</span> </span> <span class='label-size label-size-5'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Programming'>Programming</a> <span class='label-count' dir='ltr'>(102)</span> </span> <span class='label-size label-size-4'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Linux'>Linux</a> <span class='label-count' dir='ltr'>(77)</span> </span> <span class='label-size label-size-4'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Language'>Language</a> <span class='label-count' dir='ltr'>(58)</span> </span> <span class='label-size label-size-4'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Python'>Python</a> <span class='label-count' dir='ltr'>(41)</span> </span> <span class='label-size label-size-4'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Machine%20Translation'>Machine Translation</a> <span class='label-count' dir='ltr'>(24)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/dictionary'>dictionary</a> <span class='label-count' dir='ltr'>(21)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/API'>API</a> <span class='label-count' dir='ltr'>(15)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Traduceri'>Traduceri</a> <span class='label-count' dir='ltr'>(15)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Miscellaneous'>Miscellaneous</a> <span class='label-count' dir='ltr'>(14)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Neural%20Machine%20Translation'>Neural Machine Translation</a> <span class='label-count' dir='ltr'>(14)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/useful%20links'>useful links</a> <span class='label-count' dir='ltr'>(14)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/HTML'>HTML</a> <span class='label-count' dir='ltr'>(12)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Interpretation'>Interpretation</a> <span class='label-count' dir='ltr'>(12)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Javascript'>Javascript</a> <span class='label-count' dir='ltr'>(12)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/glosar'>glosar</a> <span class='label-count' dir='ltr'>(12)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Localization'>Localization</a> <span class='label-count' dir='ltr'>(11)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Romanian'>Romanian</a> <span class='label-count' dir='ltr'>(11)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/glossary'>glossary</a> <span class='label-count' dir='ltr'>(11)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/MT'>MT</a> <span class='label-count' dir='ltr'>(10)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/software'>software</a> <span class='label-count' dir='ltr'>(10)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Trados'>Trados</a> <span class='label-count' dir='ltr'>(9)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/macro'>macro</a> <span class='label-count' dir='ltr'>(9)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/terminology'>terminology</a> <span class='label-count' dir='ltr'>(9)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/german'>german</a> <span class='label-count' dir='ltr'>(8)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/%C3%9Cbersetzungen'>Übersetzungen</a> <span class='label-count' dir='ltr'>(8)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Word'>Word</a> <span class='label-count' dir='ltr'>(7)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Open%20Source'>Open Source</a> <span class='label-count' dir='ltr'>(6)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Statistical%20Machine%20Translation'>Statistical Machine Translation</a> <span class='label-count' dir='ltr'>(6)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/command%20line'>command line</a> <span class='label-count' dir='ltr'>(6)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/dic%C8%9Bionar'>dicționar</a> <span class='label-count' dir='ltr'>(6)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/sqlite'>sqlite</a> <span class='label-count' dir='ltr'>(6)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/AHK'>AHK</a> <span class='label-count' dir='ltr'>(5)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Audio-video'>Audio-video</a> <span class='label-count' dir='ltr'>(5)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Deutsch'>Deutsch</a> <span class='label-count' dir='ltr'>(5)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/English'>English</a> <span class='label-count' dir='ltr'>(5)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/HTTP'>HTTP</a> <span class='label-count' dir='ltr'>(5)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Quart'>Quart</a> <span class='label-count' dir='ltr'>(5)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Regex'>Regex</a> <span class='label-count' dir='ltr'>(5)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/async'>async</a> <span class='label-count' dir='ltr'>(5)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/cli'>cli</a> <span class='label-count' dir='ltr'>(5)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/flask'>flask</a> <span class='label-count' dir='ltr'>(5)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Asyncio'>Asyncio</a> <span class='label-count' dir='ltr'>(4)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/AutoHotKey'>AutoHotKey</a> <span class='label-count' dir='ltr'>(4)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/CSS'>CSS</a> <span class='label-count' dir='ltr'>(4)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Database'>Database</a> <span class='label-count' dir='ltr'>(4)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/MemoQ'>MemoQ</a> <span class='label-count' dir='ltr'>(4)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Sprache'>Sprache</a> <span class='label-count' dir='ltr'>(4)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/traducere'>traducere</a> <span class='label-count' dir='ltr'>(4)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Games'>Games</a> <span class='label-count' dir='ltr'>(3)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/IATE'>IATE</a> <span class='label-count' dir='ltr'>(3)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Internet'>Internet</a> <span class='label-count' dir='ltr'>(3)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/JS'>JS</a> <span class='label-count' dir='ltr'>(3)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/TBX'>TBX</a> <span class='label-count' dir='ltr'>(3)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/asynchronous'>asynchronous</a> <span class='label-count' dir='ltr'>(3)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/links'>links</a> <span class='label-count' dir='ltr'>(3)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/translate'>translate</a> <span class='label-count' dir='ltr'>(3)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Automation'>Automation</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Convert'>Convert</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/JSON'>JSON</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/LibreOffice'>LibreOffice</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/NMT'>NMT</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Office'>Office</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Termbase'>Termbase</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Unicode'>Unicode</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/VBA'>VBA</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/W%C3%B6rterbuch'>Wörterbuch</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/XML'>XML</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/bash'>bash</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/baz%C4%83%20de%20date'>bază de date</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/download'>download</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/generators'>generators</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/hosting'>hosting</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/list%20comprehension'>list comprehension</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/regular%20expressions'>regular expressions</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/terminal'>terminal</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/traduc%C4%83tori%20autoriza%C8%9Bi'>traducători autorizați</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/AI'>AI</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Across'>Across</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/ChatGPT'>ChatGPT</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/DOS'>DOS</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/E-Factura'>E-Factura</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Express'>Express</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Glossar'>Glossar</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/HTTPX'>HTTPX</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/ImmutableMultiDict'>ImmutableMultiDict</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Informa%C8%9Bii%20generale'>Informații generale</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Lexikon'>Lexikon</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Literature'>Literature</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/MemSource'>MemSource</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Microsoft'>Microsoft</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/MongoDB'>MongoDB</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Mongoose'>Mongoose</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/MySQL'>MySQL</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Notepad%2B%2B'>Notepad++</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/PFA'>PFA</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/POST'>POST</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/QA'>QA</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Rom%C3%A2nia'>România</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/SMT'>SMT</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/TMX'>TMX</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Tikal'>Tikal</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Utils'>Utils</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/VPS'>VPS</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Wikidictionary'>Wikidictionary</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Windows%2010'>Windows 10</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/Wordfast'>Wordfast</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/cloud'>cloud</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/concurrency'>concurrency</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/coroutines'>coroutines</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/db'>db</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/deep%20learning'>deep learning</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/dex'>dex</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/emoji'>emoji</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/emoticons'>emoticons</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/fetch'>fetch</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/file%20handlers'>file handlers</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/fuzzy'>fuzzy</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/german%C4%83'>germană</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/impozit'>impozit</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/instan%C8%9B%C4%83'>instanță</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/interpretare%20autorizat%C4%83'>interpretare autorizată</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/iterators'>iterators</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/japanese'>japanese</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/limb%C4%83'>limbă</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/lingvistic%C4%83'>lingvistică</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/medical%20dabatase'>medical dabatase</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/movie'>movie</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/nlp'>nlp</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/ortografie'>ortografie</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/plug-in'>plug-in</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/privacy%20policy'>privacy policy</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/ressources'>ressources</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/rom%C3%A2n%C4%83'>română</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/script'>script</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/social'>social</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/spelling'>spelling</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/stardict'>stardict</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/string'>string</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/tsv'>tsv</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://letconex.blogspot.com/search/label/xliff'>xliff</a> <span class='label-count' dir='ltr'>(1)</span> </span> <div class='clear'></div> </div> </div><div class='widget HTML' data-version='1' id='HTML4'> <h2 class='title'>2Performant</h2> <div class='widget-content'> <a href="https://event.2performant.com/events/click?ad_type=quicklink&aff_code=e54a66a1c&unique=0a8a2c4d9&redirect_to=https%253A//www.litera.ro/" target="_blank" rel="nofollow"><img src="https://img.2performant.com/system/paperclip/banner_pictures/pics/146579/original/146579.jpg" alt="litera.ro " title="litera.ro " border="0" height="250px" width="250px" /></a> </div> <div class='clear'></div> </div><div class='widget Feed' data-version='1' id='Feed1'> <h2>ProZ.com Jobs</h2> <div class='widget-content' id='Feed1_feedItemListDisplay'> <span style='filter: alpha(25); opacity: 0.25;'> <a href='https://www.proz.com/rss.php?id=572217&auth=27237aa4c22945db0e21f16a369e8783&channel=jobs'>Loading...</a> </span> </div> <div class='clear'></div> </div><div class='widget Feed' data-version='1' id='Feed3'> <h2>TranslatorsCafe.com: Recent Translation Jobs</h2> <div class='widget-content' id='Feed3_feedItemListDisplay'> <span style='filter: alpha(25); opacity: 0.25;'> <a href='https://www.translatorscafe.com/tcUtils/EN/jobs/rss.aspx'>Loading...</a> </span> </div> <div class='clear'></div> </div><div class='widget Feed' data-version='1' id='Feed2'> <h2>TranslatorsTown.com</h2> <div class='widget-content' id='Feed2_feedItemListDisplay'> <span style='filter: alpha(25); opacity: 0.25;'> <a href='http://feeds.feedburner.com/translatorstown/translation-jobs/'>Loading...</a> </span> </div> <div class='clear'></div> </div><div class='widget Stats' data-version='1' id='Stats1'> <h2>Total Pageviews</h2> <div class='widget-content'> <div id='Stats1_content' style='display: none;'> <script src='https://www.gstatic.com/charts/loader.js' type='text/javascript'></script> <span id='Stats1_sparklinespan' style='display:inline-block; width:75px; height:30px'></span> <span class='counter-wrapper text-counter-wrapper' id='Stats1_totalCount'> </span> <div class='clear'></div> </div> </div> </div><div class='widget PopularPosts' data-version='1' id='PopularPosts1'> <h2>Popular Posts</h2> <div class='widget-content popular-posts'> <ul> <li> <div class='item-title'><a href='https://letconex.blogspot.com/2013/06/how-to-use-regular-expressions-in.html'>How to use regular expressions in Notepad++ (tutorial)</a></div> <div class='item-snippet'>In case you have the plugins installed, try Ctrl+R or in the TextFX -> TextFX Quick -> Find/Replace to get a sophisticated dialogue...</div> </li> <li> <div class='item-title'><a href='https://letconex.blogspot.com/2010/01/open-source-applications.html'>Open Source applications</a></div> <div class='item-snippet'>Open Source Accounting 1. FriFinans An alternative to Web-based open-source accounting apps, FriFinans is a cross-platform, multi-user, clie...</div> </li> <li> <div class='item-title'><a href='https://letconex.blogspot.com/2014/06/link-list.html'>Link List</a></div> <div class='item-snippet'> Anbieter Land Sprachen Anmerkung Bereich Adresse ? ? mehrsprachig Abkürzungen A bis Z http:/...</div> </li> <li> <div class='item-title'><a href='https://letconex.blogspot.com/2010/08/how-to-connect-to-skydrive-with-webdav.html'>How to connect to SkyDrive with WebDAV</a></div> <div class='item-snippet'> Actually, I stumbled upon this when I decided to try out Office 2010 beta. I haven’t found any official documentation about how to connect...</div> </li> <li> <div class='item-title'><a href='https://letconex.blogspot.com/2018/02/free-xliff-editors.html'>Free Xliff Editors</a></div> <div class='item-snippet'> OmegaT OmegaT is a Java-based translation tool that supports many file formats, including XLIFF documents. Open Language Tools - Olan...</div> </li> </ul> <div class='clear'></div> </div> </div><div class='widget Subscribe' data-version='1' id='Subscribe1'> <div style='white-space:nowrap'> <h2 class='title'>Subscribe To</h2> <div class='widget-content'> <div class='subscribe-wrapper subscribe-type-POST'> <div class='subscribe expanded subscribe-type-POST' id='SW_READER_LIST_Subscribe1POST' style='display:none;'> <div class='top'> <span class='inner' onclick='return(_SW_toggleReaderList(event, "Subscribe1POST"));'> <img class='subscribe-dropdown-arrow' src='https://resources.blogblog.com/img/widgets/arrow_dropdown.gif'/> <img align='absmiddle' alt='' border='0' class='feed-icon' src='https://resources.blogblog.com/img/icon_feed12.png'/> Posts </span> <div class='feed-reader-links'> <a class='feed-reader-link' href='https://www.netvibes.com/subscribe.php?url=https%3A%2F%2Fletconex.blogspot.com%2Ffeeds%2Fposts%2Fdefault' target='_blank'> <img src='https://resources.blogblog.com/img/widgets/subscribe-netvibes.png'/> </a> <a class='feed-reader-link' href='https://add.my.yahoo.com/content?url=https%3A%2F%2Fletconex.blogspot.com%2Ffeeds%2Fposts%2Fdefault' target='_blank'> <img src='https://resources.blogblog.com/img/widgets/subscribe-yahoo.png'/> </a> <a class='feed-reader-link' href='https://letconex.blogspot.com/feeds/posts/default' target='_blank'> <img align='absmiddle' class='feed-icon' src='https://resources.blogblog.com/img/icon_feed12.png'/> Atom </a> </div> </div> <div class='bottom'></div> </div> <div class='subscribe' id='SW_READER_LIST_CLOSED_Subscribe1POST' onclick='return(_SW_toggleReaderList(event, "Subscribe1POST"));'> <div class='top'> <span class='inner'> <img class='subscribe-dropdown-arrow' src='https://resources.blogblog.com/img/widgets/arrow_dropdown.gif'/> <span onclick='return(_SW_toggleReaderList(event, "Subscribe1POST"));'> <img align='absmiddle' alt='' border='0' class='feed-icon' src='https://resources.blogblog.com/img/icon_feed12.png'/> Posts </span> </span> </div> <div class='bottom'></div> </div> </div> <div class='subscribe-wrapper subscribe-type-PER_POST'> <div class='subscribe expanded subscribe-type-PER_POST' id='SW_READER_LIST_Subscribe1PER_POST' style='display:none;'> <div class='top'> <span class='inner' onclick='return(_SW_toggleReaderList(event, "Subscribe1PER_POST"));'> <img class='subscribe-dropdown-arrow' src='https://resources.blogblog.com/img/widgets/arrow_dropdown.gif'/> <img align='absmiddle' alt='' border='0' class='feed-icon' src='https://resources.blogblog.com/img/icon_feed12.png'/> Comments </span> <div class='feed-reader-links'> <a class='feed-reader-link' href='https://www.netvibes.com/subscribe.php?url=https%3A%2F%2Fletconex.blogspot.com%2Ffeeds%2F411060663611008748%2Fcomments%2Fdefault' target='_blank'> <img src='https://resources.blogblog.com/img/widgets/subscribe-netvibes.png'/> </a> <a class='feed-reader-link' href='https://add.my.yahoo.com/content?url=https%3A%2F%2Fletconex.blogspot.com%2Ffeeds%2F411060663611008748%2Fcomments%2Fdefault' target='_blank'> <img src='https://resources.blogblog.com/img/widgets/subscribe-yahoo.png'/> </a> <a class='feed-reader-link' href='https://letconex.blogspot.com/feeds/411060663611008748/comments/default' target='_blank'> <img align='absmiddle' class='feed-icon' src='https://resources.blogblog.com/img/icon_feed12.png'/> Atom </a> </div> </div> <div class='bottom'></div> </div> <div class='subscribe' id='SW_READER_LIST_CLOSED_Subscribe1PER_POST' onclick='return(_SW_toggleReaderList(event, "Subscribe1PER_POST"));'> <div class='top'> <span class='inner'> <img class='subscribe-dropdown-arrow' src='https://resources.blogblog.com/img/widgets/arrow_dropdown.gif'/> <span onclick='return(_SW_toggleReaderList(event, "Subscribe1PER_POST"));'> <img align='absmiddle' alt='' border='0' class='feed-icon' src='https://resources.blogblog.com/img/icon_feed12.png'/> Comments </span> </span> </div> <div class='bottom'></div> </div> </div> <div style='clear:both'></div> </div> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML1'> <h2 class='title'>SmartCAT</h2> <div class='widget-content'> <a href="https://www.smartcat.ai/?utm_campaign=freelancer-referral-85ed2a44-fe20-4bbd-bf45-3120662940fc">Join SmartCAT as LSP or customer and enjoy the benefits of an online translation platform</a> </div> <div class='clear'></div> </div><div class='widget Wikipedia' data-version='1' id='Wikipedia1'> <h2 class='title'>Wikipedia</h2> <div class='wikipedia-search-main-container'> <form class='wikipedia-search-form' id='Wikipedia1_wikipedia-search-form' name='wikipedia'> <div class='wikipedia-searchtable'> <span> <a class='wikipedia-search-wiki-link' href='https://wikipedia.org/wiki/' target='_blank'> <img align='top' class='wikipedia-icon' src='https://resources.blogblog.com/img/widgets/icon_wikipedia_w.png'/> </a> </span> <span class='wikipedia-search-bar'> <span class='wikipedia-input-box'> <input class='wikipedia-search-input' id='Wikipedia1_wikipedia-search-input' type='text'/> </span> <span> <input class='wikipedia-search-button' type='submit'/> </span> </span> </div> </form> <div class='wikipedia-search-results-header' id='Wikipedia1_wikipedia-search-results-header'>Search results</div> <div class='wikipedia-search-results' id='Wikipedia1_wikipedia-search-results'></div> <nobr> <div dir='ltr' id='Wikipedia1_wikipedia-search-more'></div> </nobr> </div><br/> <div class='clear'></div> </div><div class='widget Translate' data-version='1' id='Translate1'> <h2 class='title'>Google Translate</h2> <div id='google_translate_element'></div> <script> function googleTranslateElementInit() { new google.translate.TranslateElement({ pageLanguage: 'en', autoDisplay: 'true', layout: google.translate.TranslateElement.InlineLayout.SIMPLE }, 'google_translate_element'); } </script> <script src='//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit'></script> <div class='clear'></div> </div><div class='widget AdSense' data-version='1' id='AdSense3'> <div class='widget-content'> <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6514552378461734&host=ca-host-pub-1556223355139109" crossorigin="anonymous"></script> <!-- letconex_sidebar_AdSense3_300x250_as --> <ins class="adsbygoogle" style="display:inline-block;width:300px;height:250px" data-ad-client="ca-pub-6514552378461734" data-ad-host="ca-host-pub-1556223355139109" data-ad-slot="3716091257"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> <div class='clear'></div> </div> </div></div> </div> <!-- spacer for skins that want sidebar and main to be the same height--> <div class='clear'> </div> </div> <!-- end content-wrapper --> <div id='footer-wrapper'> <div class='footer section' id='footer'><div class='widget AdSense' data-version='1' id='AdSense2'> <div class='widget-content'> <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6514552378461734&host=ca-host-pub-1556223355139109" crossorigin="anonymous"></script> <!-- letconex_footer_AdSense2_728x90_as --> <ins class="adsbygoogle" style="display:inline-block;width:728px;height:90px" data-ad-client="ca-pub-6514552378461734" data-ad-host="ca-host-pub-1556223355139109" data-ad-slot="3111524396"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> <div class='clear'></div> </div> </div><div class='widget HTML' data-version='1' id='HTML3'> <h2 class='title'>2performant</h2> <div class='widget-content'> <a href="https://event.2performant.com/events/click?ad_type=quicklink&aff_code=e54a66a1c&unique=0a8a2c4d9&redirect_to=https%253A//www.litera.ro/" target="_blank" rel="nofollow"><img src="https://img.2performant.com/system/paperclip/banner_pictures/pics/149144/original/149144.jpg" alt="litera.ro " title="litera.ro " border="0" height="90px" width="728px" /></a> </div> <div class='clear'></div> </div></div> </div> </div></div> <!-- end outer-wrapper --> <script type='text/javascript'> var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); </script> <script type='text/javascript'> try{ var pageTracker = _gat._getTracker("UA-17023497-2"); pageTracker._trackPageview(); } catch(err) {}</script> <script type="text/javascript" src="https://www.blogger.com/static/v1/widgets/2087407620-widgets.js"></script> <script type='text/javascript'> window['__wavt'] = 'AOuZoY6jquGTay4Z8WOPWUJaFX30pezNag:1711637322412';_WidgetManager._Init('//www.blogger.com/rearrange?blogID\x3d494411124526204630','//letconex.blogspot.com/2010/05/linux-short-tips.html','494411124526204630'); _WidgetManager._SetDataContext([{'name': 'blog', 'data': {'blogId': '494411124526204630', 'title': 'Compiled blog', 'url': 'https://letconex.blogspot.com/2010/05/linux-short-tips.html', 'canonicalUrl': 'https://letconex.blogspot.com/2010/05/linux-short-tips.html', 'homepageUrl': 'https://letconex.blogspot.com/', 'searchUrl': 'https://letconex.blogspot.com/search', 'canonicalHomepageUrl': 'https://letconex.blogspot.com/', 'blogspotFaviconUrl': 'https://letconex.blogspot.com/favicon.ico', 'bloggerUrl': 'https://www.blogger.com', 'hasCustomDomain': false, 'httpsEnabled': true, 'enabledCommentProfileImages': true, 'gPlusViewType': 'FILTERED_POSTMOD', 'adultContent': false, 'analyticsAccountNumber': 'G-7LN3WLKZMG', 'analytics4': true, 'encoding': 'UTF-8', 'locale': 'en', 'localeUnderscoreDelimited': 'en', 'languageDirection': 'ltr', 'isPrivate': false, 'isMobile': false, 'isMobileRequest': false, 'mobileClass': '', 'isPrivateBlog': false, 'isDynamicViewsAvailable': true, 'feedLinks': '\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Compiled blog - Atom\x22 href\x3d\x22https://letconex.blogspot.com/feeds/posts/default\x22 /\x3e\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/rss+xml\x22 title\x3d\x22Compiled blog - RSS\x22 href\x3d\x22https://letconex.blogspot.com/feeds/posts/default?alt\x3drss\x22 /\x3e\n\x3clink rel\x3d\x22service.post\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Compiled blog - Atom\x22 href\x3d\x22https://www.blogger.com/feeds/494411124526204630/posts/default\x22 /\x3e\n\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Compiled blog - Atom\x22 href\x3d\x22https://letconex.blogspot.com/feeds/411060663611008748/comments/default\x22 /\x3e\n', 'meTag': '', 'adsenseClientId': 'ca-pub-6514552378461734', 'adsenseHostId': 'ca-host-pub-1556223355139109', 'adsenseHasAds': true, 'adsenseAutoAds': true, 'boqCommentIframeForm': true, 'loginRedirectParam': '', 'view': '', 'dynamicViewsCommentsSrc': '//www.blogblog.com/dynamicviews/4224c15c4e7c9321/js/comments.js', 'dynamicViewsScriptSrc': '//www.blogblog.com/dynamicviews/9058130ec67b7088', 'plusOneApiSrc': 'https://apis.google.com/js/platform.js', 'disableGComments': true, 'interstitialAccepted': false, 'sharing': {'platforms': [{'name': 'Get link', 'key': 'link', 'shareMessage': 'Get link', 'target': ''}, {'name': 'Facebook', 'key': 'facebook', 'shareMessage': 'Share to Facebook', 'target': 'facebook'}, {'name': 'BlogThis!', 'key': 'blogThis', 'shareMessage': 'BlogThis!', 'target': 'blog'}, {'name': 'Twitter', 'key': 'twitter', 'shareMessage': 'Share to Twitter', 'target': 'twitter'}, {'name': 'Pinterest', 'key': 'pinterest', 'shareMessage': 'Share to Pinterest', 'target': 'pinterest'}, {'name': 'Email', 'key': 'email', 'shareMessage': 'Email', 'target': 'email'}], 'disableGooglePlus': true, 'googlePlusShareButtonWidth': 0, 'googlePlusBootstrap': '\x3cscript type\x3d\x22text/javascript\x22\x3ewindow.___gcfg \x3d {\x27lang\x27: \x27en\x27};\x3c/script\x3e'}, 'hasCustomJumpLinkMessage': false, 'jumpLinkMessage': 'Read more', 'pageType': 'item', 'postId': '411060663611008748', 'pageName': 'Linux Short Tips', 'pageTitle': 'Compiled blog: Linux Short Tips'}}, {'name': 'features', 'data': {}}, {'name': 'messages', 'data': {'edit': 'Edit', 'linkCopiedToClipboard': 'Link copied to clipboard!', 'ok': 'Ok', 'postLink': 'Post Link'}}, {'name': 'template', 'data': {'name': 'custom', 'localizedName': 'Custom', 'isResponsive': false, 'isAlternateRendering': false, 'isCustom': true}}, {'name': 'view', 'data': {'classic': {'name': 'classic', 'url': '?view\x3dclassic'}, 'flipcard': {'name': 'flipcard', 'url': '?view\x3dflipcard'}, 'magazine': {'name': 'magazine', 'url': '?view\x3dmagazine'}, 'mosaic': {'name': 'mosaic', 'url': '?view\x3dmosaic'}, 'sidebar': {'name': 'sidebar', 'url': '?view\x3dsidebar'}, 'snapshot': {'name': 'snapshot', 'url': '?view\x3dsnapshot'}, 'timeslide': {'name': 'timeslide', 'url': '?view\x3dtimeslide'}, 'isMobile': false, 'title': 'Linux Short Tips', 'description': ' 1. Avoid out of the session or close the terminal with the command Ctrl+D set -o \tignoreeof Enable Ctrl+D \t set +o ignoreeof Disable Ctrl...', 'url': 'https://letconex.blogspot.com/2010/05/linux-short-tips.html', 'type': 'item', 'isSingleItem': true, 'isMultipleItems': false, 'isError': false, 'isPage': false, 'isPost': true, 'isHomepage': false, 'isArchive': false, 'isLabelSearch': false, 'postId': 411060663611008748}}]); _WidgetManager._RegisterWidget('_NavbarView', new _WidgetInfo('Navbar1', 'navbar', document.getElementById('Navbar1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HeaderView', new _WidgetInfo('Header1', 'header', document.getElementById('Header1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_PageListView', new _WidgetInfo('PageList1', 'crosscol', document.getElementById('PageList1'), {'title': 'Pages', 'links': [{'isCurrentPage': false, 'href': 'https://letconex.blogspot.com/', 'title': 'Home'}, {'isCurrentPage': false, 'href': 'https://letconex.blogspot.com/p/about.html', 'id': '1748204341180475254', 'title': 'About me'}, {'isCurrentPage': false, 'href': 'https://letconex.blogspot.com/p/uber-mich.html', 'id': '5652183680295561001', 'title': '\xdcber mich'}, {'isCurrentPage': false, 'href': 'https://letconex.blogspot.com/p/despre-mine.html', 'id': '2962148733685534690', 'title': 'Despre mine'}], 'mobile': false, 'showPlaceholder': true, 'hasCurrentPage': false}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogView', new _WidgetInfo('Blog1', 'main', document.getElementById('Blog1'), {'cmtInteractionsEnabled': false, 'lightboxEnabled': true, 'lightboxModuleUrl': 'https://www.blogger.com/static/v1/jsbin/1865175624-lbx.js', 'lightboxCssUrl': 'https://www.blogger.com/static/v1/v-css/3268905543-lightbox_bundle.css'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML5', 'sidebar', document.getElementById('HTML5'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_AdSenseView', new _WidgetInfo('AdSense1', 'sidebar', document.getElementById('AdSense1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogSearchView', new _WidgetInfo('BlogSearch1', 'sidebar', document.getElementById('BlogSearch1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML2', 'sidebar', document.getElementById('HTML2'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_ProfileView', new _WidgetInfo('Profile1', 'sidebar', document.getElementById('Profile1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList1', 'sidebar', document.getElementById('LinkList1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogArchiveView', new _WidgetInfo('BlogArchive1', 'sidebar', document.getElementById('BlogArchive1'), {'languageDirection': 'ltr', 'loadingMessage': 'Loading\x26hellip;'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LabelView', new _WidgetInfo('Label1', 'sidebar', document.getElementById('Label1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML4', 'sidebar', document.getElementById('HTML4'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_FeedView', new _WidgetInfo('Feed1', 'sidebar', document.getElementById('Feed1'), {'title': 'ProZ.com Jobs', 'showItemDate': false, 'showItemAuthor': false, 'feedUrl': 'https://www.proz.com/rss.php?id\x3d572217\x26auth\x3d27237aa4c22945db0e21f16a369e8783\x26channel\x3djobs', 'numItemsShow': 5, 'loadingMsg': 'Loading...', 'openLinksInNewWindow': false, 'useFeedWidgetServ': 'true'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_FeedView', new _WidgetInfo('Feed3', 'sidebar', document.getElementById('Feed3'), {'title': 'TranslatorsCafe.com: Recent Translation Jobs', 'showItemDate': false, 'showItemAuthor': false, 'feedUrl': 'https://www.translatorscafe.com/tcUtils/EN/jobs/rss.aspx', 'numItemsShow': 5, 'loadingMsg': 'Loading...', 'openLinksInNewWindow': false, 'useFeedWidgetServ': 'true'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_FeedView', new _WidgetInfo('Feed2', 'sidebar', document.getElementById('Feed2'), {'title': 'TranslatorsTown.com', 'showItemDate': false, 'showItemAuthor': false, 'feedUrl': 'http://feeds.feedburner.com/translatorstown/translation-jobs/', 'numItemsShow': 5, 'loadingMsg': 'Loading...', 'openLinksInNewWindow': false, 'useFeedWidgetServ': 'true'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_StatsView', new _WidgetInfo('Stats1', 'sidebar', document.getElementById('Stats1'), {'title': 'Total Pageviews', 'showGraphicalCounter': false, 'showAnimatedCounter': false, 'showSparkline': true, 'statsUrl': '//letconex.blogspot.com/b/stats?style\x3dBLACK_TRANSPARENT\x26timeRange\x3dALL_TIME\x26token\x3dAPq4FmA34K0aBlG7j9qjJJxA2kjWKscfaVj6_cy3ZVPvqSH4KcWBKCzYPWQW_O4HZLDGoi2VtEx24B_Rl7A1G5HRqAOgercCXg'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_PopularPostsView', new _WidgetInfo('PopularPosts1', 'sidebar', document.getElementById('PopularPosts1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_SubscribeView', new _WidgetInfo('Subscribe1', 'sidebar', document.getElementById('Subscribe1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML1', 'sidebar', document.getElementById('HTML1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_WikipediaView', new _WidgetInfo('Wikipedia1', 'sidebar', document.getElementById('Wikipedia1'), {'title': 'Wikipedia', 'language': 'en', 'noResultsFoundMsg': 'No results found.', 'enterTextMsg': 'Please enter text to search.', 'moreMsg': 'More \xbb', 'searchResultsMsg': 'Search results', 'fetchingErrorMsg': 'An error occurred. Please try again.'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_TranslateView', new _WidgetInfo('Translate1', 'sidebar', document.getElementById('Translate1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_AdSenseView', new _WidgetInfo('AdSense3', 'sidebar', document.getElementById('AdSense3'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_AdSenseView', new _WidgetInfo('AdSense2', 'footer', document.getElementById('AdSense2'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML3', 'footer', document.getElementById('HTML3'), {}, 'displayModeFull')); </script> </body> </html>