uti | id | title | platforms | packages | ||||||
---|---|---|---|---|---|---|---|---|---|---|
com.xamarin.workbook |
7e650a9b-4216-4b28-945c-217cd85530b2 |
FlexLayout Options |
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am lobrien on github. | |
* I am lobrien (https://keybase.io/lobrien) on keybase. | |
* I have a public key whose fingerprint is E928 7FF1 AD56 4639 010F 50D2 A95D 15EA EBBE D5BD | |
To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
string output = ""; | |
bool reset = false; | |
int input = 15; | |
public override void ViewDidLoad () | |
{ | |
base.ViewDidLoad (); | |
// Perform any additional setup after loading the view, typically from a nib. | |
/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
uti: com.xamarin.workbook | |
platforms: | |
- iOS | |
--- | |
```csharp | |
using MapKit; | |
``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
from keras.models import Sequential | |
from keras.layers.core import Activation, Dense | |
from keras.optimizers import SGD | |
# Trains a neural net that recognizes the digit displayed by a 7-segment LED: | |
# "Lit segments" are indexed as: | |
# -- 0 -- | |
# | | | |
# 1 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class TensorflowInferencePredictor : ITidePredictor | |
{ | |
const string MODEL_FILE_URL = "file:///android_asset/TF_LSTM_Inference.pb"; | |
const string INPUT_ARGUMENT_NAME = "lstm_1_input"; | |
const string OUTPUT_VARIABLE_NAME = "output_node0"; | |
const int OUTPUT_SIZE = 100; | |
TensorFlowInferenceInterface inferenceInterface; | |
public TensorflowInferencePredictor(AssetManager assetManager) |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;FLAVOR:Marlin | |
;TIME:7421 | |
;Filament used: 5.56723m | |
;Layer height: 0.2 | |
;Generated with Cura_SteamEngine 3.3.1 | |
M190 S60 | |
M104 S200 | |
M109 S200 | |
M82 ;absolute extrusion mode | |
G28 ;Home |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
from keras.models import Sequential | |
from keras.layers.core import Activation, Dense | |
from keras.optimizers import SGD | |
# Allocate the input and output arrays | |
X = np.zeros((4, 2), dtype='uint8') | |
y = np.zeros(4, dtype='uint8') | |
# Training data X[i] -> Y[i] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I had breakfast recently with a friend who's a former Republican member of Congress. Here's what he said: | |
Him: Trump is no Republican. He’s just a big fat ego. | |
Me: Then why didn’t you speak out against him during the campaign? | |
Him: You kidding? I was surrounded by Trump voters. I’d have been shot. | |
Me: So what now? What are your former Republican colleagues going to do? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const I = x => x; | |
const K = x => y => x; | |
const A = f => x => f(x); | |
const T = x => f => f(x); | |
const W = f => x => f(x)(x); | |
const C = f => y => x => f(x)(y); | |
const B = f => g => x => f(g(x)); | |
const S = f => g => x => f(x)(g(x)); | |
const P = f => g => x => y => f(g(x))(g(y)); | |
const Y = f => (g => g(g))(g => f(x => g(g)(x))); |