Skip to content

Instantly share code, notes, and snippets.

## EXCERPT FROM: https://answers.microsoft.com/en-us/windows/forum/windows_10-networking/windows-10-cast-to-not-recognizing-my-tv-anymore/0546e44e-f2a0-4fb7-9fbc-aa148d21c533
I think I may have found a solution. In a quest to find the answer to our problem, I read through several threads yesterday. I came upon one, did it myself, and so far, so good! Hope it also works for you.
(The following is a check list of things that need to be turned on, detected, etc).
1. Go to > Control Panel > Network & Sharing Center.
Look to the left column and click on > Change Advanced Sharing Settings.
Click on the arrow pointing downward by > Private (current profile). This will expand it.
@maaku
maaku / .gitignore
Last active November 17, 2020 21:53
BIP specifying fast merkle trees, as used in the Merkle branch verification opcodes
*~
@deviantony
deviantony / README.md
Last active September 4, 2024 02:41
Portainer HTTP API by example

DEPRECATION NOTICE

This gist is now deprecated in favor of our official documentation: https://documentation.portainer.io/api/api-examples/ which contains up to date examples!

THE FOLLOWING DOCUMENTATION IS DEPRECATED

Please refer to the link above to get access to our updated API documentation and examples.

@dghubble
dghubble / kubeception.md
Last active April 24, 2025 02:03
Running QEMU/KVM and Nested Kubernetes on Bare-Metal Kubernetes
@dwilkie
dwilkie / docker-cheat-sheat.md
Last active May 12, 2024 14:08
Docker Cheat Sheet

Build docker image

$ cd /path/to/Dockerfile
$ sudo docker build .

View running processes

@gbaman
gbaman / HowToOTGFast.md
Last active April 11, 2025 22:53
Simple guide for setting up OTG modes on the Raspberry Pi Zero, the fast way!

Setting up Pi Zero OTG - The quick way (No USB keyboard, mouse, HDMI monitor needed)

More details - http://blog.gbaman.info/?p=791

For this method, alongside your Pi Zero, MicroUSB cable and MicroSD card, only an additional computer is required, which can be running Windows (with Bonjour, iTunes or Quicktime installed), Mac OS or Linux (with Avahi Daemon installed, for example Ubuntu has it built in).
1. Flash Raspbian Jessie full or Raspbian Jessie Lite onto the SD card.
2. Once Raspbian is flashed, open up the boot partition (in Windows Explorer, Finder etc) and add to the bottom of the config.txt file dtoverlay=dwc2 on a new line, then save the file.
3. If using a recent release of Jessie (Dec 2016 onwards), then create a new file simply called ssh in the SD card as well. By default SSH i

@tychay
tychay / 1_install_ansible_20_from_source
Last active September 30, 2016 14:39
Ansible 2.0 with Digital Ocean v2
$ git clone git://github.com/ansible/ansible.git --recursive
$ cd ansible
$ source ./hacking/env-setup
$ sudo pip install paramiko PyYAML Jinja2 httplib2 six
$ make
$ sudo make install
#!/bin/bash -x
URL=$1
USER=$2
PASSWORD=$3
LATEST_FIRMWARE="0.00"
# ILO3 firmware: http://h20564.www2.hpe.com/hpsc/swd/public/detail?swItemId=MTX_ef5d840040af4d189c4b4991a7#tab-history
# ILO4 firmware: http://h20566.www2.hpe.com/hpsc/swd/public/detail?swItemId=MTX_a6d201edd56c4ff4b7d0488d01#tab-history
@density215
density215 / install_python_gz.sh
Created August 10, 2015 10:09
SmartOS python 2.7 in global zone
cd /
curl -k http://pkgsrc.joyent.com/packages/SmartOS/bootstrap/bootstrap-2015Q2-x86_64.tar.gz | gzcat | tar -xf -
pkg_admin rebuild
pkgin -y up
pkgin in python27
@density215
density215 / inventory
Created August 10, 2015 09:40
Ansible inventory for smartOS
[smartos-zones]
192.168.178.25
# modify python path
[smartos-zones:vars]
ansible_python_interpreter = /opt/local/bin/python
# ansible command
# ansible -i ./inventory all -m ping -u root