I want to know how to find all TeX Live keywords. I'm using Windows 10 and TeX Live 2019. I have tried this command tlmgr search --list --keyword but I did not receive the except result.
This syntax is no longer possible.
Looking at https://tug.org/texlive/tlmgr-news.html it says
tlmgr revision 35841 (released 24dec14): remove taxonomy searching, since upstream data is no longer maintained.
An archived version of the taxonomy list is available from https://web.archive.org/web/20121120023458/http://az.ctan.org/keyword
Related
Is there an API/command available so I can check what is the available latest version of a rock? Similar to say npm info xxx.
The best I can find is luarocks search xxx; was hoping there would be a better endpoint that provides a better-structured response than a string.
Update
Also, using luarocks search xxx does not do an exact match. For example, running luarocks search multipart returns 4 results because of multipart matches for names. But I do want to do an exact search; there is a package called multipart. How is that possible?
luarocks show (described here) has a --mversion flag that will return the current package version.
Otherwise, luarocks search is, as you already know, your option for querying what rocks (and their versions) are available.
I got the error "unable to load locale categories" when I tried to change my DB_LOCALE to Arabic (ar_ae.8859-6).
Also, I check my INFORMIXDIR env. variable.
My current DB_LOCALE is EN_US.8859-1 which I got after installation.
I check my gls folder for ar_ae code set but I didn't find it.
I'm using trial Informix version.
Where I could download ar_ae locale, or is it not possible for the trial version?
You'd need to download the ILS (International Language Supplement) if the ar_ae.8859-6 locale is not supplied with the base product — and I don't see it with a default installation on Mac OS X.
A Google search on 'ibm informix ils international language supplement' seems to come up with good hits. Make sure you get the ILS for your version of Informix.
For example:
README for IBM Informix International Language Supplement
You may need to contact IBM/Informix Technical Support, or otherwise search for the download on the IBM web site (roughly where you download other Informix products).
I want to configure SonarQube so it can analyze Delphi project too, and when I search online I saw there used to be a delphi plugin for SonarQube. But when I look at the plugins with the latest build it doesn't show the delphi plugin.
Is the plugin still available in an other way?
Or is it possible to configure SonarQube for delphi without the plugin?
As of G. Ann response was actually discontinued puglin for Sonar, but searching the internet, and recently (3 days) the developer Fabricio Columbus made it happen!
We tested and is running the current version of Sonar:
Compatible with SonarQube 4.5.x and SonarQube 5.1.2
https://github.com/fabriciocolombo/sonar-delphi
Release: https://github.com/fabriciocolombo/sonar-delphi/releases
JAR: https://github.com/fabriciocolombo/sonar-delphi/releases/download/0.3.3-SNAPSHOT/sonar-delphi-plugin-0.3.3-SNAPSHOT.jar
PS: Translated from Portuguese to English by Google Translate.
To analyze the files of language X, you need a plugin for language X that recognize's X's structure, syntax &etc. Without that you can't derive metrics (LOC, complexity, &etc.) or recognize bad code (i.e. raise issues for antipatterns.) So to answer your second question first, you won't be able to analyze Delphi code without some kind of Delphi plugin.
The Delphi plugin was deprecated quite a while ago because it seemed to suffer from a lack of interest all around & didn't evolve to maintain compatibility with the platform as it evolved.
If you look, you can find downloads of the old plugin, but to use it, you'd have to retrogress to a quite old version of the platform, & I don't recommend that. I'm not sure how far back you'd have to go - you could crack open the jar and get that from the pom - but it looks like the last mailing list activity on this plugin was Feb. 2012. So again, I don't recommend going this route.
So I upgraded to 1.4 for a project I am contributing to (in development/testing branch of course) and ran into some problems and thus we want to use Dart 1.3.6 again. However, I cannot find this.
Does anyone know where I could download it?
I have seen and starred https://code.google.com/p/dart/issues/detail?id=18323
as I was putting this question together, but of course seems like there is no more movement there just yet.
I think I pretty much ran into similar issues to what corgath described in comments on this question... looking for the right version in those "archives" where the "latest" is not really the latest anymore.
Update
There is now a nice page to select and download specific Dart versions https://www.dartlang.org/tools/download-archive/
Since a while there are also deb packages available which can be installed using
sudo apt-get install dart=1.7.0-dev.0.1.*
see https://www.dartlang.org/tools/debian.html for more details.
Original
You can download from
http://gsdview.appspot.com/dart-archive/channels/stable/release/
The list only contains the build number but each folder contains a file VERSION that contains detailed version information for this build.
dev channel releases can be found here
http://gsdview.appspot.com/dart-archive/channels/dev/release/
there are also unsigned raw builds (bleeding edge) but it is not recommended to use them.
http://gsdview.appspot.com/dart-archive/channels/be/raw/release/
I built a dissector for my WireShark version (after doing all that steps of installing cygwin etc. for building WireShark). Now, my dissector works only on my build of WireShark (ver 1.9 ... ), and not on, lets say, the newest WireShark version 1.8.4 that I can download from www.wireshark.org.
I saw that it is possible to create an installer of my version, which I can spread, and then my dissector will also work for others...
But I wanted to ask if it possible some how, by changing the version some where, to make my dissector relevant for other/older versions of WireShark which are official releases.
Thanks ahead.
edit: I tried downloading 1.8 source, building it, then building my dissector... but the official 1.8 release doesn't recognize it:
"Couldn't load module C:\Program Files\Wireshark\plugins\1.8.3\mydissector.dll: `C:\Program Files\Wireshark\plugins\1.8.3\mydissector.dll': %1 is not a valid Win32 application."
Hmm. The best I can say is get the SVN revision 45260 (on how to, see Stack Overflow question Checkout a specific revision from subversion from the command line) of the code, and compile your plugin again (check the SVN revision graph if you want to select a different version. You'll have the option to do this by right clicking the folder, and looking under the TortoiseSVN option). I just download the 1.8 source, and it seems too short (291 MB), and it's giving me the same problem, and I am not too certain if using it is the right thing.
Also make sure you're using Visual C++ 2010 to compile.
I notice you've asked the same question in ask.wireshark forum. A better solution may be provided there.