Search Results

Search found 7 results on 1 pages for 'thrawn'.

Page 1/1 | 1 

  • Overclocked GPU quantum problem

    - by Thrawn
    Hi all, I overclocked my nVidia GPU, and now I get it to be much faster, but after a ~40% overclock, I start getting "mistakes" on the screen, like wrongly coloured pixels, glitches and the sort. Temperature is still within limits, as I added extra coolers. So my question is: is this a permanent problem which is damaging the GPU or is only something related to the intrinsic quantum mistake rate of processing calculations? Thanks for your opinion :-)

    Read the article

  • How do I increase copy/paste buffer size in Linux

    - by Thrawn
    Hi all, I'm trying to copy and paste lines of code to the linux terminal. However, I've noticed that when the copied text is too long (let's say, 60 or more lines), it gets trimmed and altered in an apparently random way (e.g. some characters missing). I found the same problem in Ubuntu Karmic Koala, Fedora 10 and Ubuntu Jaunty Jackalope. Any clue why this happens and if I can increase the size of safely copy/pasteable text? Thanks!

    Read the article

  • Transpose a file in bash

    - by Thrawn
    Hi all, I have a huge tab-separated file formatted like this X column1 column2 column3 row1 0 1 2 row2 3 4 5 row3 6 7 8 row4 9 10 11 I would like to transpose it in an efficient way using only using commands (I could write a ten or so lines Perl script to do that, but it should be slower to execute than the native bash functions). So the output should look like X row1 row2 row3 row4 column1 0 3 6 9 column2 1 4 7 10 column3 2 5 8 11 I thought of a solution like this cols=`head -n 1 input | wc -w` for (( i=1; i <= $cols; i++)) do cut -f $i input | tr $'\n' $'\t' | sed -e "s/\t$/\n/g" >> output done But it's slow and doesn't seem the most efficient solution. I've seen a solution for vi in this post, but it's still over-slow. Any thoughts/suggestions/brilliant ideas? :-)

    Read the article

  • R code in Sweave

    - by Thrawn
    Hi guys, I have a scientific paper under review, and a referee asked for my R code to be provided as a Sweave document. I've never heard of Sweave before, do you know what's the better way to do it? Thanks a lot :-)

    Read the article

  • Remove identical files in UNIX

    - by Thrawn
    Hi all, I'm dealing with a large amount (30,000) files of about 10MB in size. Some of them (I estimate 2%) are actually duplicated, and I need to keep only a copy for every duplicated pair (or triplet). Would you suggest me an efficient way to do that? I'm working on unix. Thank you :-)

    Read the article

1