- arm64-v8a
- armeabi-v7a
- armeabi
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
| Attributes: [ | |
| Attribute { | |
| pound_token: Pound, | |
| style: Outer, | |
| bracket_token: Bracket, |
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
| extern crate cc; | |
| use std::path::Path; | |
| fn main() { | |
| let host_target = "x86_64-apple-darwin"; | |
| cc::Build::new() | |
| .cpp(true) | |
| .file("src/cpp/hello.cpp") | |
| .include("src/cpp") | |
| .out_dir(Path::new(".")) |
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
| package processor | |
| import ( | |
| "math" | |
| ) | |
| // EstimateCost calculates the cost in dollars applied using generic COCOMO2 weighted values based | |
| // on the average yearly wage | |
| func EstimateCost(effortApplied float64, averageWage int64) float64 { | |
| return effortApplied * float64(averageWage/12) * float64(1.8) |
npm i -g react-native react-native-clireact-native init --template reason-react-native-template
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
| package com.github.jeremyrempel.unsplash | |
| import android.util.Log | |
| actual fun log(level: LogLevel, tag: String, message: String, error: Throwable) { | |
| when (level) { | |
| is LogLevel.DEBUG -> Log.d(tag, message, error) | |
| is LogLevel.INFO -> Log.i(tag, message, error) | |
| is LogLevel.WARN -> Log.w(tag, message, error) |
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
| ./configure --with-features=huge --enable-python3interp=yes --with-python3-config-dir=/usr/lib/python3.6/config-3.6m-x86_64-linux-gnu |
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
| libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev |
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
| pip install --user jupyter jupyterlab ipython numpy matplotlib pandas scikit-learn scikit-image opencv-python firebase-admin tensorflow-gpu tensorflowjs |
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
| name := $(shell basename $(CURDIR)) | |
| default: build | |
| build: | |
| @echo "Compiling..." | |
| @g++ -pipe -O2 -std=c++14 *.cpp -lm -o $(name) | |
| @echo "Done. Executable: $(name)" | |
| clean: |