Couldnt find Osirix Plugin Generator. How to start to develop plugin for osirix? - objective-c

As per the links at Osirix webpages, the link https://osirix.svn.sourceforge.net/svnroot/osirix/plugin seems to be destroyed where Osirix Plugin Generator apple script and the tutorial for developing plugin for osirix are present. Please guide how to start for developing a simple plugin for osirix in obejective C. Thanks!

They moved the project over to Github. Here's the plugin generator and samples link:
https://github.com/pixmeo/osirixplugins
Like Nelson Terra said, you can find the generator in the /_help directory. The other folders are all sample plugins you can check out. As for a guide, this site helped me when I first started with OsiriX:
http://osirixpluginbasics.wordpress.com/
Also here's a good forum that has a lot of useful snippets:
http://groups.yahoo.com/neo/groups/osirix-dev/info

You can find some documentation here:
http://osirix.svn.sourceforge.net/viewvc/osirix/Documentation/Guides/Development/index.html

I had the same problem and I just found this project: https://osirixplugins.svn.sourceforge.net/svnroot/osirixplugins . In this project you can find the /_help directory and inside it the osirix plugin generator, I will try this...good luck for us.

The new plugin template is in the folder called
osirixplugins/_help/MyNewPluginTemplate/
at the github repository:
https://github.com/pixmeo/osirixplugins.git
You can use that and customise the code. This works instead of a Generator script...

Related

Compiling Titanium Modules from GitHub

After a few days of failure I realize I need more insight than google can deliver.
I am attempting to include a module in my otherwise working fine Titanium project but am not having any luck. The module in question is Ti.MapPlus, a fork of the standard Ti.Map module that I am already using. The GitHub repository does not have a compiled release, and it is not available via Gitt.io.
I have tried to create a new Mobile Module Project without success; but suspect that this is the best route.
Can anybody walk me through the steps of getting the module working globally?
There are some releases here: https://github.com/AppWerft/Ti.MapPlus/releases

How to start a simple Gradle+JavaFX+OSGi appliaction

I'm trying to build a simple JavaFX application in IntelliJ environment using Gradle and OSGi, but I could't find a simple working example anywhere.
Most of the solutions I've found are not Gradle based or they use some additional tools, or they are outdated and they simply don't run, or they import some magical "hack code" from github etc.
The tools I've found for similar purpose e.g. e(fx)clipse, bndtools are probably not important if I use IntelliJ. Moreover the bndtools tutorial is very wordy and I couldn't find a good starting point or quickstart to try those things out.
I know the basics about Gradle and OSGi and according to information I've found, it does not seem to be an easy task to solve.
Are there any (good) tutorial(s) or quickstart(s) about how to start this kind of project properly? A simple working example would be very useful.
The e(fx)clipse project is a good starting point and provides many useful features for using JavaFX and OSGi.
See http://www.eclipse.org/efxclipse/index.html .
The blog of one of the developers has also many useful tips, https://tomsondev.bestsolution.at/ .

New Elixir project in Intellij

I've recently started using Elixir and I'd like to keep my code files in quite decent order. So I installed Elixir plugin for Intellij: https://github.com/KronicDeth/intellij-elixir, but stuck with trying to start an Elixir project. Could you give me some tips how to make new Elixir project?
I'm the maintainer of intellij-elixir. Please file support question as Issues on github: https://github.com/KronicDeth/intellij-elixir/issues. In fact, someone already asked a similar question (https://github.com/KronicDeth/intellij-elixir/issues/77). In summary, right now you can't create "Elixir Project". There isn't yet an "Elixir Project" feature/action although you're welcome to open an issue to make that a feature request. (It's nice if you open it instead of me opening it for you as you'll be subscribed to updates then.) With the feature set as is, you can create any type of project you like because all that matters is that the file extension is .ex for the Syntax Highlighting, Grammar parsing, Inspections and Quick Fixes to work. I just create the default Java project when testing intellij-elixir in Intellij or an empty directory or project layout created by mix new in Rubymine. Since two people at least have brought this up I'll add something to README after I'm finished with https://github.com/KronicDeth/intellij-elixir/issues/59.

Are there any good tutorials for using ShareKit?

Does anyone know of a good tutorial that is easy to understand for ShareKit? I've looked but found nothing. I'm pretty new to Xcode.
The GitHub wiki for ShareKit v2.0 has a great page titled Installing ShareKit that should help you get up and running with the latest incarnation of this project.
The source tree also has an xcodeproj file which contains sample code showing how to integrate ShareKit into your own project.
You can checkout the documentation given in http://getsharekit.com ...after you downloaded and attached to your project open config file and read the comment lines given before each methods in it...it will direct you to correct way...There is no exact tutorial for it...If u got any specific issue then ask a question here..we are ready to answer...

Where is the libOAuth.a source?

Nowadays, I'm working on an iPhone project that is using social connections such as Twitter, Facebook..
When I tried to implement Twitter+OAuth solution into my project some another parts of project such as MySpace is giving error on oAuth implementation. It seems MySpace IOS SDK used old version of oAuthConsumer project.
So, I haven't find libOAuth.a source code. If I find it I will be handle my problem.
How do I find the libOAuth.a static library source ?
try downloading it from https://github.com/bengottlieb/Twitter-OAuth-iPhone/blob/master/Twitter+OAuth/Libraries%20&%20Headers/libOAuth.a?raw=true
Isn't this what you're looking for? And not only do you have to include it into the project but also make sure you copy into it. Then under Build Phases, you will have to add this to Link Binary to Libraries section.
You might find Google's new OAuth 2 library for Mac and iOS to be helpful.