Jump to content

Maccle415

Member
  • Posts

    15
  • Joined

  • Last visited

Awards

This user doesn't have any awards

Maccle415's Achievements

  1. I believe that it is suppose to be sometime at the end of this year. Since it will be Swift 2.0 which will only properly come out after ios9 launch. I am not sure what IDE would be used. Maybe they follow what MS done with visual studio code and write a cross platform swift editor.
  2. C# if you use unity, then you can develop games for ps4, xbox one and many other platforms.
  3. Ah yes, thanks, did not even pick that up. I feel stupid now lol.
  4. sublime text with the afterglow theme
  5. To get that you could just use file_get_contents method in php. Then use something like domxpath and use the elements id (which seems to be "singleFinalPrice") and with that you wil be able to get the price in the "contents" attribute of that element. I am not sure about writing to an excel spreadsheet but reading from one is really simple. First make it a csv file and then use something like this to be able to get all of the urls that you are wanting to get information from. Hope that helps
  6. Just created a simple file re-namer. Just provide the path the string/substring that needs to be replaced and the string that it needs to be replaced with(in terminal) and it will recursively name every file that it finds that contains the substring that you provided. https://github.com/Maccle415/FileRenamer/blob/master/FileRenamer.py
  7. With Xcode 7 I believe that you can test on the device without having a developer account. I think you just need to login with your apple id
  8. I had an issue before trying to connect PHP to MSSQL Server 2008. I gave up(using WAMP). I think that the issue for me was the fact that my WAMP was 64 bit and this was only do able on the 32 bit version for some reason. Maybe it is a similar issue with Xampp?
  9. The New Boston is usually decent with tutorials. https://www.youtube.com/playlist?list=PL6gx4Cwl9DGBsvRxJJOzG4r4k_zLKrnxl
  10. Personally I use to Brackets but got sick of it, started becoming really bad imo. Brand new text editor from MS which seems to be ok atm, needs a couple features but is mainly built for ASP.NET v5 and NodeJS so it should be really good for JS. This is not an IDE though. Visual Studio Code
  11. I have not really done much Python but one thing that I saw immediately was that you are recreating the "months" array(not sure if it is called an array in python) multiple times. You could just make it one global variable seeing as it does not change. I just looked up a python list. Maybe that is a better way to do it? months=[1,2,3,4,5,6] Just replace the numbers with the month names and use the index to get the month. You might need to add or subtract 1 to get the correct month months[date_time - 1] or something like that.
  12. Macbook air 13" or any Macbook pro(13" or 15"). The ram is probably not really super important for this(This might depend on the type of apps that you want to make). I have a mac mini with 4GB ram and a Macbook Pro 13" with 4GB ram and both of them work perfectly for iOS and OS X development.
  13. Not sure if you have done this already or not. I have never worked with jsp stuff before, but can't you make the jsp page print the result from the database when it is called? Basically I am thinking that you could do something like this in php $result = file_get_contents('localhost/javaservlet.jsp'); Not sure if that would work or not. Just a thought. And like Neil said you can just make it return a JSON object.
  14. Yes something like that is completely possible with Java. Netbeans is just the IDE so it does not really matter what you use to write the Java code. Personally I would suggest using LibGDX for Java game development.
×