Less vstemplate for vs2012 - less

How to create a new less file template for vs2012 ?
Just like what Web Workbench does.
When you install this extension, you will see 3 extra file templates for LESS SASS coffeeJS.
However, I don't want to install this extension.
Because I more like to use another extension, but it misses this feature I like to have.
Thanks for helping !

1) Create a less file.
2) File->Export Template
3) Choose Item Template
4) Check your less file from the list.
5) Do couple more next and done.

Related

How to add GET parameter to CSS filename in plugin JCH Optimize (Joomla)

I cannot find an answer to for several weeks. Perhaps my experience in development is not so great :) One site uses the JCH Optimize plugin and I noticed that after clearing the old memory (caches), the CSS and JS file links do not change, i.e. the names of these files remain old. The problem is that the browser checks the file name and if it has not changed, then the site visitors show the old version of the style file. The question itself, where in the plugin (in which code file) i can add some GET parameters ?vers = 1.1 so that for the browser it is a new file and it would update the information for users. I will be glad to hear any solutions. Thanks.
The names of the combined css and javascript files are keyed from the names of the individual files on the page. Clearing the cache will not cause the plugin to generate a different file name.
As of version 7.0.0, there is an option to generate a different cache key if you want to change the names of the combined file. Update your current version to get that capability.

How can I create a folder for file templates in PhpStorm?

I use file templates in PhpStorm a lot. So in time I've got a big lists of file templates. Now PhpStorm limits this to an X number amount of file templates.
Is there a way that I can group these file templates in a folder or something? (like how PHPUnit test is nested in a PHPUnit folder)?
AFAIK it's not possible (no built-in functionality) and I have found no plugin that would allow use to create such folders via GUI.
I guess (based on my searches) the best match would be this ticket: https://youtrack.jetbrains.com/issue/IDEA-60214 and related -- watch it (star/vote/comment) to get notified on any progress.
Now PhpStorm limits this to an X number amount of file templates.
Have you tried speed search (start typing the name while popup with all templates is shown)? It may not show all templates as your list is too big ... but may be able to show them after filtering/searching (when list is shorter).

XCode Error on creating archive for Generic Device

error: make directory
/Users/myuser/Library/Developer/Xcode/DerivedData/Application-gijbetvhfmflwadwicdemgmykala/Build/Intermediates/ArchiveIntermediates/Weflymate/InstallationBuildProductsLocation/Applications/Application.app/Application.app/Application.app/.........
: File name too long
On Xcode i try to archive a project to create the .ipa.
The IDE blocks the process launching the error that seems a recursive path creation.
Xcode 7.3.1,
MAC OS Sierra
It seems that your application file name is too long. Apple allows only 15 characters for your application.
So make application name short or use small characters which takes less space like "iiiii is taking less space than mmmmm"
So please make your app name smaller than 15 characters
Try below listed points, that may solve problem:
1) Check if your project contains duplicate framework, if any remove it. Check frameworks in "Embedded Binaries" for duplicate and if you find any remove it.
2) Remove duplicate bundle from project which added from other source. Check for duplicate copy of en.lproj and remove it.
3) Delete /Users/..../Library/Developer/Xcode/DerivedData and rebuild, because error: make directory ....Directory not empty may be for the same.
4) Rename your project with shorter name and then clean and rebuild.

EXRM - Can I set vm.args values from the config.exs file?

Somewhat related to this question - Parametrizing node name in Elixir Exrm - is there a way to dynamically set the content of the rel/vm.args file?
In the title, I suggest the use of config.exs, but I'm interested in any scheme that will allow me to add, remove and edit vm arguments at build time.
A bash script might be an idea, but a solution that would also work on Windows, and is preferably based on Elixir code would be the idea.
You can commit to your project repo a rel/vm.args file that you would like to be used instead of the Exrm generated one. Exrm will automatically use this file instead.

Bazaar merge questions

Is it possible to merge only specific files and just copy the unselected files?
I.E. i want to resolve conflict in all files except *.hex *.s19 and *.out. in those files i want to take the .THIS file always (for example)
How i configure bazaar merge to be external and the builtin tool? i want to use the bcompare as my merge tool and not just as 4-way diff to resolve conflicts
i'm using beyond comapre software for resolving conflicts after merge.
Today i simply run the bcompare.exe and then press launch in the resolve conflicts menu.
can i run it with any parameters that i want? (i.E choose the center file as the . BASE file and configure the outut file name as the merged file)
thanks from advance
Gil Idelson
I wonder if it perhaps make sense to file three different questions.
I'm not sure about 2) and 3) but for 1:
A partial merge is not possible. You should be able to do the merge anyway and then just use
bzr resolve --take-this **/*.hex **/*.s19 **/*.out
to take the local versions of those files.