Abstract classes vs interfaces
Lately I was a few times asked a question “what do we need abstract classes for?”
And today I’ve got one more question, which inspired me to write this.
Lately I was a few times asked a question “what do we need abstract classes for?”
And today I’ve got one more question, which inspired me to write this.
First time I faced functional programming, I was impressed. Just a bit. That was back in 2012. The second time, I was studying real functional programming at the university. Today was the final test.
We were taught many interesting things about functional programming and lot of things about Haskell. But there were only two lectures and two practices on Erlang. And nothing was told about its distributed programming abilities.
I was a bit disappointed by this fact. So, I turned on my girlfriend’s laptop, installed Erlang and created this short intro to distributed programming in Erlang.
This is a 3D model of a robot (called him Robo) which I made in Cinema4D some two and a half years ago.
First of all, set up the Heroku Toolbelt. It is required for all the communications with the server.
The first step of communication with the Heroku servers is logging in. Just run heroku login
and provide your credentials when asked.
Then, you need to create your application or go to the folder where it is located and tune it a bit. Tuning is divided into the following steps:
Gemfile
to include the required gemsdatabase.yml
configurationsBut let’s create out application on the Heroku servers first: heroku create [app_name]
. If application name is not provided directly - it will be generated automatically.
Now, our application needs two gems to be included for the production
gems’ group:
group :production do
gem 'pg'
gem 'rails_12factor'
gem 'puma'
end
The third gem is used as a webserver instead of WebRick, which is default (puma is much, much faster!). The second one is required by Heroku. And the first one is used for PostgreSQL connectivity. If you do not wish to use database - skip it and a few next paragraphs.
Then, let’s add the database support for our application. It’s done simply, running
heroku addons:add heroku-postgresql:hobby-dev
Note: Heroku does not support sqlite
since some times. This means you are forced to use either PostgreSQL or no database at all (yes, it’s possible! Yet, it works for simple or static web applications only…). You may want to change this if you would pay for your account. But this tutorial covers only free side of the Heroku deployment.
Now, there are two ways to set database connection options in Rails:
config/database.yml
fileDATABASE_URL
We will cover both cases. For the first one, you will need this section within your database.yml
file:
production:
adapter: postgresql
encoding: unicode
pool: 5
url: URL_GOES_HERE
I will show how to get the <URL_GOES_HERE>
value in a second. Just keep in mind to replace it with the correct value.
The second option, the environment variable, is set via the Heroku Toolbelt (did I tell you, it is used for almost every deploy operation you will perform?).
First you take the database URL from Heroku server:
heroku config | grep HEROKU_POSTGRESQL
Then, you copy the value you got (it starts with postgres://
) and run the following:
heroku config:set DATABASE_URL=URL_GOES_HERE
Now let’s set our application to serve static assets. It is handy, because it is the easiest way to send images, stylesheets and javascripts to clients. Go to the config/environments/production.rb
and change both config.serve_static_assets
and config.assets.compile
to true
.
But beware: if your app/assets
files directory contains files of other extensions than Rails’ Sprockets understands - Rails (and Heroku, particularly) will try to precompile them. And that may cause many troubles. You are recommended either to “teach” Sprockets to skip or precompile those files, or you should exclude them from project before deploying to Heroku.
And the last two steps separate us from our goal: first, you should push your project to Heroku’ Git repository, it created for you with the application (You do not use Git yet?! How dare you?!..).
Now, if you use database, run migrations with heroku run rake db:migrate
.
And, finally, see your application running in the browser: heroku open
.
Note: if you are using some assets from the outer web (GoogleFonts, for example) and are seeing your website through the https
protocol, you should replace all those assets’ URL protocols with https
too.
Ohhh… Today I’ve faced one great trouble: recently I reinstalled my Ubuntu, so I lost all my configurations. And when I tried to connect my Lenovo P780 to debug my Android application, I saw horrible error:
$ adb devices
* daemon not running. starting it now on port 5037 *
* daemon started successfully *
List of devices attached
???????????? no permissions
Hey! Where did my smartphone gone?!
Fooling around in the internet, I found two simple steps to fix this:
find the VendorID and ProductID for your device running lsusb
two times (just find the difference line):
a. when your device is disconnected
b. when your device is connected
This will give you two outputs:
$ # disconnected device
$ lsusb
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 004: ID 064e:d213 Suyin Corp.
Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
$ # connected device (via USB)
$ lsusb
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 004: ID 064e:d213 Suyin Corp.
Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 006: ID 0bb4:0c03 HTC (High Tech Computer Corp.)
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Note the row, which is present in the second output block and is absent in the first one:
Bus 003 Device 006: ID 0bb4:0c03 HTC (High Tech Computer Corp.)
For some reason, my phone is recognized as a HTC, but that does not bother me so much. We will need only two parts of that row:
0bb4:0c03
The 0bb4
is a VendorID and the 0c03
is the ProductID for my phone.
Add the phone attributes to the system. Sudo-edit the file /lib/udev/rules.d/69-libmtp.rules
and point it to your device. Add a line like this (without any newlines):
ATTR{idVendor}=="0bb4", ATTR{idProduct}=="0c03", SYMLINK+="libmtp-%k", MODE="0666", GROUP="audio", ENV{ID_MTP_DEVICE}="1", ENV{ID_MEDIA_PLAYER}="1"
That should enable your system to see the device later.
Enable write permissions for your device. Sudo-edit the file /etc/udev/rules.d/51-android.rules
(you may need to create it) and add one line there:
SUBSYSTEM=="usb", ATTRS{idVendor}=="0bb4", ATTRS{idProduct} =="0c03", MODE="0666", GROUP="plugdev"
To check if your phone is recognized by adb
, restart ABD server and check its device list:
$ adb kill-server
$ adb devices
* daemon not running. starting it now on port 5037 *
* daemon started successfully *
List of devices attached
0123456789ABCDEF device
I have a T-SQL trigger creation script, which runs OK:
CREATE TRIGGER data_modified ON Northwind.dbo.Customers FOR INSERT, UPDATE, DELETE
AS
declare @rows as int;
set @rows = @@ROWCOUNT;
IF @rows = 0
BEGIN
print 'no rows were affected';
return;
end
if exists(select * from inserted)
begin
if exists(select * from deleted)
begin
print 'updated ' + @rows + ' rows';
end
else
begin
print 'inserted ' + @rows + ' rows';
end
end
else
begin
print 'deleted ' + @rows + ' rows';
end
Yet, when I run some INSERT
query, I got an error saying:
Msg 245, Level 16, State 1, Procedure data_modified, Line 21
Conversion failed when converting the varchar value 'inserted ' to data type int.
Mysterious, isn’t it? Let’s dig in, shall we?
This tutorial I wrote when was quitting my previous job, almost one year ago. But it’s still handy!
$ git clone .../project_name.git
$ cd project_name
$ [sudo] bundle install
$ cat config/database.yml
$ # create database and/or change config/database.yml settings
$ rake db:migrate RAILS_ENV=production
$ rake db:seed RAILS_ENV=production # don't worry if one fails
$ # start the server of your choice
First you need to set up Puma for your specific project. For this purpose, add this
line to the Gemfile
:
gem 'puma'
Then, run [sudo] bundle install
.
When you are done, you should be able to create a Puma config file at $PROJECT_DIR/config/puma.rb
:
def home_dir
'/home/user/$PROJECT_DIR/'
end
def path(p)
File.join(home_dir, p)
end
directory home_dir
environment 'development'
daemonize
pidfile path('tmp/pids/puma.pid')
state_path path('tmp/pids/puma.state')
stdout_redirect path('log/puma.log'), path('log/error.puma.log'), true
threads 0, 1
bind 'tcp://0.0.0.0:5100'
activate_control_app
More details here: https://github.com/puma/puma/blob/master/examples/config.rb
Now, add project root path to the /etc/puma.conf
file, e. g.:
/home/user/project_name
There is a specific utility, called Jungle. It manages your applications’ instances at startup.
First of all, create /etc/init/puma.conf
file and fill it with this:
# /etc/init/puma.conf - Puma config
# This example config should work with Ubuntu 12.04+. It
# allows you to manage multiple Puma instances with
# Upstart, Ubuntu's native service management tool.
#
# See workers.conf for how to manage all Puma instances at once.
#
# Save this config as /etc/init/puma.conf then manage puma with:
# sudo start puma app=PATH_TO_APP
# sudo stop puma app=PATH_TO_APP
# sudo status puma app=PATH_TO_APP
#
# or use the service command:
# sudo service puma {start,stop,restart,status}
#
description "Puma Background Worker"
# no "start on", we don't want to automatically start
stop on (stopping puma-manager or runlevel [06])
# change apps to match your deployment user if you want to use this as a less privileged user (recommended!)
setuid apps
setgid apps
respawn
respawn limit 3 30
instance ${app}
script
# this script runs in /bin/sh by default
# respawn as bash so we can source in rbenv/rvm
# quoted heredoc to tell /bin/sh not to interpret
# variables
exec /bin/bash <<'EOT'
# set HOME to the setuid user's home, there doesn't seem to be a better, portable way
export HOME="$(eval echo ~$(id -un))"
cd $app
if [ -d "$HOME/.rbenv/bin" ]; then
export PATH="$HOME/.rbenv/bin:$PATH"
elif [ -f /etc/profile.d/rvm.sh ]; then
source /etc/profile.d/rvm.sh
elif [ -f /usr/local/rvm/scripts/rvm ]; then
source /etc/profile.d/rvm.sh
elif [ -f "$HOME/.rvm/scripts/rvm" ]; then
source "$HOME/.rvm/scripts/rvm"
elif [ -f /usr/local/share/chruby/chruby.sh ]; then
source /usr/local/share/chruby/chruby.sh
if [ -f /usr/local/share/chruby/auto.sh ]; then
source /usr/local/share/chruby/auto.sh
fi
# if you aren't using auto, set your version here
# chruby 2.0.0
fi
logger -t puma "Starting server: $app"
exec bundle exec puma -C config/puma.rb
EOT
end script
Now, create /etc/init/puma-manager.conf
and fill it with this:
# /etc/init/puma-manager.conf - manage a set of Pumas
# This example config should work with Ubuntu 12.04+. It
# allows you to manage multiple Puma instances with
# Upstart, Ubuntu's native service management tool.
#
# See puma.conf for how to manage a single Puma instance.
#
# Use "stop puma-manager" to stop all Puma instances.
# Use "start puma-manager" to start all instances.
# Use "restart puma-manager" to restart all instances.
# Crazy, right?
#
description "Manages the set of puma processes"
# This starts upon bootup and stops on shutdown
start on runlevel [2345]
stop on runlevel [06]
# Set this to the number of Puma processes you want
# to run on this machine
env PUMA_CONF="/etc/puma.conf"
pre-start script
for i in `cat $PUMA_CONF`; do
app=`echo $i | cut -d , -f 1`
logger -t "puma-manager" "Starting $app"
start puma app=$app
done
end script
And create a blank /etc/puma.conf
file. This will be filled for each application separately.
Caveat:
You need to customise /etc/init/puma.conf
to:
setuid apps
and setgid apps
, uncomment those lines and replace apps
to whatever your deployment user is.apps
on the paths (or set the right paths to your user’s home) everywhere else.rbenv
or rvm
support unless you use a system wide installation of Ruby.Now, start Jungle like this: sudo start puma-manager
.
And all your applications should be available when you reboot the machine.
More details at https://github.com/puma/puma/tree/master/tools/jungle/
PENDING
To start up the application is easy enough. Just navigate yourself to project directory and run the following: puma -C config/puma.rb
.
If you want to shut down one, run this command in the project directory: [sudo] pumactl -S tmp/pids/puma.state halt
.
At my job, our current project has many bottle-necks, where Ruby really sucks on its performance. We were thinking on how to optimize them, and finally come to usage of Ruby Native API.
Our project uses Redis and MySQL hardly, so much of statistic data is stored in Redis. For speeding up. But one fine day made us use a reduce on a set of statistic data from Redis. And that’s where we got stuck on Ruby’ performance. Our server timed out in a minute of waiting for that reduce to complete.
Будь готов! В цій главі ми полностью переробим блог! Він не буде працювати (як раньше) аж до кінця домашнього заданія; код буде магічним; придеться пару раз удалять весь код з деяких файлів! Але в сухом остаткє, потом має стати ну дуже прикольно розробляти його дальше.
Єсть така штука як MVC, Model-View-Controller. Це такий прінцип, по якому програма розділяється на три тіпа дєталєй:
Так от, модель - це такій клас, який работає з рядочками одної таблички і другими табличками, шо прив’язані до нашої. Але тільки якшо та таблічка, з якою работає модель - главна в цій связі. Тоість, якшо у нас є модель Пост і модель Камєнтік, то модель Пост може вліять на Камєнтікі, а от модель Камєнтік вже нічо не може зробити з Постом. Тут таблічка Пост - главна, а таблічка Камєнтік - просто прив’язана до неї.
В общєм, модель - це такий удобний клас, в якому заникані всі запроси до бази даних. Ти визиваєш метод моделі, а получаєш - масив (або не масив, а тільки один його елємєнт) з запісями з бази даних. Або визиваєш другий мєтод і удаляєш/обновляєш/создаєш рядочки в базі.