<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Sushma Gangolu</title>
    <description>The latest articles on DEV Community by Sushma Gangolu (@sushmagangolu).</description>
    <link>https://dev.to/sushmagangolu</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F276498%2F1270e36b-691b-432c-ac37-002113a460e1.jpg</url>
      <title>DEV Community: Sushma Gangolu</title>
      <link>https://dev.to/sushmagangolu</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sushmagangolu"/>
    <language>en</language>
    <item>
      <title>Sushma Coded because it's her destiny...</title>
      <dc:creator>Sushma Gangolu</dc:creator>
      <pubDate>Mon, 09 Mar 2020 08:58:36 +0000</pubDate>
      <link>https://dev.to/sushmagangolu/sushma-coded-because-it-s-her-destiny-1o03</link>
      <guid>https://dev.to/sushmagangolu/sushma-coded-because-it-s-her-destiny-1o03</guid>
      <description>&lt;p&gt;I wanted to be a doctor when I was in school. Graduated in Electrical Engineering. &lt;/p&gt;

&lt;p&gt;With no job in the hand, no real-time experience and practically no knowledge of the outside world, I was looking for opportunities to work. &lt;/p&gt;

&lt;p&gt;That's when coding found me... when I had nothing. &lt;/p&gt;

&lt;p&gt;The coding community owned me and taught me how to code.&lt;/p&gt;

&lt;p&gt;I found tons of information about various technologies and different career paths through my fellow coders. I have learned everything I know referring to youtube videos, blogs, and Stack Overflow. They practically guided me in my career path. &lt;/p&gt;

&lt;p&gt;No one laughed at me when I asked doubts. No one looked down on me because I am a girl whether it is my workplace or any online community. &lt;/p&gt;

&lt;p&gt;I feel like It's my destiny to be a coder and I am honored to be in the coding community. &lt;/p&gt;

&lt;p&gt;And I would like to take this opportunity to thank all the coders &amp;amp; coding platforms who are spending many of their personal hours to create coding content and helping others to improve. &lt;/p&gt;

&lt;p&gt;You are the coolest guys on the earth. ✌&lt;/p&gt;

</description>
      <category>wecoded</category>
    </item>
    <item>
      <title>Hi, I'm Sushma Gangolu</title>
      <dc:creator>Sushma Gangolu</dc:creator>
      <pubDate>Wed, 19 Feb 2020 10:17:54 +0000</pubDate>
      <link>https://dev.to/sushmagangolu/hi-i-m-sushma-gangolu-29ja</link>
      <guid>https://dev.to/sushmagangolu/hi-i-m-sushma-gangolu-29ja</guid>
      <description>&lt;p&gt;I've been coding professionally for 5 years.&lt;/p&gt;

&lt;p&gt;I live in Hyderabad.&lt;/p&gt;

&lt;p&gt;I'm currently working as a Full Stack Developer.&lt;/p&gt;

&lt;p&gt;I mostly program in PHP, React along with HTML and Responsive design. &lt;/p&gt;

&lt;p&gt;I also work on GCP and Digital Ocean. &lt;/p&gt;

&lt;p&gt;I am currently learning more about cloud computing, Native React, and more.&lt;/p&gt;

&lt;p&gt;I plan to write about Server Installations and bug fixes. &lt;/p&gt;

&lt;p&gt;Hit me up on &lt;a href="https://www.linkedin.com/in/sushma-gangolu-8417b0165/" rel="noopener noreferrer"&gt;LinkedIn&lt;/a&gt;. &lt;/p&gt;

&lt;p&gt;Nice to meet you. :)&lt;/p&gt;

</description>
      <category>introduction</category>
    </item>
    <item>
      <title>PHPMyAdmin – count(): Parameter must be an array or an object that implements Countable</title>
      <dc:creator>Sushma Gangolu</dc:creator>
      <pubDate>Wed, 19 Feb 2020 07:09:13 +0000</pubDate>
      <link>https://dev.to/sushmagangolu/phpmyadmin-count-parameter-must-be-an-array-or-an-object-that-implements-countable-ndb</link>
      <guid>https://dev.to/sushmagangolu/phpmyadmin-count-parameter-must-be-an-array-or-an-object-that-implements-countable-ndb</guid>
      <description>&lt;p&gt;Edit file &lt;code&gt;/usr/share/phpmyadmin/libraries/sql.lib.php:&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;sudo nano /usr/share/phpmyadmin/libraries/sql.lib.php&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;On line 613 the count function always evaluates to true since there is no closing parenthesis after $analyzed_sql_results['select_expr']. Making the below replacements resolves this, then you will need to delete the last closing parenthesis on line 614, as it’s now an extra parenthesis.&lt;/p&gt;

&lt;p&gt;Replace:&lt;br&gt;
 &lt;code&gt;&lt;br&gt;
((empty($analyzed_sql_results['select_expr']))&lt;br&gt;
    || (count($analyzed_sql_results['select_expr'] == 1)&lt;br&gt;
        &amp;amp;&amp;amp; ($analyzed_sql_results['select_expr'][0] == '*')))&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;With:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;((empty($analyzed_sql_results['select_expr']))&lt;br&gt;
    || (count($analyzed_sql_results['select_expr']) == 1)&lt;br&gt;
        &amp;amp;&amp;amp; ($analyzed_sql_results['select_expr'][0] == '*'))&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Restart the server apache:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;sudo service apache2 restart&lt;/code&gt;&lt;/p&gt;

</description>
      <category>ubuntu</category>
      <category>php</category>
      <category>phpmyadmin</category>
    </item>
  </channel>
</rss>
