Python developer, 5 years of experience

Joined November 2018
Photos and videos
Found a directory of software companies in Lebanon. I'll laboriously go through each of them hoping there is an opening for a python developer job. lebanonexportdirectory.com/e…

1
Python Developer retweeted
Here's a list of startups that raised gazillions and failed this year; it might help you feel better about crypto shitcoinland. πŸ˜‚ My favorite: EZhome - subscription-based lawn-care services (raised $20M @ $102M valuation). πŸ‘ŒπŸ˜‚ inc.com/business-insider/25-…
3
24
53
Python Developer retweeted
Contribute to our fundraising drive by becoming a recurring supporting member. It's just $99/year. python.org/psf/donations/201… Please RT! #idonatedtothepsf #ijoinedthepsf
18
23
Python Developer retweeted
We are hiring #Egypt #Hiring
2
1
Python Developer retweeted
11 Nov 2018
Open Source Software Foundations: Not Totally Boring, Actually Super Awesome – JonΒ Galloway technology-arena.com/index.p…

1
Python Developer retweeted
Your coding Job is ready and waiting! If you are a software developer, you are not allowed to be unemployed #learning #jobsearch #digitaltransformation lnkd.in/g9m-vbZ
1
3
Python Developer retweeted
11 Nov 2018
Calling Software Engineers technology-arena.com/index.p…

1
Today marks new chapter in my life. I am excited to share some personal news and work updates facebook.com/ramy.raoof/post…

2
7
Python Developer retweeted
Does your project need BOTH Python and R? 1) Call R functions from Python with rpy2 and %R magic (bit.ly/2HinRGt) OR 2) Call Python functions from R using reticulate package (bit.ly/2GIjtiS)
11
17
Python Developer retweeted
Print #Pandas Cheat Sheets: 1) basic operations: assets.datacamp.com/blog_ass… 2) tidy data & data wrangling: github.com/pandas-dev/pandas… #pythontip

15
46
Python Developer retweeted
list.sort() and sorted() accept key argument to specify a function which returns what you would like your items sorted by: mylst.sort(key = lambda x: x[-1]) sorted(mylst, key = lambda x: len(x))
2
17
41
Python Developer retweeted
#Pandas: If you know in advance which columns of your data you’d like to use, you can pass them to the usecols argument of pd.read_csv, pd.read_table, etc.
17
48
Python Developer retweeted
Call a function until a sentinel value is returned with iter() lines = [] with open('file.txt') as fp: for line in iter(fp.readline, ''): lines.append(line.strip()) stackoverflow.com/questions/… #python

5
19
Python Developer retweeted
Unhappy with != inequality operator? FLUFL Uncle Barry will help! 😈 >>> from __future__ import barry_as_FLUFL >>> 1 <> 2 True Happy #Easter and the belated start of the month! python.org/dev/peps/pep-0401…
8
17
Python Developer retweeted
You may know that >>> import this prints the Zen of Python. But have you ever looked into its this.py source code? github.com/python/cpython/bl…
3
19
42
Python Developer retweeted
Speed-up your array-oriented, math-heavy code with numba using @jit (= just-in-time compilation) decorator. See examples at numba.pydata.org/ #numba #deeplearning #pythontip

11
16
Python Developer retweeted
One more way to combine a list of lists into a single set: >>> lol = [['a', 'b', 'c'], ['b', 'c', 'd'], ['d', 'e']] >>> set().union(*lol) set(['a', 'c', 'b', 'e', 'd']) #pythontip from @raymondh
19
41