Posts

Showing posts from March 21, 2019

How to pass different argument to gdbus like unit16, uint32

Image
up vote 0 down vote favorite By default arguments sent to gdbus are taken to be of type Int32. I need to send arguments of mixed type like uint16, uint32 .. How to frame the arguments for gdbus for same Unfortunately there are not many examples of such usecases in the net. I am trying to frame the gdbus emit signal with above type of arguments. Below is example of what I am trying gdbus emit -y -o /myservice/serverInstance -s com.mimo.myservice.touch "(2,1)" Below is the output signal sender=:1.5 -> dest=(null destination) serial=6606 path=/myservice/serverInstance; interface=com.mimo.myservice; member=touch struct { int32 2 int32 1 } In above case, I need to send second argument as uint16. Hot to do that. dbus

How to skip items in reverse enumerations?

Image
up vote 3 down vote favorite I'm using the etaremune package to create a reverse enumeration and I would like to be able to alter the counter so that an item is skipped but the enumeration still ends at 1. documentclass{article} usepackage{etaremune} begin{document} begin{etaremune} item the fourth item the third %%item the second item the first end{etaremune} end{document} lists etaremune share | improve this question asked 3 hours ago Abdallah 262 2 9 add a commen