Hi,
Is this wiki page still valid?
http://twistedmatrix.com/trac/wiki/Windows
I saw that it was not updated in the last 5 years.
I think that latest Visual Studio license is free to use for open
source projects.
My project/company can donate virtual machines. We will host them and
our sysadmin will take care of their uptime.
We have a Proliant G5 2xQuad Core Xeon server which is idle at our UK
office. It has UPS and dedicated RAID batteries.
We have donated 2 Linux VMs in the past but …
[View More]they were never used, so
we have stop them.
We can provide license for Windows 8.1 and Windows 2012 Server as part of a
Microsoft Partner Network licensing scheme.
We don't have XP, Vista, Win7 licenses.
Cheers,
--
Adi Roiban
[View Less]
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
I'm pleased to announce txtorcon 0.12.0. Full list of improvements:
* doc, code and import cleanups from Kali Kaneko
* HiddenServiceDirGroupReadable support
* Issue #80: honour "ControlPort 0" in incoming TorConfig
instance. The caller owns both pieces: you have to figure out when
it's bootstraped, and are responsible for killing it off.
* Issue #88: clarify documentation and fix appending to some config lists
* If GeoIP data isn't …
[View More]loaded in Tor, it sends protocol errors; if
txtorcon also hasn't got GeoIP data, the queries for country-code
fail; this error is now ignored.
* 100% unit-test coverage!
* PyPy support (as in: all tests pass)
* TCP4HiddenServiceEndpoint now waits for descriptor upload before
the listen() call does its callback (this means when using "onion:"
endpoint strings, or any of the endpoints APIs your hidden service
is 100% ready for action when you receive the callback)
* "TorControlProtocol now has an ".all_routers" member, which is a set() of all Routers
* TimeIntervalCommaList from Tor config supported
* documentation fix from "sammyshj"
You can download the release from PyPI or GitHub (or of
course "pip install txtorcon"):
https://pypi.python.org/pypi/txtorcon/0.12.0https://github.com/meejah/txtorcon/releases/tag/v0.12.0
Releases are also available from the hidden service:
http://timaq4ygg2iegci7.onion/txtorcon-0.12.0.tar.gzhttp://timaq4ygg2iegci7.onion/txtorcon-0.12.0.tar.gz.asc
You can verify the sha256sum of both by running the following 4 lines
in a shell wherever you have the files downloaded:
cat <<EOF | sha256sum --check
206b1bd8a840119c12d9b85d638ab9defec5b376436fa36be9139ab1ebc8cd78 txtorcon-0.12.0.tar.gz
4e4f6aa2ec677f6c27bff41d17888d31a979f6b831a20501101b39ca93ede9da txtorcon-0.12.0-py2-none-any.whl
EOF
thanks,
meejah
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)
iQEcBAEBAgAGBQJU0TWHAAoJEMJgKAMSgGmnDEoH/AriLbAyImmcfmRy5C2YcVth
eJyXRhHTXc6WBh0tBgryt88o5n55XAwiqNoAwslLvS4RS6w9NEzA9zusimuVYEZs
CV10NeC5PiXHJ6qDlcJ+FPsHhWk4zt49wGtaqyfGK/8aZm9enQwiMH6j9Iwx6il0
rLFwm7RoukPTW8dn3oR67QFYwdpHD7cCQW8e6uajpQuBCeNr2nljRpVLFM/6hueh
shIAAmPGfBQ2vR16QOQDyJMCLk7oKj0xtzok8O4fWBof1+h3JvMQqphEYlgtE5Lh
9W0XgG/ugrrhjIIoKc29+4Io5vaqKjHcGfqEyJyEimppgGB/6YTX2fJNw2R3Op4=
=vaqH
-----END PGP SIGNATURE-----
[View Less]
Hello;
When i run reactor from thread in a synchrone python program, the twisted
code is never called.
To resolve this problem, I had to put a sleep.
def _reactor_thread(self):
if not self.reactor.running:
self.reactor.run(installSignalHandlers=0)
def _start_thread( self ):
self.client_thread = Thread( target=self._reactor_thread,
name="mine" )
self.client_thread.setDaemon(True)
self.client_thread.start()
from time import sleep
…
[View More] sleep( 0.5 )
What is the best way to do it, instead of calling sleep?
Thank you.
Abdel Halim
[View Less]
Hi buildbot infrastructure maintainers,
I am intending to retire my buildslaves (bot-idnar-debian and
bot-idnar-debian64) upon release of jessie (Debian 8.0). The proximate
cause for this is planned changes for the machines currently hosting
the slaves; but given the current situation of Twisted's buildslave
infrastructure, I don't think they're providing much value at this
point, so restoring them after my infrastructure changes doesn't seem
worth it.
I took a look at the buildmaster …
[View More]configuration, however I couldn't
really figure out how to unentangle them since they're currently only
being used for somewhat esoteric builders. Can someone else figure
this out for me? ;)
--
mithrandi, i Ainil en-Balandor, a faer Ambar
[View Less]
Hi,
The coding standard contains:
"Comments marked with XXX or TODO must contain a reference to the
associated ticket."
-----
Are there more hints about how to write XXX/TODO comments or how not
to write them?
Instead of
XXX: If the client makes arbitrary CTCP queries,
this method should probably show the responses to
them instead of treating them as anomalies.
is this new comment better?
FIXME:7560:
Add code for handling arbitrary queries and not treat them as
anomalies.
------
…
[View More]Maybe we can update the styleguide with an example of a bad TODO
comment and a god TODO comment.
---------
For my project I use a specific marker for TODO comments so that it
much easier to automate some checks.. (ex no comments for closed
tickets are left in the code) or provide a list with
TODO/tech-debt tickets.
What do you think?
--
Adi Roiban
[View Less]