desktop-application

OpenGL ES 2.0 vs OpenGL 3 - Similarities and Differences

天涯浪子 提交于 2019-12-03 12:00:52
问题 From what I've read, it appears that OpenGL ES 2.0 isn't anything like OpenGL 2.1, which is what I assumed from before. What I'm curious to know is whether or not OpenGL 3 is comparable to OpenGL ES 2.0. In other words, given that I'm about to make a game engine for both desktop and Android, are there any differences I should be aware of in particular regarding OpenGL 3.x+ and OpenGL ES 2.0? This can also include OpenGL 4.x versions as well. For example, if I start reading this book, am I

Adsense equivalent for a desktop application? [closed]

时光总嘲笑我的痴心妄想 提交于 2019-12-03 10:50:09
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . Jeff has mentioned in the past that dealing directly with the advertiser is "a great model if you can get it", but I imagine getting the critical mass that will attract advertisers to a desktop application is going be difficult and some ad based funding in the interim would be great. So to my question(s): Are

Good language & framework for cross platform (windows & mac) desktop application [closed]

走远了吗. 提交于 2019-12-03 10:09:24
The last cross platform desktop development I did was Java/Swing. What about flex? Don't do it. If you need to go cross-platform, write the main guts of your application in a business logic layer that doesn't depend on any GUI framework and then use the native platform API to finish each app. Your users will thank you. I'd choose an open alternative and I'd try to avoid vendor lock-in. As Richard said, "if you've mastered Java/Swing why not use it again?" I've used RealBasic from RealSoftware for a few things just to play with it. It can get expensive if you need the pro version. It will allow

Are Cortana APIs available for desktop applications?

半世苍凉 提交于 2019-12-03 10:03:27
问题 I want to develop a Windows application on Windows 10 using the new Cortana engine. Unfortunately as far as I know, it seems to be available only on Windows Phone 8.1 project (for instance, I didn't find a way to access to the Windows.Media.SpeechRecognition namespace from a different type of Visual Studio project). Also I wasn't able to find a good API documentation, only some very simple examples. Edit: Based on Peter Torr answer I've wrote some code. I've been able to recognize some word

Is Java the best language to develop cross-platform GUI applications? [closed]

删除回忆录丶 提交于 2019-12-03 09:26:40
Closed . This question is opinion-based. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it can be answered with facts and citations by editing this post . For "best" I intend that the code shouldn't need, or need very few, platform specific tweaks. I strongly recommend Java for cross-platform GUI development. In particular, I recommend the GUI builder that comes with the Netbeans IDE . It's very simple and very powerful. You can point and click and drag and drop to create a GUI, and easily customize the actions which various buttons

Convert Natural Language Questions to SQL Queries

自古美人都是妖i 提交于 2019-12-03 07:44:26
问题 I want to convert Natural Language questions to SQL queries using opennlp Java library, i.e. Who won women figure skating in Sochi? should be converted to select name from winners where event='skating_woman' Anybody know which classes will be useful and how to achieve this? Also pasting code which I tried. I have converted question into statements and later into tokens. /////////1st part String paragraph = "Did Matt win the men slalom?"; InputStream is1 = new FileInputStream("bins/en-sent.bin

Simple/Best way to load Web App as Windows Desktop Application?

大城市里の小女人 提交于 2019-12-03 07:38:02
问题 Hello basically I have a web app built using html5/php, etc. Its a music player, similar to spotify and pandora. I want to distribute the web app for as a desktop application so people can run it straight from their desktop without opening a browser. I would not like a browser like system, just have the web view loaded (similar to just loading a webview in iOS) (no tabs no url bar, etc) I heard of Prism but that is discontinued and I can't find a download link anywhere. Is there anything you

OpenGL ES 2.0 vs OpenGL 3 - Similarities and Differences

房东的猫 提交于 2019-12-03 06:07:33
From what I've read, it appears that OpenGL ES 2.0 isn't anything like OpenGL 2.1, which is what I assumed from before. What I'm curious to know is whether or not OpenGL 3 is comparable to OpenGL ES 2.0. In other words, given that I'm about to make a game engine for both desktop and Android, are there any differences I should be aware of in particular regarding OpenGL 3.x+ and OpenGL ES 2.0? This can also include OpenGL 4.x versions as well. For example, if I start reading this book, am I wasting my time if I plan to port the engine to Android (using NDK of course ;) )? From what I've read, it

How to start writing an augmented reality application

做~自己de王妃 提交于 2019-12-03 05:08:55
问题 I have been looking at creating an augmented reality application. Can anyone suggest a preferred technology platform to start writing an application of this kind. I would like this to be a desktop application and not a mobile application. Therefore I want to use a webcam with object recognition. Thanks! 回答1: FLARToolKit is another good place to look. It's free and uses flash + Actionsctript 3. gotoandlearn DOT com has a couple good video tutorial on how to use the library, I'd give you links

Framework for (HTML + JS) Desktop Client

我只是一个虾纸丫 提交于 2019-12-03 04:38:28
问题 I plan to write a Desktop Client for Windows and Mac. It will be powered by web techniques (HTML + JS). Therefore it shall run on a WebKit engine on the user's desktop. Recently, I saw an interesting approach for this issue: Appcelerator I love its basic concept, but I don't want be dependent on their services. Instead I want to have full control on the WebKit program, which loads my app. Are there any decent open source WebKit frameworks for building desktop apps? Desktop integration