Skip to main content

New Python Users Group in Lebanon LIPUG

Users of the Python programming language meet periodically in so-called Python User Groups. Intermediate and advanced users share how they use the language and learn new tricks; they also welcome beginners and help them step in. It is a great place to ask for help and socialize with other people with a similar interest. Meetings are usually once every month, they are very informal and open to everyone.


The Lebanese Python Users Group is an online group, hosted at github to share, exchange ideas, howtos, snipets, ... in many fields of the Python ecosystem


* Functional paradigm

* OOP Object paradigm

* Reactive programming

* Data Science

* Machine learning

All person and all ideas are welcome.


This group will start with the students of the ISSAE Cnam Liban

Comments

Popular posts from this blog

Setting up MySQL SSL and secure connections

There are different articles on how to setup MySQL with SSL but it’s sometimes difficult to end up with a good simple one. Usually, setting up MySQL SSL is not really a smooth process due to such factors like “it’s not your day”, something is broken apparently or the documentation lies... Read this article : Setting up MySQL SSL and secure connections Pre-requisite : Creating SSL Certificates and Keys Using openssl

HOWTO remove all dangling commits from your git repository

A good explanation of the dangling ( fr: ballants) commits source tells you how they get created. git fsck --full   Checking object directories: 100% (300/300), done. Checking objects: 100% (10658/10658), done. dangling commit x.... dangling blob y.... dangling commit z.... dangling blob w.... dangling blob a.... dangling commit b.... How to quickly remove those? git reflog expire --expire=now --all git gc --prune=now