Post your work here

Kornowski - I would love to see it, but it won't load. Can you try again? Thanks!

I'll upload it again :)

Here it is:

antiwarfj6.jpg
 
here is mine. i took a random picture but actually there was no Lens Flare. I put it there using photoshop...lol
 
Some of my photoshop work.. mainly playing around:

colourexplotionae2.jpg


imagegb6.jpg


image3ty5.jpg


play2cb0.jpg


play3fe0.jpg


play4vn1.jpg


satce2.jpg


test2yw0.jpg


untitled3zb6.jpg


My best and only work I've done in 3D Studio Max.

earthqn3.jpg


spkjc5.jpg


That's about it :P
 
Some digital illustrations, 3D renders I did with 3D modeling & rendering software. Use illustrator and Photoshop for making textures.
Rendered the final scenes on a two 2 GHz Opteron processors 2GB Ram. Final images are 37million pixels, talk about long renders.

damcity_pic1.jpg



dragster_0ndesk.jpg


nedufo-pic-2.jpg
 
Last edited:
if anyone here is a web developer and uses OS X, here is a shell script I wrote to automatically generate an plain text HTML page with a date stamp and the user that created it.

Code:
#!/bin/bash

# make_page - A script to produce an HTML file 
# that has a date stamp
# Manually add whatever code you want it to output by default.
# This will display the user name that is currently logged in.

RIGHT_NOW=$(date +"%x %r %Z")
TIME_STAMP="Updated on $RIGHT_NOW by $USER"

cat  << -_EOF_
    <HTML>
    <HEAD>
        <TITLE>
    
        </TITLE>
    </HEAD>

    <BODY>
    
    <P>$TIME_STAMP</p>
    </BODY>
    </HTML>

_EOF_

Copy and Paste this script into a text editor, and make sure your editor is set to plain text, rich text will not work bash hates it. Then save the file as myscript.sh (make sure you have the .sh)

Now, to be able to run the script we need to do a little background coding to make it work. Using the chmod command you can make sure that everyone can read-execute the file

Code:
chmod -R 755 /path/to/script

you can just drag and drop the file onto the terminal to get the full path. Now if you want to add it into the BASH commands you can copy the script into the $PATH, if not you can run it from full path by doing this:

Code:
sh /path/to/script | open -t -f

This will run the script and out put all text into the script into the default text editor, in OS X, that would be text edit. If you want, you can edit the LaunchService.plist file to change the default text editor.

I eventually want to build a website for all my blogs and reviews and what not but I am waiting on my web developer friends to be unbusy to help me out, so I wrote this script to make it easy to keep your webpage up to date.

You have to save the file as an HTML file after you edit it, because it will just open it as a temp file when running the script. It will display when it was last edited and created by.
 
here is another screenshot. RESIDENT EVIL 4. but i added some balloons, yeah i think that was what the zombie was saying approximately..lol:P

 
Back
Top