1)Для упорядывания элементов 2)Для комментариев
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
| setxkbmap "us,ru" ",winkeys" "grp:alt_shift_toggle,grp_led:scroll" |
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
| /*Файл настроек терминал uxrvt-unicode*/ | |
| ! Цветовая схема | |
| ! Normal | |
| ! color0 black | |
| ! color1 red | |
| ! color2 green | |
| ! color3 yellow | |
| ! color4 blue (синий) |
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
| -- Standard awesome library | |
| local gears = require("gears") | |
| local awful = require("awful") | |
| local lain = require("lain") | |
| local vicious = require("vicious") | |
| require("awful.autofocus") | |
| -- Widget and layout library | |
| local wibox = require("wibox") | |
| local net_widgets = require("net_widgets") | |
| -- Theme handling library |
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
| Btrfs (B-tree FS, «Better FS» или «Butter FS») — файловая система для Linux, основанная на структурах B-деревьев и работающая по принципу «копирование при записи» (copy-on-write). | |
| ══════════════════════════════════════════ | |
| КОМАНДЫ, КОТОРЫЕ ИСПОЛЬЗОВАЛИСЬ НА ВЕБИНАРЕ | |
| ══════════════════════════════════════════ | |
| ****************** Комп приемник *********************** | |
| mkfs.btrfs -f -L WD /dev/sda3 | |
| mount /dev/sda3 /mnt | |
| btrfs subvolume create /mnt/sv_root |
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
| 1) начать с видеокурса "Специалист. HTML и CSS. Уровень 1 + Уровень 2 + Уровень 3. Видеокурс (2016) PCRec", он есть на руторе. Лично я уже работая в веб-студии еще по ихнему уже старому видеокурсу (дело было в 2013 или 2014 году) очень сильно укрепил теорию и вырос как веб-разработчик раз в 10. Более того, я своему брату их скинул, и смотивировал их смотреть, пара месяцев и его взяли к нам в веб-студию на работу. | |
| 2) сверстать 5-10 PSD макетов (в интернете их тьма). Это обязательно нужно сделать чтоб набить руку. Несколько первых не адаптивно, а остальные уже с адаптивкой. На первых 2-5 макетах я бы не советовал мучать себя сборщиками проекта (gulp/grunt) и препроцессорами, т.к. изначально важно именно научится верстать, пусть и медленно (ибо сборщики проекта и препроцессоры нужны в большей степени для ускорения работы и минимизации рутины). | |
| Позже эти сверстанные макеты можно (и нужно) прикрепить к портфолио. Лично я как сверстал 3 макета, так и устроился на работу, но дело было аж 2012 году, тогда верстка ку |
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
| #! usr/bin/bash /* Используется интепритатор bash */ | |
| # Скачивание и запись образа Archlinux на флешку.Где /dev/sdb это ваша флешка. | |
| $ sudo su | |
| # wget -O - http://mirror.yandex.ru/archlinux/iso/2017.07.01/archlinux-2017.07.01-x86_64.iso > /dev/sdb | |
| # sync | |
| # systemctl reboot | |
| /* Вошли в систему. */ | |
| root@archiso ~ # loadkeys us | |
| # ping -c 3 8.8.8.8 | |
| # fdisk -l |
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 strict; | |
| sub on_start { | |
| my ($self) = @_; | |
| $self->{copy_cmd} = $self->x_resource('clipboard.copycmd') || 'xsel -ib'; | |
| $self->{paste_cmd} = $self->x_resource('clipboard.pastecmd') || 'xsel -ob'; | |
| if ($self->x_resource('clipboard.autocopy') eq 'true') { | |
| $self->enable(sel_grab => \&sel_grab); |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>flex-box</title> | |
| <link rel="stylesheet" href="style.css"> | |
| </head> | |
| <body> | |
| <div class="top"></div> | |
| <div class="grid"> |
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
| 1)$ mysql -u root -p | |
| 2)mysql> CREATE DATABASE wp_database; | |
| mysql> GRANT ALL PRIVILEGES ON wp_database.* TO 'wp_user'@'localhost' IDENTIFIED BY 'password'; | |
| mysql> FLUSH PRIVILEGES; | |
| mysql> EXIT; | |
| 3)$ sudo mv wp-config-sample.php wp-config.php | |
| 4)$ sudo vi wp-config.php |
NewerOlder