Skip to content

Instantly share code, notes, and snippets.

View bliof's full-sized avatar
🐗
█◗

Aleksandar Ivanov bliof

🐗
█◗
View GitHub Profile

Ето малко бележки след като прегледах задачите за упражнение:

Форматиране на кода

Започвате да форматирате кода сравнително добре, но има още какво да се желае:

  • внимавайте индентацията да е консистентна
#include <stdio.h>

int main() {
<html>
<style>
ul {
columns: 2;
width: 400px;
list-style: none;
padding-bottom: 50px;
}
ul.normal {
@bliof
bliof / diablo2-monsters
Last active June 18, 2021 16:07
Diablo 2 Monsters
This file has been truncated, but you can view the full file.
Storm Froth the Unclean
Spine Wing the Hammer
Foul Kill the Dark
Ooze Froth
Dread Call
Ooze Rend the Howler
Vile Froth the Hungry
Gore Brow the Slasher
Puke Widow the Unclean
Moon Crow the Dark
#!/bin/bash
set -e
root_dir=`pwd`
cd $root_dir
rm -rf tmp
rm -rf results
set laststatus=2
let g:airline#extensions#tabline#enabled = 1
let g:airline#extensions#tabline#fnamemod = ':t'
let g:airline#extensions#tabline#buffer_idx_mode = 1
nmap <leader>1 <Plug>AirlineSelectTab1
nmap <leader>2 <Plug>AirlineSelectTab2
nmap <leader>3 <Plug>AirlineSelectTab3
nmap <leader>4 <Plug>AirlineSelectTab4
nmap <leader>5 <Plug>AirlineSelectTab5
@bliof
bliof / download-twitch-video.sh
Created March 8, 2015 16:23
Script for downloading video from twich.tv
#!/bin/bash
# Example:
# http://www.twitch.tv/aziliann/b/633376838
# ./download-twich-video.sh 633376838
id=$1
dir=$(pwd)
tmp_dir=".tmp-dtv-files"
video_parts_dir="$tmp_dir/$id"