My Programming Blog

?

Channel Reputation Rank

#254
?

Activity Status

Stale

last updated

According to the data and stats that were collected, 'My Programming Blog' channel has an excellent rank. Despite such a rank, the feed was last updated more than a year ago. In addition 'My Programming Blog' includes a significant share of images in comparison to the text content. The channel mostly uses medium-length articles along with sentence constructions of the basic readability level, which is a result indicating a well-crafted news inventory on the channel.

About 'My Programming Blog' Channel

by Anatoly Spektor

? Updates History Monthly Yearly
? Content Ratio
? Average Article Length

'My Programming Blog' has mostly short articles at the moment, however, they might have a great potential to develop their materials and quality in future.

short

long

? Readability Level

'My Programming Blog' provides texts of a basic readability level which can be quite comfortable for a wide audience to read and understand.

advanced

basic

? Sentiment Analysis

'My Programming Blog' contains texts with mostly positive attitude and expressions (e.g. it may include some favorable reviews or words of devotion to the subjects addressed on the channel).

positive

negative

Recent News

Unfortunately My Programming Blog has no news yet.

But you may check out related channels listed below.

SWT migration to GTK+ 3.x : Tracker Dilliemma

[...] them as the comment to this post, I appreciate any effort! I will keep you updated! Regards, Anatoly Tagged: cairo, GTK, GTK_ 2, INCLUDE_INFERIORS, patch, SWT, SWT Tracker, tracker widget [...]

SWT migration To GTK+3.x : 6 SWT – Cairo Patches (Eclipse Bugzilla)

[...] anything that you think is wrong, please let me know. Any feedback is appreciated! Regards, Anatoly Tagged: anatoly spektor, bugs, bugzilla, cairo, Eclipse, my work, open-source, patch, red hat, SWT [...]

Eclipse SWT drops GTK support of versions less than 2.10

[...] you are interested how this work goes, you can follow it here. Have a great weekend! Cheers, Anatoly Tagged: cleaning., drop support 2.10, Eclipse, gtk+2, gtk+2 swt, Gtk+3, progress, SWT [...]

How to check if a number is ODD or Even ? [PHP function]

[...] function, they are available in the repo. Thank you for sending me your questions! Regards, Anatoly Tagged: Dvision by TWO, EVEN numbers, Function, Modulo, ODD numbers, PHP, Remainder, Repo, Unit [...]

SWT migration from GTK+ 2.x to GTK+ 3.x : Introduction

[...] , gdk depricated, GTK+2. GTK, Gtk+3, how to build SWT, red hat, Standard Widget Tooklit, SWT, SWT migration to GTK 3 [...]

SWT migration to GTK+ 3.x: Use Cairo Instead GDK : First Patch – Tracker Widget

[...] I am continuing series of posts about   SWT migration to GTK+ 3.x . Today, I will  write about patch for SWT Tracker Widget, that omits some of GTK+ [...]

SWT migration to GTK+ 3.x : What is GDK ? What is GIMP ?

This is third post related to my new project – migration of SWT from GTK+ 2.x to GTK+ 3.x . In order to successfully build SWT with GTK+ 3.x al [...]

SWT migration to GTK+ 3.x : Tracker Dilliemma

Couple of weeks I was trying to solve interesting dilemma, so I decided to share it with you. I have submitted patch regarding Tracker widget, where [...]

SWT: Datetime Widget on top of Spinner [ Progress Report]

[...] What is the problem with DateTime widget ? Datetime is an SWT widget that shows DATE/TIME/CALENDAR, so overall very useful widget! In [...]

SWT: Datetime Widget on top of Spinner [ Progress Report]

[...] What is the problem with DateTime widget ? Datetime is an SWT widget that shows DATE/TIME/CALENDAR, so overall very useful widget! In [...]

Tutorial: How to get data from external API ? PART 1: Getting API Key, Creating ...

[...] numerous emails with this question. I have decided to build a small app, that is based on the external API. Why do you need to get data from external API ? If you are asking this question, maybe you [...]

Tutorial: How to get data from external API ? PART 2: Sending Request, Parsing O...

[...] it in the comments or shoot me an email! Thanks for reading! Anatoly Tagged: api, call API, external API, parse API, RESTfull, Ruby [...]

How to find if a number is power 2 ? (Bitwise and Iterative) [Python Script]

[...] power of 2 in Python. I have put this code into myprogrammingblog.com github repo together with Unit Tests. So feel free to use it. Of course there are many other solutions. For example you can create [...]

How to scaffold JavaScript Web Application in seconds using YEOMAN ? (example wi...

[...] here you have your scaffolded Marionette application that includes Handlebars.JS templates and Unit tests. Of course it doesn’t stop on Marionette, there are plenty of generators for YEOMAN [...]

How to stub an IP in Ruby on Rails, RSpec Version 3 ?

[...] Often when you are writing unit tests, you want to mock your IP address. Some of the uses cases could be – you are checking if IP is [...]

How to ensure that filename is always unique ? [Ruby]

[...] +1=4 and append extension so my output will be ‘a-4.jpg‘ Full version of this code  with unit tests can be found here . Once again, all suggestions and recommendation are more than welcome [...]

SWT: GTK_INCLUDE_INFERIORS worst enemy (Sash Widget)

[...] and Engineers,  In my previous post I’ve written about INCLUDE_INFERIORS in Tracker Widget.  Today I’ve started working on  Sash Widget’s drawBand() method, and guess what I [...]

SWT migration to GTK+ 3.x: Use Cairo Instead GDK : First Patch – Tracker Widget

[...] was very important for me understand what Tracker Widget is intended to do. I found very good implementation of  SWT Tracker widget   here Actual code [...]

SWT migration to GTK+ 3.x : Tracker Dilliemma

[...] interesting dilemma, so I decided to share it with you. I have submitted patch regarding Tracker widget, where I implement Cairo instead of GDK deprecated methods, more about it here . However, I [...]

My new work: Software Developer – Red Hat

[...] Now I will be working as Software Developer in Red Hat.   For the blog readers it means that along with the tutorials, and other stuff,  I will have Red Hat related posts. I [...]

Java – How to format string using SampleDateFormat ?

[...] One of the blog readers asked me this question, how to format string using SampleDateFormat to mm/dd/yyy. Here is a [...]

SWT migration To GTK+3.x : 6 SWT – Cairo Patches (Eclipse Bugzilla)

[...] big interest to the project I am currently working on.  I have received couple of emails from blog readers asking to share patches they I have pushed upstream. First of all, I want to mention that [...]

What is Standard Widget Toolkit for Eclipse (SWT) ?

[...] /swt.html After reading  introductory chapter,  I have  found out that SWT stands for   Standard Widget Toolkit.  As I have understood from the reading, SWT is a collection of tools, intended for [...]

SWT migration from GTK+ 2.x to GTK+ 3.x : Introduction

[...] In the earlier post I was exploring Standard Widget Toolkit. I have created simple application to see how SWT works. In this post I want to show [...]

Tutorial: How to get data from external API ? PART 2: Sending Request, Parsing O...

[...] ::Movie . After this we have our RottenTomatoes::Movie, populated with information from RottenTomatoes API, and we can do anything we want with it! Pretty straightforward right ? In the next [...]

Tutorial: How to get data from external API ? PART 1: Getting API Key, Creating ...

[...] us back information about the movie. See Screenshot Below: For this example I will be using RottenTomatoes API, however we will build our app in a such a way, that  by making couple of small changes, [...]

SWT: Datetime Widget on top of Spinner [ Progress Report]

[...] What is the problem with DateTime widget ? Datetime is an SWT widget that shows DATE/TIME/CALENDAR, so overall very useful widget! In current version of SWT  it [...]

SWT: Datetime Widget on top of Spinner [ Progress Report]

[...] What is the problem with DateTime widget ? Datetime is an SWT widget that shows DATE/TIME/CALENDAR, so overall very useful widget! In current version of SWT  [...]

?Key Phrases
SWT migration to GTK+ 3.x : Tracker Dilliemma

[...] them as the comment to this post, I appreciate any effort! I will keep you updated! Regards, Anatoly Tagged: cairo, GTK, GTK_ 2, INCLUDE_INFERIORS, patch, SWT, SWT Tracker, tracker widget [...]

SWT migration To GTK+3.x : 6 SWT – Cairo Patches (Eclipse Bugzilla)

[...] anything that you think is wrong, please let me know. Any feedback is appreciated! Regards, Anatoly Tagged: anatoly spektor, bugs, bugzilla, cairo, Eclipse, my work, open-source, patch, red hat, SWT [...]

Eclipse SWT drops GTK support of versions less than 2.10

[...] you are interested how this work goes, you can follow it here. Have a great weekend! Cheers, Anatoly Tagged: cleaning., drop support 2.10, Eclipse, gtk+2, gtk+2 swt, Gtk+3, progress, SWT [...]

How to check if a number is ODD or Even ? [PHP function]

[...] function, they are available in the repo. Thank you for sending me your questions! Regards, Anatoly Tagged: Dvision by TWO, EVEN numbers, Function, Modulo, ODD numbers, PHP, Remainder, Repo, Unit [...]

? Locations

Related channels