Golang News http://golangnews.com Jobs, Code, Videos and News for Go hackers - everything about the go programming language Wed, 05 Apr 2023 18:04:00 +0000 Errors in golang 1 points posted by Ayeree https://www.golangprograms.com/errors-in-golang.html 4796 Wed, 05 Apr 2023 18:04:00 +0000 Golang HTTP Client Server Question Answer 1 points posted by Ayeree https://www.golangprograms.com/golang-http-client-server-examples.html 4790 Mon, 06 Mar 2023 05:54:00 +0000 Golang context package tutorial 1 points posted by Ayeree https://www.golangprograms.com/golang-context-package-tutorial.html 4787 Mon, 23 Jan 2023 16:02:00 +0000 Find quick solutions to common String problems Strings are a fundamental building block of programming. Go string is a sequence of variable-width characters where each character is represented by one or more bytes, normally using the UTF-8 encoding. You can find quick solutions to common string problems that arise during writing golang programs from this valuable resource. 1 points posted by Ayeree https://www.golangprograms.com/strings-in-golang.html 4772 Sat, 01 Oct 2022 07:31:00 +0000 Example of golang crud using mysql from scratch 9 points posted by Amit http://www.golangprograms.com/advance-programs/example-of-golang-crud-using-mysql-from-scratch.html 3087 Sun, 07 Jan 2018 12:27:00 +0000 Beginners Tutorial - Composite Data Type Struct 7 points posted by Amit http://www.golangprograms.com/go-language/struct.html 3102 Sun, 14 Jan 2018 10:01:00 +0000 Data structure and algorithms in Golang 7 points posted by Amit arora http://www.golangprograms.com/data-structure-and-algorithms.html 2653 Thu, 14 Sep 2017 16:37:00 +0000 Golang Functions, Anonymous, Closures and Higher Order Functions 6 points posted by Amit https://www.golangprograms.com/go-language/functions.html 4133 Tue, 17 Sep 2019 10:53:00 +0000 Maps tutorial for beginners 6 points posted by Amit http://www.golangprograms.com/go-language/golang-maps.html 3984 Sat, 25 May 2019 16:47:00 +0000 Gotchas in Golang 5 points posted by Amit arora https://www.golangprograms.com/go-programming-language.html 4417 Fri, 31 Jul 2020 08:04:00 +0000 Find DNS records of any domain programmatically #dns #net 5 points posted by Amit http://www.golangprograms.com/find-dns-records-programmatically.html 3699 Sun, 02 Dec 2018 05:29:00 +0000 Cryptography with an example of custom Cipher Algorithm 5 points posted by Ayeree http://www.golangprograms.com/cryptography/what-is-cryptography.html 3515 Sun, 19 Aug 2018 08:22:00 +0000 Golang and React JS - Hello World Example 5 points posted by Ayeree http://www.golangprograms.com/react-js/getting-started-with-react-and-hello-world-example.html 3462 Sun, 29 Jul 2018 07:46:00 +0000 50 Examples and Solutions from different packages of the standard library 5 points posted by Amit http://www.golangprograms.com/golang-package-examples.html 2831 Sun, 22 Oct 2017 16:23:00 +0000 Golang Examples and Solutions 5 points posted by Amit http://www.golangprograms.com 2802 Sun, 15 Oct 2017 16:26:00 +0000 The design philosophy of the Interface type in Golang 5 points posted by Ayeree http://www.golangprograms.com/golang/interface-type 2706 Wed, 27 Sep 2017 11:46:00 +0000 Converting and Checking Types 4 points posted by Amit https://www.golangprograms.com/go-language/integer-float-string-boolean.html 4074 Wed, 14 Aug 2019 12:31:00 +0000 Golang If....Else Statements - Basic tutorial 4 points posted by Amit http://www.golangprograms.com/golang-if-else-statements.html 3744 Tue, 25 Dec 2018 11:17:00 +0000 Golang Variables Tutorial 4 points posted by Amit http://www.golangprograms.com/go-language/variables.html 3726 Sun, 16 Dec 2018 16:19:00 +0000 Hashing and use of Hash Functions 4 points posted by Ayeree http://www.golangprograms.com/cryptography/what-is-hashing.html 3520 Sun, 26 Aug 2018 14:44:00 +0000 Variadic functions in Golang 4 points posted by Amit arora http://www.golangprograms.com/go-language/variadic-functions.html 3396 Fri, 22 Jun 2018 07:26:00 +0000 Arrays in Golang 4 points posted by Amit http://www.golangprograms.com/go-language/arrays.html 3044 Mon, 25 Dec 2017 12:37:00 +0000 Examples of Regular expressions in Golang 4 points posted by Amit http://www.golangprograms.com/regular-expressions.html 3028 Sun, 17 Dec 2017 06:40:00 +0000 70 Examples and Solutions from various Packages 4 points posted by Gopher587 http://www.golangprograms.com/golang-package-examples.html?p=1 2928 Tue, 14 Nov 2017 04:44:00 +0000 Using LZW data compression in Go 4 points posted by Amit http://www.golangprograms.com/golang-program-for-implementation-lzw-data-compression-and-uncompression.html 2728 Sat, 30 Sep 2017 12:21:00 +0000 Goroutine and Channel Examples 3 points posted by Amit arora https://www.golangprograms.com/goroutines-and-channels-example.html 4622 Mon, 30 Aug 2021 06:43:00 +0000 Reflection in golang <p>Reflection in Go is a form of metaprogramming. Reflection allows us to examine types at runtime. It also provides the ability to examine, modify, and create variables, functions, and structs at runtime. The Go <a href="https://pkg.go.dev/reflect" target="_blank" style="box-sizing: inherit; color: inherit;">reflect package</a>&nbsp;gives you features to inspect and manipulate an object at runtime. Reflection is an extremely powerful tool for developers and extends the horizon of any programming language. Types, Kinds and Values are three important pieces of reflection that are used in order to find out information.</p> 3 points posted by Amit arora https://www.golangprograms.com/reflection-in-golang.html 4614 Thu, 12 Aug 2021 07:55:00 +0000 Goroutines and Waitgroup with Examples 3 points posted by Amit https://www.golangprograms.com/goroutines.html 4143 Sat, 21 Sep 2019 16:56:00 +0000 Golang Interfaces 3 points posted by Amit https://www.golangprograms.com/go-language/interface.html 4126 Sat, 14 Sep 2019 17:19:00 +0000 Golang Slices with Examples 3 points posted by Amit http://www.golangprograms.com/go-language/slices-in-golang-programming.html# 4043 Sat, 13 Jul 2019 12:59:00 +0000 Interface Type the key of Polymorphism, Type Assertion, Abstraction and Embedding 3 points posted by Amit http://www.golangprograms.com/go-language/interface.html 4013 Sun, 16 Jun 2019 11:56:00 +0000 URL Parser 3 points posted by Amit http://www.golangprograms.com/golang-package-examples/url-parser-in-golang.html 3977 Sun, 19 May 2019 16:04:00 +0000 Golang For..Range loops - Beginners Tutorial 3 points posted by Amit http://www.golangprograms.com/for-range-loops.html 3748 Sat, 29 Dec 2018 05:13:00 +0000 AES Encryption and Decryption in Go 3 points posted by Ayeree http://www.golangprograms.com/cryptography/advanced-encryption-standard.html 3533 Sun, 02 Sep 2018 12:52:00 +0000 Golang RESTful API using GROM and Gorilla MUX 3 points posted by Ayeree http://www.golangprograms.com/advance-programs/golang-restful-api-using-grom-and-gorilla-mux.html 3486 Wed, 08 Aug 2018 16:31:00 +0000 Code formatting and naming conventions tools in Golang 3 points posted by Ayeree http://www.golangprograms.com/advance-programs/code-formatting-and-naming-conventions-in-golang.html 3414 Sun, 01 Jul 2018 12:26:00 +0000 Slice tutorial with examples of Slicing Tricks #tutorials 3 points posted by Amit http://www.golangprograms.com/go-language/slices-in-golang-programming.html 3059 Sun, 31 Dec 2017 16:19:00 +0000 An Introduction to Concurrency in Go 3 points posted by Golang Programs http://www.golangprograms.com/go-language/concurrency.html 2750 Thu, 05 Oct 2017 10:33:00 +0000 Files and directories with examples 2 points posted by Ayeree http://www.golangprograms.com/files-directories-examples.html 3504 Wed, 15 Aug 2018 15:09:00 +0000 Golang basic examples of Date and Time manipulation functions 2 points posted by Amit http://www.golangprograms.com/golang/date-time 2693 Sun, 24 Sep 2017 14:14:00 +0000 Best Golang packages which are quite useful for gophers <p>The Go standard library have several packages available for gophers to address the various programming-related issues which they encounter frequently.&nbsp;Besides, the core packages, there are also some third-party packages, which are quite useful for gophers. Moreover, most of these packages are open-source and free for usage. So, let us check out some important third-party Go packages which are useful for gopher working on various projects. The list contains popular Go packages for validations, JSON/XML/HTML parsing, Statistical calculation and more. Simple examples are also provided for some of them.</p> 1 points posted by Amit arora https://www.golangprograms.com/go-programming-language-packages.html 4404 Mon, 20 Jul 2020 06:24:00 +0000 Logging in Go programs 1 points posted by Amit arora http://www.golangprograms.com/go-language/logging-go-programs.html 2721 Fri, 29 Sep 2017 13:38:00 +0000