Modules in Python PRO

I have just completed to update the modules topic in my Python Fundamentals course. You can find its community version available for free personal usage at www.abelski.org. The slides are available for free download. The professional version is available at www.abelski.com.You can find below the new video clips I have just completed to create in […]

Functions in Python PRO

I have just completed to update the functions topic in my Python Fundamentals course. You can find its community version available for free personal usage at www.abelski.org. The slides are available for free download. The professional version is available at www.abelski.com. You can find below the new video clips I have just completed to create […]

Lambda Expressions in Python PRO

Using the lambda keyword we can define an anonymous function. Unlike using def, when using lambda we can have one single expression. We cannot have a block of statements. ob = lambda a,b,c:a+b+c print(ob(1,2,3)) The following video clip provides more explanation about lambda expressions in Python.

The nonlocal Keyword in Python PRO

Python 3.0 introduces the nonlocal new reserved word. Using this new reserved word we can assign directly to a variable with the same name in the outer scope (instead of creating a new variable). def a(): temp = 2 def b(): nonlocal temp temp = 4 print(“temp inside b “,temp) b() print(“temp inside a “,temp) […]

Conditional Functions in Python PRO

Python allows us to condition the definition of a function. Since the function is defined during the execution of the code itself we can use a conditional statement in order to define the function that fits most. recursive = True if recurcive: def factorial(n): print(“within recursive factorial”) if n==0: return 1 else: return factorial(n-1)*n else: […]

The Dart Programming Language PRO

Dart is Google’s new class based programming language. Code written in Dart can be compiled into Java Script. We can use Dart both for server side and client side (web browsers).

Stanford Introduction to Databases Free Course PRO

Stanford University allows people from all over the world to take the Introduction to Databases course over the web. The course is offered for free (for a limited period of time). This is a great opportunity for every person who is not familiar with how databases work to acquire this knowledge for free. I believe […]

The Google Store Chrome Zone in London BIZ

Google follows Apple and launches its first D2C store for selling chrome laptops and accessories. Seems that Google chose London as their entry point to the european market.

The PHP Yellow Pages INFO

The PHP Yellow Pages is a web interface through which you can find and verify PHP Zend Certified Engineers. Whether you hire a PHP developer or take a PHP course you can start with this web site in order to verify that your future developer or trainer has the sufficient professional background.

Steve Jobs Aspiration for Quality INFO

I have a Macbook and I have an iPad. Comparing with other similar products I have such as an IBM ThinkPad and a Samsung Galaxy device you cannot avoid the feeling of apple infinite aspiration to reach the highest quality possible. This core value is one of apple’s greatest contributions. The spirit of Steve Jobs will […]

Skip to content Update cookies preferences