Category: Adobe

Apr 7 2008

Release the hounds

Pride data Services is now running Coldfusion 8.01.

0 comments - Posted by john at 2:06 PM - Categories: Coldfusion | Adobe

Apr 7 2008

Also Don't forget

mkdir /opt/iatempdir export IATEMPDIR=/opt/iatempdir the cap is important.

1 comments - Posted by john at 12:49 PM - Categories: Coldfusion | Adobe

Apr 7 2008

Coldfusion 8.01 Updater named incorrectly for Linux

coldfusion-801-lin_updater.zip should be renamed to coldfusion-801-lin_updater.bin thats about the sum of it all...

1 comments - Posted by john at 12:38 PM - Categories: Adobe | Coldfusion

Apr 2 2008

Unity is Coming to iPhone

So Unity3d.com has officially announced support for the iPhone. Which is great news since Digital Roar has licensed their engine for our game. I was very excited to see this. It now brings the supported platforms to four including PC, Mac, and Wii. They are truly giving young studios the power to succeed.

2 comments - Posted by john at 3:58 PM - Categories: Gaming (Dev) | Gaming (General) | Adobe | (Tech) Game Engines

Feb 28 2008

Need some Coldfusion , HTML, CSS, Javascript or PHP Help

or perhaps you need some DTS Packages converted to SSIS. Drop me a line at tyrsblade [at] google mail domain. I am looking to pickup a couple small to medium sized side projects. with the addition of the Little One a little extra cash would be nice.

1 comments - Posted by john at 12:56 PM - Categories: Coldfusion | Adobe | (Tech) Open Source | (Tech) Hardware | (Tech) .Net

Feb 19 2008

Parsing large flat files with irregular delimiters

using System;
using System.Collections;
using System.IO;
using System.Text;
using System.Text.RegularExpressions;
namespace FileSplitter
{
   class Program
   {
      public static void Main(string[] args)
      {
         if(args.Length < 4){
            Console.WriteLine("Usage: ");
            
         }
         else
         {
            string FilePathnName    = args[0];
            string oFilePathnName   = "Candidates";
            //string oFilePathnName = "Requisitions";
            string cLine         = null;
            string cDelim          = null;
            string rDelim          = "<><>";
            string nRow            = null;
            string oRow            = null;
            string sRow          = null;
            int iCount         = 0;
            string strBuild         = null;
            string sColumn      = "candidatehrms_code|firstname|middlename|lastname|address1|address2|city|state|zip|countryhrms_code|email|login|password|isemployee|statushrms_code|resumertf|referraltypehrms_code|referraldetail|active|homephone<><>";
            //string sColumn       = "requisitionhrms_code|jobtitle|markettitle|orderdate|statusdate|createdate|internalexpires|jobcode|jobgradehrms_code|externaljobdescription|internaljobdescription|approved|statushrms_code|openings|placements|flsaexempt|fullpart|eligibleemployeereferral|wagecurrencyhrms_code|countryhrms_code|departmentshrms_code|locationhrms_code|hiringmanagerhrms_code|recruiterhrms_code|eeocodehrms_code|jobcategoryhrms_code|percenttravel|workflowhrms_code|webapproved|confidentialreq|supervisory|active|udfhirereqid|requisitiontypehrms_code|employmenttypehrms_code|incumbentname|aibtarget<><>";
            
            
            
            StreamReader sReader = new StreamReader(FilePathnName);
            StreamWriter sWriter;
            
            
            while(sReader.Peek() >= 0){
               sRow = sRow + sReader.ReadLine();
               if(sRow.Contains("~~")){
                     iCount = iCount + 1 ;
                      string[]    dRow = sRow.Split("~~".ToCharArray());
                     if(dRow.Length > 1){
                         
                         oRow = dRow[0];
                         sRow = dRow[1] + dRow[2];
                         strBuild = strBuild + oRow + "<><>";
                         if(iCount == 1500){
                            strBuild = sColumn + strBuild;
                            sWriter = File.CreateText(oFilePathnName + "_" + DateTime.Now.ToString("yyyyMMdd")+ "_" + DateTime.Now.ToString("HHmmss")+ ".txt");
                            sWriter.Write(strBuild);
                           sWriter.Close();
                           iCount = 0;
                           strBuild = null;
                         }
                         else{
                            if(sReader.Peek() <= 0 ){
                               strBuild = sColumn + strBuild;
                               sWriter = File.CreateText(oFilePathnName + "_" + DateTime.Now.ToString("yyyyMMdd")+ "_" + DateTime.Now.ToString("HHmmss")+ ".txt");
                              sWriter.Write(strBuild);
                              sWriter.Close();
                              iCount = 0;
                              strBuild = null;
                         }
                      }
                  }
               }
            }
         }      
      }
   }
}
Now the only remaining issue is that it strips \r \n and replaces it with tabs and i have no idea why.

0 comments - Posted by john at 1:48 PM - Categories: Adobe | (Tech) Open Source | (Tech) .Net

Jan 29 2008

Digital Roar Studios Inc.

Is looking for concept artists. Get this its a paying gig too. We have 15 concept art pieces we need created for an internal project we are working on. We are looking for for artists that can embrace the art style of Magna Carta.

If your up for something like that I'd ask to please leave a post here linking to some of your work and I will get Digital Roar's art director to contact you with an art test and to discuss what compensation you are expecting.

1 comments - Posted by john at 1:30 PM - Categories: Adobe | Coldfusion | Gaming (Dev) | Gaming (General)