query_id
stringlengths
4
64
query_authorID
stringlengths
6
40
query_text
stringlengths
66
72.1k
candidate_id
stringlengths
5
64
candidate_authorID
stringlengths
6
40
candidate_text
stringlengths
9
101k
8ac6f1ce-2b59-fa24-2eb8-bcab0906ac53
['7b03a045-2591-a564-5c8b-cfe8952f3ae2']
We had problems with our mail server. If you sent a response to my post, could you please resend. Thanks. I would look at Monkey Works but it is down. Does anyone know if 6.7.4 running on a server box with 4 processors is a problem? I have an installation that is having this problem, and they are the only ones I have that are running on a box that has more than one processor. Any insight would be greatly appreciated. <PERSON>
6b7d0220-ba88-fa4e-37c6-010bd6cab3a6
['7b03a045-2591-a564-5c8b-cfe8952f3ae2']
Help, Our support dept. is getting killed with users who upgraded Win2k, SP4 and now can not get our application (4D Version 6.7.4) to run. They start 4D client and enter their username and password. Within a few seconds the client just shuts down. The only way around this problem that we have come up with is to change their permission to the WinNT directory and as a last resort, rebuild their profile. Most users on Win2K, SP3 have full permission to the WinNT\4D directory and when they upgraded to SP4, those permission get wiped out. We first try to set them again but if that does not work we have them rebuild their profile. If that does not work we have them reinstall the OS. We have thousands of users who are NOT power users by any means. This makes this process not very fun. Is there anything I can do to give relief to our support dept. and get our users to be able to use our software? Thanks in Advance DaveC
30a93644-1f51-fe1d-4e19-d1f1be3eaf70
['7b15814c-ca48-0d58-78c7-4bb4f76c83c4']
Hi <PERSON>, A developer we've been working with noticed that there is no mechanism for iterating through the attributes on a node in the micro-DOM. You can iterate the elements with the sibling properties, but there is no equivalent of 'attributes' on a node. So you need to know what attributes are on a node or try to fetch every possible value for a given element to see if the attribute is present which is pretty horrible. If the prodigal son <PERSON> is to have a future, I'd suggest the micro-DOM add the NamedNodeMap interface supporting at least the 'length' property and 'item()' method, as well as adding the 'attributes' property to the 'Node' interface which gives at least the minimal functionality needed to support this case. Thoughts? <PERSON>
a22bdf64-4e3c-c854-e2a9-62dc006c293e
['7b15814c-ca48-0d58-78c7-4bb4f76c83c4']
Hi <PERSON> & All, When the WG was private all development by the group tended to be what the members themselves were interested in, rather than the community. As we became public and are now soliciting feedback from the outside world about what we should focus on, it would be great to keep focus on fast iterations, and what is of use to people in the real world for use cases that SVG just doesnt do (well or at all). Keep it Agile, aim for small chunks and don't get absorbed in the 'process'. From the past few years of observation, here is a short list of features that keep being asked for but are not yet addressed: 1) Non-scaling stroke. All SVG Tiny 1.2 viewers already implement this as part of the vector-effect module. Should be a no-brainer to add as a module for 1.1, rather than a 2.0 feature. 2) Shared-paths (super-path). Required for mapping and boundaries of countries etc. I can remember <PERSON> asking for this nearly a decade ago - this should be high priority IMO. 3) Adaptive stroking. Needed for cartography where the dashing always ends with a full length dash at the start and end of the stroke. So the borders of things look consistent - i.e. not chopped off. It requires the renderer to work out the length of the path and scale the dasharray appropriately. Been a part of HP-GL for decades, surely SVG should handle this; and relatedly: 4) Hatch-fill. Required for mapping again. If you have a large area you just want to fill it with a bunch of spaced lines/hatches etc. Pattern fill doesn't work since you get tiling problems. Easy to do in Postscript or HP-GL. Difficult in SVG. 5) Level of detail control. If we have a large data set, and we zoom, then level of detail control of what gets drawn is useful for _lots_ of use cases. 6) Text flow into arbitrary shapes. Flow charts, organisational charts, heck _lots_ of use cases. The WG designed this for years for 1.2 Full, Inkscape implemented it and then it vanished due to Mobile obsession or some other reason. I would really like to be able to shove some text into a diamond without pain. 7) Templating for controls (a.k.a widgets). Building a web app with UI components needs this. JonF's original 'Grand Unified' plan which begat RCC, sXBL, etc. and then vanished is a gaping hole in the spec. as is. Just the other day I wanted to build a scroll bar and polled "people that know" who advise me to use Javascript libraries. I can build Windows apps with all sorts of component controls, OS X apps with Interface builder etc. A templating mechanism for things that can be re-used would be nice. 8) Take a machete to the DOM. People complain and rightly so. The 1.2 Tiny micro-DOM didn't seem to tickle anyones fancy. So we need to address the DOM to attempt to keep people happy and make the web app developers life nicer. My own wish-list: 1) Arbitrary fill. e.g. specify video or an image as a fill paint source. Someone said this was just texture mapping, but it's not. Texture mapping is mapping a 2D thing onto a 3D surface using anisotropic scaling, mip-maps or whatever technique you like. What I mean here is still plain 2D. It would allow video for example be the fill of an object (nice for video fonts:-) Also an SVG image could be a fill. Most of this could be done with clip paths too, but it would be much easier to avoid the clip-path route since that is not as flexible since you could animate a rectangle/path etc. and then you're dealing with one object alone. From a model point of view I can't see why this should be difficult. 2) Flatten to image. For some use cases, a zillion paths or objects probably end up chewing memory and bloating the DOM for some special cases. So, it would be nice to have a primitive that takes the rendered output of arbitrary SVG and flattens it to an image so all you get is the pixels. Think of it like 'use', but the target of the use becomes a sprite with all it's efficiency of rendering, blitting etc. Access to the pixels of course is a logical extension of this; and so: 3) Hit-testing on image alpha. This has been asked for - but if we add it for PNG, then we could have the: <path> becomes <image> then you get hit-testing the same from the flattened to image version as with the original path data, only no DOM for the path(s) that made the original image. 4) Automatic fetch/discard sub trees. Thinking of the 'Big Data Set' like say all of openstreetmap.org, it would be nice to have a parent element like say <animation> that manages conditional zoom/pan to fetch and/or discard the child tree data. This is along the lines of the SVG Tiling module but more general. If we want to pan an SVG of the entire planet in detail, then the UA should be able to load content that declaratively says it should exist if you've panned within 'n' pixels of the viewport or have a specific user->device zoom level set. Then you can walk a tree of the world and only have relevant content in your DOM without ever resorting to script to manage it all. 5) Fluorescent colours/extended colour specifiers. At the moment we have the HTML colour names, rgb(,,) and ICC support. Extended colour spaces have been in mainstream O/S graphics libraries for quite some time allowing you to specify R greater than 1.0 (or 255 if you think 8-bit). It's high time we had high dynamic range colour in the stack. and many more. But of course pragmatism should rule, as with anything. Just my first rant at some things that could be nice. <PERSON>
fcfde344-c541-618d-4cd1-2cda0fbab2c0
['7b1f3d95-09a7-897e-b7e9-c09961e68b84']
I'm going to be building a Solr cluster and I want to have a rolling set of slices so that I can keep a fixed number of days in my collection. If I send an update to a particular slice leader, will it always hash the unique key and (probably) forward the doc to another leader? Thank you, <PERSON>
2196c04b-4fa6-aed5-45b8-9fb4b64c8df9
['7b1f3d95-09a7-897e-b7e9-c09961e68b84']
Hello! SpellingQueryConverter "parses" the incoming query in sort of a quick and dirty way with a regular expression. Is there a reason the query string isn't parsed with the _actual_ parser, if one was configured for that type of request? Even better, could the parsed query object be added to the response in some way so that the query wouldn't need to be parsed twice? The individual terms could then be visited and substituted in-place without needing to worry about preserving the meaning of operators in the query. The motive in my question is, I may need to implement a QueryConverter because I'm using a custom parser, and using that parser in the QueryConverter itself seems like the right thing to do. That wasn't done though in SpellingQueryConverter, so I wan't to find out why before I go blundering into a known minefield. Thanks! <PERSON>
2d5314ce-490b-e189-8c4a-8d6dfce244c2
['7b2ccebf-0760-ca08-b712-7eaf150e404f']
Hi, What are the exact steps and configuration to run multiple l3 agents. I have set separate config files with params gateway_external_network_id, router_id, external_network_bridge for each of them. handle_internal_only_routers is false for one and true for another. After I start the agents on the network node i see only one l3-agent when I run 'neutron agent-list' And when I set gateway for a router from horizon I get 'No eligible l3 agent associated with external network 808e4532-122b-4211-a67f-42ca071c248d found'. Please help me. Thank you, <PERSON>
a52b3ded-4a70-d516-6f89-5ba6441077b4
['7b2ccebf-0760-ca08-b712-7eaf150e404f']
Hi, I am facing a strange issue where in juno, creating a router does not create a namespace. I even attached router to subnet and set external gateway and still nothing happens. The router's ports are in 'down' status and they are not seen when i do 'ovs-vsctl show' use_namespace is True in l3-agent.ini. ip netns shows only dhcp namespaces. Can anyone point me in the right direction? What am I missing? Thank you, <PERSON>
8d3f2c7c-4137-26d9-ba4f-009e4046b74d
['7b35c114-a79a-9308-e761-6e68e4877ea3']
Hi all, Sometimes when I connect to servers I get to listen to music files, during the "Downloading security module" screen. How is this done ? I would like to install that on my server as well. I'm running Adminmod and Statsme, do I need optional plugins/mod's for this to happen ? Hope someones knows how this is done :) Regards, <PERSON>
a971591a-a551-c7ef-3c62-510bfd1dedce
['7b35c114-a79a-9308-e761-6e68e4877ea3']
Hi all, Me and some friends want to buy a server and want to run a couple of Counter-Strike 1.6 servers on it for our own usage. We have the following confings in mind: 1. AMD Athlon 64 4000+ S-939 2 GB DDR 400 RAM 80 GB S-ATA hdd MSI K8N Neo4 Platinum Debian 64 bit (OS) 2. Intel Pentium 4 550, 3.40Ghz,800Mhz,1Mb,S-775 2 GB DDR 400 RAM 80 GB S-ATA hdd Intel D925XECV2LK Debian (OS) 3. Dual Intel Xeon 3.0Ghz, 800Mhz, S-604 2 GB DDR 400 RAM 80 GB S-ATA hdd Intel SE7320VP2 Debian (OS) Now, can anyone tell me which system is the best and can run the most player slots on it. We are all adults, so money is no problem, we just want to have a nice server together and play on it! Our goal is to run at least 48 slots on it, but we prefer to run 96 on it, so we can have multiple public servers, without lag if possible. If anyone has experience with this, please let me know :) Kind regards,
41c1c530-98e7-486a-8b98-e3b7cbb6d0c1
['7b49b72b-2b26-4d37-3a13-f6db341850f5']
I discovered it only leaks memory when using ccylinders for the wheels. Doesnt happen with spheres. This is against a trimesh ground. I tested this out after reading an article here: http://www.blitzbasic.com/Community/posts.php?topic=52572 Where they mentioned a ccylinder trimesh memory leak. For now i am using spheres, and there is no leak now. Why do ccylinders leak memory on a trimesh? Thanks, <PERSON>
5f53dd17-3768-5af8-72ea-055848cf58fe
['7b49b72b-2b26-4d37-3a13-f6db341850f5']
Hi everyone, Just generating a little publicity for my game, Automanic. Which has just hit 0.2. Automanic is a vehicular deathmatch game, hoping to become the best of Burnout, Carmaggedeon, Twisted Metal, and a whole lot of other games. Check it out at http://automanic.sourceforge.net and screenies at http://sourceforge.net/project/screenshots.php?group_id=161703 This release uses python, so you'll need swig installed before you compile crystal space and cel. There is also a static binary available. Regards, Christopher.
06fe1c79-b453-22f9-34c4-24cbe77eec2b
['7b49c378-7652-7b01-71ad-43d43e09b57c']
<PERSON> apologize for contacting you directly on this, but there doesn't seem to be much interest from anyone for answering any questions on the recycle bin module. I'm hoping you can help. I need to configure the recyle bin to function as it did (before V. 2.2.4/5) with the patches from <PERSON>. <PERSON>'s version allowed me to configure samba to move deleted files to a directory located on a separate disk where they were stored under a sub-directory named after the user. This directory of deleted files could then be shared as a Recycle Bin" share where the user could then do whatever they wanted with the files. This provided a more centralized configuration of the recycle bin. Can you provide me with information on how to configure the recycle bin module to provide the same functionality as described above? Thanks <PERSON>
d1071914-0c77-9e64-ad7b-7f97f981f32a
['7b49c378-7652-7b01-71ad-43d43e09b57c']
Sol 2.8, Samba 2.2.5 I have an hp1220c printer setup on port 2 of a 3 port hp 500x print server. There is also a hp6mp printer on port 1. I've added the hp6mp printer to my client without problems. But when I attempt to add the hp1220c I get a "could not connect to the printer" error message. If I right click on the printer when browsing with "Add Printer Wizard" a message is displayed on the status bar that states "Printer error: The data area passed to a system call is too small.". Can anyone help with this problem? <PERSON>
bba45049-4703-b879-fcf8-11bd6fe0fb9f
['7b4ca961-b6ab-8519-11f0-4251711db624']
Hello, In the current SVN repository are 76 .cvsignore files. In SVN they aren't used any more. SVN uses the property 'svn:ignore' on a directory instead. During the cvs => svn transition the svn:ignore properties were set but in the recent weeks they started to diverge. Currently (r8078) 22 .cvsignore differ from svn:ignore (see attached cvsignore.diff) I think we should remove .cvsignore files entirly. Comments <PERSON>
50b186d5-d171-9d3c-da2a-584604f00ad8
['7b4ca961-b6ab-8519-11f0-4251711db624']
Hi, I just found the scheme implementation https://bitbucket.org/pypy/lang-scheme/ but there is no history besides the initial import. Is this maintained? I.e. is it usful to send patches for improving this? And is this the right mailing list for asking questions about lang-scheme? Anyway, I played a little with it and found one annoyance: The translated parser does not report the position of the parse error. There was something prepared, but commented out (I think because it didn't translate). By adding an assertion to pypy/rlib/parsing/makepackrat.py I was able to get scheme translated including the error location. This greatly simplifies debugging ;-) I attached the two patches (one to pypy/pypy and one to pypy/lang-scheme) Any comments <PERSON>
125e4523-a0ad-a87a-1abd-30f19ca35d77
['7b644f15-4e3e-7081-1a5f-a5c71a3d49ca']
hi guys, if i want to install something else on a centos box that i didnt install initially what do i type to initialize that program (and get the install from the cd rather than the net). i ran into a problem with a VM that only has limited space and rather than installing another VM with a larger harddrive if possible i would want to just install the package from the cd. <PERSON>
6ce04b0e-8c66-fd3e-a837-d864bf6be467
['7b644f15-4e3e-7081-1a5f-a5c71a3d49ca']
Hello Everyone, I'm new here, and was hoping someone has had experience with setting up Mediawiki on a Centos box; I'm pretty new to Centos and mw and have been doing so much googling my hands hurt, but am still having problems with upgrading my MediaWiki to the latest version cleanly... im trying to get our company wiki a few more features but not sure if i'm on the right track. i have a few questions in mind, like 1. should i be using the centosplus repo? i saw that there was a mysql-devel package there, im not really sure but does that mean its still under development and not a stable release? (im using centos 4.4) 2. will testing on vmware be any different than testing on a production box? (i highly doubt it but i just want to be sure) 3. could it be that mediawiki is buggy with certain plugins / extensions; oh i wish i knew how to debug something liek this but its just so time consuming... can anyone give me a few ideas to play with? <PERSON>! <PERSON>
4d845058-a74d-48df-87e5-e83b0f8b5748
['7b68b4cb-bad0-4fec-739b-6d558938beca']
Hi, i published a layer with geoserver 2.1.0. by default i choose the style polygon, after using it in a map panel. By clicking on a bouton i want to change just the sld of the layer not the layer. i used layer.mergeNewParams({viewparams: ...) to change the url, now i want to change just the sld thanks
fc12c198-f382-db2b-cd52-91503eb18a4d
['7b68b4cb-bad0-4fec-739b-6d558938beca']
Hi, i would like to create an sld with Graduated Symbols (differently sized points) like this : http://osgeo-org.1803224.n2.nabble.com/file/n6412682/sld_point.jpg the number of sick people is in the field named: "nbre_sick", i want to use 5 classes 0-1000, 1000-2000, 2000-3000 and <PHONE_NUMBER> How can i do it, please ? i don't know how can i code it, i know where to place the code. like the http://cartes.georezo.net/, when the scale change the size of the symbol became bigger, how can i do like the image ? thank you
74f1a21c-257c-c05f-3b17-974cf8204a79
['7b6c83a8-4d56-2ed4-7fcf-b8aacd3b0ad2']
Forgive me for sharing this, some of you may be upset... But after an occasional search over the past five years I found my data cable by accident. My wife claims I have too many wires stashed around the house. She may be correct. I just wanted to share my good luck. <PERSON>
01532c3a-00ec-a864-3a64-23ac13609884
['7b6c83a8-4d56-2ed4-7fcf-b8aacd3b0ad2']
I have noticed that my computers will cause the scanner to stop on certain frequencies. The laptops more so than the desktops. I have noticed that what is showing on the laptop screen has an affect on the scanner. In most cases moving the radio away from the computer resolves the problem. <PERSON>
37b707c8-29b5-4aaf-8695-577597583f1d
['7b78fa8e-c96b-abe0-3557-c60027500b91']
Hi I have cups working on my printer, I can acccess it with the web browser http://192.168.33.1:631/admin. This is also http://localhost:631/admin I have tried modify the cups config file but am unable to configure my second linux machine http://192.168.33.8:631/admin. The machine I am accessing it from is 192.168.33.1 (the machine the printer is connected to. I get forbidden. I have amended the config file on the mqachines but nothing seems to work. Is there a log I can look at? <PERSON><IP_ADDRESS>:631/admin. This is also http://localhost:631/admin I have tried modify the cups config file but am unable to configure my second linux machine http://<IP_ADDRESS>:631/admin. The machine I am accessing it from is <IP_ADDRESS> (the machine the printer is connected to. I get forbidden. I have amended the config file on the mqachines but nothing seems to work. Is there a log I can look at? Chris Robinson
ffba11f5-6a37-9058-ba6b-ff5be1e4add9
['7b78fa8e-c96b-abe0-3557-c60027500b91']
Hi I do not have web browser on localhost. How can I access the Cups web interface via the network? I have had this problem on RedHat and now I am on Debian. I have looked through the cupsd.conf file but I do not seem to be able to achieve this? Regards <PERSON>
9aa31ac4-697a-61cb-8ede-9c52495cb353
['7b7a9b14-fd9e-1d86-e40e-53252aaf3e79']
My company wants to use MediaWiki for internal documentation. They would like to separate how projects are physically stored in the MediaWiki structure. For example instead of all files being listed under the root structure, can I create a new project folder for each project and have files be placed in their respective projects? Is this possible? Thanks <PERSON>
39b5a1af-9213-77a7-d3b3-d0d3dd23e188
['7b7a9b14-fd9e-1d86-e40e-53252aaf3e79']
I have created a Spellchecker that is working great on my local Intranet. There are still some things that I need to do. * Check for any security vulnerabilities, I think there are some major XSS stuff. * Clean up the documentation. Other than that it is functional. Take a look at my wiki for more information on it and send me some feedback with your thoughts and suggestions. http://mcintosh.cjb.net/wiki/index.php/Spell_Checker#How_it_works Thanks <PERSON>
9c4dc406-7c1c-78e7-0d35-ee023ece2f6a
['7b8ea79f-b6ea-5880-7317-cb6ef2bd2b8f']
Hi, I'm pushing a web app to GitHub and it's working OK for the project. The .war file generated by the clean and build is not included in the project when I push to GitHub. I have not been able to get it to "Add". Anyone know how to get the Git Push to include the /dist/WebApp.war file? Thanks! <PERSON>
4f1dfe37-ea3b-cc78-f867-4784618f3724
['7b8ea79f-b6ea-5880-7317-cb6ef2bd2b8f']
I have a pre-NetBeans 7.01 web application originally using java 6. In the project properties I have the compiler set to Java 7 and I'm using Tomcat 7.0.14. When I add Java 7 code (a switch statement using strings) It won't compile and I get an error saying that "You can't use String types in switch in -codebase 1.6, you must use -codebase 7 or greater." Any idea how to use Java 7 features in an existing Java 1.6 project? Thanks! <PERSON>
a6ac0cce-8a63-1d8c-b245-7cf8c5f63145
['7b8eaa69-b70d-68e8-da78-1b70338fdd69']
I am running a Samba server on Debian testing. Each day, I run an automatic update via apt. Up until recently, the server was working fine; I am assuming that the update has upgraded to a non-working version. I can log onto the server using smbclient and browse the files, but when I issue a "get" command I get the "Short read" error message. If I use smbmount, things are worse: The directory mounts but I cannot browse it or unmount it. Accessing the directory from a Windows machine provides a similar effect to smbclient: I can browse the directories but accessing the files does not work. Has anybody experienced these problems or know a solution for them? <PERSON>
c2f507b8-3d6a-d325-b604-7ad2f5043441
['7b8eaa69-b70d-68e8-da78-1b70338fdd69']
I am running debian testing on my home firewall/putative print server. Running a fairly routine apt command to download gs-common, my installation of dpkg has become rather unhappy. A forest of segmentation faults greets me when I try and run apt-get -f install or apt-get remove on gs-common. I can manually dpkg -r gs-common but that does not improve apt's opinion on the matter, or indeed eventually allow me to properly install gs-common. The problem comes from the update-alternatives command, which gives an instant segmentation fault when run from the command line. I've tried doing a straight replace from a working Debian installation to no effect so there's obviously something more profound that's wrong. Does anybody have any experience with reinstalling dpkg from scratch without having to reinstall the whole OS? All the other stuff (ppp, samba, iptables and so on) seems to be working fine. I've tried replacing from a .deb but that hasn't helped. It would be disappointing to have to reinstall, which seems a very Windows solution. I also don't have much evidence to show that it won't barf again... <PERSON>
2739d014-c121-529c-1411-b21c13177d62
['7b9002bb-24df-a212-eaf1-2666256953dd']
This afternoon, the city council of Munich, Germany, announced that they plan to move 14,000 PCs and 16,000 users from Windows to Linux, in a move to make Linux their standard desktop operating system environment. The City of Munich's decision comes on the heels of reported efforts from Microsoft to win this business, including a visit from executive <PERSON> to the Mayor of Munich, as well as press reports of significant discounts from Microsoft in order to win against Linux. Although the council has not made a decision on its choice of vendor, Linux distributor SuSE AG and IBM Germany will participate in the resulting contract bid, expected to begin in 2004. The City of Munich's move to Linux builds on the momentum that IBM is seeing around Linux in Germany. IBM already has contracts with the German Governments of Schwaebisch Hall and the City of Dortmund. And worldwide, more than 75 IBM government customers - including agencies in France, Spain, UK, Australia, Mexico, the United States and Japan - have now embraced Linux to save costs, consolidate workloads, increase efficiency and enact e-government transformation. Today's decision is more evidence that Linux is a powerful alternative to proprietary systems. Pasted below is (1) the Munich Council Press Statement (translated) and (2) a statement from IBM Germany. Cheers, <PERSON>
9e981d8c-c2da-b270-7ad8-05e889134a17
['7b9002bb-24df-a212-eaf1-2666256953dd']
If any of you fine folk has a "bad" MS Word file that causes problems with OOo or SO, and you don't care if part of it shows up in a screenshot online, please forward me a copy. I need them to put SO 7 through its paces. Same for spreadsheets and presentations, actually. Thanks.
63281257-0b48-e158-d6a6-538adba8d17c
['7ba9f887-1e9f-1104-90bf-85881e5cd4fa']
Hi, I just upgraded from ML to Yosemite and was reinstalling my ports. I had T5zZIy+PbF3pn261@example.com_0+vde2+vnc on ML working fine but I am not able to install it on Yosemite. Building virtualbox on Yosemite pulls in these dependencies: ---> Dependencies to be installed: LibVNCServer jpeg libpng apple-gcc42 cctools cctools-headers llvm-3.5 libcxx llvm_select ld64 curl libidl libsdl xorg-libXext xorg-libX11 xorg-kbproto xorg-libXau xorg-xproto xorg-libXdmcp xorg-libxcb python27 db48 db_select python_select sqlite3 xorg-libpthread-stubs xorg-xcb-proto xorg-xextproto xorg-libXrandr xorg-randrproto xrender xorg-renderproto pkgconfig qt4-mac dbus libmng lcms tiff vde2 autoconf m4 automake libtool and then fails on apple-gcc42: Error: apple-gcc42 is not supported on Yosemite or later. Then I remembered about the ticket https://trac.macports.org/ticket/41392 which I guess still stands for Yosemite. Do I understand it correctly that at the moment virtualbox port is not available on Yosemite? Thanks, Kastus
03e33622-613f-febb-a346-2314d136661b
['7ba9f887-1e9f-1104-90bf-85881e5cd4fa']
I attempted to install ledger on yosemite (10.10.5) but it failed. I found ticket https://trac.macports.org/ticket/47597 with a log which looks very similar to mine. The ticket contains a patch which does not seem to be committed to the port yet. Please excuse my ignorance, but how do I apply this patch? Thanks, <PERSON>
e3c441bb-0c77-9b03-3627-b0f908647c48
['7bc7ac6e-030a-8342-4f03-d0caed92ef3e']
Could anyone confirm my findings or is this a bug/misuse I am experiencing. Assume you have a consumer that handles messages from a producer. This consumer also sends heartbeats to some surveillance service at regular intervals. A producer sends messages to this consumer in such a pace that the amq broker queue gets full and producer throttling starts, usagemanager.waitforspace, 100% etc. Now if a heartbeat is sent while the producer is temporarily blocked everything stops!? The consumer handles the already received 1000 messages (prefetch) but is not given any more since the broker thinks that messages are not acknowledged, though it seems so.. Why is the message dispatching stopped in this case / messages not being acknowledged? The consumer has one connection, two threads and two sessions. Regards <PERSON>
73e2521d-bee2-b152-e0c6-0bfb1d126a90
['7bc7ac6e-030a-8342-4f03-d0caed92ef3e']
Hello, I see that the nms project activity have increased the last week(s), thanks very much <PERSON>. Are there any estimates on code updates in svn.apache.org/.../activemq-dotnet/trunk or is the intention that everyone should apply the patches themselves? commit to trunk? how about a tag when we have something more stable? Sorry for this unclear and very open question.. ///Stefan
4dbaf358-8eb2-be58-8f38-65cf8a0ce1d0
['7bd85f34-501f-fefc-8353-ab46a7b1f948']
I've noticed this same behavior but only when I'm coming back to my computer after it's gone to "sleep" and I have logged back in. I get the "invalid object" window based on whereever my cursor is placed when click back on the TOAD window. I'll have to pay more attention and see if I can find more of a pattern (if toad is the "active" window when I "wake up" or not, etc.) I'm running 7.3 and I've not noticed it via the steps below, only when I "wake up" my computer/TOAD. <PERSON>
3be6db3d-88e4-d622-4377-5c4e7fb517b4
['7bd85f34-501f-fefc-8353-ab46a7b1f948']
Is there some way I can make the default sql editor window size smaller? Every time I create a new window, it always seems to be quite large -- lots bigger than what I need. The size does not seem to be based on the current active window size (the like connection is). I'm wondering if there is a setting somewhere that I can alter... I'm on TOAD <IP_ADDRESS>. Thanks, Rebecca
8fb054ed-27c4-17c8-ddb2-d50d35f38d73
['7bdb9a9c-a1b6-74fa-8894-14f8c9477f9f']
Hi <PERSON> / people I am using the jquery.validate.js (1.4 version) for a web application. For the submission of a webpage which has widgets in it. My issue is that with IE (6 and 7) my form is getting submitted even after the jquery validations fail. For example if I enter a wrong value for the url class. Although I can see the message (in red) to enter a valid url value, still when I click on save button to submit the form, it gets submitted. However, this behavior is not seen with FF browser. I FF, the focus goes to the error line (with invalid url value), instead of a form submit. Could you please help regarding this unwanted form submission with IE browser ? Thanks in advance Regards
75494d56-52ec-52b2-eee4-50859511ccc7
['7bdb9a9c-a1b6-74fa-8894-14f8c9477f9f']
Hello <PERSON> This is regarding an erroneous behavior of the form in IE. My form used widgets in it. With FF when I submit the form after inputting an invalida value for say a url class. The form does not submit due to the validation failure as the case should be. But the same form gets submitted when I do the submit in IE (6 and 7). I do not want the form to be submitted when there is a validation failure by jquery. The version of jquery.validate.js that i am using is 1.4. Can you please help ? I have posted the same query before but couldn't see it in the list of posts so sending this again. Looking forward for some help from your side. Thanks in advance. Regards <PERSON>
9b691daf-6b32-5379-e78a-4f0984f4cd1d
['7be93542-5773-7e2a-97df-d060c417aa16']
Hi all, Does anyone have a program that interfaces with the parallel port, one written in Gambas. If you do would you be willing to share this program with me as I am trying to write a parallel port interface and am struggling to get my head around a few concepts. mainly how to write to the port and how to select pin's base 0 base1 and base2. Any help would be greatly appreciated. I sent a post two days ago holding the full details on my program and what I am trying to do if you need any clarification. Thanks <PERSON>
33caf0ce-5ffb-7089-12e3-d13eb24ced70
['7be93542-5773-7e2a-97df-d060c417aa16']
Hiya, I had already found and gone through the link you sent, it is what part of my code was based on. If you have read it and can fully understand it can you tell me what iPortNumber should be in order for me to access the parallel port. I was thinking it would be 888 as a integer (378 in hex is 888 in dec) however I don't appear to have got a result from this. I tryed 378 aswell without result. I would try polling each and every port however I understand this would potentially break my pc. not my favourite option. Thanks <PERSON>
2f0c821c-9a16-3702-a11f-5eed89535a29
['7bee77b3-864d-69ee-4597-fab2b55cf238']
If the problem is different between Windows and Linux, I might suspect the problem is not your boards. When you look at the trace, right around the pause, does the PC's TCP window hit 0? I think my computer has a 16KB window, which would be filled up a few times a second at that speed. If *all* the boards pause at the *same* time, then the problem is probably at your host, and not at your boards. <PERSON>
e892e1a3-0768-fe43-2402-2b2c05d86480
['7bee77b3-864d-69ee-4597-fab2b55cf238']
There is a real basic web server example in the CVS right now, under /contrib/apps/httpserver (this is in the "contrib" module). You can browse the online CVS if you need to. Second, I would read the original document that <PERSON> wrote about lwIP. It's a few years old now, and we're working on updated documentation, but with the example above (which is current) and the old PDF, you should be able to get yourself started! The PDF is here: http://www.sics.se/~adam/lwip/doc/lwip.pdf <PERSON>
1cc98799-838b-e65e-488e-4bd5277ae25e
['7beebc2e-1463-30ec-9c86-1d5c2e322611']
Hi, I have just fixed the (new) in-program Landsat download scaling code to use correct math instead of a (AFAICT) fudge factor which would only soft of be right at a single latitude. Tested with some old GPX track logs, it all finally lines up. woo hoo! The bad news is that all your old downloaded landsat images are probably junk; the good news is that from now on newly downloaded maps should be ok. The new download tool that Guenther recently added is really excellent and easy to use. (wish: ability to pan without leaving tool?) (yellow is already downloaded, green is current selection) The equivalent scaling code in gpsfetchmap.pl still needs to be fixed-- I don't know anything about perl: is cos() a standard function? how about PI? I also made it easier in the code to change the WMS server- you should be able to drop in any other WMS server URL &/or layers and have it work. e.g. we're requesting Landsat, but the OnEarth server can deliver lots of other layers too: http://onearth.jpl.nasa.gov/ Or maybe your local government hosts WMS aerial photography? Or maybe you want to try NOAA's WMS nautical chart download? (mmmph) ... Something to make user-configurable in the future. I notice if the server is overloaded you get a small 300 byte XML error message, but that is saved to .jpg and map_koord.txt anyway. how to catch that? From experience with working on WMS downloads for other software I have found that the error mode is in no way standard and rather hard to test for across diff't flavours of servers. <PERSON>, <PERSON>
350d4029-2bca-d4f8-8ee6-a722402ce170
['7beebc2e-1463-30ec-9c86-1d5c2e322611']
Hi, things seems to have settled down a bit now so I wonder if it is time to rename 2.10pre7 to 2.10rc1 and release as-is? There are a lot of nice fixes and features which currently only live in svn checkouts and could use wider testing. plus we can put new things into sid now :) If all goes well, maybe release with minimal changes as 2.10-final in a month's time? thanks, <PERSON>
f62bb1eb-c4f7-24e1-71d2-eba262bb577b
['7c09dbd7-ca58-eb90-be43-5d436eaba906']
Hi all, I need to implement a SOAP interface for our Zope website. I was trying to follow the example at http://www.zopemag.com/Issue005/Section_Articles/article_SOAPandZope.htm l , which uses ZSI and guylux's patch for Zpublisher but could not get it to work. Can somebody point me to a working example of Zope and SOAP using ZSI or alternatives. The version of Zope used is 2.8.7. Many thanks, <PERSON>
9078dd41-9cd1-5268-1efb-61ae9691bf6f
['7c09dbd7-ca58-eb90-be43-5d436eaba906']
Dear all, We had our original website setup on Zope-2.7.0-b2/Python-2.3.2. The website had to be moved to a different server. In order to keep the setup as similar as possible, Zope 2.8.7 was used with Python 2.3.4. There were some issues recently due to which Zope cannot open a connection to a gadfly database and reports it as corrupt with 'bad marshal data' error in the logs. I found this to be a Python problem rather than Zope as the same thing happens when trying to connect the database using Python 2.3.4. The database however, can be opened with newer versions of Python > 2.4. The same error had occurred before in the logs but never caused much downtime. Hence we are considering using a newer version of Python for our website. Python 2.4 is supported from Zope 2.9.1 onwards. My question is should I use 2.9 or use the more recent stable version 2.11.3? Will there be any advantages/disadvantages? Many thanks, <PERSON>
b9cabf93-3400-f184-1f13-5d48c4ba7e85
['7c231b2d-2608-9859-4e6a-df8a68f42e39']
Hi everyone, i have compiled and installed Qgis on SUSE 10.3. i compiled a simple QGIS application given in the following website: http://blog.qgis.org/?q=node/10. The application got compiled,but when i run,the map is not getting displayed. i have another system with SUSE 10.1,and also i had compiled and installed ,qgis. there teh same application opens successfully and map is displayed. i checked the gcc version of the two versions and found that 10.1 contains 4.1.0-25 and 10.3 contains 4.2.0.will this be the cause for the map not being displayed. Has anyone faced this kind of problem before ? if so can you suggest me the solution for this ? with regards, saravanan.
58144f32-1c9b-518b-95e4-c95b1fb4eeee
['7c231b2d-2608-9859-4e6a-df8a68f42e39']
Hi everyone, I had compiled QGIS for my host PC and it runs successfully along with qtopia core plus some dependency packages. Actually i have developed an application in qtopia core(4.3.3) and its running on Gps developement board successfully. Can anyone say me how to use the QGIS API's in my qtopia core appliations ? i mean is it possible for me to call QGIS API's from my qtopia core application on the board ? if anyone has any diocuments for that can u plese send me those. with regards, <PERSON>
f80b400b-5a28-cddc-7577-0289f3caa967
['7c2cff00-f2b9-7369-f181-7869c1fb6613']
I've got an alpha version of a .NET backend up and running for matplotlib (http://matplotlib.sourceforge.net/ ). It was just intended to be "proof-of-concept" code, but it works. This back end is targeted for anyone using PythonNet (see http://www.zope.org/Members/Brian/PythonNet/index_html ). It should also be compatible with IronPython (see http://ironpython.com/) once the standard libraries and Numarray (or Numeric) are available for the IronPython release. If there is any interest, please respond to this post and I'll go through the trouble of adding it to the project (at this point I don't know how to do this, so any guidance here would be appreciated). <PERSON>
25db1e92-354b-131e-02d5-fb8d40b1a715
['7c2cff00-f2b9-7369-f181-7869c1fb6613']
I have one for PythonNet written in Python that I've been trying to port to IronPython (see attached screenshot). You may also note that this has a rudimentary .NET backend for matplotlib (http://matplotlib.sourceforge.net <http://matplotlib.sourceforge.net/> ). The port has been difficult, due to the current limitations of IronPython. After doing such an interface for Root, and then Python (both in MFC), it is clear that the optimal solution is to write a .NET control in C# that is _directly_ supported by IronPython. The main problem with the writers of scripting languages is that they treat them like a compiler, and only consider stdin, stdout, and stderr streams. All input/output is written to a CONSOLE. If you know anything about the Windows console you quickly realize how disastrous this is (single threaded, non-standard i/o streams from GUI, not a Windows object, etc.). <PERSON> did a good job of addressing this in Python by allowing these to be redirected (sys.stdin = myfile), but it's clearly not enough. I've heard rumors of a new MS Console object in the Whidbey release. I just hope they do it right. <PERSON> - (since everyone seems to view as our "Python ambassador to Microsoft"), perhaps you could address this in IronPython by simply having an I/O class that initially just exposes the Console ReadLine and WriteLine methods. Then, people who use IronPython to write an app could have a C# class that inherits your I/O class, and they can do whatever they want with the I/O methods. There also needs to be a mechanism to optionally get rid of the Console screen, similar to PythonW.exe. --Thane
4fa5878e-aac0-f404-2204-1b84d2d0518a
['7c35c80d-0d04-6295-0075-f6d10affe57d']
Hello, My name is <PERSON> and I'm a student in Bucharest, Romania. I'm currently trying to port U-Boot 1.1.1 to an Xscale board based on the PXA255 processor.I used the Csb226 board as starting place, I modified the memsetup.S file according to my board.(I tested the memory writing and reading a value to/from the SDRAM, and then I used the FFUART as an output). The program work well until it should jump to start_armboot (/cpu/pxa/start.S:175). What intrigues me the most is that when i try to read a value from SDRAM (where the program should be after relocation - 0xa1fe0000 and higher, i get only 0's ). If you have any suggestion, please help me Thanks in advance, Petre
f6a395e0-404a-d737-2455-4e51743a3b53
['7c35c80d-0d04-6295-0075-f6d10affe57d']
Hello, I have a problem when I'm trying to boot Linux on my platform (PXA255 processor, Strataflash 0x0-0x00800000, SDRAM 0xa0000000- 0xa4000000 and FFUART ). I have compiled the Linux kernel (2.4.19) for my board starting from the CSB226 port. I have created the uImage with the entry point and load address at 0xa0008000. I download over the serial line the image at address 0xa1000000 and after I issued the bootm 0xa1000000 command, the u-boot decompressed the image, but "after starting Linux kernel ..." it hangs. Does anyone encountered this problem? Thanks, Petre
7524dbb3-5b94-5ae7-8ab8-f293ab0250d1
['7c361d6b-e35d-990b-a617-28abaf9f60c9']
Hello all, I have a Citrix MetaFrame XP server farm. It hosts many applications. I am trying to secure the desktop/Windows should a user get access to the actual server via an application crash or something. My question is in regards to the quick launch bar. I WANT IT COMPLETELY REMOVED. Any suggestions? I have done necessary regediting and security for file permissions but I still have the quick launch for my users. Thanks for the help.
fbf1c4f1-d231-4694-3a2e-76c797b72646
['7c361d6b-e35d-990b-a617-28abaf9f60c9']
I will explain my situation. I have 2 squid machines running squidGuard. I have one LVS director, passing HTTP traffic to the squid machines. The squid machines are RH 7.2, and the Director is kernel 2.4.18. My ultimate goal is to set up transparency between my clients and the squid machines. In order to do this, I need to use a route-map on my Cisco Catalyst 6509 and on my 3640. When I do not have the route-map point to the Virtual IP of the LVS server,and point it directly to an IP of a squid machine, the transparency works great. When I point it to the Virtual IP of the LVS director, my clients never see a web page. When I statically place the Virtual IP of the director in my browser, I can resolve web pages and everything works great. BUT, that is not a transparent solution. I was wondering if you could shed some light on this issue. Have you encountered this problem before? Would you mind explaining to me how your set up is? I appreciate any attention you'll give this matter. <PERSON>
74a9c32d-cb12-c06a-1fea-2e8df612c74b
['7c3c0530-961f-87c0-3004-b43acfccc5fc']
hello folks... I am wondering how I might be able to run an ns simulation for a number of times, without having to type the command every time: ns blah blah.tcl -- Can anybody direct me in the right direction about how to do that... I tried doing a while loop, etc... but that didnt work.... If I am to write a seperate script to run the simulation... how do I go on about that... Any suggestion will be appreciated.. Many thanks... <PERSON>.
caa95eca-0cb9-7b91-5597-903c18986d1b
['7c3c0530-961f-87c0-3004-b43acfccc5fc']
hi all... As many of you would have noticed, there is a problem with the code example in the ns manual -- 9.6.1 Example: A ``ping'' requestor"" -- the problem is with declaring instance of the timer class... Does anybody have a working "modified" code of this example? -- I am trying to implement a derived timer class, to send packets periodically from agent to agent..that is all... Many thanks in advance..<PERSON>
f731bb39-2b64-f4ba-e6c1-57388b55e9b2
['7c471db1-d677-1cce-0cba-75dcdb99c60c']
After upgrading to 1.4.0 and reloading the same dataset, using the same code, my gremlin query doesn't return any results. When I looked at the pipe pipe1.start(v).outE("connectedTo") shows 0 whereas if I use the web console and do select out.size() from #10:18 it returns 107 . Does 1.4.0 not support gremlin pipelines or do I need to store data differently. I have used OGraphDatabase API to create the dataset, similar to what I used for 1.3.0 Best PM.
da2619f2-cf62-b835-3039-cb904b5055ec
['7c471db1-d677-1cce-0cba-75dcdb99c60c']
Luca, For evaluation, I am connecting only one client, but in production there will be many. And yes, it does return thousands of objects. It is a recommendations engine, that returns recommendations, based on user's connections, access, location etc. so for users with dense graphs it can return thousands of nodes. Best PM
c6be78ad-5280-963d-e7ff-2aca49f60b39
['7c669397-55de-ecdc-88ff-9c243c97daa7']
Dear all, The involvement of WMCH in the TAO project will enter a crucial phase, In the few next days I will communicate a lot to you about WMCH and the TAO project, about the past year and the next step. To prepare the next steps of this project , a strategic meeting will be held in two weeks, 26-27 of March. I submit to you this date before giving you all the information because of the short delay of announcement, I'm sorry for that, but be assure that the following meetings will be announced well in advance! All member of the association interested of taking part in the TAO project are welcome! There is a lot of way to participate, conference about Wikimedia, photo rallye, lessons about scanning a document, etc, etc.. There is a doodle for the meeting, the place is not decide yet, it depend of the attendance, but Bern seems the better choice. http://doodle.com/euua64bmq2acyn78 Charles
471b0ab0-2ca9-8ac0-8e56-48f75555e969
['7c669397-55de-ecdc-88ff-9c243c97daa7']
I know we have a lot of good sport photographer in the association but we may also have people interested in sports data!!! Opendata.ch is organizing hack days around the sport data next May 23-24, let’s join them in Basel, Sierre or another city if enough Wikimedians want to set-up their own node! http://opendata.ch/2014/04/sports-hackdays/ if you need assistance to organize a local event, just contact me Charles
b764730d-963d-10bd-fe56-710044ce6f13
['7c88f07e-92aa-1ccb-d0cf-1d022c30fe57']
Hi, This is <PERSON> from China <PERSON>,we are specializing in R&D, Production, sales of bluetooth charger & bluetooth receiver for our customers from all over the world. From your website, we know you are in customer electronic product, herey recommend our best item Bluetooth receiver for you,item code HK008 and HK009. You can search from Ebay and Amazon for HK008 directly, that is we are produce. Please reply an email and get more detials, thank you. <PERSON>
d30cce47-9bac-8fa1-e1ea-f4e24d90f8cb
['7c88f07e-92aa-1ccb-d0cf-1d022c30fe57']
Hi, This is <PERSON> from Haike, the professional bluetooth device factory from shenzhen China. Cooperating with big foreign brands such as STEREN, AERPRO and domestic brands SHENWEI, EXCELVAN, AGPYEK. Help them design best product and make them idea come ture. Professional R&D department offer best OMD serivce for you. If you are interested in, please reply to get more informaiton. Thank you. Best Regards <PERSON>
5e4cacfd-3d2b-60ea-9675-6b163c6b1c65
['7c8d174a-1580-7ceb-c3e3-eb39987e6781']
I want to use significance analysis of microarrays to identify significantly altered genes selected on the basis of censored survival data. I know you can do this using the samr package, however this package does not accept data in the form of exprSets and phenoData as inputs. The sam function in the siggenes package uses exprSets but does not have an option for censored survival data. Is there a reason for this? A quick fix to this problem? Thanks, <PERSON>
5d33b422-93aa-f013-067e-c648ecb24a44
['7c8d174a-1580-7ceb-c3e3-eb39987e6781']
I am currently using the microarray dataset from the 2002 Van de Vijver et al paper "A gene expression signature as a predictor survival in breast cancer" published in the New England Journal of Medicine. Does anyone know whether the probe sequences have been published and, if so, where I might be able to obtain them? Thanks, <PERSON>
389df032-15b5-7410-12ed-f9e37d85659f
['7c995f24-1358-040f-3e49-57ab325a654f']
As part of this legal document set that I have been working to put together, I needed side-by-side text. Looking at the wiki, I noticed that there are at least 3 methods: columns, paragraphs, columnsets. I only attempted two, but they seem to have quite different results. I understood that columns were for simple cases. However, in my MWE below, the \column command breaks the "columns" in unusual way. One can also swap out the order of the paragraphs and columns methods; the results are similar. Also, one can adjust the dorecurse command with additional lorems to see where the "columns" land on the page. Again results are similar. Any suggestions? Another question: I am trying to have the numbers in the \fillinrule command to be hanging so that the rules are lined up. Is this possible, and if so how best to do it? advTHANKSance.
2fefa23e-9d5d-1c9b-24d3-a6ee0de6a408
['7c995f24-1358-040f-3e49-57ab325a654f']
I just noticed the recent issue brought up regarding \underbar, and wanted to mention a curiosity that I have come across. After "RE: " the underbar is contiguous. However, if we change it to "Re: " there is a break in the underbar. This seems independent of font selected, althought I have only tried it was gentiumalt, texgyreschola, texgyretermes. I was writing a business letter recently and used what I think is proper, "Re: ", for the subject line. It was only then that I came across this. Is there an explanation for this? On a slight tangent, what would be the best way to tighten up the space between the "\hl" or "\fillinline" alternative, and the name of the signatory? Thanks.
c0324486-0ebc-fb3e-ef57-5d7fa4cd7c3a
['7cb51ccd-a8da-1d81-821a-af1aa26fe299']
I can't really analyze your problem but this is what I know (and do): - I prefer the "KDE Classic Icon Theme" but not some of it's icons (the network icon for instance). So I created my own theme by copying the few icons I wanted from one theme to the other. - So, everytime I install TDE somewhere, I need to transport my Icon set. Which is actually very easy: copy the (modified) directory from /opt/trinity/share/icons (so it would be the Crystalsvg directory for you) to /some/backup/location. In my case it's on a nfs share. after a new install, use konqueror as filemanager (super user mode) to copy that directory in /opt/trinity/share/icons select the correct icon theme in trinity control center. Never has any trouble. So if I were at you place, I'd delete everything in /opt/trinity/share/icons, copy back the icon directories (I can let you grab a copy) and that should do the trick. Thierry
045b24d3-6954-3eb5-4f2d-5fa61a25d486
['7cb51ccd-a8da-1d81-821a-af1aa26fe299']
if you create a new user? Still broken there? (broken profile?) Yes...New user did not fix corrupted icon set... [SOLVED] Downloaded latest crystalSVG icon set from kde store downloads as .tar file unpacked and replaced entire set... Fixed it ..must have been corrupted.. Had to switch the new one in and out several times to get all the categories to show up and populate...but working nice now... <PERSON>
9fb61b17-de21-5c55-ed1f-b53b3fa945a6
['7ccf091b-6592-c5ed-cee0-28802cd0c352']
While rdmd is extremey handy, newcomers might often want to start simple and easy for the beginning. Looking in the D wiki, there is quite a lot listed under IDE and Editors and Code:Blocks might actually be one of the more attractive beginners solutions. Unfortunately the documentation (mainly on the code:blocks side) isn't reliable and/or correct and I feel that we should make it as easy and painfree as possible for newcomers to like and getting to try/work with D. I'm now sitting in front of a working installation on a current Debian/Ubuntu/Mint (which might be pretty often encountered) and could provide/share a short howto for that scenario leading to a properly working codeblocks for D. A) is that welcome/wanted? B) if so, what's the right place for such a howto? C) (for the future) is the forum the right place to introduce/ask about such stuff? If not, apologies for my misuse and: what's the right place and procedure? Thanks - R
483dd977-c811-be10-821a-dc459a0f48de
['7ccf091b-6592-c5ed-cee0-28802cd0c352']
If I'm not completely mistaken, Mr. <PERSON> could notice the obvious fact that I'm new here. Whatever, the interesting issue is not myself, or some, so it seems, hate and rage obsessed member whose screen name I don't remember, no matter how often he informs me about his negative feelings, or Mr. <PERSON> (insofar as being a major figure in the "D crowd" and a co-developer of D automatically gives him a certain importance in matters of D), *the interesting issue is D*. Thanks to some of your constructive and socially competent posts to me my worries are greatly reduced and if I'm somewhat unhappy the reason isn't D but my somewhat unrealistic wishes and my possibly premature excitation. From what I see so far, D wins hands down against other languages that I've looked into in a quest over quite some years now. It's not perfect for me but then nothing is perfect for everyone. What matters is a simple question in the end: Does the overall mix support me in my work and in my striving to efficiently produce code that meets my standards in terms of reusability, reliability and others? While I still feel that <PERSON> comes somewhat closer to my "dream language" I have to - and do - also see that in the end some pragmatic criteria make D the best choice for me. It should also be seen that at *no point in time* did I say (or feel) that D is bad or mediocre. It was clear from the beginning that D is in the top 3 anyway. Looking at it like this, this whole thing is basically a luxury discussion. And again, I did question (and question critically) D *because* it's so great and deserves attention incl. critically questioning. As for Mr. <PERSON>, the main importance (IMO) is in him being an important D figure. Whether D should offer a friendly, forgiving and welcoming interface to newcomers or whether expecting newcomers are to know about Mr. <PERSON>'s personal habits and acting in a way that at least makes it easy to be misunderstood in an unpleasant and possibly apalling way is not for me to decide. For me it's more important whether Mr. <PERSON> is capable to write a good book about D that helps me during my first steps (and possibly even beyond that). From what I know so far, this seems highly probable and I'm looking forward to start reading it tomorrow and to learn. Nevertheless, thanks for your constructive and positive way to approach things once more ;) R.
d21bf8c5-dd37-89f1-c53d-6a93ea038beb
['7cd21362-03e0-3347-57d8-b594a8a989a4']
Dear Bacula users. We’re considering to use Bacula community version for backup solutions. Is there any third parties for technical support of Bacula community version (non enterprise version). If there is a third party vendor or you know, please relay any email address or website or some other information we can get. Thankyou. Best regards, SDS
12bd8adb-4478-60d1-dbe2-534d00e81c61
['7cd21362-03e0-3347-57d8-b594a8a989a4']
Hi. <PERSON>. I have a question about open source Bacula. Is it possible to get some technical support for non Bacula enterprise software from Bacula.org? Such as complie setup Bacula trouble shooting & configuration trouble shooting for any such cases. If it’s possible how and which way? Thank you for your attention and cooperation. Best regards, SDS
b54ad327-a88e-b199-7019-9438eb899961
['7cd72388-54bf-a00e-4520-fec44245931e']
*Hello everyone! At PyCon 2018, I hosted a PSF + Educators space to propose the question of what can the PSF do for educators. That session turned into a general discussion on things the community can do. These are the takeaways.Being worked on. These are things that people are working on after the discussion. Not sure who is working on what though. Please identify yourselves on the list if others want to reach you! 1. Use edu-sig as the jumping off point for communication2. <PERSON> will bring back notes from conversation to the PSF board to both inform and discuss possibilities3. Educating Teachers ---1. Adding teaching training for regional conferences -- although it is short notice, this is first being tried for PyOhio2. Can we do educators track? Maybe not make the summit on the day before, Workshop day & talk day?4. Create talking points / Press packet1. Starting locally to converse with people and find out the needs for a curriculum 1. Akron, OH is restructuring curriculum.5. PyEducators created -- https://github.com/ehmatthes/pyeducators <https://github.com/ehmatthes/pyeducators> 6. Create an inventory of resources - This will not be the end all be all, but a jumping off point for curation. It has to start somewhere thought. - K-5, 6-8, 9-12, and Adult & Setting: Class, Library, after school- List of organizations, people, etc- List of books- ^^ Will be explored by a student in Library Science as an independent study- I *believe* this is under PyEducators, but I am uncertainNot being worked on. These are things that came up in discussion that are not explicitly being worked on at this time. If you would like to help lead one of these things, please speak up. Also, please note, that just because it was discussed it doesn't mean it will ever happen, so let's not bike shed these points please. - “Can the PSF have an educational resources page? We all don’t know what is out there.”- “We can connect technology folks with teachers.”- https://software-carpentry.org/ <https://software-carpentry.org/> <-- “We get the most requests for Python, but our lessons need love.”- Should we have a lobby arm? - Get rid of IDLE. Add Mu. Can the PSF get Mu in standard library?- Python booth at teacher conferences- Get a full-time educator on PSF staff, paid for a grant just to support thisPlease let me know if I missed anything. I am sure I did. Also, let me know if my notes don't make sense.* -Jackie
f4d11eb0-3ad8-c5ca-945c-b32284826dc5
['7cd72388-54bf-a00e-4520-fec44245931e']
I am extracting the longitude and latitude points from an ArcView GIS file to create polygons in Google maps. I have two questions, before I get two far into this. If you have a polygon that is loading from a set of points in a MySQL file, is there a limit on the amount of data points that can compose a polygon? (100? 1000? 10000? 10000000000?) If there isn't a limit, then it there a point when the loading of the map is too slow, because it is taking to long to load X-number of points? Thank you ahead of time. <PERSON>
fc707f11-61e6-5b64-c26c-c39642bcd66f
['7cd92dac-89c2-5fa1-291e-cf77f3252a7c']
Hi, I'm running Debian Buster (kernel 4.15.4-1) on a NanoPI NEO2, Allwinner H5. It's a new installation and I'm now hitting some stability issue, I've not any prior stable kernel to compare with. The one below is the first capture of the fault in action. Is anybody having similar issues? Kind regards, <PERSON>
27cc89fb-d075-c1b0-e9a2-d9b10067caa4
['7cd92dac-89c2-5fa1-291e-cf77f3252a7c']
Hi all, I've refreshed this patchset to add the Broadcom BCM4760 SoC. It's the bare minimum required to boot to the console. Given the amount of Broadcom SoCs merged or being reviewed (and their crazy and inconsistent names), I've decided to drop the BCM476X naming I used before and stick with BCM4760. Previous spin collected acked-by from <PERSON> and <PERSON> but some time passed and I cannot assume they have nothing new to comment. Please give another glance to this smaller and smaller minimum patchset. Best regards, <PERSON>
ba8aa665-b8ca-fb36-e834-db8d88aefc4a
['7cec12b4-e368-4fb2-213c-458c68dd6b21']
w/ the previous version of TOAD, when you highlight some rows of code and right click, a drop down comes up and one of the options was to comment or uncomment the lines of code. But w/ the new version I don't see that option. Where can I see that option? <PERSON> Phone: <PHONE_NUMBER> e-mail: JKaaVppnYGqa/eS4@example.com
62a8e49d-e017-c344-a247-e356fca0999a
['7cec12b4-e368-4fb2-213c-458c68dd6b21']
I have been using Toad for a year now and I still can't get the Import/Export function to work. I went to the help and read and followed the instructions and still not able to IMPORT/EXPORT. I was able to EXPORT, when I tried to IMPORT the file, I could not get it to work. I would like a step by step instruction to do an EXPORT and then an IMPORT. I did download the Beta version 9.6 and using it. Thanks in advance for any help. <PERSON>
507a9352-5bff-56af-1f4e-a21accd2e259
['7cf1e0e9-c807-1c08-2c14-db1d8c8c7993']
So it finally happened after a few days of trying and the excellent help here. Thanks to all. I have a VirtualBox VM running on Mac OSX High Sierra. Took a few days to compile everything from sources using --substitute-urls="https://berlin.guixsd.org”. Don’t do this unless you are very patient. There were a few problems along the way. I think my initial problem was I was using the hydra site initially just before it went down. Somewhere along the way I did a guix pull, etc and I couldn’t install guile-2.2.3 and guile-2.2.4. So I decided to abort the whole thing and setup a new VM. While installing the new VM, I found some issues with the install scripts: bzip2 —> The correct fix from <PERSON> was to download the file as follows—> guix download https://web.archive.org/web/20180624184835/http://www.bzip.org/1.0.6/bzip2-1.0.6.tar.gz texlive-20170524 —> From <PERSON>, I downloaded from —> ftp://tug.org/texlive/historic/2017/texlive-20170524-extra.tar.xz nss-3.36.1 —> So I received an answer on this, but no definitive solution. Sorry, I had to edit the builder script and remove the tests to get this to install. I guess I will install this properly later when it gets fixed. guix-artwork-6998d30 —> So I have no idea how to download this file. Instead, I (sorry <PERSON>) edit the rsgj5syf4azvg4y80gqbr94gr4i9226y-guix-artwork-6998d30-checkout.drv file and changed it to https://git.savannah.gnu.org/git/guix/guix-artwork.git I know your not supposed to edit these, but had I not, I would be waiting for a while. When these are fixed, I will install them properly. I guess I was the guinea pig to show that there are some issues with the install that need to be addressed. Thanks everyone. Now I can play with the fresh OS. <PERSON>. :)
4368d373-d184-b9b3-22dd-c47180e1a07f
['7cf1e0e9-c807-1c08-2c14-db1d8c8c7993']
So I have been trying to install GuixSD 0.15.0 for a few days now. My first problem was not setting —substitutes-urls=“https://berlin.guixsd.org <https://berlin.guixsd.org/>. So that fixed one problem. My other problem is try as I might, I cannot get either guile-2.2.3 or guile-2.2.4 to install. It always hangs when trying to do the tests after writing all the *.go files, (which by the way takes a long time). So are there any work arounds to disable the tests for guile-2.2.x so I can get this operating system operational? Otherwise I am afraid that it is impossible to do a fresh install of GuixSD from berlin.guixsd.org <http://berlin.guixsd.org/>. Guix version 0.15.0-1.4876bc8 herd version 0.4.0 P.S. I am installing this in VirtualBox on OSX with the download 0.15.0 iso file, which should not make a difference Thanks for any help.
c646fcf9-f90e-2975-688f-e7d16c64c531
['7cf8a04f-4b41-7b98-22bb-f64c5780793d']
We have a fairly large client/server app that we converted to a java webapp. The original app was in powerbuilder. there were 2 types of rules applied to field rendering: 1) any rule that could be handled when the screen loaded was handled via screen level events, e.g., if a screen had fields with default values, or hidden fields under certain conditions, then these would be applied at screen entry via an onchange event for the screen 2) computed fields were handled via onChange events on the field, e.g., if field x changes, change field y The 'field rules' could be any valid powerscript expression What we have done is mimicked this in java. we process the same way as above, except we dynamically convert (very painfully) the powerscript into java syntax, then run the rules as above, by passing the converted rules to an embedded java interpreter (BeanShell) The problem is if you have sophisticated rules, or rules which affect many different fields, e.g., if field x changes, change field y, but if field y changes, change field z, etc... This becomes very slow - up to 15 seconds for a screen to render or change completely. Not to mention the complexity of the rules management. Is there a better way??? <PERSON>
2a5f6bf8-0cac-ec30-d11e-59984d074320
['7cf8a04f-4b41-7b98-22bb-f64c5780793d']
I am using the apache isapi_redirector2.sll to cause IIS to redirect .jsp requests to a running Tomcat instance. When I setit up, I get it to work on my machine, but on another machine - setting it up with the same steps - it does not work. All configurations look identical. What would cause an isapi filter to not work?? Tomcat is running, (I get a page at http://localhost:8081), iis is running (i get the iis main page at http://localhost and http://qa-2000), I have installed isapi_redirector2.dll into a virtual dir (jakarta) under my default webapp, have entered the appropriate registry entries to register the redirector, have created the workers.properties file and put it into tomcat/conf, along with a default jk2.properties file, have added the filter to the 'ISAPI filters' IIS porperty menu. It does NOT redirect. Is there a tutorial or instructional page out there somewhere??? Tomat 5.0.28 IIS 5.0 John McClain Senior Software Engineer TCS Healthcare <EMAIL_ADDRESS><PERSON> Senior Software Engineer TCS Healthcare kuUePOR6CAYsNhPt@example.com <PHONE_NUMBER> "Before you criticize someone, walk a mile in their shoes.
715caccf-7ad6-4fc0-7d18-72ca622ca8cf
['7cfb05c3-d3fd-7629-ccbb-0823cadd2869']
Greetings. I've been challenged with an assignment in which my client will feed me a 9000-record SQL Server database every night, and I in turn will need to import the data into mySQL, replacing the mySQL database from the night before ... Given that scenario, and the fact that I obviously want to be able to automate the process via scripting, what is the best format for my client to send the database in? They've volunteered that the feed can be "almost any format you want" ... sooooooo, what do i want? what would be the easiest to work with? Any ideas? thanks in advance, kenn
8a94abad-c44f-a125-82be-923f802f18e1
['7cfb05c3-d3fd-7629-ccbb-0823cadd2869']
Greetings ... Before I waste TOO much time RTFM, I'd like to ask if myodbc will work for my project .... Can I use my Linux box (via myodbc) to access data from a Foxpro database on the same local network (but NOT on the same computer)? I am using Samba on the Linux box, so I should have no problem seeing the Windows computer that stores the Visual Foxpro data ... question is, can odbc access data on another computer (and, I supposed, if the answer is "Yes," could anyone point me toward a tutorial on the subject -- if not, I'll begin to RTFM :-) Thanks for the help. <PERSON>
ba7f6bdb-adce-f3f9-c3e9-1d6b6d07498f
['7d196518-5fcf-f66a-bef4-77bb72eecfa2']
Hello. I've made a new package for haskell-devscripts. The main change is that it uses ghc --make instead of ghc -package Cabal to build DEB_SETUP_BIN_NAME (?= debian/hlibrary.setup). This was necessary to build the new version of haskeline, which uses other packages, like directory. <PERSON>, do you see a problem with this change? <PERSON>, can you upload it please? Greetings.
65fae283-3512-baf5-54f3-525097e5b6d2
['7d196518-5fcf-f66a-bef4-77bb72eecfa2']
Hello, I've made a new version of haskell-devscripts which correct the way dh_haskell_shlibdeps handles internal dependencies of a package. If several binary packages are generated from one source package, the new dh_haskell_shlibdeps will install all of them on the temporary package.conf and then build a binary to check for shlibdeps. The new package is at http://debian.holoscopio.com/haskell-devscripts/ . <PERSON>, can you please upload it? Greetings.
1fc3b7ae-56f7-977e-6e21-010b38fab1a9
['7d227505-04b7-efcf-5459-a8192a4bbd67']
I am trying to add a plane into another plane, when the camera is pointing directly to the object it looks ok; but when i try to move the camera to obtain perspective the top plane gets cut off in triangles. Here is the code and pictures. I would like to know how to avoid this and why is it happening. thanks in advance
d5a438b7-1670-8f77-3964-ec86441219a7
['7d227505-04b7-efcf-5459-a8192a4bbd67']
Hello, thanks for reading. I basically have 5 1000px X 100 Px planes laid in the scene, made of a color material and they are not interactive I am adding around 25 cubes 100 X 100 X 15 made of a bitmapFileMaterial to each plane. They are interactive. When I run the application, it is very slow and after a while the server crashed. When profiled, there is an instance called Number3d and Vector3d that increase exponentiantly!!! Please let me know what I can do to fix the problem, or what I may be doing wrong. This is running on a flex app. <PERSON>
4cd0e2af-905a-5afd-401f-768881f4faf0
['7d2cc2ca-2d4c-1063-c1d6-731f9df03404']
Hi Guys, I had, at one point in the past, some notes on creating a structure so that I could access all of my widgets from any point in my program. Could somebody point me to the information? I can't seem to locate it, and all of my previous source code is at home. Thx, <PERSON>
d1aa2ed8-b2be-a8f8-c5e4-80a24db549bf
['7d2cc2ca-2d4c-1063-c1d6-731f9df03404']
Hi Folks, I tried to search the archives, but got nowhere. I'm having what I consider a strange problem with my image database. Everything seems to be working fine with inserting and selecting either .jpg or .png images, but I can't seem to get a .bmp image to be inserted into the db. Any clues what I might be doing wrong? <PERSON>
d69851c9-536b-0f60-3149-4c26bc10d261
['7d40ff4d-d636-9b7d-ab71-86c807a90c48']
Hi, I am trying to install debian sarge (with debian-installer) on a 1.4Ghz Athlon with a K7S5A motherboard, AHA-2940W SCSI controller, 4GB SCSI disk, 40GB IDE disk, network card and vga card. I tried to use the boot cd for test candidate 1 and when it gets to detect hardware the monitor turns off and the machine is unresponsive. I tried beta 4 boot disks, booted, loaded network modules, downloaded install files and on the partition screen there are no harddisks to choose from (I want the install on the IDE disk). I tried beta 4 boot disks, booted, loaded cdrom drivers, then it tries to detect the network card and monitor switches off and the machine is unresponsive. I though the SCSI disk could be causing problems, so I've tried booting with linux noscsi and linux aic7xxx=no_probe,no_reset but I get the same problems each time. As the monitor dies I can't even do Alt-F3, Alt-F4 to look at the install log. Someone suggested removing non essential PCI cards and trying again (perhaps the SCSI controller?), but what else can I try? Thanks, <PERSON>
6dc0996f-f698-4c33-e10a-8ebcf26ab2d6
['7d40ff4d-d636-9b7d-ab71-86c807a90c48']
Hi, I am trying to install debian sarge (with debian-installer) on a 1.4Ghz Athlon with a K7S5A motherboard, AHA-2940W SCSI controller, 4GB SCSI disk, 40GB IDE disk, network card and vga card. I tried to use the boot cd for test candidate 1 and when it gets to detect hardware the monitor turns off and the machine is unresponsive. I tried beta 4 boot disks, booted, loaded network modules, downloaded install files and on the partition screen there are no harddisks to choose from (I want the install on the IDE disk). I tried beta 4 boot disks, booted, loaded cdrom drivers, then it tries to detect the network card and monitor switches off and the machine is unresponsive. I though the SCSI disk could be causing problems, so I've tried booting with linux noscsi and linux aic7xxx=no_probe,no_reset but I get the same problems each time. As the monitor dies I can't even do Alt-F3, Alt-F4 to look at the install log. Someone suggested removing non essential PCI cards and trying again (perhaps the SCSI controller?), but what else can I try? Thanks, <PERSON>
2fbb5906-65a1-a0bf-533f-06cea7423472
['7d55bc55-2568-8958-6701-6f2478b4224a']
hi all, i am <PERSON> there .from the document it is said that the xcp is a open-source version for the xenserver .and i have a question there .what different bettween them ? and what low level interface the xapi is base on ? hope some one give me a guide .any advice is accepted ! thanks Best Regards <PERSON>
ab081faa-49cb-dd5b-252b-7a8527a5da1a
['7d55bc55-2568-8958-6701-6f2478b4224a']
hi all, i got some information from the xe command : "host-license-view" . but there is some item i don't understand .like the "restrict_historical_performance: true". what host' capbility is ? some one can help me ? thanks BestRegards <PERSON>
0fe25e6e-6657-2b1b-e910-94f95be057e2
['7d65435e-7e5e-5575-90ab-395f1da7fec9']
Hi <PERSON>, thanks for pointing that out, I forgot to mention the dates :) oVirt Workshop (Barcelona) ends on Nov 9 (Friday) so I'm planning to release UI plugins PoC revision 7 around Nov 15 (next week's Thursday). I'll try to work on some items before flying to Barcelona next week. Thanks, Vojtech
424ca8c9-1390-6931-952f-9b3cf111027e
['7d65435e-7e5e-5575-90ab-395f1da7fec9']
Hi everyone, we're moving towards using REST API in web UI (i.e. WebAdmin and UserPortal) and would like to hear your opinion on the matter. The initial meeting (conference call) is scheduled on Wednesday, November 20 at 14:30 CET / 15:30 TLV / 08:30 Boston timezone. I'll send the meeting invite with details in a separate email. Everyone is welcome to join and share his (her) thoughts. Regards, Vojtech
3b04cf40-24a3-9c99-57bf-c3ed3b5e62ee
['7d715b0b-d236-a221-9254-8960e385b3aa']
All, I have been looking for an ACL to effectively restrict incoming mail claiming to be from my own domain to only a specific set of Ips that I own, and drop all other spammers/imposters, how would I go about formulating this? Thanks, <PERSON>
5b4d943f-8c06-8ae9-0066-14ec8c952881
['7d715b0b-d236-a221-9254-8960e385b3aa']
All, I have an exim server currently set to smarthost all mail in a domain to a remote relay, for a short period, I would like to forward mail (for a non-local user) to an external mail account. I do not want to apply this policy to the entire domain, just this one account. How would I go about doing this? Thanks, <PERSON>
a8b6b9ac-566e-3a04-d763-c063c23f1d73
['7d975b5e-5282-bb4a-37fa-a30246278961']
Hi. I would like to bounce an idea or two of the list if I may. I want to create a full LVM LFS installation, using Chris's LFS 5.0 CDROM (thanks <PERSON>), onto a clean system with nothing installed. The CD has the lvm nodules included, but not the tools. This is not a problem (I hope), as I can build them myself, on my existing Debian system. I am thinking about placing the tools on a floppy, which I can mount and use before starting the installation. This should allow me to create the required LVs (I hope). What worries me, is that the (VG) devices will be created in the installation medium, but not on the target system. I am hoping that having done all this, I can somehow mount the target drive and create the required volume group(s) on the target system, allowing me to boot from it. Is this feasible? Alternatively, I can transfer the system, once created to LVs as I did with my Debian system. Any more ideas? Anyone tried anything similar? Any pointers at all? Have I gone stark, staring mad? Cheers
de062e67-ad92-2b0c-aa84-66a0db6fc91a
['7d975b5e-5282-bb4a-37fa-a30246278961']
Things are looking good. I have been playing with <PERSON>'s 5.0 installation CD with the LVM modules included, and so far, the task seems feasible. I am still awaiting the PC all this is aimed at, but I am happier about things now, and can see no reason why this will not work. A couple of questions for <PERSON>. Your CD uses devfs, but I don't think it installs it on the target system. Is this a selectable option with 5.0, if I install manually? To what stage (chapter) of the LFS book does your automatic installation take the target? Regards
5e58b1db-62db-b682-f9ca-0e54414e38e7
['7d9af703-ab0a-68fd-22e7-7282ab8f5ca2']
Hi All, Could anybody provide a sequence of steps or other material in order to install IMS/DB (DL/I) out of the tape ibm.360d016007.dl.I.basic.aws under the MVS3.8J distro? To the best extend of my knowledge this is a free distribution of the very earliest IMS/DB versions; there are isolated claims here and there of it being able to run in MVT after certain problems were overcome. Looking with AWSBROWSE it seems the tape contains 3 files, not clear the formats although at least one seems to be some sort of loadlib. I don't really want to have sophisticated nor volume usages of it, just be able to run very simple programs on a very simple IMS database, no need for the full suit of utilities. More than happy with just build DBD, PSBs and have a COBOL or PL/1 program access a sample DB. Regards, <PERSON>.
5194763f-55d8-ce58-bee6-5b5cfbdd8926
['7d9af703-ab0a-68fd-22e7-7282ab8f5ca2']
Hello again. Is anybody able to pinpoint for me a functional SuperScratch procedure? I meant, a procedure that when ran wipped out an entire volume, fancy features such as having exclude lists are welcomed but not really mandatory. Aimed to clean-up storage disks periodically. Eons ago the installation I worked for used a combination of IEHDASDR + some home grown procedure to resolve the catalog mess that will be left otherwise. Perhaps there is some better approach available? There is one SUPERSCR at the CBT tape but it doesn't even compile properly (and have no instructions whatsoever). Thanks, <PERSON>.
d2b1bb93-8f2f-1dd3-fb41-0485b613d6e7
['7da6a7ec-79fa-e1d2-0110-a39a42d56657']
Hi all! I have some apps here that rely on the realtime Linux patches from Timesys. Now I was wondering... Since current kernels include realtime support, is it possible for me to convert those apps so that they no longer rely on the Timesys patches/libs and solely function with the realtime capabilities of the Linux kernel? Greetings, Evert
79eca7fa-90af-b689-9ea2-9eb0c7b22714
['7da6a7ec-79fa-e1d2-0110-a39a42d56657']
Hi all! Am I the only one with this problem? I doubt it... The problem is that I have a couple of shares of a W2K server mounted with Samba on my (Gentoo) Linux. This works fine, until the W2K server gets rebooted. After that the shares are just timing out, and they are impossible to unmount/remount... :-/ How do I prevent/fix this problem? Regards, Evert
ce1b7fcf-dea2-3fd8-26a4-f794a8277868
['7dab642d-c14e-9fe1-c0c2-578c516f9573']
The end of 2018. It got delivered really quick and it brought its own gifts. A nine (yes, 9) day long medical procedure (not me, my wife) and a wedding (my wife's dad, my FIL) will require my full attention until the beginning of 2019. With that, I'll be unavailable for meetings and anything else team related until these personal matters are done and we're on the other side of them. So with this email, I bid ALL of you a happy holiday season. Please, be safe. Please, have fun! That's important! Most of all, be happy and joyous and spread it! If you do need to contact me, you can still email me and I'll try my hardest to get back to you as soon as I can. "The future always looks bright and shiny no matter how dark and ugly, or warm and pleasant it might be today." <PERSON>
8582b037-f70d-78a6-f75b-70d501f58bf0
['7dab642d-c14e-9fe1-c0c2-578c516f9573']
what's up my fellow creative humans??!! I finally, FINALLY, got the best DAW that my money could buy and got it setup with wifi since I don't have ethernet cable ran to the office just yet. But, I'm finally starting software development classes in February and I'm so ready to work on Ubuntu Studio! I'm excited as hell about this! One confession: I didn't used to like the xfce panel/whisker menu but now that I figured out how to change some things around, I dig it! I've got the whisker menu setup to show the contents of each 'tab'/section on mouse hover and turned off window labels and turned on window grouping! Very nice! Now, if we can somehow adopt the ability to have the active icons have a dot/line above/below them to show which one is shown (much like how the latte dock for KDE plasma and gnome do it), that'd be an awesome addition. but, i'm content with it as of right now. just got to find an M-Audio Delta 1010LT and reach out to Kemper and Fractal audio engineering to see if they've got linux support. my list of equipment can now be started and getting a plan together for acoustically treating my office is next. Charlie Luna
4fe5a420-b4b1-0caa-9649-00d5733a8d4b
['7dd7afd2-febf-d752-b7d7-1d502a97be83']
Hello, I need some hints on this problem: I have a code in mod_perl that generate a html page with some php code (<?php ... ?>), but before to send this data to the browser I would like the mod_php processed the code first. How can I accomplish this? (I use mod_perl 1.26, Apache 1.3, php 4.1) (are there some functions on Apache module?) thanks!! Regards, <PERSON>.
a561a664-e57f-c973-7a11-ee91fdcb8d94
['7dd7afd2-febf-d752-b7d7-1d502a97be83']
Hello all: I'm using wvText to get plain text from word files. wvText uses lynx to extract only the text from a html file generated by itself. If you run lynx manually to view the wvText-generated-html example attached to this email (excuse me if this list don't accept attchments... I can upload the example to some website later.) your lynx process will grow in size faster. I make the tests with two versions of lynx: lynx-2.8.4-18.1 (RH 7.3+fedora legacy patches) and lynx-2.8.5-15 (FC2), and when I run lynx the process take 2 Gb of the RAM (virtually) in some seconds... I don't know where I can report this bug. Excuse me if it's not here. <PERSON>. Santiago, Chile.
78330364-d172-a4ef-3152-b0a824cb2d71
['7ddeca9a-d31b-09de-50b5-c3805d68ccd8']
Hello MapServer Users, I would also like to give a big THANK YOU to <PERSON> and <PERSON> for making the new website possible and so terrific! This effort took a tremendous amount of their time. Thanks also to all those who contributed to this effort. I believe the new site will benefit the user community and foster greater community involvement. Have a happy holiday. <PERSON>
3a50f502-e739-a573-bdc3-ae5663bc99d6
['7ddeca9a-d31b-09de-50b5-c3805d68ccd8']
Hello MapServer Community, We have had a good response in regards to registration for the Open Source Geospatial ’05 Conference to be held June 16-18. Information about the conference is available at the conference website (http://mallit.fr.umn.edu/mum/mtg2005.html). In addition, we have received several abstract submissions for both presentations and technical sessions. Thanks to all those who plan to attend and participate. With the conference date fast approaching, we wanted to inform you that the deadline for early registration is April 14, 2005. You will save $50.00 by registering before this date. We hope you will take advantage of this savings and register now. There will be more notices to come about the conference and we look forward to seeing you all there. <PERSON>
a6a2bbad-4764-895a-4f35-ec6e9803d396
['7de554a5-ff03-6f8b-d912-b5eb31afd800']
Sorry to keep changing the subject on these posts, I know it makes it hard to keep threads intact for the archives. I get the digests a couple times a day so it's sometimes hard to remember what the subject of the last message I posted was. I don't want to change to single emails because I already get hundreds of emails/day at work. Anyway . . . I am making good progress converting most of my company's computers over to linux. Our ltsp/thin client experiment worked well and I got one desktop and one laptop working quite nicely with the debian server. I got in touch with a Novell rep who shared some info about the Ximian desktop. Ximian is slick and easy to use and will work well for my end-users. In the end I think we will go with Ximian Desktop and either Suse or Redhat (because Debian is unsupported and some things are broken). At this point in time I'm reasonably certain that a thin-client network with one server for our sales and support staff, and a few windows boxes for our accounting people will work well. Any recommendations on what to set up as the central server? Here are some thoughts I have: - Needs to be powerful enough to handle several simultaneous clients running Gnome/Xwindows. (shouldn't be too hard) - Storage - I'm guessing about 1-2 gigs per user should be plenty. We will have around 8 users for starters, and would like to be able to expand to 25 or 30. - Security - I'm leaning toward a rack-mount server because they are harder to steal. I think a burgular would grab a monitor or desktop computer before he tried to roll away a big rack. - Backups/Redundancy. <PERSON> mentioned setting up a raid array for redundancy. What would be the ideal way to set up a raid array for our needs? Also should I look into a tape backup system to have off-site copies of our backups? I'm thinking that we can use our existing pentium II and III machines as clients until they need replacing, then gradually phase in smaller, lighter thin clients. And any new machines that get bought can be thin clients as well. That way we can still get some use from our existing hardware and spread the cost of upgrades over several months. Thank you all for your help. Best regards,
2f16c270-d5ef-519e-e61f-000b97dc27be
['7de554a5-ff03-6f8b-d912-b5eb31afd800']
Greetings gang: We just received a new server for use in our Linux thin-client network. I am trying to install Fedora core 1 on it but the problem is the installer can't seem to recognize the SATA raid drives. There are two 80GB drives set up to mirror one another. I've tried every possible combination within the BIOS to get this working but no luck. I think that the kernel that comes with Fedora core 1 does not support SATA so I'm kind of stumped. I read some posts on discussion lists about either A. Building your own install CDs with a custom kernel or B. Disabling SATA and installing as normal, then upgrading the kernel and turning SATA RAID back on. Any ideas? I like plan B better, because I've never created a custom install iso before. Thanks Sean
12d62f43-372d-4619-6da1-5cd03e1f8ab5
['7df075bc-e0bd-49aa-0708-d5150802fead']
<PERSON>, thanks for the info. I just want to do a sanity check here. I'm working with the 2010-06-30 snapshot, based on the assumption (thus the sanity check) that it would be more likely to build for the popular platforms than the head of the svn trunk. Is that reasonable? A few more minor issues have popped up since 2.9.0. So far what I'm seeing looks like the wrong #if defined() block compiling. I won't really know until it builds - it's easy to make build errors go away, and another thing to fix the problem. Cheers, <PERSON>
6e563ef6-1801-5d82-2abb-c84654297384
['7df075bc-e0bd-49aa-0708-d5150802fead']
2.9.x & Cygwin status update. It builds, and I'm tracking down a few (I don't really know how many, but I'm not going to admit that) bugs. A lot of functionality seems to be there, but some issue related to file handling remains. 13 files were affected, and in desperation, I added -D__USE_W32_SOCKETS to the CPPFLAGS. Changing the flags seems ugly to me, but this was needed in just about every file, either directly, or to eliminate warnings. There seems to be a number of files that don't include wxprec.h. Putting the definition in defs.h, included at the start of wxprec.h seemed obvious, but there were MANY warnings. I think it comes down to touching a lot of files, or the command line. I'm open to suggestions. The next bit of ugliness is in file function arguments. Many, if not all calls to file-related functions use wxString's fn_str() method to convert the wxString to the system appropriate format. Wide chars for windows, and multi-byte strings for Unix. In the case of Cygwin, there are functions from both worlds. fn_str() returns a multi-byte string, which is appropriate in the majority of cases, but not for those that map to a Windows call. For the time being only, I've just just used #define fn_str() wc_str() in the files affected. Long term, I'll change these to something like #ifdef __CYGWIN__. However, and forgive me if I've missed the discussion on why it's done this way, but I have a question. Would it not be simpler to provide versions of these functions (any function for which it is appropriate to use fn_str()) that take a wxString& directly? It seems likely that users will be using wxString to hold file paths. Why not allow the file function to make whatever conversion is required, rather than leaving it to the programmer? (Even if the conversion is transparently handled by fn_str()) This solves the problem introduced by <PERSON> in a clean manner, and to me, seems a little friendlier. Of course, I'm talking about overloading the existing functions, leaving them for backward compatibility. Please let me know what you think. Cheers, <PERSON>
47744cbf-cee7-8e56-ba51-d60c85093179
['7e0f29cc-b64b-d64a-aef4-cca32af62ec9']
You still haven't mentioned (as far as I can see) what your system IS? It could be you need to add some semi-optional package to it? As far back as I can check, this file should be in /usr/include (Redhat AS3 Update 4, Fedora 7) so it looks like your OS might have something missing. The name of the call you want to remove is "wait_for_child_to_die" Can you imagine its removal resulting an a "happy ending" for your system? If the name is accurate, eventually you could fill up your process table. Good luck, -craig
16c1ae75-513c-11b5-5406-1c34efcfa981
['7e0f29cc-b64b-d64a-aef4-cca32af62ec9']
I've continued to try an investigate the root cause of this, and the last run behaved slightly differently - the parent process seems to have terminated, and there are more messages in the radius log. There were four (4) hung processes left over. I have attached the radius.log file below, as well as gdb sessions for the hung processes showing the results of the gd 'bt' and 'list' commands. It looks like <PERSON>'s initial idea that the hung processes are a result of running the acctstop.sh process are correct. I've tried looking at the code to see if anything 'leapt out' at me, but the logic is quite clever, and dissecting it from the middle is quite a challenge. I am hoping that the gdb output might prove helpful to someone already familiar with the logic flow. It seems I can reproduce this issue within 24 hours, so if there is any other information I could gather, please left me know. Thanks, <PERSON>
c1c326c8-bd3a-b56e-8602-829c37e9ca98
['7e17d1d4-59d7-a904-fc96-cb3de8094fcc']
Folks- Can someone point out what happens during a node failure. Here is the Specific usecase: - Cassandra cluster with 4 nodes, replication factor of 3 - One node fails. - At this point, data that existed on the one failed node has copies on 2 live nodes. - The failed node never comes back First question: At what point does Cassandra re-migrate that data that only exists on 2 nodes to another node to retain the replication factor of 3? Second question: Given the above case, if a brand new node is added to the cluster, does anything happen to the data that now only exists on 2 nodes? Thanks.
e83526ed-79a7-7f38-105e-54a8d2e6ab67
['7e17d1d4-59d7-a904-fc96-cb3de8094fcc']
Folks- I'm finally upgrading the grails-cassandra plugin for 0.7, and wanted to understand a bit more on the usage of the Cluster and KeyspaceOperator . Is the cluster object retrieved from HFactor.createCluster() thread safe, and is the KeyspaceOperator required to only be in one thread? Or are both thread safe objects? My assumption is I can call createCluster any time as it will only create one cluster object. I'm trying to decide if the KeyspaceOperator should be unique to each thread (threadlocal variable) or unique to each web request. Thanks
7c8a6dbc-c371-7d6f-31bf-f4c68c6fd91e
['7e184d4a-fb07-3472-d7c9-0fb8ec3d8f47']
Hi Guys; It's been a long time since I have a time to return and code with wicket (long time is almost 3 weeks, I'm wicket adicted) :) Anyway, I have a problem, I have a Panel which I add a ListView to it, each Item in the ListView is a Panel, 2 types of Panels, one is just a row (Labels and link), and the otherone contains FeedBackPanel and a Form. The problem is that the FeedBackPanel doesn't render and it throw an exception if I add it to the Form Panel, which is a child for the ListView, but when I move the FeedBackPanel outside the ListView it works fine. Am I missing something? FeedBackPanels can't be in a Panel in a ListView? The code is simple, if needed I can send. Regards, <PERSON>
0bb3a899-ec76-2be5-414c-43c1ac91da13
['7e184d4a-fb07-3472-d7c9-0fb8ec3d8f47']
Hi, I'm new to netbeans (previous eclipse user), now I'm still exploring my way around, and I like what I see :) I'm trying to evaluate netbeans based on my needs by doing a small project, a dictionary of verbs. I have this database of verbs that I worked on, and I want to build an Interface for it. When I wanted to check if everything is working fine on the database side of the project, I could type russian word in the output window (console or whatever it's name in NBs) without a problem, but when I got the feedback (which is in russian) it print messed up chars. Now, I have the -Dfile.encoding=UTF-8 in the parameters, and when I test the program using Mac Terminal I get the right output in russian. Any advice, I hate to go between NBs and Terminal just for testing every time I want to make some changes. Thanks in Advance.
b11674e8-92c4-b045-d846-ec130be7c482
['7e1bcbbc-a496-6b16-ae34-fab89899cef6']
Ooops, deleted the post before I saw your last comment..I'll post again below. I'd love to get involved with some testing for the next release! Is there any official way to get involved with this kind of testing? I can also keep a lookout here and elsewhere online for questions that I may be able to help with. Also considering writing some updated tutorials for a blog..there are some very helpful tutorials online, but most of them are several years old at this point, and are a bit outdated. I know this is making a real mess of this post, but here is the original question for future reference: Hello! I just deployed a mezzanine site, everything in the admin works fine locally, but now that it's deployed I'm having 2 issues with the admin dashboard. First and most pressing, I can't seem to get any images to upload on any pages, like the gallery page, for example. When I click to add a new image, a separate window opens, as usual. Everything works as expected until I click "Browse" and click the image I want to upload. At that point, nothing happens and I get an error in the browser console that says: "TypeError: resultElement[0] is undefined". I do see a warning in the server error logs that says: "FutureWarning: In future versions of filebrowser-safe, the `path` property will be absolute. To continue getting the same behavior please use the `name` property instead." Thought it may have something to do with having Debug = False, but I changed that to True and am still having the same issue. My 2nd issue is with getting TinyMCE to work on a RichText page. It's currently showing up as a normal text input field, no errors on the server, but one JS error in the browser console that says: "TypeError: $elements.tinymce is not a function". I may make a separate Post asking about this one, but I included it here since they are both JS errors, so they may or may not be related. Any thoughts? Thanks in advance!
ec788f22-3d5c-8113-fbe9-d50b460b53a9
['7e1bcbbc-a496-6b16-ae34-fab89899cef6']
Hello! I just deployed a mezzanine site, everything in the admin works fine locally, but now that it's deployed I'm having 2 issues with the admin dashboard. First and most pressing, I can't seem to get any images to upload on any pages, like the gallery page, for example. When I click to add a new image, a separate window opens, as usual. Everything works as expected until I click "Browse" and click the image I want to upload. At that point, nothing happens and I get an error in the browser console that says: "TypeError: resultElement[0] is undefined". I do see a warning in the server error logs that says: "FutureWarning: In future versions of filebrowser-safe, the `path` property will be absolute. To continue getting the same behavior please use the `name` property instead." Thought it may have something to do with having Debug = False, but I changed that to True and am still having the same issue. My 2nd issue is with getting TinyMCE to work on a RichText page. It's currently showing up as a normal text input field, no errors on the server, but one JS error in the browser console that says: "TypeError: $elements.tinymce is not a function". I may make a separate Post asking about this one, but I included it here since they are both JS errors, so they may or may not be related. Any thoughts? Thanks in advance!
77b4d988-1c33-841f-5962-bda58b746bb0
['7e24d9b0-030f-1ea3-1153-dff33110aa6e']
Hi, Any attempt to invoke gnome's (current repo, every gnome app) help results with this pop-up message: *There was an error displaying help:* There was an error launching the default action command associated with this location. Is is just me or the gnome help system is absent from Arch? If it's intentional, please give me a hint as how to include it. Thanks <PERSON>
4ea1e9c0-af01-1bf2-a8da-f7d0a30b6242
['7e24d9b0-030f-1ea3-1153-dff33110aa6e']
Dear delicious folks, As of this morning, the linkroll script http://del.icio.us/feeds/js/USER/tag1+tag2 doesn't return all the links tagged tag1 and tag2 anymore. E.g., there are seven links in my http://del.icio.us/ognjen/blog42+science, but when I call them through http://del.icio.us/feeds/js/ognjen/blog42+science I get only two of them. I played with it in various circumstances -- try it on http://del.icio.us/help/linkrolls -- and it's reproducible, although I couldn't really pinpoint the criteria for omission. Please make it work again, it broke my blog archives which I based on my delicious linkrolls :( Best Ognjen
581f35fc-fc77-23fb-0dfd-ed48bbcff872
['7e36f497-3d02-c471-92e0-284998169657']
Hi, Is there a way for OpenLaszlo to support HTTP PUT and DELETE aside from the usual GET and POST? Doing it manually in plain JavaScript is relatively easy-- I just have to specify the verb in XMLHttpRequest.open()-- but I can't seem to find a straightforward way for doing it in OL. Also, is it possible to send raw HTTP headers to the server? If so, can I do it in SOLO mode? =) Thanks!!!
00034f03-ddf6-e274-7a92-d8dd05fc078a
['7e36f497-3d02-c471-92e0-284998169657']
Hello, I'm a bit curious, has anyone of you here tried implementing REST architecture with PHP and OpenLaszlo? I'm curious, did you use HTTP PUT for updating the data and HTTP DELETE for deleting the data? Do the major browsers support them? In an ideal world, all four HTTP verbs should probably be used; however, in actual practice, I have this strange feeling that I'm limited to GET and POST only... Thanks,
8a987865-b39f-a129-a35e-175b7a4912a7
['7e4e20ed-92c7-6396-71c2-ce12aeba61e1']
Greeting My name is Miss <PERSON> I Saw Your contact information at the site today and after giong through it i Become interested in you, so if you do not mind, I will like you to contact me back with my private email That I know can give you my pictures for you to know Whom I Am, although the flesh online searching for a true and honest man .. I believe we can move from here! Remember ..., color, language or distance Does not Matter but Love matters a lot in life. Best of my Regards
f9fe1431-b0fa-e71a-5d4d-b499434091dc
['7e4e20ed-92c7-6396-71c2-ce12aeba61e1']
Greetings My name is Miss <PERSON> I Saw Your contact information at the site today and after giong through it i Become interested in you, so if you do not mind, I will like you to contact me back with my private email That I know can give you my pictures for you to know Whom I Am, although the flesh online searching for a true and honest man .. I believe we can move from here! Remember ..., color, language or distance Does not Matter but Love matters a lot in life. Best of my Regards
af245f38-cce8-4ce4-43b7-7780cd1612aa
['7e54e57a-bc60-0aa2-3c22-1fbe454a175d']
IIRC the /dev directory contains an entry for every device currently known to developers and is included whether they exist or not. Therefore there will be an entry for every IDE disk and every SCSI disk and an entry for each possible partition on them! On the offchance that you get a device that isnt listed in /dev, there is a way to add an entry. As for not having a /dev/hda9 when you went to mount it, I might leave that question to someone else more knowledgable. <PERSON>
148e9d11-1a1a-28e0-a0a2-756fb96dbe4b
['7e54e57a-bc60-0aa2-3c22-1fbe454a175d']
hi list, how would one go about converting M$ office docs to pdf format (using open source and linux of course)? Ideally what I would like to achieve is to place the office doc (word/excel/ppt) in one directory and pick up the completed conversion in another a short time later. So basically I am after a batch process that I can either get to detect the presence of the file in the source directory and act, or I can cronjob the batch process every minute. I have considered <EMAIL_ADDRESS> but it is not linux based TIA <PERSON>
1d029cc8-0b76-3325-24c2-f4f002d13168
['7e6673e2-6531-6b4e-c828-3a27f666164a']
This patch removes the const from the name strings in SANE_Device. I didn't commit it because it might breaks stuff. However, I believe the new definition is actually correct. On my tree, the number of warnings drop from 137 to 94. It also introduces a few more warnings, but these can be fixed too. If no one objects, I will commit it in a few days. <PERSON>.
9ab2d428-1a42-540b-45b5-b23395b6c5cf
['7e6673e2-6531-6b4e-c828-3a27f666164a']
The scanner seems to respond well at first and then it fails when the driver request the image data. It's possible the pkt passed to windows is invalid. Is your windows scsi driver up-to-date? The current logs are not enough to understand what's happening. Could you make a new trace with SANE_DEBUG_SANEI_SCSI set to 255 (as well as with SANE_DEBUG_MICROTEK2)? <PERSON>.
c7cc2057-6bd9-29f3-a79c-b29f07cab80f
['7e6c8585-210e-2c1f-727b-4697e7bb9cf6']
Hi Everybody, RoadRunner rr.com has us on their black list. We never received notifucation why but that's not my beef. I want tog et off but never hear back via email past the auto response and never get anywhere with their phone system. Does anybody knwo how to get in touch with their mail server suypport people? if so, can you share the details with me? Thanks <PERSON>
3dff03e9-1b1a-f153-f6f2-38c3dc4a0e9a
['7e6c8585-210e-2c1f-727b-4697e7bb9cf6']
Hi. My friends parents have an account with this company (Satellite hookup). The subscriber location is in Spain. I have no idea where the ISP is based. They have been very frustrated in getting support for a flaky connection. I was wondering if anybody knows this company and where I might focus my efforts in obtaining higher level support for these paying subscribers. Thanks <PERSON>
54500235-f1c5-f1ed-63bf-67ddedee34b1
['7e700d01-ba1d-643e-5adf-358c3b8d6848']
I have an app, where two servers communicate over http. The issue is that, with some load of 500 concurrent virtual users, the server is running out of sockets to open new connections to the other server... btw, this is a windows environment... Btw, keep alive connections is turned off. Any ideas on how to get this number higher ? <PERSON>
ee1ef82f-3c39-cbd0-8149-24e2c5067c5d
['7e700d01-ba1d-643e-5adf-358c3b8d6848']
I have a servlet, and would like to add a cookie inside the request object before calling a api that would use the request object. Could anybody help me on this, maybe with some sample code ? I could find some ways on adding the cookin inside the response, but not really inside the request TIA
cef3491d-0d8c-8d0c-a8f1-8a0265f90a58
['7e7ae393-e2e7-cc32-1007-689bfdf66ada']
Hi Everyone, It seems this is a good time to make a formal request to get the ball rolling, so to speak. This issue has been formally going on since September and we're now more than half-way through November. Beware, I am about to start paraphrasing, so please don't shoot me if I'm less than 100% accurate. At this point we have <PERSON>, who has been adamant about his position, yet hasn't really clarified his position or proposal for moving forward other than to say he will keep on as he has been (albeit in a slightly less time-consuming manner than before) if and only if he can do so sans <PERSON>. <PERSON> would accept or deny patches at his sole discretion, much in the manner that he has been up to the point where this argument began. This would seemingly only serve to solidify his position that <PERSON> should have no say in anything DBIC-related. <PERSON>, on the other hand, has put together a plan for moving forward that would create a core team and a voting system that would allow the community to have a say in what goes into or stays out of DBIC. It's a system that should allow for peaceful passing of the torch, so to speak, if current first-come/co-maints decide they can no longer participate for whatever reason. It's a flexible system that could see more hands on deck for DBIC. This plan would be sans <PERSON>, not by design, but by his own declared wishes. You might ask why I'm writing this... I'm doing so because it's been going on too long and just plain makes the community look bad. We have one solid plan and one unknown plan that keeps getting pushed back with a promise to fill us in later. So, can we please either: A: Set a firm cut-off date for <PERSON> to publish his full plan? B: Move forward with a vote for either <PERSON> or <PERSON>'s plan as-is? Thanks, <PERSON>
d7f880ac-c566-4f9c-8468-9f577a5e3fc5
['7e7ae393-e2e7-cc32-1007-689bfdf66ada']
Hi Everyone, There's an open issue and PR on GitHub to remove LWP::Protocol::GHTTP from the main libwww distribution and package it up as its own module. It seems like people think it's a good idea and that it just needs to get some momentum going. https://github.com/libwww-perl/libwww-perl/issues/80 https://github.com/libwww-perl/libwww-perl/pull/81 An attempt at separating it out has been made that could be taken over and maintained by the same team currently maintaining libwww. https://github.com/genio/lwp-protocol-ghttp The question is: is anyone still using the GHTTP protocol? If so, could you test that attempt to ensure that it works properly and that its test suite covers your use cases? There aren't any tests currently in libwww to pull into the new attempt, so the current test set may be a bit naive. Thanks, <PERSON><IP_ADDRESS>Protocol<IP_ADDRESS>GHTTP from the main libwww distribution and package it up as its own module. It seems like people think it's a good idea and that it just needs to get some momentum going. https://github.com/libwww-perl/libwww-perl/issues/80 https://github.com/libwww-perl/libwww-perl/pull/81 An attempt at separating it out has been made that could be taken over and maintained by the same team currently maintaining libwww. https://github.com/genio/lwp-protocol-ghttp The question is: is anyone still using the GHTTP protocol? If so, could you test that attempt to ensure that it works properly and that its test suite covers your use cases? There aren't any tests currently in libwww to pull into the new attempt, so the current test set may be a bit naive. Thanks, Chase
aeb96179-2962-78b7-ba5f-70bb0432d350
['7e93fe0f-5a7f-a7a2-3866-e4c4860f1f3c']
I am the admin of this group. I am as fed up with yahoo as you are. Since the all encompassing changes a while back the complete admin side is broken. There have been endless complaints by admins from hundreds of groups trying to get yahoo back to what it used to be. It is a slow process and I do not know whether it will be successful. The bottom line is that all free services such as yahoo and google nowadays rely on advertising to cover the costs. That means there are bound to be adverts if you read posts on the web - possibly less so if you use email. We have a bout 500 members in the group and while I would like to think that migtating to google is 'just a few clicks' I very much doubt that that includes migrating all 500o+ members. For any one who thinks it is that simple, I am happy to make them a co- administrator and give them the task of migrating us all. Cheers
510c9b77-4257-d207-fac5-89d0ffc35344
['7e93fe0f-5a7f-a7a2-3866-e4c4860f1f3c']
I an not quite sure what your objective is in this post. When I set up this group, many years ago, I contacted the then developers and they agreed this group was a useful resource because it provided them with feedback on a range of topics form bugs to feature requests. I know that since then it has been regularly monitored by the developers and the bugs and suggestions posted in this group have been acted upon. Like the membership here, the team of developers has changed a lot over the years, but they do still monitor this group. The fact that one particular developer is not actually a member of this group seems to me to be of little importance. Cheers
a14eb42e-4ca4-252d-0ab3-ddec3063b756
['7e9af94d-a420-4f09-a5fa-9d70159fd98c']
hi, i have an idea.. how `bout if i create a topic in Wiki called "NiceLang" and start it off by copying the content of the www:manual in there? then we would need to discuss the language in establishing more content (completing the manual). if so, should this be on nice-devel or nice-info? unless of course, <PERSON>, you want to keep the manual where it is? also, i'd like to make the wiki web look like the nice website. (i have filesystem permissions to do this, but will create a test environment for your approval before making any changes.) i've looked into the wiki stuff a bit about this, but the answer will require my experimenting with wiki (which i can do on another sf proj that doesn't have a wiki-web right now).. <PERSON>
cc8a688c-9523-830a-6062-d0836be2f27c
['7e9af94d-a420-4f09-a5fa-9d70159fd98c']
hi <PERSON>, (i'm using jswat-1.6 with sun jdk-1.3.1_03-b03 sparc-u2/solaris-2.8/patchlevel-108528-14) a picture's worth a thousand words... http://www.syntelos.com/john/jswat-1.6-err.jpg [180Kb] on the left, in the locals table of jswat, you see "args": an array with length zero. on the right, in the source pane, you see that the jvm is in a code block for "args.length != 0". ((please don't tell me to install jdk1.4!)) comments? john
65af77ff-6a8c-bed2-b6c4-a643c8210823
['7ea5829c-6e71-bfb7-caaf-34f4b047d8a8']
<PERSON>, I'm not sure if all of the same client-side components get installed with the default server install. Can you locate the oci.dll file that TOAD is looking for in your %ORACLE_HOME%/bin directory? If it is there, then is that directory in the search path for your PC? If that doesn't help the problem, then I'm sure doing a full client install will fix the error. <PERSON>...
35511bef-e2f8-40ea-16a0-a601ad14e92d
['7ea5829c-6e71-bfb7-caaf-34f4b047d8a8']
Hello <PERSON>, Do you have a full 32-bit Oracle client installed on the PC running TOAD? The readme file installed with TOAD give some tests and corrective actions for some of these kind of problems. Also, the SQL*Net Help button at the bottom of the login/connect window provides some additional diagnostics as well. Click on SQL*Net Help then select the Advice button. <PERSON>...
cbb195d3-809c-7f0d-cc42-cbc7b520dea1
['7eb84bb7-a7ac-af50-a9ac-e75d914830fc']
Hi, I have an application that is sending out TCP data to several client using the sequential API. When a client disconnects gracefully, netconn_write returns a negative value, and I can close the connection. However, if any of the clients locks up (i'm using embedded clients), or a cable gets unplugged, etc. netconn_write keeps queue packets until it fills up the buffer, and then blocks. I've been playing around with debugging, and so far all I get is lots of messages about the queue being full. My question is what is the proper way to deal with ungraceful disconnections using the sequential API? Am I doing something wrong, should netconn_write return an error for ungraceful disconnections, or is there any other way to check if for connection timeouts? I'm using FreeRTOS and a cvs version of lwip from about 2 weeks ago. <PERSON>
ac34d14d-1a27-6c00-15ce-12eff3871dea
['7eb84bb7-a7ac-af50-a9ac-e75d914830fc']
Hi, I'm a senior in electrical and computer engineering at the University of Missouri. As I'm on the 4 1/2 year plan, I need to find something to do this summer. I've worked with lwip in the past on an academic project, and I'm really interested in working with embedded networked systems in general. So I though I would ask if anyone needs an intern for the summer? If there is any interest, I'll be happy to send a resume. Thanks
8dff3259-2eec-528f-7d7b-f22d6099841e
['7ebba8ad-6221-59b3-5bfa-c4c3ddf0889f']
Hi, I used the software GATE on my thesis here in Brazil. However, I used texts in the English language in this work. To continue my work, I need to process texts in Portuguese language. I've noticed that the GATE don't have a plugin for parser texts in the Portuguese language. I would like to know if the development of a plugin for the Portuguese language is very complex or if there is a template to guide me in building this plugin. Best, <PERSON>
da0e457c-c220-797d-df07-11f817c4c758
['7ebba8ad-6221-59b3-5bfa-c4c3ddf0889f']
Hi!, In an old post there is an affirmation that in most applications we should not use parsers because they take long time and doesn't give great results and that we could achieve good results using taggers with NP and VP chunkers. Nowadays I am considering using the GATE Predicate-Argument Extractor Component (PAX) plugin. The PAX plugin generate the triple subject-verb-object of a sentence. I need to get the polarity, the source and the target of an opinion about a product. Then I’ve trained a classifier to classify a sentence in positive or negative. The next step would be to determine both the source and the target of the opinion. Then if I use the PAX plugin I would get both the source and the target of the opinion expressed in the sentence. My doubt is How I could get the same information using only taggers with NP and VP chunkers? Best regards, <PERSON>
d90c0366-d3bc-a840-c7d8-63a1e629a49a
['7ed5e76b-c172-d132-f0cf-9110c5122770']
Hi <PERSON>, I have done some more testing on this and giving up. It is very fuzzy. Seems to work on MacOSX and Linux hosts with Qemu 1.7 and Qemu 2.0rc0 when the load of the system is under 2-3. If it is higher sometimes the deadlock occur. So I think we can close the bug and hope nobody is cross-compiling in the background a lot of stuff, while using qemu-system-sparc64 with virtio ;) Just tried 2.0rc0 on Maverick with a load of 8 and deadlock happens. I can provide an kernel and filesystem if you are interested to debug this ;) have fun <PERSON>
65e20783-7a66-bfe3-16ad-b402f9dd9826
['7ed5e76b-c172-d132-f0cf-9110c5122770']
Hi Squid community, we provide a Linux router with a sandwich setup using squid 3 and dansguardian for german schools. The configuration of ACL's is configured in a Windows ADS server and can be dynamically reconfigured with a management application. When a teacher for example configures to allow access to the internet with black listing some sites, the management application connects to the Linux router via secure shell and executes "/etc/init.d/squid3 reload" to make the changes an effect. This worked fine for a long time with windows xp clients and internet explorer 7/8 using NTLM authentication. But nowadays Mozilla Firefox, Safari, Internet Explorer 9/10 and Chrome is getting more in use. The first problem is that the static configuration of 5 ntlm authentication helpers is a bit too small. Most of the browsers trying to open 7-10 connections to the proxy in parallel while surfing just one website. This kills squid with the too many authentications error. To fix this problem I updated the Linux router software (Debian/Knoppix derivate) to use Squid 3.4.x which dynamically starts more ntlm auth helpers when needed. This worked fine in our tests. Now comes the second problem, when the teacher reconfigures the proxy to close the allowed connections for one class, all opened connections are still alive. I think the reason is that we use the default persistent connections for server and client. When we disable it, the access to the internet is directly closed, but the entire performance of the proxy seems to be bad. And it is no solution for any connections, which using SPDY. What do you think? What might be a solution to this problem? I can't restart squid when changing the ACL rules, because then all users in the network would be disconnected. I am out of ideas, any help is really appreciated. best regards <PERSON>
97c56c59-78cf-ce90-5dd3-f4b3c4488a48
['7ed7ef27-d1e5-0951-80fb-381d8249c50d']
Now that the topic has canged... Please don't forget that unless you buy a PC in parts or you are already an enthusiast, your PC will come bundled with Windows. If the average Joe/Jane could get that changed, the price of the PC would drop, but marginally, so perhaps the question is, or could be something along the lines of: "How do we get the average Joe/Jane to consider Linux? I looked at this often and though it would be overlooked by business as usually these guys don't spend a lot of money and the money/hassle equation is skewed. A conversation with some people at Novell lead me to understand they are almost giving the NLD away to the schools and there may be a deal cut for any students wanting to take the software home as well. A good start, but how about this approach: We all know the biggest cost of running Windows in the small business to individual profile set is that Office package and any unusual requirements, like Project, Visio a Database. The OS really is a small cost in comparison. How about if the Herald likes the article about the Linux Desktop, we push an article about Open Office or GIMP or similar. My way of thinking is to get users to understand that in the Linux/Open Source world, stuff is damn near free and stable by running the apps now on their exisitng systems with no real cost or disadvantage, then, over time, those users will come to trust open source and a slow win could take place? I get Office XP for free, but I hate it for a lot of reasons and near the bottom of a long list are cost and proprietry related issues (I consider my skill to be at the level where formatting is not a problem). <PERSON>
2254d328-be7c-17ca-a27d-dc167629596f
['7ed7ef27-d1e5-0951-80fb-381d8249c50d']
Good Day I am looking for VISO and PROJECT replacements for Linux. I get a great deal of requests to review and make changes to these proprietry files and I find I have to now use CXOffice to run these in emulation. Are there any good replacements or applications that can import/export for linux for these two apps? Project Replacement - Ideally, I can import work and export with no major problems, but I may settle for an app that can import and maybe export to JPG or GANT or WBS document or some readable format for the project team. Visio Replacement - Ideally as above, but would be okay with an app that behaves similarily and I don't mind creating my own library of devices to 'draw' with as I seldomly use many differing types. I tried to google and found a few viewers only and I tried Sourceforge with little or no real clues. Any ideas? Rgds Gund
b9f4c53a-2961-db3a-c600-0f329866e125
['7ede84b7-f530-e18f-f583-b73136682a45']
Hello, I'm thinking about moving a current project to netbeans platform. The main reason would be that the plaform has all the GUI part done and I would like to focus on the actual logic part, the part that is also quite test-able. I've read some docs about the platform but there seems to be not as much documentation as I would like. I'm also printed some of the OpenAPI files. I would like you to tell me where to find some more resources about developing on top of the platform. I would also like to find some description of all the XML formats that are used all over the place. I'm sorry if this seems easy to you. I've also thought about using the Platform a couple of months ago but I gave up since there I couldn't quite get a hang of it and saw no increase in productivity -- actually I was reading most of the time about the platform, nothing else. Regards, <PERSON>
17540434-7ec9-9b72-0ce2-e479527bb979
['7ede84b7-f530-e18f-f583-b73136682a45']
Hello, I'm just wondering how may I control the "Add" string that gets concatenated to my NewType getName() for any node with NewAction cookie ? I'm using NetBeans 3.6 and I don't see anywhere in the API something about this. It should just take the name of my NewType and add it to the popup menu. Basically I would like to just set it to an empty string or have some control ever this behaviour. This thing also conflicts with my module's i18n. Regards, <PERSON>
bc8bbd74-e6e1-39cc-d643-874b979fdbbf
['7f0a339f-59f8-7049-7229-f933f876c35f']
A vast solar pv array the size of an Airbus jumbo-jet's wing-span generates about enough power to drive a motor scooter. That's what I learned from the solar airplane experiment that flew in Switzerland this past week. To those who think they can recharge their Prius plug-in hybrid from a rooftop solar pv array, I say... Good luck, -dl
2a39dbcb-a5c4-ff04-87c4-0770efe29e19
['7f0a339f-59f8-7049-7229-f933f876c35f']
In an interesting development, WSJ has changed the title of this article from "Sweden Mulls Lifting Ban on Nuclear Power Buildup" to "Sweden Set to Overturn Ban on Nuclear Power", and updated content to include "Sweden says it will overturn a ban on building new nuclear-power stations". Also, "Italy, ...moved last year to lift the ban. Poland, ...has announced plans to build its first nuclear-power station. The U.K. last year gave the go-ahead for a new generation of nuclear-power stations to replace the nine that are due to be retired by 2023." And, "Slovakia, moved to reopen an obsolete, Soviet-type nuclear reactor... Similarly, Bulgaria sought EU permission to resurrect two old reactors of Soviet design that it mothballed when it joined the bloc two years ago." It should be noted that all Soviet-designed reactors have been upgraded since Chernobyl - there are no Chernobyl-style RBMK reactors operating anywhere in the world today, according to IAEA. Sweden was wary of nuclear power before the Chernobyl accident, due largely to its unknown "fear factor". The Chernobyl "worst case" accident happened not far from its national borders, killing several dozen Ukrainians, sickening several thousand, and frightening millions all across Europe and the wider world. Now Sweden is seriously considering the resumption of nuclear power replacement or expansion, in light of Russia's natural gas policy with Ukraine, a major player in transshipment of natural gas to Sweden and the European Community. Sweden appears to have reconciled the risk of civilian nuclear power production - both measureable and imaginary - with the real need for heat and power production and distribution in northern latitudes. Political ideologues the world over should take note. -dl
2429e162-307d-9f97-0e12-a6c796320454
['7f131cdc-6342-e597-57d5-7e800d5a7bfb']
Hi! I'm making a program that has only a widget that's a GtkDrawingArea. In that widget I draw my own objects. Well, I want it to be refreshed as fast to produce some smooth efect in the objects that are moving inside. For drawing the objects inside i've put a expose callback function. And, until yesterday, I was using a timeout callback to queue a draw event. Timeout set to 30 ms. It was very cpu consuming. So I changed it, to queue draw events on a idle callback, if an update flag is set, and I set that flag from a timeout callback. Why? Because the idle loop was executed too many times, so I have this restricted to a timeout.. Well, at this point, the problem is that it keeps using too much cpu! :-) so, i don't know what should I do. I've seen that there are some gtk's idle_add_priority function, but I don't have that one in python-gtk2 2.0.0-1, debian's module. And also I'm not sure if using that is the right way to do the things. Maybe this question is more gtk-related than pygtk. Well, anyway, I think that with idle&timeout implementation that I did, the cpu wasting I have is constant when I draw more objects on the DrawableArea.. Well, that's all, thanks in advance! <PERSON>
9509f461-c023-3ad0-8c40-34cdcff0e73c
['7f131cdc-6342-e597-57d5-7e800d5a7bfb']
Did some version of python had DECREF() implemented in python? Or, at least, some callback / overload posibility from python, like, ob_type->tp_dealloc ? I think that with this, someone could implement, in python, the object-finalizators when an object goes out of scope.. Has sense that I make some stats to see if it's time expensive? See ya, <PERSON>
978f076c-a23a-defe-bee6-43f6c5e07cb0
['7f193d78-5fa2-03d8-3f4f-cc375860f6e9']
I have a student just finishing a programming languages class. The course is taught using OCaml and is mostly focussed on statically-typed PLs. The student is interested in doing a senior thesis in PL. I've asked him to take a look at Web Assembly. I'm wondering if there is a project to write a wasm back-end for the Elm compiler and if so, whether or not some piece of that project might be reasonable for a student to take on. Thanks for any leads. <PERSON>
f6b297f8-0115-0c77-9d24-bb4b102d21a2
['7f193d78-5fa2-03d8-3f4f-cc375860f6e9']
Apologies for replying to a digest, which I'm sure isn't the way to go. And apologies for those of you who are already familiar with this. In any case, I'm now teaching an intro-to-CS course at Boston College using OCaml. I'm under the impression that most other courses using OCaml are PL courses (or data structures or FP courses). So maybe my recent experience will fill in a gap. Generally speaking, my experience teaching OCaml in this pilot course has been very good, I won't rehearse the details. But the logistics have been fairly painful and an integrated OPAM package might reduce the pain. For some basic information: 33 students enrolled, 22 owning macs, 11 owning windows-based PCs. Given the choice between emacs+tuareg or eclipse+ocaide, most of the mac owners opted for emacs. Some of our problem sets involve graphics, some involve animation, some would use audio were it available. The Graphics module was a problem; it uses X11, but Apple stopped bundling X11 with OSX a few releases ago. Then, the subsequent installation of Quartz (X11) is placed in the wrong directory so symbolic links were required, not great for beginners. On the Windows side, it turned out that many of the Windows-based students failed to install the Labltk module. As I understand it, Labltk is no longer distributed with OCaml. Labltk itself is painful (IMHO) so we spent too much time scrambling to patch things up (and when we got it working, we had GUI code that looks like FORTRAN and the students were wondering where all the elegant modular code went.) So for the purposes of this particular class, I'd very much like an easy (i.e., clickable) installation with some parts of a multimedia library (at least graphics and simple animation but hopefully audio and UI elements too) that is easy to use and which is consistent with OCaml's native style. I agree with <PERSON> that targetting javascript would be better than targetting X11. My students also struggled with OCaml's error reporting, both for types and syntax, so any package that improved error reporting would be helpful to introductory students. Thank you, <PERSON>
e034bc7b-2f7c-f488-6532-bf271769bb1b
['7f20d8ea-547f-6f6e-f232-b3cc3c2da297']
Hello, I have added the following line to my Maui config: CLASSCFG[test] FLAGS=ADVRES:test.0.0 in hope that it would make jobs submitted to queue 'test' always use a standing reservation (which has a BYNAME attribute). However, the submitted jobs don't receive this flag (checkjob shows that the only flag on the job is RESTARTABLE). In fact, the FLAGS parameter seems to be ignored completely (I also tried with FLAGS=PREEMPTEE, FLAGS=DEDICATED). The configuration line with CLASSCFG[test] is not ignored because it works when I set PRIORITY=10000, for example. The log file does not reveal any shocking information. I can force the flag to be set using qsub -W x:FLAGS:ADVRES:test.0.0, but I would like the queue to create this attribute automatically. Any ideas? Best regards,
ae4fa94a-09d8-331e-1586-7cefe0130328
['7f20d8ea-547f-6f6e-f232-b3cc3c2da297']
Hello, Now that I'm able to get 100 processors by just asking for nodes=100, I'd like to get 100 processors from nodes with InfiniBand cards. I tried the intuitive thing: nodes=100:ib (where ib is a node attribute). Unfortunately, this just tells me: qsub: Job exceeds queue resource limits MSG=cannot locate feasible nodes Of course, I checked that there are enough matching nodes and processors. Does adding the 'ib' attribute suddenly change the meaning of the specification from "I want 100 processors" to "I want 100 nodes"? Is there a way to ask for "processors on InfiniBand nodes" without having to specify the exact geometry per node? Does a single document exist which explains how these specifications are interpreted? Thanks for your kind support so far! Best regards,
b5be0dea-07b5-fdfb-9c81-f9c2b4cb2004
['7f25faf1-87d7-ac0c-1d6d-e745b02c5a53']
Dear Subscribers, We hope you might find the following title of interest from Duke University Press: http://www.combinedacademic.co.uk/black-and-blur Black and Blur <PERSON> "In this profound work, <PERSON> makes a sustained and thrilling attempt to think philosophy and music together, which is also to think philosophy as music, which is also necessarily to think music as philosophy. In its capaciousness and in its persistent, challenging, dazzling intelligence, Black and Blur is a book that is worthy of the reputation and influence of its author. Its publication is a major event."– <PERSON>, author of Epistrophies: Jazz and the Literary Imagination "Poetry and philosophy can't convincingly be condensed or speeded up. To feel each fully they must be read and sounded in time. Such is the case with <PERSON> words. Black and Blur allows and opens this feeling-mind-sense-body splitting possibility, in its stunning and generative appositionality of aesthetics and life. An intertwined, journeying flight, examining and composing variegations distinctly, yet together placed to read and imbibe. Beautiful, sobering, intricately pleasurable, delicious, and necessary as a way to now begin again delving into the specific immense variegated borderless blur of black that is profound, wide, and bittersweet."–Renée Green, artist, filmmaker, and author of Other Planes of There
8d237701-57a7-3eeb-7d11-0c22d32b6b44
['7f25faf1-87d7-ac0c-1d6d-e745b02c5a53']
Dear Subscribers, We hope you might find the following title of interest, from the University of Minnesota Press: http://www.combinedacademic.co.uk/foucault-on-painting Foucault on Painting <PERSON> "<PERSON> is certainly one of the most intellectually intelligent and reflective art historians I can think of. <PERSON> on Painting is a clear, deeply thoughtful, and perfectly written contribution to the important field of intersect between art and philosophy."—James Rubin, Stony Brook University
03c0e0f9-309e-20a2-4fa7-d632fc746dc4
['7f2d7998-7612-7f4d-3448-bfa67e07077f']
Hi developers, Here is a patch to improve the response time in using 'Internal SSH' for 'ext' connection type. In the current implementation, for each remote executions 'cvs server', ssh connections have been established, and you know that the establishment of ssh connection will take much of CPU time and memories for DH key exchanging. In the attached patch, an established ssh connection will be reused to save computer resources. Please try it. PS. Do you have a plan to support public-key authentication? If you have, I'll write you a patch for it. Sincerely,
b0ea1a36-6c81-f6da-26c1-b81f6e9ef4b4
['7f2d7998-7612-7f4d-3448-bfa67e07077f']
Hi there, I have heard that some Ant users have 'Auth fail' exceptions in using scp and sshexec tasks with their correct password. I guess that their remote sshd does not support 'password' authentication, but supports 'keyboard-interactive' authentication for PAM based password authentication. For example, it seems the recent Debian GNU/Linux has such a configuration. Here is a patch to add 'keybaord-interacetve' authentication support to scp/sshexec tasks. Frankly to say, I don't have Debian GNU/Linux and have not tested it by myself. If you have such an environment, may I ask you to try it? Thanks,
860ff6f0-6a7a-9aac-0533-44e12ef41ce1
['7f2ec313-ba4d-8fe4-96d7-d64d1da115d2']
Call for fellowships 2018/2019 - Deadline for applications: January 5th, 2018 The Center for Mind, Brain and Cognitive Evolution is a platform at the Ruhr-University Bochum that aims to foster interdisciplinary research projects and support special master-programs at the intersection of philosophy, psychology, psychiatry, computational modelling and neuroscience. We are pleased to announce an international call for fellowships from 1st February 2018 until 31st March 2019 aimed at outstanding researchers. We are flexible concerning the exact visiting period. People who did receive a fellowship do not qualify for further application. 1) Senior fellowship in philosophy and psychiatry (for one month): Applicants must have been awarded a doctoral degree and they must have an outstanding publication record in the area of philosophy or psychiatry, with a strong interdisciplinary connection to the respective counterpart. The applicants are expected to work at least on the level of an associate professor. The research could be related to the research area of social cognition, especially with the projects. Applications are due by January
c88c6b25-3094-81eb-039a-5df7d4644c69
['7f2ec313-ba4d-8fe4-96d7-d64d1da115d2']
EXTENDED DEADLINE 19.10.2018 Professorship for Ancient and/or Medieval Philosophy Ruhr-Universität Bochum (RUB) is one of Germany’s leading research universities. The University draws its strengths from both the diversity and the proximity of scientific and engineering disciplines on a single, coherent campus. This highly dynamic setting enables students and researchers to work across traditional boundaries of academic subjects and faculties. The Institute of Philosophy II, Faculty of Philosophy and Educational Sciences of the Ruhr-Universität Bochum, invites applications for the position of a Professor (tenure) for Ancient and Medieval Philosophy (Salary Scale W2) to start on 1 April 2019 The candidate is expected to establish a sustainable research program, be capable to produce and publish original research, be an effective teacher and mentor of both undergraduate and graduate students, and engage in institutional and professional service. We are looking for a scholar with an internationally visible research profile that complements the existing research expertise of the department. The future holder of the post will represent the subject ‘Ancient Philosophy’ or ‘Medieval Philosophy’ in research and both areas in teaching. Teaching is to be held in the context of B.A., M.A. and PhD studies in Philosophy and in the context of optional courses of other programs which involve philosophy. Courses for teaching should be offered in both areas, in ancient and medieval philosophy. The willingness to hold the obligatory lecture “Introduction to Ancient and Medieval Philosophy”, to be held in German and on a regular basis, is particularly expected. Positive evaluation as a junior professor or equivalent academic achievement (e.g. Habilitation) or significant post-doctoral research contributions and teaching experience are as much required as the willingness to participate in the self-governing bodies of the RUB. We expect: • outstanding international research activities in ancient or medieval philosophy • the willingness and the ability to combine significant research in the area of ancient or medieval philosophy with modern developments in theoretical philosophy • strong commitment to academic teaching at graduate and undergraduate level; • willingness and ability to attract external funding; • the readiness to engage in establishing and developing international research activities Ruhr-Universität Bochum is an equal opportunity employer. Complete applications including CV, copies of academic certificates, list of publications, list of self-raised third-party funds, and a teaching record should be sent by email to the Dean of the Faculty of Philosophy and Educational Sciences of the Ruhr-Universität Bochum, Prof. Dr. Corinna Mieth (<EMAIL_ADDRESS> <mailto:<EMAIL_ADDRESS><PERSON> (vXXfhKuVpUeJWn7U@example.com <mailto:vXXfhKuVpUeJWn7U@example.com> ) not later than 5 October
63f3eb6a-af8f-c189-0d1a-2cddd6d87298
['7f49a2d3-939e-7489-5bba-9ecae14aa52c']
Hi folks, I have quite a few VSTi and other plugins , which are loaded each time Logic starts. Does the number of VSTi effect the perfromance of Logic regardless of whether these are actually used in the song? I have noticed that the perfromance may have degraded since I have installed a couple of new instruments recently, however it is difficult to pin this down as it amy be due to some other factor ? If so should unused VSTi be moved out of the VSTplugins dierctory in order to minimise the load on logic ? I realise of course that if you have lots of plugins in your song this is bound to have some inpact on performance? Any thoughts appreciated. Regards <PERSON>.
2517a805-8854-8eb9-42dc-15b2069235e0
['7f49a2d3-939e-7489-5bba-9ecae14aa52c']
I have just installed Logic Audion Platinum 4.7, I have some VST instruments that I would like to use and I have installed these in the VSTplugins folder. I should explain that I am a new Logic user - how can I use these instruments in Logic I would appreciate some step by step instructions as I have spent hours trying to view and use the instrument in Logic. Many thanks <PERSON>
6e0a0790-f508-dbdd-d433-56b5f418b18d
['7f4e2de2-1634-9f8c-2c2d-0685d2450f22']
Hey, this is what i am already doing. I have a reference of the the activemq resource-archive-system in my application.xml and the deployment plan for this rar in my geronimo-application.xml. However, I am still not able to use classes from the rar module in my ejb project. I am using eclipse for development and I am getting erros when trying to import classes from activemq, also the rar module is deployed with the same ear, where the MyEjb.jar lies. So do I need to explicitly import the activemq packages? Thanks
0a4a6193-51e8-4b29-0939-e0e4fba33692
['7f4e2de2-1634-9f8c-2c2d-0685d2450f22']
Hey there, currently i am trying to debug the geronimo sources. Unfortunately I am having trouble to do so. Here is what I would like to do: I would like to step through the code of the initialization of the ActiveMQ module. In fact, I would like to see the code, when the information from the configuration file $GERONIMO_HOME\repository\org\apache\geronimo\configs\activemq-broker-blueprint\3.0.1\activemq-broker-blueprint-3.0.1.car\OSGI-INF\blueprint\activemq.xml file is loaded and the information it contains are parsed. Unfortunately I am not able to find a corresponding entry point for setting a breakpoint in the sources. Where would I need to set a breakpoint, when I would like to step through the loading of the module "org.apache.geronimo.configs/activemq-broker-blueprint/3.0.1/car"? I am on Windows7 using Eclipse with a working GEP installation and Geronimo 3.0.1. Thanks in advance for any hints. Cheers, <PERSON>
1d027495-7f0c-1ae9-2463-c8861ee2aadc
['7f5b2a49-b3b6-3429-a267-ffe834e6f30d']
I have a working qmail install on Mandrake 8.2. This includes qmail 1.03, the QMAILQUEUE patch, Vexira virus-scanner and qmail-pop3d. In a nutshell, my current configuration is as follows: I have one instance of qmail listening on port 25, Vexira listening on port 725 and a second instance of qmail listening on port 825. The first instance of qmail is responsible only for accepting inbound mail, RBL checks, rejecting connections/mail from selected domains/hosts and forwarding accepted mail to Vexira. Vexira forwards scanned mail to the second instance of qmail which delivers all mail for mail.theotherbell.com locally and forwards mail for theotherbell.com to an Exchange server. My ultimate goal is to get rid of the Exchange server. Finally, I am not using virtual domains. I've looked at a lot of the information I've been able to find about Courier-IMAP -- the home page, faq, readme and install files from www.inter7.com, <PERSON> document on qmail-pop-imap-webmail and <PERSON> document on qmail-vmailmgr-imap. However, I still have some basic questions before I start my install. On one hand, the description of VMailMgr at http://www.tldp.org/HOWTO/Qmail-VMailMgr-Courier-imap- HOWTO/introduction.html#WHATISVMAILMGR seems to indicate that it's required by Courier-IMAP for authentication; on the other hand, it seems to indicate that I only need it if I'm using virtual domains. My preference is to only install what's required to meet my specific needs... put simply, that includes adding IMAP and possibly a web interface to my current configuration. Do I have to (or should I) install VMailMgr? <PERSON> document at http://www.sxpress.com/~henry/qmail-pop- imap-web-howto.htm is almost identical to what I'm trying to accomplish but I am not at all familiar with the RedHat Linux distro and would like to know if I should anticipate any specific problems if I use this document as an install reference. Finally, have I missed some other critical document which would increase my chances of getting this right? Cheers, <PERSON>
c9e90821-a607-08fb-5cdf-8ce790b9118b
['7f5b2a49-b3b6-3429-a267-ffe834e6f30d']
Can anyone give me some advcie on IMAP clients that will let me create new shared folders? I have Courier-IMAP installed. I have a shared mailbox "Shared" with several shared folders. I'd like to be able to create new shared folders from a client... but everything I've tried returns an error (Invalid mailbox name). It's my understanding this does not work from all clients. I've tried Eudora, OE and Netscape. Is there a client that will work? Cheers, <PERSON>
3931ba5d-a25d-1b52-9e6d-f04a762514d9
['7f5e2061-e4b1-3318-2a6a-4e05a10c5e20']
A.Bhuvaneswaran (<EMAIL_ADDRESS>) reports a bug with a severity of 1 The lower the number the more severe it is. Short Description server crashes during plperl execution Long Description Hi, I am using postgresql 7.3.2. When i execute a simple plperl procedure, the server is crashed. What could be the reason? FYI, i have included the perl code and the server log. regards, bhuvaneswaran
155787f6-92f9-4792-12fc-020b6de56c07
['7f5e2061-e4b1-3318-2a6a-4e05a10c5e20']
Aaron Silver (<EMAIL_ADDRESS><PERSON> (ga6JxGbtb1NHcYB8@example.com) reports a bug with a severity of 3 The lower the number the more severe it is. Short Description time(timenow()) Parse Error Long Description In using Postgres 7.2.2 on a client's system I received a parse error using time(timenow()). Either in a function or via a command-line "select time(timenow());" statement, I received a "parse error near timenow". A "select date(timenow());" worked fine. Doing "select time('2003-04-15 00:00:00');" worked fine also. This was not an issue on a machine running Postgres 7.1.3. Is/was this a known issue? Is there a patch, or in what release was this fixed? <PERSON>
c4df0b65-3ddd-d231-674a-82d4065faa99
['7f614628-2726-2e79-70f5-71d7c0fb4865']
You have until the end of the month to apply for this traineeship!! Are you finishing your graduate work and wondering what to do next? Are you already experienced in health sciences librarianship and looking for a new challenge? If you answered yes (or even maybe) you should read about the program described below. The University of Pittsburgh Health Sciences Library System (HSLS) and Center for Biomedical Informatics (CBMI) offer two types of training programs in health sciences librarianship and biomedical informatics as a component of the Biomedical Informatics Training Program of the CBMI. The Health Sciences Librarianship & Biomedical Informatics traineeship is a post-degree, work/study experience designed for an entry level or mid-career professional who has experience or special interests in health sciences librarianship. The year-long training experience concentrates on supplementing academic experience with practical experience in the operational units of the HSLS and the projects at CBMI. The Bioinformatics & Health Sciences Library traineeship is a year-long educational opportunity for individuals with a masters or doctoral degree in molecular or cell biology, genetics, or a related area or an MLS degree with an undergraduate degree in biology, with special interests or experiences in molecular biology or genetics. The trainee will gain an understanding of the specialized information services offered by HSLS in support of researchers, students and clinicians in molecular biology and genetics. Applications are now being accepted for two trainees, who will begin in August 2005. To learn more about the program and for application information, see http://www.hsls.pitt.edu/about/positions/trainee.html <PERSON>
02d0c0b5-df4c-a45d-da13-6bfd5fff210a
['7f614628-2726-2e79-70f5-71d7c0fb4865']
Are you finishing your graduate work and wondering what to do next? Are you already experienced in health sciences librarianship and looking for a new challenge? If you answered yes (or even maybe) you should read about the program described below. The University of Pittsburgh Health Sciences Library System (HSLS) and Center for Biomedical Informatics (CBMI) offer two types of training programs in health sciences librarianship and biomedical informatics as a component of the Biomedical Informatics Training Program of the CBMI. The Health Sciences Librarianship & Biomedical Informatics traineeship is a post-degree, work/study experience designed for an entry level or mid-career professional who has experience or special interests in health sciences librarianship. The year-long training experience concentrates on supplementing academic experience with practical experience in the operational units of the HSLS and the projects at CBMI. The Bioinformatics & Health Sciences Library traineeship is a year-long educational opportunity for individuals with a masters or doctoral degree in molecular or cell biology, genetics, or a related area or an MLS degree with an undergraduate degree in biology, with special interests or experiences in molecular biology or genetics. The trainee will gain an understanding of the specialized information services offered by HSLS in support of researchers, students and clinicians in molecular biology and genetics. Applications are now being accepted for two trainees, who will begin in August 2006. To learn more about the program and for application information, see http://www.hsls.pitt.edu/about/positions/trainee.html Nancy Tannery, MLS Associate Director for Information Services Health Sciences Library System, University of Pittsburgh 200 Scaife Hall, 3550 Terrace Street, Pittsburgh, PA 15261 Phone: 412-648-9688 Fax: 412-648-8819 email: <EMAIL_ADDRESS><PERSON>, MLS Associate Director for Information Services Health Sciences Library System, University of Pittsburgh 200 Scaife Hall, 3550 Terrace Street, Pittsburgh, PA 15261 Phone: <PHONE_NUMBER> Fax: <PHONE_NUMBER> email: zlyRlrjatej3PLH+@example.com http://www.hsls.pitt.edu
06bea95e-be10-b9b1-8586-26a1a96787d7
['7f6d8a59-83fd-4672-e5c8-b57df0739968']
Hi all, I am using Jmeter in a distributed setup. I have 2 jmeter sessions running on remote machines using jmeter-server.bat. These two are controlled by the master Jmeter UI. I have tried to use counters to parametarize the data. When i initiate the test for 5 threads the same counter values 1,2,3,4,5 are being assigned for both jmeter sessions. Ideally i wanted different set of data being sent to different jmeter sessions. I would like to have counter values 1,2 ,3,4,5 used for Jmeter session1 and Counter values 6,7, 8,9,10 used for jmeter session2. How can i send different sets of data for different Jmeter session running in Distributed setup.. Please provide some inputs regarding this. Thanks Shivaji <PERSON>
504e9a15-9131-bbef-e50f-3a862af40f21
['7f6d8a59-83fd-4672-e5c8-b57df0739968']
Hi all, I wanted to do load/performance testing on a Standalone Java based application. Can jmeter be used to perform Load test on Standalone GUI based Java application. I have previously done load test on a web application using Jmeter. Web Events were recorded using the Proxy server. Is there any option where i can do the same on a Standalone desktop based application. Are there any alternate opensource tools available to do this. Thanks Shivaji <PERSON>
b0cceb8a-e4b0-b673-74e9-96808c661439
['7f7a731a-d288-83e1-5323-aa8ca695efbc']
Hi there, is there a possibility to use imshow() with masked arrays? The problem: I have a large matrix where no_data_values are denominated by a certain number. It now would be very easy to mask these values and let imshow for example display them in another color but not use them in e.g. normalising the color scale. I think I saw some other mechansm to do that in the cookbook but I'm not sure if it can do what I want and at the moment the cookbook (or rather the scipy server) seems to be down. Best regards, <PERSON>
24ed80f9-27f8-b346-506e-daa0893d3ab6
['7f7a731a-d288-83e1-5323-aa8ca695efbc']
I have a very silly question: I have data in the format x y data(x,y) and now I would like to plot a point with a color corresponding to data at position x,y (pretty much like with imshow). Unfortunately, the data does not always fill a rectangular grid, so that using imshow just as it is, does not work. What is the best method to do this in matplotlib? Thanks in advance, <PERSON>
3a4adb73-5893-93b7-da55-a5d5e18c6397
['7fb3d8e8-7dbd-1f1e-f216-b04647f361c0']
Hi I have a requirement like I have described below. Please suggest me the best way to achieve this. My objective in brief: 1. Obtain the test method execution time which EXCLUDES setup and teardown time. 2. Facilitate warm runs for the method. Run the same method more than once. B     (I dont have a problem in getting the iterations from a configuration file) (Warm tests are facilitated as jvm takes sometime to load the class for the very first run) I have achieved this by modifying the junit source code. Which I dont think is the best way, as and when a new version of junit come in... I should be spending time to identify the instrumentaiton points and modify it. Which is not feasible. I want to decouple my code from Junit's and still should be able to achive my objectives. Could anyone suggest a better way to achieve this..? Thanks <PERSON>
8868add8-1e72-b53c-d234-f8d6acf87969
['7fb3d8e8-7dbd-1f1e-f216-b04647f361c0']
Hi All, Is there a way to run a subset of testmethods in a set of testclasses ? Objective is to run 3 classes with the selected testmethods. TestClass                                                  Total Methods available                                          subset of method To Run                                      1. Calculator.CalculatorTest                    add, subtract, multiply, divide                                    multiply, divide 2. Calculator.MoneyTest                        gainMoney, spendMoney, giveNTake                        gainMoney, spendMoney                                        3. Calculator.TimeConverterTest            msTons, nsToSec, nsToms                                         msToNs, nsToms How do I achieve this????? Thanks Shubha
b57f4245-e709-45f4-7606-c4e063e9129f
['7fb72aa6-9b7f-ad07-ed48-e944b356f16e']
Hi I have recently upgraded the version of TOAD that I am using. In the previous version when using the 'window' function (on the main tool bar) if multiple sql editor tabs were open it would provide a snippet of the code that was executed. In the latest version (I am using 8.5.3.2) all I can see is the schema name followed by (<no name>) If there are many sql editor tabs open it can get very frustrating to go through different tabs to find the query that is needed. Would anyone have a solution or know of a setting that can be used to enable the previous feature Thanks <PERSON><IP_ADDRESS>) all I can see is the schema name followed by (<no name>) If there are many sql editor tabs open it can get very frustrating to go through different tabs to find the query that is needed. Would anyone have a solution or know of a setting that can be used to enable the previous feature Thanks Nick Pinakis
9d5dc0de-5237-df48-b180-138c4a694f84
['7fb72aa6-9b7f-ad07-ed48-e944b356f16e']
Late last week the font in both my SQL Editor and Procedure Editor changed from Times Roman to Century Gothic and I have been unable to find an option that will change this back. Please bear in mind that I did nothing (that I know of ) to change this. Can you advise of process to alter these settings? Thanks in advance for your assistance, Regards, <PERSON>
63b1ba9e-e1ed-6042-915f-8b101bffdb12
['7fbb0cb5-2f2f-2889-30b2-166d15932da0']
Hello Debian Gnomers Since today, my Gnome 2.8 on Sid doesn't use the web browser I choosed under preferred applications. I've chosen Firebird/Firefox there, but ever when I click on link (e.g. in Evolution or blam or the "About Gnome" dialog) it opens the site in Galeon. I've also run "update-alternatives --config x-www-browser" and have chosen Mozilla Firefox but it didn't help. Does anyone know if this is a known bug or should I file one (against which package?) ?. Thanks in advance, <PERSON>
99fcb300-571b-81fc-2ddf-b097663b15a8
['7fbb0cb5-2f2f-2889-30b2-166d15932da0']
Dear RB developers First of all, I want to say thank you for having made such a beautiful piece of software. It's just great and I use it every day (well, almost). Now what I would like to know: Is there already a possibility in RB to export a playlist in the m3u-format (like winamp and xmms do)? I've searched the RB sourcecode but only found functions for importing such playlists (which btw works without problems for me). I'm asking because I've got an iRiver harddisk player (iHP-120) which supports m3u files and it would be great if I could use my RB playlists on it. If noone else is interested in implementing this, I could try to do it myself. As already said, I've looked into the source for a couple of hours now and I think, this could be something I could do with my knowledge of C and GTK+. But it would take some time since I've got many things to do at the moment. Additionally, I first have to introduce myself into the secrets of arch ;-) If this is an old request, please excuse. I've searched through the list archive back to November 2003 and I didn't find someone requesting for *.m3u export. Again, thank you for RB. <PERSON>
46ce6938-e49d-c4ed-4c15-21544d6199ae
['7fd5c884-3795-2679-2641-741ccf507c0d']
The University of Kent at Canterbury is advertising funded PhD studentships. So if you are interested in doing a PhD in stable homotopy theory with me (or if you know anybody else who does) while living in beautiful Canterbury, please look at the website http://www.kent.ac.uk/smsas/postgraduate/phd-applications.html or email me directly. Note that the deadline for the academic year 2013 is quite early this time. Constanze
34ca3cf7-b46f-395e-0152-00303704f941
['7fd5c884-3795-2679-2641-741ccf507c0d']
Dear all, the University of Kent is currently advertising a lectureship in Mathematics through the Student Success scheme. It is a 3-year Teaching and Scholarship position. Please see the link below for more details. The application deadline is 25. June 2017, and interviews take place on 10 July 2017. https://jobs.kent.ac.uk/fe/tpl_kent01.asp?s=4A515F4E5A565B1A&jobid=40974,<PHONE_NUMBER>&key=50184884&c=652359365436&pagestamp=seklbmbuiqslncrcji? Feel free to contact me if you have any questions. Best, Constanze
ee2597f3-1c31-7140-1ae0-7cb227dacddd
['7fd77bac-1a59-8b4e-b201-fc124e151f32']
<PERSON>, initiator.Stop() (I use C#) does an orderly shutdown; logouts are sent to all sessions. I just tried with initiator.Logon/Logout instead of Start/Stop, but I get the same problem: the third logon attempt just dies. I'm careful to use the same static initiator object which is only created once but it makes no difference. I'm out of ideas on this one and the developers have not looked at my bug report since it was reported 11 weeks ago, there's even a sample app to duplicate the problem. Thanks, <PERSON>
8a109044-5e5d-9739-244b-c318661ac9f5
['7fd77bac-1a59-8b4e-b201-fc124e151f32']
Hi, I use the .NET initiator built from last week's source tree and sometimes get a C++ runtime error R6025 - pure virtual function call. It can't be caught by .NET so I don't know what to look for, it happens sporadically and I can't create a scenario to reproduce. I've seen this error on occasion for months. This last one happened during reconnection. A KB article can be found at http://support.microsoft.com/default.aspx?scid=kb;en-us;125749 Any ideas? Thanks, <PERSON>
10fa5fa2-117e-0233-6ed3-1cf6690a146f
['7feb90ad-578f-2e98-9390-d1fad24295e8']
Hi there, I run db.collection.reIndex() command on large collection. But during running this command my Mongod service was stop. After starting service, all my indexing was gone. but when try to create the indexes again raise this error: *WriteConcern detected an error 'isOk()' * Is any one has idea, how can I fix this problem? I run the Mongo 2.6.3 under Ubuntu 12 Thanks, <PERSON>
dcab093f-dd75-ca92-7d1a-b16d98ae8cbc
['7feb90ad-578f-2e98-9390-d1fad24295e8']
Hi There, I have big database more than 300 GB, that was running as stand alone. I tried to create second server and creating replica set between the servers. So I copied all dbPath files to new server and rune existing server as Primary and add new server to replicaSet. where I run rs.Status() after 8 hours, for the new server show as "still initializing", Is any one have any idea how long does it take to initialize new server? Server 1: Linux & MongoDB 2.6.4 Server 2: Windows 2008 R2 & MongoDB 2.6.4 Thanks, <PERSON>
26b71e0c-e40b-953a-e391-811bc2926117
['8022da37-bd9d-a454-4b90-787b1e6de82f']
Hello. I tried a few times to fix broken packages by following the documentation. I did the "cd src.packagename.uniqu-id --> ./debug.sh --> cd some_pkg_$ver --> eval $MAKE --> $makeopt" as the documentation says,.. and the result is the output of the build process of the package until it reaches the error and stops. What can i do after that? What is the next step? I don't really understand the fixfile and fixfilediff also, how can i use them? Any help is welcome and it will help others too. Thanks in advance.
4c1d39db-156f-8138-7c4d-47faeea0d7f5
['8022da37-bd9d-a454-4b90-787b1e6de82f']
Hello everybody. the past few days i have done 2 generic builds successful but i can't make the ISO image because there is no isofs.txt in the iso/ folder. In my config file the "install CD / disks" is selected,.. but there is no isofs.txt file at the end. Anybody had the same problem? Any advice is welcome. Thanks in Advance
b5dfba1a-a3d8-38c6-6216-d1663ed69b2d
['80586d5b-c9f4-d379-632a-c9814c772e56']
Hi all, I'm working in license plate recognition coding in master thesis , but in last two month until now plate locate not success, I try many methods: edge / corner detection, Hough lines / squares detection but over all accurate rate under 50%, Reads many papers and studies , how can detection corner very well by opencv? I'm select corner detection to solve this problem please help me by codes for corner detection. In image filters what strong filter? used without appear false edges, I try histogram equalization but appear false edges. Thanks <PERSON>
af784cbb-3a14-a65b-4d8f-2c0bc4549f98
['80586d5b-c9f4-d379-632a-c9814c772e56']
Hi all, I wonna develop a License Plate Recognition software(opencv based). My used camera is Pelco Spectra 35x camera. I need to know exactly how I could SET pelco camera, moreover how I could receive videos. I dig the WWW also to find documentation for such types of Cameras, specifically Pelco Spectra IV 35X. Unfortunately I couldn't find such documentation. So, how can I find a full documentation for the specified camera. Thanks <PERSON>.