«Сила воли», Келли Макгонигал→ http://b23.ru/hm6s- «Искусство визуализации в бизнесе», Нейтан Яу → http://b23.ru/hm6e
- «Позитивная иррациональность», Дэн Ариели → http://b23.ru/hmzu
- «Естественный бег», Дэнни Эбшир и Брайан Метцлер → http://b23.ru/hmzt
- «Рожденный бежать», Кристофер Макдугл → http://b23.ru/hm4n
«Стив Джобс», Уолтер Айзексон→ http://b23.ru/hm4l«Бэтман Аполло», Виктор Пелевин→ http://b23.ru/hm46Мобильное зарядное устройство (USB, на 5000+ mAh).Что-то типа такого: http://b23.ru/hm6jBluetooth аудио адаптер→ http://b23.ru/hm89- Европейский переходник для блока питания от макбука: http://b23.ru/hm8m
This file contains 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
PY2 = sys.version_info[0] == 2 | |
if not PY2: | |
strtype = str | |
chrtype = chr | |
else: | |
strtype = unicode | |
chrtype = unichr |
This file contains 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
import time | |
start_time = time.time() | |
time.sleep(1) | |
elapsed_time = time.time() - start_time | |
print(elapsed_time) |
This file contains 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
using System; | |
using System.Management; | |
namespace UniqueSystemIdentifier | |
{ | |
class Program | |
{ | |
private static string GetSystemID() | |
{ | |
var search = new ManagementObjectSearcher(String.Format("SELECT * FROM Win32_Processor")); |
This file contains 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
for /r %%v in (*.jpg) do exiftool -all= -filename="%%~nv_clean%%~xv" "%%v" |
This file contains 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
- title: "August: Osage County" | |
release: 2013 | |
date: "January 14, 2014" | |
status: "want" | |
comment: | |
- title: "Gravity" | |
release: 2013 | |
date: "January 10, 2014" | |
status: "liked" |
This is quick and dirty fix for coursera-dl script. Put courseradownloader.py
into site-packages
and execute like this:
python -m courseradownloader -u [email protected] -p supersecret -d . behavioralecon-002
This file contains 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
{ | |
"Statement": [ | |
{ | |
"Effect": "Allow", | |
"Action": "s3:ListAllMyBuckets", | |
"Resource": "arn:aws:s3:::*" | |
}, | |
{ | |
"Effect": "Allow", | |
"Action": "s3:*", |
- blink(1) → http://buy.thingm.com/blink1
- Мы — это наш мозг, Дик Свааб → http://www.ozon.ru/context/detail/id/23894743/
- Как работает мозг, Рита Картер → http://www.ozon.ru/context/detail/id/26428785/
- Искусство визуализации в бизнесе, Нейтан Яу → http://b23.ru/hm6e
- Естественный бег, Дэнни Эбшир и Брайан Метцлер → http://b23.ru/hmzt
- Информация. История. Теория. Поток, Джеймс Глик → http://b23.ru/69nz
- [RESERVED] Alfred Powerpack → http://alfredapp.com
- Hazel → http://noodlesoft.com
This file contains 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
<b>Update (2014):</b> Это статья 2007 года, которая, к моему удивлению, до сих пор пользуется спросом. По этой причине я обновил её в соответствии с новыми правилами оформления постов на Хабре, и добавил подсветку синтаксиса для примеров кода. Если кому-то захочется что-то добавить или исправить, исходник текста с хабра-разметкой выложен в открытый доступ: https://gist.github.com/dreikanter/2b4ee996d7a775e707d7 | |
<h4>Аннотация от переводчика</h4> | |
PHP — один из самых широко распространенных языков разработки веб-приложений и при этом один из самых спорных. Я очень часто видел негативное отношение к этой технологии, да и недостатки, провоцирующие это отношение — не для кого не являются секретом. Тем не менее, PHP активно эволюционирует и во многих отношениях постепенно становитс лучше. Одним из серьезных шагов его развития, на мой взгляд, является появление MVC-фреймворков, призванных систематизировать процесс разработки веб-приложений и приучить к порядку разработчиков, которым зачастую здорово не хватает силы |