brew tap SergioBenitez/osxct
brew install x86_64-unknown-linux-gnu
# Resize the file system in UI, under VM -> Hardware -> Click on the disk to resize, click "Resize disk" button
# Confirm increase in disk space (1TB in my case)
$ lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 1T 0 disk
├─sda1 8:1 0 1M 0 part
├─sda2 8:2 0 1G 0 part /boot
└─sda3 8:3 0 1T 0 part
Access to Ameritrade API
notes that may be helpful for node.js devs
What I've gathered is authorization tokens must be earned first. Authorization tokens are good for three months, once you are setup, you will get two tokens which come as long strings, An access_token and a refresh_token. Access tokens are only valid for 30 minutes so you will need to code to refresh the session using the refresh token frequently. When you refresh, you are given a new access token and that is what you use to "login" or pull from the api for the next period. But in order to get the tokens, you will be required to go through some processes to get a valid token that applies to your app. The following text kind of steers you in that direction...
Making an app
On the api site you will need to make an app, where you pick some random name by using some random numbers. It should be automatically generated but it isnt. For this field item, I simply went to https://www.uuidgenerator.net/ and just grabbed the firs
___ADOBE CRASH FIX BY XLNC___ | |
USAGE : Open terminal and run the below commands as required. | |
NOTE: File path changes in each version release. So if the file is not found you can find the specified file manually and replace the path in the below commands. | |
You can also use this command to find the location of a specific adobe file : | |
eg:- if you want to search for MMXCore then run this command : | |
find /Applications/Adobe* -type f -name "MMXCore" | sed 's/ /\\ /g' | |
Photoshop crash fix :- |
# minivan | |
make tv44:mrkeebs | |
sudo dfu-programmer atmega32u4 erase --force | |
sudo dfu-programmer atmega32u4 flash .build/tv44_mrkeebs.hex | |
sudo dfu-programmer atmega32u4 start | |
# kbd75 | |
make kbd75:mrkeebs | |
sudo dfu-programmer atmega32u4 erase --force | |
sudo dfu-programmer atmega32u4 flash .build/kbd75_mrkeebs.hex |
#!/bin/bash | |
set -e | |
if [ "$1" == "" ]; then | |
echo "usage: $0 [servername]" | |
echo "where: servername - the URL Raptor API is going to use" | |
echo " (ie, qa-raptor.teradata.com)" | |
exit 1 | |
fi |
public class AuthModule : NancyModule | |
{ | |
public AuthModule() | |
{ | |
Post("/login", async _ => | |
{ | |
var myclaims = new List<Claim>(new Claim[] { new Claim("Id", "SOME USER ID FROM SOMEWHERE!!") }); | |
var claimsPrincipal = new ClaimsPrincipal(new ClaimsIdentity(myclaims, "MyCookieMW")); |
/** @jsx React.DOM */ | |
var React = require('react') | |
, mui = require('material-ui') | |
, { TextField } = mui | |
, $ = require('jquery'); | |
require('jquery.inputmask'); | |
var MaskedTextField = React.createClass({ |
#!/bin/bash | |
sudo kextunload -b com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport | |
sudo kextload -b com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport |