Here are the steps for getting a working Linux install for React Native:
- Install Java SDK
- Install KVM
sudo apt-get install qemu-kvm libvirt-bin bridge-utils virt-managersudo adduser $USER libvirtd
| import React from 'react' | |
| import { BrowserRouter as Router, Route, Link, Redirect, matchPath } from 'react-router-dom' | |
| import { Motion } from 'data-driven-motion' // https://github.com/tkh44/data-driven-motion | |
| const WOBBLY_SPRING = { stiffness: 200, damping: 15, precision: 0.1 } | |
| const AnimationExample = () => ( | |
| <Router> | |
| <div> | |
| <ul> |
| from urllib.parse import urlencode | |
| from urllib.request import Request, urlopen | |
| from os import popen | |
| import threading | |
| def check_result(): | |
| """A python script to periodically check if SSC resulthas been published or not""" | |
| timer = 5.0 #seconds | |
| print("checking...") |
| #! /usr/bin/env python3.5 | |
| """ | |
| Fixing bluetooth stereo headphone/headset problem in ubuntu 16.04 and also debian jessie, with bluez5. | |
| Workaround for bug: https://bugs.launchpad.net/ubuntu/+source/indicator-sound/+bug/1577197 | |
| Run it with python3.5 or higher after pairing/connecting the bluetooth stereo headphone. | |
| This will be only fixes the bluez5 problem mentioned above . |
Here are the steps for getting a working Linux install for React Native:
sudo apt-get install qemu-kvm libvirt-bin bridge-utils virt-managersudo adduser $USER libvirtd| """ | |
| Minimal character-level Vanilla RNN model. Written by Andrej Karpathy (@karpathy) | |
| BSD License | |
| """ | |
| import numpy as np | |
| # data I/O | |
| data = open('input.txt', 'r').read() # should be simple plain text file | |
| chars = list(set(data)) | |
| data_size, vocab_size = len(data), len(chars) |
brew cask install microsoft-office
or https://docs.microsoft.com/en-us/officeupdates/update-history-office-for-mac
| #!/usr/bin/ruby | |
| # Create display override file to force Mac OS X to use RGB mode for Display | |
| # see http://embdev.net/topic/284710 | |
| require 'base64' | |
| data=`ioreg -l -d0 -w 0 -r -c AppleDisplay` | |
| edids=data.scan(/IODisplayEDID.*?<([a-z0-9]+)>/i).flatten | |
| vendorids=data.scan(/DisplayVendorID.*?([0-9]+)/i).flatten |
http://stackoverflow.com/questions/24380159/corebluetooth-and-wifi-interference
http://lists.apple.com/archives/bluetooth-dev/2013/Aug/msg00023.html
This is a well known issue, and it has a solution that is confirmed to work for the Mac side.
sudo defaults write /Library/Preferences/com.apple.airport.bt.plist bluetoothCoexMgmt Hybrid
After you run this script, the issue will go away and BT connections will remain stable.