<?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: ShermeenKiran</title>
    <description>The latest articles on DEV Community by ShermeenKiran (@shermeenkiran).</description>
    <link>https://dev.to/shermeenkiran</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%2F170878%2F63c330a8-ce03-4bec-8cc5-3c89e768d873.jpeg</url>
      <title>DEV Community: ShermeenKiran</title>
      <link>https://dev.to/shermeenkiran</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/shermeenkiran"/>
    <language>en</language>
    <item>
      <title>From Can I code To helping in Code!</title>
      <dc:creator>ShermeenKiran</dc:creator>
      <pubDate>Mon, 08 Mar 2021 08:05:00 +0000</pubDate>
      <link>https://dev.to/shermeenkiran/from-can-i-code-to-helping-in-code-39o</link>
      <guid>https://dev.to/shermeenkiran/from-can-i-code-to-helping-in-code-39o</guid>
      <description>&lt;p&gt;As of International women day I want to tribute every woman writing code. Every female programmer participating. I want to appreciate every women fighting social , psychological barriers and continue moving :) &lt;/p&gt;

&lt;p&gt;Little Story:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;I was high school graduate with Biology Major.&lt;/li&gt;
&lt;li&gt;Did my graduation at Business School. &lt;/li&gt;
&lt;li&gt;Registered Information Technology at University (was actually an accident while applying)&lt;/li&gt;
&lt;li&gt;5 years of Experienced Software Engineer have coded in java , React js , Native , Umbraco , Hubspot. &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Stepping into career as Programmer was a #Challange. Encountered a lot of questions #womancantcode #womancannotlastincode #choseeasyprofession #womancantdealit &lt;/p&gt;

&lt;p&gt;late feedbacks , critical push backs but The light inside was reflecting this all in a rainbow!!&lt;/p&gt;

&lt;p&gt;I give Bravo to All woman coding regardless of hurdles , judgments. &lt;/p&gt;

&lt;p&gt;You are stars should code , Manage , Lead and Participate :) &lt;/p&gt;

&lt;h1&gt;
  
  
  HappyWomen'sDay
&lt;/h1&gt;

</description>
      <category>womenintech</category>
      <category>career</category>
      <category>codenewbie</category>
      <category>beautyofcode</category>
    </item>
    <item>
      <title>Answer: Big Query filtering null rows of Custom query creating table</title>
      <dc:creator>ShermeenKiran</dc:creator>
      <pubDate>Fri, 06 Dec 2019 07:12:56 +0000</pubDate>
      <link>https://dev.to/shermeenkiran/answer-big-query-filtering-null-rows-of-custom-query-creating-table-29ah</link>
      <guid>https://dev.to/shermeenkiran/answer-big-query-filtering-null-rows-of-custom-query-creating-table-29ah</guid>
      <description>&lt;div class="ltag__stackexchange--container"&gt;
  &lt;div class="ltag__stackexchange--title-container"&gt;
    
      &lt;div class="ltag__stackexchange--title"&gt;
        &lt;h1&gt;
          &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--7Gn-iPj_--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/stackoverflow-logo-b42691ae545e4810b105ee957979a853a696085e67e43ee14c5699cf3e890fb4.svg" alt=""&gt;
            &lt;a href="https://stackoverflow.com/questions/59170961/big-query-filtering-null-rows-of-custom-query-creating-table/59180383#59180383" rel="noopener noreferrer"&gt;
              &lt;span class="title-flare"&gt;answer&lt;/span&gt; re: Big Query filtering null rows of Custom query creating table
            &lt;/a&gt;
        &lt;/h1&gt;
        &lt;div class="ltag__stackexchange--post-metadata"&gt;
          &lt;span&gt;Dec  4 '19&lt;/span&gt;
        &lt;/div&gt;
      &lt;/div&gt;
      &lt;a class="ltag__stackexchange--score-container" href="https://stackoverflow.com/questions/59170961/big-query-filtering-null-rows-of-custom-query-creating-table/59180383#59180383" rel="noopener noreferrer"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Y9mJpuJP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/stackexchange-arrow-up-eff2e2849e67d156181d258e38802c0b57fa011f74164a7f97675ca3b6ab756b.svg" alt=""&gt;
        &lt;div class="ltag__stackexchange--score-number"&gt;
          1
        &lt;/div&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--wif5Zq3z--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/stackexchange-arrow-down-4349fac0dd932d284fab7e4dd9846f19a3710558efde0d2dfd05897f3eeb9aba.svg" alt=""&gt;
      &lt;/a&gt;
    
  &lt;/div&gt;
  &lt;div class="ltag__stackexchange--body"&gt;
    
&lt;p&gt;Below is for BigQuery Standard SQL   &lt;/p&gt;
&lt;pre&gt;&lt;code&gt;#standardSQL
SELECT * FROM (
  SELECT 
    (SELECT x.value 
      FROM UNNEST(user_properties) x 
      WHERE x.key='restaurantName' 
      AND x.value IS NOT NULL
    ).string_value AS restaurantName ,
    (SELECT x.value 
      FROM UNNEST(user_properties) x 
      WHERE x.key='restaurantId' 
      AND x.value IS NOT NULL
    ).string_value AS restaurantID , 
    (SELECT x.value 
      FROM UNNEST(user_properties) x 
      WHERE&lt;/code&gt;&lt;/pre&gt;…
    
  &lt;/div&gt;
  &lt;div class="ltag__stackexchange--btn--container"&gt;
    
      &lt;a href="https://stackoverflow.com/questions/59170961/big-query-filtering-null-rows-of-custom-query-creating-table/59180383#59180383" rel="noopener noreferrer"&gt;Open Full Answer&lt;/a&gt;
    
  &lt;/div&gt;
&lt;/div&gt;


</description>
    </item>
  </channel>
</rss>
