Skip to content

Instantly share code, notes, and snippets.

View Imaginativeone's full-sized avatar
🤓

Doug Franklin Imaginativeone

🤓
View GitHub Profile

Hacky Way to Get Among Us Running with "Local" Rather than the Central Servers

You will need one user who is the Admin and will run the Local game, and all Users will connect to the Admin's network. Instructions for each user - Admin and User - are below.

Admin:

  • Download and run ZeroTier on your machine
  • Sign in to the web client (my.zerotier.com/network)
    • Ensure it's set to private so rando's don't join
  • Share the Network ID with all your users, and when they join click the checkbox in the in the "Auth?" Column
@dorajistyle
dorajistyle / vue_ionic_capacitor_electron_config.md
Last active June 1, 2022 19:52
Vue-Ionic-Capacitor-Electron-Config

Predecessors

Install yarn

curl --compressed -o- -L https://yarnpkg.com/install.sh | bash

Install vue-cli

Tested @vue/cli version is 4.4.6.

@GAM3RG33K
GAM3RG33K / ReadMe.md
Created February 14, 2020 07:07
A Guide to setup and use Plantuml
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>LuxonJS The Modern MomentJS</title>
<meta name="viewport" content="width=device-width">
<style>
#output{
font-size: 2rem;
}
@pniel-cohen
pniel-cohen / app.module.ts
Last active November 18, 2019 20:18 — forked from katowulf/app.component.ts
Dynamically set page title based on active route in Angular 4
import ...
@NgModule({
...
providers: [ TitleService ],
})
export class AppModule {
constructor(titleService: TitleService) {
titleService.init();
}
We can't make this file beautiful and searchable because it's too large.
pattern,cnt
^,1657
-$,376
--,355
root.*/file.*\n,348
(?m)^hello world,338
\s+,296
\s*,278
^[a-z],275
[cg]pu,245
@arniebradfo
arniebradfo / any.component.html
Last active October 22, 2024 18:40
Angular *ngFor recursive list tree template
<h1>Angular 2 Recursive List</h1>
<ul>
<ng-template #recursiveList let-list>
<li *ngFor="let item of list">
{{item.title}}
<ul *ngIf="item.children.length > 0">
<ng-container *ngTemplateOutlet="recursiveList; context:{ $implicit: item.children }"></ng-container>
</ul>
</li>
</ng-template>
@anilnairxyz
anilnairxyz / .about+license.md
Last active January 18, 2026 15:09
Candlestick Chart

A zoomable candlestick chart.

Copyright © 2015-16, Anil Nair - MIT License

@mchirico
mchirico / twotableviewsInOneView.swift
Last active July 21, 2025 07:30
Creating multiple tableViews in one ViewController...this just starts out as a view controller
//
// ViewController.swift
// Delete
//
// Created by Mike Chirico on 10/21/15.
// Copyright © 2015 Mike Chirico. All rights reserved.
//
import UIKit
@benoror
benoror / async_select.html
Created May 18, 2015 15:50
angular-formly select
<ui-select ng-model="model[options.key]" theme="bootstrap" reset-search-input="false">
<ui-select-match>{{$select.selected[to.labelProp || 'name']}}</ui-select-match>
<ui-select-choices repeat="option in to.options | filter: $select.search">
<div ng-bind-html="option[to.labelProp || 'name'] | highlight: $select.search"></div>
</ui-select-choices>
</ui-select>