Skip to content

Instantly share code, notes, and snippets.

View luoye2333's full-sized avatar

Xu Xin luoye2333

  • Shanghai Jiao Tong University (SJTU)
View GitHub Profile
@vitaliemiron
vitaliemiron / mt7927-gist.md
Last active March 13, 2026 08:59
MediaTek MT7927 (MT6639) WiFi + Bluetooth on Ubuntu — ASUS ROG CROSSHAIR X870E HERO

MediaTek MT7927 (MT6639) WiFi + Bluetooth on Ubuntu — ASUS ROG CROSSHAIR X870E HERO

MediaTek MT7927 (MT6639) WiFi + Bluetooth on Ubuntu — ASUS ROG CROSSHAIR X870E HERO

Getting both WiFi and Bluetooth working on the MediaTek MT7927 (Filogic 380) combo chip on Ubuntu 24.04 with kernel 6.17+.

Hardware

  • Board: ASUS ROG CROSSHAIR X870E HERO
  • Chip: MediaTek MT6639 (PCI 14c3:6639), marketed as MT7927 (WiFi 7, Filogic 380)
@da-steve101
da-steve101 / rnn_one_output.py
Last active July 16, 2019 09:14
This is a modified version of https://gist.github.com/monikkinom/e97d518fe02a79177b081c028a83ec1c ... It uses only a single floating point value as the output instead of one hot encoding.
#Source code with the blog post at http://monik.in/a-noobs-guide-to-implementing-rnn-lstm-using-tensorflow/
import numpy as np
import random
from random import shuffle
import tensorflow as tf
# from tensorflow.models.rnn import rnn_cell
# from tensorflow.models.rnn import rnn
NUM_EXAMPLES = 10000