- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
I am a software engineer at Olive Tree Bible Software, where we "Create Technology that Connects People with God and The Bible". I am also working towards finishing my MS in CS from Eastern Washington University. I have recently been…
- Interests
- Being a husband; playing guitar, drums, and just making music in general; video games; homebrewing;…
- PC Specs
- AMD Phenom II x6 1055T Thuban8GB G.Skill Ripjaw DDR3 16002x 750GB Seagate Barracuda 7200 RPM SATA 2EVGA…
30 Posted Topics
Re: Firstly, I don't believe you did really "search a lot" on this. I googled for "ios app without interface builder" and the first thing that came up was exactly what you're asking. Here's a link http://lmgtfy.com/?q=ios+app+without+interface+builder Here's another link to the first hit I got. I followed his tutorial in … | |
Re: I have used Google Music, Amazon MP3, and iTunes Match. I prefer iTunes, but all my mobile devices are Apple, so it is what works best for me. When I did have an Android phone, I really liked Google Music, on the phone. I hated the web interface though. Here's … | |
Re: You can get this error if you are trying to load a nib file that doesn't exist in the bundle. Say you are doing something like this: UIView* view = [[UIView alloc] initWithNibName:@"MyNibFile" bundle:mainBundle]; or this: NSArray* objects = [[NSBundle mainBundle] loadNibNamed:@"MyNibFile" owner:nil options:nil]; The two reasons I usually get … | |
Re: What type of graphics processor does it have? I've had trouble in the past getting certain distros installed with certain NVIDIA graphics sets. If you are having a problem getting the system to boot after an install (screen generally just goes black), this could be something to look into. I … | |
Hey everyone. I've been contemplating something lately and I haven't been able to come to a conclusion, so I thought I'd see what you all thought about it. When checking for null (nevermind that we should try to not make something null in the first place), would it be better … | |
I haven't been able to find anything on this that's very useful anywhere else. Does anybody know if any of the available Virtual Machine software out there works the .NET framework? It make sense to me that it would. If you can install Windows XP or Vista, you should be … | |
Re: You should be able to do it by entering the IP address for your MS SQL server in the Data Source section of the connection string: [CODE]Data Source=[B]myServerAddress[/B];Initial Catalog=myDataBase;User Id=myUsername;Password=myPassword;[/CODE] It's been a couple years since I've done this, but I'm pretty sure that's all you need to do, on … | |
Hey everyone. I'm having trouble getting my DCHP server working. I have a Mac G5 with Fedora 9 installed on it. It has two NICs, one is the onboard Apple NIC (eth1), the other is an Intel (eth0). I'm trying to get it to where eth1 has outside access to … | |
Re: This explains it pretty well: [URL="http://www.webcheatsheet.com/php/blocking_system_access.php"]http://www.webcheatsheet.com/php/blocking_system_access.php[/URL] | |
I'm using some (previously written by someone else who isn't around to ask anymore) VBScript to upload files to a webserver and on my upload processing page, there is a line that says: [CODE]Form.SizeLimit = &H100000[/CODE] I understand that the assignment means not to accept forms coming in that are … | |
Hey everyone. I am working on adding a 'search' field to a page and I'm using ajax to update the content of the page. When someone types a letter into the search box, the page content updates based on what they type. I have this all working as far as … | |
Does anyone know how Oracle's PL/SQL handles subtraction with a negative number? Really what I need to know is, given the following: (NOTE: this is NOT the code I'm working with. It's just an example to give and idea of what I'm trying to do.) [CODE] DECLARE number1 NUMBER; number2 … | |
Re: You could also try OpenOffice.Org. They have "drawing", which is similar to publisher. It's a suite of apps that is designed to be an open-source rival to MS Office. | |
Re: I don't know if your goal is to utilize object-oriented programming or not, but typically I would have 2 separate classes (probably in 2 separate file). One would be the "driver" file that contained main(), and the other would be the object class. ie: [CODE=java] class LectureTheaterDriver { public static … | |
Re: [URL="http://java.sun.com/javase/6/docs/api/java/io/File.html#renameTo(java.io.File)"]http://java.sun.com/javase/6/docs/api/java/io/File.html#renameTo(java.io.File)[/URL] Check that out. It's expecting a file, not a string. It seems like you need to create a new file with a filename of what you want to rename the file to and pass that into renameTo(). | |
Basically I'm reading from a file and populating a dynamically allocated array with the words that are in the file. I've already read through the file to figure out what numArts is, so I know how many words there are in the array. This works up until the: [CODE]arts[index] = … | |
Re: If you want to know the differences between SQL Server 2000 & 2005 you'll have to read the documentation, there's a TON of things that are different / updated. That's kinda like asking what the difference is between we 1999 Toyota Camry and a 2008 Toyota Camry. You can't really … | |
Re: if you don't want to add the location of csc to you path you could always fully qualify the location when you compile, ie: c:\windows\microsoft.net\framework\v2.0.blablabla\csc.exe helloworld.cs, although I don't know why on earth you would wanna type this in every time. | |
I have no clue why this isn't working. The top part that reads into size, shortTime, longTime, and threshold work fine. Down below where I try to do the exact same thing and read into x, i get segmentation fault every single time. It seems to me that everything is … | |
Ok, so I'm learning about procedures and functions in Oracle and I'm stuck here with my procedure. I have the function part down pretty good, but the whole returning variables with procedures through OUT mode is confusing me. My task is this: "Write a procedure that accepts a zipcode & … | |
Re: I'll have to agree with what pretty much everyone else is saying. I much prefer the gameplay to graphics. Fighting a red blob with a smily-face? Sounds like PacMan. Who hates that game? Most of us have spent hours playing that. Yes, graphics can enhance a game, but they aren't … | |
Does anyone know how to reference a COM library from the command-line? Specifically, I need to reference CDOSYS.dll. Whenever I try to include the reference when I compile I get a message saying: fatal error CS0009: Metadata file 'c:\WINDOWS\system32\cdosys.dll' could not be opened -- 'An attempt was made to load … | |
I'm having a strange problem. I have an array of strings that I need to separate into separate data members and insert into a SQL database. It all works fine, except for where I convert a string to a decimal and insert that. It works if the decimal has no … | |
I need to watch our mail server for a particular file that is sent in every day. I need to have my program grab this file and do some stuff with it automatically. Does anyone have experience with something like this? Really what I need is just pointed in the … | |
I am working on a project that will read in a huge file and insert the data into a SQL database. I can read the document, but all of the XML is incorrect. I get it as an excel spreadsheet, but it's actually about 6 webpages stuck into one document, … | |
Re: I'm not sure about OS 9, but there is a program available that runs as an extension to QuickTime called Flip4Mac. It's free (to download at least. It might be shareware?). I don't have any problems playing WMVs. I have OS X though, so I'm not sure if they make … | |
I've got a toshiba laptop that won't accept the passphrase to connect to my wireless network. It gives me a error about that the key has to be 24bit encryption or something else. I'm not sure what this is telling me. My other computers in my house connect to the … | |
Dear god. this is driving me crazy. I'm working on an assignment involving inheritence, multiple classes, etc. I'm stuck at one stupid part. I have to write a toString method that formats the text. Is there a way to return a string with formatted text? I know about the printf … | |
Hey everyone. I'm Jordan. I'm a CS student at Eastern Washington University and I came across this site while I was trying to fine some help on a program I'm working on. I wound up reading stuff around on here for ever not even realted to what I needed, lol, … | |
I'm working on a program where I'm reading a file and I have to count the number of entries in the file. Each entry takes up a different number of lines, but each entry is also separated by a '#'. I'm wanting to read through the file and count the … ![]() |
The End.