- خواندن مستندات
- اطلاعات کلی در مورد معماری و الگوهای به کار رفته: شاید بد نباشه یه نگاهی به کتاب Python: Master the Art of Design Patterns بندازین. همون دو فصل اول هم مرور پایتون داره، هم یه سری الگو های کلی رو توضیح میده
- گیت: کلیاتی در مورد گیت بدونیم کافیه چون بعدا قراره یه محیط برنامه نویسی داشته باشیم که به ریپوزیتوری
متصل شده و از اونجا به بعد بیشتر با محیط گرافیکی همون آیدیای کارمون راه میافته ولی بهتره اطلاع داشته باشیم داستانش از چه قراره. این ویدیو فکر کنم خیلی سریع بتونه مسایل اصلی مورد نیاز رو بهمون یاد بده
- سورس فارسی: آموزش گیت جادی در فرادرس\
- در مورد استاندارهای هر فریم ورک یه کم کنجکاو باشیم. ببینم بقیه جامعه اون فریم ورک روی چه چیزی بیشتر کار میکنن یا چه جور استانداردهایی رو رعایت میکنن. . البته خود پایتون PEP8 که جز مواردیه که خیلیا روش تاکید میکنن . و همه جا با هاش روبرو میشیم
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
[ | |
{ | |
"key": "ctrl+. alt+.", | |
"command": "editor.action.insertSnippet", | |
"args": { "name": "markdown_collapse_details_code" } | |
} | |
] |
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
var x = $$('.sparkline')[4] | |
.attributes[1].nodeValue.replace('M','').split('L') | |
.map(x => +x.split(',')[1]) | |
var foll = $$(".DataPoint-info")[4].childNodes | |
var info = {"df": +foll[1].innerHTML, "va": +foll[0].data} | |
var w = info['df'] / (x[27] - x[0]) | |
var initial = info['va'] - info['df'] | |
var res = [initial] | |
var diff = []; |
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
#!/bin/zsh | |
## Add these lines to your shell rc file (./*shrc) | |
function wttr () { | |
# $ wttr | |
# $ wttr tehran | |
# $ wttr almaty | |
curl "http://wttr.in/$1"; | |
curl "http://v2.wttr.in/$1"; | |
} |
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
echo -e "\033[31;6m \033[0m" | |
echo -e "\033[31;6m \033[0m" | |
echo -e "\033[31;6m \033[0m" | |
echo -e "\033[31;6m ## \033[0m" | |
echo -e "\033[31;6m ### \033[0m" | |
echo -e "\033[31;6m ###** #########*####**** \033[0m" | |
echo -e "\033[31;6m ## ############********* #* \033[0m" | |
echo -e "\033[31;6m *######***** |
-
Learn
git
:- سورس فارسی: آموزش گیت جادی در فرادرس
- توضیحات خلاصه ولی تقریبا تمام مفاهیم توضیح داده شده از این لینک. برای استفاده از IDE ها شاید لازم نباشه همه مفاهیم و با کامند لاین یاد بگیریم ولی باعث میشه حداقل بدونیم چه کارها و سناریوهایی میشه با گیت پیاده سازی کرد
- برای استفاده از گیت، سایت gitlab.com را تست کنین. امکان ایجاد ریپوزیتوری خصوصی هم داره .
-
python:
I hereby claim:
- I am iamvee on github.
- I am iamv (https://keybase.io/iamv) on keybase.
- I have a public key whose fingerprint is 4696 AA56 0926 C327 58A1 6173 A6CC 70DA 3AD2 8FBB
To claim this, I am signing this object:
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/env python | |
""" | |
usage: | |
$ python timer.py -t 00:01:20 | |
""" | |
import sys | |
import time | |
import math | |
import datetime |
NewerOlder