Class names are CamelCase
.
Methods and variables are snake_case
.
Methods with a ?
suffix will return a boolean.
border: no | |
license: MIT |
{% for post in site.posts %} | |
{% capture current_year %} | |
{{post.date | date: "%Y"}} | |
{% endcapture %} | |
{% if current_year != previous_year %} | |
{% assign previous_year = current_year %} | |
<h4 class="post-header"> | |
<span role="img" aria-label="icon-book" aria-hidden="true">🎉</span> | |
{{ current_year }} | |
</h4> |
# Additional translations at https://github.com/plataformatec/devise/wiki/I18n | |
id: | |
devise: | |
confirmations: | |
confirmed: "Email anda telah berhasil dikonfirmasi." | |
send_instructions: "Anda akan menerima sebuah email dengan instruksi bagaimana cara untuk mengkonfirmasikan email anda." | |
send_paranoid_instructions: "Jika email anda telah terdaftar, anda akan menerima email dengan instruksi bagaimana cara untuk mengkonfirmasikan email anda." | |
failure: | |
already_authenticated: "Anda telah masuk." |
/* | |
source from bulma issues, thanks to @furey | |
https://github.com/jgthms/bulma/issues/451#issuecomment-331758839 | |
*/ | |
$sizeUnit: rem; | |
$marginKey: 'm'; | |
$paddingKey: 'p'; | |
$separator: '-'; | |
$spacing-sizes: ( |
require 'bcrypt' | |
# if u not ready with bcrypt u can install by typing 'gem install bcrypt' | |
accounts = [ | |
{ username: 'choirul', password: 'passwd' }, | |
{ username: 'harpi', password: 'strongpass' }, | |
{ username: 'mahendra', password: 'isverysecret' } | |
] | |
def create_hash(string) |
I hereby claim:
To claim this, I am signing this object:
Stopping a Jekyll server with ctrl-z can cause issues as the process is not stopped fully. To kill it:
$ lsof -wni tcp:4000
$ kill -9 <PID of process>
And next time, use crtl-c to stop.
start_of_year = Time.new(2016, 1, 1) | |
# p start_of_year | |
# p start_of_year - 180 # second | |
# p start_of_year - (60 * 60 * 24) | |
def find_day_of_year_by_number(number) | |
current_date = Time.new(2016, 1, 1) | |
one_day = 60 * 60 * 24 | |