Skip to content

Instantly share code, notes, and snippets.

Setting up a Raspberry Pi as a Bridged Wireless Access Point

The Raspberry Pi can be used as a bridged wireless access point within an existing ethernet network. This will extend the network to wireless computers and devices.

If you wish to create a wireless network that could function stand-alone, consider instead setting up a routed access point.

                                         +- RPi -------+
                                     +---+ Bridge      |
@ernstvanzyl
ernstvanzyl / git_and_github_instructions.md
Created June 12, 2024 08:21 — forked from mindplace/git_and_github_instructions.md
Pushing your first project to github

1. Make sure git is tracking your project locally

Do you need a refresher on git? Go through Codecademy's git course.

  1. Using your terminal/command line, get inside the folder where your project files are kept: cd /path/to/my/codebase. → You cannot do this simply by opening the folder normally, you must do this with the command line/terminal.
    → Do you need a refresher on using your command line/terminal? I've compiled my favorite resources here.

  2. Check if git is already initialized: git status

@ernstvanzyl
ernstvanzyl / comb_audio.bat
Created July 12, 2020 11:54
Combine microphone and game audio channels. Reduce game volume to 30%
ffmpeg -i "C:\Ernst\Videos\Elder Scrolls Online\Elder Scrolls Online 2020.07.12 - 12.22.52.01.mp4" -filter_complex "[0:a:0]volume=0.3[l];[0:a:1][l]amerge=inputs=2[a]" -map "0:v:0" -map "[a]" -b:v 8M -c:v h264_nvenc "output.mp4"
@ernstvanzyl
ernstvanzyl / main.go
Last active August 12, 2018 18:39
Defer gotcha
// Defer gotchas
/* Output:
Hello, playground
Defer 3 2
Defer 2 1
Defer 1 2
*/
package main
import (
@ernstvanzyl
ernstvanzyl / reboot-modem.js
Created June 21, 2018 12:07 — forked from jonathanhoskin/reboot-modem.js
Huawei B315 Modem Reboot Script
// PhantomJS script to reboot a Huawei B315 modem
//
// Author: Jonathan Hoskin / 2017-09-02
// Twitter: @jhossnz
// Github: https://github.com/jonathanhoskin
//
// Requires PhantomJS ~ 2.1.1
//
// Enter your own modem details here
var username = 'admin';