Giannis_tsakiris

?

Channel Reputation Rank

#1200
?

Activity Status

Stale

last updated

According to the data and stats that were collected, 'Giannis_tsakiris' channel has a mediocre rank. The feed was last updated more than a year ago. In addition 'Giannis_tsakiris' includes a significant share of images in comparison to the text content. The channel mostly uses long articles along with sentence constructions of the basic readability level, which is a result indicating a well-balanced textual content on the channel.

About 'Giannis_tsakiris' Channel

mostly programming-related stuff

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

'Giannis_tsakiris' provides mostly long articles which may indicate the channel’s devotion to elaborated content.

short

long

? Readability Level

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

advanced

basic

? Sentiment Analysis

'Giannis_tsakiris' 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 Giannis_tsakiris has no news yet.

How to arithmetically sort an array in Javascript

[...] . To sort arithmetically the array in the above example, we will have to do it like this: var values = [ 1, 10, 100, 4, 20, 3 ]; values.sort( function(a,b) {     return a-b; }); console. [...]

How to arithmetically sort an array in Javascript

[...] . To sort arithmetically the array in the above example, we will have to do it like this: var values = [ 1, 10, 100, 4, 20, 3 ]; values.sort( function(a,b) { return a-b; }); console.log(values); [...]

How to "un-commit" a revision from the top of a Subversion repository

[...] Sometimes it may occur that a commit was performed in a subversion repository, that was not exactly what the original intention was. In such cases we would like to have [...]

How to "un-commit" a revision from the top of a Subversion repository

[...] Sometimes it may occur that a commit was performed in a subversion repository, that was not exactly what the original intention was. In such cases we would like to have [...]

How to "un-commit" a revision from the top of a Subversion repository

[...] you prefer) on removing the last commit(s) from a subversion repository, which is to create a new repository and replay all the commits from the beginning and up to the revision just before the [...]

How to "un-commit" a revision from the top of a Subversion repository

[...] you prefer) on removing the last commit(s) from a subversion repository, which is to create a new repository and replay all the commits from the beginning and up to the revision just before the [...]

C++: calling a member function pointer

[...] of a method, which remains the same for all instances of a class. When dereferencing a member function pointer, we also need to provide the object for whom the method is being called, in that case [...]

C++: calling a member function pointer

This article is about calling a member function (method) through a "function pointer". I decided to write about it because it tricked me for a while, [...]

How to "un-commit" a revision from the top of a Subversion repository

[...] this guide I assume that you have local command-line access and sufficient permission to the repository folder. I also assume that you wish to uncommit the last commit from the top of the repository. [...]

How to "un-commit" a revision from the top of a Subversion repository

[...] this guide I assume that you have local command-line access and sufficient permission to the repository folder. I also assume that you wish to uncommit the last commit from the top of the repository. [...]

How to "un-commit" a revision from the top of a Subversion repository

[...] -backup.tar.gz old-repository/ . . . . . . . . . . . . . . . giannis@ubuntu:~$ rm -rf old-repository giannis@ubuntu:~$ mv new-repository old-repository And you're done! The advantage of this method [...]

How to "un-commit" a revision from the top of a Subversion repository

[...] -backup.tar.gz old-repository/ . . . . . . . . . . . . . . . giannis@ubuntu:~$ rm -rf old-repository giannis@ubuntu:~$ mv new-repository old-repository And you’re done! The advantage of this method [...]

How to "un-commit" a revision from the top of a Subversion repository

[...] old-repository -r 1:XXX > old-repository.dump . . . . . . . . . . . . . . . * Dumped revision XXX. In the above command make sure to replace XXX with the current revision number [...]

How to "un-commit" a revision from the top of a Subversion repository

[...] old-repository -r 1:XXX > old-repository.dump . . . . . . . . . . . . . . . * Dumped revision XXX. In the above command make sure to replace XXX with the current revision number [...]

How to "un-commit" a revision from the top of a Subversion repository

[...] number that was exactly before the unwanted commit (typically this will be the current revision number minus 1). giannis@ubuntu:~$ svnadmin dump old-repository -r 1:XXX > old-repository.dump . [...]

How to "un-commit" a revision from the top of a Subversion repository

[...] number that was exactly before the unwanted commit (typically this will be the current revision number minus 1). giannis@ubuntu:~$ svnadmin dump old-repository -r 1:XXX > old-repository.dump . [...]

How to "un-commit" a revision from the top of a Subversion repository

[...] 1. Then you just need to load the dump file into the new repository: giannis@ubuntu:~$ svnadmin load new-repository < old-repository.dump Alternatively, it is possible to perform both dump and load [...]

How to "un-commit" a revision from the top of a Subversion repository

[...] you just need to load the dump file into the new repository: giannis@ubuntu:~$ svnadmin load new-repository < old-repository.dump Alternatively, it is possible to perform both dump [...]

PHP: Something to watch out when using global scope variables, or "why glob...

Okay, I guess this is probably a childish mistake for an experienced PHP-er, but I myself got busted tonight, and maybe I'm not the only one :-) So, h [...]

PHP: Something to watch out when using global scope variables, or "why globa...

Okay, I guess this is probably a childish mistake for an experienced PHP-er, but I myself got busted tonight, and maybe I’m not the only one So, her [...]

?Key Phrases
How to arithmetically sort an array in Javascript

[...] . To sort arithmetically the array in the above example, we will have to do it like this: var values = [ 1, 10, 100, 4, 20, 3 ]; values.sort( function(a,b) {     return a-b; }); console. [...]

How to arithmetically sort an array in Javascript

[...] . To sort arithmetically the array in the above example, we will have to do it like this: var values = [ 1, 10, 100, 4, 20, 3 ]; values.sort( function(a,b) { return a-b; }); console.log(values); [...]