- May 20-21, 2016
- Detroit, MI
- $200-$300, depending on registration time
- http://selfconference.org/
- Detroit conference - great for hiring opportunities and developer community outreach. If we only get one, this is not my top-most pick, but as a software company in Michigan, we should absolutely be going. If possible, I'd like to do self.conf and An Event Apart SF
http://www.postgresql.org/download/linux/ubuntu/
- Install postgres
- create the file
/etc/apt/sources.list.d/pgdg.list
- add one of the following lines to the file based on ubuntu version:
- 14.04:
deb http://apt.postgresql.org/pub/repos/apt/ trusty-pgdg main
- 15.04:
deb http://apt.postgresql.org/pub/repos/apt/ wily-pgdg main
- 14.04:
- import signing key:
- create the file
For this project, you will create a webpage that has an <input>
text box and a submit <button>
. When the submit button is clicked, it will call a JavaScript function that will reverse the string and display it below the input box. This project will involve both html and javascript.
Things you should know:
I hereby claim:
- I am erickrawczyk on github.
- I am etkraw (https://keybase.io/etkraw) on keybase.
- I have a public key whose fingerprint is E2B6 D155 CB59 0AD7 B898 8C48 0FD5 2183 BA7D 98DD
To claim this, I am signing this object:
This is a set of ‘statuses’ that pull request comments must be marked with to help explain intent.
- Required: this must be fixed before merge
- Nice to have: this should be fixed eventually
- Personal Preference: I would do this, but you don’t have to.
- Question: What does this do?
- Suggested Change: I have pushed a set of changes that I want to call out*
* not in original article
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
const book1 = `Arms, and the man I sing, who, forc'd by fate, | |
And haughty Juno's unrelenting hate, | |
Expell'd and exil'd, left the Trojan shore. | |
Long labors, both by sea and land, he bore, | |
And in the doubtful war, before he won | |
The Latian realm, and built the destin'd town; | |
His banish'd gods restor'd to rites divine, | |
And settled sure succession in his line, | |
From whence the race of Alban fathers come, | |
And the long glories of majestic Rome. |
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
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="com.androidemu.gba" | |
android:versionCode="6" | |
android:versionName="1.3.2" | |
android:installLocation="preferExternal"> | |
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="17"/> | |
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | |
<uses-permission android:name="android.permission.VIBRATE" /> |