23 – YouTube Data API – Comment Threads- insert function
This is article 23 of the YouTube API With PHP series. The insert function creates a new top-level comment. To add a reply to an [...]
View Article24 – YouTube Data API – Comment Threads- update function
This is article 24 of the YouTube API With PHP series. The update function modifies the top-level comment in a comment thread. This call requires [...]
View Article25 – YouTube Data API – Comments – insert function
This is article 25 of the YouTube API With PHP series. A comment resource contains information about a single YouTube comment. A comment resource can [...]
View Article26 – YouTube Data API – Comments – insert function
This is article 26 of the YouTube API With PHP series. The insert function creates a reply to an existing comment. To create a top-level [...]
View Article18 – YouTube Data API – Channel Sections – list function
This is article 18 of the YouTube API With PHP series. A ChannelSection resource contains information about a set of videos that a channel has [...]
View Article19 – YouTube Data API – Channel Sections – insert function
This is article 19 of the YouTube API With PHP series. The insert function adds a channel section to the authenticated user’s channel. A channel [...]
View Article27 – YouTube Data API – Comments – update function
This is article 27 of the YouTube API With PHP series. The update function modifies a Comment. This requires user authentication as you can only [...]
View Article28 – YouTube Data API – Comments – markAsSpam function
This is article 28 of the YouTube API With PHP series. markAsSpam function expresses the current user’s opinion that one or more comments should be [...]
View Article29 – YouTube Data API – Comments – setModerationStatus function
This is article 29 of the YouTube API With PHP series. This function sets the moderation status of one or more comments. The API request [...]
View Article30 – YouTube Data API – Comments – delete function
This is article 30 of the YouTube API With PHP series. The delete function deletes a comment either posted by the current user, or posted [...]
View Article31 – YouTube Data API – Guide Categories – list function
This is article 31 of the YouTube API With PHP series. A GuideCategory resource identifies a category that YouTube algorithmically assigns based on a channel’s [...]
View ArticlePython 2.7 – Fundamentals – Collections – Tuples
Tuples are very similar to lists, except that they are immutable. In other words, once a tuple is created you cannot modify it in any [...]
View ArticlePython 2.7 – Fundamentals – Collections – Sets
A set is an unordered collection of mixed data types. No duplicates can be there in a set. Sets are declared by enclosing the items [...]
View ArticlePython 2.7 – Fundamentals – Collections – Dictionaries
Just like a set, a dictionary is an unordered collection. A dictionary represents a collection of key:value pairs. In other words, we can use a [...]
View ArticlePython 2.7 – Fundamentals – Basic Input & Output
The input() function Python has numerous GUI libraries which can create complex user interfaces, but within the core language it has a single input() function [...]
View ArticleFirefox & Chrome browsers have issues with localhost domains with .dev extension
This issue is particularly relevant for those who set up virtual hosts in their development machines, to work with multiple websites under Apache or other [...]
View ArticlePython 2.7 – Fundamentals – Control Structures
Now that we have finished looking at data types, lets look at writing logic in Python. A control structure is a language construct which controls [...]
View ArticlePython 2.7 – Fundamentals – Exceptions
Using Source Files Till now we have been using the python interpreter and entering code directly on the command line. From this point, we will [...]
View ArticlePython 2.7 – Fundamentals – Files & Directories – Directory Management
Using import We have examined the basic concepts in core Python. Python has a lot more functionality apart from that. The extra functionality is divided [...]
View ArticlePython 2.7 – Fundamentals – Functions
Sometimes you have some tasks in Python which are repetitive in nature. For instance the steps to calculate the sale price of a product requires [...]
View Article