- Install and implement scraping tools individually and together
- Run spiders to crawl websites for data from the cloud
- Work with emulators and drivers to extract data from scripted sites
Wednesday, 13 March 2019
Deep Learning with Python Paperback – Import, 30 Nov 2017 by Francois Chollet
Irawen March 13, 2019 Python No comments
intelligence problems, such as image classification, speech recognition,
text classification, question answering, text-to-speech, and optical
character recognition.
Deep Learning with Python is structured around a series of practical
code examples that illustrate each new concept introduced and
demonstrate best practices. By the time you reach the end of this book,
you will have become a Keras expert and will be able to apply deep
learning in your own projects.
KEY FEATURES
• In-depth introduction to Keras
• Teaches the difference between Deep Learning and AI
ABOUT THE TECHNOLOGY
Deep learning is the technology behind photo tagging systems at
Facebook and Google, self-driving cars, speech recognition systems on
your smartphone, and much more.
AUTHOR BIO
Francois Chollet is the author of Keras, one of the most widely used
libraries for deep learning in Python. He has been working with deep neural
networks since 2012. Francois is currently doing deep learning research at
Google. He blogs about deep learning at blog.keras.io.
Tuesday, 12 March 2019
Learning PHP, MySQL & JavaScript, 5th Edition With jQuery, CSS & HTML5 (Learning PHP, MYSQL, Javascript, CSS & HTML5)
Irawen March 12, 2019 HTML&CSS, Java, PHP No comments
- Learn PHP in-depth, along with the basics of object-oriented programming
- Explore MySQL, from database structure to complex queries
- Use the MySQLi Extension, PHP's improved MySQL interface
- Create dynamic PHP web pages that tailor themselves to the user
- Manage cookies and sessions and maintain a high level of security
- Master the JavaScript language-and enhance it with jQuery
- Use Ajax calls for background browser/server communication
- Acquire CSS2 and CSS3 skills for professionally styling your web pages
- Implement all of the new HTML5 features, including geolocation, audio, video and the canvas
Learning PHP, MySQL & JavaScript with j Query, CSS & HTML5 Paperback – 2015 by Robin Nixon
PDF Download :
Learning PHP, MySQL & JavaScript with j Query, CSS & HTML5 Paperback – 2015 by Robin Nixon
Java XML and JSON, 2nd Edition Document Processing for Java SE
Irawen March 12, 2019 Java No comments
- Master the XML language
- Create, validate, parse, and transform XML documents
- Apply Java’s SAX, DOM, StAX, XPath, and XSLT APIs
- Master the JSON format for serializing and transmitting data
- Code against third-party APIs such as Jackson, mJson, Gson, JsonPath
- Master Oracle’s JSON-P API in a Java SE context
Working with Dictionary in Python
In this blog you will learn the basics of how to use the Python dictionary.
By the end of the tutorial you will be able to - Create Dictionaries - Get values in a Dictionary - Add and delete elements in a Dictionary - To and For Loops in a Dictionary
For example, you can have the fields “city”, “name,” and “food” for keys in a dictionary and assign the key, value pairs to the dictionary variable person1_information.
>>> type(person1_information)
{'city': 'San Francisco', 'name': 'Sam', 'food': 'shrimps'}
So, in the following example, a dictionary is initialized with keys “city”, “name,” and “food” and you can retrieve the value corresponding to the key “city.”
>>> person1_information = {'city': 'San Francisco', 'name': 'Sam', "food":"shrimps"}
>>> print the dictionary
>>> print(person1_information["city"])
San Francisco
>>> alphabets = {1: ‘a’}
>>> # get the value with key 1
>>> print(alphabets.get(1))
'a'
>>> # get the value with key 2. Pass “default” as default. Since key 2 does not exist, you get “default” as the return value.
>>> print(alphabets.get(2, "default"))
'default'
>>> # get the value with key 2 through direct referencing
>>> print(alphabets[2])
Traceback (most recent call last):
File "stdin", line 1, in module KeyError: 2
>>> for k, v in person1_information.items():
... print("key is: %s" % k)
... print("value is: %s" % v)
... print("###########################")
... key is: food
value is: shrimps
###########################
key is: city
value is: San Francisco
###########################
key is: name
value is: Sam
###########################
>>> person1_information = {}
>>> # add the key, value information with key “city”
>>> person1_information["city"] = "San Francisco"
>>> # print the present person1_information
>>> print(person1_information)
{'city': 'San Francisco'}
>>> # add another key, value information with key “name”
>>> person1_information["name"] = "Sam"
>>> # print the present dictionary
>>> print(person1_information)
{'city': 'San Francisco', 'name': 'Sam'}
>>> # add another key, value information with key “food”
>>> person1_information["food"] = "shrimps"
>>> # print the present dictionary
>>> print(person1_information)
{'city': 'San Francisco', 'name': 'Sam', 'food': 'shrimps'}
>>> person1_information = {'city': 'San Francisco'}
>>> # print it and check the present elements in the dictionary
>>> print(person1_information)
{'city': 'San Francisco'}
>>> # have a different dictionary
>>> remaining_information = {'name': 'Sam', "food": "shrimps"}
>>> # add the second dictionary remaining_information to personal1_information using the update method
>>> person1_information.update(remaining_information)
>>> # print the current dictionary
>>> print(person1_information)
{'city': 'San Francisco', 'name': 'Sam', 'food': 'shrimps'}
>>> person1_information = {'city': 'San Francisco', 'name': 'Sam', "food": "shrimps"}
>>> # delete the key, value pair with the key “food”
>>> del person1_information["food"]
>>> # print the present personal1_information. Note that the key, value pair “food”: “shrimps” is not there anymore.
>>> print(person1_information)
{'city': 'San Francisco', 'name': 'Sam'}
>>> person1_information = {'city': 'San Francisco', 'name': 'Sam', "food": "shrimps"}
>>> # deleting a non existent key gives key error.
>>> del person1_information["non_existent_key"]
Traceback (most recent call last):
File "", line 1, in
KeyError: 'non_existent_key'
>>> person1_information = {'city': 'San Francisco', 'name': 'Sam', "food": "shrimps"}
>>> # remove a key, value pair with key “food” and default value None
>>> print(person1_information.pop("food", None))
'Shrimps'
>>> # print the updated dictionary. Note that the key “food” is not present anymore
>>> print(person1_information)
{'city': 'San Francisco', 'name': 'Sam'}
>>> # try to delete a nonexistent key. This will return None as None is given as the default value.
>>> print(person1_information.pop("food", None))
None
Saturday, 9 March 2019
Working with Lists in Python
Working with Lists in Python – A Complete Beginner’s Guide
If you learn only one data structure in Python, make it a list.
Why? Because almost everything you build in Python—apps, scripts, automation, data analysis—relies on lists.
Lists are:
-
Easy to use
-
Extremely powerful
-
Used everywhere
Let’s master them step by step 👇
What is a List in Python?
A list is a collection of items stored in a single variable.
numbers = [1, 2, 3, 4, 5]
A list can store:
-
Integers
-
Strings
-
Floats
-
Even other lists
data = [10, "Python", 3.14, True]
Accessing List Elements
Each element has an index (starting from 0).
langs = ["Python", "Java", "C++"]print(langs[0]) # Pythonprint(langs[2]) # C++
Negative Indexing
print(langs[-1]) # C++
Modifying List Values
Lists are mutable (you can change them).
langs[1] = "JavaScript"print(langs)
Output:
['Python', 'JavaScript', 'C++']
Common List Operations
1. Adding Elements
lst = [1, 2]lst.append(3)
lst.insert(0, 99)
2. Removing Elements
lst.remove(99)
lst.pop()
del lst[0]
3. Length of List
len(lst)
Looping Through a List
Basic Loop
for item in lst:print(item)
With Index
for i in range(len(lst)):print(i, lst[i])
Slicing Lists
Extract parts of a list:
nums = [10, 20, 30, 40, 50]print(nums[1:4])
Output:
[20, 30, 40]
Useful List Methods
| Method | Purpose |
|---|---|
| append() | Add at end |
| insert() | Add at index |
| remove() | Remove value |
| pop() | Remove last |
| sort() | Sort list |
| reverse() | Reverse |
| count() | Count value |
| index() | Find position |
Example:
nums.sort()nums.reverse()
List Comprehension (Power Feature)
One line instead of loops:
squares = [x*x for x in range(5)]print(squares)
Output:
[0, 1, 4, 9, 16]
Nested Lists (2D Lists)
matrix = [[1, 2],[3, 4]]print(matrix[1][0]) # 3
Used in:
-
Tables
-
Matrices
-
Game boards
Common Beginner Mistake
This does NOT modify the list:
arr = [1, 2, 3]for i in arr:i = i * 10print(arr)
Output:
[1, 2, 3]
Correct way:
for i in range(len(arr)):arr[i] *= 10
Why Lists Are So Important
Lists are used in:
-
Web scraping
-
Data science
-
Machine learning
-
Automation
-
Game development
-
APIs & JSON
If you know lists well, you already know 40% of Python.
Final Thoughts
Mastering lists means:
-
Cleaner code
-
Faster logic
-
Better problem-solving
Before learning:
-
NumPy
-
Pandas
-
Machine Learning
👉 First, become deadly with Python lists.
Because every advanced concept is built on top of them. 🚀
Android Application Development For Dummies
Irawen March 09, 2019 Android No comments
- Walks you through all the steps in developing applications for the Android platform, including the latest Android features like scrollable widgets, enhanced UI tools, social media integration, and new calendar and contact capabilities
- Starts off with downloading the SDK, then explains how to bring your applications to life and submit your work to the Android Market
- Includes real–world advice from expert programmers Donn Felker and Michael Burton, who break every aspect of the development process down into practical, digestible pieces
Popular Posts
-
Introduction Artificial intelligence is rapidly transforming industries, creating a growing demand for professionals who can design, buil...
-
What you'll learn Master the most up-to-date practical skills and knowledge that data scientists use in their daily roles Learn the to...
-
Microsoft Power BI Data Analyst Professional Certificate What you'll learn Learn to use Power BI to connect to data sources and transf...
-
Introduction Machine learning has become one of the most important technologies driving modern data science, artificial intelligence, and ...
-
In today’s digital world, learning to code isn’t just for software engineers — it’s a valuable skill across industries from data science t...
-
Code Explanation: 🔹 1. Creating a Tuple t = (1, 2, 3, 4) A tuple named t is created. It contains 4 elements: 1, 2, 3, 4. Tuples are immut...
-
What You’ll Learn Upon completing the module, you’ll be able to: Define and locate generative AI within the broader AI/ML spectrum Disting...
-
Learn to Program and Analyze Data with Python. Develop programs to gather, clean, analyze, and visualize data. Specialization - 5 course s...
-
In a world increasingly shaped by data, the demand for professionals who can make sense of it has never been higher. Businesses, governmen...
-
Explanation: 🔸 1. List Creation clcoding = [1, 2, 3] A list named clcoding is created. It contains three elements: 1, 2, and 3. Lists in ...






