...

Home | About | Tags | Archives |

Thursday, September 10 2009

fedora tesing day 2009 09 09 : Radeon driver testing

I'm doing some testing on multiple radeon cards.

I've test so far a X1950. I've seen problem on multi-head, I'm trying to get a video now ...

Here's some log file:

x1950_20090908_iso_renderchecklog

x1950_20090908_iso_dmesg

x1950_20090908_iso_uname.txt

x1950_20090908_iso_Xorg.0.log_after_bugdual_head_.log

Continue reading»

Monday, June 22 2009

[RE] syncronize your .SRT with ruby

A bit of Ruby code :P

Just a taste on how to resyncronize a srt file...

Here we just put it 0.2 sec forward

source, destination, shift = "unsyncronize.srt", "willbesyncronize.srt", 0.2
 
 File.open(destination, "w") do |f|
 
   File.new(source).each_line do |line|
 
     line.gsub!(/\d\d:\d\d:\d\d/) do |str|
 
       t = Time.mktime(0, 1, 2, *str.split(':')) + shift
 
       "%02d:%02d:%02d" % [t.hour, t.min, t.sec]
 
     end
 
     f << line
 
   end
 
 end

Continue reading»

Sunday, June 21 2009

Welcome to Dotclear(2)! : back again

Back again

After a while without aving a blog activity, I started to feel the need to share some tricks and tought about...
...A bit of everithing i have my hands on curently.

So I'm back with lots of things to share about ATI/AMD products, maybe some tricks on the Catalyst Control Center, some benchmarks as soon as pts linux live go stable ( the 1.02 public version is not that quick to use so far ...).
I'll probably will share some Ruby, Python, Shell, insert your favorite language here.
As an Arch Linux user i surely will put some tricks (or treat ) from time to time.
I'll definitly share with you my experiences on Androids applications.
Let's see what more !

Stay tune

Continue reading»