ssh -vNgL 5433:postgres.intenal-remote.host:5432 <host>
on database.yml
development:
require 'active_support' | |
require 'active_model' | |
require 'pry' | |
require 'awesome_print' | |
AwesomePrint.pry! | |
class Ages | |
extend ActiveModel::Naming | |
include ActiveModel::Validations |
[ | |
// | |
// TABS (REGULAR) | |
// | |
// Tab set | |
{ | |
"class": "tabset_control", | |
"layer0.texture": "", |
# require 'pry' | |
# binding.pry | |
linked_folder = 'C:\\Rails\\RubyCurrent' | |
rubies = { | |
'2.1' => 'C:\\Rails\\Ruby2.1.0', | |
'2.2' => 'C:\\Rails\\Ruby2.2.0' | |
} | |
current_version = RUBY_VERSION[/\d.\d/] |
module Matches | |
MATCH_BITS = { | |
' ' => '', | |
'0' => '123567', | |
'1' => '36', | |
'2' => '13457', | |
'3' => '13467', | |
'4' => '2346', | |
'5' => '12467', | |
'6' => '124567', |
# engines file strucuture at CD | |
# each stuff should be namespaced with, for example, `my_engine` | |
- engines | |
+ my_engine | |
+ app | |
+ assets | |
+ images | |
+ my_engine | |
image.png | |
+ javascripts |
Some devs are experiencing problem with pow, once we connected to enova VPN (e.g. WFH).
Usually to connect to enova VPN we use Cisco AnyConnect Secure Mobility Client
tool. And this tool is causing to stop pow
working.
Actual problem connected with system firewall. Once Cisco AnyConnect tool make a connection, it also add some additional rulesets to the system firewall.
So, all firewall setting are living in file /etc/pf.conf
. And it original content looks like this:
#
# Default PF configuration file.
#
# This file contains the main ruleset, which gets automatically loaded
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
#include <iostream> | |
using namespace std; | |
int main() | |
{ | |
// Data | |
int **matrix, size, counter = 0, max; | |
int x, y; | |
bool up = true; |