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
https://www.mint.com/ | |
https://www.mobify.com/ | |
https://alpha-creative.vuetifyjs.com | |
http://www.templatemonsterpreview.com/demo/94212.html?_ga=2.104293187.2122524184.1599223583-2013893291.1599223583 | |
https://www.groovecommerce.com/ |
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 | |
set -e | |
MAJOR_VERSION=21 | |
MINOR_VERSION=1 | |
INSTANTCLIENT_DIRNAME=instantclient_${MAJOR_VERSION}_${MINOR_VERSION} | |
INSTANTCLIENT_PATH=/opt/${INSTANTCLIENT_DIRNAME} | |
INSTANTCLIENT_DOWNLOAD_PATH=/tmp/${INSTANTCLIENT_DIRNAME} |
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
# factories | |
begin | |
require "active_support/inflector" | |
watch(%r{spec/factories/(.+).rb}) do |match| | |
"#{rspec.spec_dir}/models/#{match[1].singularize}_spec.rb" | |
end | |
end |
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
function logic() { | |
let data = {} | |
// kode pemrosesan data ... | |
console.log('-----------------------') | |
console.log('data setelah diproses') | |
console.log(data) | |
console.log('-----------------------') | |
} |
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
function logic() { | |
let data = {} | |
// kode pemrosesan data ... | |
debugger | |
} |
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 | |
# requirements: | |
# - pageres-cli (https://github.com/sindresorhus/pageres-cli) | |
# CLI website screenshot tool | |
# - crunch (https://github.com/chrissimpkins/Crunch) | |
# PNG image optimizer | |
# | |
# usage: | |
# see https://github.com/sindresorhus/pageres-cli#usage | |
# don't use `--format` argument, let script do it automatically |
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 | |
RBENV_GROUP=admin | |
# install rbenv in /usr/local/rbenv | |
cd /usr/local | |
git clone git://github.com/sstephenson/rbenv.git rbenv | |
chgrp -R ${RBENV_GROUP} rbenv | |
chmod -R g+rwxXs rbenv |
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 | |
# | |
# simplified version of https://www.techiediaries.com/install-ruby-2-7-rails-6-ubuntu-20-04/ | |
# | |
# make sure you have install all requisite libraries | |
# see https://github.com/rbenv/ruby-build/wiki#suggested-build-environment | |
git clone https://github.com/rbenv/rbenv.git ~/.rbenv | |
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc | |
echo 'eval "$(rbenv init -)"' >> ~/.bashrc |