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
4ec896bb-deda-1a01-63a4-741ce335cf2b
['394e61f9-a97b-fed6-4b2a-fed1045343d6']
Hello. I found very interesting project PhantomOS<http://dz.ru/en/solutions/phantom/>. It's not smalltalk related. But they try build pure object operating system with "absolute persistence option". It object model very similar to Smalltalk, it has virtual machine as "OS core". But difference between smalltalks and Ph...
90b3ecb3-3734-818e-fd54-326daf5ae221
['394e61f9-a97b-fed6-4b2a-fed1045343d6']
Hi. We already discuss it in another thread. And I want to make little conclusion. I propose new lock primitives #acquireLock and #tryAcquireLock. They should be based on existed ownership primitives 186 and 187 but with inverted logic. acquireLock should return true if lock was established by this call. It should r...
cb514d5f-7769-55a7-e6fe-1a9de52df887
['3970d691-c0c4-419d-09b4-ee34549e5f35']
We run the 3850 12X48U’s here (12 Mgig ports, 48 total, with UPOE on them) and the mgig is good, it will run 10gb no problem. They do make a 24 port model as well. Just keep in mind your uplink might be a problem there as the SFP+ uplinks are limited (2 normally, I’m not sure if you can get 4x10gb SFP+ uplink module...
8caf1074-f64f-f224-6dd0-c87011149da9
['3970d691-c0c4-419d-09b4-ee34549e5f35']
MGig will go all the way up to 10gbps if the device at both ends supports it, I’m using it right now for that purpose. Some devices don’t support it however, our 3802 APs will only go up to 5gbps, whereas the 3560 and 3850 mgig models will do 10 between each other. It is surprising how far it’ll go on older cabling ...
9f03d976-997a-7c90-5bab-7bfa7f85ccec
['3971856a-46f7-2f00-e8e7-9540e81418ec']
Be careful- "These experiments include the measurement of the round trip delay for method invocation using all technologies considered." Are you sure you aren't comparing *RMI* to other technologies?! A Jini service proxy could be implemented using RMI, CORBA, Web Services, proprietary socket comms... Depending on th...
1c0a0191-145b-7296-951a-363060c9270d
['3971856a-46f7-2f00-e8e7-9540e81418ec']
If I understand your issue correctly, what about just extending the service interface (or creating a new service interface where the implementation uses the original service if you want to "hide" the individual operations) and add a new method that implies the set of operations executed in sequence? Then you can han...
ddb3dc21-2497-5264-4a9e-3fb38473cb1b
['39721492-87f3-8705-1719-57b719f94d70']
Hi <PERSON>, Can I get this version: GRTools-20140227.exe somewhere? The gailser website version is now different and I had to reinstall the GRTools and I am finding some problems in eclipse. I am not sure if it is my fault or some update issue of this new version available on the website. Thank you, <PERSON>
5b9e64ca-3cf7-c2aa-d962-da9aa9c087f7
['39721492-87f3-8705-1719-57b719f94d70']
Hello all, I am developing a peripheral to read data from an ADC. I am using RTEMS. I already have the APB peripheral working fine and I can read the data from it (although I am still using fake data just to test the APB connection). However, I need to raise an interrupt when the ADC has data ready. If I trigge...
7dc72954-d70f-7037-286c-75e58fcf8f53
['3979cedd-d15f-44b8-28da-e56ec78a9c70']
Has anyone tried using Zotero yet? I'm curious about the usability aspects of using the browser directly vs. a website-centered tool like CiteULike. http://www.zotero.org/ "Zotero [zoh-TAIR-oh] is a free, easy-to-use Firefox extension to help you collect, manage, and cite your research sources. It lives right w...
8eb7e38e-04a1-86f7-a25a-a1966447b355
['3979cedd-d15f-44b8-28da-e56ec78a9c70']
I've noticed that when I am viewing the screen with a listing of all my papers that some of them have metadata (example: "IEEE Internet Computing, Vol. 10, No. 2. (Mar/Apr 2006), pp. 74-78.") displayed beneath the title, but others do not. It would seem that the articles that are missing their metadata are of the ...
86f05d4b-14bf-8eee-745d-86d4616416e0
['398b11ac-bf65-442f-2216-24ccfed415a8']
Hello, I am <PERSON> at Oracle. We are interested in PRECIS as a key technology for i18n and we have one question that we would like to address. The question is regarding the way the applications identify a profile that has variants in character mappings. In particular, UsernameIdentifierClass can be case insensit...
20dd500a-6618-c70c-18b7-7333a7b9612b
['398b11ac-bf65-442f-2216-24ccfed415a8']
Hello, I have a question regarding the 'x-' convention used to indicate that a charset is not registered at the IANA registry. Is it prohibited to use a unregistered charset at one's own risk? According to the latest CharMod paper, the convention is discouraged as follows (Excerpt from Section 3.6.2): [S] Th...
f4581718-c8ee-eea4-3cfd-886f02631a7b
['3995875e-3d53-819f-40cd-dad17e2a5a89']
Hey! I tested Cucumber with Java and experienced that it doesn't matter which keywords I use for a step. E.g. the following two examples both run perfectly regardless of which keywords I use and how I combine them. Scenario: Add two numbers Given I have a calculator When I add 2 and 3 Then the result s...
6374ce53-19ea-6ce8-c594-d6fb462702de
['3995875e-3d53-819f-40cd-dad17e2a5a89']
Hey! I've got a conceptual issue with the karaf-maven-plugin. While Karaf by default installs the feature with the highest version number during runtime, the karaf-maven-plugin takes the first feature it finds and adds it to a bundled Karaf binary. This is especially troubling when there no connection to a repository ...
4598e201-8681-8c92-db5b-5decdf196035
['39a30a81-0e8b-9f22-d388-5152099c4a02']
Hello, I have a class that contains a reference count. I would like to maintain the count without using a mutex. Can anyone recommend a way to do this portably, using Boost? I see the needed mechanics in 'detail/sp_counted_base.hpp', but since it's in 'detail', I'm not sure what the most portable (and maintainable) ...
8b53e7c0-f25a-7b8a-43e6-565e39c16329
['39a30a81-0e8b-9f22-d388-5152099c4a02']
Is it possible to generate the swig runtime code that goes into runtime libraries, i.e. libswigpy.so? I use the '-c' option with swig, and link against these libraries, but I would like to also compile my code on systems which do not have swig installed - which would mean building libswigpy.so myself. It would be ...
6bd32a56-4e92-32f8-b952-9f6a7b877146
['39a5e41c-cdcd-dc89-d7a0-b7f8930b0185']
I'm not giving up on this... my latest idea (another day invested) is to :1) from within shouldInterceptLoadRequest(), return a WebResourceResponse containing a place-holder image, and launch a thread that keeps a reference to the same WebResourceResponse2) the separate thread downloads the real image.3) after the imag...
8236e2c1-b22b-625c-13fd-386cf62b7723
['39a5e41c-cdcd-dc89-d7a0-b7f8930b0185']
That's too bad that shouldInterceptLoadRequest() is synchronous because we're seeing that slow loading of the requested data holds up the UI of the XWalkView.So, on a webpage with 10 images that need to load from a remote server, it takes about 10 seconds to show the webpage. The documentation for the shouldInterceptLo...
e9e34c02-ac7e-becc-4530-d5af0e0ec485
['39aed969-7c4c-8527-55e2-aeaf4e82f7f6']
Hello, I have an irritating issue with my laptop connecting to my AP at home. It's an intermittent problem as sometimes it connects fine, whereas other times it won't connect at all, until I either reboot or reload the wireless card's driver. I have tried both Broadcom and Atheros cards with the latest stable firmware...
d785cbd5-02c7-d6c3-9e90-8288fd18c5e1
['39aed969-7c4c-8527-55e2-aeaf4e82f7f6']
Hello All, This is my first post to the mailing list and would first like to let you know that you are doing a great job. I have found the guides and howtos to be very useful on many occasions. So much in fact that I often recommend it to users with commonly known problems on the ubuntuforums. The purpose of this ema...
9743ef60-6d39-b364-5c0c-64219a5ddc2c
['39afbabb-b8a6-58e2-6bf7-254da9c2e146']
Aside of the 'Gmailization' of the CForms templates that's going on, I have developed a small set of javascript functions to move part of the controller to the browser (control of menus, error messaging from the server, etc..). I know some of you will think of that move as anathema (banish him! He's mixing the view wit...
c6f46491-492a-cdd3-8ac8-f583e64ab610
['39afbabb-b8a6-58e2-6bf7-254da9c2e146']
Hello, I'm trying a client-side Javascript template engine that uses the same escape sequence as in JXTemplate, and JXTemplate substitutes all my "${}", so I can't get the approppiate strings to the client. Does anyone know how to tell TXTemplat to leave alone a pice of code, or is thera a syntax I can use in order t...
5497f3c1-4637-5789-c592-3490cc871a2d
['39cc79fd-3eba-142c-3f72-6ff3e61546e4']
Hi, I hear that the emacs trunk is now open to new features. I think it's time to include ruby-mode to the emacs main distribution, considering the recent popularity of the ruby language. The ruby developers agreed with this idea when I asked them in 2005. Are you OK to include ruby-mode for 22.2 or 23.0? ...
63024d14-bf43-f86c-90d3-30cadc187bba
['39cc79fd-3eba-142c-3f72-6ff3e61546e4']
Hi all, After all, I decided to leave this mailing list to make my life simple. If you would like to contact me regarding Carbon Emacs Package, please write to the new list. You can still contact other MacEmacs JP people in this list, but I will no longer be here. Sincerely, Seiji
601ac1f9-efa2-4023-f92f-85d342b45a72
['39d8cf34-a65f-926a-cb6e-aa7b87a123b8']
Hi, I've realized that the problem is that I'm losing the graphics context. I'm having the same problem with the inicialization of a shader, and it crashes here before the glMultiTexCoord4f(), so I think if I solve the problem with the shader this maybe solves my first issue. My problem is that I have to work with a g...
eaabe239-a508-7cfb-aa6f-3e8386040bc5
['39d8cf34-a65f-926a-cb6e-aa7b87a123b8']
Hi, I've create an int matrix[16][256] and I need to pass it to the GPU. So what I've done is create a osg::Image, but when I have to pass the data to setImage, I have to do a cast to my data, because it needs an unsigned char *. My matrix contains signed ints so I cannot cast it to a unsigned char, as I loose inform...
b6acca48-c302-48fc-a427-61602e9abebf
['39dc3dd5-bb67-0eea-ac11-3ab9165f2ea9']
I have Tables TabA, TabB and TabC I have a view ViewBC that is a view SELECT fields FROM TabB INNER JOIN TabC If I run SELECT fields FROM TabA LEFT OUTER JOIN ViewBC it is way slow (like ignoring all indexes) If I run SELECT fields FROM TabA LEFT OUTER JOIN TabB INNER JOIN TabC ...
8b74a0a9-89f5-c271-bc24-4d28c041bcf2
['39dc3dd5-bb67-0eea-ac11-3ab9165f2ea9']
Are all transactions database locks (not table locks)? If I prepare a select statement and start stepping on Table A on process one and pause before finializing and do an update on Table B with process two or even the same process I will get a database is locked error? Do I understand that this is how SQLite works or ...
53e7eabf-f6fd-61c0-c167-9158b4fbf204
['39df6df1-3025-b8c0-cc3b-5d99157f73dd']
Hi all, I do not know if this is the right newsgroup but you can point me to the right on, probably. Itwould be very useful in my point of view if I would be able to save/logthe buffer output of a gnome terminal or even search in the buffer fora keyword. So it would be a lot more easier to orientate myself in an hug...
ddd0699c-3448-5e21-a586-3b8bb52e6bef
['39df6df1-3025-b8c0-cc3b-5d99157f73dd']
Hi <PERSON>, thanks for your opinion. Actually I know about the tee command but I do work a lot withappliances and I ssh to them. After login to the appliance I have nochance to use tee neither can I search for a specific logging event onthe box in an huge output. In addition it would be nice to save the session if ...
2c72b2bf-51b7-8f01-d3e7-bdd28b959e05
['39f539ff-7373-3e36-c493-6d2f7151cfdb']
from 1.1beta up to 7-28-08-trunk nightly, the combos don't load and the dynamic table fails. Starting with 7-29-08-trunk nightly and currently up through 7-31-08-trunk nightly everything works again (as in 1.0). The combos are loading, the table is built correctly, and the form objects are loading lickety-split. ...
0cb3a246-0b85-2e35-2d14-18766dc45550
['39f539ff-7373-3e36-c493-6d2f7151cfdb']
More info: I downloaded the 8-6 nightly for Mac OS X and am able to log in and run fine. Except that now the OS X version is not drawing a dynamically built table as was the case with the 7-31 win version that started me pulling the nightly. The crash issue happens when a modal window (aka a new win) pops up aski...
6fbd1482-fae3-92db-fb79-afd85c69e589
['39f7a84b-6ff8-4ce8-d135-0818baa4e93b']
Hi All: I am looking for a commercial or open source tool for doing SSL performance analysis. Any body has used any tool? I am tasked to analyze SSL performance on different applications like People soft, Citrix, SQL, internet proxy, web logic running on Windows 2000, UNIX and doing SSL performance analysis while co...
dadfc423-7cc9-ac6e-11a2-58d52193fa4d
['39f7a84b-6ff8-4ce8-d135-0818baa4e93b']
Hi all: I am tasked to turn SSL on different platforms UNIX, windows 2000, Netware with different appliactions that needs to be aware of SLL (Citrix, SQL, People soft, weblogic) working with NDS , LDAP and active directory Any body give me advice how to proceed with this. Is there any resouce avaliable.Any implementa...
9bb34e56-3840-c889-a3bf-e5c1ad500bcf
['39ff6df7-44cf-9f3f-b17f-c02cccacda2b']
Hi, Somebody could explain me why xwiki uses $theme.pageContentBackgroundColor as border color in resources/js/xwiki/table/livetable.css ? A background color as border color : that's weird only for me ? That's a problem for us because if we want use a dark color as border, columns label are unreadable (dark...
d7d43819-e02c-e302-3dff-5c8bbd649f06
['39ff6df7-44cf-9f3f-b17f-c02cccacda2b']
Hi, Since the migration from XEM 3.2 to XEM 3.4, We have a strange behaviour on our multi-wiki instance: Sometimes, values of WebPreferences disappear spontaneously on one of our sub-wiki. We lose configuration, look & feel and access rights parameters. There is no apparent reason (the parameters are simply re-ini...
4f60e8d0-ed1f-8cd8-2f0c-4e7e412f81fc
['3a127f8f-2607-008a-73c3-57d5879fa10a']
Hello, are you aware that the pango package for win32[1] is broken? The module directory is not present in the zip file. Because of this no fonts are rendered and only a missing char (small box) is displayed for each char. I tried to compile gtk+ and so pango and all deps with a cross compiler on Linux, but I failed....
8a36b43c-6172-6cdf-16cb-22097331f1fb
['3a127f8f-2607-008a-73c3-57d5879fa10a']
Hi, Why am I not able to cut text in a ETerm and paste it into Anjuta IDE? xterm works without problems and ETerm into any other application works also. To work around this problem I use xclipboard as helper app to share text. Is this a problem in ETerm or Anjuta? And could you give some advice why this happens, so th...
968ffee9-8df2-27b6-e766-df0b2932fdc6
['3a1cf8d4-e05d-ceda-0f53-4c1ba7fde8f5']
Hello ! I use a kernel 2.4.26-rmk2 on an AT91RM9200. I ve tried to implement an mmap in order to have an access to IO ( PIOD) on this board. The "remap_page_range" seems to work but each time I try to acess to this memory with a read access or a write access, I receive a segmentation fault. "cat /proc/mem" or "cat /...
2af6c3d2-46d0-cc1d-f4fd-8e9538e5a985
['3a1cf8d4-e05d-ceda-0f53-4c1ba7fde8f5']
Hi !! I work with Linux 2.4.26-vrs1 on AT91RM9200 for 1 years without any problem. But recently, I ve changed my kernel configuration in order to boot fast. So i ve now a very small kernel configuration which seems to work well. My linux root is a 5 Mo cramfs filesystem. ( my command line is root=/dev/mtdblock4 roo...
843ab792-8751-0db4-aed7-1478b6ab4f53
['3a31e82a-9a11-c3a8-3f72-4920716238ed']
Hi <PERSON> , is there a plan to integrate Jmeter with "Perfmon" so that we could monitor lots of other stuff in addition to the metrics like "Avg .Response time ","Throughput" ,etc For e.g if we need to test .net apps we would like to collect metrics like ASP.net counters , .Net CLR Data using Perfmon . Would it be...
d21d9131-327e-9e38-7374-ca5e6c769886
['3a31e82a-9a11-c3a8-3f72-4920716238ed']
Hi , I record some scripts through badbody .This is against a dev URL on a machine within my LAN wherein I don't have to go through proxy. Now when I record and playback through BAdboy I receive response times for each of the links that I hit I then export the same to Jmeter and then run the test.I checked the <PERSON...
5e58c091-6150-749c-e65d-615c5ffa2671
['3a3ba68c-4483-79f5-8e08-e03d6f70c5c1']
I prefer HP printers. All working perfect, except all-in-one products. I can print but scanner is available via Sane. Cartridges may last long depending on how much you print and usage of color. I usually print office documents and graphics in color. I can print 500+ pages with back and color cartridges. Goksin ...
dd4de14a-8634-9d21-091d-f3f8537e1335
['3a3ba68c-4483-79f5-8e08-e03d6f70c5c1']
I've read the article. I am a GNU/Linux user. I am over 30 :) I have a computer since highschool. I've seen the multimedia wars. I fought as a support guy with helping users installing Media player of Real Player, Microsft and Quicktime. I also supportted users with antivirus solution dur the downloaded fake multim...
45c0312b-f901-42df-ff69-cceb5d9a7983
['3a4da614-9147-efc2-9620-30019a0a9288']
Glad I could help, though I'm still a little dizzy over this. It took a long time to zero in on, since it's intermittent (and low frequency) its been low priority too, but still bothersome. I think I have it solved, but more testing needed. XMLSec installation instructions say to put "xalan.jar" in JAVA_HOME/lib/endor...
fbe645a9-48a0-0b04-5971-383b92aa30cb
['3a4da614-9147-efc2-9620-30019a0a9288']
We're using the Verdex-XM4 with the Console-VX. My question is, are all three serial ports identical, or are they different in some ways? Our application is experiencing some odd behaviors across ports, which might be explainable if the three ports are not all wired the same, and/or have different behaviors. I have s...
4ce42136-1076-1809-7e80-f3e6817d08a3
['3a511901-05a2-2d4b-5c86-a217123cd149']
Hi: I just installed wesip application server and 1.3.0-pre1-notls with seas.so modules. I also downloaded ringtone-24_05_07.sar application into path $WESIP_ROOT/wesipapps. Ijust configed openser.cfg and server.xml especially for those key property such as com.voztele.javax.sip.SER_ADDRESS, listen_sockets. The opense...
92273c16-6a63-c1cd-bacb-9c72e771eaf1
['3a511901-05a2-2d4b-5c86-a217123cd149']
Hi all: I know that the example uses REFER sip method and follow such process: 1. prepare two SIP softphone(eyebeam <IP_ADDRESS> ) , register to openser 2. user enter Caller and Callee's SIP Address 3. Web Server receive http request, then construct FIFO command, using t_uac_dlg MI command, build Refer SIP message wit...
c397b096-2a26-ee90-9e60-f493e80082c4
['3a517635-00ef-ba28-4585-147825ab71c2']
Hi all and my apologies about beiing off topic. I am a subscriber of wx-dev list from two mail accounts (home/work). I do not use the newsgroup at all. I downloaded my mail at home and I can't see many messages that I have read at work. I just wanted to report this in case it helps the list admins solving the pro...
8c2c68af-6181-d5c8-bfd6-2d7dddf5a05a
['3a517635-00ef-ba28-4585-147825ab71c2']
Hi all. I have recently written an app reading some old text files of mine containing greek characters in cp737 encoding. wx does not natively support cp737, so I had to write a converter class of my own. The class works as follows: For each character of the input, it searches a map and replaces the cp737 encoded ...
6c25bee6-4b65-ddbd-3de3-1710207ca37b
['3a5b3fdd-b704-0820-f67c-2bb6b4ca1ba8']
Hi everyone, I am about to purchase a Samsung LCD monitor. The model is 730B. According to the manufacturer, it is compatible with "PC/Windows, Macintosh, Sun Microsystems". I went to the "supported hardware" pages of the Mandriva website but couldn't find any helpful information on this. A google search didn't t...
81e7c376-03b9-a176-c4bc-d2de0a82d8ea
['3a5b3fdd-b704-0820-f67c-2bb6b4ca1ba8']
Hi, I am new to the list and to Linux. I would appreciate if someone can help me with these questions. First question: I have a NVIDIA RIVA TNT2 MODEL 64 with a SCEPTRE P73P monitor (16.3"). Using either Gnome or KDE the screen left unused a strip of about one inch on the left side of the screen. I tried solving ...
8d698462-387d-fb15-e098-4ad0e17f62a7
['3a5b5fe6-4a26-da2f-80ac-6fc72c4e3e06']
Sorry for resending this but a context diff was requested. See attached file. Hello, I would like to humbly suggest an improvement to the std<IP_ADDRESS>list container class. This improvement does the following: * reduces amount of memory required o the _List_alloc_base class contains a _List_node_base ...
7e8aa7a3-f6c1-6d42-1a07-28e7563d2112
['3a5b5fe6-4a26-da2f-80ac-6fc72c4e3e06']
Hello again, Please find attached a patch for stl_tree.h against the version provided by GCC 3.2.2. This patch is similar to that provided for stl_list.h and is a performance improvement patch when creating and destorying _Rb_tree objects. This patch affects the std::map, std::multimap, std:set and std::multiset cla...
d4e6bc8c-e2df-c495-2a30-e09a56ea171b
['3a602054-861b-a54a-d822-6e8a44d42eef']
Hi <PERSON>, I did not thought about solution C lol. Well the fact having "dependencies" from schema B to A is because the webapp B has some other tables having relationship with it, let's say, the A.om.Country The om generator will stop if you specify a foreign key that cannot be found in the same schema? right?...
020bea5c-0ae1-ec94-e50b-a273f6ee85bd
['3a602054-861b-a54a-d822-6e8a44d42eef']
Bonjour! First of all, my name is <PERSON>, 26, living in Paris and I am very happy and exciting joining this mailing list! I first start using scarab. From there, I was very interrested on turbine framework. I am fighting understanding turbine which is not very easy because of the documentation. I am tr...
adc9da28-3748-2a74-7c0b-2b3ed6a97e23
['3a613e3f-4af2-903e-9ed5-9700cf0c528e']
Greetings. i sould like to automate the install of the Java RE into my Target, by using a ptx rule. i have it as a bin file bacause there is a liscence attached to the bin file. the package's behaviour is. show the license and then extract to the current directory, so i'm thinking that into the rule all i would hav...
838bf58c-3ea1-d320-0a16-497e2079ecbc
['3a613e3f-4af2-903e-9ed5-9700cf0c528e']
Greetings fellow system builders! I would like my target system to have X display. nothing fancy, just something to display my java user interfaces. in full screen, no window decorations, or anything. what should i choose? Oh, i also have a DRI driver handy for my video card... the board i am building for is VIA EPIA...
a12c73e6-f865-6cb8-fcb2-70f08b625cc6
['3a72730f-fda6-748a-2967-ece82f1ff2b6']
Hiiiiiiii All, I am using bind-9.2.0rc7, and cross compiling 2 arm-linux. After configuring and make,make install ,it is able to generate "named" deamon and other supported executables like dig,host etc..,but it didn't generate named.conf file in the path which i have specified using (--prefix while configuring) W...
b49c0dd7-4b2d-c37f-e98b-96ac42bfd2e1
['3a72730f-fda6-748a-2967-ece82f1ff2b6']
Hiiii all, I am porting DNS server onto the target board,i used bind-9.5.0-p1 and after cross compilin to arm,i got the named deamon and other tools like dig,host and nslookup etc i copied the named.conf and resolve.conf from my host PC,to the root filesystem of the board(/etc).... so when i ported "named daemon" ...
f6ac18c6-d54a-5b0a-25ac-a5a377bcedf9
['3a7af61c-3a47-43d6-1c61-de40c03f6ad8']
Hello, I'm new to ruby on rails, migrating from php, and I have some questions: 1- How do I work with null objects without returning the rails error to the user? Like if I'm searching for a record and no record's found, how would I deliver my custom message to the user? 2- How does the 'nil' object work? Thanks
36cc8477-a334-a815-fe80-d9df5952540f
['3a7af61c-3a47-43d6-1c61-de40c03f6ad8']
I have a form and e file field, and what I'm trying to do is when the file is uploaded, a div shows the uploaded image using ajax, without refreshing the page. But the problem I'm having is that with form_remote_tag it won't accept :multipart => true. Any ideas? Thanks a lot
7b4d3796-b643-6be4-7140-92bde8e29bc4
['3a824906-f0a6-2af3-c7f4-4c2121587bd6']
Hi, Attached is the zip files that contain the PDF version of the .brd file for rev C4 (just in a remote case of someone wanting to see or print them). I was unable to get the info I needed though (diametre of the holes, distance between the midpoints of the holes and distance between the mid-point of the hole...
c92abf2e-8742-a146-b8cd-3e5269a5db40
['3a824906-f0a6-2af3-c7f4-4c2121587bd6']
I believe the OTG port on the Beagle board has the USB-Mini-B form factor (as per the info of the cables being sold by SC). Can the document be edited to reflect this, instead of the two existing terms "OTG" and "Mini-AB" when referring to the port/cable. When in Radio Shack, today, I went around the shop looking f...
c93013d6-0441-7c84-5f5e-d447ab9194bb
['3a99f0b7-b3e7-25cd-86c0-2f1f33fd84fe']
I am using Spring security core plugin and mongodb (hibernate uninstalled) and it works fine. But when I try to use functionality in the spring security UI, I get exception due to transactionManager not being found. I would like to know if I am doing something wrong or this is not supported. If not supported, I need t...
d509788c-c238-ecc4-5fd0-8fbedee479a5
['3a99f0b7-b3e7-25cd-86c0-2f1f33fd84fe']
I am trying to use executor plugin and it says it supports Hibernate and MongoDB in the docs But when I try to use it, it throws exception due to missing persistenceInterceptor bean. Do we need to wire this manually for MongoDB GORM case? If so, does anybody have a working example to use in resources.groovy (That is ...
1e1e7dbd-70ad-e608-0dd2-83b10fcb9811
['3aa0391c-b164-8940-f1e2-31935717d253']
Hello, I have one suggestion that would improve this great game. I think that adding the ability to notify players about events (such as a new player has joined) in the pregame state would be an excellent idea. Preferably it could be done be displaying a popup window. I have been playing this game many times and from...
527d7fd9-d329-cad1-0103-5e1eeb7f14a0
['3aa0391c-b164-8940-f1e2-31935717d253']
Hello, I think that this would be a nice improvement to the game. I noticed that it is common that players usually don't recognize others based on their flags. In other words it is not obvious which flag represents which nation. In the above situation it would be very helpful to add flags to the player view which wou...
c736d9da-24e1-47f7-c263-3568c34d7811
['3aa898e2-bb20-9acc-1ac3-049b12e8b2fe']
Hi <PERSON>, Has there been any more progress on your suggestion for this substantial improvement to ofbiz? I would also be in favor of <PERSON>'s idea of moving the framework to it's own svn location (perhaps, eventually this concept could even be extended so that the entity engine could have it's own svn location...
28b009f6-5161-1443-fbd8-edb60df33039
['3aa898e2-bb20-9acc-1ac3-049b12e8b2fe']
Hi <PERSON>, I'm trying to figure out how to use the GLib testing framework on an autotools project. I've seen the json-glib project which is used as an example of both of these technologies, but I'm a newbie on both GLib and autotools so I'm struggling to figure it all out. Is there a minimalist project using autot...
bc29622f-f6e6-3307-d2de-e65c114cf864
['3ab75f83-fce7-e288-7a8c-e51390d12609']
I've been getting this weird error message of late on newer current builds. It happened when I switched over to the ULE scheduler and thought it might have been the cause, but its not as it occurs when using the 4BSD scheduler. (It was just a coincidence that it started at the same time). This error, I think, has to ...
72fd267b-a099-2e26-182b-db92dcbeba59
['3ab75f83-fce7-e288-7a8c-e51390d12609']
This is on a Cyrix box. Full dmesg output below. DMA works perfectly fine on this box, under Windows, FreeBSD 4.7, 5.0-RELEASE, but on 5.0-CURRENT it stops working. I'm not entirely sure when it stops working, I merely cvsup'ed after installing 5.0-RELEASE a few weeks ago, and it stopped working. I cvsup'ed, made ker...
d7c25db6-04e4-963f-9954-94e35a4921eb
['3abea6a4-9d83-6bbb-56c0-f29e1839cc45']
<PERSON>, This looks great, but I think it underscores something that has bothered me for a while: the various packages should not be prompting on installation. The updated Seaside installation is vastly improved, but it still comes to a dead halt over user-name/password for the configuration utility; those things ca...
b14a59b3-ed7d-aaa5-9905-2787d3353e8c
['3abea6a4-9d83-6bbb-56c0-f29e1839cc45']
Hello all, I grabbed 10183, hacked it into a one-click image on my Ubuntu box at home, and found the Polymorph is indeed in the image. Frankly, I suspect I might have missed it once before, possibly mistaking the watery theme for the default look. It's great to see it included. As Pharo 1.0 takes shape, what is the...
c17d54ca-a4fe-ca56-91e4-cb3e9c63a37f
['3abf9aa4-f5da-8f75-e403-27e9516c14e3']
I have done a bit of searching in this group archive, but find very little information on this subject. There are apparently four ways that an end user might access an IPS package server - command line, web page, the package manager app, or just downloading a file. We are wondering what methods there are to crea...
ca6543c8-6f95-97fb-c5ca-86aac4730574
['3abf9aa4-f5da-8f75-e403-27e9516c14e3']
I have had some questions on my IPS packages. The installation of several packages - in /usr/local directories - goes fine. But when a user does an uninstall on just one of the packages, the entire /usr/local directory gets removed, not just the files in the packages. How do I prevent this? Apparently, the /us...
2f6578ab-a218-51c2-0819-e70d03577376
['3abfa502-ba21-3c26-2f7a-92441f767c26']
We are currently running cosign-1.9.4b, and are testing an upgrade to cosign-2.0.2a. We have a load balanced system consisting of two Xen VMs. We were having some trouble getting monster to correctly replicate our tickets with cosign-2.0.2a, so we've tried exporting the /var/cosign directory via NFS. Has anyone done...
82476110-6104-d22e-efd7-d0e229f1f407
['3abfa502-ba21-3c26-2f7a-92441f767c26']
Hey all, We are looking at some issues with our implementation, and one of the problems we are having is that the /var/cosign/daemon directory is filling up quickly, causing cosign to stop working. What is the purpose of the directory? Right now, we have roughly 85,000 files in the directory at any given time. We h...
20eccc62-cdf8-7bf7-9c0d-9de1ebcb44bf
['3ac08027-5d1e-fbbe-e480-fe774817902b']
Hi, when dispatching a bunch of jobs (blocks) to a global concurrent queue, libdispatch, running on Linux or FreeBSD, always spawns a thread for each job submitted. On Mac OS X it works as expected. This somewhat interferes with libdispatch's initial intention of a set of worker threads - equal to the number of proce...
ad6bc19f-d282-0c12-da93-85466bfa1f4d
['3ac08027-5d1e-fbbe-e480-fe774817902b']
Hi, Standard versions of GCC don't define __unused. And LLVM/GCC doesn't define __block anymore. I don't know whether it is right to put it in testing/dispatch_test.h, but it at least affects all test applications at once. Together with the other patches I sent the last days, this is everything required to compile a...
a282806d-5c97-14fd-6641-ca225ed0ce93
['3ac9c818-faed-39fd-d923-bc3f8e2bcd87']
Hi! I downloaded 40 tables via torrents, put them on 2 1TB disk, then use 2 another one 1TB disks to put tables using Behemoth.py (all extern usb, 20 tables on each). Then compiled kraken, older and now newer version. All goes without problem. But when try to crack bit strings different then test or one of streams f...
a04af7a8-171f-f8a1-c1fa-c398cf39aa09
['3ac9c818-faed-39fd-d923-bc3f8e2bcd87']
I have an old Z80 based phone and a lot of data about it, including electrical scheme, firmware, tools for disassemble flash code, memory maps, etc. It is very simple from hardware point of view, but there is a lot code to disassemble. The good thing is if someone can accomplish that he has all what needs to listen tra...
7024aade-f870-9457-4fc6-56ab252a8d92
['3accfbac-1d84-b6d8-6c92-92f67052c98e']
Hello, @Mac/Linux users: I am sorry for asking **windows** specific questions here. Just stop reading... ;-) I have a WebDAV server (J2EE based), there is no problem to use it with Windows Explorer (via Network Resource), Internet Explorer (via open page as Web folder), Office 2003/2007 when using Windows XP SP2. Bu...
83980360-fcf3-d87b-331e-495476525bee
['3accfbac-1d84-b6d8-6c92-92f67052c98e']
Hello, former versions of Tomcat had a WebDAV servlet/filter as example how to use WebDAV with tomcat. It does not seem to be part of Tomcat 6. Why was it removed? Was it moved to some other installation package/project? I'm asking also because I have problems when using the webDAV function (of tomcat 5.5) with Window...
9a35d6be-82a3-4a7c-a8ad-390680a80e64
['3ada2430-06c5-d6a2-0eaa-fcfaa0fa3fd5']
Hi I am a newbie to the resource allocation and ticket allocation on SGE. I have the following scenario :- We have 3 sets of machines :- HostGroup 1 - 7 machines with 8 cores each and 16GB of RAM HostGroup 2 - 4 machines with 16 cores and 24G of RAM HostGroup 3 - 10 machines with 8 cores and 24GB of RAM Hostgroup ...
2bcbc3bd-824f-fd87-2e21-bf0b83517325
['3ada2430-06c5-d6a2-0eaa-fcfaa0fa3fd5']
Hi I would like to set the default Audio output to headphones . That is , when a user logs in, the default audio output is set to headphone. I put the following line Audio Output Select: Headphone in both /etc/opt/SUNWut/utslaunch_defaults.properties and /etc/opt/SUNWut/utslaunch_mandatory.properties . I t...
9f213984-42bb-2600-702e-b0e1db2efef7
['3ae13def-b367-c283-af1f-45d3a071353d']
Hiya folks, Well I am back on the list and working... Has anyone found the correction to the script that maps the lcf bundles for Framework 4.1.1. I tried to unpack FILE18.PKT to find the script (I unpacked it successfully), but cant seem to find the script (add_linux-ppc.sh). This is related to IY57443 and yes I...
168c01cd-4271-91c7-c310-d9f688db99eb
['3ae13def-b367-c283-af1f-45d3a071353d']
<PERSON>, I wonder if a script can be put together using odbls that allows for mapping of the object repository hierarchy in its entirety. Now I remember back in Object Repository class in '99 (or was it 2k?) that there was a BIG OLE funky map with the entire repository mapped out. I wonder if it still exists (of c...
e59b6965-d793-dbd6-b04e-bba28000c75b
['3aefd386-f377-f36b-9d3d-db7448dfd08b']
Hi <PERSON>, I am using the Postfix Cyrus -Imap Squirrel Mail version 1.4.10 Mysql I get a following error when i am implemented auto respond. I have created a FTP account and it is working fine. Even though i get a below mention error There was a problem connecting to your FTP server: "cannot log in to localhost...
d2721210-a1a6-30da-d287-59699c3ced66
['3aefd386-f377-f36b-9d3d-db7448dfd08b']
Hi <PERSON>, Postfix Cyrus -Imap Squirrel Mail version 1.4.10 Mysql Webmail client SquirrelMail does not give the date and time, when they reply for the mail. This happens only when the user go to option -> Personal Information - > Reply Citation Style -> change to ON DATE AUTHOR WROTE. We would like to have thi...
3c500814-921a-ef47-cdb7-0d178707d411
['3af90a4c-1c01-3862-d2e5-2cf54c881e27']
The road layer in American Samoa has several problems: Firstly the bulk of it is misaligned; secondly some of it is replicated (ie some roads occur twice and the second layer appears to be in the correct location); and thirdly there are some nodes that are way out of place. How do I go about bulk replacement of the...
c73001a1-f423-5934-f6f7-05c4fd2573f4
['3af90a4c-1c01-3862-d2e5-2cf54c881e27']
[Geoserver 2.2.2, Tomcat 7.0.22, Win Srvr 2008 R2] I'm successfully loading files via cURL & REST services but I'm unsure about REST security, particularly with providing access to one workspace only. The documentation explains how to secure the entire site or a specific resource. The default rest.properties is t...
573d8fe9-7ca9-1117-7b79-cb8c3ccc7e2a
['3afbe5b6-2429-6664-9174-3617f8c9d6f7']
Hi again! A few months back I broached the subject of getting SSL support into pgpool-II and it was agreed to be a desirable feature. It got put on the backburner due to other projects (and then vacation, of course!), But I finally got around to revisiting this and have spent the last couple days hacking on this and ...
fa8b2ac5-f01f-97e5-beeb-5909601837f9
['3afbe5b6-2429-6664-9174-3617f8c9d6f7']
Hi everyone, first post :) Is anyone working on implementing SSL support in pgpool-II? I'm working on a cloud-based project involving pgpool-II and postgres, and thus don't trust the network in between the pool node and the database nodes. Currently we're working around this via a series of tubes and indirections (s...
effa2eeb-f4e2-b4b1-aaad-87d2f2d4dc4a
['3b0e6a8a-c8e2-4fad-04a4-1e2869738e91']
Hi <PERSON> I've spent the last few hours trying to re-produce your issue - alas with no success. I've attached the configuration I used to this bug report; if you could review much appreciated. I've successfully run webprotege on a fresh tomcat installation configured to your spec; I'm either missing something obvi...
69a41c8f-485b-e3e6-704b-22923b7917e7
['3b0e6a8a-c8e2-4fad-04a4-1e2869738e91']
Thank you for taking the time to report this bug and helping to make Ubuntu better. Unfortunately from the information provided in the bug report I have been unable to reproduce this issue; I have successfully bound multiple tomcat6 connectors to different IP addresses using the 'address' parameter of the connector o...
d5950938-ecf5-349d-6eea-9f39f5af976f
['3b28f75b-5e28-a79d-c455-f72ad98ee44d']
Hi, I'm finding that some developers do not sync their workspaces with the head revision before making changes to the source code and overwrite the latest revision with an older revision of the file. What is the best strategy to prevent P4 users from overwriting the latest file revision in P4 Depot with an older re...
515bd7c5-e3dd-f7d0-4aa2-0599654c11d5
['3b28f75b-5e28-a79d-c455-f72ad98ee44d']
Hi, My company is using the latest version of Perforce 2007.2. I would like to know if it is possible to create soft links in the p4 depot and when you apply a label, the label gets applied to the real file. To illustrate, assume that my depot is as below: Host X Y
57fb0e41-38d1-ea49-a91c-ab0db15ebfa0
['3b2fcab8-1741-d331-2ebb-3866b1ef19a9']
Hi folks, In using lighty as a proxy for TG (CP) via an uds, I noticed an error situation... The uds (setup in TG/CP startup) suddenly gets deleted, casuing the dreaded 500 error. TG/CP and lighty appear to be running just fine, but as the uds is gone, no content can be served. I think I have fix for it (lighty.conf...
f176bde8-09de-608c-f805-579b5a6c2baf
['3b2fcab8-1741-d331-2ebb-3866b1ef19a9']
Hi folks,I have a webserver based on mini_httpd v1.19(http://www.acme.com/software/mini_httpd/).I'd like to run some python-based CGI scripts via this webserver on an RH9 system.In theory, with the right env settings, Ishould be able to launch mini_httpd like so: mini_httpd -c *.pyand be able to run scripts like so: ht...
23d46e81-5bc9-0445-c84f-7585ee7af930
['3b439888-5677-960f-d159-9b101f76980c']
Hi, Do you uninstalled old version of module before installing new one? Or this is fresh installation of your module? We are finalizing debug module which will allow to check and edit registered modules meta info directly in admin. Soon it will be available publicly, but if you need it I can send it to you by email. ...
0c638063-56c5-4b6e-db68-84197ac6c6fe
['3b439888-5677-960f-d159-9b101f76980c']
Hello, Old "basic" theme emails were not changed, only "azure" theme emails were changed. And header.tpl and footer.tpl are only in "azure" theme. Old "basic" theme emails will work as before. If you want to use azure emails in basic theme, you can easily do this - simply copy azure emails (including header.tpl a...
1e1aaa7e-782f-e63b-7bcd-1e806e0c32f8
['3b4ab5b1-2c7b-5257-ff6d-e0c469c6e7a6']
Hi <PERSON> Did you ever find a use the the cartoon I drew you? Did you know on my website i have hiking t-shirts and stuff? Why don`t you buy a t-hirt from me and test it out? lol...j/k Frik
527b5724-cb58-8a82-7802-182c71a282d9
['3b4ab5b1-2c7b-5257-ff6d-e0c469c6e7a6']
i think you just gave me a couple ideas for my cartoons..lol Frik
739feca1-5b96-4e0e-445e-4b5637c31a72
['3b5bfe12-9ddf-a6c1-2a7b-ea9a555e892e']
Hello <PERSON>, I compiled libtiff with JBIG support, but I can't get tiffcp to write the output JBIG encoded (and yes, the input is bi-level data). If I try to control the conversion with the -t/-s/-r/-l/-w flags, I get varying error messages, but in no case tiffcp writes any output (see log attached). Is this supp...
e7e631a8-2f10-bdf5-44ed-1f9849802fd5
['3b5bfe12-9ddf-a6c1-2a7b-ea9a555e892e']
Hello, I built libtiff on MinGW and linked it against Netpbm's tifftopnm. However, tifftopnm didn't work due to TIFFFdOpen(), if configured for MinGW, expects the 'fd' parameter to be a Win32 file handle, but tifftopnm uses POSIX file descriptors. Attached is a patch that adds a configure option to select the I/O sty...
d68d79fe-cc7a-64da-565d-82dec1aa1daf
['3b748ac1-ca99-a04f-e59f-57be6791e68c']
Hi <PERSON> I am sorry to resume this after a long time but i could not answer before. I do not have much knowledge of the heuristic dissectors but i suspect it might fail in case of my protocol because my protocol starts like http and then then after a couple of requests/responses it'll start exchanging binary vpn d...
c89bcb11-1640-30d1-819d-32f0c401e7e7
['3b748ac1-ca99-a04f-e59f-57be6791e68c']
Hi all, I am looking for advices/opinions for a new feature. Basically I would like to have the possibility of specifying the inner app data protocol when dissecting/decrypting ssl/dtls using the keylog file. There are situations when the inner protocol might be a custom protocol (ssl vpn in my case). At the moment ...
7ca6f5af-935b-31a5-8f01-99fcc723e1c5
['3b74bda1-fa03-1e19-61cf-b7f728749f05']
I've got a check program that we use to write our AP and payroll checks while our company is in bankruptcy that started as a quick "I can do that" project and is now growing to need a database (currently just uses a shelve for the check register and a pickle for configuration data). I develop on Linux and the database ...
4ec2149e-702c-aa5d-63c1-4f749589ee02
['3b74bda1-fa03-1e19-61cf-b7f728749f05']
I've been toying around with the SocketServer module to get a feel from creating servers and haven't found a method for making the program daemonic. I've searched through the library docs and only find daemons in the Thread module. Is there not a standard library function/method for this? Is there a good one around or...
0d9458e7-15a2-4e74-de07-8bd87597c47c
['3b7a3e16-b7f7-d3a0-6bf5-b53a0fe32009']
Hi Fedora users <PERSON>, I have installed FC1 on our new Server and it works fine. The only problem is to print from the windowsclients to an HP 450C large format printer. The printer is connected to the net via an HP 300X external printserver. I can ping the printserver. I created the printer in CUPS with the webs...
314765f9-1189-83cd-8e7f-57ac48fe6533
['3b7a3e16-b7f7-d3a0-6bf5-b53a0fe32009']
Hi <PERSON> I had the same problem on our Server. The solution is *not* to use the samba configuration tool from fedora. Use swat instead. (http://servername:901 in your favourite browser) I believe the tool from RH has problems to set the server role accuratly. You can safely use the tool to set up the samba users...
1eef8b0f-7360-bb33-60e8-ad40f09ec0f0
['3b89c755-f809-f480-3c2a-bac12cd54882']
Folks - Been considering replacing my WTV Go card with a WinTV PVR. There are a couple of cards on eBay marked "WinTV PVR 2 MCE" - they seem to be intended for use with Windows Media Center Edition. Do these work with IVTV as the other PVR250s would? Does anyone here use this particular card? Thanks!
e9ef969e-7bf0-bcb7-553e-45897e59c813
['3b89c755-f809-f480-3c2a-bac12cd54882']
Folks - I run Freevo on an Epia 800 with 2.4.23 and epia-specific patches. The machine currently has 128MB of RAM. I have difficulties recording live television, for obvious reasons. Does anyone else use this board for Freevo? If so, how much RAM do you have on board? I'm trying to get a good idea of need bef...
eaba3388-2b08-2e90-2afb-9e703a3cdcd1
['3b94604e-8ab2-9950-05f4-8802fa3326aa']
I've been asked to take large ASCII files, millions of records, and create comprehensive lookup table. The Ascii files are created contineously by sensors attached to tools and machines linked to PC's. This involves string manipulation, sorting, filtering many mathematical calculation, and creating a fast access in...
64abf0f8-5fd0-ae47-0723-8faf3ed57d00
['3b94604e-8ab2-9950-05f4-8802fa3326aa']
I've been asked to take large ASCII files, millions of records, and create comprehensive lookup table. The Ascii files are created contineously by sensors attached to tools and machines linked to PC's. This involves string manipulation, sorting, filtering many mathematical calculation, and creating a fast access index...
accee8c6-7799-2604-8c0b-0ffc6ca4aaa4
['3b94aa09-3f17-bab6-0f69-9aae2e51c55a']
Hello, everyone. I'm hoping I can get an answer to this without having to burden all of you with a lengthy code-paste. :) I'm working on a simple text-editing application, and would like to include a function to ask the user to save changes before quitting. Can anyone describe a method for checking to see if anythi...
31d648cc-1e11-31fe-cf52-a94f7ead7dde
['3b94aa09-3f17-bab6-0f69-9aae2e51c55a']
Hello, all. Having a great time here-- this list is an excellent complement to my newbie reading on Python. I never imagined that a robust, full-featured programming language would be so easy and enjoyable to learn. Anyway, enough preamble. I'm wanting to write a small graphical applet for mounting and unmounting ...
2672c580-0c7e-23d9-edb1-640ea27ec177
['3bad1269-7662-99d4-b43d-2ab019a9ea06']
<PERSON>, For a less intimidating (but still quite effective) HD encryption strategy, check out the grml2hd manpage. &nbsp;It includes straightforward examples of switching to LUKS-managed encrypted /home and swap partitions after installation, as well as examples of mounting directories for temporary files as tmpfs r...
95b6cdb5-903c-8a2c-250d-288d5a7bc91f
['3bad1269-7662-99d4-b43d-2ab019a9ea06']
Hello, I have noticed that when I try to use print-buffer or ps-print-buffer inside a *Mew message* window, it fails with an error message such as: - "print-region-new-buffer: Text is read-only," or - "auto-compose-region: Text is read-only" when I attempt to use print-buffer or ps-print-buffer, respectively. I...
606d5a54-1872-0b01-bb59-11fb6c1ba24d
['3bb03dfa-5745-4f34-d792-9361a7ed2055']
Greetings all. I'm a newbie to PHP, but have quite a bit of experience w/Perl and C, so the mechanics of PHP don't seem too difficult (yet :-). I also have some bare-bones HTML experience. However, I have two questions..... 1. I want to create a form that will accept some input, process that input, then store the...
bc3a9e58-550b-6b53-fa9e-09b8b7de8391
['3bb03dfa-5745-4f34-d792-9361a7ed2055']
Folks, I've searched through the archives of the general mailing list and cannot find the answer to my question. My web hosting service requires ALL scripts run from /cgi. I've tried putting <?php ?> and <SCRIPT language=php SCRIPT> in my HTML files (located in /web/???) to run php commands but they aren't worki...
5b57c055-4bc1-e7db-94d5-faa63356cefe
['3bc196e8-9f31-f1fd-8ce7-7ab89848aac2']
Hi all, I posted two questions in the past days but unfortunately I did not receive any answers. The mailing list archive helped a lot to clarify some points but I am still struggling with different instance of portlets (see previous posting copied in below). When I copy a customizable portlet instance (the Bo...
550021a1-74b2-66be-18c8-58e3ceed773c
['3bc196e8-9f31-f1fd-8ce7-7ab89848aac2']
Hi, I suppose I have a similar issued to solve like <PERSON>... Using Jetspeed2 our users log in the windows domain and are automatically authenticated against our portal as they are users in the corporate Active Directory. An Active Directory group further tells us which business unit he works for and which role he ...
71fe55fb-67f1-57d7-381e-eeeeabad77ba
['3bc3e74c-bffb-7c1b-566b-5e80aa7c4165']
<PERSON> now is enjoying the beautiful weather and tango in Chicago, where he is teaching for the 4th time in 2 years. If any organizer is interested in having him instruct in your community, please contact me directly. <PERSON> will remain in the U.S. for at least a couple of weeks after Portland this fall. We brin...
311ccc46-d671-9a41-8271-f5cbdca94c3d
['3bc3e74c-bffb-7c1b-566b-5e80aa7c4165']
WindyCityTango, Inc. is excited to sponsor Brooke s Chicago visit during her 2004 tour of the USA Brooke Burdett is known for her leap across continents in the mid-1990 s, taking her from the Denver area on a ''tango calling'' to Buenos Aires where she currently resides. Recognized for her elegance on the dance flo...
433665b5-25b8-2312-5bc4-84b650fcce7d
['3bc3f79f-9c2f-74a0-ca0f-5932f6105cef']
Thanks <PERSON> for your reply. I just finished re-reading Data Definition of IB6, Chapter 6, where I found that rows must have fixed-length and I was using a file where fields are separated by comma. Anyway, because I cannot replace any comma with blanks as said on chapter 6 (there are near 2,800,000 rows), I have to ...
c36016fc-8d44-b334-23ac-696e85096bbe
['3bc3f79f-9c2f-74a0-ca0f-5932f6105cef']
Hello, I downloaded the worldcities list in .txt format and created two identical tables where one is referencing this external file. When I launch the insert with a select from external table, all goes fine. The problem is the data received in the real table do not match and number of rows is not the same as from txt ...
dfe08c3c-f8cd-3f69-96d3-070a19f9641c
['3bcf2d10-7d69-13fa-4001-869425974010']
I want to set up a dedicated remote plan9 system to periodically check mail and print parts of emails from certain senders. I think I see how to do this using rc. I'm not sure about a restart after a power restoration. Do I have to modify the kernel to provide for a fixed user and root, instead of the usual login? ...
e2d6db89-652d-101d-f178-539fe03ac1d9
['3bcf2d10-7d69-13fa-4001-869425974010']
I use p9p to create plots in the usual plan9 way, and I can view them with proof. For example in p9p, 9 grap plotfile | 9 pic | 9 troff -mm |proof produces the expected plot result. But, I have not been able to find gs or other translator to use to print the result on my HP PCL 3 printer (HP J6480). The OS is OSX...
9378ca90-832c-078a-7f2f-f01ae263b5f0
['3bd72556-a1c0-ba17-eefb-9d144efc900e']
When trying to replicate the function of plotPCA using prcomp as I use normally I noticed that I could only get it to match if I set scale=F in prcomp(). When scale=T scaling is done by dividing the (centered) columns of x by their standard deviations i.e. the genes are given equal weight. By standard I would set sc...
fcfaf400-6c72-5450-e8ad-426cccaa9bd2
['3bd72556-a1c0-ba17-eefb-9d144efc900e']
I have an RNASeq dataset that has samples from three conditions: low, medium and high. What I would like to find is genes that have expression that either increases or decreases with the condition. I have been using DESeq2 to do differential analysis and so was wondering if there is a way to do this. I tried to use ...
0e597f5e-cf2a-197c-776c-d7652c884b1b
['3bdb78f3-a418-1b24-a809-b2df2bc8683f']
Hello, Thank you for the information. I am just very confused on where to update this. The link you gave helps me understand why I need to make changes but doesn't really tell me where. I am not good with Linux so I don't understand where mod_fcgi is? Can you point me in the direction of where I need to make the ...
226bc358-65bc-7b76-c40e-c93a7bd9994c
['3bdb78f3-a418-1b24-a809-b2df2bc8683f']
Hello, I thought I had found the answer this a long time ago but I cannot seem to locate it now. We have several queues set up and when a user updates something on their ticket (priority, reply, etc) The ticket will automatically bounce out of whatever queue it is in into another queue. For most it's our default queu...
21d00ea7-eeef-b463-8e5f-b42f294c994c
['3bf0d912-a7a4-d27c-0809-15d129017673']
Hi everyone, As per the discussion at ApacheCon, it was suggested that I could produce the 3.14 beta1 release (probably the closest to π we're likely to manage unless we can crowbar a 5 onto the end of the number somehow), to confirm the documentation on the process is complete and accurate. So, questions... Where i...
289cf21a-e27c-0c10-febc-48549e1e071c
['3bf0d912-a7a4-d27c-0809-15d129017673']
Hi, One change which we have in our local build of POI is the extraction of super-interfaces to make streaming read of worksheets a bit nicer: "CellEssence" is implemented by XSSFCell, HSSFCell and SXSSFCell: "RowEssence" is similar and exposes CellEssences for that row. Is the introduction of these interfaces some...
c5f48c5d-d17f-3454-9f2a-c7f386ad22f6
['3c0085e2-2ee8-850e-ecf8-e073179704c5']
Howdy, Does anyone have experience with memcached or Redis node libraries? If so, what would you recommend as a starting point? We will probably use one of them in BigTent. Memcached - I'm starting a prototype with node-memcached (aka G/mjGfvL4WGZ/7ei@example.com), which seems to be a popular choice. Redis - I've pl...
9548dd9c-acdd-5317-04f8-1fc44a3ed8ee
['3c0085e2-2ee8-850e-ecf8-e073179704c5']
Howdy, Is there a preferred way of doing auto-scaling in CoreOS? Specifically provisioning additional CoreOS boxes, or additional containers within existing boxes to handle increased load for a specific type of container? Any existing libraries, patterns or tools would be appreciated. If not, a wish list or sketch...
425ef824-47eb-9ce5-f0b8-431d18662587
['3c0b50ce-47a3-28f1-4239-e037ccef84a4']
Hi I'm facing some trouble formatting my posts correctly. I have a site with html that lives up to every W3C standard. It has been utf-8 encoded and all, but in internet explorer when i try to view posts containing æ, ø å or such characters it STILL fails. What is wrong? I am using the javascript API - you can try it o...
fe141fef-3770-223c-e41d-2f94a60b3c0f
['3c0b50ce-47a3-28f1-4239-e037ccef84a4']
I have a page that contains an iframed google calendar. I would like to have the external page react to the users input in the iframe. More precise: When the user clicks an event. I would like to open my own event editing windows, but since my page doesn't know when links in the iframe is clicked, and the iframed page...
73c679f3-fd01-d6aa-b68a-979bfc8fc27f
['3c1af8b8-303a-528c-2867-98d0daa8fb59']
Hi! I remember reading somewhere that you can't use btex ... etex in "input" .mp files, as there is no possibility for them to be processed at that time. I've hit a snag, though, and this would really be a good thing for me to have. Is there any way to get similar behavior? Basically, I want to define some stuff th...
ee1fa36a-1c42-b160-94ed-4b4b7e9f30b9
['3c1af8b8-303a-528c-2867-98d0daa8fb59']
I would like to create a verbatim environment for writing pseudo-code in. Anyone have any suggestions/hints on how to go about it. I've looked at verb-*.tex, but they don't enlighten much. I basically want simple stuff like pseudo-code you'd find in one of <PERSON>'s books or anything by <PERSON>, <PERSON>, <PERSON>...
a2d9e850-585d-e7e6-9900-2d539aedb986
['3c1ecb97-fa25-d41a-ad24-116cbb820e60']
Hello, in the example below I find the following strange behaviour: I set the window to a Size so that the vertical scrollbar appears. If I try to press a Button that is child of a panel which is only partly visible, the scrolled window jumps into a position where the whole panel becomes visible. This happens on BUT...
eb6ca3b6-1f91-d623-ad6a-246e4e705e0a
['3c1ecb97-fa25-d41a-ad24-116cbb820e60']
Hello <PERSON>, I am maintaining a perl/Tk database app and use PAR::Packer to create binaries. Works perfect on Linux/ MacOS /Windows - thanks for a great tool. There are a lot of dependencies in my app therefore the packing takes some minutes. Now I was making up my mind about the possibility to add a dependencies c...
ff78db1e-33d7-1888-2380-7ccc973d472d
['3c2100e5-c564-7531-abfb-3f8e1aeb4a44']
Hi everyone, Lyx 1.4.2 works like a charm on windows, even got bibunits working from within Lyx now! The new install is brilliant, I got Lyx installed in my application profile directory (a lot of spaces!) on a machine where you have literally no privilages. Lyx is completely self contained (without image support ...
5f87260b-a9b2-bab1-58cd-21f5abd20a51
['3c2100e5-c564-7531-abfb-3f8e1aeb4a44']
One question about the paths. Why does the temporary tex file not contain the full path to the bibtex file? It contains full path to all the included graphics, but for the bibtex inset, only the filename. I've rewritten the \bibliography comand to enable btunits to add chapter bibliography and i have to manually add ...
99bcff7c-1761-8265-11e7-492f2fcf2f75
['3c2394fe-2bee-20b7-061e-2d64fa1156aa']
Hi, I have a regular mono process (not a daemon) that I have set up to start with the system boot, runs as root and does stuff in the background. The problem I see, and have verified during several months is that once the process accrues 1000 minutes of cpu time (as reported by top), the process gets terminated/killed...
541d239d-78b4-31b5-79b8-378ba87b3301
['3c2394fe-2bee-20b7-061e-2d64fa1156aa']
Hi, I have been implementing the Express Install feature on my site for the last few days, and after extensively testing it, I have found some of the servers it relays on are intermittently not available. It really fails very often. I have tested this for several days, on different browsers, and using the default ...
c9aba5aa-0d6d-d4d2-7c71-e82c0c0e177e
['3c2d1c13-8cdb-bc72-5025-b24a9f08ee65']
Hi, ns-users, I met a strange problem with "trace-all". In one tcl scripts, I always got an empty output file. In the following script, the output is supposed to written to the file named "out.tr". But "trace-queue" works. The problem should not be with the software, because "trace-all" works on another script...
dd90b566-1493-2195-5699-bf6d89323a49
['3c2d1c13-8cdb-bc72-5025-b24a9f08ee65']
Hi, all, The power, which is defined as throughput/delay for a single connection (session), is to be maximized to get the optimal performance. When all the connections (sessions) are considered, however, the delays will be different, then what form of power should we maximize? Maximize the sum of powers P=(T1/...
199514f3-9f4e-c982-e270-35bb615c0262
['3c3460fe-98d3-6dcd-a460-e8ee62456ba3']
Hello, Managers. I installed a Tru64 Unix TruCluster V5.1A Patch Kit 3 Operating System. The system has two cluster members. But now, cluster name and cluster default alias IP address have been changed by the customer, so I have to apply these changes in the system. Despite of having read the Cluster Installation ...
6d2b7431-04f8-ab8b-b967-da1eb9b25f35
['3c3460fe-98d3-6dcd-a460-e8ee62456ba3']
Hello Managers. I am working on a Tru64 TruCluster V5.1A Patch Kit 3 and I have a doubt with the CAA. I have two nodes on the cluster and my customer wants me to configure its own cluster services in such a way that this services are always running in the same node. That means if all services are running on node "n...
9773a8dd-4c22-4893-a27c-d057657563e9
['3c61828b-e2d9-6434-4ba0-33566180499d']
I have a small waist (29 inches). I have been looking at some packs but even the small size has a hip belt that is still to large. Does anyone have a good solution maybe attaching padding to the pack or sewing back the belt? I checked with the manufacturer (Arc'teryx) and they don't have any hip belts smaller th...
a8f414c0-ca12-1675-102f-8593fbc23f2b
['3c61828b-e2d9-6434-4ba0-33566180499d']
Is there such a thing as a rain shirt that I can wear in combination with an OR GTX hat? This would only be practical if the rain shirt were lighter than my 9 0z sierra designs rain coat. Does anyone know of any truly waterproof wind shirts that are light enough? <PERSON>
4fd469d7-276b-3122-44bc-def685eaafe3
['3c646ae4-ad9e-176c-3271-f3cd3df78b15']
Sorry to intrude but what OS have you installed on the RPi? If you have limited experience I would have expected you would be using Raspbian or NOOBs. Raspbian includes python, no need to download or install it. The only python related code that needs to be downloaded/installed (otehr than weewx) are a few python l...
3ad7517f-5e23-bd01-017e-9302bf0dfa2d
['3c646ae4-ad9e-176c-3271-f3cd3df78b15']
<PERSON>, Just copy weewx.conf, contents of the /home/weewx/bin/user directory, contents of /home/weewx/skins directory (paths to these will depend on your weeWX install type - refer to http://weewx.com/docs/usersguide.htm#Where_to_find_things). Reinstall the same version of weeWX in the same manner (setup.py, dpkg et...
78c6c42f-0732-2ec7-0733-6f325bed6edc
['3c689680-91ab-e45d-edd9-8c7241f37be4']
Hello all, I'm running Apache 2.0.51 on a YDL 4.0 server. According to <http://www.apache.org/dist/httpd/CHANGES_2.0> there have been a number of changes between 2.0.51 and 2.0.59 (the latest 'legacy' release). How do I go about upgrading to 2.0.59 or is there an alternate route available? In yum httpd 2.0.51-2.9.5....
68338d3a-42cd-de3b-c5ca-4f4075e05692
['3c689680-91ab-e45d-edd9-8c7241f37be4']
Hi all, I recently activated vsftpd on my server and I'm noticing statistics in the daily server report (automagically sent to root by all servers) that suggest someone's trying a dictionary attack (presumably) on my ftp server (10000+ login attempts ;-). I just activated the 'Linux firewall' (iptables?) and used the...
c58a30f1-aecd-3dad-17ad-0976f2264081
['3c75451e-c5ac-8f42-4d80-fc39c9dd4db3']
Hi all! I am working on the issue 9901 [1] and need some help, please :-) At moment, Jenkins TestLink Plug-in executes automated tests (with JUnit, TestNG, Test::More, PHPUnit, etc) with data retrieved from TestLink, however if a test fails the plug-in does *not* change the build result status. In this issue created...
d3716310-4dd7-858e-f878-b43af5779deb
['3c75451e-c5ac-8f42-4d80-fc39c9dd4db3']
Hi all,  After Jenkins Meetup São Paulo 2012, some users got interested in contributing to Jenkins by translating the core and plug-ins.  We are organizing a group of translators, and right now we are discussing where to keep track of what has been translated and who is going to translate what. We are using a unoffi...
c432de36-e24d-4aa1-f0c3-e91109f36818
['3c778dab-7c30-12ac-ba98-b09a28624aeb']
Hi, I am using fuse client front end to connect to back end system in a remote machine via TCP socket. In the fuse callback functions, it sends requests with user information to a remote machine and wait for the response to complete the callback. My questions are: 1. Will it be thread safe if a singlton class (in C++...
d7a60333-358d-993c-78cf-2834e4db7658
['3c778dab-7c30-12ac-ba98-b09a28624aeb']
Hi, I am running CentOS 5.2 on Acer laptop, I try to display laptop screen on a LCD TV via VGA cable. It was fine while PC was booting in text mode, but as soon as I started X Window, the LCD TV has error "Unsupported signal, adjust your PC out". How can I adjust or may be regenerate an xorg.conf for the LCD TV (Sony...
7ea9ac89-87ff-3ac9-3528-f768f15c87c1
['3c825166-f8d5-2005-b6f0-065816a06bd3']
Hi to all, Maybe this is the wrong list for my question, but I don't know a better place.. I'm developing a GPL'ed vocabulary trainer and would like to provide support for other vocabulary file formats. But I'm not sure if I'm allowed to do so, especially in the case of commercial programs' file formats. So do yo...
b4051b37-6614-e897-b518-7130bc216515
['3c825166-f8d5-2005-b6f0-065816a06bd3']
Hi, I'm the author of KSalomon, and I just want to congratulate you for your success in the Qt Contest. Although I cannot really understand, why ksalomon got one of the two third prices, since it lacks some things very much in my eyes, I'm very proud to be with KStars, <PERSON> and <PERSON> at the victory rostrum. ...
4a1197d2-538b-5022-dd54-e87c8c7d1b3e
['3c8f91f3-9934-36d0-ae43-aba6ccb9b252']
Hi guys, I plan to go to the meeting for the first time, and was wondering if anyone is kind enough to give me a lift home (I live very close to Caulfield station, so I am happy to be dropped off at stations on that line)? On another note, how late does the meeting normally go for? <PERSON>
a72d7450-b33e-82c1-2826-5bbc9275c1a7
['3c8f91f3-9934-36d0-ae43-aba6ccb9b252']
Hi guys Was wondering if you guys can help me troubleshoot some small problems with my Fedora Core 3 install. It seems after installing ATI's latest driver 8.10.19 (I am running Radeon 9200, Xorg version 6.8.2, KDE 3.3.2-1.7.3.kde and kernel version 2.6.10-1.770_FC3), the startup seems slow (the part where it gets...
82140025-c137-5a25-5429-4650b4a5f570
['3c9489cd-a437-a1bf-6850-395f3f0c37d9']
I have found the solution. Get the Series i to build the fields, by using a command. I built a comand with all the parameters and called the CL. The Command built the paramters, and no problem with overlaying parameters! Thanks for everyones' assistance! <PERSON>
92c93782-e188-61fe-57ca-972db8137928
['3c9489cd-a437-a1bf-6850-395f3f0c37d9']
I am changing an RPG program called from the web by Visual basic. Original program had a limit of how many items it could display. Well there are more items that need to be displayed. And when the program started to place those items into the parameters, from a working field data structure, it went over the limit. B...
f4a8e78b-d252-6b0e-6989-f683cb90e3e1
['3c987d29-4140-857c-dda1-4db02ca5ed8f']
We are inviting everyone involved with networking to review the design document for Brussels Phase II aka /ipadm(1M). /The document is here: http://www.opensolaris.org/os/project/brussels/files/brussels2.pdf Comments, from the community, on the first phase of the design review are incorporated in the latest de...
ad33ba92-c487-aff4-6b64-47be4a915e4f
['3c987d29-4140-857c-dda1-4db02ca5ed8f']
Folks: Going with the trend of 'one-discussion thread per week', we would like to start another discussion on 'select IP tunables' that would be 'initially' supported by /ipadm/ to begin with. At the link below we have listed the names of the tunables, it's scope (Global or per interface) and definition of the tun...
37964e2f-bb8a-5d1c-657a-6731b4136056
['3c98b9af-3953-0dc9-80dc-f092cc05cd06']
<PERSON>' Law says if it is further away and smaller it will take longer to get there. And that only works if you can see it, which you can't for LK handles. What if the whole object was the target and when you got your mouse cursor on it, you got a pie menu with up to eight choices, and secondary menus when more ...
59bc9c4a-1657-f5cd-fdca-d63bc44321ee
['3c98b9af-3953-0dc9-80dc-f092cc05cd06']
A friend pointed me at http://zoomii.com which he says is 14,000 lines of JavaScript. Is it a Lively Kernel application? It uses and connects with Amazon while presenting books as if they were in a physical store, but offers handy access to much more information than a brick and mortar store can provide. I still w...
246f66ce-048c-358b-281d-e2daa2a2b03e
['3cbfd864-7be7-341c-76ac-8f11e0e7728c']
Hi, I did it before rising the question: no ZFS, Solaris 10 64 bit, I am personally created manually 2G files – no limitations, the logs location is correct and individual files timestamps are up today. It's not always happening – 1-3 times a day. I inspected my config file and didn't see any destination that isn't...
3e5d401d-688a-3fa4-e787-8671bfe2669d
['3cbfd864-7be7-341c-76ac-8f11e0e7728c']
Dear ALL, I am running PL/pgsql procedure with sql statements that taking a long time. I able to see them in the log just after their completion. How can I see currently running SQL statement? I am able to see in pg_stat_activity only my call to function. Many thanks in advance. Sincerely yours,
878c3b31-708e-d014-c010-1da58c3a5a90
['3cc49ebd-f4ef-d66b-85a0-1cefc4ef5d91']
Hi, 1. How different is Dumb Agent from NOAH(non adhoc rp) ? *(there has been a similar thread in this forum by <PERSON> **Tue Feb 15 20:25:16 PST 2005... but it has not been answered back to the forum) * 2. How do i implement NOAH in ns 2.33 ? Does anyone have a patch for 2.33 ? If anyone has worked on similar lines....
e9d83a71-dced-5c35-b7bd-93c581c616ef
['3cc49ebd-f4ef-d66b-85a0-1cefc4ef5d91']
Hi, When i try to run any existing tcl file esp for wireless 802.11 simulations - the NAM is not working fine with ns-2.31 aand ns 2.33 . The error is *node 0 not found.. node 1 not found.. etc..* These errors , as i understand, come when the nodes are not in the range of NAM.. (??) Ialso came across the 'playing back...
5d0ff4cd-fdc4-0c45-bf10-9ff87c8104a8
['3cda040a-f744-6f4c-f7ec-0212ab1e0ece']
Hello Everyone, Looking for a Summer Camp Teaching job, any grade level, in the Shanghai area. I currently Teach at a Elementary School in California and will have off for two and one half months. Any suggestions or pertinent websites would be greatly appreciated, or even recommendations. Thanks so much for your effort...
f0503543-c222-f637-55ca-95a0675e6c8e
['3cda040a-f744-6f4c-f7ec-0212ab1e0ece']
Hello Everyone, I am a credentialed teacher in California, and have been offered teaching contracts online via the TEFL website for ESL in China. My question to all of the list members out there is simple. Which schools should I avoid? I am looking to teach during the summer of 2008 since l have off at that tim...
ba23ed65-079c-3cee-f6fd-b695570687a4
['3cdda045-3643-3372-3f48-f7373e3b7bad']
Hi there, The attached patch is for binpac in bro 1.2.1. It fixes a problem in handling the ``refine'' keyword under flowunit mode. We must defer the ``MarkIncrementalInput'' till all ``refine'' declarations have been processed. The patch also includes two previous patches: . data dependency between record fie...
bc8966f4-73e6-125e-509c-2ae18795dcc2
['3cdda045-3643-3372-3f48-f7373e3b7bad']
Hi, I get a compile error on mac os x 10.4.6. The configure option is --enable-shared=yes --enable-static=no. The first error is like the following: g++ -Lnbase -Lnsock/src/ -o nmap main.o nmap.o targets.o tcpip.o nmap_error.o utils.o idle_scan.o osscan.o output.o scan_engine.o timing.o charpool.o services.o protoco...
d3d7ff76-206b-d58b-39f4-fe358d8442a2
['3cdf0e51-878a-b20c-4058-9b7f2cd2671c']
Hi, we are currently considering a switch from OOo 3.0.1 to OOo 3.2.1. Since not all our users can make the switch at the same time, they have asked for reassurance, that documents created in both versions are interchangeable. So I have wondered if there is a list of changes or known problems in the document formats be...
06c7f4a8-befa-04d2-5588-cb38c553e33c
['3cdf0e51-878a-b20c-4058-9b7f2cd2671c']
Hi, I have just started to test AO 3.4 with our extension (WollMux) and ran into trouble right at the start. One part of our software is an external Swing GUI that connects to OOo/AO via bootstrapping. When this program tries to instantiate its main form, it throws a java.awt.HeadlessException. It's also supposed to la...
786075ab-70cf-bdd4-ab20-32dc6cac5f3b
['3ce03095-ab63-2260-4c6b-9790283ec9a1']
Hello, I have a plugin that is not hosted on wordpress.org and I want to know if it is possible to use the built in upgrade system of Wordpress ? When I update my version number I want an upgrade this plugin link displayed in the plugins page, like other plugins. Is this possible? kind regards, Tom
bef6458e-a233-74e6-8c05-4fec6535d189
['3ce03095-ab63-2260-4c6b-9790283ec9a1']
Hello, I've installed a Wordpress MU for a multilanguage site. I use the main site as an entry point for the 2 language sites like : domain.com (main site) and here you can choose to go to the english or the french site. domain.com/fr -> french site domain.com/nl -> english site The login screens are located a...
b989e485-83b8-f419-aa94-f2912cfaf0b5
['3ce2f1d9-6477-2738-ee67-6462fd79a280']
Anyone out there have any deep benchmarks to back up using prototype/new over a functional style in Node/V8? And that it is a clear performance/memory win?? Mixu's node book says: http://book.mixu.net/ch6.html "Don't construct by returning objects - use prototype and new" The claim to functional being "terrib...
1b6291c7-4ee1-3a9b-c229-32f675df7f46
['3ce2f1d9-6477-2738-ee67-6462fd79a280']
Looking at the example for http client, it's very nice if one just wants to print out the contents of the http call. But assume there was an app that hit say 3 webservices,a nd wanted to cache the results of each, and then flush the results out when they are all done. How does one, using the below code, or http/events...
9a13b4c0-d488-1bbd-9f0e-c851d104ed91
['3ce76ec8-9fbe-1c57-81f8-f9dc9f4f0576']
Hey guys. I have a standard site, say: http://mysite.myserver.com And eventually the user gets to a place where we'll need to jump them to something like: https://secure.myserver.com to take their credit card information. I lose my session when doing this. Both URLs point to the same server and are served by t...
f4f2ab20-15d1-f885-55db-74a20d4c3520
['3ce76ec8-9fbe-1c57-81f8-f9dc9f4f0576']
Hello, I am the maintainer for the <EMAIL_ADDRESS> mailing list. I've just received word that someone has subscribed our list to your service. I appreciate your service and find it a valuable tool; however, I would request that our entire list be set to mangle From: email addressed. Thank you for your attention ...
d950ce0c-cc7f-d7ea-765f-d5b76e3246a3
['3ce824c9-00b4-2ebc-21f6-294ac34a05ff']
Team, I’d like to discuss https://blueprints.launchpad.net/mistral/+spec/mistral-execution-origin <https://blueprints.launchpad.net/mistral/+spec/mistral-execution-origin>. To summarize what it’s about: imagine that we have a workflow which calls other workflows and those workflows call some workflows again, etc. etc...
1492adbc-cf8f-5ab6-b945-fdc208ef6b74
['3ce824c9-00b4-2ebc-21f6-294ac34a05ff']
Hi, Mistral Kilo-3 development milestone (tagged as 2015.1.0b3) has been released! In this release we’ve completed mistral engine redesign that allows us to move forward with new exciting requirements (collections, asynchronous processing, policies etc.). A whitepaper describing all the changes is coming up. Release ...
91cd3dbf-2ed0-147c-79bc-6d4fa26508ab
['3cee0599-4427-e5f8-7e62-c9ed3b118e10']
I have used ethereal to help me debug a couple of annoying problems I was seeing. However looking at all the things that are being captured has dismayed me by how much I *don't* know about networking at this level. Is there a networking "bible" that people recommend in the industry so I can learn more and take mor...
06ffcdad-0806-4351-c4fc-e67f8289db92
['3cee0599-4427-e5f8-7e62-c9ed3b118e10']
I am not sure to what extent ethereal supports SNMP. I have a server on my network that has an application that produces SNMP, I also have a MIB for that application. Can I probe that server for those SNMP values with Ethereal or is Ethereal designed just to interpret the SNMP values that are leaving the machine i...
8a2c5930-3202-fc3c-d22d-634469d74511
['3cf2aa75-9651-bf35-7b81-81b0ed7c1790']
Hi all. I have a fairly complicated Informix OUTER needs to be converted to PostgreSQL and I cannot get around it. For me it is fairly complicated Problem is inv_contracts OUTERS from three different tables and two out of these three (invention, 'dbuser as con') needs to SELECT for data (invention.name as inv_name, co...
9171c017-72df-7727-b5b7-437efc66d5fb
['3cf2aa75-9651-bf35-7b81-81b0ed7c1790']
Hi, I have been trying to test SEQUOIA2.6(c-jdbc) Horizontal Scalability which uses Jgroups. For testing porpuses I am running Fedora2,Postgresql7.4.6,SEQUOIA2.6 in my actual machine(host) and in my VMWARE(virtual machine) called cluster1 running Fedore3,Postgresql7.4.6,SEQUOIA2.6, I have another VMWARE(virtual machi...
a6ede411-e9a3-2c39-0bb3-6c206e5c57e0
['3d0a1761-039a-b064-b60b-41ef33b4dea4']
Hi. I'm having a battery problem. I'm running pygame on Maemo (linux on a mobile device). In my main game loop I am using pygame.event.wait() and sleeping all other running threads. To me this means that until there is an event, the process should not consume very much processor time. Unfortunately, the battery on the...
6684de5b-27b9-4581-48b1-29bd3d9fb2ba
['3d0a1761-039a-b064-b60b-41ef33b4dea4']
I'm considering downgrading from custom IP based SSL to use hostname based SSL or possibly SNI. Since custom SSL required a unique A record IP address, will there be any disruption in service if I merely switch the A records back to the default Heroku IP addresses and downgrade the add-on? Or is a special service reque...
a75a0b1c-f1fa-4390-61c9-8201d7003ec9
['3d227ec3-5ac9-8497-1fd8-fb90cc59e4dd']
Hello, I am sure this issue has come up before. I have seen mention of it but no resolution. I am trying to build/install SA 3.0.0. I have been using SA since 2.1 or something really old. The most recent I have installed (running currently) is 2.63. I have been installing these via RPMs. Now, I am not able to fi...
3308b354-af51-b7cc-5740-24f61fc29c6d
['3d227ec3-5ac9-8497-1fd8-fb90cc59e4dd']
Hello, I have an old email address that a few contacts still use to reach me. I've tried to get everyone up to date on the new address but no luck. That's not really the issue though... The reason I changed addresses was that the spam that was coming in was all addressed to the old address. I see that SA has a co...
36e52ebb-efea-328d-b711-f0e40474d4de
['3d38bd1c-105b-c8c3-8f3c-23078c0f1e75']
Hi all there, People I´m new to OSG I´m trying to use it wit QT framework and ARToolKit to develop my first Augmented Reality application. First I have integrated OSG ARToolKit and QT quite good, I saw the live video stream from my webcam, but when I tried to add marker detection the application close without any m...
c5276600-b771-ccc3-b351-6fb3c41f652e
['3d38bd1c-105b-c8c3-8f3c-23078c0f1e75']
Hello everybody, I'm using OpenSceneGraph with ARToolkit in Android to produce Augmented Reality applications I've managed to do it with some effort and results are great. Now I'm want to load 3D animated characters, but I have no idea of how to do this. If somebody has done this or know how to do this please give me a...