levelup.gitconnected.com
Resources curated from this publisher and indexed across appsec.fyi topic pages. Last item added: 2025-03-01.
| Date Added | Resource | Excerpt |
|---|---|---|
| 2025-03-01 2025 | CORS Finally Explained — Simply - Level Up CodingAPI Sec | There are millions of articles explaining how to fix the error above, but what exactly is this “Cross-Origin Resource Sharing” (CORS) thing, and why does it even exist? Let's begin by first answering… |
| 2021-05-14 2021 | Creating an Authentication API with Golang — Using Gin & Nrok | by Bryan Di | The content is about creating an Authentication API using Golang, specifically utilizing the Gin framework and Nrok tool. It likely provides a guide or tutorial on how to set up authentication features in a Golang application, emphasizing the use of Gin for building APIs and Nrok for secure tunneling. The article may cover topics such as user authentication, token generation, and securing API endpoints. Overall, it focuses on implementing authentication functionality in Golang applications using these specific tools. |
| 2021-04-13 2021 | Automate Your Go Applications With Gradle & Docker | by Israel Miles | Apr, | The content discusses utilizing Gradle and Docker to automate the deployment of Go applications. By leveraging build automation and containerization, developers can streamline the deployment process for their applications. The focus is on using these tools to automate tasks and improve efficiency in managing and deploying Go applications. |
| 2021-04-10 2021 | The Decorator Pattern In Go. The final product is oddly satisfying. | by Is | The content discusses the Decorator Pattern in Go programming. It highlights that the final product achieved through this pattern is oddly satisfying. |
| 2021-03-08 2021 | Bitcoin HD Wallet with Golang and gRPC (Part l) | by Luis Acerv | Level Up | The content is a tutorial series focusing on creating a Bitcoin HD wallet using Golang. The tutorial aims to teach readers how to develop this wallet step by step. |
| 2021-02-20 2021 | Writing an RPC server in Go. RPC stands for Remote Procedure Call… | by Sum | RPC, or Remote Procedure Call, is a form of Inter-Process Communication that involves passing messages indirectly. It allows processes to communicate and execute procedures on remote systems. RPC servers in Go can be created to handle these remote calls efficiently. By implementing an RPC server in Go, developers can facilitate communication between different processes or systems, enabling them to execute procedures remotely. |
| 2021-01-28 2021 | Building a web server in golang and beyond. This doc outlines the HTTP serv | The content discusses transitioning from Java to GoLang for building a web server. It highlights the author's experience and the differences between the two languages in this context. The focus is on outlining the process of building an HTTP server in GoLang and the author's journey in making this transition. |
| 2021-01-22 2021 | REST APIs using go-swagger, Lambda functions, and the API Gateway | by Seán | The content discusses utilizing AWS support for Swagger/OpenAPI defined REST APIs with a go runtime. It highlights the challenge of effectively integrating these technologies and mentions the use of Lambda functions and the API Gateway. The article aims to provide guidance on how to leverage go-swagger, Lambda functions, and the API Gateway within the AWS ecosystem for developing REST APIs. |
| 2021-01-22 2021 | Understanding Interfaces in Go. Interfaces might seem like a strange… | by | The content discusses how interfaces in Go can be perceived as a strange concept by newcomers and programmers who have not utilized them before. It highlights the potential confusion surrounding interfaces and aims to provide clarity on their purpose and usage in programming. |
| 2021-01-22 2021 | Immutability in Golang. How to harness immutability to enhance… | by Ricard | The content discusses leveraging immutability in Golang to improve readability and stability in applications. It emphasizes the benefits of immutability in enhancing code quality and preventing unexpected changes. By utilizing immutability, developers can create more reliable and understandable code in Golang applications. |
| 2021-01-21 2021 | Understanding golang's context package | Level Up Coding | The content discusses the importance of the context package in Go programming. It highlights the significance of utilizing this package for managing and propagating deadlines, cancellation signals, and request-scoped values across goroutines. The context package plays a crucial role in ensuring the graceful termination of operations and handling concurrent processes effectively. Understanding and leveraging the capabilities of the context package can greatly enhance the efficiency and reliability of Go programs. |
| 2021-01-12 2021 | Metaprogram in Go. How to use go (golang) to metaprogram a… | by Eric Lang | The content explains how to utilize Go (Golang) for metaprogramming a CRUD API. It focuses on demonstrating the process of metaprogramming in Go to create a CRUD API efficiently. |