Page A

*** currently under construction ***

Read More

Page B

*** currently under construction ***

Read More

Page C

*** currently under construction ***

Read More

Build a RESTful API in Go using AWS Lambda | Java Code Geeks – 2018

Interested to learn about RESTful API? Check this article from javacodegeeks explaining how to design, build, and deploy a RESTful API in Go using AWS Lambda. Source: Build a RESTful API in Go using AWS Lambda | Java Code Geeks – 2018

Android: get values of the Temperature Sensor, show them on the display

Mainactivity.java: [code] public class MainActivity extends AppCompatActivity implements SensorEventListener { private SensorManager mSM; private Sensor mTemp; private TextView sensorTextView; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); sensorTextView = findViewById(R.id.sensorTextview); mSM = (SensorManager) getSystemService(SENSOR_SERVICE); mTemp = mSM.getDefaultSensor(Sensor.TYPE_AMBIENT_TEMPERATURE); } @Override public void onSensorChanged(SensorEvent sensorEvent) { float tmpval = sensorEvent.values[0]; sensorTextView.setText("Temp :" + (tmpval) ); } @Override