In the name of God
This gist contains steps to setup Ubuntu 22.04
for deep learning.
name: Minimal Android CI Workflow | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- 'v*' | |
jobs: |
Graham's Ubuntu Setup Notes | |
=========================== | |
These notes are a record of how I set up a fresh install of Ununtu 18.04 LTS (well actually xUbuntu for me) and get it to do what I want.... | |
Starting from a fresh install..... | |
Install the INDI server | |
----------------------- | |
sudo add-apt-repository ppa:mutlaqja/ppa |
#include "esp_common.h" | |
#include "i2c.h" | |
#include "freertos/FreeRTOS.h" | |
#include "lwip/sockets.h" | |
#include "lwip/dns.h" | |
#include "lwip/netdb.h" | |
#define SSID "" | |
#define PASS "" | |
#define TCP_PORT 3080 |
unittest2
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="schwiz.net.weartest" > | |
<application | |
android:allowBackup="true" | |
android:icon="@drawable/ic_launcher" | |
android:label="@string/app_name" | |
android:theme="@style/AppTheme" > | |
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" /> |
elements = { | |
HYDROGEN: { | |
atomic_number: 1, | |
abbreviation: "H", | |
atomic_weight: 1.008 | |
}, | |
HELIUM: { | |
atomic_number: 2, | |
abbreviation: "He", | |
atomic_weight: 4.003 |
import edu.emory.mathcs.jtransforms.fft.DoubleFFT_1D; | |
public class FftTest { | |
public static void main(String[] args) { | |
double[] input = new double[]{ | |
0.0176, | |
-0.0620, | |
0.2467, | |
0.4599, | |
-0.0582, |
#!/bin/bash | |
set -e | |
# Initialize timestamp with day of latest planet dump | |
# Setting to midnight ensures we get conistent data after first run | |
# osmosis --read-replication-interval-init | |
OSMOSIS_PATH=/home/iandees/osmosis-SNAPSHOT-r25995 | |
OSMOSIS_WORKDIR=/home/iandees/.osmosis | |
OSM2PGSQL_PATH=/home/iandees/osm2pgsql |