<?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: made suande</title>
    <description>The latest articles on DEV Community by made suande (@suandedev).</description>
    <link>https://dev.to/suandedev</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%2F936836%2F14d44442-3f80-43fe-b858-3de6a58d4568.jpeg</url>
      <title>DEV Community: made suande</title>
      <link>https://dev.to/suandedev</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/suandedev"/>
    <language>en</language>
    <item>
      <title>Read .CSV to get value</title>
      <dc:creator>made suande</dc:creator>
      <pubDate>Sun, 10 Dec 2023 11:11:09 +0000</pubDate>
      <link>https://dev.to/suandedev/read-csv-to-get-value-3pp1</link>
      <guid>https://dev.to/suandedev/read-csv-to-get-value-3pp1</guid>
      <description>&lt;p&gt;Read .CSV file by golang.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;package main

import (
    "bufio"
    "fmt"
    "log"
    "os"
    "strings"
)

func main() {
    f, err := os.Open("teksfile.csv")

    if err != nil {
        log.Fatal(err)
    }

    line_list := []string{}

    defer f.Close()
    scanner := bufio.NewScanner(f)
    i := 1
    for scanner.Scan() {
        if i == 1 {
            i = 0
            continue
        }
        line := scanner.Text()
        line_list = append(line_list, line)
    }
    if err := scanner.Err(); err != nil {
        log.Fatal(err)
    }
    for _, ln := range line_list {
        row := strings.Split(ln, ":")
        debit   := row[0]
        credit  := row[1]
        db_acct := row[2]
        cr_acct := row[3]
        date    := row[4]

        fmt.Println(debit)
        fmt.Println(credit)
        fmt.Println(db_acct)
        fmt.Println(cr_acct)
        fmt.Println(date)
    }
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Output:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;10
-10
12345678
12345679
20231210
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>go</category>
      <category>csv</category>
      <category>basic</category>
      <category>currency</category>
    </item>
    <item>
      <title>React Cat App</title>
      <dc:creator>made suande</dc:creator>
      <pubDate>Wed, 09 Nov 2022 04:10:04 +0000</pubDate>
      <link>https://dev.to/suandedev/react-cat-app-3cf</link>
      <guid>https://dev.to/suandedev/react-cat-app-3cf</guid>
      <description>&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--G7vIZtkt--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/fixho5e56b4e2owoam0a.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--G7vIZtkt--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/fixho5e56b4e2owoam0a.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>react</category>
      <category>webdev</category>
      <category>tailwindcss</category>
    </item>
    <item>
      <title>improve golang skill</title>
      <dc:creator>made suande</dc:creator>
      <pubDate>Thu, 03 Nov 2022 20:06:14 +0000</pubDate>
      <link>https://dev.to/suandedev/improve-golang-skill-19l5</link>
      <guid>https://dev.to/suandedev/improve-golang-skill-19l5</guid>
      <description>&lt;p&gt;hallo my name is made suande. to day i will improve my selft to create two-dimentional figure ui with golang language. check code to link bellow.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/suandedev/go-bangun-datar"&gt;https://github.com/suandedev/go-bangun-datar&lt;/a&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--ojVSvQjI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/y8qdx9rz0lk013uiss8e.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ojVSvQjI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/y8qdx9rz0lk013uiss8e.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>go</category>
      <category>webdev</category>
    </item>
    <item>
      <title>improve</title>
      <dc:creator>made suande</dc:creator>
      <pubDate>Tue, 01 Nov 2022 19:27:26 +0000</pubDate>
      <link>https://dev.to/suandedev/improve-44nd</link>
      <guid>https://dev.to/suandedev/improve-44nd</guid>
      <description>&lt;p&gt;mprove your self with all condition. in this case i create my instagram UI(User Interface). code is on my github. link below.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/suandedev/my-instagram-ui"&gt;https://github.com/suandedev/my-instagram-ui&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--ymHEZjo_--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/9gu5flp8yuvj1rsgd2f7.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ymHEZjo_--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/9gu5flp8yuvj1rsgd2f7.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>html</category>
      <category>css</category>
      <category>programming</category>
      <category>webdev</category>
    </item>
    <item>
      <title>reacct, vite and tailwindcss create register page.</title>
      <dc:creator>made suande</dc:creator>
      <pubDate>Sat, 22 Oct 2022 23:40:38 +0000</pubDate>
      <link>https://dev.to/suandedev/reacct-vite-and-tailwindcss-create-register-page-5cd7</link>
      <guid>https://dev.to/suandedev/reacct-vite-and-tailwindcss-create-register-page-5cd7</guid>
      <description>&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--LUe-Uh7Y--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/67ongf71udykvdgxq8ob.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--LUe-Uh7Y--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/67ongf71udykvdgxq8ob.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;bulid register page is fun by react. with create component and we can enjoy to call it any page. example in this case i create component button and call it on register page with diffrent value. &lt;/p&gt;

</description>
    </item>
    <item>
      <title>Learn Reactjs, Create Badge</title>
      <dc:creator>made suande</dc:creator>
      <pubDate>Sun, 09 Oct 2022 00:44:15 +0000</pubDate>
      <link>https://dev.to/suandedev/learn-reactjs-create-badge-46a7</link>
      <guid>https://dev.to/suandedev/learn-reactjs-create-badge-46a7</guid>
      <description>&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--GW5Mr-LZ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/q2vq62ulb7tiyqh9w6zm.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--GW5Mr-LZ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/q2vq62ulb7tiyqh9w6zm.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--yRs5Dr0O--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/a36d7tpjl3qb9g43scg3.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--yRs5Dr0O--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/a36d7tpjl3qb9g43scg3.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>react</category>
      <category>webdev</category>
      <category>beginners</category>
    </item>
    <item>
      <title>learn react, creat alert combile tailwindcss.</title>
      <dc:creator>made suande</dc:creator>
      <pubDate>Fri, 07 Oct 2022 12:07:46 +0000</pubDate>
      <link>https://dev.to/suandedev/learn-react-creat-alert-combile-tailwindcss-3fpk</link>
      <guid>https://dev.to/suandedev/learn-react-creat-alert-combile-tailwindcss-3fpk</guid>
      <description>&lt;p&gt;today,i continue my react template project to create alert. i use tailwindcss as styling. &lt;/p&gt;

</description>
      <category>javascript</category>
      <category>react</category>
      <category>programming</category>
    </item>
    <item>
      <title>my activity today is commit my react project to create template admin with tailwindcss.</title>
      <dc:creator>made suande</dc:creator>
      <pubDate>Tue, 04 Oct 2022 04:37:10 +0000</pubDate>
      <link>https://dev.to/suandedev/my-activity-today-is-commit-my-react-project-to-create-template-admin-with-tailwindcss-e1n</link>
      <guid>https://dev.to/suandedev/my-activity-today-is-commit-my-react-project-to-create-template-admin-with-tailwindcss-e1n</guid>
      <description></description>
      <category>react</category>
      <category>tailwindcss</category>
      <category>beginners</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
