Jump to content

Cheesebaron

Member
  • Posts

    343
  • Joined

  • Last visited

Everything posted by Cheesebaron

  1. There are some alternatives here: http://alternativeto.net/software/smartlaunch/
  2. Why isn't urllib enough for you? import urlliburllib.urlretrieve ("http://www.example.com/songs/mp3.mp3", "mp3.mp3") Maybe try out python-wget: https://bitbucket.org/techtonik/python-wget
  3. I had one of those XFX 5870 cards myself. Watch out with those. Mine had its cooler permanently attached to the black choke that sticks up on the top of the PCB, which you can see at 4:01 in the video. I had to order a new choke which wasn't super easy, because they are only sold in bulk to large companies. But I managed to find a manufacturer, which was willing to send a sample of 2 chokes to me. Another thing is that they are surface mounted, which made it hard to solder the new one in. Moral of the story. If you have removed all screws, and the cooler sticks to the PCB, watch out with using force to split the two parts!
  4. I do it at work. Middle monitor is just some random Dell 24" with 1920x1200 resolution. Works very well for me. Just watch out not to make your methods too long
  5. Visual Studio Community Edition > Visual Studio Express. Welcome to the future...
  6. Don't stop believing that. But as soon as you have to manage a csproj and solution file with more than a couple of files and/or projects it becomes super tedious to manage. That is one of the things, which an IDE just does for you. Other things as static analysis, code inspection, refactoring, intellisense etc. is not useful either you say? I really want to see you work in a professional environment without any of these tools and be productive. This is some other things that a proper IDE helps you with. As already pointed out by Nuluvius, Visual Studio Community Edition is free, so is Xamarin Studio (previously called MonoDevelop) which also does C# very well. No other IDE I have tried does C# as well as they do.
  7. Ehm that is the flash from the camera, there is no LEDs in this picture...
  8. Not only because of that, but because it is a really good editor. I've used it for some node.js work and it worked really well for that.
  9. Now that you said it I can see the resistor, it was hard to spot though. What is the reason to put sealant onto the tweeters? Aren't they already in a closed enclosure? Anways, it looks pretty nice. What amplifier are you going to use for this? Tripath? Edit: Nevermind about the amp. Found it in the OP
  10. No crossover needed for this build?
  11. I've tried both, and personally I think both headphones are boring and thin sounding. Now that is a matter of personal taste. I'd also take a look at the Sony MDR-1R and Sennheiser Momentum they should be roughly in the same price range and be less boring.
  12. If you don't know the site, then it is really funny and recommended read: http://thedailywtf.com/ so many "wtf?" situations
  13. I'll make that app for you for 200 USD.
  14. 1. You could make an autorun file, but it does not guarantee the execution of the script. 2. You can just make the script save the output to a file 3. lol
  15. Nonono, that is not how you ask a question. If you expect someone to help you, provide the minimum reproducible steps and a proper error message, which tells exactly where it goes wrong. You can't just dump your code, even worse, you can't just dump your code unindented and uncommented and expect someone to figure out what you were thinking and where the error is.
  16. using System;using System.Collections.Generic;using System.Text;namespace ConsoleApplication1{ class Program { static IList<Person> _people; static IList<Group> _groups = new List<Group>(); static Random _rand = new Random(); static void Main(string[] args) { var numPeople = ReadInt("Enter amount of people: "); _people = GeneratePeople(numPeople); var maxPeople = ReadInt("Enter amount people in the group with most members: "); for (var i = 1; i <= maxPeople; i++) // does not make sense to make groups of 0 members... { var numGroups = ReadInt("How many groups of " + i + " people do you want? "); for (var j = 0; j < numGroups; j++) _groups.Add(new Group { Size = i, Name = "G" + i + j }); } foreach (var g in _groups) { do { // pick random person var person = _people[_rand.Next(_people.Count)]; _people.Remove(person); g.Members.Add(person); } while (!g.IsFull); } Console.WriteLine("Generated following groups:"); foreach (var g in _groups) Console.WriteLine(g.ToString()); Console.ReadLine(); } static int ReadInt(string message) { var ok = false; int val = 0; while (!ok) { try { Console.WriteLine(message); var input = Console.ReadLine(); val = Int32.Parse(input); ok = true; } catch { Console.WriteLine("Please enter a numeric value"); } } return val; } static IList<Person> GeneratePeople(int number) { var people = new List<Person>(number); for (var i = 0; i < number; i++) people.Add(new Person { Name = "Guy" + i }); return people; } } public class Person { public string Name { get; set; } } public class Group { public string Name { get; set; } public List<Person> Members { get; set; } public int Size { get; set; } public bool IsFull { get { return Members.Count == Size; } } public Group() { Members = new List<Person>(); } public override string ToString() { var sb = new StringBuilder(); sb.AppendLine(Name); foreach (var member in Members) sb.AppendLine("\t" + member.Name); return sb.ToString(); } }} Some OOP sprinkled on top. Notice how I am not doing anything strange using ref or similar to manage the groups. I just generate them once and modify the objects.
  17. Just like the docs say that part goes into the head, did you even read it? <script type="text/x-mathjax-config">MathJax.Hub.Config({ tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}});</script>
  18. Why do you need to prove yourself? There are no expectations of you doing so here. It still does not make you less naive and does not change your attitude that you have shown in this thread. Also your code is not anything spectacular...
  19. You could also use their CDN instead: <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> Just put it in your <head> There is more info here: http://mathjax.readthedocs.org/en/latest/start.html Seems to work just fine: http://jsfiddle.net/unb9yvhL/
  20. With fun in this case I mean the bass and treble are kind of dominant, making them not neutral sounding and colors the sound coming out of them. Wow, super incoherent sentence. Consider some punctuation and re-reading the sentence... Anyways, you can't know anything from what people say as most of the time they are expressing their subjective opinion of the product. The best way to know is to listen to the product yourself and make your own mind up on the product. You have the choice of buying used, you might save a lot of money doing that.
  21. Does the IEM have a microphone? The front jack might not like that and is causing some problems.
  22. Having owned HE-400 and now having the HE-500, I'd say the price jump is worth it. However, you won't notice a night and day difference between the two, but they have their differences. Bass wise the HE-400 wins, the representation in the lower regions is very good. Very tight and full. Mids are slightly forward on the HE-500 while on the HE-400 they have a dip in the upper mid region, which for me makes vocals less attractive and they loose some of their flair. Treble on the HE-400 can be sibilant and "tizzy" while the HE-500 are more neutral. I would say the HE-500 are more neutral, while the HE-400 are a bit on the fun side. Additionally the sound staging is a bit better on the HE-500 as well. I haven't heard the DT 990 Pro's, only the DT880 and DT770 and COPs. Of those I like the DT880's most and they were actually my first good pair headphones. However, having heard a lot of other headphone since, I've found out the Beyerdynamic sound does not really appeal that much to me. I find them too analytic and in many cases a bit thin and boring sounding. Don't get me wrong, they are fantastic headphones in a lot of areas, but I just prefer another sound. I've heard the Fidelio X1, and they are actually quite good. They remind me a lot of the Sennheiser HD650, although a bit less dark and they have that bump in the upper bass region which make them a fun headphone. Have you heard any of them?
×