<?xml version='1.0'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:atom="http://www.w3.org/2005/Atom" >
<channel>
	<title><![CDATA[BOL: Related items]]></title>
	<link>https://bioinformaticsonline.com/related/36427?</link>
	<atom:link href="https://bioinformaticsonline.com/related/36427?" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/36413/insert-data-through-ajax-into-mysql-database</guid>
	<pubDate>Wed, 25 Apr 2018 12:43:51 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/36413/insert-data-through-ajax-into-mysql-database</link>
	<title><![CDATA[Insert data through ajax into MySql database.]]></title>
	<description><![CDATA[<p>Insert data through ajax into MySql database.1. Create form.php and copy below code into file.</p><blockquote><p>&lt;script type="text/javascript"&gt;<br /> <br /> $(document).ready(function(){<br /> $('#submit').click(function(){<br /> var name= $('#name').val();<br /> var email= $('#email').val();<br /> var sdatatring='name1='+ name +'&amp;email1='+ email;<br /> $.ajax({<br /> type:"POST",<br /> url:"insert.php",<br /> data:sdatatring,<br /> cache: false,<br /> success:function(result){<br /> alert(result);</p><p>}});</p><p>});</p><p>});<br />&lt;/script&gt;<br /> &lt;form method="post" action="" name="frm"&gt;<br /> Name:&lt;input type="text" name="name" id="name" value=""&gt;&lt;br&gt;<br /> Email:&lt;input type="text" name="email" id="email" value=""&gt;&lt;br&gt;<br /> &lt;input type="button" name="submt" id="submit" value="submit" /&gt;<br /> <br /> &lt;/form&gt;</p><p>2. Create insert.php and copy below code into file.<br /> &lt;?php<br />print_r($_POST);<br />$con=mysql_connect("localhost","root","");<br />mysql_select_db('dbname');<br />mysql_query('insert into tablename('colname')values(value)');<br /> ?&gt;<br />Note:You need to include jQuery library in form.php.</p></blockquote><p>More at</p><p>https://phpajaxhtml.blogspot.in/2018/03/insert-data-through-ajax-into-mysql.html</p>]]></description>
	<dc:creator>Ram Yash Pal</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/36411/create-custom-widget-area-in-wordpress</guid>
	<pubDate>Wed, 25 Apr 2018 12:35:53 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/36411/create-custom-widget-area-in-wordpress</link>
	<title><![CDATA[Create custom widget area in wordpress.]]></title>
	<description><![CDATA[<p>https://phpajaxhtml.blogspot.in/2018/04/create-custom-widget-in-wordpress.html</p>]]></description>
	<dc:creator>Ram Yash Pal</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/36425/check-product-if-already-exist-in-to-cart-using-woocommerce</guid>
	<pubDate>Sun, 29 Apr 2018 00:27:22 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/36425/check-product-if-already-exist-in-to-cart-using-woocommerce</link>
	<title><![CDATA[Check product if already exist in to cart using woocommerce.]]></title>
	<description><![CDATA[<p>Check product if already exist in to cart using woocommerce.<br /><br />add_action( 'woocommerce_add_to_cart_validation', 'check_product_added_to_cart', 10, 3 );<br /><br />function check_product_added_to_cart( $passed, $product_id, $quantity) {<br /><br />foreach (WC()-&gt;cart-&gt;get_cart() as $cart_key =&gt; $cart_item ){<br />// if products are already in cart:<br />if( $cart_item['product_id'] == $product_id ) {<br />// Set the verification variable to "not passed" (false)<br />$passed = false;<br />// (Optionally) Displays a notice if product(s) are already in cart<br />wc_add_notice( '&lt;strong&gt;' . $btn['label'] . '&lt;/strong&gt; ' . __( 'This product is already in your cart.', 'woocommerce' ), 'error' );<br />// Stop the function returning "false", so the products will not be added again<br />return $passed;<br />}<br />}<br />return $passed;<br />}</p><p>More at https://phpajaxhtml.blogspot.in/2017/11/check-product-if-already-exist-in-to.html</p>]]></description>
	<dc:creator>Ram Yash Pal</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/37586/julia-programming-language-a-python-and-r-rival</guid>
	<pubDate>Sat, 25 Aug 2018 04:46:39 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/37586/julia-programming-language-a-python-and-r-rival</link>
	<title><![CDATA[Julia Programming Language, a Python and R rival]]></title>
	<description><![CDATA[<p>Big data has grown to become one of the most lucrative fields. In fact, data scientists are some of the most sought people. They are usually hired to analyze, control and parse large chunks of data. Implementing these actions using traditional techniques is not a walk in the park. This is why most data scientists prefer using programming languages such as R and Python. However, there is one more programming language that can do the job. That is Julia programming language.</p><p>What Is Julia Language?</p><p>Julia is a programming language that came into the limelight in 2012. It is a general-purpose programming language that was designed for solving scientific computations. Julia was meant to be an alternative to Python, R and other programming languages that were mainly used for manipulating data. This is because it has numerous features that can minimize the complexities of numerical computations.&nbsp;</p><p>Julia optimizes on the best features of Python and R while at the same time overlooks their weaknesses. This explains why it is viewed as an alternative to these programming languages. For instance, it utilizes the readability and simplicity of Python then performs faster.</p><p>Julia is the most preferred programming language for data scientists and mathematicians. This is because its core features are similar to the ones that are used on most data software. Also, the language is ideal for these two subjects because its syntax is similar to the standard mathematical formulas.</p><p>Key Features Of Julia Language<br />Uses JIT Compilation<br />Parallelism<br />Dynamic Typing<br />Simple Syntax<br />Allows Metaprogramming<br />Accessible to Libraries<br />-1-Array Indexing</p><p>Julia Vs Python And R Programming Languages<br />1. Speed<br />Julia is faster than both Python and R. This is a very critical aspect that is given special attention in the big data programming. The high speed of Julia is because of JIT compilers. You will need to install external libraries on Python to achieve similar speed.</p><p>2. Syntax<br />Julia has a math-friendly syntax. The syntax of this programming language is similar to the mathematical formulas hence can be used to perform mathematical and scientific computations. This syntax makes it easier to learn than Python.</p><p>3. Parallelism<br />Although both Python and R use parallelism, Julia uses a top-level parallelism. Julia allows the processor to perform to the optimum level than what Python and R can achieve.</p><p>4. Versatility<br />Julia programming language is more versatile than Python and R. It allows a programmer to move from different codes and functions with ease.</p><p>The only area that Python and R are superior to Julia is in terms of community. Given that Julia is a new programming language, it has a small community as compared to others which have been around for years.</p><p>In overall Julia programming language is a better alternative that you can use to handle Big data projects. Despite having a small community, it is one of those programming languages that you can easily learn.</p>]]></description>
	<dc:creator>Radha Agarkar</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/35148/mojolicious-a-next-generation-web-framework-for-the-perl-programming-language</guid>
	<pubDate>Fri, 12 Jan 2018 16:48:10 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/35148/mojolicious-a-next-generation-web-framework-for-the-perl-programming-language</link>
	<title><![CDATA[mojolicious: a next generation web framework for the Perl programming language.]]></title>
	<description><![CDATA[<p><span>Back in the early days of the web, many people learned Perl because of a wonderful Perl library called&nbsp;</span><a href="https://metacpan.org/module/CGI" target="_blank">CGI</a><span>. It was simple enough to get started without knowing much about the language and powerful enough to keep you going, learning by doing was much fun. While most of the techniques used are outdated now, the idea behind it is not. Mojolicious is a new endeavor to implement this idea using bleeding edge technologies.</span></p>
<h2>Features</h2>
<ul>
<li>An amazing&nbsp;<strong>real-time web framework</strong>, allowing you to easily grow single file prototypes into well-structured MVC web applications.
<ul>
<li>Powerful out of the box with RESTful routes, plugins, commands, Perl-ish templates, content negotiation, session management, form validation, testing framework, static file server, CGI/<a href="http://plackperl.org/" target="_blank">PSGI</a>&nbsp;detection, first class Unicode support and much more for you to discover.</li>
</ul>
</li>
<li>A powerful&nbsp;<strong>web development toolkit</strong>, that you can use for all kinds of applications, independently of the web framework.
<ul>
<li>Full stack HTTP and WebSocket client/server implementation with IPv6, TLS, SNI, IDNA, HTTP/SOCKS5 proxy, UNIX domain socket, Comet (long polling), Promises/A+, keep-alive, connection pooling, timeout, cookie, multipart and gzip compression support.</li>
<li>Built-in non-blocking I/O web server, supporting multiple event loops as well as optional pre-forking and hot deployment, perfect for building highly scalable web services.</li>
<li>JSON and HTML/XML parser with CSS selector support.</li>
</ul>
</li>
<li>Very clean, portable and object-oriented pure-Perl API with no hidden magic and no requirements besides Perl 5.24.0 (versions as old as 5.10.1 can be used too, but may require additional CPAN modules to be installed)</li>
<li>Fresh code based upon years of experience developing&nbsp;<a href="http://catalystframework.org/" target="_blank">Catalyst</a>, free and open source.</li>
<li>Hundreds of 3rd party&nbsp;<a href="https://metacpan.org/requires/distribution/Mojolicious">extensions</a>&nbsp;and high quality spin-off projects like the&nbsp;<a href="https://metacpan.org/pod/Minion">Minion</a>&nbsp;job queue.</li>
</ul>
<p>http://mojolicious.org/</p><p>Address of the bookmark: <a href="http://mojolicious.org/" rel="nofollow">http://mojolicious.org/</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/40724/the-raku-programming-language</guid>
	<pubDate>Tue, 28 Jan 2020 05:37:17 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/40724/the-raku-programming-language</link>
	<title><![CDATA[The Raku Programming Language]]></title>
	<description><![CDATA[<p><span>Raku is a member of the Perl family of programming languages. Formerly known as Perl 6, it was renamed in October 2019. Raku introduces elements of many modern and historical languages. Compatibility with Perl was not a goal, though a compatibility mode is part of the specification.</span><span>&nbsp;</span></p>
<p><span>More at&nbsp;<a href="https://www.raku.org/">https://www.raku.org/</a></span></p><p>Address of the bookmark: <a href="https://www.raku.org/" rel="nofollow">https://www.raku.org/</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/poll/view/14927/which-of-the-following-programming-language-is-best-for-a-bioinformatics-beginner</guid>
	<pubDate>Thu, 04 Sep 2014 07:51:16 -0500</pubDate>
	<link>https://bioinformaticsonline.com/poll/view/14927/which-of-the-following-programming-language-is-best-for-a-bioinformatics-beginner</link>
	<title><![CDATA[Which of the following programming language is best for a bioinformatics beginner?]]></title>
	<description><![CDATA[<p>I will be doing NGS in the course of my research work and I will like to learn a programming language which is compatible with most bioinformatics tools or software. I basically want to do de-novo assembly, map reads, align reads, and expression analysis. Recommendations welcomed. Which languages would you recommend to a student wishing to enter the world of bioinformatics?</p>]]></description>
	<dc:creator>Manisha Mishra</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/poll/view/15000/which-mathstatistics-programming-languageapplication-do-you-most-frequently-use-in-bioinformatics</guid>
	<pubDate>Thu, 04 Sep 2014 17:46:41 -0500</pubDate>
	<link>https://bioinformaticsonline.com/poll/view/15000/which-mathstatistics-programming-languageapplication-do-you-most-frequently-use-in-bioinformatics</link>
	<title><![CDATA[Which math/statistics programming language/application do you most frequently use in bioinformatics?]]></title>
	<description><![CDATA[<p>I'm doing a bit more statistical analysis on some bioinformatics things lately, and I'm curious if there are any programming languages that are particularly good for this NGS computation. What suggestions do you guys have? Are there any languages that have exceptionally good libraries?</p>]]></description>
	<dc:creator>John Parker</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/poll/view/34791/what-programming-language-do-you-hate-the-most</guid>
	<pubDate>Sat, 23 Dec 2017 03:46:49 -0600</pubDate>
	<link>https://bioinformaticsonline.com/poll/view/34791/what-programming-language-do-you-hate-the-most</link>
	<title><![CDATA[What programming language do you hate the most?]]></title>
	<description><![CDATA[<p>There are many programming languages, which one you dislike the most?</p>]]></description>
	<dc:creator>BioStar</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/view/459</guid>
	<pubDate>Thu, 11 Jul 2013 14:39:19 -0500</pubDate>
	<link>https://bioinformaticsonline.com/view/459</link>
	<title><![CDATA[Python vs Perl]]></title>
	<description><![CDATA[<p>Why bioinformatician still using Perl when Python is easy to code, good in ReXp and faster than perl?</p>]]></description>
	<dc:creator>Rahul Agarwal</dc:creator>
</item>

</channel>
</rss>