Skip to main content

8 docs tagged with "tutorial"

View all tags

A Dev Workflow Story

This page discusses how to view a local development site on a physical phone using IP addresses, and explores solutions for accessing the development environment from public networks, including tunneling services and VPNs.

Creative Uses of Destructuring

Explore creative techniques for using JavaScript destructuring to simplify common coding tasks such as swapping variables, handling function parameters, and managing nested objects.

Efficiently Navigating and Using File Paths in Unix

This guide explores the challenge of acting upon file paths found deep within directory trees in Unix-like environments, focusing on how to properly use path-oriented programs such as editors to open files after locating them.

Extension Methods

Learn how to create and use extension methods in C#, which allow you to add new methods to existing types without modifying them. Discover their common applications, including the LINQ standard query operators.

Go Language Basics Quick Reference Guide

A practical Go (Golang) quick reference guide covering core language syntax, control flow, structs, slices, maps, pointers, interfaces, concurrency with goroutines and channels, generics, error handling, and performance concepts like pprof and escape analysis.

SQL Tricks

Discover various SQL tricks to enhance query efficiency, including using '1=1' in WHERE clauses and techniques for identifying duplicates.