Where can I find the Flex source code? [closed] - apache-flex

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I keep hearing that Flex is open source and I figured that a great way to learn about the inner workings would be to look at it. I can easily find the Flex SDK (http://opensource.adobe.com/wiki/display/flexsdk/Get+Source+Code), but I'm wanting to look at the class definitions for the MXML core library (like NumericStepper). Have I misunderstood, or is this kind of thing available somewhere?
Note, I'm looking for the source of some core MXML components so I can see how they work internally, not for the compiler's source. Does what I've linked above have what I'm looking for and I just can't find it in the director structure?

If you have installed the sdk or Flex builder all of the source files are installed locally on your computer, I believe.
I have flex builder 3 installed source is located here(depending on where you installed):
Source for flex 3 sdk
C:\Program Files\Adobe\Flex Builder 3\sdks\3.0.0\frameworks\projects\framework\src\mx
Source for flex 2 sdk
C:\Program Files\Adobe\Flex Builder 3\sdks\2.0.1\frameworks\source\mx
Hope this helps and alleviates the need to be online to view the source...

The source is found in the SVN repository that is here:
http://opensource.adobe.com/wiki/display/flexsdk/Get+Source+Code

Here's a direct link to the NumericStepper code: http://opensource.adobe.com/svn/opensource/flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/NumericStepper.as
And here's the complete code of the framework: http://opensource.adobe.com/svn/opensource/flex/sdk/trunk/frameworks/projects/framework/src/mx/

The open source stuff appears to be at:
http://opensource.adobe.com/wiki/display/flexsdk/Downloads
I don't know if everything is available there yet, there may be issues with third-party stuff.

Related

PyQt documentation offline [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
Does anyone know if an offline version of the latest PyQt4 and PyQt5 documentation is available somewhere on the Internet? I don't want to depend on whether I have a working Internet connection or not. I can of course grab it using wget or similar but I would prefer if I can do that the "normal" way (a PDF version would also be nice).
Note: Mny things are covered by the official Qt documentation (C++) however there are also things specific to Python. An example for such a treat is the fact that in C++ there are functions which have multiple overloaded versions while in Python such a thing is not possible. I find myself ever so often looking into the PyQt docs to see how this and that Qt thing looks like in Python.
The PyQt source releases contain the documentation in doc/html.
You can also use the Python builtin help() on a PyQt object - often that way you'll get more relevant information (like the exact Python signatures) compared to the documentation.
Qt comes with a dedicated program, called Qt Assistant, that can be used to browse the documentation off-line. I use it regularly. It's C++ only obviously.
I don't know where it is installed on your system but it may very well be in the same directory as the Qt Designer.

QML/Qt4 for desktop: any demos? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I want to build a simple desktop application using QML (need nice transition animations), but i can't find any demos. The demos on qt docs website are using some shared files i can't find (and anyway they have both pro and QML pro while my application has only one view, so it's really overkill). I've found some code on github, but it seems like it's Qt5 only.
What i'm building is simple QML app with JS logic (remote JSON API calls) and some C++ code for platform specific stuff. Mb QML is just wrong idea for me?
Thanks.
For Qt 4.8.6 Qt Quick examples and demos located at QML Examples and Demos
QML .qmlproject files used for QML Viewer but you can use QDeclarativeView widget and load QML file on it as described here: Integrating QML Code with Existing Qt UI Code.

Adobe AEM / CQ tutorials [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am really interested in learning "Adobe CQ" .
My question is what are all the technologies that I need to learn to understand adobe cq.
Any tutorials on Adobe CQ and related technologies are helpful.
Thank you,
Sri
As a developer you can start at http://dev.day.com. CQ is now called as AEM (Adobe Experience Manager).
Technology Stack which makes up CQ:
Sling - the MVC framework
(https://cwiki.apache.org/confluence/display/SLING/Index)
JCR / Jackrabbit
OSGi
Google around this and you should be able to get a lot of resources.
Thanks
EDIT :
you can go through helpx adobe site, from where you can go through small example projects.
For example: Creating your first Adobe Experience Manager Touch UI component.
It tells you from scratch with step by step guidance and also has zip folder, which you can directly download and upload the package in the crx/de to see what is happening. :)
Go to the AEM community page - you will find lots of tutorials and how to articles:
http://helpx.adobe.com/marketing-cloud/experience-manager.html
This will be a big help when developing components-
Cq5 Widgets Api
I found the Adobe Gem Sessions very helpful
You can start here. I think this is the best place to start at. I am sharing the link for AEM 6.0. there are similar links for each verion of CQ.
http://docs.adobe.com/docs/en/aem/6-0.html
There are 2 ways to start developing with Adobe AEM :
Use cqblueprints maven archetype
Native adobe maven archetype
Those 2 ways differ only in module structure, but used plugins are the same.
BTW: Adobe AEM 6.0 has migrated to Jackrabbit Oak-based CRX 3 repository introduction to OAK

Go network programming libs [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I've decided to rewrite most of my distributed server programs in Go to replace the existing c# based ones.
Can someone point me to a Go TCP libs or a Go general network programming lib.
Thanks
Edi: ... and how do i complile this code is visual stuido 2008? Thanks
Here's the official API docs for the net package.
Regarding how to compile: See the installation guide. As of yet there doesn't seem to be an obvious way to compile in VS:
The Go tool chain is written in C. To
build it, you need to have GCC, the
standard C libraries, the parser
generator Bison, and the text editor
ed installed.
So in order to develop on Windows, the easiest route would be to use cygwin.
Depending on the needs of your distributed software, you may also want to check out the rpc package which makes it quite easy to register an object's public methods and call them remotely.

What is the best way to move from the Microsoft stack to open source dynamic website development? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am more familiar with the Microsoft stack and I have some knowledge with ASP.NET and SQL.
What is the best open source platform to learn and create a dynamic website with, focusing on the back end?
PHP for the website development
MySQL (or PostgreSQL) for the database backend.
All are open source.
There is no such thing as the "best open source". There are many good ones that'll suit different programming styles and personalities.
Some of the more popular couple of open source languages for web development today are:
PHP
Ruby
Python
Some of the more popular couple of open source databases are:
PostgreSQL
MySQL
As they're free, give them a spin and see what you prefer.
Try to start with the dasBlog. you can see more information about this project and a lot more here and videos here
The two most popular open source webapp platforms at the moment are Rails and Django. They are both awesome, and a joy to work with.

Resources