Thursday, May 27, 2010

Casual Internet's take on OXIS International

Oxis International
Oxis On Nasdaq

With its headquarters in California, Oxis International is a corporation that is advancing oxidative stress technology. If you've ever heard the phrase 'free radical' before and wondered what they are and why you should be afraid of them, Oxis has made it their business. A free radical is a very reactive brand of any of the common elements your body uses to function on a daily basis. Oxygen is a good example. 

Most oxygen that you breathe in is going to contain a few of these 'free radicals' throughout your day. They tend to do their own thing once inside your body and cause stress to your body functions. Your body uses an antioxidant to take care of this problem and relieve the added stress on your system. There are a fair amount of naturally occurring antioxidants in the foods that you might consume during your day. Blueberries for instance. When your body has an adequate supply of these antioxidants, it can alleviate the additional wear and tear caused on your body by free radicals, prolonging your life.

To paraphrase and summarize, antioxidants in your body produce an anti-aging effect. The S.A.D or Standard American Diet doesn't always include unprocessed fruits, vegetables and other foods which contain antioxidants such as Lycopene (which is present in tomatoes and watermelon), Vitamin A (found in green leafy vegetables, or Glutathione(which is synthesized in your body from broken down proteins called amino acids. This is why so many people find multivitamins and antioxidant supplements appealing. If you bother to look at the ingredients list on these supplements, you'll only find sources listed for a handful of the contents. The rest are just given by name, whether amino acid, vitamin, or mineral. They all had to come from somewhere.

Oxis searches natural sources of antioxidants out for extraction and redistribution to other companies who then put them into the multivitamin or antioxidant supplement capsules (or other such dosage methods). They choose to extract naturally occurring antioxidants over synthesizing them for safety and potency of their product. The scope of the company is not limited to supplying antioxidants for ingestion, check out their website if you wish to know all they do. The company is also known for being the only significant commercial producer of l-ergothioneine in the world.

In case you missed the stock ticker at the top of the page, I'll paste it down here again. If you feel like you want to be behind Oxis and share in their success, they are a penny stock.

Traditional Benchmarks

I can't remember exactly where in college I had heard this from, but a professor once professed that in literature, you should write a million words before you start to write. The implication is that once you have written those 1,000,000 words, you will have harnessed your style of writing, as well as worked out your own common writing flaws.

I'm trying to justify whether or not I have met this goal, as I am looking to get published this year. Have I written 1,000,000 words in my life. Yes, I know this without a moments pause for doubt. The question is, have I written a million words on the path to better and serious writing. Discount chat room conversation, discount friendly e-mails and texts and light thread posts and computer coding; discount all those words that are not a serious investment in literature.

After all those words are tossed aside, what is left. Letters, stories, reports, informational and recreational articles, thesis papers, serious forum content, formal e-mails and I would believe that all the words written under the teachings of the K-12 + College English program would count, as well as any writing done in a secondary language.

Though I have yet to complete anything for formal publishing, my wide array of half finished texts probably push me over the top of 1,000,000 words. I am by no means pushing this obstacle in the way of any writer other than myself. It is a large goal to contemplate. I say that if you find you have passed this mark and are not submitting serious writing to some sort of a publisher, you should so that the audience of the world can have a look at your sharpened pen.

Sunday, April 25, 2010

Turning One Out

I finally exported my first GUI (Graphic User Interface) based Java Applet. This one was basically the same as a 'magic 8 ball', but with a few other parameters. This one was a request from a friend of mine, and I tried to do it in flash first. I found I could get it to play sounds easily enough when you clicked for an answer, but I couldn't get it to randomly generate text on the screen from a list I created. Most specifically, I couldn't get it to output text to a dynamic text box at all. This was frustrating.

Of course, with Net Beans and java, absolutely everything you make is tagged as an instance you can then manipulate in programming. It took about 20 minutes of effort, but I could get it to spit out text to a dynamic text box. The next thing I had to do was to randomize the string of text it displayed. This was the part of programming that comes easy to me. I had to go through C+ and C++ in college before getting to java, so just writing code is nothing.

I declared my constant(s) first (I was taught constants were to be in all CAPS), and then the remaining variable that would be fed to the textbox.

private int SIZE = 11;                                       //Dictates the size of an array
private String RandAns[] = new String[SIZE];  //Declaration of an array
                                                                                            //of  String to be the bank
                                                                                            //for my random answers
Random generator = new Random();               //Initialized randomizer.

//Next I wrote a function to populate the String array RandAns[], only
//example text is shown, can be changed to whatever suits your needs.

private void Populate()
    {
        RandAns[0] = "Example text 1";
        RandAns[1] = "Example text 2";
        RandAns[2] = "Example text 3";
        RandAns[3] = "Example text 4";
        RandAns[4] = "Example text 5";
        RandAns[5] = "Example text 6";
        RandAns[6] = "Example text 7";
        RandAns[7] = "Example text 8";
        RandAns[8] = "Example text 9";
        RandAns[9] = "Example text 10";
        RandAns[10] = "Example text 11";
    }

//upon initialization of the java applet, I call the function Populate, so
//that my array is full and ready.

public void init() {
        try {
            java.awt.EventQueue.invokeAndWait(new Runnable() {
                public void run() {
                    initComponents();
                    setSize( 550,470 );
                    Populate ();
                }
            });

//when I open the button handler, I added the following code to output
//a randomized string from array RandAns[] to the dynamic textbox
//on the GUI.
//Dynamic Textbox instance is named "AnsTxtBox"

private void AnsKeyActionPerformed(java.awt.event.ActionEvent evt) {                                      
        AnsTxtBox.setText(RandAns[generator.nextInt(SIZE)]);
      }

Hopefully this code can come in handy for anyone reading it. Of course...my professors from college are probably weeping at how poorly the program was written. But it works!

Saturday, April 24, 2010

A Walk & A Talk

One of my proofers on my proofing panel for my stories, the harshest critic, in-fact, was over for a day at my house, and we spoke as I continue reaching the end of my first novel. He finds it painful as an English major just graduating this semester when he looks at the shelves and finds out what quality of writing is actually getting published out there.

I told him about an author I had recently met who had gotten their work published, and without pushing it through an editor, so the text still had errors in it when it hit the shelves. We both came to the agreement that this person must have had a very good letter to the publisher when they submitted their text, as this cover letter is important. I hadn't had the chance to read the text yet, but if the letter you write to the publisher can be that influential as to make or break your publishing chances, I had better do well.

Our conversation leaked further into all the works I would like to finish in the world of literature, as they are numerous in number, and I haven't finished or submitted a single one yet. He began speaking of the lack of originality in literature and how he wouldn't start the writing of a book with characters and a plot, but rather, he'd start with the message the text was supposed to push, and work its way back from there. He'd find a way to express the message through events and characters in the book, specifically side characters so the book would not sound 'preachy'.

He commented that most of the ideas I had were messages that had been over-expressed in literature already, and that he would pick the books up, but probably not buy any of them. This went double for my graphic novel ideas. I am happy to have a friend that is so bold and honest in criticism, as I am a bit of a sadist and his altruistic views of the purpose of literature will only serve to elevate the quality of what I produce. Don't get me wrong, I'm not going to alter everything I make to suit his palate, but if I were to make one text out of the many I have sketched out that he would wish to buy, I know I have diversified my audience to include a higher caliber of reader.

My retort to his claim of a message being expressed already, and the general lack of originality in literature, was that in writing, I could take a message and express it how I saw fit. All those who would read the message through my text would then have my antiquities, my mores, and the metaphors I thought expressed the message best now attached to how they view the idea.

Unlike him, I don't start, or rather haven't started any of my stories thus far with the idea of pushing a message through, the message has always come from the work mid-stream. If his agenda is to push ideas through writing, my agenda is to tell a good tale. We agreed to disagree.

Monday, April 12, 2010

Into the Black Forest Again

So, in anticipation for my return to college this fall, I'm going to knock the rust from my programming mind. I haven't used it in a while, so I have to turn everything back on.

To give you a little background of my programming experience, I started out with a good 'old robot programmer course that UWP uses to introduce novice programmers to the world of writing code. From there I continued up the chain of C+, C++ and then Java. My college was interrupted after taking my first Java course. I have since messed with Action Script / Flash on my own.

Now I come back to it all. First two steps I take are to get a new flash compiler (Adobe Flash CS4 Professional - [$$Pricey!$$]), and to install the FREE Net Beans IDE 6.8 for programming in Java. I run Vista on my laptop, and the Java Development Kit I downloaded for Net Beans to run on didn't give me any non-Vista-compatible gruff.

I figured since Action Script is a bit faster to learn than Java, I would start my path back into programming with a few flash animations. Boy was I wrong. A lot has changes since I last accessed Flash (through Macromedia Flash MX), and I found that the latest Action Script (3.0) isn't even compatible with former versions. After some looking into, I found the methods of 3.0 to be a bit more friendly to a Java oriented programmer, until I tried to run my script. Let's just say that I'm happy I can access all the professional documentation I need for Action Script and Adobe Flash CS4 Professional through my membership to Books 24/7. That website has saved me a lot of frustration and coin with its repository of web-texts.

Now I am leaning more towards starting off again with Java. With some research I've done, mobile devices are actually a better audience for Java than Flash, which surprised me. Most computers do both, because the languages run virtually and very compatibly with little hardware specification; and the game platforms out there that use the internet are factory Flash compatible, but you have to take steps to get them to take Java.

The I phone, of course, does neither. There goes my idea for another quick buck. Steve Jobs doesn't like developing end user software...it might produce jobs that give him less profit. Bastard.

What this all means in the end, is that I will be pushing more back into Java than Flash, because it has the larger audience, and all my development tools are FREE.

Wednesday, April 7, 2010

The Road Ahead

This morning, upon waking, I decided to re-catalogue the skeletons of all my book ideas. After weeding out the contemporarily less viable ones, I was left with about 28 novels, and four graphic novels. I ran out of go-juice before getting through all of them, so the stack of 'to-do' items is larger yet.

I find again that it is important to get finger to key, or pencil to paper and push these works from my mind to printed type. The large fault I've had with my writing since middle school (or perhaps before), is that I do not have the gift of short story. I never have been able to stop writing a book.

As I am working through one or two novels, I'll get another four or five great ideas for additional texts unrelated to the one I'm working on. Sometimes I'll spider off and work on them. The endgame is more tasks due out with none removed from my list.

If it came to pass that I could have a career in sharing my mind and imagination with the world through picture, text, and maybe even screen, I know that I would never run out of resources. The world today (especially Hollywood), is low on originality. Though I can't claim to be truly original, I have so many fresh ideas that haven't been attempted yet to my knowledge, and it is clouding which path to take first.

I just have to plow ahead and get one work on the shelves. That might help the process.

Wednesday, March 31, 2010

State of Progress of My Works Today

I'll start first with my written novel, I am at 56K words and 12.5 chapters. The main character and his traveling companion are about to meet up with a bad-ass that gets his own book earlier in the time line. I can't wait. This is my 4th and hopefully final rewrite of this book before I get my panel of proofers to go over it. After that, I'm submitting for publishing. Should be another 3 months or so.

Game engine. Well, I haven't put any more progress on pulling together and arranging the elements of what I want to submit for publishing this year, but I have done a nifty bit of spreadsheet work for the rules of another D6 based game engine. It is a universal RPG like most I try to make, and also has another element of growth control that the moderator can use to keep people even without looking like they're shorting the man in front.

The system has guides for equipment, rules for combo attacks, counter attacks, critical hits, spells, special attacks, and energy assisted skills. It's all very malleable to whatever setting the player wants. Now, as always, I just need play testing.

My graphic novel. Well, we have all the main characters and their pets done up in two separate representations. We need to get the rest of the concept art and the cells for each character finished before we can start production. Problem with this graphic novel in specific, is that we're going to go through a lot of characters, none of which get prolonged screen time. This means a lot more time invested on concept art then on actual page cells.

I'm not going to bend to cheaper production though! If I do, my subconscious mind might retaliate against me. My sister asked me after I laid out the vision from my dream of Book 1 and 2 of this graphic novel, 'what if the publisher ends up wanting a Book 3 or more? And what if they're offering a LOT of money?'

I had this book in a dream, and do not wish to compromise it at all, so I simply answered: 'I'll sleep on it.'

Well, the muse is going to strike me once more, so I'm back to chapter 13 of my fantasy novel.

Tuesday, March 30, 2010

Internal Inspiration without Perspiration

Most of the great ideas I get for my works come from my dreams. From the earliest I can remember, I have always had vivid and colorful dreams. I began lucid dreaming (realizing I was in a dream while in a dream) at about age five. I would then control the dream world within my head and do whatever I felt like.

As I grew into middle school, I remember seeing an episode of 'Batman The Animated Series', where Batman realized he was being manipulated by the Riddler in his dreams, by the fact that he picked up a newspaper and the words were all jumbled.

Apparently, the literate part of your brain and the part you dream with are supposed to be far apart from one another. This was the reason for Batman not being able to read, and thus figuring out the Riddler was messing with him.

Well, I saw this as a challenge. In my dreams for the next year or so, every time I was lucid, I grabbed a pen and a piece of paper and began writing and signing my name, over and over again, until eventually, I could read in my dreams.

As I grew into high school I experienced a few other dream no-no's. The first was pain. I had always thought that it was lame in movies for bad guys to go down after one shot to the gut, or a stab in the back. In a dream I had where I was at some drug dealer's poker game for some reason, things went sour and a gunfight ensued. I was just a bystander with no armaments, and I ended up taking three slugs to the abdomen. I remember the pain being crippling, the hot pieces of metal draining my very will. All I wanted to do was lie down and die. Like in the movies!

As I grew into college, I had a third dream no-no. It is much more difficult for the male brain to facilitate a female voice, so most voices in dreams are male. I sharply remember hearing the voice of a girl I had known in high school in a dream of mine. Later I noticed lots of female voices in my dreams. How nice for me, it's not just a vocal sausage fest.

I enjoy every bit of creativity that comes from my subconscious, and as such, I like to recall as many of my dreams as possible. I had heard, tested, and verified, that if you want to increase your remembrance of dreams upon waking, one way to do it is to log all the dreams you do remember in a journal, or dream log.

I currently keep as many of my dreams as I can remember on a log that is actually part of a forum. If you wish to look into my night-mind, I am the most avid poster of the subject at this link: Odd Dreams?.

There are a few dreams I have had that I can't log on that site...as they are too disturbing to the outer facade of the average human, but this is the internet! So, if you wish to see my darker dreams, they will be appearing on my sister site: http://casualsurfer.myblogsite.com/

There are another select version of dreams that will simply not be posted at all. I am sorry to say to you reader, that these dreams are not private because I am shamed, they are private because I am proud. For example I had one dream where I had read an entire graphic novel from cover to cover. I woke up, checked the internet to make sure it didn't exist, and now I am having my sister, a great artist, illustrate it. Giving away dreams like these would be giving my earning potentials and publishing potential away.

So, the only dreams that will be kept from you, reader, are those I will put up on store shelves.

Monday, March 29, 2010

Casual Internet's take on N-Viro International





Website:

Informational Video:


Stock Ticker:
NVIC

N-Viro International has put forth the effort and resources to create a profitable way to recycle society's organic refuse into an alternative energy source. Whichever culture of the world you choose to look at, we all have an abundance of unusable bio-rubbish left over at the end of our day, no matter how conservative your approach may be.

With a process like N-Viro's that turns that waste to energy, our bio-refuse becomes a very important piece of the renewable energy cycle. The idea of opportunity fuels like bio-diesel and ethanol is green in the public eye, but what of the waste generated from the refining process?
Energy corporations and politicians speak heavily of clean coal, and cleaner methods of gaining energy from coal, but there is still going to be organic refuse left over.

We have our renewable sources of energy, which means we won't run out of fuels to burn for heat or electricity. N-Viro is taking the 'ash', the organic waste-product from our daily labors, pulled from our sewage and waste water by our already existing municipal water facilities, and turning it into their N-Viro Soil™ which gets added back into our commercial fertilizers to grow our corn and soy again, completing the circle of a truly renewable resource; where most municipal bio-sludge gets deposited in landfills, where it's potential is lost, and it's odor is prominent.

I could go into further detail as to their works after researching them further, but I wanted to get this out there now for your eyes. If you wish to hear it from them, again here are their links:

Signing up for PayPerPost.com

My first blog is specifically for verification of a website that pays people to blog. (Hopefully myself). Anyways, they ask I add a xenophobia. How will you eat yours? into the body of my text, anywhere, before I submit it, wish me luck and fortune!