<?xml version="1.0" encoding="windows-1251"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Top software developers rating website, web development USA companies review, IT news in USA</title>
<link>http://schwern.org/</link>
<language>ru</language>
<description>Top software developers rating website, web development USA companies review, IT news in USA</description>
<generator>DataLife Engine</generator><item>
<title>Asp Net Development</title>
<guid isPermaLink="true">http://schwern.org/software-developing/12-asp-net-development.html</guid>
<link>http://schwern.org/software-developing/12-asp-net-development.html</link>
<description><![CDATA[The <b><a href="http://www.iflexion.com/capabilities/dotnet_development.php" target="_blank">ASP.NET development</a></b> is the important part of the IT work. Every time a user makes his visits to the application of any kind, the browser that is currently in use sends a request to the needed website.]]></description>
<category><![CDATA[Software developing]]></category>
<dc:creator>admin</dc:creator>
<pubDate>Tue, 12 Apr 2011 04:16:13 -0500</pubDate>
</item><item>
<title>Benefits of Enterprise Content Management</title>
<guid isPermaLink="true">http://schwern.org/software-developing/10-benefits-of-enterprise-content-management.html</guid>
<link>http://schwern.org/software-developing/10-benefits-of-enterprise-content-management.html</link>
<description><![CDATA[<b><a href="http://www.itransition.com/solutions/enterprise-content-management/" target="_blank">Enterprise Content Management</a></b> is a system aimed at providing feasible and cost efficient solutions to the enterprises to keep up with the strict competition of the modern day industry. Enterprise content management systems are used in the felid of information technology especially where the customer’s focus is to attain highest possible form of services from the enterprise. In such a case, the competition is huge and to keep in line with such a competitive environment everything the enterprise requires should be perfect and up-to-date. Cost is no doubt an important factor in deciding the type of enterprise content management system to be incorporated; still the appropriateness of the system should also be given the same amount of significance.]]></description>
<category><![CDATA[Software developing]]></category>
<dc:creator>admin</dc:creator>
<pubDate>Thu, 03 Mar 2011 03:22:08 -0600</pubDate>
</item><item>
<title>Which scripting language?</title>
<guid isPermaLink="true">http://schwern.org/other/9-which-scripting-language.html</guid>
<link>http://schwern.org/other/9-which-scripting-language.html</link>
<description><![CDATA[Recently I had a problem at hand - I had to parse through a huge text log to parse through mpeg section filter data, to search for lost sections. Since this problem did not occur every test cycle, I had to generate the log again and again and parse through it each time. Obviously, the easiest way was to write a program to do this parsing job.<br /><br />I know good C/C++, and little bit of python. Although I am not an expert at python, I thought using a scripting language would be much easier here, and I was not wrong. Here’s the code:]]></description>
<category><![CDATA[Other]]></category>
<dc:creator>admin</dc:creator>
<pubDate>Fri, 05 Nov 2010 07:30:51 -0500</pubDate>
</item><item>
<title>Commands for dealing with branching</title>
<guid isPermaLink="true">http://schwern.org/programming-tutorials/8-commands-for-dealing-with-branching.html</guid>
<link>http://schwern.org/programming-tutorials/8-commands-for-dealing-with-branching.html</link>
<description><![CDATA[These commands are used to deal with tagging and branching in SVN:<br />$ cd /path/to/project && svn copy trunk branches/mybranch-N && svn commit -m 'Created new branch'<br />$ cd /path/to/project/branches/mybranch-N]]></description>
<category><![CDATA[Programming Tutorials]]></category>
<dc:creator>admin</dc:creator>
<pubDate>Fri, 29 Oct 2010 08:31:02 -0500</pubDate>
</item><item>
<title>Add Line Numbers</title>
<guid isPermaLink="true">http://schwern.org/programming-tutorials/7-add-line-numbers.html</guid>
<link>http://schwern.org/programming-tutorials/7-add-line-numbers.html</link>
<description><![CDATA[Add line numbers to your source code with expand and some quick perl:<br />expand /etc/motd | perl -pe 's/^/\t=$.=\t/'<br />]]></description>
<category><![CDATA[Programming Tutorials]]></category>
<dc:creator>admin</dc:creator>
<pubDate>Fri, 29 Oct 2010 08:30:09 -0500</pubDate>
</item><item>
<title>Adding Users with Passwords</title>
<guid isPermaLink="true">http://schwern.org/programming-tutorials/6-adding-users-with-passwords.html</guid>
<link>http://schwern.org/programming-tutorials/6-adding-users-with-passwords.html</link>
<description><![CDATA[BSD is a little paranoid about where your passwords come from, so they'll insist on getting it from a stream. Here's an example:<br />(edit the file '/tmp/pass' and deposit the password there)            <br />% su root -c sh<br />Password:<br /># pw useradd -n test -c "Test User" -m -h 3 3< /tmp/pass<br /># grep test /etc/master.passwd<br />test:$1$T2tu0BET$UGPrNB1FavzjlzhTwUWRN.:1002:1002::0:0:Test User:/home/test:/bin/sh<br /># exit<br />% su test<br />Password: [typed "foobar" here...]<br />$ exit<br />]]></description>
<category><![CDATA[Programming Tutorials]]></category>
<dc:creator>admin</dc:creator>
<pubDate>Fri, 29 Oct 2010 08:28:22 -0500</pubDate>
</item><item>
<title>Adding Services</title>
<guid isPermaLink="true">http://schwern.org/programming-tutorials/5-adding-services.html</guid>
<link>http://schwern.org/programming-tutorials/5-adding-services.html</link>
<description><![CDATA[To add a service to boot automatically on startup, do the following:<br /># chkconfig --level 345  on]]></description>
<category><![CDATA[Programming Tutorials]]></category>
<dc:creator>admin</dc:creator>
<pubDate>Fri, 29 Oct 2010 08:26:56 -0500</pubDate>
</item><item>
<title>Adding a Database and a User</title>
<guid isPermaLink="true">http://schwern.org/programming-tutorials/4-adding-a-database-and-a-user.html</guid>
<link>http://schwern.org/programming-tutorials/4-adding-a-database-and-a-user.html</link>
<description><![CDATA[To create a Postgres user sam and a database samdb that is owned by the sam user:<br />$ su - postgres<br />$ createuser -P -A -D sam<br />$ createdb -O sam samdb<br />(Change the -A, and -D options to affect the new user's abilities.)]]></description>
<category><![CDATA[Programming Tutorials]]></category>
<dc:creator>admin</dc:creator>
<pubDate>Fri, 29 Oct 2010 08:26:19 -0500</pubDate>
</item><item>
<title>Add a Newline to the End of a File</title>
<guid isPermaLink="true">http://schwern.org/programming-tutorials/3-add-a-newline-to-the-end-of-a-file.html</guid>
<link>http://schwern.org/programming-tutorials/3-add-a-newline-to-the-end-of-a-file.html</link>
<description><![CDATA[Use sed to add a newline to the end of a file (this will perform an in-place replacement and create a backup file, MYFILE.bak):<br />$ sed -i.bak '$G' MYFILE<br />Some programs, such as Emacs, will omit the trailing newline from a file unless configured to add one. Emacs can be configured to add a newline automatically.]]></description>
<category><![CDATA[Programming Tutorials]]></category>
<dc:creator>admin</dc:creator>
<pubDate>Fri, 29 Oct 2010 08:25:42 -0500</pubDate>
</item><item>
<title>Merrick Graphics Inc.</title>
<guid isPermaLink="true">http://schwern.org/companies-news/2-merrick-graphics-inc.html</guid>
<link>http://schwern.org/companies-news/2-merrick-graphics-inc.html</link>
<description><![CDATA[Merrick Graphics' designers work directly with internet programmers, scanner operators, pre-press personnel and press room staff. They work on both Mac and PC platforms. This versatility allows the client all the latitude to produce projects from website through print materials and work with only one visual concept and content.]]></description>
<category><![CDATA[Companies news]]></category>
<dc:creator>admin</dc:creator>
<pubDate>Fri, 29 Oct 2010 08:22:25 -0500</pubDate>
</item></channel></rss>
