What crossplatform libraries do you recommend for Haxe? - libraries

I have already investigated.
I found nme,neash...Physaxe Do you know others?

format
hscript
utest
haxealtdate
hxJson2
xpath
ArrayTools/HashTools/IterTools/ListTools/StatTools
You can find all of them on the haxelib page.

Related

Template loop in Wikipedia modules

I've imported Module:Documentation and Module:Arguments for custom mediawiki from wikipedia. Unfortunately, Lua indicates template loop inside them on also wiki-native pages like Template:Extension, these are not custom templates or pages. Would like a hint or direction to look into, maybe someone encountered the same problem.
The problem is in Template:Extension docs (probably, Template:Extension/doc). The Module:Documentation in both Russian and English Wikipedias is shorter than 464 lines, so your version is either obsolete or modified.

Write Check Marks in RMarkdown?

I try some examples from LaTeX, such as \Checkedbox, \CrossedBox*, \HollowBox, but unfortunately, they all do not work. I found $\Box$, $\checkmark$. Anyone know how to type checked box?
You can create your own command which overlays \checkmark on top of \Box:
\newcommand{\boxedcheckmark}
{{\ooalign{$\Box$\cr\hidewidth$\checkmark$\hidewidth}}}
I found $\Box$, $\checkmark$. Anyone know how to type checked box?
Check $\boxedcheckmark$ to see if it suits your needs.

How do I add a wireshark column that will display the value of an HTTP Request Query Parameter?

For example :
If I had http://somepage.com/somefolder/someresouce?p1=value&p2=value&p3=value
I would like to see a column that would display the value of p2 if it existed in the request.
I googled, asked people around but can't find a good answer.
If think creating a dissector might help, but I don't want to write a new dissector for http.. that's an overkill.
And there is no http.request.queryParams["p2"] syntax for use of Custom Column type.
Thanks in advance!
Edit : I solved my own Question, adding the best implementation so far in my own answer below.
Well, the solution was indeed in dissectors.
Wireshark help is not very good, the examples are ok though.
The main problem was that wireshark help defines that you can write your lua script, and place it in the plugins directory, which is searched recursively for lua files.
I did place my lua there and nothing worked, After almost 2 hours of fiddling, I found out instead of putting it in the plugins directory, it had to be in plugins//myScript.lua in order to work...
Now just to share my work :
To answer my own question :
http://pastebin.com/eANEut92

Emacs: Using a major-mode's font-locking only for mmm-mode

I've got MMM-mode set up to edit .html.erb files, but indentation does not work in the ruby sections, and all the different electric behaviours of ruby-mode do the wrong thing. I've changed this sub-mode from ruby-moode to fundamental-mode, and it works much better.
I want to still use ruby-mode's font-locking though, is this possible/easy? Any hints on where to start.
Elisp is comfortable to me, but I don't have too much time right now to dig too deeply myself. Hopefully someone will have a snippet?
I see you haven't yet found an answer. Dunno whether it will be better for this, but you might consider using MuMaMo instead of MMM.
To answer the question, you would define a major mode deriving from fundamental-mode, and in its body just copy the font-lock-related lines from the ruby-mode definition body, the ones setting font-lock- variables and also syntax-propertize-function. Naturally , you need to (require 'ruby-mode) somewhere.
But for .html.erb files I can now recommend using mmm-erb, which was not available when this question was asked.

How can I remove the numeration of some titles in LaTeX?

I'm writing my degree project report using the article class and I want a structure like this:
Abstract
Introduction
1. What
2. Where
3. Etc.
I was searching and I found that using \setcounter{secnumdepth}{-1} the complete numeration is eliminated. And if I use * these sections don't appear in the table of content. So what can I do? Can this be done without installing packages (like memoir)?
Note:
It was asked before, but I did not find it when I searched. Sorry :(
use:
\section*{Foo and Bar}
\addcontentsline{toc}{section}{Foo and Bar}
Using the * version of the section commands might help. Try \section*{Abstract} and see if it is close enough.

Resources