Jump to content

nfm

Member
  • Posts

    193
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by nfm

  1. delphi features garbage collector so it can't leak memory, so can't vcpp if coded right . i just want to tell people to stop using c# with dot net, none of the serious programmers code in .net (although sony coded few apps with .net and ms's sql, and their performance is horrible). nlite is very good, but .net does make it crappy. here's what world runs on - asm with c/c++; used for heaviest type of calculations such as encoding. - visual c plus plus with mfc interface; used for guis, which would be perfect for your app, but requires little more coding. and for rest, delphi can be used, you should really try delphi. i did learned quite of c# but then i stopped, i don't see any point in it. that's correct, i code an encoder gui with some guys in c#, the only reason why we still us eit is because we have more than 20 themed i can say windows, + lots of button, checkboxes etc. is easier to manage all of that in ms's visual studio 2005 and it would really take some time to translate that into delphi.
  2. very neat, if you want to code nice guis, switch to delphi (making your proggy 28 times more efficient and faster) or to VC++/MFC, this proggy eats 28mb from start and loads couple of second, like rest of .net crap.
  3. I got some news for linux lovers I myself prefer open suse over ubuntu, gentoo, debian or **** small linux. source: http://en.opensuse.org/
  4. That was added, removed, updated and deleted through cmd. I haven't really started out with php yet, however, I was able to setup a hit counter and ip tracker using php. php inserted data into mysql's db, so I guess I know a little: basically this is what I'm doing, this is only for practice, i created db_conf.php with following code: yes I named my db sexy, just for fun This is what I use to connect to db (first 4 lines, the rest is simple hit counter, note that I created a table name "counter" beforehand in sexy database): <?php require($_SERVER["DOCUMENT_ROOT"] ."/test/config/db_conf.php"); $connection = @mysql_connect($db_host, $db_user, $db_pass) or die("error connecting"); mysql_select_db($db_name, $connection); $query = "select * from counter"; $result = mysql_query($query, $connection) or die(mysql_error()); $views = mysql_result($result, 0, "num_views"); $views++; $query = "update counter set num_views = $views"; mysql_query($query, $connection) or die(mysql_error()); echo "This page has been viewed ".$views." times"; ?> ripken can you post any example your html <form>, I'm interested in it
  5. Yeah, I have everything setup on both machines, I'm using apache on both of course. I ended up using xampp on linux because I couldn't get apache, php, mysql to talk to each other. On Windows everything is good. I will post basic commands when I'll find them and test them. well this is how you connect to th db using shell cmd on both unix and windows: cd C:\Program Files (x86)\xampp\mysql\bin mysql -u root -p "You may asked for password" and that's it, you can type --help or look into manual. linux may differ: cd /opt/lampp/bin mysql -u root -p edit: i had a talk with mysql C:\Program Files (x86)\xampp\mysql\bin>mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with; or \g. Your MySQL connection id is 3 to server version: 5.0.21-community Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | cdcol | | mysql | | phpmyadmin | | test | | webauth | +--------------------+ 6 rows in set (0.00 sec) mysql> create database sexy; Query OK, 1 row affected (0.00 sec) mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | cdcol | | mysql | | phpmyadmin | | sexy | | test | | webauth | +--------------------+ 7 rows in set (0.00 sec) mysql> use sexy; Database changed mysql> show tables; Empty set (0.00 sec) mysql> create table sexy_test (Name varchar(15), Age int); Query OK, 0 rows affected (0.00 sec) mysql> show tables; +----------------+ | Tables_in_sexy | +----------------+ | sexy_test | +----------------+ 1 row in set (0.00 sec) mysql> describe sexy_test; +-------+-------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +-------+-------------+------+-----+---------+-------+ | Name | varchar(15) | YES | | NULL | | | Age | int(11) | YES | | NULL | | +-------+-------------+------+-----+---------+-------+ 2 rows in set (0.00 sec) mysql> create table guests (autoID int unsigned auto_increment primary key, firs t_name varchar(15), last_name varchar(15), age int, comments text, data_entered date); Query OK, 0 rows affected (0.00 sec) mysql> show tables; +----------------+ | Tables_in_sexy | +----------------+ | guests | | sexy_test | +----------------+ 2 rows in set (0.00 sec) mysql> describe guests; +--------------+------------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +--------------+------------------+------+-----+---------+----------------+ | autoID | int(10) unsigned | NO | PRI | NULL | auto_increment | | first_name | varchar(15) | YES | | NULL | | | last_name | varchar(15) | YES | | NULL | | | age | int(11) | YES | | NULL | | | comments | text | YES | | NULL | | | data_entered | date | YES | | NULL | | +--------------+------------------+------+-----+---------+----------------+ 6 rows in set (0.00 sec) mysql> the database>field>table i created can be used as a hit counter, it auto increments automatically. i should post info on connecting to db shortly more crap: C:\Program Files (x86)\xampp\mysql\bin>mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with; or \g. Your MySQL connection id is 4 to server version: 5.0.21-community Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> use sexy: ERROR 1049 (42000): Unknown database 'sexy:' mysql> use sexy; Database changed mysql> describe guests -> \c mysql> describe guests; +--------------+------------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +--------------+------------------+------+-----+---------+----------------+ | autoID | int(10) unsigned | NO | PRI | NULL | auto_increment | | first_name | varchar(15) | YES | | NULL | | | last_name | varchar(15) | YES | | NULL | | | age | int(11) | YES | | NULL | | | comments | text | YES | | NULL | | | data_entered | date | YES | | NULL | | +--------------+------------------+------+-----+---------+----------------+ 6 rows in set (0.00 sec) mysql> insert into guests values (NULL, "Bill", "Gates", 1337, "Is rich", "2006- 08-12"); Query OK, 1 row affected (0.00 sec) mysql> SELECT * FROM guests; +--------+------------+-----------+------+----------+--------------+ | autoID | first_name | last_name | age | comments | data_entered | +--------+------------+-----------+------+----------+--------------+ | 1 | Bill | Gates | 1337 | Is rich | 2006-08-12 | +--------+------------+-----------+------+----------+--------------+ 1 row in set (0.00 sec) mysql> insert into guests values (NULL, "Kamil", "Anonim;)", 17, "Is poor", "20 06-08-12); "> "> c\ "> \c "> ); "> \c "> '\c' "> insert into guests values (NULL, "Kamil", "Anonim", 17, "Is poor", "06"); "> /c "> \c "> clear the ****in buffer "> \c "> I couldn't clear the buffer ____________________________________ even more: C:\Program Files (x86)\xampp\mysql\bin>mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with; or \g. Your MySQL connection id is 6 to server version: 5.0.21-community Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> use sexy; Database changed mysql> show tables; +----------------+ | Tables_in_sexy | +----------------+ | guests | | sexy_test | +----------------+ 2 rows in set (0.00 sec) mysql> describe guests; +--------------+------------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +--------------+------------------+------+-----+---------+----------------+ | autoID | int(10) unsigned | NO | PRI | NULL | auto_increment | | first_name | varchar(15) | YES | | NULL | | | last_name | varchar(15) | YES | | NULL | | | age | int(11) | YES | | NULL | | | comments | text | YES | | NULL | | | data_entered | date | YES | | NULL | | +--------------+------------------+------+-----+---------+----------------+ 6 rows in set (0.00 sec) mysql> insert into guests values (NULL, "Kamil", "Not your business", 17, "Is le arning sql, mysql not ms's bs", "08-12-06"); Query OK, 1 row affected, 1 warning (0.00 sec) mysql> describe guests; +--------------+------------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +--------------+------------------+------+-----+---------+----------------+ | autoID | int(10) unsigned | NO | PRI | NULL | auto_increment | | first_name | varchar(15) | YES | | NULL | | | last_name | varchar(15) | YES | | NULL | | | age | int(11) | YES | | NULL | | | comments | text | YES | | NULL | | | data_entered | date | YES | | NULL | | +--------------+------------------+------+-----+---------+----------------+ 6 rows in set (0.00 sec) mysql> select * from guests; +--------+------------+-----------------+------+-------------------------------- ----+--------------+ | autoID | first_name | last_name | age | comments | data_entered | +--------+------------+-----------------+------+-------------------------------- ----+--------------+ | 1 | Bill | Gates | 1337 | Is rich | 2006-08-12 | | 2 | Kamil | Not your busine | 17 | Is learning sql, mysql not ms's bs | 2008-12-06 | +--------+------------+-----------------+------+-------------------------------- ----+--------------+ 2 rows in set (0.00 sec) mysql> after all, it's not that really hard!
  6. KB914784 doesn't have to do anything with vmware, i and many others don't have any problems with vmware.
  7. your right, my bad, **** ie6, i forgot to fire up firefox, fixing now... edit: i doubled checked in firefox and it's working now, if it's not, i'll fix it tomorrow.
  8. refresh the page or delete your cache, i fixed the link.
  9. ok, finished uploading, it's 3:16am lol, i have to get up at 6:00am
  10. Try to get your hands on Macromedia Flash 8.
  11. booogy, 10 min. man, I'm uploading stuff now... edit: actually more like 20min. uploading is slow. done, you can get v1.70 here.
  12. All of them are good, but I still prefer d*mn small linux or open suse linux.
  13. My mistake, I took down down entire site down for a moment until I get finished with new stuff.
  14. Hi, I need some help feeding mysql with commands, I got some good info and even video tutorials but they're out of date and syntax changed. Basically this is what I need: - Basic Unix/Linux shell commands such as viewing, creating database/tables for v5.0+ - Same thing goes for Windows I've looked into official manual, it's pretty complicated. I also have something called phpmyadmin, does that handles pretty much everything that command does through gui? Well this is what phpmyadmin team says: Which one would be better to maintain database? Note that most of the things I will run on Linux and on Linux it is not easy/efficient to work with files since I don't have my favorite text editor and everything is accessible only by root user, unless I keep inputing password which is time consuming. Having said that, once I learn to use and remember basic commands, I will work myself up reading the manual . it's not like I didn't google, I just can't find what I'm looking for. I'm still googling anyway...
  15. I always use margins, I don't like to use tables at all or spacings between tables. you could try doing something like this in your css: margin: 3px 0px 0px 3px; or something like this <td style="margin: 3px 0px 0px 3px;"></td> same thing can go for <tr> I think. edit: Sorry, I thought you wanted to space out content form a table . For something like that I use dummy column or row: <td width="3px" bgcolor="#777777"></td> Note that this might now work, everything has to be nested properly.
  16. Read manual that came with your router, set static ip on your router and on your laptop (aswell as the deafult getaway and other settings, logon to your router, it should be straighforward) so you can stop messing with "network connection" in conrol panel.
  17. It's really simple, make sekf extracting archive with winrar or 7-zip that would extract shortcut also. If you're using $OEM$ you can dump virtualdub folder into $Progs folder and shortcut into $Docs folder, there's also hundreds of other ways to do it. I would recommend to use vitualdubmod, btw what are you using that app for? edit: Mrs Peel at ryanvm.net/msfn/ created an addon with extra plugins, you may have to search though.
  18. There's a link still in my signature http://www.zeroangel.ch/XP64_ua_cd_pack/ I didn't shutdown linux on my xbox properly couple of times and corrupted the filesystem I uploaded site to an old place. I don't know what Super XP is. You simply have to extract your drivers, whether it's an installshield, zip, rar or someting else. installshield may be difficult to extract, but there are ways around. If you have drivers already installed on your machine, you may look into Windows directory where it stores backup of them. there's also reinsallbackup in system32 if you upgraded any current device with proper driver installed. edit: did you see this http://unattended.msfn.org/unattended.xp/view/web/33/ ?
  19. Running stock Open Suse Linux 10.1 (now completely free) with KDE 3.5.1a inteface: Ubuntu look neat too, you should try kubuntu since kde is similar and 2 times better than windows gui. I ran gnome before, now I tried kde and will not go back to gnome. I would run Kubuntu but since I needed extra packages I went with suse, I install all packages execpt gnome and gnome development package aswell as the packages for laptops and pdas.
  20. nfm

    My site..

    @Cygnus check out this site http://www.opensourcecms.com/ , I just found it today and what I also found out it that joomla is an open source! I thought it was not free. Check out this vitual demo http://demo.opensourcecms.com/joomla/ There are laso many great themes http://demo.rockettheme.com/
  21. WMP 10 is already included in Windows XP Professional x64 Edition. There's currently no WMP 11 for 64-bit machines but you can install x86 package manually on x86_64 and media player 11 will work.
  22. An addon is like an extra package (it can be an app, codec etc.) that does get integrated into your windows xp source. You don't need to integrate any service pack, your copy of windows comes with sp1 already. You can call addon a pack, because basically it's the same thing. Here's the integration process with screenshots http://24.14.156.63/nfm/page/updatepack/integration.html Those links may not be valid in the future, I'm still playing around with server.
  23. 50kb will be enogh to host pages and a mysql database. I will reupload files to ftp which gives you about 300kb/s download speed. I Just registered at http://www.dyndns.com/ Thanks a million TAiN and others
  24. I've managed to finish today what I had to. I finally got xampp to work on gentoo linux installed on cracked xbox. With samba network sharing working now I mirrored my website: http://24.14.156.63/nfm/ I wonder what will happen when my ip address will get changed? edit: can somebody check download speed on any files for me?
  25. Ubuntu made an extra package with multimedia support such as mp3 decoding, I think it's ont their wiki page. You should be better of with suse 10.1, it comes multiple best linux players such amarok. Mplayer is the best, pure shell power.
×
×
  • Create New...