Search results

  1. R

    Programming a bootloader

    Hey guys, I've decided to build a bootloader for a working system, something that could either boot Linux, or maybe even multiboot windows and Hackintosh, depending on the time taken by me for them. There are 2 ways of doing this, namely making a chainloader or creating one that does the entire...
  2. R

    Linux Fedora 12 is Mute!

    Hey, My system gives volume after typing alsaunmute in the Konsole.. Thanks!
  3. R

    C program : Maze shortest path

    ok.. here's the code i used in the end : // The program randomly populates a 6X6 array with 1's and 0's. It then randomly chooses a start point and an // end point. It then prints the maze, the coordinates of the start and end points, and the path from the start // point to the end point...
  4. R

    Protecting my cell network

    I have a Nokia cell, and I can broadcast my internet connection (as wifi) around my room and to my neighbour's room (hosteller) using a software called JoikuSpot. However, this also means that the riff-raff of the hostel can also connect to it and access the net, slowing it down to a crawl. I...
  5. R

    C program : Maze shortest path

    Hey guys! I managed to find an alternate way using doubly-linked lists and a BFS. Thanks anyway!
  6. R

    ssh into windows?

    If i need to access the windows files, but can't install any ssh server on the PC (damn lab PCs don't give us the rights for installation) then is there any other method that I can use to achieve the same end?
  7. R

    C program : Maze shortest path

    Hey, I've made a program to find the shortest path in a maze.. doesn't work though. Gives the weirdest error (NEVER seen this one before) on linux.. haven't tested it on windows. Help me!: // Maze is : // // __________ // |O|X|X| | | | // | | | | |X| | // | | | |X|X|...
  8. R

    ssh into windows?

    Hey, I've begun studying the basics of ssh, and I learnt how ssh into a linux PC from my own linux PC (which is simple..) Now i want to ssh into a Windows PC. suppose I've got a pc with IP address 'X', and it's running Windows. I want to ssh into it, and copy/paste some files to/from it, issue...
  9. R

    python executables?

    Hmmm Those are basically ways in which I can use a USB instead of installing Python on the target machine. My need is such that once I hand over my program to someone, I shouldn't need to talk to him and he should just have to give a single file to another person who can further use it. Note ...
  10. R

    python executables?

    Hey, I made an application using python, and now I want to make it portable (so I can share it and pass it on to others). I need to convert it into a standalone executable, but somehow I'm completely unable to do it. I tried py2exe, but when I run it on my friend's pc, it couldn't find python. I...
  11. R

    Linux Fedora 12 is Mute!

    Hey, I installed Fedora 12 KDE x84_86 on my laptop. I've installed Fedora 11 and it worked fine previously. But now there's no sound on my system.. :( help? :huh:
  12. R

    Linux Wireless + Kubuntu ???

    Hey! Thanks for the advice. Came home and connected ethernet. And got the drivers. Now it's running fine. Thanks!
  13. R

    Linux Wireless + Kubuntu ???

    Hi, I've just installed Kubuntu with wubi and I'm using an HP Pavillion dv3 Laptop. My wireless touch- button isn't working, and now I'm stuck without internet :( I don't have LAN access, only wireless, so I need to get software support from my friend's laptop only :( :( How can I get my touch...
  14. R

    "Hello World "program in various avatars of programmming languages

    Here's hello world for th MIPS processor : .data hello : .asciiz "Hello World\n" .text li $v0 , 4 la $a0, hello syscall li $v0 , 10 syscall
  15. R

    Python - smtplib

    Awesome guide by Sam Howard.. Thanks! I'll contact my tech admin to find out which smtp server to connect to for our college mail.. Thanks!:hap2::hap2::hap2:
  16. R

    Python - smtplib

    Hey, I'm trying to use the SMTP protocol via python to make a program so that I can mail every student his own marks only (I'll use an excel file to store marks, and I can't send the entire excel sheet because of privacy reason.. plus this gives me something to productively kill time with while...
  17. R

    Linux Help installing Python's Tkinter module

    Hey, I have Fedora 12, and I'm installing python 2.6.2 using the .tgz file. By default, the Tkinter module is not installed (for some absurd reason) and you have to make some changes in the files present. Now I've tried to understand the files, but I failed pathetically, and the result is that...
  18. R

    Tkinter - Python help please! !!URGENT!!

    Hmmmm.. Thanks! I was actually transforming from the non GUI to GUI version.. missed out that while loop :S:S And the destroy statement.. new :P Thanks!:hap2::hap2:
  19. R

    Tkinter - Python help please! !!URGENT!!

    Hey, I need help with a python Tkinter code piece. Basically, the program isn't quitting. It works fine, encryption and all are happening, but the QUIT button doesn't work, and new windows keep opening up. Can someone help? When the user clicks either "encrypt" or "decrypt", the program should...
  20. R

    Help with this program please !!

    Actually.. it should be i<(strlen(s1) - strlen(s2))... And instead of return 0 in your program, you should do a break; instead.. because otherwise your code won't detect "pet" in "puppet" .. first failure will terminate the function :S and try pasting the code you actually wrote in your...
Back
Top