Search:

Type: Posts; User: Ferrat; Keyword(s):

Page 1 of 10 1 2 3 4

Search: Search took 0.10 seconds.

  1. Replies
    0
    Views
    265

    [ubuntu] Weird OpenVPN behavior (D/C when used)

    So I got my OpenVPN client up and running however as soon as there is even a little bit of traffic out on the net the openvpn service stops and the tap0 interface goes away and the connection...
  2. Re: filter files and folder in bash based on names?

    No it's probably not as easy, will try out your script and push the output to a log file to see what happens but right now I'm thinking python with regular expressions might be a better way to go?
  3. Re: filter files and folder in bash based on names?

    Sadly not exactly the same format but generally it's name then year and the movies generally have dates in that form or something similar and I want to try and sort them all if possible.
    Some...
  4. filter files and folder in bash based on names?

    Hi there,
    I have a little problem, I'm trying to create a script that can sort, move and rename files in a directory but can't really find any good information when "googleing" it.

    The idea is...
  5. [ubuntu] Re: How do you create 3D stereoscopic movies on Linux?

    Testing it now but seems to be working but not sure yet, will let it go on for a while and see what happens :)

    Nope false alarm, doesn't work, I get further but nothing happens :/
  6. Replies
    17
    Views
    942

    Re: How do I get certified?

    Certifications for programming is as stated above probably not the way to go, while other certifications are useful, like certs for server admins, network techs etc but if you want a software...
  7. Replies
    6
    Views
    549

    [SOLVED] Re: OpenGL 3.3 question

    There are emulators for ES 2.0 but you can do 90% of it at least in normal OpenGL without any changes afaik, ES is more or less just a streamline version of OpenGL, shaders and stuff works just the...
  8. Replies
    6
    Views
    549

    [SOLVED] Re: OpenGL 3.3 question

    Haha no it's not a secret, it's multiple books
    read so far
    Beginning OpenGL Game programming ,2nd Ed. : shows only basics about shaders
    Addison Wesley OpenGL ES 2.0 Programming Guide : this one...
  9. Replies
    6
    Views
    549

    [SOLVED] Re: OpenGL 3.3 question

    It's the same in both, it's a uniform ident that are the same in both shaders, there for both shaders use the same data and it's already been used in Reflection so SkyBox just use the exact same,...
  10. Replies
    12
    Views
    11,336

    Re: .exe decompiler?

    To be honest it's probably easier just to make a clone that can re-use the games resources and that way you can make all the improvements you want.
  11. Replies
    4
    Views
    840

    Re: Recommend book for C++ and/or OpenGL

    For both those you might want to have a look at the GameDev.net book series, they are fairly easy to understand and try to put most of the things you learn in a context instead of just saying, "This...
  12. Re: How to Install Japanese Input in Ubuntu 10.10 using iBus

    Works great and you don't need to log out and back in, if you just try and start the language switching you'll get a pop-up that says the daemon isn't running and give you the option to start it :) 
  13. Re: [PHP] How to run a script when user close the browser

    if you make a script to start the web-browser then it could keep track of the PID and when the pid closes down you just runt the remainder of the script?
  14. Replies
    8
    Views
    650

    [SOLVED] Re: How do I Program a GUI

    I'm guessing he wants to make a basic GUI layer on-top of X or Gnome or something like that for other users, so they can only access the programs via the icons his GUI provides but want one button...
  15. Replies
    9
    Views
    552

    Re: virtual function???

    Virtual functions lets you override a "standard"

    for ex. in games overriding functions is extremely useful as you can have a generic response and then use virtual functions that let you override...
  16. Replies
    4
    Views
    352

    Re: question about developing a program

    if the nvidia program takes arguments for actions like that you should look in to bash, if it doesn't then it will be next to impossible I think as the driver is closed source (it is right? not 100%...
  17. Replies
    22
    Views
    1,249

    [SOLVED] Re: divide at random into 3

    Yeah that could be a problem, you could try and then do a random function for what number ends up in what part, that would help the problem somewhat, in theory it should be just as likely to get 0 or...
  18. Replies
    22
    Views
    1,249

    [SOLVED] Re: divide at random into 3

    a bit of sudo code but

    init part1=0, part2=0, part3=0;
    init totaltSum = whatever input
    init tempSum = totalSum;

    part1 = (random <= tempSum);
    tempSum = tempSum - part1;

    part2 = (random <=...
  19. Replies
    2
    Views
    489

    Re: how to become a good ubuntu programmer?

    First of, you can become a good pianist or tennis player by practice, doing it over and over, every day, true that some people will have a more natural aptitude towards the piano or tennis or...
  20. Replies
    11
    Views
    5,723

    Re: savage 2 how to update

    Have yopu tried running the dedicated server? I know there is some versions that have issues with update on the game client but if you run the dedicated server it should update just fine then just...
  21. Replies
    4
    Views
    437

    [ubuntu] Re: Weird HDD behavior and now lost space?

    will do thx =)
  22. Replies
    4
    Views
    437

    [ubuntu] Re: Weird HDD behavior and now lost space?

    No I unmounted the disk and ran it, should I use a boot disk instead?
  23. Replies
    4
    Views
    437

    [ubuntu] Weird HDD behavior and now lost space?

    Well as you can see I'm getting pretty big discrepancies from the system about the disk info, before they where more or less exactly the same but then I deleted some files but no space was freed,...
  24. [ubuntu] Re: Change network device for default inet gateway?

    Ok, sort of solved it, blocked the eth0 connection from ever becoming default, however this is not exactly what I wanted since I now can't be with out the wireless if needed without changing it back...
  25. [ubuntu] Change network device for default inet gateway?

    I've been struggeling with this for a few hours now, googleing and so on trying to find an easy way to just switch which device I want as primary for internet connections.

    After long battles I'm...
Results 1 to 25 of 250
Page 1 of 10 1 2 3 4