|
Click Here to Enter Site News XML/XSLT Josh Stribling June 12 2005 I updated the XML/XSL files and added them back to the server... If you are using Firefox, that should work as a temp fix... javascript Josh Stribling June 11 2005 Well... I managed to get all the vbscript converted to javascript, and debugged... Then I downloaded Firefox... And guess what doesn't support ActiveX Objects... hmmmm... So I guess I get to implement a new method using XSLTProcessor and what not... Also looking into Sarissa Single HTML Doc Josh Stribling June 5 2005 OK... I changed the whole layout... (again) This time I designed it so that there is only 1 HTML file, and all the data is kept in seperate XML Files. The files are swapped out using vbScript when a link is clicked by transforming it through a single XSL file (which is content sensitive) then inserted into a document <div> tag XML/XSLT Josh Stribling Jan 5 2005 Finished the XML version with the XSL Transformations (See Links) CSS Josh Stribling Jan 4 2005 Applied CSS to the site to give it a little style...(And simplify the html) Links Josh Stribling Jan 2 2005 Added a few of my favorite links. Assembly Josh Stribling Jan 2 2005 Added a few of my favorite assembly demos. Check them out! Tutorials Josh Stribling Jan 2 2005 Added a Tutorial Section, and a qbasic tutorial. Happy New Year Josh Stribling Jan 1 2005 Happy New Year Everybody!!! And welcome to my new site. It is slightly under construction at the moment... Should be up soon. Drawing Board Chat QBasic Ghost Cube zip/gc-fin4.zip Josh Stribling Interactive 3D effect demo img/ssgc0001.gif LudaTris zip/ludatrs4.zip Josh Stribling Crazy, Special effect rich, Tetris clone img/sslt0001.gif Bump map demo zip/unwired.zip Josh Stribling Bump Map demo that I was working on for a project called UnWired img/ssbm0001.gif Multikey zip/utils.zip Josh Stribling Multikey Utility img/nophoto.gif Visual Basic Win Mod zip/winmod.zip Josh Stribling Use to manipulate windows. Always on top / Opacity img/winmod.png Web Hack Josh Stribling Use to manipulate Internet Explorer Windows img/construction.gif Basic Bricks zip/bricks.zip Josh Stribling Very Basic Brick Game... Just the result of being bored, and messing around... Resize the window and see what happens... Press different mouse buttons while the ball is moving to cheat ;-) Change the source to add your own twists to it... img/bricks.png Assembly OMNISCENT zip/snc_omni.zip Sanction http://www.pouet.net/prod.php?which=482 WOW, complete Descent Engine with music in Assembly (only 4K) img/snc_omni.gif Mesha zip/mesha.zip picard/rhyme http://www.pouet.net/prod.php?which=954 Awsome 3D Demo in Assembly (only 4K) img/mesha.gif Tube zip/tube.zip 3SC http://www.pouet.net/prod.php?which=3397 A cool 3D tube demo in Assembly (only 256 bytes w/source) img/tube.gif Tutorials QBasic Josh Stribling Jan 2 2005 Tutorial to save a screenShot from qbasic in WinXP rawtutorial.xml Links QBasic Pete's QB Site http://www.petesqbsite.com/index.php Nice QBasic site I found linking to me... Check It Out! Search Google http://www.google.com/ If all else fails... Google's the only way to go ;-) General Reference Wikipedia http://en.wikipedia.org/wiki/Main_Page Free online wiki (you can edit) Encylopedia Tech Forum Tek-Tips http://www.tek-tips.com/ For all of your technical questions Tech Forum Eng-Tips http://www.eng-tips.com/ For all of your engineering questions Tech Resource W3 Schools http://www.w3schools.com/ Learn anything about web development Tech Resource VB @ the Movies http://msdn.microsoft.com/vbasic/atthemovies/ Free VB.Net training Videos Tech Resource MSDN http://msdn.microsoft.com/ Great resource for all your windows programming needs Demo Scene Scene http://www.scene.org/ The core of the demo scene Demo Scene Pouet http://www.pouet.net/ Excelect Demo Scene Resource Demo Scene 256B http://www.256b.com/ Dynamite comes in VERY small packages Demo Scene Art Of Demomaking http://www.flipcode.com/articles/demomaking_issue01.shtml Awsome tutorials to get you started in an ever growing scene EMU Scene Zophar's Domain http://www.zophar.net/ Ultimate Emulator Resource Game/Demo Dev Flipcode http://www.flipcode.com/ Great how-to articles and tutorials Game/Demo Dev CFX WEB http://www.cfxweb.net/ Game and Demo development resource (Check out JACC) Game/Demo Dev Game Dev http://www.gamedev.net/ All things Games Rendering Tool Blender http://www.blender3d.org/ A really nice free CAD/Rendering package (Open Source) Image Tool GIMP http://www.gimp.org/ A free GNU Image Manipulation Program (Open Source) 3D Engine OGRE http://www.ogre3d.org/ A nice realtime 3D rendering engine (Open Source) Online Shopping Amazon http://www.amazon.com Cheap Books, Movies, And More Online Shopping EBAY http://www.ebay.com/ Need I say more? Online Shopping Dell http://www.dell.com/ The ONLY place I buy my computers from Entertainment G4TechTV http://www.g4techtv.com/ Technology and Games Misc Master Minds Software http://www.hybd.net/~mms/index.php My former coding group... Blender
This is my Blender area...
Click on the Thumbnails to enlarge the screen shot at the bottom of the page...
Blender is a Great, Free (Open Source) 3D Modeling/Animation package.
Click here to get
Star Ship Launch blend/StarShip1.blend Josh Stribling This is a basic star ship launch sequence I started on... As you can see, I never got around to texturing it... The animation still looks pretty cool though ;-) blend/StarShip1.jpg Star Ship blend/StarShip2.blend Josh Stribling This is supposed to be somewhat of a cross between an R-Type and Gradius Ship... I did a little more to the texturing of this one... blend/StarShip2.jpg Qbasic Screenshot using Jasc Paintshop Pro If you have ever tried to save a screenshot of a QBasic program, running in Sceen Mode 13, you may know it can get a little tricky... Especially in XP. Here is a method, using Jasc Paint Shop Pro (PSP), with the RAW format, and a saved Palette. In case you did not know, or care, when you use BSAVE in Qbasic, it creates a RAW File with a 7 byte header. When You load the RAW file into paint shop, it will be a grey scale image, all you need to do then is load a palette. Here is a sub you can Add to your program to save the PAL and RAW Files:
DEFINT A-Z
SUB ScreenShot (FILE AS STRING)
'*** Save PAL File
OPEN FILE + ".PAL" FOR OUTPUT AS #1
PRINT #1, "JASC-PAL" 'Jasc Palette Format
PRINT #1, "0100" '8 bit
PRINT #1, "256"'256 colors
OUT &H3C7, 0
FOR i = 0 TO 255
r = (INP(&H3C9) * 255) \ 63 'Get Red Value
g = (INP(&H3C9) * 255) \ 63 'Get Green Value
b = (INP(&H3C9) * 255) \ 63 'Get Blue Value
PRINT #1, LTRIM$(STR$(r) + STR$(g) + STR$(b))
NEXT
CLOSE
'*** Save RAW File
DEF SEG = &HA000'Set Segment to Video Memory
BSAVE FILE + ".RAW", 0, 64000 'Save 64000 bytes (320 x 200 pixels)
END SUB
Then just call the sub from somewhere in your program...
Screen 13
DO
'...Graphic drawing code...
A$ = INKEY$
IF UCASE$(A$) = "S" THEN ScreenShot "MyProg" '...More input handling code...
LOOP UNTIL A$ = CHR$(27)
This will save 2 files: MyProg.PAL
MyProg.RAW Now you can Open the RAW File in Jasc PSP with the following options set: Width = 320
Height = 200
Header Size = 7 Then Select Colors>Load Palette... from the menu, and open the PAL File you generated. After that, just save it as a GIF file, and you should be good to go... The Adobe Photo Shop Method should be very similar... You might have to change the Palette Definition A little... |