Skip to content

Instantly share code, notes, and snippets.

View muslih's full-sized avatar
a cup of ristretto

Muslih Aqqad muslih

a cup of ristretto
  • Banjarmasin, South Borneo
View GitHub Profile
@muslih
muslih / Capybara.md
Created April 28, 2017 02:35 — forked from tomas-stefano/Capybara.md
Capybara cheatsheet

Capybara Actions

# Anchor
click_link 'Save'

# Button
click_button 'awesome'

# Both above
@muslih
muslih / README.md
Created December 7, 2016 08:48 — forked from linjunpop/README.md
Rails flash messages with AJAX requests
@muslih
muslih / cetak_page_break.html
Last active August 29, 2015 14:00
Cetak dengan page break
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Cetak dengan page break</title>
<style>
.halaman{
page-break-after: always;
page-break-inside: avoid;
}
require 'dm-core'
require 'dm-migrations'
DataMapper.setup(:default, "sqlite3:///#{Dir.pwd}/gabung.db")
class Institusi
include DataMapper::Resource
property :id, Serial
property :nama_institusi, String
property :nilai, Integer