Skip to content

Instantly share code, notes, and snippets.

View ijharulislam's full-sized avatar

ijhar ijharulislam

  • Full-stack Web Developer
  • Dhaka, Bangladesh.
View GitHub Profile
তথাকথিত সালাফী আলেমদের আকিদাগত মতবিরোধ (পর্ব-১)◄█▓▒░
ইসলামের মূল হলো বিশ্বাস। আল্লাহ সম্পর্কে বিশ্বাস।
আল্রাহর নবী-রাসূল, ফেরেশতা ও পরকাল সম্পর্কে বিশ্বাস।
█►https://facebook.com/notes/324360791046673
তথাকথিত সালাফী আলেমদের আকিদাগত মতবিরোধ (পর্ব-২)◄█▓▒░
আল্লাহ তায়ালা আরশে বসে আছেন (নাউযুবিল্লাহ)
আরশে বসার ব্যাপারে ইহুদী আকিদা:
█►https://facebook.com/notes/324487681033984
@ijharulislam
ijharulislam / html_input_dict.py
Created August 10, 2018 11:53 — forked from MasterAlish/html_input_dict.py
Django html input array and dict
def get_html_input_dict(self, query_dict, param):
dictionary = {}
regex = re.compile('%s\[([\w\d_]+)\]' % param)
for key, value in query_dict.items():
match = regex.match(key)
if match:
inner_key = match.group(1)
dictionary[inner_key] = value
return dictionary
@ijharulislam
ijharulislam / infb.py
Created October 1, 2017 04:26 — forked from meznak/infb.py
A script to scrape information from your facebook friends.
#!/usr/bin/python
'''
InFB - Information Facebook
Usage: infb.py user@domain.tld password
infb.py
http://ruel.me

A Few Useful Things to Know about Machine Learning

The paper presents some key lessons and "folk wisdom" that machine learning researchers and practitioners have learnt from experience and which are hard to find in textbooks.

1. Learning = Representation + Evaluation + Optimization

All machine learning algorithms have three components:

  • Representation for a learner is the set if classifiers/functions that can be possibly learnt. This set is called hypothesis space. If a function is not in hypothesis space, it can not be learnt.
  • Evaluation function tells how good the machine learning model is.
  • Optimisation is the method to search for the most optimal learning model.