Simple MP3 player [closed] - mp3

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I'm looking to get hold of an example of a simple mp3 player that'll work without the need of flash, Just need to say play/stop and that's it.
Any help would be great : )

Because you mentioned flash I think you search a player for web pages, am I right?
If yes, then you could take a look at jsmad. It's a decoder (aka player) written in JavaScript (but therefore needs a decent browser).
Or you could use the audio-Tag of HTML5.

Related

Display image in console application [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I am writing a program, and I thought that it would be better with images (I am creating console application). So I want to know if it's possible? And if it is how can I do it? Thanks.
You can do it by ASCII art, There are many open source libraries which convert image to ASCIIs, such as libcaca.
And if you want use colored images, you can use rlutil.
Consoles are designed to display characters only. With some very crude exceptions it is not possible to display images unless you open another window.

Which technology is used? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am thinking which technology is needed for making copy of this web service: http://dziswieczorem.pl/
Does someone know any almoust-ready solution (especially for map-things) implemented in django?
Or maybe could anyone give me tips in which technology it would be easier to implement something like that?
To be more concrete:
Is there some ready template containing world map like on page that I wrote about above? I also need a chat feature.
For the map functionality, you may get some benefit from django-gmapi, but I've never tried it so I don't know if it's exactly what you want or not.
As far as chat, there seem to be a few options here that you could consider: http://www.djangopackages.com/grids/g/chat/

Resolution template for Tablet App [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I need help with a project.
I need to create 2 templates for an aplicattion (10.1 inch tablet), but I just need to give to the developer de PSD templates of it, he will do the rest of the work (programing). So the question is, in what resolution I need to give him these templates? any "safe" area (for menu navigation)?, minimu size for buttons?any other tip?
Thank you for your time.
Regards.
No safe area.
Buttons should be at least 44px on 44px.
Resolution is different in different devices, check this out:
http://webdev-il.blogspot.co.il/2011/03/web-design-for-mobile-screen-sizes.html
Here is a great guide for mobile design:
http://mobile.smashingmagazine.com/2012/07/12/elements-mobile-user-experience/
Good luck!

ROWLEX . Net RDF website access? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
does anone know whether ROWLEX .Net RDF library is still on or not? I have tried sevral times this week to access the website but no luck. I have lost my download and wanted it again. Maybe a URL chenged or something?
Thanks a lot!
The website is down due to technical and bureaucratic issues. It will come back. I expect a few more weeks.

about win32 standalone:tracking a browser? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I am trying to make a standalone using c++.In my standalone I want it to track user's clicks,I mean which link does he/she clicks.I am trying to count how much time he/she uses a perticular site,like pageaddict(a firefox extension).
So any support..?
If you want to make a Firefox extension, you should be using JavaScript. In C++, you might make a sniffer, which could tell you from what site the packets you receive are from. But that would require quite a lot of knowledge and of time.