Skip to content

Instantly share code, notes, and snippets.

@mrmartineau
mrmartineau / stimulus.md
Last active March 10, 2025 01:50
Stimulus cheatsheet
@stacietaylorcima
stacietaylorcima / Rails: Plural Naming Convention for Tables.md
Created February 14, 2018 05:17
Rails: Plural Naming Convention for Tables

The Rails convention is to make table names the plural form of the name, and the model as the singular form.

Makes sense when you think about the database. Your posts table contains all the individual post records.

Your Post model is named as such because it is the blueprint for instantiating individual post objects.

Rails will not always generate the table name with an s at the end. The maintainers of Rails understand that some words are irregular (e.g. 'person' and 'people'), and that some words that end in 's', like 'press' would be pluralized by adding an 'es' at the end.

For some cases, Rails isn't quite smart enough and you need to specify the plural form. You give a great example with press. If you do rails g model press, it will created a tabled called presses. But if you mean press as in 'the press', then presses is not really correct.

@brianlovin
brianlovin / index.js
Last active October 29, 2019 20:04
Flow type function prop
// component
type AnotherType = {
data: {
id: string
}
}
type Props = {
aFunction: ({ id: string }) => AnotherType
}
@vollnhals
vollnhals / pg_interval_rails_5_1.rb
Last active July 13, 2020 13:44
Implementation of interval database type in Rails 5.1
# implementation from https://github.com/rails/rails/pull/16919
# activerecord/lib/active_record/connection_adapters/postgresql/oid/interval.rb
require "active_support/duration"
module ActiveRecord
module ConnectionAdapters
module PostgreSQL
@kenmori
kenmori / react-form-before-submit-example.js
Last active September 3, 2020 02:45
react-formでsubmit前(送信前)に値を確認ごにょごにょしたい(【react】react-formのsubmit前に確認or値を変更したい(日本語))
//これだとそのまま送られてしまう
export class HogeForm extends Component {
constructor(props){
super(props);
}
render(){
return (
<Form>{
formApi => (
<form onSubmit={formApi.submitForm} id='form1'>
@primaryobjects
primaryobjects / react-confirm.js
Created November 1, 2017 19:03
A simple example of a confirm alert dialog in ReactJs / React.
<div className='delete-button' onClick={() => { if (window.confirm('Are you sure you wish to delete this item?')) this.onCancel(item) } } />
@wonderbeyond
wonderbeyond / drag-drop-sort-design-implementation.md
Last active April 4, 2023 04:34
Drag-drop sort: Design & Implementation
@maxivak
maxivak / __readme.md
Last active January 19, 2024 15:00
Load code in libraries in Rails 5

Load lib files in production (Rails 5)

If you have your code defined in classes in lib/ folder you may have problems to load that code in production.

Autoloading is disabled in the production environment by default because of thread safety.

Change config/application.rb:

    config.autoload_paths << Rails.root.join("lib")
 config.eager_load_paths &lt;&lt; Rails.root.join("lib")
@vialib
vialib / Ubuntu_Dnsmasq_pdnsd实现无快速污染DNS解析.md
Last active August 18, 2018 09:39
Ubuntu Dnsmasq + pdnsd 实现无快速污染DNS解析

安装软件

安装 dnsmasq

sudo apt install dnsmasq

安装 pdnsd

sudo apt install pdnsd

// ==UserScript==
// @name Weiboda Redirection
// @name:zh-CN 微博档案真实链接地址重定向
// @description 获取微博档案中的原始链接地址
// @grant none
// @run-at document-start
// @include *//weibo.wbdacdn.com/url/*
// ==/UserScript==