clear
— Очистить консоль
pwd
— Показать текущий каталогls
- Показать файлы в данной папке, кроме скрытыхls -la
- Просмотр списком, включая скрытые и права доступаб размер, дату создания- `ls -f — Показать файлы в данной папке, включая и скрытые
#!/bin/bash | |
# Examples taken from https://opensource.com/article/17/6/ffmpeg-convert-media-file-formats | |
# Convert a webm file to a matroska format with a vp9 encoding and keeping the same audio encoding. | |
# Also changes the bitrate to 1Mb/s | |
ffmpeg -i input.webm -c:a copy -c:v vp9 -b:v 1M output.mkv | |
# Same but change the frame rate to 30 FPS and dropping the bitrate conversion | |
ffmpeg -i input.webm -c:a copy -c:v vp9 -r 30 output.mkv | |
# Same but only setting the video size to a predetermined format HD 720 in this case |
Patch mode allows you to stage parts of a changed file, instead of the entire file. This allows you to make concise, well-crafted commits that make for an easier to read history. This feature can improve the quality of the commits. It also makes it easy to remove parts of the changes in a file that were only there for debugging purposes - prior to the commit without having to go back to the editor.
It allows you to see the changes (delta) to the code that you are trying to add, and lets you add them (or not) separately from each other using an interactive prompt. Here's how to use it:
from the command line, either use
I would start by installing the Sublime Package Control manager. This tool will allow you to install the other plugins without having to clone git repositories and copying them to the correct folders. Instead you will the command drop-down menu with "Ctrl + Shift + P" and then scrolling down until you see "Package Control: Install Package". A search bar will pop up and you can type the name of a package, click on the name and it will self install. If you have problems setting any of these up email me at [email protected]
Sublime Package Control - Install this first. This tool will allow you to easily install most (if not all) the other plugins in this list. (Ctrl + Shift + P, then select Package Control: Install Package)
SublimeERB - This plugin auto creates the erb tags. (<% %>, <%= %>, etc.) (Ctrl +
Данный гист содержит описание существующих паттернов проектирования. Также возможны примеры на джаве.
Ruby | |
принципиальное различие скриптовых и “обычных” языков | |
3 принципа ООП | |
реализация множественного наследования в ruby | |
duck typing | |
многопоточность в ruby | |
Rails | |
что такое MVC и зачем это нужно | |
локига в контроллере, должна ли быть и почему | |
синхронные и асинхронные операции — предложить варианты решения |
Ruby | |
What is a class? - Каркас для объектов, содержит данные, методы, инстансы. | |
What is the difference between a class and a module? - Модуль - пространство имен, не может иметь экземпляров. | |
What is an object? - Экземпляр класса. | |
How would you declare and use a constructor in Ruby? | |
def initialize(some, data) | |
p "Initializer #{some} #{data}" | |
end |
1. принципиальное различие скриптовых и “обычных” языков | |
Скриптовый язык программирования — язык программирования, разработанный для записи «сценариев», | |
последовательностей операций, которые пользователь может выполнять на компьютере. | |
Интерпертируется с помощью интерпретатора. Имеет динамическую типизацию. | |
Интерпретация — пооператорный (покомандный, построчный) анализ, обработка и тут же выполнение исходной программы | |
или запроса (в отличие от компиляции, при которой программа транслируется без её выполнения)[2][3][4]. | |
2.Duck Typing |