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
#!/bin/env bash | |
# Pre install configurations | |
## Workaround for flakiness of `pt` mirror. | |
sed -i 's/mirror.archlinuxarm.org/de.mirror.archlinuxarm.org/g' /etc/pacman.d/mirrorlist | |
echo -e "[switch]\nSigLevel = Optional\nServer = https://9net.org/l4t-arch/" >> /etc/pacman.conf | |
# Configuring pacman | |
pacman-key --init | |
pacman-key --populate archlinuxarm |
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
Atmosphère Crash Report (v1.3): | |
Result: 0x4A8 (2168-0002) | |
Process Info: | |
Process Name: ldn.mitm | |
Title ID: 4200000000000010 | |
Process ID: 000000000000007c | |
Process Flags: 00000137 | |
User Exception Address: 0000004865912000 | |
Exception Info: |
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
function getGlee() { | |
var con = "bcdfghjklmnpqrstvwxyz"; | |
var vow = "aeiou"; | |
var conRan = Math.floor(Math.random()*21); | |
var conRann = Math.floor(Math.random()*21); | |
var vowRan = Math.floor(Math.random()*5); | |
return con.substring(conRan, conRan+1) + vow.substring(vowRan, vowRan+1) + con.substring(conRann, conRann+1) + (Math.floor(Math.random()*89)+10); | |
} |
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
<link rel="import" href="../polymer/polymer.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; |