What is "timmy whinge" all about? - history

The SciTE text editor has an option in its configuration files called "tab.timmy.whinge.level".
What's the story behind this name?
As I understand it, "whinge" is a British-ism for "whine" -- Google defines it as "complain persistently and in a peevish or irritating way". So who exactly is Timmy, and what is he whining about? There's got to be a story there.
It's not really relevant to anything, but every time I see that option in the docs, I have to wonder.

According to the definitive source: Neil Hodgson, lead developer of Scintilla:
I shouldn't have named a feature
after a real person.
The standard Python module for
checking indentation is
'lib/tabnanny.py' which was
implemented by Tim Peters.

It is a reference to Tim Peters, major Python contributor and author of the original tabnanny (amongst many other things!). Confirmed by Neil Hodgson on the scintilla-interest mailing list.

Related

Magento 1.8.1 payone extension 3.5.5 cc status_mapping issue

I hope you can help me.
After upgrading the payone extension from 3.1.8 to the newest 3.5.5 and checking the correctness of payone configuration with its menu 'export configuration' I detect that the creditcard is not listed under the status mapping group though the mapping for it is set. But the credicard data itself is exported anyway under the clearingtypes. I reinstalled the extension, some times, but allways the same effect. There is also no log entry.
The creditcard is the clearing type I have ordered by payone, the other, which are listed under status_mapping not.
Here is the part of the .xml export.
<status_mapping> !!! no creditcard listet under status mapping!!!
<vor/>
<cod/>
<elv/>
<rec/>
<sb/>
<wlt/>
</status_mapping>
<payment_creditcard>
<min_validity_period></min_validity_period>
</payment_creditcard>
</global>
<clearingtypes>
<cc>
<title><![CDATA[Kreditkarte]]></title>
<id>3</id>
best regards
Christian
I marked that as a bug internally. However, I don't think this is a classic question for Stackoverflow. Feel free to add an issue at https://github.com/PAYONE-GmbH/magento-1 the next time something like this arises :)
I'll check whether I can pin down the issue and will get back to you.
Best,
Florian
Technical Partner Manager #Payone

Comparison sheet for switch to Orion

I can't find a resource that clarifies the programming differences between Polaris and Orion versions. I've been googling for a few days now.
Probably you already read this article written by Jukka Niiranen
The Next Dynamics CRM User Experience: Orion
I think Gemini release will bring (at least) the possibility to use Xrm javascript with the new forms (actually is really a shame to don't be able to pre-fill a field or to do some show/hide logic) and provide the xml definition that will replace the ribbon.
I'm not sure if there is such a document yet. Before we start with Orion, we have to pass Gemini, first. And given the inconsistency between road maps and reality this far, it could as well be that Orion will be known as CRM-2014.

trainee programmer: man pages of input_sync(),input_report_key,input_event()

i want to get explanation of functions line input_sync(),input_report_key,input_event().. when i search for it i only get the definition of these function .. am a newbie in this driver programming and i really need simple explanations like man pages .. so that i can know what these functions actually do??
regards..
There is a tutorial covering the methods in which you are interested in the Documentation/input folder in input-programming.txt. You can browse the latest version of it online at git.kernel.org

Where can I find the Docs of libnautilus?

I have been searching on google all day, but I couldn't find any useful information about how to use this lib.
Who can help me? Thanks a lot.
You can start with Nautilus Development Extensions. It is not comprehensive, but you can get the idea.
Later, you should check the document written by Dave Campd Nautilus Extensions, which contains examples. Notice I pointed out archive.org because the original url did not work for me.
Dave's document helps to get the context, which is useful when reading the API.

JIRA: Searching for all issues with a given link type

Is there a way to query for all issues with a particular link type?
For example, let there be a dependency link where an issue can "depends on" another issue. Is there a query to find all issues that depend on some other issue (aka. all issues with the "depends on" link)?
I know there is the linkedIssues (key, linkType) function that returns the key of all issues that have the linkType with the issue with key. I want to find all issues with a linkType with any issue.
Thanks!
You can use Script Runner plugin - Edit: It unfortunately is no longer free. The last version before 4.0 still is, though. Details here https://www.adaptavist.com/doco/display/SFJ/Downgrade+ScriptRunner
It sports a ton of incredibly useful functions, one of these is hasLinks()
Usage example:
issueFunction in hasLinks("blocks") OR issueFunction in hasLinks("is blocked by")
You can hack it with Craftware JQL's linkedIssuesFromFilter, where the filter would be "all issues"
The included function mentioned by Alexander is ideal for its purpose but if you want something more advanced check out the commercial JQL Tricks plugin: https://studio.plugins.atlassian.com/wiki/display/JQLT/Issue+Link+Functions
If you need a JIRA On-Demand solution - you might find this paid Add-On useful
It exposes MongoDB syntax and some conditions builder UI, so you should be able to search for the issues:
linkedIssuesHaveStatus([status])
subtasksHaveStatus([status])
linkType([linkType])
workBetween([started|created|updated], [from], [to])

Resources