• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

Recent content by bigoh5

  1. B

    C# and Python Integration

    perhaps this a better question, but a less realistic possibility. Is it possible to import the figure browser from python (what appears when you call the py.show() function) into a C# application? seems highly improbable.
  2. B

    C# and Python Integration

    Because of some hardware interfaces.
  3. B

    C# and Python Integration

    Sorry about the lack of information. So, I have a C# interface which initiates a python script to run. The python script opens up a data file and creates map using matplot library. It then saves this file as an image file and the windows form opens up the image file. The goal is to get...
  4. B

    C# and Python Integration

    Hi all, I am working on a project which requires a C# interface that commands a map generating program, which is written in python. The C# interface runs the python code and then displays the map in a windows form. One of the functionality I would like to implement is to display additional...
  5. B

    Databases

    Does java have any BTree implementations, 3rd party (I know the java api doesn't have anything) or even in another language where I could easy create my own BTree? For now I'm working on implementing my own BTree. Any references or sources would be much appreciated!
  6. B

    Databases

    Hello, I am writing my own database engine with a friend and I had a few questions about databases to make this go smoother. I know that the base of the MySQL database is a BTree. But is there one BTree per database table, or does each BTree only hold perhaps one type of value (ie. one...
  7. B

    Form Validation Javascript+PHP

    Arainach, thanks for your reply. How can I get the PHP script to run/validate after Javascript validates?
  8. B

    Form Validation Javascript+PHP

    Hi all, I am working on a web page in which a user enters form information, and the idea is that javascript will validate all the form entries and if its all valid, then a PHP script will insert it into a MySQL db. How should I go about doing this? I currently have the form, and a JS...
  9. B

    Java Reflection Code Applet

    Hi all, I ran across an interesting problem: Write an applet that outputs its own source code in a green box. Do not use reflection to access the applet's code. Anyone have any insight into a problem like this?
  10. B

    writing a makefile for windows

    Ah! Okay. I wish that information was detailed elsewhere more. Thank you.
  11. B

    writing a makefile for windows

    Hi, I was wondering if writing a makefile (to be run on nmake, I suppose) is very different from writing a makefile for GNU. I was not able to find a lot of detail online. There are specific DLL's that are needed for my project and I wasn't sure how to incorporate that into the makefile...
  12. B

    socket class compatibilities windows/linux

    I have a project built in linux that I am trying to port over to a windows vista machine. The socket libraries from unix <sys/socket.h>, <netinet/in.h>, <arpa/inet.h> obviously don't compile in a windows environment. I tried to use Services for Unix but it said my machine wasn't supported (but...
Back
Top