 
      
    | You are here | schadokar.dev | ||
| | | | | dusted.codes | |
| | | | | Building a secure note sharing service in Go | |
| | | | | infinitedigits.co | |
| | | | | A simple pattern to get started using websockets with Go. | |
| | | | | lanie.dev | |
| | | | | So you want to parse a form. You have your handler, and you're getting data passed in through the request. 1 2 3 4 5 package example func Login(w http.ResponseWriter, r *http.Request) { // hi (: } The next step is to parse the form on the request. 1 2 3 4 5 6 func Login(w http.ResponseWriter, r *http.Request) { var err error if err := r. | |
| | | | | www.ardanlabs.com | |
| | | Introduction I prefer to use relational (SQL) databases in general since they provide several features that are very useful when working with data. SQLite is a great choice since the database is a single file, which makes it easier to share data. Even though it's a single file, SQLite can handle up to 281 terabytes of data. SQLite also comes with a command line client called sqlite3 which is great for quick prototyping. | ||