- High level overview https://yogthos.github.io/ClojureDistilled.html
- An Animated Introduction to Clojure https://markm208.github.io/cljbook/
- Interactive tutorial in a browser https://tryclojure.org/
- Interactive exercises http://clojurescriptkoans.com/
- Clerk notebooks with introductory examples https://github.clerk.garden/anthonygalea/notes-on-clojure
- More interactive exercises https://4clojure.oxal.org/
- Lambda Island tutorials https://lambdaisland.com/
- Functional Programming with Clojure resources https://practicalli.github.io/
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
nmcli con add \ | |
type wifi \ | |
con-name "eduroam" | |
ifname "wlp4s0" \ # Your wifi interface | |
ssid "eduroam" \ | |
wifi-sec.key-mgmt "wpa-eap" \ | |
802-1x.identity "<YOUR-STUDENT-ID>@lu.se" \ # May also use another university identification | |
802-1x.password "<YOUR-PASSWORD" \ | |
802-1x.system-ca-certs "yes" \ | |
802-1x.domain-suffix-match "radius.lu.se" \ |
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
FROM ruby:2.3.1 | |
# Install dependencies | |
RUN apt-get update -qq && apt-get install -y build-essential libpq-dev nodejs | |
# Set an environment variable where the Rails app is installed to inside of Docker image: | |
ENV RAILS_ROOT /var/www/app_name | |
RUN mkdir -p $RAILS_ROOT | |
# Set working directory, where the commands will be ran: |
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
--------------------------------------------------------------------------- | |
-- -- | |
-- _| _| _| _| _| -- | |
-- _| _| _|_| _|_| _|_| _|_|_| _|_|_| _|_|_| -- | |
-- _| _| _| _| _| _| _| _| _| _| _| _| -- | |
-- _| _| _| _| _| _| _| _| _| _| _| _| -- | |
-- _| _| _| _| _|_| _| _| _|_|_| _|_|_| -- | |
-- -- | |
--------------------------------------------------------------------------- | |
-- Ethan Schoonover <[email protected]> @ethanschoonover -- |
1)---0:28-0:35-------------------------- | - | 2)---0:35-0:42-------------------------
●●● ○○○ | ●●● ○○○ | ●●○ ○○○ | ●●○ ○○○ | - | ●●● ●●○ | ●●● ○○○ | ●●○ ○○○ | ●●○ ○○○
○●● ○○○ | ●○○ ○○○ | ●●○ ○○○ | ●●● ○○○ | - | ○●● ○○○ | ●○○ ○○○ | ●●● ○○○ | ○●● ○○●
●●● ●●● | ●●● ●●○ | - | ○●● ●●● | ●●● ●●○
-------------------------------------- | - | -------------------------------------
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
# encoding: UTF-8 | |
# pt-BR translations for Devise | |
pt-BR: | |
devise: | |
confirmations: | |
confirmed: "Sua conta foi confirmada com sucesso. Você está logado." | |
send_instructions: "Dentro de minutos, você receberá um e-mail com instruções para a confirmação da sua conta." | |
send_paranoid_instructions: "Se o seu endereço de e-mail estiver cadastrado, você receberá uma mensagem com instruções para confirmação da sua conta." | |
failure: | |
already_authenticated: "Você já está logado." |
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
# Ways to execute a shell script in Ruby | |
# Example Script - Joseph Pecoraro | |
cmd = "echo 'hi'" # Sample string that can be used | |
# 1. Kernel#` - commonly called backticks - `cmd` | |
# This is like many other languages, including bash, PHP, and Perl | |
# Synchronous (blocking) | |
# Returns the output of the shell command | |
# Docs: http://ruby-doc.org/core/classes/Kernel.html#M001111 |