Hex Opacity Values
- 100% — FF
- 95% — F2
- 90% — E6
- 85% — D9
- 80% — CC
- 75% — BF
- 70% — B3
- 65% — A6
/* | |
* Copyright (c) 2016 NECTEC | |
* National Electronics and Computer Technology Center, Thailand | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* |
@echo off | |
start "api-9001" java -Dfile.encoding=UTF8 -Dlog4j.configurationFile=log4j2.xml -jar faarmis-api-1.0.jar -port 9001 | |
start "api-9002" java -Dfile.encoding=UTF8 -Dlog4j.configurationFile=log4j2.xml -jar faarmis-api-1.0.jar -port 9002 | |
start "api-9003" java -Dfile.encoding=UTF8 -Dlog4j.configurationFile=log4j2.xml -jar faarmis-api-1.0.jar -port 9003 |
<?xml version="1.0" encoding="utf-8"?> | |
<!-- | |
Google Material Design Color Palette for Android http://www.google.com/design/spec/style/color.html#color-ui-color-palette | |
Spreadsheet used to create this reosurce - http://bit.ly/mdcolor_spreadsheet | |
Link to this colors.xml resource file - http://bit.ly/mdcolorsxml | |
Harshad Kale | |
https://github.com/kalehv | |
[email protected] |
Copyright © $today.year by NECTEC, All rights reserved. | |
Use this file without prior written permission from NECTEC is prohibited. | |
For questions or any dealings please contact us at [email protected] |
import com.google.gson.JsonDeserializationContext; | |
import com.google.gson.JsonDeserializer; | |
import com.google.gson.JsonElement; | |
import com.google.gson.JsonObject; | |
import com.google.gson.JsonParseException; | |
import java.lang.reflect.Type; | |
class Nillable<T> implements JsonDeserializer<T> { | |
@Override |
/* | |
* Copyright 2017 Piruin Panichphol | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
Hex Opacity Values
package org.tanrabad.survey.larvaecam | |
import android.app.Fragment | |
import android.content.Context | |
import android.os.AsyncTask | |
import android.os.Handler | |
import android.os.Looper | |
import android.view.View | |
inline fun Context.runOnWorkerThread(crossinline task: () -> Unit) { |
git update-index --chmod=+x gradlew |
{ | |
"editor.fontLigatures": true, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontSize": 16, | |
"files.insertFinalNewline": true, | |
"workbench.colorTheme": "Default Light+", | |
"workbench.iconTheme": "vscode-icons", |