desktop-application

Controlling Powerpoint using Leap motion and Python

寵の児 提交于 2019-12-10 11:33:23
问题 I just started up with python.I lately got a project where I have to make a powerpoint slideshow.This has to be done using leap motion sdk and python .So my powerpoint will be gesture based. How do I deploy this on my desktop in such a away that I just need to click on my desktop app or the ppt file itself, I get started with the powerpoint like on windows. I need to detect the finger gestures using python and integrate it to next - previous functionality. Can I get some guidance on

Is there a production-ready cross-OS desktop HTML5 runtime? [closed]

喜夏-厌秋 提交于 2019-12-10 03:00:36
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . Sometimes I think I want to develop a standalone (needing neither a web server nor a browser to run) desktop GUI application for

How to run desktop application with database locally without installing any database Server?

試著忘記壹切 提交于 2019-12-09 17:21:13
问题 I wanted to create a desktop application with database, am using Visual Studio 2013 and C# , Can anybody suggest me what server I used to create my database, in order to run my application in my client's system locally with out installing any database server in client's system [ie, with out installing MsSql server or MySql server or Acess], I want my app works properly when installing my own application's exe file ? And Now am using MSSQL server with my application , Is there any way run this

YouTube and OAuth 2.0 in .Net

五迷三道 提交于 2019-12-09 13:48:20
问题 Does anyone know how to properly authenticate an account using OAuth 2.0 and then use that auth token to access the user's YouTube account? At the end of http://code.google.com/apis/youtube/2.0/developers_guide_protocol_oauth2.html it says The Google Data client libraries that support the YouTube Data API do not currently support OAuth 2.0. However, a newer set of Google API client libraries, which do not support the YouTube Data API, do provide OAuth 2.0 support. As such, it is an option to

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

♀尐吖头ヾ 提交于 2019-12-09 07:16:21
问题 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 6 years ago . The last cross platform desktop development I did was Java/Swing. What about flex? 回答1: 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

MVC.NET for the desktop

亡梦爱人 提交于 2019-12-09 05:57:59
问题 Is there any reason that MVC isn't equally useful for desktop apps as for web apps? What would be required to make an ASP.NET MVC directory tree implementable as a desktop app? 回答1: Prism 回答2: I've always thought of the term MVC as the same as a n-layer application - so correct me if I'm wrong here folks. When i develope, I always(unless other instructed) use the following model/structure, also in applications: GUI(Web, Winform, whatever) -> Business logic -> Data layer -> And also with an

Non-trivial desktop apps that use Ruby?

你离开我真会死。 提交于 2019-12-09 04:27:25
问题 I'm about to start a project developing a Ruby desktop application. I expect to to be fairly big and I want to learn techniques for dividing code among modules and other techniques for managing complexity. Most large apps I've looked at are Rails apps, but these aren't very helpful, because most of the work is done by Rails itself. What source code would you recommend I take a look at? I'm not interested in libraries or Rails apps, because I get how they do things. CLI apps are OK, but I'm

Create application for web & desktop

南楼画角 提交于 2019-12-09 04:23:18
问题 I want to create one application and it should work on both desktop (without internet connection) and in the web. The applications should be the same (I mean UI and code) and work on both web and desktop (or maybe with a little difference) As server side and desktop application programming language I decided to use Python. As UI I want to use HTML5 + Javascript (JQuery) + CSS So, can you help me what tools should I use? I mean maybe some frameworks for my task. What framework should I use in

How to mix Java Swing and JavaFX in Swing application?

被刻印的时光 ゝ 提交于 2019-12-09 00:52:18
问题 I am developing a Java Swing application but I want to also use JavaFX with Swing. Is there any resource for that told how to do that? 回答1: See here. The short story is that embedding JavaFX in Swing is now possible and supported via JFXPanel, but the other direction is not supported. 回答2: The "JavaFX in Swing" link given above only works with JavaFX 1.1. Here is how to do it in JavaFX 1.2 JavaFX in Swing - 1.2. However, as Rastislav mentioned above, this is also using private APIs and will

What is considered “best practice” for user authentication/authorization for WPF and WCF applications?

烂漫一生 提交于 2019-12-08 19:27:05
问题 Say I have a .NET rich client (WPF) application that will be deployed in 3 different scenarios simultaneously: client & server code runs in a single process client code runs on an intranet computer and communicates via WCF to a server machine where the app/domain/infrastructure code runs same as #2 but client can run on a machine outside of the firewall. A custom list of users & roles shall be centrally maintained (i.e., credentials aren't based on windows login) What is a simple, proven