-
Iarno (Sildar's friend)
- Missing for 2 months
- Mid forties
- Long carved wizard staff branch with a ruby colored orb at top
- No handshake
- Favorite food? Unknown
- Favorite color? Unknown
-
Passphrase: Illefarn
This file contains 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
// Open up the console and paste this in to prevent sites | |
// from blocking your pastes into password fields | |
// This allows you to continue using your password manager | |
// without it being incredibly inconvenient. | |
var allowPaste = function(e){ | |
e.stopImmediatePropagation(); | |
return true; | |
}; | |
document.addEventListener('paste', allowPaste, true); |
This file contains 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
# Deletes all remote branches 3 weeks or older | |
delbr() { | |
delbrtest | |
echo "Continue? (y/n)" | |
read shouldContinue | |
if [ $shouldContinue = "n" ]; then | |
echo "Aborting" | |
return 0 |
This file contains 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
import React, { Component } from 'react'; | |
import { AppState, View, Button, Text, StyleSheet } from 'react-native'; | |
import PushNotification from 'react-native-push-notification'; | |
import PushController from './PushController.js'; //The push controller created earlier | |
export default class HomeScreen extends Component { | |
constructor(props) { | |
super(props); | |
this.state = {}; | |
this.handleAppStateChange = this.handleAppStateChange.bind(this); |
This file contains 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
import React, { Component } from 'react'; | |
import PushNotification from 'react-native-push-notification'; | |
export default class PushController extends Component { | |
componentDidMount() { | |
PushNotification.configure({ | |
onNotification: function(notification) { | |
console.log('NOTIFICATION: ', notification); | |
}, |