Skip to content

Instantly share code, notes, and snippets.

View buncis's full-sized avatar
❤️
(づ。◕‿‿◕。)づ

buncis buncis

❤️
(づ。◕‿‿◕。)づ
View GitHub Profile
@buncis
buncis / .bashrc
Created April 16, 2016 10:25
ngeluarin branch dan ngilangin username sama hostname
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
PS1="${debian_chroot:+($debian_chroot)}\w\$(parse_git_branch) $ "
@buncis
buncis / heroku restore
Created August 3, 2017 14:08
heroku restore
heroku pg:backups:capture
heroku pg:backups:download
pg_restore --verbose --clean --no-acl --no-owner -h localhost -d rails_development latest.dump
Method Uses Default Accessor Saved to Database Validations Callbacks Touches updated_at Readonly check
attribute= Yes No n/a n/a n/a n/a
write_attribute No No n/a n/a n/a n/a
update_attribute Yes Yes No Yes Yes Yes
attributes= Yes No n/a n/a n/a n/a
update Yes Yes Yes Yes Yes Yes
update_column No Yes No No No Yes
update_columns No Yes No No No Yes
User::update Yes Yes Yes Yes Yes Yes
@buncis
buncis / s3 bucket sync
Last active August 1, 2018 14:58
s3 bucket sync
aws s3 source tujuan
example
aws s3 sync s3://mybucket .
output
download: s3://mybucket/test.txt to test.txt
download: s3://mybucket/test2.txt to test2.txt
@buncis
buncis / colab_download.py
Created August 5, 2018 13:41 — forked from korakot/colab_download.py
Google colab file upload/download
files.download('example.txt') # from colab to browser download
@buncis
buncis / gist:92b9f60a75a9bf93c966a621f7400055
Created February 9, 2019 14:30
ruby on rails in bash on ubuntu
cd /mnt/$yourdrivealphabet
default: &default
adapter: postgresql
encoding: unicode
# For details on connection pooling, see Rails configuration guide
# http://guides.rubyonrails.org/configuring.html#database-pooling
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
username: username in postgres windows
password: pass in postgres windows
@buncis
buncis / main.dart
Last active March 19, 2019 09:16
way to send state to parent flutter
https://www.youtube.com/watch?v=RS36gBEp8OI&feature=youtu.be
make the state and amethod that change it in parent
->
send the method that manipulate state to children
->
children then call the method
@buncis
buncis / how_to_enable_uuid_on_rails.md
Created April 20, 2019 16:57
enable uuid on rails & postgresql
rails generate migration enable_pgcrypto_extension
class EnablePgcryptoExtension < ActiveRecord::Migration[5.1]
  def change
    enable_extension 'pgcrypto'
  end
end
@buncis
buncis / demo1.html
Last active March 4, 2020 15:12
D3 cluster sample, kalo error ganti url.csv ke url raw baru
<!-- Code from d3-graph-gallery.com -->
<!DOCTYPE html>
<meta charset="utf-8" />
<!-- Load d3.js -->
<script src="https://d3js.org/d3.v4.js"></script>
<!-- Create a div where the graph will take place -->
<div id="my_dataviz"></div>
@buncis
buncis / .terminal config
Last active August 6, 2021 11:33
terminal config
title