I got Arch Linux ARM installed on a Lenovo Chromebook Duet! I mostly used the instructions from the Arch Wiki as reference.
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
[ | |
{ | |
"name": "Dactyl-Manuform 5x6" | |
}, | |
[ | |
{ | |
"x": 3.5, | |
"c": "#ccccccc" | |
}, | |
"\n3", |
-
Create the database
bundle exec rake db:create
- The name of the database is determined in
database.yml
bundle exec
is recommended to use before a command, this will execute the command using the versions specified in the Gemfile of this project (which may be different than what is installed on your machine)
-
Create a migration file to add a table to the database
bundle exec rake db:create_migration NAME=the_name_of_your_migration
- Typical name convention: “create_articles” where
articles
is the name of the table - Table names are plural (they hold multiple records, ex. “Articles”)
- Model names are singular and lowercase (represents one record in the database table, ex. “article.rb”)
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 | |
sudo rm -fr /opt/franz | |
sudo rm -fr /usr/share/applications/franz.desktop | |
# create installation dir | |
sudo mkdir -p /opt/franz | |
#install franz |
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
FROM debian:jessie | |
RUN apt-get update && apt-get install -yq less sudo octave && apt-get clean | |
COPY entrypoint.sh / | |
ENTRYPOINT [ "/entrypoint.sh" ] |
1 Welcome to Sonic Pi
Welcome to Sonic Pi. Hopefully you're as excited to get started making your own sounds as I am to show you. It's going to be a really fun ride where you'll learn all about music, synthesis, programming, composition, performance and more.
But wait, how rude of me! Let me introduce myself - I'm
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
# i3 move a workspace to another monitor (multi monitor setup) | |
mode "move_workspace" { | |
bindsym Up move workspace to output up | |
bindsym Down move workspace to output down | |
bindsym Left move workspace to output left | |
bindsym Up move workspace to output up | |
bindsym Escape mode "default" | |
} |
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
-- | |
-- Break a list into sublists using a split element | |
-- Author: Paulo Lieuthier | |
-- | |
wordss :: Eq a => a -> [a] -> [[a]] -> [a] -> [[a]] | |
wordss _ [] acc word = acc ++ [word] | |
wordss sp (x:xs) acc word | |
| x == sp = wordss sp xs (acc ++ [word]) [] | |
| otherwise = wordss sp xs acc (word ++ [x]) |
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
.vagrant |
NewerOlder