*** Kaetemi__ has quit IRC | 00:16 | |
mralex | i seem to recall asking about localizing the changes that i made, and the general response was it's kludgy right now, make the changes, localize later | 00:19 |
---|---|---|
*** augustinas has quit IRC | 00:58 | |
*** akozak has quit IRC | 01:22 | |
*** luisv has quit IRC | 01:26 | |
*** JED3 has quit IRC | 01:26 | |
*** mralex has quit IRC | 01:28 | |
*** JED3 has joined #cc | 02:14 | |
*** Bovinity has joined #cc | 02:45 | |
*** JED3 has quit IRC | 03:05 | |
*** Guest99131 has quit IRC | 03:34 | |
*** Orango has joined #cc | 03:35 | |
*** Orango is now known as Guest90390 | 03:35 | |
*** fieldse has joined #cc | 04:42 | |
*** JED3 has joined #cc | 04:54 | |
*** IchigoMorino has joined #cc | 05:01 | |
*** JED3 has quit IRC | 05:03 | |
*** IchigoMorino has quit IRC | 05:03 | |
*** nkinkade has quit IRC | 05:33 | |
*** wormsxulla has quit IRC | 05:46 | |
*** luisv has joined #cc | 06:04 | |
*** wormsxulla has joined #cc | 06:06 | |
*** JoiIto has quit IRC | 06:26 | |
*** fieldse has quit IRC | 06:28 | |
*** JED3 has joined #cc | 06:51 | |
*** luisv has quit IRC | 06:54 | |
*** sama has joined #cc | 07:02 | |
*** sama has quit IRC | 07:37 | |
*** JED3 has quit IRC | 07:44 | |
*** Bovinity has quit IRC | 08:28 | |
*** sama has joined #cc | 09:45 | |
*** MikeChelen has quit IRC | 10:30 | |
*** Kaetemi has joined #cc | 10:34 | |
*** Kaetemi__ has joined #cc | 10:35 | |
*** Kaetemi__ has joined #cc | 10:35 | |
*** Kaetemi has quit IRC | 10:38 | |
*** Kaetemi__ is now known as Kaetemi | 10:39 | |
*** oral has joined #cc | 11:17 | |
oral | Hi! I have problem ;-) I wanna translate something which is BY-SA, but it's not only translation. I'll add other (my) information too. And want to use BY-ND. Is it possible? ShareAlike says I can do this "only under the same, similar or a compatible license." ? | 11:23 |
*** augustinas has joined #cc | 11:35 | |
oral | mmm anyone? | 11:44 |
*** caro19 has joined #cc | 12:19 | |
caro19 | someone hav cc ? | 12:20 |
augustinas | i think almost everyone on here | 12:22 |
caro19 | i want cc plz | 12:23 |
augustinas | caro19 read topic :) | 12:23 |
caro19 | lol | 12:26 |
*** caro19 has quit IRC | 12:49 | |
*** oral has left #cc | 13:04 | |
*** nkinkade has joined #cc | 14:16 | |
*** tvol has joined #cc | 14:48 | |
*** tvol has quit IRC | 15:01 | |
*** luisv has joined #cc | 15:10 | |
*** wormsxulla has left #cc | 15:28 | |
*** luisv has quit IRC | 16:12 | |
*** luisv has joined #cc | 16:20 | |
*** JoiIto has joined #cc | 16:30 | |
*** JoiIto has joined #cc | 16:30 | |
*** luisv has quit IRC | 16:33 | |
*** fieldse has joined #cc | 16:34 | |
*** Bovinity has joined #cc | 16:40 | |
*** Bovinity has quit IRC | 16:56 | |
*** Kaetemi has quit IRC | 16:59 | |
*** Kaetemi has joined #cc | 17:21 | |
*** JoiIto1 has joined #cc | 17:33 | |
*** JoiIto has quit IRC | 17:33 | |
*** tvol has joined #cc | 17:42 | |
*** nathany has joined #cc | 17:43 | |
*** JoiIto1 has quit IRC | 17:44 | |
*** nathany has quit IRC | 17:47 | |
*** sama has quit IRC | 17:50 | |
*** mralex has joined #cc | 17:56 | |
*** JED3 has joined #cc | 18:01 | |
*** luisv has joined #cc | 18:04 | |
*** akozak has joined #cc | 18:12 | |
nkinkade | Coding challenge: the shortest amount of shell code that will ensure that a script that is set to run once every week via a cron job will only actually execute every other week. | 18:32 |
nkinkade | cron doesn't seem to be able to run things every other week. | 18:32 |
nkinkade | I've already implemented something, but curious to see if anyone else has any interesting ideas. | 18:33 |
JED3 | nkinkade: does your script run every week via cron, but conditionally execute based on which week of the year it is? | 18:36 |
nkinkade | JED3: It's actually the script for the staff updates. | 18:36 |
nkinkade | It runs every week on Monday. | 18:36 |
*** michi_ has joined #cc | 18:36 | |
nkinkade | I started to try to do something with the date command then I realized that the concept of "every other week" is vaguely abstract in terms of actual dates and numbers. | 18:37 |
JED3 | nkinkade: you could add this logic to pywikipedia | 18:40 |
nkinkade | JED3: I figured it was easier to add it to the bash script that actually calls the pywikipedia stuff, which is how Asheesh did it. | 18:41 |
JED3 | ahh okay | 18:41 |
nkinkade | Are you just thinking that it would be easier to write the code in Python? | 18:41 |
nkinkade | The easy solution, which I found on some thread about running cron jobs every other week, was to simply write a file. If the file exists the the script removes it and runs. If it doesn't exist then it creates it and exits .. which is a simply for it to alternate weeks. | 18:43 |
*** michi_ has quit IRC | 18:51 | |
JED3 | nkinkade: wouldn't this work? | 18:53 |
JED3 | http://dpaste.com/153819/ | 18:53 |
nkinkade | JED3: I do believe so, and it's much more elegant than writing a file. | 18:54 |
nkinkade | Thanks! | 18:55 |
JED3 | yw! | 18:55 |
mralex | wouldn't "* * */2 * *" in the cron line do it bi-monthly? i guess that could get off-kilter after a while... | 18:56 |
nkinkade | mralex: Yeah, that was the problem, that the weeks/days drift through each month. | 18:57 |
nkinkade | JED3: Here is the bash version: http://dpaste.com/153825/ | 19:09 |
JED3 | even better :) | 19:09 |
mralex | man, 80% of traffic to search.cc is via firefox search bar | 19:19 |
greg-g | good(?) | 19:21 |
mralex | not when the top 200 queries are completely unrelated, "normal", search queries | 19:22 |
JED3 | greg-g: yes except for 98% of the queries look unintentional | 19:22 |
mralex | "ebook" may be related | 19:22 |
mralex | we get that one quite a lot | 19:23 |
mralex | i'll throw in "creative commons" | 19:23 |
mralex | so, yeah, 98% unrelated | 19:24 |
greg-g | JED3: ah | 19:25 |
greg-g | wait, what is a "normal" search query that you know isn't related to CC? I mean, what about "mushrooms"? | 19:25 |
mralex | i mean, "gmail", "facebook", "google", "bing", "sex", "xxx", "netflix" | 19:26 |
JED3 | greg-g: ha, its pretty easy to be deterministic with these queries | 19:26 |
greg-g | mralex: ahhhh | 19:26 |
mralex | average time spent on the site is 4 minutes. | 19:26 |
JED3 | i wrote a script that displayed the queries in real time yesterday and had it open all day just to get a feel for how its being used | 19:27 |
JED3 | for those interested, its in my home dir named queries.py on a8, run it as sudo | 19:28 |
*** jgay has joined #cc | 19:29 | |
*** JED3 has quit IRC | 19:37 | |
*** JED3 has joined #cc | 19:37 | |
nkinkade | mralex: Those stats would explain why we get so many emails to info@ like: WHY DID YOU TAKE OVER MY BROWSER. I DIDN'T WANT YOU. YOU CAME. GO AWAY. I'M GOING TO GO BACK TO IE!! YOU SUCK! | 19:52 |
mralex | nkinkade: yup | 19:54 |
nkinkade | Honestly, I think the ccSearch search engine for Firefox creates more problems than it solves. I'd like to see it go away forever. | 19:55 |
luisv | (the whole search plugins thing is busted, IMHO) | 19:57 |
luisv | (I'd be *shocked* if more than 1% of the browser-using population *ever* uses anything other than the default engine) | 19:57 |
*** michi_ has joined #cc | 20:11 | |
*** luisv has quit IRC | 20:22 | |
*** michi_ has quit IRC | 20:46 | |
*** luisv has joined #cc | 20:52 | |
*** shellac has joined #cc | 21:16 | |
*** shellac has joined #cc | 21:17 | |
*** shellac has joined #cc | 21:17 | |
*** shellac has joined #cc | 21:17 | |
*** shellac has joined #cc | 21:20 | |
*** shellac has joined #cc | 21:20 | |
*** shellac has joined #cc | 21:20 | |
*** shellac has joined #cc | 21:21 | |
*** shellac has joined #cc | 21:21 | |
*** nkinkade has quit IRC | 21:31 | |
*** nkinkade has joined #cc | 21:31 | |
*** shellac has quit IRC | 21:33 | |
*** tvol has quit IRC | 22:02 | |
*** jgay has quit IRC | 22:09 | |
nkinkade | mralex: Would you login to support to check something for me? | 22:26 |
nkinkade | A layout issue. | 22:26 |
mralex | which page? | 22:29 |
nkinkade | mralex: Any contact page. | 22:30 |
nkinkade | The layout is apparently broken for Mel and Allison, but not for me. | 22:30 |
mralex | nkinkade: a civicrm view contact page? | 22:31 |
nkinkade | https://support.creativecommons.org/civicrm/contact/view?reset=1&cid=6651 | 22:31 |
nkinkade | mralex: ^^ | 22:31 |
mralex | i see the general layout is nicer, upgraded vresion? | 22:31 |
nkinkade | mralex: I upgraded about an hour ago. All the menus are at the top now ... nice. | 22:32 |
mralex | nkinkade: nothing stands out as "broken" to me | 22:32 |
mralex | mellisa's here, i'll see what she means | 22:32 |
nkinkade | mralex: Thanks. | 22:32 |
*** shellac has joined #cc | 22:38 | |
mralex | nkinkade: the tabs are powered by jquery, maybe it's a JS problem | 22:41 |
nkinkade | mralex: With Firefox? | 22:41 |
mralex | perhaps | 22:41 |
nkinkade | I'm using my usual Firefox setup. | 22:42 |
nkinkade | Let me tell her to try it in Safari. | 22:42 |
mralex | firefox 3.6beta, probably a minor JS bug | 22:45 |
*** shellac has quit IRC | 22:47 | |
*** JoiIto has joined #cc | 22:59 | |
*** shellac has joined #cc | 23:10 | |
paroneayea | T | 23:18 |
paroneayea | .-'- | 23:18 |
paroneayea | | O_O| INCOMING TRANSMISSION | 23:18 |
paroneayea | '----' --------------------- | 23:18 |
paroneayea | // ooo|\ ag3x081xag-w104.?013! | 23:18 |
paroneayea | //| |XX|\\ gz3148508asvxz-1234ho | 23:18 |
paroneayea | C | ---| C va1*4)#fgapoi~09PVZqo | 23:18 |
*** fieldse has quit IRC | 23:25 | |
*** shellac has quit IRC | 23:29 | |
*** Kaetemi has quit IRC | 23:37 | |
*** shellac has joined #cc | 23:37 | |
*** Kaetemi has joined #cc | 23:42 |
Generated by irclog2html.py 2.6 by Marius Gedminas - find it at mg.pov.lt!