Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question
Tag: windows
Is it possible to compile Objective-C code on a PC?
I would like to start learning Objective-C for future iOS development. I understand that there are many large hurdles in getting an iPhone app to work on a PC but I’m trying to avoid all of that and just get familiar with the Objective-C language itself without all of the added mobile features. Is there a way to compile Objective-C
Adding content to middle of file..without reading it till the end
I have read various questions/answers here on unix.stackexchange on how to add or remove lines to/from a file without needing to create a temporary file. https://unix.stackexchange.com/questions/11067/is-there-a-way-to-modify-a-file-in-place?lq=1 It appears all these answers need one to atleast read till end of the file, which can be time consuming if input is a large file. Is there a way around this? I would
iozone what is record size/record lengh?
We have build windows file server and i wan to run iozone to test Disk I/O performance so what kind of test i should run and how do i know how much i/o i will get at X size of file? also what is record size or record lengh I came across many time this word while i was googling..
Porting my PyGtk 3 app to Win32
I recently made my first app with pygtk using Anjuta. It works well under Linux, so it’s time to share it with relatives and friends. I installed Python, pygtk and the Gtk all-in-one bundle (Cairo, pyGobject ect) on windows and tried to run it. I had an error saying self.builder.add_from_file(UI_FILE) Digging a bit in the code I found out that
Maven Multiple platform dependent Packages
I have written an application in Java that can be used on both Linux and Windows. Currently by running mvn package, my maven build system will generate a .msi using WiX. Is there a way of creating two package ‘tasks’ so I can say either mvn package-windows ormvn package-linux` Answer If you want to package both versions (Linux and Windows),
Why is import of SQL so slow?
I have an SQL file containing two tables with around 600,000 rows altogether. Yesterday, I tried to import the file into my MySQL database on Fedora 16, and it took over 2 hours to import the file. On my Windows PC it took 7 minutes. My Linux and Windows machines have exactly the same hardware. A couple of my friends
Cygwin vs Linux Virtual Machine for Development?
< skippable part > I work in IT (mostly desktop support and network administration) in a Windows environment, and I occasionally program. A couple weeks ago, I decided I couldn’t be as effective as I want to be without a Bash environment for my command prompt needs. This is especially true when I am using Ruby and git. I used
Can Python select what network adapter when opening a socket?
The target machine running the python application will have three network interfaces available to it. In general all three networks will be vastly different, however there is a possibility that two of the three could be on similar networks. In the example below I do not have control over the destination address on ETH 2 (as it a pre-configured system),
what script (like .bat) would run on windows, mac, and linux
I have a bat script that I’d like to make work on windows/Mac/linux, but I read .bat is only for windows. How can I make this script work on Mac and linux, or what type of script can I write that would work on all 3. Answer If you don’t want to step up to a language like C, I