guys... if an artist has more then one youtube link, there's any manner to get the most important?
reosarevok
FilipeTriworks, what would be "the most important"
?
It is kinda strange for an artist to have two official channels, but I guess you have an example :)
FilipeTriworks
the official one, most seen, which have more videos
alicia keys 3 youtube channels
reosarevok looks
*have 3*
reosarevok
heh
All 3 are official
Indeed
FilipeTriworks
right but 2 of them are feeded by labels
the first one is personal
nikki
we don't have a way to make a distinction :/
reosarevok
I guess the clear options are to either query YouTube for the number of videos, or show them all
The distinction is rare enough for nobody to have wondered about it before
Because the "personal" filter doesn't really cut it either...
(DOGOTVOFFICIAL and DOGOUNCENSORED are two channels from the same Italian band, the latter showing a video that the label refused to have in the main one)
(you'd ideally be able to show both)
(as the video in the latter is not in the other at all)
FilipeTriworks
wi thought that all links could have some kind of weight associated
*I*
thank you all once again
reosarevok
FilipeTriworks, that sounds like something you should do in-house
(I can see the point though :) )
(but it'd need a kind of automation we don't really use anywhere at the moment AFAIK)
this is my draft of a CAA specification - it might work well to work from a repository for the spec as we can use GitHub issues to highlight problems in the spec, and branch it to make ammendments and do reviews on pull requests
ijabz you too!
voiceinsideyou1 joined the channel
warp
ocharles: sounds like a good idea, I'll have a look soon.
if people like the sound of this process (not my specification), I will start adding what I see as open issues
stuff that's either not covered, or is too vague
and I'll also post to the devel mailing list
but now, it's meeting time
reosarevok
ocharles: "If the edit is accepted, the Cover Art Archive does not change." should be rejected I guess
(last sentence)
reosarevok goes shopping
nikki
ocharles: so front doesn't have a filetype?
Swarup
hi <ocharles> when u get a chance ..get u look at this error that i got on my other VM host while install patch..sudo cpanm --installdeps . https://gist.github.com/1627561
nikki
ocharles: it doesn't seem to say how to get the smaller versions of files
murdos
ocharles: sounds like a perfect process!
ijabz
ocharles you'll pleased to know I bought 'Pragmatic Guide to Hit' a few weeks ago
Git
Though having read it my view is that whilst indeed Git is powerful, and I can see it being very useful on a project such as the Linux Kernel it seems it can all too easily be abused to create overly complicated scenarios
But on that note, teatime
bitmap joined the channel
Swarup
anyone know how i can resolve this issue...Building and testing Encode-Detect-1.01 ... Building Encode-Detect cc -Isrc -I/usr/lib/perl/5.10/CORE -fPIC -x c++ -Iinclude -c -D_REENTRANT -D_GNU_SOURCE -DDEBIAN -fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -O2 -g -o src/nsEscCharsetProber.o src/nsEscCharsetProber.cpp cc: error trying to exec 'cc1plus': execvp: No su
warp
ocharles: aw, no OPTIONS support in CAA? :)
ocharles joined the channel
ocharles
warp: yes, I plan to open an issue about that
but as I said, I wanted comments on the process, not the spec :)
ijabz: oh, cool :)
Swarup: you shouldn't need Encode::Detect
Swarup
ok..should i let it skip and continue.. with --prompt option
warp
ocharles: where should comments on the spec go? github issues?
yay, just been made maintainer of Web.MusicBrainz, Haskell bindings to /ws/2
reosarevok
lol
Didn't have enough with two jobs and a side project?
ruaok
spoke up too loudly, did we?
ocharles
reosarevok: BookBrainz continues to be blocked until I can figure out a way to bracket QuickCheck, or until i give up trying. and I'll be damned if I give up!
(but I'll probably give up if I can't figure it out soon)
navap
Can someone point me in the right direction? I want to merge two hashes that have significant duplicated keys, but I want the values merged together by adding the two values together.
Everything I find online deals with merging and keeping one of the two values
ocharles
navap: there is no way to do that without being explicit
do you want every key added up?
$a{$_} += $b{$_} for keys %b; # might work for that
navap
I think I want something like $new{$_} = $a{$_} + $b{$_}
But I also want to copy over any keys that are unique to %a or %b
Does that make sense?
This is for my webalizer parser. I've got a hash built for each month's stats and I want to now add everything up and create a hash for each year.