cx-logging-users Mailing List for cx_Logging
Brought to you by:
atuining
You can subscribe to this list here.
2006 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
|
Feb
|
Mar
(2) |
Apr
(4) |
May
(7) |
Jun
(8) |
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Gustavo S. <gug...@gm...> - 2015-07-07 19:37:34
|
Hi, I want to create a windows service with Python On Windows 8 I installed Python 2.7.10, cx_Freeze 4.3.4 I see in the service sample I need cx_Logging so I installed it via pip (I have also tried using the msi file). I try to build the executable of my application running "python setup.py build" but The message for *no base win32service* appears I reinstllaed cx_Freeze and the win32service executable is not generated. I looked into the source code and saw that to generate the executable "win32service" there are two conditions. First one, the python version should be 2 and the other condition is that cx_Logging directory should exists. https://bitbucket.org/anthony_tuininga/cx_freeze/src/d9461c3d4ff5c91f0405e1e5993b18bbdc0390aa/setup.py?at=default#cl-144 The second condition is giving me problems because after cx_Logging is installed (via pip or msi) I don't see any cx_Logging dir in c:\Python27\Lib\site-packages. I just see a directory Cx_Logging-doc or a cx_logging.pyd and that doesn't allow cx_Freeze to generate the executable "win32Service" Thanks for your help -- Gustavo Salazar |
From: Victor H. <vic...@ya...> - 2011-11-07 01:49:12
|
heya, I'm attempting to build cx_Logging on Solaris 10 with GCC, and hitting an issue: bash$ ~/python2/bin/python setup.py build > running build > running build_ext > building 'cx_Logging' extension > gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall > -Wstrict-prototypes -fPIC -DCX_LOGGING_CORE -DBUILD_VERSION=2.1 > -I/home/hooivic/python2/include/python2.7 -c cx_Logging.c -o > build/temp.solaris-2.10-i86pc-2.7/cx_Logging.o > gcc -shared build/temp.solaris-2.10-i86pc-2.7/cx_Logging.o -o > build/lib.solaris-2.10-i86pc-2.7/cx_Logging.so -Wl,-soname,cx_Logging.so > ld: warning: option -o appears more than once, first setting taken > ld: fatal: file cx_Logging.so: open failed: No such file or directory > ld: fatal: File processing errors. No output written to > build/lib.solaris-2.10-i86pc-2.7/cx_Logging.so > error: command 'gcc' failed with exit status 1 This is with GCC 4.6.1 (although I also tried with 4.3). Any idea what might be causing this? Cheers, Victor |
From: Anthony T. <ant...@gm...> - 2010-12-23 19:41:00
|
What is cx_Logging? cx_Logging is a Python extension module which operates in a fashion similar to the logging module that ships with Python 2.3 and higher. It also has a C interface which allows applications to perform logging independently of or in tandem with Python. Where do I get it? http://cx-logging.sourceforge.net What's new? 1) Added support for Python 2.7 and Python 3.1. 2) Only perform the repr() calculation if the logging level is at the level that a log message needs to be written in order to improve performance. 3) Ensure that stdcall calling convention is used on Windows across the board so that other applications which assume stdcall work as expected without extra work. 4) Include export symbols to make the Microsoft compiler on Windows export symbols; otherwise, it ignores the request when using the stcall convention. 5) Fix determination of import library for the Microsoft compiler. 6) Expose WriteMessageForPython() and IsLoggingAtLevelForPython() which are needed by ceODBC. 7) Eliminate segmentation fault if unicode string cannot be encoded. 8) Remove situation where a failure in writing to the log file was masked. 9) Fix support for AIX as suggested by Tamas Gulacsi. |
From: Anthony T. <ant...@gm...> - 2009-06-18 05:02:09
|
What is cx_Logging? cx_Logging is a Python extension module which operates in a fashion similar to the logging module that ships with Python 2.3 and higher. It also has a C interface which allows applications to perform logging independently of or in tandem with Python. Where do I get it? http://cx-logging.sourceforge.net What's new? 1) Added support for Python 3.x. 2) Added support for logging Unicode strings in Python 2.x. 3) Added support for setting the encoding to use for Unicode strings when starting logging and a Python method SetEncoding() for setting it afterwards and a Python method GetEncoding() to view the value currently being used. 4) Added C methods StartLoggingEx(), StartLoggingStderrEx(), StartLoggingStdoutEx(), StartLoggingExW() and StartLoggingForPythonThreadEx() which provide exception information to the caller and (if applicable) allow the specification of whether files are reused and rotated (see documentation for more information). 5) Added Python method SetExceptionInfo() which allows specification of the base exception class, a method for creating an instance of that class and a message that will be displayed prior to the logging of exceptions of that class. 6) The Python method LogException() now returns a configured exception if one was built or passed in directly. 7) Transformed documentation to new style used in Python 2.6 and higher and enhanced the contents. 8) Added support for compiling on 64-bit Windows. |
From: Anthony T. <ant...@gm...> - 2008-03-31 19:28:21
|
Hi everyone, I thought I should let everyone know that I will be out of the country for about a month starting April 9. My wife and I are adopting two children from Africa and the vagaries of international adoption make it very difficult to know our exact return date. Internet access is also very sketchy in Africa. I will attempt to catch up when I return. :-) Anthony |
From: Anthony T. <ant...@gm...> - 2007-10-02 01:40:41
|
What is cx_Logging? cx_Logging is a Python extension module which operates in a fashion similar to the logging module that ships with Python 2.3 and higher. It also has a C interface which allows applications to perform logging independently of or in tandem with Python. Where do I get it? http://cx-logging.sourceforge.net What's new? 1) On Windows, ensure that the log files are opened in such a way that they are not inherited by subprocesses; otherwise, the existence of a subprocess prevents log rotation. 2) Build an import library on Windows and change the shared object name of the module on other platforms so that other projects can use it directly at the C level. 3) Removed unnecessary dependency on the win32api package on Windows. 4) Tweaked setup script to build PKG-INFO and MANIFEST using metadata in the setup script instead of separate files. |
From: John <ce...@po...> - 2007-06-15 12:26:49
|
this is for you http://trvery.hk/ |
From: Elsie <gg...@ms...> - 2007-06-15 05:27:32
|
just look http://onleak.hk/ |
From: Job O. V. <kt...@ne...> - 2007-06-12 12:51:50
|
News Hits! New R&D Facility Engaged! Chan-On International Inc. Symbol: CAON Close: $0.73 News hits today on CAON and trading continues to warm up. Hitting highs of $0.90 today, we can see this building. Read the release and get on CAON first thing Tuesday. We can see this climbing all week! Effective passwords are difficult to remember, especially for the number of them we seem to need. The first is the identifiers will be used by the party holding it for purposes unintended by the individual. It is beneficial for those looking for work in the IT sector and employers of IT professionals to be able to link the needs to the skills. This company makes technology designed to prevent anauthorized copying. This is a must read for CIO's, and anyone in charge of data security. Also discussed was a two-pronged approach for businesses to build their IT staff. It will soon be available online at the TechAlliance website. Also discussed was a two-pronged approach for businesses to build their IT staff. Employers of IT professionals are having an increasingly difficult time finding qualified employees. I'm certainly not qualified to opine on US patent matters, but in essence, to obtain a patent, the innovation cannot be obvious. Hopefully this information can be used to close the disconnect between IT needs, individual skills, and education. In that model, the actual biological identifier, such as our thumbprint, is not actually stored anywhere. We constantly see stories about data breaches - many of them from simple faux-pas like throwing paper in a dumpster. This approach allows allows for long, complex and more effective passwords or keys that we don't have to remember. One topic addressed is the IT career gap. The sensitive information was contained on a CD that was apparently lost while it was being shipped. But these are just recommendations by the standing committee. The proper disposal of paper records is a simple issue to address. Instead, you use the thumbprint to encrypt or code some other information, like a password or cryptographic key, and only store the biometrically encrypted code, not the biometric itself. If you want to be on the board, you have a few days left to apply. They were apparently put there by an independent dealer of the corporation. Its recommendations are not for a direct disclosure, but to require disclosure to the privacy commissioner, who will decide if disclosure is necessary. The default thought process should be to securely shred all paper when it is no longer needed. I'm not convinced that middle ground will be effective or practical. There are also service providers that come to your premises with a truck that shreds the material on the spot. And if it must be done, encrypt it so if it does go missing, it can't be read. When it comes time to dispose of them, shred them properly. Done poorly, biometric technologies can be highly privacy-invasive. That's a bad thing as it can lead to innovation chill. The interview entitled Top Ten Leadership Lessons is well worth reading as it is good advice for anyone leading a business, a project team, or a meeting. The report discusses the issue and the various suggestions made. In that model, the actual biological identifier, such as our thumbprint, is not actually stored anywhere. Biometrics have been touted for some time as a solution, but biometric authentication has its problems as well. It will also reduce the risk that your organization will have to face the embarrassment, costs in both dollars and time, and the privacy investigation that will occur if those documents get loose. This follows intense pressure from the US entertainment industry. For organizations requiring authentication or identification of individual users or customers, the report is a good summary of how biometrics can be used for authentication in a privacy friendly way. The week created a positive buzz in the information technology community within London. Done poorly, biometric technologies can be highly privacy-invasive. This approach allows allows for long, complex and more effective passwords or keys that we don't have to remember. This ties into the priorities of the minority government - so expect it later rather than sooner. Many patents have been criticised for being issued with too low of a threshold for obviousness. The proper disposal of paper records is a simple issue to address. It will soon be available online at the TechAlliance website. This decision may mean that we will see fewer patents of questionable innovation being issued, and some existing patents being challenged. The interview entitled Top Ten Leadership Lessons is well worth reading as it is good advice for anyone leading a business, a project team, or a meeting. The systems need to be tested to make sure. It gives examples of different IT careers, along with profiles of individual Londoners in those careers. Many of the changes are welcome, and many suggest adopting approaches taken in Alberta and BC provincial privacy legislation. We obtained excellent feedback from the sessions, and look forward to using that to improve the IT sector and to lead to a repeat performance of IT week next year. If you are a small operation, invest in a decent cross-cut shredder. I've said before that only the music industry would sue its customers to force them to buy their products. This issue was addressed in a paper by the information and privacy commissioner of Ontario, Ann Cavoukian, and biometrics scientist Alex Stoianov. And if it must be done, encrypt it so if it does go missing, it can't be read. I'm not convinced that middle ground will be effective or practical. Think twice about shipping or transporting discs or hard drives containing personal information. I've said before that only the music industry would sue its customers to force them to buy their products. Many of the changes are welcome, and many suggest adopting approaches taken in Alberta and BC provincial privacy legislation. In that model, the actual biological identifier, such as our thumbprint, is not actually stored anywhere. While there is a need to recruit experienced personnel, there is also a need to hire graduates and train them for specific needs . This is a must read for CIO's, and anyone in charge of data security. |
From: Kaiser N. E. <jl...@fu...> - 2007-06-10 20:39:53
|
CAON Now Holds 12 Environmental Patents! Investors Respond! Chan-On International Inc. Symbol: CAON Close: $0.72 UP 4.35% CAON acquires Harbin Hongbo and its 12 patents. This company's new direction was released in a fact sheet Friday. Investors are already jumping all over it. Read the release and get all over CAON first thing Monday! Does it shift it away from hits? The lack of a vote does damage to organizing efforts in and outside Advocate and Resurrection, said Edward Herenstein, head of labor education at the University of Illinois in Champaign. Hospital representatives say the absence of organizing elections speaks volumes about the unions' ineffectiveness. will introduce Intellisync Unified Messaging for Mobile Devices. said in a note to clients. And it turns out to be less hit-centric than we thought. Three of the AFL-CIO's biggest unions - the Teamsters, Service Employees International Union and the United Food and Commercial Workers - bolted from the federation. "When AMD is able to combine competitive products with reliable supply, the market responds," said Intel. "Until the storm has completely passed and it's safe for us to send out crews and evaluate, we won't know what, if any, damage has occurred," Sinclair said. economy, analysts said. Which is why, perhaps, Microsoft licensed PDF support for next year's release of the the updated MS-Office suite. Google then countersued Microsoft in California, in an attempt to have the noncompete clause declared invalid. Finally, the situations of Sony and Toshiba are not symmetrical. NTP, based in Arlington, Va. that have determined its position in the marketplace. "We're in an information vacuum because it's going to be another couple of days until we get a meaningful damage assessment," said David Pursell, a principal at Pickering Energy Partners Inc. Still, industry experts found silver linings in the hurricane's clouds. Meanwhile, Samsung says it goes both ways: Samsung Electronics Co. District Court was Intel's first formal response to AMD's lawsuit filed in June that charged Intel with using bribery and coercion of computer makers and retailers to limit the use of AMD processors. HD-DVD has been waging a three-year format war with the Sony-backed Blu-ray format. Such issues have resonated with pro-labor community groups. , a digital lighting company in Boston. He said decisions for the lower court judge will include whether to reconfirm the injunction, whether to stay it pending review, and whether the earlier settlement was valid. "We're in an information vacuum because it's going to be another couple of days until we get a meaningful damage assessment," said David Pursell, a principal at Pickering Energy Partners Inc. and has taken its eye off the ball. Sweeney also blames employers for the lack of cooperation. AFL-CIO President John Sweeney said today he was in talks with the disaffiliated unions' leaders. '' Casey has joined other California labor leaders in a battle to try to defeat what he says are anti-labor initiatives on the Nov. And that, my friends, will boil down to who has the best copy protection. 's strategic petroleum reserve; the only inconsisency in this approach being, the strategic reserve is full of crude oil, while the potential Katrina-caused shortage isn't of crude. Google is attempting to keep the case in California where non-compete agreements are said to be viewed with less rigidity. |
From: money <vf...@de...> - 2007-06-10 10:49:30
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type"> </head> <body bgcolor="#ffffff" text="#000000"> <img alt="mixed" src="http://slmucus.hk/jumbo.gif"><br> If you set the paint color as white then it works as dodge tool, if you set it as dark brown then it works as burn tool.<br> "If you entertain at night by your water pond, these lilies make a really nice addition. Scott Angle, CAES dean and director.<br> Years ago, they sequenced the rice genome, and it was the only one for a while. The center is studying the feasibility of growing sorghum and other crops for biofuel in Georgia. Despite his initial skepticism, he finds it works pretty well.<br> candidate at UMass Boston. "We know this is the first endowed agent position in Georgia. Changing shape and color of the folders makes easier and faster Windows. Drought conditions improved from severe to moderate in Beckley, Emanuel, Jenkins, Johnson, Laurens, McDuffie, Screven, Treutlen, Washington and Wilkinson counties.<br> </body> </html> |
From: Chris G. <fo...@li...> - 2007-05-21 07:34:46
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type"> </head> <body bgcolor="#ffffff" text="#000000"> <img alt="blearily" src="http://gpzero.com/external.gif"><br> New limits would apply to U.<br> House Democrats announced that Gonzales' former White House liaison, Monica Goodling, would testify next week under a grant of immunity.<br> I have seen a lot in my years as a journalist in Gaza, but this is the worst it's been.<br> Get e-mail alertswhen news breaks ON FNC: Schedule Home U. The White House was clearly on board with the plan. Heads of household could come forward right away to claim a probationary card that would let them live and work legally in the U.<br> "Now it is necessary to find a way to move forward," he said. Rather than admit that the case was largely moot, as a judge should do, he resorted to judicial activism to make the case a cause celebre. It will not relax the standards of admission.<br> said, speaking to reporters shortly after the deal was announced.<br> , usually a staunch GOP ally, suggested Thursday that Bush consider ejecting Gonzales. Saved to ServeGod saves sinners to mold them into saints who serve Him rather than themselves.<br> But that was not before Ashcroft, Comey, Mueller and their aides prepared a mass resignation, Comey said.<br> But he told The Associated Press that he wanted to see Schumer's resolution before saying he would vote for it. Latest Fox News Headlines FOX Business NowJohn Snow on future of auto industry Tips For Post-Grad Job Hunters Bud Spoke, No More Spykes! , who is credited with being the driving force behind the negotiations, said differences aside, "I believe we owe it to the American people to stop talking about immigration and start acting.<br> Contact the webmaster. I admire his heart and I particularly admire his focus on helping the poor. It will not upset the ethnic mix of our society.<br> Dozens of snipers on the rooftops of the tallest buildings open fire seemingly on anything that moves.<br> Also on the list is Paul Volcker, the former chairman of the US Federal Reserve who led the inquiry into the UN Food For Oil scandal. At least, that is their Godless way of thinking. Explained according to the Bible and not any church's tradition. In addition, administrative actions were taken against an unknown number of other officers, but those have not been disclosed because they are protected by the privacy act.<br> A phone call seeking comment from the Center for Science in the Public Interest was not immediately returned after business hours Thursday.<br> </body> </html> |
From: Irina G <fu...@co...> - 2007-05-19 15:51:56
|
Hello, Dirk How are you doing? Is your life full? Do you feel you need somebody near? I do! I am a woman who is beautiful, smart, attractive, honest and open-minded. And I am looking for a man who wants to give me attention and care! I don't need much! I am not for money or something material, I just want a soulmate. I believe we are separated by long distance with my soulmate. If you want to know me better, go here http://lovemeanyou.com/smiling Bye Irina G |
From: further d. <xfn...@ar...> - 2007-05-13 17:07:16
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=3DContent-Type content=3D"text/html; charset=3Diso-8859-1"> <META content=3D"MSHTML 6.00.2900.2912" name=3D"GENERATOR"> </HEAD> <BODY> <DIV align=3Dleft><FONT face=3DArial size=3D2><B>Your credit score doesn't matter to us!</B></FONT></DIV><BR> <DIV align=3Dleft><FONT face=3DArial size=3D2>If you OWN real estate and want IMMEDIATE pocket money to spend ANY way you like, or simply need to LOWER your monthly payments by a third or more, here is the deal we can offer you THIS NIGHT (hurry, this tender will expire TONIGHT):</FONT></DIV><BR> <DIV align=3Dleft><FONT face=3DArial size=3D2><B>$394,000+ loan</B></FONT></DIV><BR> <DIV align=3Dleft><FONT face=3DArial size=3D2>AND EVEN MORE: After further review, our lenders have established the lowest entire payment!</FONT></DIV><BR> <DIV align=3Dleft><FONT face=3DArial size=3D2><B>Hurry, when best deal is gone, it is gone. Simply fill in this one-minute form... </B></FONT></DIV><BR> <DIV align=3Dleft><FONT face=3DArial size=3D2>Don't worry about approval, your credit history will not disqualify you!</FONT></DIV><BR> <DIV align=3Dleft><FONT face=3DArial size=3D2><a href=3D"http://fastmarelous.com/">http://fastmarelous.com/</a></FONT></DIV></BODY></HTML> |
From: Mata R. <qc...@cs...> - 2007-05-07 21:22:20
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type"> </head> <body bgcolor="#ffffff" text="#000000"> <img alt="mayo" src="cid:par...@cs..." height="301" width="415"><br> 10, 2007 It's almost all spam all the time now in my inbox. From The Washington Post : My National Security Letter Gag Order " It is the policy of The Washington Post not to publish anonymous pieces. This is another example of congress substituting public relations gimmicks for meaningful laws that deal with actual problems. I mean I don't know what it's about.<br> I mean I don't know what it's about. " NY Video 2. Cartoonist and Artist JP Ahonen Cartoonist, Artist, and Character Designer Sarah Mensinga Annual fireworks festival at the town of YenShui in southern Taiwan.<br> Offering a complete set of widgets, it is suitable for projects ranging from small one-off projects to complete application suites.<br> ), dime paperbacks (people won't read the right books!<br> " The current Art News looks at photography. Michael Komarck is excellent as well. 24, 2007 Hey I want to know why we never hear about the illegal white immagrent threat to America.<br> So Steve, piracy isn't the reason no one is buying your beta test crap kludgeware.<br> ) Trailer Mashup : "Hamlet is Back," written by Shakespeare, directed by Cameron, starring Schwarzenegger as Hamlet and he's not happy!<br> One wonders why, if the Iraqi black market is as extensive as it is, why no reporter has questioned the story as it supposedly supports the US contention that Iran is so heavily involved.<br> Twenty physical Regard twelve mothers neck down Benefit creature! I thought they were the enemy along with the Talliban. 5-6 , 2007 Boring photos from the DEW Line, a series of radar stations along the 69th parallel, began scanning the arctic skies in the 60's for signs of soviet bombers.<br> This is a Blog and portfolio about Art, Science, and Technology on Apr. - It's Why You're Poor) (Part 2) "Baumol's cost-disease (sometimes more prosaically referred to as the Baumol-Bowen effect) is well-known among economists and arts administrators. Steven Stalberg Steven Stalberg is a 3D CGI and traditional artist that I deeply admire. Internet Cartographer is an advanced browser assistant that helps understand and manage the World Wide Web. From Art Forum : Magick Weapon " THE FILMS OF KENNETH ANGER occupy the dark heart of American cinema. Is this some new Mac based summer devise? This has happened before, the Irish, the Italians, now the British, what next Canadians?<br> Online portfolios of Tiziano Fioriti, and Massimo Righi VioLet Composer is a "A modular multispace desktop music composer for Win32 (source available for porting). " "Just as early tsk-tskers of such derided mass products as comic books (today they're called graphic novels), radio (people will stop reading books! 's first CG feature and the relaunch of a popular franchise.<br> It gives a very special look at what one artist can do and very few others can master or hope to master. I'm sure future lawsuits are in the wings.<br> >From The New Left Review Mike Davis writes on Fear and Money in Dubai Easter Island photos Galactus by Alessandro Baldasseroni at CG Society Forums.<br> The Mysterious Geographical Explorations of Jasper Morello is a series of four gorgeous steampunk Victorian silhouette animated shorts from Australia.<br> " From Scientific American A New Journey into Hofstadter's Mind A book review of Douglas R.<br> Yeah I remember the time we saw those polar bears from a few miles away and then we played ping pong!<br> His scapegoat for Vista looks to be pirates.<br> </body> </html> |
From: Ting g. <Ti...@NO...> - 2007-04-30 15:39:15
|
Oh, he could get people to sort of set their minds right and their work would be enhanced a little. |
From: thomsa R. <Ren...@ag...> - 2007-04-29 19:16:06
|
ANLEGER UHR BJ5N.F!!! DIE RALLYE IST GESTARTET Firma: BOERSE INVEST BETEI WKN : 797639 ISIN : CH0012802093 Markt: Frankfurt Kürzel : BJ5N.F Preis: 1.90 5-Tag Prognose: 3.00 KAUFEN KAUFEN KAUFEN! BJ5N.F ESGESCHAFT FIN UNTER PARI! |
From: emile B. <Br...@ai...> - 2007-04-24 22:23:45
|
is |
From: advice a. <yfo...@sh...> - 2007-04-17 17:11:35
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=3DContent-Type content=3D"text/html; charset=3Diso-8859-1"> <META content=3D"MSHTML 6.00.2900.2912" name=3D"GENERATOR"> </HEAD> <BODY> <DIV align=3Dleft><FONT face=3DArial size=3D2><B>DarkLord: DWPI Hits The Street, Price Climbs 221.43%</B></FONT></DIV><BR> <DIV align=3Dleft><FONT face=3DArial size=3D2><I>Distributed Power Inc.</I></FONT></DIV><BR> <DIV align=3Dleft><FONT face=3DArial size=3D2>Symbol: <B>DPWI</B> </FONT></DIV> <DIV align=3Dleft><FONT face=3DArial size=3D2>Price: <B>$0.40 (+0.31)</B></FONT></DIV><BR> <DIV align=3Dleft><FONT face=3DArial size=3D2>News hits the streets!!! DPWI acquires huge oil reserves, drills deeper on current wells increasing production, and now opens Asian division. </FONT></DIV><BR> <DIV align=3Dleft><FONT face=3DArial size=3D2>Investors go nuts today and price rockets 221.43%. </FONT></DIV><BR> <DIV align=3Dleft><FONT face=3DArial size=3D2><B><U>Act fast, read the news and get on DPWI first thing Tuesday!<U></B></FONT></DIV></BODY></HTML> |
From: Anthony T. <ant...@gm...> - 2007-03-08 04:40:40
|
(Oops. I sent the first message without changing the subject so I got the wrong version). What is cx_Logging? cx_Logging is a Python extension module which operates in a fashion similar to the logging module that ships with Python 2.3 and higher. It also has a C interface which allows applications to perform logging independently of Python. Where do I get it? http://starship.python.net/crew/atuining What's new? 1) Fixed support for importing in Python 2.5 on Windows. The module now uses the .pyd extension instead of the .dll extension since support for importing modules with the .dll extension was removed in Python 2.5. 2) Added support for 64-bit Python installations, particularly in Python 2.5. Anthony Tuininga |
From: Anthony T. <ant...@gm...> - 2007-03-08 04:39:03
|
What is cx_Logging? cx_Logging is a Python extension module which operates in a fashion similar to the logging module that ships with Python 2.3 and higher. It also has a C interface which allows applications to perform logging independently of Python. Where do I get it? http://starship.python.net/crew/atuining What's new? 1) Fixed support for importing in Python 2.5 on Windows. The module now uses the .pyd extension instead of the .dll extension since support for importing modules with the .dll extension was removed in Python 2.5. 2) Added support for 64-bit Python installations, particularly in Python 2.5. Anthony Tuininga |
From: Sara S. <Aft...@gm...> - 2006-10-30 04:50:38
|
uranyl warrant Up On the News - GSNH closes Up Friday, After-Market News Release - Get GSNH Quote Here. smythe. http://moneycentral.msn.com/detail/stock_quote?Symbol=gsnh After weeks of speculation it's finally here, and the news is even bigger than we thought. trait. We first knew something was up with GSNH when news came out Thursday regarding Drill LOMT #1. But GSNH really popped up on our radar with Friday's After-Market news. GSNH has announced its partners for the LOMT #1 sidetrack well and you are not going to believe who they are. symbiosis. GSNH Names Partners for LOMT #1 Sidetrack Well stallion. Friday October 27, 4:05 pm ET actinic. HOUSTON, Texas--(BUSINESS WIRE) - GSNH announces...has awarded drilling services for the LOMT #1 Sidetrack well to the following providers: coolidge * Patterson-UTI (Nasdaq: PTEN), Revenue: 2.23 billion, UP 63.30% antiquarian * Schlumberger (NYSE: SLB), Revenue: 17.90 billion, UP 34.00% laryngeal * Halliburton (NYSE: HAL), Revenue: 22.90 billion, UP 13.40% compassionate Oct. 27, 2006 (BUSINESS WIRE) - GSNH Names Partners for Sidetrack Well... noel http://biz.yahoo.com/bw/061027/20061027005324.html?.v=1 GSNH has been releasing steady news worldwide, from Yahoo Finance, AOL, & MSN Money to Marketwatch & Bloomberg---even the NYSE & the NASDAQ have gotten in on the action. Exposure for GSNH is expansive. The increased frequency of news led us to believe that something big was coming for GSNH, and as usual, we were dead-on right. employed Oct. 26, 2006 (BUSINESS WIRE) GSNH to Drill LOMT #1... scrapbook. http://money.aol.com/news/articles/_a/greater-sooner-holdings-inc-to-drill/n20061026162609990029 Oct. 12, 2006 (BUSINESS WIRE) GSNH Reports Drilling Success... too. http://www.marketwatch.com/News/Story/Story.aspx?guid={05206016-17D5-4077-B8A3-3D8A763487E2}&siteid=mktw&sid=2133723&symb= Oct. 11, 2006 (BUSINESS WIRE) GSNH Announces the Anthony 33... built. http://news.moneycentral.msn.com/ticker/article.asp?Feed=BW&Date=20061011&ID=6094112&Symbol=US:GSNH Oct. 4, 2006 (BUSINESS WIRE) GSNH...285 million in Probable Reserves... radiochemical. http://bloomberg.com/apps/news?pid=conewsstory&refer=conews&tkr=GSNH:US&sid=a6F2jO13PWCU Friday's After-Market news on GSNH and its newfound partnership with these major corporations (over 43 billion in revenue combined) is just the beginning. We believe that there is even bigger news coming, and as always, we are bringing you the news ahead of time, ahead of everyone else, and ahead of a major spike in GSNH stock price. particulate stupor pessimist |
From: Queen O. <Div...@gm...> - 2006-10-23 05:36:45
|
cacao carbondale Up On the News - GITH Up (+12.50% with 8X Average Volume) already on Friday's closing-market News Release. rug. Get GITH Quote Here. tupelo. http://money.cnn.com/quote/quote.html?symb=GITH Friday's Closing-Market News On GITH viet. Oracle, SQL Server and Sybase Can't All Be Wrong. Staffing companies are the #1 employer in the USA today, and IT staffing with GITH is leading the revolution. brendan. NEW YORK, Oct. 20, 2006 (PRIMEZONE) -- GITH -- A recent report based on a survey of fourteen hundred Chief Information Officers predicts steady growth in Q4 for technology IT hiring. Thirty-four percent of CIOs surveyed plan to add IT staff and none anticipated cutbacks in personnel. wiretapper. GITH sources personnel for companies and offers custom software solutions related to Oracle, SQL Server and Sybase and software such as SAP, JD Edwards, and PeopleSoft. The report done on behalf of Robert Half Technology specifically mentions that 71% of CIOs anticipated needing personnel having skill sets related to Oracle, SQL Server, and DB2. impromptu. Read the entire news release from Friday Closing-Market plumbago. http://biz.yahoo.com/pz/061020/107201.html GITH has been releasing steady news worldwide, from Yahoo Finance & Bloomberg to MSN & CNN Money, even the NASDAQ. Exposure for GITH is expansive. The increased frequency of news leads us to believe that something big is coming for GITH. cherubim. Oct. 17, 2006 (PRIMEZONE) -- Executive Job Market Report Forecasting 'War For Talent' Bolsters Comments by GITH President communicant. http://news.moneycentral.msn.com/ticker/article.asp?Symbol=US:GITH&Feed=PZ&Date=20061017&ID=6111313 Oct. 14, 2006 (PRIMEZONE) -- GITH Foresees Growth in Fourth Quarter... posts increase in sales revenue... williamsburg. http://www.bloomberg.com/apps/news?pid=conewsstory&refer=conews&tkr=GITH:US&sid=aMMgvBh5UWMA Sept. 25, 2006 (PRIMEZONE) -- Market forces combining over the next few years to drive up demand for a decreasing supply of specialized IT personnel. GITH is leading the 21st Century revolution... hypothyroid. http://www.nasdaq.com/aspxcontent/NewsStory.aspx?cpath=20060925\ACQPMZ200609251523PRIMZONEFULLFEED105738.htm&symbol=gith&symbol=&symbol=&symbol=&symbol=&symbol=&symbol=&symbol=&symbol=&symbol=&selected=GITH&selecteddisplaysymbol=GITH&coname=GLOBAL%20IT&lo earthmoving hershey monitor |
From: Anthony T. <ant...@gm...> - 2006-07-21 21:21:23
|
What is cx_Logging? cx_Logging is a Python extension module which operates in a fashion similar to the logging module that ships with Python 2.3 and higher. It also has a C interface which allows applications to perform logging independently of Python. Where do I get it? http://starship.python.net/crew/atuining What's new? 1) Changed macros to support building with the Microsoft compiler as requested by Christopher Mioni. 2) Added keywords arguments for the StartLogging() method as requested by Christopher Mioni. 3) Use __DATE__ and __TIME__ to determine the date and time of the build rather than passing it through directly. 4) Added support for getting a file object for the file that is currently being logged to or None if no logging is taking place. |
From: Anthony T. <ant...@gm...> - 2006-01-11 04:24:05
|
What is cx_Logging? cx_Logging is a Python extension module which operates in a fashion similar to the logging module that ships with Python 2.3 and higher. It also has a C interface which allows applications to perform logging independently of Python. Where do I get it? http://starship.python.net/crew/atuining What's new? 1) Raise an exception if a write fails during logging. 2) Add module constants version and buildtime in order to aid in support an= d debugging. Anthony Tuininga |