about 6 months ago - 2 comments
Putty is a great terminal emulator for Windows, but its default color theme is pretty bad, especially for the blue colors, which are illegible: The good news is, someone already created a nice web tool to create a terminal theme, and to export it to several formats, including for Putty. Unfortunately, I had to edit…
about 8 months ago - No comments
I spent my 3 months summer internship coding a Windows 8 application, and even though there now is a basic implementation of the INotifyPropertyChanged interface provided by Microsoft (BindableBase), I can tell you creating a view model for each view you need is very time consuming and boring, and not nearly as quick as I…
about 8 months ago - No comments
Une petite note à moi même qui pourra toujours être utile à d’autres… Il existe un petit logiciel très simple permettant de modifier l’image de fond de l’écran de login de Windows 7, et il m’arrive souvent de chercher plus longtemps que je n’aurais aimé avant de le retrouver, quand l’envie me prend de personnaliser…
about 9 months ago - No comments
Following my last post on benchmarking madness, here is a short one about finding .net classes or interfaces based on given criteria. While writing my last post, I found myself having a hard time searching for classes implementing IEnumerable<T> without also implementing ICollection<T>. Indeed, beside String, there is not so many… This information is almost…
about 9 months ago - 1 comment
What is the best way to know if an IEnumerable<T> contains at least one element? I mean, what is the most optimized way to know this information? Maybe the first thing that came to my mind was to do some .Count() > 0 check, but if you think of it, the Count() extension method would…
about 12 months ago - No comments
Les développeurs sont fainéants, c’est l’une de leurs nombreuses qualités… To Wrap or not to wrap Je travaille sur une bibliothèque .net pour une api REST, dont un des objets modèle contient une propriété stockant l’url d’une image. Mon but est de sauvegarder cette image localement, puis d’ajouter le chemin local à l’objet, et enfin…
about 1 year ago - No comments
Ce post existe principalement à titre de pense bête, pour me faire gagner un peu de temps lors de mon prochain formatage de Windows, quand j’aurai besoin de réinstaller tous les gadgets Windows que j’apprécie et dont j’ai maintenant du mal à me passer. Retrouver le bon site de téléchargement me prend trop de temps…
about 1 year ago - No comments
Rien de tel qu’un écran affichant une page blanche ou claire, pour s’éclater les yeux lors de l’utilisation de son ordinateur dans la pénombre. Sans parler des insectes attirés à 100 mètres lorsque vous essayez d’aérer les 28.5°C de votre chambre… Pour atténuer un peu le problème, il existe une solution très simple en…
about 1 year ago - No comments
Cela fait quelques semaines que je découvre Entity Framework, Le système d’ORM de Microsoft, et je l’apprécie de plus en plus Ce framework d’ORM a beau être jeune et manquer encore de pas mal de fonctions (qui à dit enumérations ?), il simplifie beaucoup la vie, et c’est un vrai plaisir de travailler avec. (tant…
about 5 months ago
Hello my friend, thanks for your help but I’ve got another solution to this issue….
1.-Download this plugin for Firefox.
https://addons.mozilla.org/es/firefox/addon/sqlite-manager/
2.- In Firefox – Tools, select SQLite Manager
3.- In the new window select database – connect database – then open your db from shazam
4.- Then you’ll see two panels. on the right panel selec track and on right panel, select browse and search then you’ll be able to see all your tag info
5.- On the left panel select track – right click – export table, select csv on right panel then ok.
6.- Open your database with any office (word, excel)
7.- That’s all
about 8 months ago
Thanks for the useful post.
I would like to contribute with a better view of the Shazam tags (Artist, SongTitle, TagDate) in csv format (view in Excel then order by column,…)
In SQLite command line type:
1) .output tags.csv
2) select artist.name, track.title, tag.datetime from artist_track, artist, track, tag where artist_track.artist_id=artist.id and artist_track.track_id=track._id and track._id=tag.track_id;
3) .exit
And you are ready!
Ciao
Fabio
about 10 months ago
Cool, but how export without root?
about 10 months ago
I’m not sure whether root is necessary or not.
You need to somehow access the database file, maybe there is a trick with the debug mode and adb, or something else…
Anyway, I’m not that good with Android, so my post was intentionally focused only on the opening of the database, sorry.