Skip to content

Instantly share code, notes, and snippets.

View Cherry-Pie's full-sized avatar
🍰

Yaro, the Sofa King Cherry-Pie

🍰
View GitHub Profile
@Cherry-Pie
Cherry-Pie / radipu.md
Last active November 24, 2015 00:20
T-T #2

Q:

В переменную $filename записано имя загруженного файла. Получите расширение файла.

A:

$extension = pathinfo($filename, PATHINFO_EXTENSION);

@Cherry-Pie
Cherry-Pie / up.sh
Created October 2, 2015 23:20
move all to parent directory
find . -maxdepth 1 -exec mv {} .. \;
@Cherry-Pie
Cherry-Pie / html-css.md
Last active September 12, 2016 15:12
T-T #1

HTML + CSS [1 / 4]

Q:

Есть блок с шириной 470px. Нужно вывести в нем список из 9 квадратов зеленого цвета размером 150px * 150px с расстоянием друг от друга по 10px. Схема изображена на рисунке. Использовать нужно приведенный ниже html код. Фактически от вас требуется написать css.

pic

<style>
/* тут будет ваш css код */
@Cherry-Pie
Cherry-Pie / zombie.sh
Created August 3, 2015 08:41
kill zombie processes
kill -HUP $(ps -A -ostat,ppid | grep -e '[zZ]'| awk '{ print $2 }')