- [feature] Добавить клипы в меню "Категории".
- [feature] Сделать красивые URL'ы.
- [UI fix] Спрятать флаги под dropdown menu.
- [feature] Сделать коллекцию стандартных тегов.
- [feature] Сделать добавление никнейма.
- [UI feature] Сделать отображение текущего параметра отображения результатов (ищем в жанре "Боевик").
- [UI feature] Сделать страницу About.
- [UI feature] Сделать тур с подсказками для первого посещения сайта.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Device | |
@@count_device = 0 | |
@@current_power = 0 | |
@@devices = [] | |
attr_accessor :max_power, :power, :timer, :break_time | |
def initialize(power = 0, timer = 0, break_time = 0) | |
@default_power, @power = power, power | |
@default_timer, @timer = timer, timer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def menu | |
puts '1) Професiограми' | |
puts '2) Акмеограми' | |
puts '3) Пiдбiр найкращої спецiальностi' | |
puts '4) Пiдбiр найкращого кандидата' | |
puts '5) Пiдбiр вiдповiдностей' | |
puts '6) Вихiд' | |
end | |
def professiogram |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File.open(ARGV[0]).each_line do |line| | |
line.split(' ').collect { |i| i.to_f }.sort.each do |item| | |
print "#{item} " | |
end | |
puts | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'Qt' | |
class Main < Qt::Dialog | |
slots 'change_title()', 'change_size()', 'set_icon()' | |
def initialize(parent = nil) | |
super(parent) | |
title_label = Qt::Label.new('Window title: ') | |
@title_edit = Qt::LineEdit.new | |
@title_button = Qt::PushButton.new('Change title!') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 application_controller.rb | |
120 films_controller.rb | |
136 total | |
26 edit.html.erb | |
41 index.html.erb | |
79 new.html.erb | |
70 search.html.erb | |
4 show.html.erb | |
220 total |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.video-item-delete{width:30px;height:25px;position:absolute;background:transparent;border:none!important;border-top-right-radius:10px;border-bottom-left-radius:5px;top:0;color:#fff;left:150px;margin-left:5px;margin-right:5px;.faposition:relative;top:1px;left:1px} | |
######################### | |
.video-item-delete { | |
width: 30px; | |
height: 25px; | |
position: absolute; | |
background: transparent; | |
border: none !important; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## notations.rb | |
## by Maksym Tymoshyk | |
## 27.09.15 | |
## 8 -> 16 | |
puts "PART I: 8 -> 16" | |
print "Enter digit: "; input = gets.chomp | |
# Oneliner is for faggots :/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Вариант №13 | |
#include <iostream> | |
#include <cmath> | |
using namespace std; | |
class Rectangle { | |
private: | |
int _x1, _y1, _x2, _y2, _x3, _y3, _x4, _y4; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
OlderNewer