TL;DR
Install Postgres 10, and then:
sudo pg_dropcluster 10 main --stop
sudo pg_upgradecluster 9.6 main
sudo pg_dropcluster 9.6 main
// TS Playground link: https://tsplay.dev/wRJl5w | |
interface Props { | |
baseKey: string | |
} | |
const withCustomKey = <K extends string>(customKey: K) => { | |
return <P>(props: P): P & { [k in K]: boolean } => { | |
return { ...props, [customKey]: true } as P & { [k in K]: boolean } | |
} |
Computer Information: | |
Manufacturer: Unknown | |
Model: Unknown | |
Form Factor: Desktop | |
No Touch Input Detected | |
Processor Information: | |
CPU Vendor: GenuineIntel | |
CPU Brand: Intel(R) Core(TM) i7-2600K CPU @ 3.40GHz | |
CPU Family: 0x6 |
require 'sidekiq/api'; [Sidekiq::RetrySet.new, Sidekiq::ScheduledSet.new, Sidekiq::DeadSet.new, Sidekiq::Stats.new.queues].each(&:clear); Sidekiq::Stats.new.reset |
# It supports queries like: | |
# ModelName.where(ModelName.arel_table[:columnname].lower.matches 'searchterm') | |
class PostgresqlLikeIIndex < ActiveRecord::Migration | |
def up | |
enable_extension 'pg_trgm' | |
execute <<~SQL | |
CREATE INDEX index_tablename_on_columnname_lower | |
ON tablename USING gin (lower(columnname) gin_trgm_ops) | |
SQL |
#!/bin/bash | |
# It assumes [asdf](https://github.com/asdf-vm/asdf) to be installed | |
# and asdf plugin for Ruby to be added | |
set -exuo pipefail | |
sudo apt install libreadline-dev | |
wget https://www.openssl.org/source/old/1.0.2/openssl-1.0.2u.tar.gz | |
tar -xzf openssl-1.0.2u.tar.gz |
#!/bin/bash | |
# GNU Guix --- Functional package management for GNU | |
# Copyright © 2017 sharlatan <sharlatanus@gmail.com> | |
# Copyright © 2018 Ricardo Wurmus <rekado@elephly.net> | |
# Copyright © 2018 Efraim Flashner <efraim@flashner.co.il> | |
# | |
# This file is part of GNU Guix. | |
# | |
# GNU Guix is free software; you can redistribute it and/or modify it | |
# under the terms of the GNU General Public License as published by |
<?xml version="1.0"?> | |
<!DOCTYPE tsung SYSTEM "/usr/share/tsung/tsung-1.0.dtd" [] > | |
<tsung loglevel="info"> | |
<clients> | |
<client host="localhost" use_controller_vm="true" maxusers="60000"/> | |
</clients> | |
<servers> | |
<server host="localhost" port="3334" type="tcp"></server> | |
</servers> |
$(document).on 'ready turbolinks:load', -> | |
SirTrevor.config.language = 'it' | |
SirTrevor.setDefaults( | |
language: 'it' | |
focusOnInit: false | |
blockTypes: ['Text', 'Image', 'List', 'Heading', 'Quote', 'Video'] | |
defaultType: 'Text' | |
iconUrl: "<%= asset_path('sir-trevor/build/sir-trevor-icons.svg') %>" | |
uploadUrl: "/admin/uploads/images" |
TL;DR
Install Postgres 10, and then:
sudo pg_dropcluster 10 main --stop
sudo pg_upgradecluster 9.6 main
sudo pg_dropcluster 9.6 main
begin | |
require "bundler/inline" | |
rescue LoadError => e | |
$stderr.puts "Bundler version 1.10 or later is required. Please update your Bundler" | |
raise e | |
end | |
gemfile(true) do | |
source "https://rubygems.org" | |
# Activate the gem you are reporting the issue against. |