How to install and configure Kara Web Framework? - kotlin

I want to get started with web development, but I am having trouble installing Kara on my computer. The web site states that the Github repository includes a bash script for Mac OS-X, but I cannot find the script anywhere, just .iml files and the source code. There is very little information on the web site about how to configure Kara on my machine. Any pointers or advice would be appreciated.

Related

I have multiplatform apps in node-webkit. How do I convert them to nw.js?

I have a bunch of applications that run fine using node-webkit on Macs and Windows.
(They mostly live on shared Dropbox folders. They read and write to data files in the folder).
I gather node-webkit will not run on Mac Catalina.
So I am trying to figure out how to install and use nw.js
I need the Mac and Win versions of the app to be in the same directory. Multiple users will run their local Dropbox version of the app, and read/write to the shared data folders.
I cannot figure out how to get convert the app from node-webkit to nw.js
I've been unable to find an "idiot's guide" to this.
Any suggestions, or pointers to resources, would be most helpful.
Thanks in advance.
And apologies for posting what is probably a dumb question for most users of this site....
You have to run your app's old source code (node-webkit) with NW.js and fix all the exceptions thrown. You can find the migration guide here.

How to instll Siesta Lite on windows 8

We are implementing a project where we need to develop applications in sencha touch and as a tester i will be responsible to test these applications. After some research, I found out that Bryntum's Siesta is the best tool to automate the Manual test cases.
Before we decide to get the license, i just wanted to goof around it a bit so I downloaded the Lite version but I am not able to figure out how to install it on my Windows 8 machine. There isn't any .exe file in the downloaded folder when i extracted it.
Can anyone help me out with this please!
Thanks Already!
There is nothing to install really, since Siesta is just a web based tool (pure HTML, JS and CSS). Just extract into a web server and visit /examples and it will work. Getting started guide here: http://www.bryntum.com/docs/siesta/#!/guide/siesta_getting_started

Distributing TideSDK application

I recently finished an application based on Titanium, Javascript, HTML, CSS. I have only been a web designer to date so I have little experience in distributing applications. I was accustomed to the TiDev Community deploying app, which prepared the app for download and made it available for download at a given link.
But tidev community is no longer supported, so I use TideSDK Developer to package the app, which doesnt do all the hard work the other one did so nicely.
I am obviously a complete rookie to this.
Could anyone outline the steps I would need to take to go from the bundled application folder I have now (put together by TideSDK Developer), to a link that will allow customers to download and install the app or online? I know there is an issue with packaoging the app for platforms other than your own, and that appcelerator is working on a solution to this I think. I also realise I would probably have to pay to host the download online. Any guidance would be greatly appreciated.
You must use the tidebuilder.py script. to compile a installation package. To compile a binary for a Mac, you must run the script on a Mac, to compile a binary for windows, you must be on a windows box etc.
There is some documentation on how to use it here per platform. The command is very simple and works.
Once you have your application file (DMG for OSX or a MSI for Windows) then just distribute it however you see fit, email, putting it on your web server, whatever works for you.

How to sync php project between IDEs?

I've been using NetBeans with xampp in windows Desktop. Now I start to learn Flash, as a consequence, I installed Flash Builder for PHP, Zend Server, and Zend Studio in windows laptop. I know I don't need to install those Zend stuffs, but FB provide nice intergration with Zend, So I think it might be more convinent.
Before I fully set my heart on FB+Zend in laptop, I still need to work on my project in NetBeans+xampp in desktop.
How to keep files in sync between the 2 setup? Or, if I am on the wrong path, please shade lights.
Why not using SVN or Git ? You can sync from those kind of repositories using netbeans if i'm not mistaken.

TagLib# Windows distribution? Or another good ID3 reader?

I wanted to write a quick program to get the file organization of my MP3 files back into sync with the info in my ID3 tags...
I had tried to get the Windows Media Format SDK, but when I go to install it says it can only run on WinXP. I found someone on here suggest TagLib#, which looked REALLY good, from the code examples. Problem is it seems the official site is gone, and the other links I've found to a hosting on Novell's servers is also down.
Anyone know where I can still get a distro of TagLib# for C#/VB.NET for Windows? Or another good ID3 tag reader?
I would recommend installing taglib-sharp with NuGet. NuGet is the best and easiest way to use opensource libraries in Visual Studio.
To install TagLib#, run the following command in the Package Manager Console in Visual Studio.
PM> Install-Package taglib
The NuGet distribution of taglib-sharp can be found at http://nuget.org/packages/taglib.
The official source code repository is at https://github.com/mono/taglib-sharp.
You can download the source and DLL here: http://download.banshee.fm/taglib-sharp/2.0.4.0/taglib-sharp-2.0.4.0-windows.zip
You can check http://download.banshee.fm/taglib-sharp/ to see the latest version.
You can do an svn checkout of the code from http://anonsvn.mono-project.com/source/trunk/taglib-sharp.