![]() |
#441 | ||
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Join Date: Oct 2016
Posts: 833
|
![]() Please find in the attachment my currently freeware TicTacToe. It is designed to resize to any screensize from 640x480 on upwards to even 2500x1200 an possibly beyond.
|
||
![]() ![]() |
|
![]() |
#442 | ||
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Join Date: Oct 2016
Posts: 833
|
![]() Jesus Christ!
Here is TicTacToe for Windows 3.11 all the way up to XP. If you have a real hardware at 25mhz it will be slow. However you need to place the ttt311 in your Windows directory or where Windows 3.11 and all the other windows up to XP can get to it. The ttt311 folder contains all the files you need like character set that you can change manually and picture that you can change manually. The character set is easy however the picture you need something like PS. |
||
![]() ![]() |
|
![]() |
#443 | ||
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Join Date: Oct 2016
Posts: 833
|
![]() The cool thing about WinRAR 3.93 is that is works all the way back to Windows 95. It also works up to Windows 10. Not only that, but also 1 password allows you to unlock the special ones for other languages like Chinese. So you could technically download all the different WinRARs from different countries and use the 1 key you bought and it works for those too. I just tried my trusty keys from over 10 years ago to a Chinese one and it works. There is supposed to be a personal free one however I couldn't find it on the official site.
|
||
![]() ![]() |
|
![]() |
#444 | ||
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Join Date: Oct 2016
Posts: 833
|
![]() Well I didn't find any sweets but coffee that is coffee is enough.
Thanks mom Huong Thi Vu! You are the best mom unfortunately you have to pay attention to your other two kids too. hehe That is okay. Nguyen Khoa Thuyen gets the best attention since she is the youngest. She deserves the attention. The elder one can take care of their self. Thank you for just being you# I see you working so hard and sometimes you just should relax. Just let us try to take care of ourselves. We are grown up living under your roof. It is okay. We won't have a party while you are away. I'm serious. Trust me. What happens like that is only in the movies with the popular kids. I am least popular. Good event Nguyen Khoa Thi graduated first ahead of me although younger. She can have the responsibility! That's why dad Nguyen Binh Thuy has 3 kids with you so that there is a backup. 1 fall 2 left. 2 fall 1 left. Not possible all 3 falls# All else fails there is next life!!!!! |
||
![]() ![]() |
|
![]() |
#445 | ||
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Join Date: Oct 2016
Posts: 833
|
![]() Of the hundreds of potential softwares that I programmed I only currently have 1 official copyright. That wasn't even for the PC. It was for a TI83 smart calculator. However it wasn't that good. It actually changed the smart calculator into a time keeper. The clock was good for a while however with time it has errors crept in. However for maybe a week it was off by a second! It uses complex extrapolation mathematics to keep track of time. That is the current copyright for Texas Instrument company that I program their calculator.
Now I am seeking my very second copyright for the PC. It is actually small however useful. However the evaluation period is long. It could take up to a year depending on the volume of copyrights being asked. |
||
![]() ![]() |
|
![]() |
#446 | ||
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Join Date: Oct 2016
Posts: 833
|
![]() The application fee is a lot $35 USD compared to a free one since I am on public support. However that is the risk I take for putting in an application for a copyright. They could reject you for any reason. I could lose $35 and work for nothing.
|
||
![]() ![]() |
|
![]() |
#447 | ||
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Join Date: Oct 2016
Posts: 833
|
![]() I heard they updated their registration certificate to be more polished these days. It used to be a yellow one with a shiny seal. However now they have a red ribbon with the seal and it is both sides of the copyright!
|
||
![]() ![]() |
|
![]() |
#448 | ||
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Join Date: Oct 2016
Posts: 833
|
![]() Well Bac Huynh is one of my uncles. He has just gotten out of the hospital. So for those of you who think you got it bad he just got surgery of the heart. It was clogged and they had to put a balloon in to enlarge the arteries so the blood flows through better.
|
||
![]() ![]() |
|
![]() |
#449 | ||
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Join Date: Oct 2016
Posts: 833
|
![]() Jesus Christ!hehe
Well I heard there are some bad news about Angelina Jolie and Brad Pitt? Well it is settled now with the pay from the couple. People are always going to seek attention. Look at my software. It looks like Lode Runner however it is my creative design that happens to look like that. Ever heard of the theory if it is meant to be it is in your hands? That is good and one must always recognize that divine law! You do the best you can and God gives you Mrs. Jolie and Mr. Pitt to adapt your child# |
||
![]() ![]() |
|
![]() |
#450 | ||
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Join Date: Oct 2016
Posts: 833
|
![]() #include <dos.h>
#include <conio.h> #include <stdio.h> void setvideo() { _AL = 19; _AH = 0; geninterrupt(0x10); } void returnvideo() { _AL = 3; _AH = 0; geninterrupt(0x10); } void plotxyc(int x, int y, int c) { _AX = c; _CX = x; _DX = y; _AH = 0x0c; geninterrupt(0x10); } int GetPixel(int x, int y) { int returnvalue; _CX = x; _DX = y; _AH = 0x0d; geninterrupt(0x10); _AH = 0; returnvalue = _AX; return(returnvalue); } void blocks(int x, int y, int m, int c, int z) { int matrix[3][10][10] = { { {0,0,0,0,0,0,0,0,0,0}, {0,0,0,0,1,1,0,0,0,0}, {0,0,0,0,1,0,0,0,0,0}, {0,0,0,1,1,1,0,0,0,0}, {0,0,1,0,1,0,1,0,0,0}, {0,0,0,0,1,0,0,0,0,0}, {0,0,0,0,1,0,0,0,0,0}, {0,0,0,1,0,1,0,0,0,0}, {0,0,1,0,0,0,1,0,0,0}, {0,0,0,0,0,0,0,0,0,0} }, { {0,0,0,0,0,0,0,0,0,0}, {0,0,0,0,1,1,0,0,0,0}, {0,0,0,0,1,0,0,0,0,0}, {0,0,0,1,1,0,0,0,0,0}, {0,0,0,1,1,1,0,0,0,0}, {0,0,0,0,1,0,0,0,0,0}, {0,0,0,0,1,0,0,0,0,0}, {0,0,0,0,1,0,0,0,0,0}, {0,0,0,1,0,1,0,0,0,0}, {0,0,0,0,0,0,0,0,0,0} }, { {0,0,0,0,0,0,0,0,0,0}, {0,1,1,1,1,1,1,1,1,0}, {0,1,0,1,0,0,0,0,1,0}, {0,1,1,1,0,0,0,0,1,0}, {0,1,0,1,1,1,1,1,1,0}, {0,1,1,1,1,0,1,1,1,0}, {0,1,0,0,1,1,1,0,1,0}, {0,1,0,0,1,0,1,0,1,0}, {0,1,1,1,1,1,1,1,1,0}, {0,0,0,0,0,0,0,0,0,0} } }; int xpos, ypos, cpos, mpos, zpos; for(xpos = 0; xpos < 10; xpos++) { for(ypos = 0; ypos < 10; ypos++) { if(matrix[m][ypos][xpos] == 1) { plotxyc(x+xpos, y+ypos, c); } else { plotxyc(x+xpos, y+ypos, 0); } } } } void pause() { _AH = 0; geninterrupt(0x16); } int main() { int tempx, tempy, tempc, tempm, tempz; setvideo(); tempc = 12; tempz = 1; tempm = 2; tempy = 99; for(tempx = 0; tempx < 320-10; tempx = tempx + 10) { blocks(tempx, tempy, tempm, tempc, tempz); } for(tempz = 0; tempz < 320-10; tempz++) { tempm++; if(tempm > 1) { tempm = 0; } blocks(tempz, tempy-10, tempm, 10, 10); pause(); } for(tempz = tempy-10; tempz < 200-10; tempz++) { tempm++; if(tempm > 1) { tempm = 0; } blocks(320-10, tempz, tempm, 14, 10); pause(); } blocks(320-10, 200-10, tempm, 0, 12); gotoxy(25, 20); printf("Help..."); gotoxy(1,1); printf("www.Abandonia.com"); loop:; goto loop; returnvideo(); } |
||
![]() ![]() |
|