Skip to content

Instantly share code, notes, and snippets.

View zurcacielos's full-sized avatar

Fabian Sosa Escalada zurcacielos

View GitHub Profile
@geocine
geocine / BoseWinMD.md
Last active December 28, 2023 09:58
Bose QC 35 II Voice / Microphone Not Working On Newer Windows 10 Builds

Bose Community Post Here

Below is an actual side by side comparison of Windows 10 version 1909 (✅ Working Microphone) and Windows 10 version 2004 (❌ Not Working).

In this setup, I have used the same computer, and created a clean install of Windows using the versions stated above.

BOSE should acknowledge this issue and should roll out updates to their drivers to make it compatible to new builds of Windows 10. I don't have to try this on every build to prove a point.

Related Issues:

@dunnza
dunnza / setupProxy.js
Last active November 7, 2022 07:54
How to proxy api requests with NTLM authentication in a create-react-app project
const http = require("http");
const proxy = require("http-proxy-middleware");
module.exports = function(app) {
app.use(
"/api",
proxy({
agent: new http.Agent({ keepAlive: true }),
target: "http://example.com/",
onProxyRes(proxyRes) {
@MachinesAreUs
MachinesAreUs / elixir_dist.md
Created November 5, 2018 19:55
Primeros pasos para hacer un sistema distribuido con Elixir

Sistemas distribuidos con Elixir, primeros pasos

Crear un nodo llamado 'node1'

$ iex —sname node1

Dentro de iex, crear el módulo para el server

@waterswv
waterswv / reactConf2018.md
Last active July 3, 2019 05:17
React Conf 2018 Recap

Major Highlights:

  1. Introduction of Hooks - https://reactjs.org/docs/hooks-intro.html
  • a new feature proposal that lets you use state and other React features without writing a class. They’re currently in React v16.7.0-alpha and being discussed in an open RFC.
  • No Breaking changes & 100% opt-in with no plans to deprecate React Classes
  • Hooks Keynote by Sophie Alpert & Dan Abramov
  • Watch here
  1. Concurrent rendering in React - Code-Splitting with React.lazy & Suspense
  • One of the best talks of the conference
  • An opportunity to remove all of the isLoading ? : logic throughout your codebase.
@ChristiaanScheermeijer
ChristiaanScheermeijer / LiveData.sagas.js
Created March 9, 2018 15:45
Redux Saga with WebSocket
import { eventChannel, END } from 'redux-saga';
import { call, put, take, fork, cancel, cancelled } from 'redux-saga/effects';
import * as LiveDataActions from '../../redux/LiveData/LiveData.actions';
import * as LiveDataTypes from '../../redux/LiveData/LiveData.types';
// Use this to actually throw exceptions, allows for easier debugging.
const dispatch = put.resolve;
function createWebSocketConnection() {
return new Promise((resolve, reject) => {
@LeCoupa
LeCoupa / nodejs-cheatsheet.js
Last active June 30, 2024 04:14
Complete Node.js CheatSheet --> UPDATED VERSION --> https://github.com/LeCoupa/awesome-cheatsheets
/* *******************************************************************************************
* THE UPDATED VERSION IS AVAILABLE AT
* https://github.com/LeCoupa/awesome-cheatsheets
* ******************************************************************************************* */
// 0. Synopsis.
// http://nodejs.org/api/synopsis.html