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
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 |
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
<?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" /> |
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
#!/bin/bash | |
#This scripts updates the area and inserts the changes into the database | |
SLEEP_TIME=30s | |
BBOX="-6.5,49.5,2.1,59.0" # United Kingdom | |
DBUSER=graham | |
DBNAME=osm_gb | |
WORKDIR_OSM=/home/osmdb | |
OSMOSIS_CHANGE_FILE=changes.osc.gz |
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
#!/bin/sh | |
# This should be run from the main CI/bonfire directory (the one that contains index.php) | |
# The writeableFiles list of filenames is relative to the bonfire/application directory. | |
# You probably need to run this as root for chgrp to work. | |
# Graham Jones, 08Oct2011 | |
writeableFiles="../modules cache logs config archives db/backups db/migrations config/development config/production config/testing config/application.php config/config.php" | |
cd bonfire/application |