Jump to content

Cheesebaron

Member
  • Posts

    343
  • Joined

  • Last visited

Posts posted by Cheesebaron

  1. Surely you could change the head?

     

    I don't really see anywhere to adjust the tracking pressure, azimuth and stylus rake angle or anti-skate. So I really doubt you will have a good time replacing the pick-up unless it is one that weighs and has a similar housing. Also due to its nature, there is nothing supporting the vinyl where the pressure goes onto it, no possibility to use a clamp for wavy vinyl, nor would I trust the motor running evenly. There are just too many problems with that turntable to even consider buying it. So using it you will hear rumble, uneven playback and just plain bad sound due to the crappy PU.

     

    Go find a flea market and buy a proper turntable. I found a nice Pioneer PL-518X for 25 DKK which is around 5 USD, which blows away that turntable. It has mechanical return of the arm, direct drive, a good arm, headshell for easy replacement of PU, very sturdy build etc. You might be able to find something similar!

  2. Headphones in the gym... I am not a big fan of that. Interferes with my concentration and visualization of the next set. Either way, I would have probably gone with something a bit more sweat protecting. Squatting 400 pounds makes you sweat like you are walking in hell!

     

    And don't tell me you are not squatting. If you ain't squatting, you ain't working out!

  3. DACs are Digital to Analog converters. USB to Headphone jack.

     

    Not always a Headphone jack, often it is actually just RCA.

     

     

    Analog signals degrade over distance, so a DAC is used to minimize degradation of the signals.

     

    DAC's are also built into sound cards + some kind of amplifier circuit. In some instances you could have noise or plain bad sound quality out of your sound card, this is where a DAC or combined DAC/AMP could come into play and help you with this problem.

     

     

    Actually they are "gaming" 2.1 satalite speaker system. They have a line-in of either a 3.5mm jack, or the typical RCA ports. I've since been looking around at various devices and systems, and boy is it fun. I could really get into the audio scene. Now I just need a better paying job. ;)

     

    Usually you wouldn't really hear any difference with those kind of speakers whether you used the built in soundcard of your computer or using an expensive DAC, they are just not good enough to allow you to hear much of a difference. There could be a slight difference, but nothing that would make your jaw drop.

  4. If you haven't sold the HD650 yet, then check what color the drivers are. Because if you have the slightly older model (and the drivers are not white), then you might be able to get better details with a very simple mod you can do to them. I had a pair once and did the "APureSound" mod to them and it made them a lot less veiled.

  5. I've tried Unity a few times in the past, and personally didn't like it. I prefer something like Cocos2D which allows you to control everything via software instead of a IDE GUI.

     

    You can do everything that you do in the IDE GUI in code as well, it is entirely up to you how you create objects etc.
  6. Source: http://www.wired.com/2014/08/operation_torpedo/

     

    So what the article describes is that FBI uses exploits in old versions of Tor Browser or Firefox which it is based on, to run instructions on the victims computer. This is done through an iFrame with some JavaScript. Look up CVE-2013-1690 for more details on the exact exploit used.

     

    Do you think it is ok for FBI to use exploits to lure out people who visit the wrong page? Maybe they visit it by an accident?

  7. If you haven't created activities within your app, you probably haven't taken care of all the coding.

     

    Android uses a component called activities to provide a UI for a specific page in your app. The layouts of activities are defined via XML and also have a corresponding class.

     

    Not exactly true. The current recommendation is to have as few Activities as possible and do your UI and interaction in seperated Fragments, which just like Activities have their own lifecycle, just being a single reusable component instead. Take for instance a ListView displaying specific data with specific interaction could be contained in a Fragment, which then could be reused multiple places in your application.

     

    Also UI can be defined through XML or you can dynamically create objects by either inflating XML or creating your own instances. So you aren't bound to only do UI in XML.

     

    I highly recommend doing one Activity, which then just controls where to display Fragments, as doing one Activity for every UI is not super flexible.

  8. A couple of observations and requests for the current API. I get the following payload right now when I access the API:

    {   "display_name" : "Cheesebaron",  "new_notifications" : "1",  "new_pms" : "0",  "profile_img" : "http:\/\/linustechtips.com\/main\/uploads\/profile\/photo-thumb-122.png?_r=0"}

    Firstly the profile_img field's value is strangely escaped, even though we have quotes around the string. That is really unnecessary in JSON.

     

    It would be really useful if there was a date telling when a pm/notification was last received, such that you can compare with a local value.

     

    Maybe expand the payload such that it included the description of the latest notifications and titles and maybe a line of text from a PM:

    {  "display_name" : "Cheesebaron",  "profile_img" : "http:\/\/linustechtips.com\/main\/uploads\/profile\/photo-thumb-122.png?_r=0",  "new_pms" : "2",  "new_notifications" : "1",  "latest_pms" : [    {      "url" : "xxxx",      "received_date" : "2014-08-5T19:43:37+0200",      "title" : "hurrdurr",      "body" : "durr durr durr"    },    {      "url" : "xxx",      "received_date" : "2014-08-5T19:44:37+0200",      "title" : "hurrdurr",      "body" : "durr durr durr"    }  ],  "latest_notifications" : [    {      "type" : "quote",      "thread_url" : "xxx",      "time" : "2014-08-5T19:44:37+0200",      "description" : "xxx"    }  ]}

    Surely this is just a draft of what it could look like, but there might be some other information that would be cool to have in the API. Or even multiple URLs for different kind of data.

  9. So you have a couple of options for developing for those platforms.

     

    1. Going native, Java and Obj-C/Swift
    2. LibGDX (Java)
    3. MonoGame (C#)
    4. Unity (C#/JavaScript (actually UnityScript))

    However in all cases you will need to have a Mac (there are options of doing stuff in a VM) and accounts for the Apple Developer portal and Google Play which both cost money.

     

    MonoGame isn't entirely free either, it requires you to have accounts for the Xamarin tools but that is a cost of 25 USD per month, which is fairly decent if you are a serious developer.

    Unity isn't free either if you want to deveop for those platforms.

    So I guess the most cost effective option is Native or LibGDX, the former you won't be able to share much code between platforms, unless you unload a lot of work on a server or such. However, then you might encounter scalability issues.

×