Quantcast
Channel: A Techie's Journey Through Life …
Browsing latest articles
Browse All 10 View Live

Ad vs. Content :: Profitability vs. Readability

For quite a while, i am totally unhappy with the readability of most of the web sites, especially the heavy traffic sites. Why they have to fill their pages with loads of craplandish ads. To add a...

View Article



Python fun # 1

i am starting this series (Python fun) as a log of my amazement along the way of learning Python. ….. To reverse a list or string X, X[::-1] It is actually a tricky application of Python’s built-in...

View Article

Python fun #2 : Input directly from a text file to a List (in 1 statement)

Assuming the text file(names.txt) has the data as strings separated by comma L = list(eval(open(‘names.txt’).readlines()[0])) what it is doing? It is inputting the whole file as a single string. It...

View Article

Python fun #3 : Directly Input from a text file to a processed 2-D list (in 1...

Suppose you have input file like this(triangle.txt) to use as input … This will create a nice table-like 2-D list, i.e. a list of lists. The member list(s) can be of variable size. You can modify the...

View Article

Python: Some Performance Scores

I just finished reading Sebastian Raschka’s analytic discussion of Pyhton tweaks where the author tested with Python version: 3.3.3 Now, as I am a huge “fan” of Pythonic 1-liners, I made a summary of...

View Article


Python fun #4: Create sorted list of all possible numbers using same digits...

Let’s say the number is 123. Then the statement: will create a sorted list of all possible numbers using ‘1’,’2′ and ‘3’. which is, [123, 132, 213, 231, 312, 321] What it is doing The part,...

View Article

Python fun #5 : Hi-performance RSS Content Downloader

[Disclaimer: In Python world, I am just a noobie. Sharing my experience along the way of learning. I am more than happy to hear from you.] I just completed a content downloader which grabs links from a...

View Article

একজন টিপিকাল বাবা

আমি জানি ফেসবুকে এইরকম “নিউজ”/শোক-স্ট্যাটাস প্রায়ই আসে। আমরাও গা-সওয়া হয়ে গেছে। তোমার ওমুকে মারা গেছে, আমি কি করতে পারি? ফাস্ট লাইফ, ফাস্ট স্ক্রলিং-ডাউন … তবে আমার একটু বাড়তি কথা বলার আছে … বাপ থাকতে...

View Article


pep8_tonizer on for Notepad++ : Make your Python code PEP8-compliant on editor

[ Please take note that this is still in beta phase. In other words, it still has issues.] This script can be used to make python code, that is being edited on Notepad++,  to comply with infamous PEP8...

View Article


How to become a programmer, or the art of Googling well

Originally posted on okepi: *Note: Please read all italicized technical words as if they were in a foreign language. The fall semester of my senior year, I was having some serious self-confidence...

View Article
Browsing latest articles
Browse All 10 View Live




Latest Images