How to integrate UIkit with Aurelia - uikit

How do I integrate UIkit 3 with Aurelia in an aurelia-cli project. What are the changes necessary in aurelia.json to achieve my purpose.

right now the uikit3 build tool generates an anonymous module which can't be used with the cli, I submitted a pull request to remedy that, until its fixed you can use the cdn version.

Related

How to use ServiceCore framework from salesforce in a Xamarin forms app?

I am getting a warning in my console when I try building the app in Release configuration. The warning reads The ServiceSDK frameworks have not been prepared for release.
Please ensure the "prepare-framework" script is run after the "Embed Frameworks" build phase.
From the documentations, I understand that a build phase script has to be run to fix the issue.
Here is how I use the framework in my solution:
I am creating a binding library which refers the framework through a Native Reference. Then I run the library project and build a .dll with I use in the iOS project within my Xamarin forms application. All this is working fine. I am able to use the intended features from the framework.
However, there is this warning which appears in the console when I run the App in Release configuration. Also, when I tried submitting the App to App Store, it throws error, which is apparently the same mentioned above.
I tried by adding Custom commands which I think is the equivalent of Xcode build phase scripts, but the warning doesn't simply go away.
Any help would be really appreciated.
Sample Repos - https://github.com/XamarinUniversity/ENT302
Youtube Video Link - https://www.youtube.com/watch?v=HEypPXVoYnY&feature=youtu.be
Gudie Here - https://xamarinuniversity.github.io/ENT302/

Testing in Nativescript Telerik Appbuider

I've searched all over and have not found anyone who has been able to test a Nativescript project built on the Telerik Appbuilder. Even if it means exporting the project externally and testing in command line, is there any way to test it with Karma and Jasmine/Mocha?
This is probably a stretch, but I'm guessing there's also no way to integrate with continuous integration, such as Jenkins?

How can I build golang app with tags using gin?

A critical component of my golang app uses the ported GraphicsMagick library which requires building the library with -tags gm.
For example:
go build -tags gm
However, I'm building the web service based on the negroni framework and running it with gin which allows me to run the app with the command gin. I cannot find any way of passing build tags to gin. Any suggestions?
Not an ideal solution but it appears codegangsta/gin is abandoned so support for build tags simply won't be added. Instead, Github user omeid has compiled a patch and using his fork of gin will allow use of build tags.
go get github.com/omeid/gin
gin -tags gm

Spring boot, maven, AngularJS 2, typescript and live reload

I am in a study phase for an application development. The server-side development has already started, with Spring boot and Maven. Now, I am studying the possible options to develop the client-side.
I'd like to use Angular 2 (I know it's still in alpha), but I'm really hesitating between its javascript and typescript version. I know the live reload with javascript version should work well with maven spring-boot run (in theory), and this is a great help for productivity. I was wondering if there was a way to have the live reload for typescript version of Angular too. Has anyone managed to implement it in its own project? If yes, how did you do?
I have not found any doc about this on maven-typescript-plugin
The build system will be Maven for client side too.
EDIT: Is there an easy way for typescript debugging, or is it a pain?
One way could be adding a watch to automatically be triggered on any file change. For example, try adding the following to your package.json file:
{
"scripts": {
"tsc": "tsc -p src -w"
}
}
As the Quickstart for Angular 2 (literally) states that this will be activated when you open a terminal window in the root of the application folder and enter:
npm run tsc
The script sets the compiler watch option (-w) so the compiler stays alive when it's finished. It watches for changes to .ts files and recompiles them automatically.
Considering this will spit out plain-old .js files, you can use the tooling you're comfortable with to reload the page.

New version of these javascript files?

I am wondering these files get generated when you make an asp.net mvc 3 file.
jquery.validate.unobtrusive.js
jquery.unobtrusive-ajax.js
I am wondering do they update these only on new releases of mvc or are they regularly updating these versions?
Same with the asp.net mvc templates. When I make a new project I still get like jquery version 1.4.4.
Anyway to update these templates?
You can always create a new project and then the first thing you can go is go to the nuget package manager and update all the installed packages. This will allow you to update jquery and other packages to the latest version.
Rather than waiting for updates, you can easily create your own project template instead of using the one provided for you.

Resources