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
28ff1f81-95b8-27f6-4845-6c6ca55070ed
['3d39623a-e100-c543-2e8c-0ad7d949e7a2']
Hi. I'm trying to configure openNMS to work with some switches Passport of NORTEL, but there are some problems. OpenNMS recognize the SNMP service and shows some interfaces of the switch, but it doesn't activate it in the node reports. I tried to obtain information using a MIB Browser and there were no problems with the system tree and the ifTable, but the ipAddrTable can't obtain information. I read the documentation and the SNMP process begins reading the system tree, the ifTable and the ipAddrTable, and if one of these is not present, the process will stop. The question is what should I do to activate these switches so I can graph some things. Thanks for your help. <PERSON>
555ec7fd-990e-7920-8806-3fe478637d48
['3d39623a-e100-c543-2e8c-0ad7d949e7a2']
Hi all, I´m monitoring some Nortel's Passport multiservice switches with OpenNMS and to this moment everything is O.K monitoring physical ports. Now, I'm trying to monitor services in that ports, for example I want to monitor some clients' DLCIs in a FrUNI port, what should I do? And what if there are a lot of DLCIs? I hope someone can help me with this. Regards,
f768e404-13f0-8810-d2b9-a6ac5fd5d65f
['3d6336f0-af68-ea58-8e95-667607ab3524']
Hi all, We're looking for a mid-level or senior Python developer; someone to help us build our platform for publishing data to the web. Timetric has a mission to make data accessible, and the work we do is highly visible in digital media and around the web. We've only got a small team right now, but we've got plans for growth. You'll be responsible for your own work from the start, but there's room for growing into a team lead as the software team expands. Since we're a small team, you'll need to be able to communicate well with front-end developers. You'll also need to be happy thinking in an operational way, we're responsible for our own sysadmining here. Devops fans preferred; we deploy all our stack through Chef. All of our backend is built in Python, and all on top of open-source code. We're aware of our debt to the open source community, so where we've extended or fixed any software we use, we make a point of pushing patches and features upstream, and we also release significant portions of our stack as open source. We try to be active in the developer community, we've co-hosted developer events, and we'll encourage you to talk about what we do, and be excited about it. Ideally, you'll be fluent in one or more languages beyond Python; we've got a bit of node.js in production and even a bit of Java - we're not blinkered in our approach to building software. You've probably already got a github account, or an active presence on various open-source projects. And source control will be central to your working process. If any of that attracts you - or anyone else you know - we'd love to hear from you. There's a job spec at http://timetric.com/about/jobs/ - please contact us at <EMAIL_ADDRESS>. Thanks, <PERSON>
b5b4cad3-a596-3cce-9901-5d7250be5c9a
['3d6336f0-af68-ea58-8e95-667607ab3524']
Some more OAuth2 queries (based on reading -13) * There's no direct indication of expected behaviour after a failed attempt to refresh a token. Since a refresh_token workflow is an example of issuing an access token, should I read the error behaviour describe in 5.2 as applying to section 6 as well? * Can I read throughout the spec, that wherever scope is an OPTIONAL parameter, I can read a request with an absent scope parameter as being equivalent to a request with a scope="" (empty string) parameter? * In 4.2.2 (implicit grant, response from the auth server), the response includes an OPTIONAL scope parameter, whose definition includes " The authorization server SHOULD include the parameter if the requested scope is different from the one requested by the client." I'm not quite sure I'm reading this correctly, but I think that implies that if the client requests scope A, the server can actually grant scope B. - is it required/suggested that scope B be a subset of scope A? - is it true of any other workflows that a client requesting one scope can actually be granted another scope? Thanks, <PERSON>
0ac6e27a-30cd-3fba-4e6f-b22dc36ea3da
['3d81767d-2a76-34c9-8db9-59ee68a2776e']
In contiki source files, there is a file named tcpip.c under the directory of /core/net/. It seems a lot of functions of tcp are completed here, such as tcp_listen and tcp_connect. However, in the papers of introducing uip, they doesnot mention these functions at all. So I am wandering when I write a tcp example (a smiple example in which a client sends " hello server" and a server replys "hello client" are included), which function I should use, tcp_listen or uip_listen ? And in tcpip.c UIP_APPCALL is defined in this way: #define UIP_APPCALL tcpip_uipcall However, in the Email apps, UIP_APPCALL is defined in this way: #define UIP_APPCALL smtp_appcall As we know, smtp is all built on tcp, so why it is defined as smtp_appcall, rather then use tcpip_uipcall? What's the point here? thank you for your answer. 2011-12-09 shangqing.wu
3f023fcf-42cf-ac7d-ea9e-a7f468eddbf1
['3d81767d-2a76-34c9-8db9-59ee68a2776e']
In my observation ,the platform of minimal-net is used to do simulation of network. In unbuntu, it can send and receive ip packet via tap0, the virtual network adapter. Now, I am running the example under the directory of contiki-2.x/example/ping-ipv6/. I modify the process to ping with ipv4. I config the tap0 with <IP_ADDRESS>/24, and want to ping a real adapter in my network with address <IP_ADDRESS><PHONE_NUMBER>, and want to ping a real adapter in my network with address <PHONE_NUMBER>. But now it doesn't work. the ping process cannot get the mac address of the real adapter, the arp broadcast have no response. I don't know why. how can I use the platform of minimal-net or native to do simualtion? Is it possible to run two native platform process, one process send packets and the other receive packets ? 2011-12-01 shangqing.wu
705682ce-c7f6-c1cf-5b37-d189f3123a34
['3d83b5c8-3c64-d227-7197-0e514053d297']
Can anyone help me understand what it is I need to do to simply retrieve date and time columns into C variables that are readable. All other columns are come across successfully but the date and time. I have tried double to store the pg date and char[9] for time, among other typedef tries. My psotgres columns are defined as: mytime time, mydate date. Thanks C
fa982943-a7c1-1949-9ffa-4c8f1db3c108
['3d83b5c8-3c64-d227-7197-0e514053d297']
I am experimenting with LIBPGEASY Problem: When I access a "varchar(30)" column using "DECLARE.....FOR SELECT column from schema.table WHERE pkey='KEY'" When I fetch to a declared variable to return to a calling procedure, my program does a (segmentation error) unless I declare the char variable to some much higher value than it is seemingly necessary. Moreover, the problem does not occur when I manipulate the result in the called procedure. In fact, in my experimentation, I have noticed that I can declare a char variable array less than what the result is and it still works. The crash only occurs in the calling procedure. What might I be doing wrong? Thanks <PERSON>
25e89c22-3f10-5fb4-84eb-3db368612532
['3d882623-4824-f984-934a-dfdbf9a7b097']
Hi, Is it possible to dynamically set the height of the CreateTextField ? Here's my need. I import datas from a file and generate textfields on fly Some datas can have a lot of rows and some of them just 2 or 3 rows. So I would like to adjust for each textfield the height value to get all the rows visible. If someone could show me how to do this or tell me if there's another approach. Thanks for your help <PERSON>
bb870ca4-8a9e-4e55-c5c0-6383a7db8686
['3d882623-4824-f984-934a-dfdbf9a7b097']
Hi, I need to generate a list from an xml file. I put an example of my need at http://www.netsunset.com/alist.png (this example has 2 rows). Each rows has 2 parts (the first part has a Data and Pic part and the second has only text) I ve tried to use the datagrid component but It doesn't work like I want. I do not have problem with the xml part, but just want to know how can I generate this kind of list. I thank you in advance for your help. <PERSON>
2f58796f-74dd-2840-bfff-8976592ff576
['3d9b1e5d-93ab-6cc2-9b9e-d4b811fbe7a0']
Hi, This feature has already been asked for: see https://sourceforge.net/mailarchive/message.php?msg_id=Pine.LNX.4.58.0703221904090.6763%40gaston.pm and https://sourceforge.net/tracker/index.php?func=detail&aid=1679902&group_id=61828&atid=498549 However, the suggested modification of login.php is no more valid as its code has changed :-) So, I just ask if there is a "simple" way to silently offer users to login using login_attr or its dn. That is (maybe depending on a configuration variable $ldapservers->SetValue(0,'login','fallback_dn','no/yes' as suggested by <PERSON><PHONE_NUMBER>.6763%40gaston.pm and https://sourceforge.net/tracker/index.php?func=detail&aid=1679902&group_id=61828&atid=498549 However, the suggested modification of login.php is no more valid as its code has changed :-) So, I just ask if there is a "simple" way to silently offer users to login using login_attr or its dn. That is (maybe depending on a configuration variable $ldapservers->SetValue(0,'login','fallback_dn','no/yes' as suggested by Peter Münster), could pla make 2 tests with the login/login_pass form variables ? Don't know how much work that requires :-/ thanks
c7e68483-2676-b2f9-55ea-a67d8bc4ad26
['3d9b1e5d-93ab-6cc2-9b9e-d4b811fbe7a0']
Hi, I had pla <IP_ADDRESS> on a Debian/Lenny system for quite some time and I've just upgraded to <IP_ADDRESS>, still on Lenny, but this package alone from Squeeze. I had to modify my config.php file. It went quite well. Some parts of the previous template config.php.example file disappeared and I read on the wiki that the predefined queries are now defined in templates. I haven't found more information about these queries templates on the wiki. I had a look in the users list archive and found one message without answer : https://sourceforge.net/mailarchive/message.php?msg_id=4B71279C.6080002%40cgt.fr Well, I found two examples in [PLAroot]/queries which is /usr/share/phpldapadmin/queries in Debian. Starting from these files, I got my own templates (very simple ones : members of one particular posixGroup, stuff like that). I put the files in /etc/phpldapadmin/templates. However, I haven't find a way to access these predefined queries : the query_engine is set to true in config.php but it "only" offers the standard query form. What did I miss ? Thanks !
63d0bdb4-2d06-052c-0bc4-004e49f2a0e1
['3d9b799e-94ef-b1de-ca3c-74de75aad75a']
Thanks <PERSON> and thanks <PERSON>, both of them works. I wish to continue with just another doubt. 1) After the changes, i have anSSLRecordError with message "unexpected end of stream" message. For me this cannot be a problem of the length(size) of the contents of the response. I need to know if i could varify this to be a SSLBadRecordMAC and if varified, could this be for bypassing the SSLWarning? Any suggestions would be helpful. 2) Just out of curiosity...... The certificate i mentioned in my mail was of .cer type and i had to convert it to a .pem extension for it could be added to the X509 trusted certificates registry. I personally have used .cer certificates earlier, adding them to trusted certificate registry, but this one couldn't be. Can this difference be of the Certificate Authority ?? Because the present .cer file ,i was unable to identify the start and end in wordpad but the previous certificates i could do that.After converting the present certificate to .pem extension , i could read it from wordpad. Thanks in advance <PERSON>
31fa7774-f572-0872-b1bf-0c84c83e8135
['3d9b799e-94ef-b1de-ca3c-74de75aad75a']
Hi all, For my application i needed to send xml requests over the secure http. I have the X509 certificate of the format CN=*.hostserver.com. The URL to which i send request is of the form 'https://aSpecificHost.hostserver.com/....' So this causes a mismatch in the Net.SSLConnection-->validationBlock , where it checks if the certificate CN matches with the request's HostName and i get an SSLBadCertificateError. The certificate is a genuine wild card certificate used for my hosts under the provider. Some one have any clues regarding a fix for this? Thanks in Advance, Simon
25496bc4-c387-6be9-1a86-54801070a0fd
['3da4c3c8-6c11-f286-dc3b-37ea0951b06b']
Folks, While we're in a voting mood.... I've been harboring a hair brained idea for awhile and I'd like to get the list's input on it. I've been considering the possibility of converting the F500 mailing list into a web based discussion forum. This would allow anyone to post or read the list without having to subscribe to it. It would also allow topics to be threaded (i.e replies and followups to a post appear grouped together under the original post). The only major downside I can see is that you have to go to the F500 web site to read or post ot the discussion forum. Messages don't get delivered to your email box. (This might NOT be a downside, come to think of it). For an example point your browser at: http://www.na-motorsports.com/bin/messager/ldisplay.cgi?SCCA_F500 So... wadda ya all think? Better? Worse? Would you use a discussion forum as a replacement for the mailing list? Ideas? Flames? Cheers-
29866397-f189-2a89-0ab9-0564ffca9da4
['3da4c3c8-6c11-f286-dc3b-37ea0951b06b']
Well, conversion of my KBS Mk-8 over to Rotax power is pretty much complete. Just a few little electrical bits and pieces to finish up. One of those little electrical bits is hooking up my Digitron tach. Anyone running Rotax and using the Digitron? I'm frankly a little bit at a loss as far as where to hook the sense lead, and which pickup lead I'll need (Digitron makes 2 different leads, I've got 'em both). With the AMW's magneto ignition I was taking the tach sense off the kill circuit. A quick test with the Rotax showed a signal there, but it looks to be about 4x what the engine is really turning (5500 at idle). I can reprogram the dash to devide the tach signal by 4 if that's a reliable signal, but I'm not confident that that's the right place to pick up. On the Kawi I used to take the tach off the negative side of the coil, but having little documentation on the rotax ignition, I'm really not sure which wire is the negative. Or possibly I could take a tach sense off the lighting circut? Hpefully some enlightened soul can clue me in and save me a bunch of putzing around. I'd rather spend time on weight and balance and trying to figure out the Rotax (ski-doo) primary clutch..... Thanks!
3e9e17d9-5188-6b09-6447-770ffd8a9d12
['3dc84a63-78dc-b432-dc21-ed6ff00f6ca2']
Dear Plone users; When I configure Plone 2 "out of the box" as a Site type: "Private Plone Site", the workflow is a little different than what is documented at http://plone.org/documentation/book/Book/PloneBook-PDF.pdf In fact I can not find the work "publicize" anywhere in this book. I notice that there seems to be a difference when I "publicize" something (which does not seem to involve any reviewer) versus when a reviewer "publishes" something that has been submitted. In one case it appears on the home page as new material and in the other it doesn't. Is this intentional? Does it even make sense that a member can "publicize" something? At
2e157e6c-1219-f618-0389-bfe0c090fda9
['3dc84a63-78dc-b432-dc21-ed6ff00f6ca2']
In order to facilitate users change of language without setting the browser language option, I have installed PloneLanguageTool 0.1 with globalLanguageSelector in a left slot. This works well except that the contents of the slot itself does not change when I change languages. For example, French does not change to Français, language to langue, etc., although the correct translations do appear for (most) other CMF modules - at least for those for which I have i18n .po files. What should I do to provide appropriate translations for this portlet? Are there other alternatives for allowing the user to change languages? Regards to all, <PERSON>.
415577fd-0252-12be-9aee-3610d88adaf2
['3dcbd77a-a2e7-b9e1-342f-d6d6f03e3afa']
Hello, The Akonadi Server is almost ready to migrate to the new Git infrastructure. I'm currently polishing the rules file that will prevent us from losing the SVN history during the migration. The oldest commit is r496626 (r508468 for the akonadiserver import in kdepim/). That also means that kdesupport/akonadi can be moved whenever we want, eg. next week. Does anyone see reasons to delay the migration ? In the meantime, please avoid creating SVN branches or send me a message to include it to them rules file. Thanks, <PERSON>
98a8d91c-caf8-e197-0dd5-97f784c1fa1c
['3dcbd77a-a2e7-b9e1-342f-d6d6f03e3afa']
Hi, I'd like to change the comment in kdepim/kontact/src/kontactconfig.desktop for KDE 4.4. Actually, we have 'Comment=KDE Kontact' which is confusing when looking for 'kontact' in krunner, as reported in https://bugs.kde.org/166079 The comment would then be 'Default KDE Kontact Component' (this kcm is there to set the default component displayed when starting Kontact) Objection/permission ? Thanks. <PERSON>
81ce7239-5f5f-67b0-3687-daedb7ae7d7a
['3dd3bc72-eeea-ffd9-b96c-0aa15bbe775d']
Hi I am having "Scanning projects" problem most of the time. It is not just when I open my project. I am using ScanOnDemand plugin. All the changes are happening through IDE. I still run into 'scanning projects' every now & then & it is very lengthy operation. Does anyone know what I can do to correct this? Thanks <PERSON>
0d643e7d-edb8-ca7a-9d60-e86762708322
['3dd3bc72-eeea-ffd9-b96c-0aa15bbe775d']
Hi We are using git with a centralized repo. Some of the developers are on windows, some are on linux. The build system (ant & ruby scripts are used for build) runs on linux. The server on which the software product is deployed runs on linux. We see a frequent problem: 1. Person X clones a repo. So far all is good. 2. Person Y checks in code (commit & push). Checks in file a, b. 3. Person X does a 'git pull origin master'. Pull succeeds - however 'git status' shows file a, b as modified even though person X has done nothing with these files. 'git checkout' does not work. Files keep getting showed as modified. If person X wants to commit any changes - he is forced to commit file a & b. This happens only sometimes - but it is frequent. It is not specific to whether Person Y was on linux or windows. Would having the right configs solve this problem? Any guidelines on what config we should use? Someone has recommended we all use core.safecrlf=false core.autocrlf=false But this would require running dos2unix cmd while running scripts on linux which seems like an overhead. Are these the only two configs that are important? Any help is appreciated.... -Shilpa
6b208b76-384a-7ba1-b9cd-fc21b28bda77
['3dd5653c-2e87-3ffc-3cdb-10e60a474432']
Hello, I am developing a web-service which changes the content of a PDF file syncronously. For each page of the PDF file I will add an image to an X,Y coord and a string to the footer returning it back to the client. The problem with this approach is that PDFReader will use too much memory for each request. For a single request with a 3.4mb PDF file with more or less 400 pages it takes 150mb in memory which is not feasible if I want to keep this syncronously without a queueing mechanism. Is there any other way of using the PDFStamper without reading the whole file into memory, or at least to decrease this memory usage ? Best regards, <PERSON>
a8c12bba-4fd3-e3e8-bb45-3737b42644b9
['3dd5653c-2e87-3ffc-3cdb-10e60a474432']
Hi everyone! I think I have a more theoretical question that iText related one but I will try anyway. I want to know if it is technologically possible to do the following : 1) User <PERSON> submits a self signed PDF to a system 2) The system adds a page to the end of the the PDF file with some info or adds info to each page. 3) The system self-signs the resulting PDF and returns it to the client. It should be possible to do the following with the returned PDF : 1) The client can validate is own signed revision of the PDF 2) The client can validate the system signed revision of the PDF I think this is possible using signed revisions but I am not sure. Best regards, <PERSON>
893c2476-acc2-5669-2cd9-4733db571e08
['3de36ac3-4044-f002-e5d4-fe52c78c3ad5']
I occasionally get PSD files sent to me by web designers. My usual goal is just to slice out the bits I need when putting together a web page. The problems is that lately I have been getting PSD files from a designer where I have having difficulty getting what I need from the file. I believe this designer is using a feature called "Layer Styles" (although I am not a Photoshop user so that may be incorrect). http://files.pixelwareinc.com/screenshot.psd Is an example of a file like this. Now when I use ImageMagick on this file to convert it to a PNG it spits out each layer. This is actually very useful as I often want each layer as a separate file so I can extract only what I need. It also outputs a composite image of all the layers. So based on the above PSD file I get: http://files.pixelwareinc.com/screenshot.png as the composite image. The problem is that the layer files is spits out are the layers without the Layer Styles applied. So for example the following is the layer for the main stock art image: http://files.pixelwareinc.com/layer.png Compare this to the composite image and note how this layer no longer has rounded corners. Now my assumption is that since it is spitting out a composite image correctly then it can understand the "Layer Styles" feature. But how do I get it to spit out each layer with the right layer styles applied? Or perhaps is it only able to spit out the composite image because maybe the PSD format embeds a final composite image and maybe ImageMagick really can't understand these "Layer Styles"? If ImageMagick is not capable of processing these files correctly does anybody know of any open source software that is. I have tried Gimp and no luck with it either. Any pointers would be GREATLY appreciated. <PERSON>
4b8d9ace-73b4-cd0c-bc0b-98e7a7b1255e
['3de36ac3-4044-f002-e5d4-fe52c78c3ad5']
I am trying to create a bzr branch of a git repo. Using the bzr-git plugin seems to work well with repos like on GitHub. But recently tried connecting to a repo hosted by Heroku (a Rails host). I believe they are using SSH to communicate instead of git's native protocol (I am guessing for authentication). Not getting much luck and my knowledge of bzr, git and python are all very limited. The repo URI they provide looks something like HjZHpl8/jW+mvrFa@example.com:myapp.git You can see more info in their docs at http://heroku.com/docs/index.html. Since it wasn't working I am just assuming that bzr-git does not yet support this type of transport. I assume when it eventually does I will need to do something like: bzr branch git+ssh:Y1rAo4oTJQC6/SEe@example.com:myapp.git myapp I am fine if it just isn't there yet. But just want to make sure I didn't miss anything. Thanks for any advice. <PERSON>
6ab659eb-667c-c351-8d35-ce2e62d1ea7f
['3de7f9b3-4e88-3e18-e92d-a55174e916b1']
Thanks for the replies. Here is my requirement. My CSV file has 1000 lines as word, meaning. Like to create 1000 pages in Wiktionary. The mentioned python script in my previous query will do this. But, need a web application for this do that any newbie can use it easily. I don't think dragging CSV file to visual editor will create multiple pages. Thanks. <PERSON>
39f75862-d4e8-7ad5-39f6-c42fd1c4db01
['3de7f9b3-4e88-3e18-e92d-a55174e916b1']
Hi, I have subversion server on windows. We have several internal releases of our projects and we maintain those releases under "tags" folders. but we get into trouble as people often commit into tags folder. We are in the need of some kind of hook scripts which can prevent write on tags folders. Please help me to get the hook script for windows. Thanks.
84dc4d0d-b66b-5cd5-25ab-524460f4203c
['3df9bdea-afb1-56e4-be2c-84b5e5e7eb82']
Hello, I am new to dojo / dojo mobile. I am building a screen with a header and a list of items beneath. Very classical in mobile apps. I copy/pasted my code below Problem : the first item on the list is hidden behind the header and not visible in Preview or Mobile App Simulator. Rich Page Editor - on the other hand - is displaying the list correctly, first item included. I juste started the project, I don't have fancy CSS or other ... just started from scratch, added the ScrollableView, the Header, the EdgeToEdgeList and then the ListItems. Workaround is to apply a style on the EdgeToEdgeList to move it 40px down. But it is not clean and breaks cross-platform compatibility (what if the header is not always 40px height ?) Here is my code for you to test. I set the style param at 0px to let you see the behavior I am experimenting. (Same rendering in IBM Rich Page Editor, IBM Mobile App Simulator, Apple iOS Simulator and iPhone iOS6) Thanks <PERSON>
31ebb058-735c-d2a1-2d4a-e109358a4338
['3df9bdea-afb1-56e4-be2c-84b5e5e7eb82']
Hello, I am using Android SDK on Mac OS X with an external sound card (Edirol) When I do start the Android Emulator, it stops all sound output on the Mac. iTunes does not play anymore, no application (including the emulator) produce sounds through the external sound card. Only solution is to reboot. Is this a known problem ? How to workaround it ? Thanks <PERSON>
272660d0-1869-b39d-995e-96134fdb22a8
['3e0682a1-6242-ba26-1a73-5f3f85f11b28']
Hello, I have to change my keyboard layout when switching from french bépo to Polish layout, that I use only for writing text in emacs. Unfortunately, these changes are quite messing, since most apps I use are vimish like. I made a minor-mode dedicated to Polish and I would like to use insert-map to switch the keyboard layout in an quite unorthodox way. Unfortunately, (define-key evil-insert-local-map "e" '(quote a)) does not work. According to define-key doc, DEF should be a string that can be called interactively. What shall I do? Is there a way to make such a (indeed weird) mapping? I know this sounds quite crazy, but it would really be a great spare of time (I wouldn’t have to change configuration of other apps, and per-window keyboard layout switch on linux is complicated since I am using my own keyboard layouts, calling emacs in -nw and changing the layout in zsh is precisely the thing I would like to avoid, because of my vimish bindings)! Thanks, <PERSON>
66fde6f1-927d-acf4-5680-1fd26a324dce
['3e0682a1-6242-ba26-1a73-5f3f85f11b28']
Hello, I have what might be a stupid question, but forgive me, I have only two month of vim practice (10 years emacs): how do I enter window-state? I read the whole evil-maps.el and couldn’t find the propper mapping. Is it with C-W? Using window-mode will free four f-keys that I remapped to split, unsplit and toggle windows, and they will be free for other shortcuts (f3 for escape states, f4 for C-c C-c in auctex and so on… Another question: what should I do to donate for evil project? <PERSON>
f7aff877-75a6-2a61-b0bb-5d8d22bbab42
['3e097901-8ef8-e6b2-1c3a-cec14978edf9']
Dear all, I am currently working on a system to handle receipt of EMCY telegrams, but I have come a cropper upon the handling of the manufacturer specific bytes. I intent to add additional fault information to these bytes, which will let the master node know how the entire system should react. Of course, this information will only be valid from nodes where I have some control over the software. But it may be that nodes from other manufacturers will also insert data into these bytes. In order to correctly handle the EMCY data, the master node needs to know the vendor ID of the node the EMCY telegram comes from. My initial plan was to read the vendor ID from 0x1018,1 at start up, but this falls down as you cannot guarantee which nodes your client SDOs are tied to. There's always the default SDO, but these are normally reserved for configuration tools. The only other thing I can think of is extra entries in the object dictionary where the user must enter the vendor ID for each slave node, but this to me doesn't seem very elegant and leaves the door wide open for mistakes to be made. From what I can see this problem isn't restricted to EMCY telegrams. It makes interpreting any manufacturer specific data on remote nodes difficult, including that in the device profiles. Does anyone have any suggestions on how the master can reliably get the manufacturer ID for a given node ID? Much appreciated. Regards, <PERSON>
4bb8bdaf-6319-b499-4190-4ed8113b853b
['3e097901-8ef8-e6b2-1c3a-cec14978edf9']
Hello all, Whilst idly browsing through some EDS files for various devices, I noticed several of them had an entry in the object dictionary with index 0x100B, with the parameter name "Node ID". I then downloaded the latest version of DS301 (v4.02) but it was described therein as "reserved for compatability reasons". Is a Node ID entry something that is expected in a future release of DS301, or perhaps has been removed from a previous release, or is it merely an unofficial convention? The reason I ask is because this OD entry would neatly solve the problem I described in an earlier post to this list, where you cannot tell which nodes your client and server SDOs are mapped to. Any information on this is appreciated. Kind regards, <PERSON>.
4431f79d-203a-5da6-240a-06e2f59c136c
['3e10ef8d-8a18-d048-250e-9b9b3c25fb97']
I have install bacula 2.4.2 from source packet on Ubuntu 7.04. For the installation i had followed the Debian's guide on wiki section in "bacula.org". bacula-dir, bacula-fd and bacula-sd are in defaulte state (I only change passwords, the same for all). Director,Storage and Client are in the same machine and i haven't firewalls active. When i try to connect bconsole to Director, i have this response: Unable to connect to Director daemon on <IP_ADDRESS>:9101. ERR=Connection refused The broblem is that bacula-dir demon doesn't run (checked with "netstart -tupan") and my question is,WHY?? (bacula-fd and bacula-sd work correctly) I hope thet this problem not depend from ubuntu 7.10. best regards, subbustrato.
f6300845-8b70-127e-c836-df7f81e16843
['3e10ef8d-8a18-d048-250e-9b9b3c25fb97']
is it possible start a job after a client action? example: - storage and director on machine "A" , client on machine "B" - machine "A" always on - if machine "B" power on, "A" start a job on "B" This necessity come from my particular directory that contain the core of a software.If the software run and i do a backup, the saved file will be corrupts. In consequence of this i need that the job backup start only if definitely the software doesn't work (for example on computer start up). bye, sub
b30d61ff-7121-d48f-7b65-a56cc2c98be7
['3e110e1f-1e49-0418-e236-b5ae58eeec3f']
All, Good to see all of you again. I have a need to put an NIS client in 2 different NIS domains for that matter in 2 completely different DNS domains. Is that possible if so what is in needed in the /etc/yp.conf and my conern is binding order. If I do this: idiot.com moron.com Then idiot.com will always get selected no matter. Is there a way I haven't thought of that will allow that one NIS client in 2 domains? <PERSON>
fa7e954f-6fce-2c5f-ba17-ec7b964a833e
['3e110e1f-1e49-0418-e236-b5ae58eeec3f']
Folks, It's been a very long time since I have posted anything to this list. I still watch and listen to what the group has been saying. It is sad and very heavy heart to see one of the most successful operating system go this way. I am hoping that OpenSolaris will keep it going. But I have not seen anyone in the list talking about it. I suspect you all feel pretty similar as I do. I know there many of you oldies out there that been in the industry just a long as I have. Many of us can remember when DEC PDP and VAX series was the top end of the market all to be slowly removed from the industry. First it was compaq to take it over then HP. HP just threw it away like it was nothing, RSX11, RT11 along with VMS gone. The same can be said for PWB unix anyone remember that one. :) We all know what happen to AT&T 3B series along with System V flavor.  Who can forget the others like IRIX? Xenix, Also makes me wonder about SCO Unix or Novell which held the AT&T rights at one time. AIX in IBM is not going anywhere anytime soon. HP-UX is not going anywhere soon either. So why is <PERSON> a quitter? Guess it time for <PERSON> to retire and let some new blood run his company if you ask me. Apple will still have Darwin but it is widely used in enterprise level? Not to extreme that it is a job requirement unless you work at apple. All those Solaris resources going in the wind. Just think if wasn't for the innovations the Sun Microsystems was doing Solaris would have likely be gone long time ago. Funny how FreeBSD seeing NetApp, Isilons and other companies using that. Now let's see what let in the Unix World Linux - Red Hat, Centos Ubuntu,  SuSE, Slackware, Debian, Mandrake, and likely more than I care to stab a stick at. IBM - Linux - The only vendor that won't outsource anything except their money when they can make more money as long it is on Power P series. HP - HP-UX - Still there and they make it where it only runs on Itanium servers SGI - IRIX - Gone hardly anyone has an old origin 2000 anymore or the spinoff of Cray's too much? What I see happen is Linux spin off so many variants and one time could run on Sparc which was a very scary outlook to happen. I guess we better start learning AI before too long as it creeping into our environments too. It is called Learning Systems, It just subset of AI. I guess Odessey 2000 came and went and now have to deal with HAL. :) As you see, I really did enjoyed Solaris on both platforms sparc and x86. I did try to warn Sun this might happen if they didn't open up Solaris soon. I think they seen opensource as a threat and not advantage to allow Solaris to be swallowed up. I now wonder how many of us has the original Solaris or even SunOS versions. I hope that <PERSON> see it for what it could be if we had drown out Linux in the begining but no thanks to IBM, HP. Can't blame Dell they didn't make any RISC systems at all. But got big enough to buy EMC. So many of us has left that big pizza box in the sky. :) To <PERSON>, <PERSON>, <PERSON>, and so many on here such good people as well. I hope we keep crossing paths. <PERSON>
41927b32-0e3e-dc0c-6f76-33334a73286d
['3e3fb3dd-c2ff-7994-6b8a-96b20b469f11']
We have turned off all our VNC servers and turn it on only on a need basis. I still have to take a look at the connection logs ... I'll do that and let you know if I find anything. I believe I need to check the application logs in event viewer. <PERSON>
a569c22f-3c03-7aba-8108-38159763c175
['3e3fb3dd-c2ff-7994-6b8a-96b20b469f11']
Hi, I just downloaded the latest version of DBDesigner 4 from fabFORCE.net (v4.0.5.6) and installed it on Windows. I already have MySQL server installed and running on my machine. When I try to connect to MySQL DB, it asks me for the Username (root) and password. I use the same root password that I use for the MySQL Administrator (and it works), however, I keep getting "dbExpress: Invalid Username/password" message. Can someone please help?? Thanks, <PERSON>
5e3284df-4020-7885-d975-63f039ce0fed
['3e439720-9d81-ee86-8ebd-77b0dbf346e3']
Hi, Could somebody help me out with Neutron's Extraroute support in Hot templates. The support status of the Extraroute is support.UNSUPPORTED in heat, and only create and delete are the supported operations. see: https://github.com/openstack/heat/blob/master/heat/engine/resources/openstack/neutron/extraroute.py#LC35 As I see the unsupported tag was added when the feature was moved from the contrib folder to in-tree (https://review.openstack.org/186608) Perhaps you can help me out why only create and delete are supported and update not. Thanks in advance for  the help. Regards <PERSON>
f3d3ac1d-492f-035f-153e-bc437ece8202
['3e439720-9d81-ee86-8ebd-77b0dbf346e3']
Hi Horizon Team I read the meeting log (http://eavesdrop.openstack.org/meetings/horizon/2018/horizon.2018-01-10-20.00.log.html) and if I understand well the proposal is to merge part of the ngdetails patches (https://review.openstack.org/#/q/topic:bug/1681627+(status:open) ) in Queens, and address the remaining issues in Rocky, am I right? Could you help me to find a way to proceed with the remaining trunk related patches which are dependent on the above patches (https://review.openstack.org/#/q/project:openstack/horizon+status:open+AND+owner:%22Lajos+Katona+%253Clajos.katona%2540ericsson.com%253E%22). What do you think, shall I remove the dependency for ngdetails fix and add TODOs or similar to the code or wait for and help <PERSON><PHONE_NUMBER>.00.log.html) and if I understand well the proposal is to merge part of the ngdetails patches (https://review.openstack.org/#/q/topic:bug/<PHONE_NUMBER>+(status:open) ) in Queens, and address the remaining issues in Rocky, am I right? Could you help me to find a way to proceed with the remaining trunk related patches which are dependent on the above patches (https://review.openstack.org/#/q/project:openstack/horizon+status:open+AND+owner:%22Lajos+Katona+%253Clajos.katona%2540ericsson.com%253E%22). What do you think, shall I remove the dependency for ngdetails fix and add TODOs or similar to the code or wait for and help Shu with his work? Thanks in advance for the help. Regards Lajos
61c18854-16f9-648c-769b-36e178b2cb75
['3e4c8517-df79-b129-5de2-5cc236472d68']
Hi <PERSON>, Thanks for the description. From your description and a check into the code, I’m suspecting what could be happening is that before the consumer caught up to the head of the stream, Kinesis was somehow returning the same shard iterator on consecutive fetch calls, and the consumer kept on using the same one until it eventually timed out. This is actually suggesting the cause is due to Kinesis-side unexpected behaviour, so I probably need to run some long-running tests to clarify / reproduce this. The constant "15 minute" fail is suggesting this too, because the expire time for shard iterators is actually 5 minutes (from the Kinesis docs) … Either way, it should be possible to handle this in the consumer so that it doesn’t fail on such situations. I’ve filed up a JIRA for this: https://issues.apache.org/jira/browse/FLINK-4514 . I’ll get back to you after I figure out the root cause ;) Regards, <PERSON>
b3ad69fc-6f37-5530-2a4a-b16692bea3c5
['3e4c8517-df79-b129-5de2-5cc236472d68']
Hi <PERSON>! Thanks for also looking into the problem! I think checking `getAuthenticationMethod` on the UGI subject is the way to go. At the moment I don’t think there’s a better “proper” solution for this. As explained in the JIRA, we simply should not be checking for Kerberos credentials for all kinds of authentication methods, just Kerberos. I’m currently doing some final tests on a MapR Sandbox with the bug fix PR, will open it very soon. Would be great if you could take a look at the proposed fix too (it’s basically following along the lines you mentioned here :-) ). Cheers, <PERSON>
3600f3a6-e4c3-d776-da5c-8a403e3fabe3
['3e4f1c89-fd7a-9dbd-f67f-241deed90fb6']
Hey: A little OT, but I'm looking for a last-minute sanity check before I move a whole bunch of domains from my old server to the shiny new box I've been prepping for weeks... Here is what I plan on doing: vadddomain each domain on the new server Stop qmail-smtpd on the old server Stop POP on the old server rsync domain directories from old->new Change DNS so new server responds on old servers name Does this sound like a good plan? Also, is there a way to move the queue over from the old machine to the new one? I think it's all spam bounces, but there may be a live message or 2 in there... Thanks, -Kit
6e0a52be-4c8a-a7b4-ad65-ead52bf2519e
['3e4f1c89-fd7a-9dbd-f67f-241deed90fb6']
Hey folks: Having some problems on one of my servers. Lots of problems... Umm, where was I? Right, it's an Athlon box running 3.3-stable. (I know, but they're way over their IT budget right now...) The biggest problem they're having right now is with Netatalk. Apparently, upgrading to Netatalk 2.0b1 should solve this problem. I attempted to do so last night, but I was unable to compile it. I got errors from make & gmake, with & without -fno-stack-protector. My question for the list: does anyone have this working? Thanks, -Kit
5d3873c2-f7ec-0f5d-3735-1596319440ea
['3e5a502d-b94f-37b7-6339-4a54cb3d40a5']
Dear members, I was wondering if you could help me. Well, at first I apologize in advance for the long e-mail but, let's go. I have prepared a "plugin-like" set of scripts to run an ExperimentMFC following praat user's manual. Everything was working out when I decided to change the name of directory. When I ran the (setup.praat) script to start everything, the command doubled in the objects window (remained the old directory path and installed the new path) (please, check PraatBug3.png attached) and it is sticked there so far. I uninstalled e re-installed praat at least five times (Google Chrome and Mozilla Firefox) and it remains the same way.  I have searched through the manual section <http://www.fon.hum.uva.nl/praat/manual/plug-ins.html> and also read <PERSON> book (Speech Signal Processing with Praat, section 4). I enabled/disabled Hidden/Shown buttons and nothing happened. To make things worse, my menus do not contain all of the buttons (e.g ExperimentMFC in Praat > Preferences > buttons... ... Actions A-M) as shows "PraatBug1.png attached". Even when I enable "Hidden action command...", it runs but the button remains in the objects window as shows "PraatBug2.png attached". Well, I have run the plugin-like experiment in another (very old) computer and it did work out! The ButtonEditor is complete (ADDED/REMOVED options). I have added and removed things everytime I wanted. Well, I would be very thankful if you could help me with this! I have no idea of what may be happening and what I am suppose to do. Best wishes,<PERSON>
3e5c2dfb-35dc-afb6-5d86-b83980e1d88f
['3e5a502d-b94f-37b7-6339-4a54cb3d40a5']
Hi thereI 'm a beginner at scriptting so I was wondering if anyone could help me. I need scripts for plotting normalized vowel duration, F1 and F2. I create a table with the raw values of duration, F1, F2 and normalized F1 and F2 in praat but get no sucess in plotting normalized data as well as getting normalized duration. Could you help me please? That would be a great. Leonidas
a4a765c9-f7b4-ad44-f167-964a7ce1c275
['3e64f09c-5b54-cddc-cb10-dce7d37e1b47']
I attempted to copy a file to a floppy this evening. The drive would not mount with a disk formatted in DOS. I could mount it with my start-up disk in it. I did not want to copy the file to my start-up disk. Is there a Linux equivelant to formatting a disk so that fd0 will mount with it in it? I even attempted to mount it with a blank, unformatted, disk and was unable to do so. I realize this is totally newbie territory, but I just can't figure it out with the resources at my disposal. Thanks, <PERSON>
f837e88e-7642-b215-4d3a-5344115bf209
['3e64f09c-5b54-cddc-cb10-dce7d37e1b47']
Greetings all, Being a tyro in the Linux arena, I find myself in need of assistance. I can't seem to talk to the modem in my box. When trying to start minicom I get the following error message: Minicom: cannot open /dev/modem: No such file or directory Trying to open Seyon leads to pretty much the same thing. I take it that if the machine knew it had a modem there would be a /dev/modem file. Is that the case? A little background. The machine is a 486. The modem is a Zoom 33.6.All of the drives and serial ports and parallel port are controlled by the IDE card. To get the modem to work under Win95 I had to disable the PnP feature and set it to be COM4 and IRQ3. It would then work under Win95. I was unable to find any way to disable COM2 on the IDE card so that the modem could assume that natural position under PnP. Is this part of the problem now under Linux (RH5.1)? Would enabling the PnP setting on the modem and reinstalling help? Is there a way in Linux to make the /dev/modem file so that commo progies can find the modem, perhaps setserial? I must admit to being a little frustrated, but the challenges in installing Linux and getting X to run have been very educational. I just need a little help with this next hurdle. Any and all help, and or suggestions, will be greatly appreciated. <PERSON>
dfb5c320-07b4-1659-1f2b-d537f8a5b403
['3e6be7ca-548c-9401-dc1e-04be561372a2']
In my editing, I frequently make use of camera automation to simulate pans/zooms across still screenshots - much quicker and better quality than actually trying to film the same with a camera pointed at a monitor. The problem is with faster pans (and to some extent, zooms), there is a fair amount of strobing that takes place that makes viewing unpleasant. After experimenting with the Interpolate and Time Average plugins to no avail, I think what is needed is a motion blur plugin, and I've started working on one. The easiest way I can see to approach the problem is to use/merge the existing code from the Linear Blur and Zoom Blur plugins, then tie the radius/angle values to the deltas of the camera automation X,Y and Z coordinates for each frame. The problem is - how to get access to the automation values for a frame from within the plugin framework. Anyone have a suggestion/example? -Joe
9961a6d1-f693-64ef-73a7-3c6c9747f7f1
['3e6be7ca-548c-9401-dc1e-04be561372a2']
I wanted to duplicate the slo-mo effect described in http://rarevision.com/articles/slow_motion.php but couldn't figure out a way to do it in Cinelerra without requiring a render and reimport. Using the frames-to-fields plugin and interlaced material, you can get smooth 50% slow motion if you set your asset frame rate to 15fps and project to 30fps. Theoretically you could set the project frame rate higher to get more of a slowdown, but it doesn't help if you want to render at 24fps. And it isn't smooth. In order to make the effect work in a single render, I added a new frame rate to the asset list - 9.6 fps (40% of 24fps). I then added a pulldown to the frames-to-fields plugin that lets you tell the plugin what frame rate the asset is set to. It uses this frame rate for the call to read_frame instead of simply dividing the project frame rate in half like it does now This way you can specify a frame rate of 9.6 in the asset and 24fps in the project, which gets you the equivalent of 60i->24p in a nice, smooth 40% slow-motion. Example clip rendered with Cinelerra with modified frames-to-fields plugin: http://www.joestewart.org/slomo.mov Now, I will concede that setting the asset frame rate in two different places may not be the best way to go about this. Ideally the plugin would detect the asset frame rate and use it - however, I see no way for plugins to access asset attributes without changes to the plugin API - and, if that were to happen, would would occur if the plugin spans multiple assets? Might get messy. If this patch isn't desirable, I'm open to suggestions. -Joe
826639c7-92cb-5ff3-3945-cfc1a92d55bf
['3e9c140f-d3e3-3462-d467-68f4a249227a']
Hello we develop the Qt/c++ Email Client Nuntius Leo http://nlcreator.sf.net and want to implement a small one pop-up window adress book, which should contain the mailadress of the user and his PGP key. Someone said, Bongo has a C adressbook class, which can be ported to C++, it that right and someone with Qt gui (one window) experience interested to help us?` thanks for a feedback <PERSON>
a67702a3-15b2-a8d2-6d46-dec466c265d3
['3e9c140f-d3e3-3462-d467-68f4a249227a']
hello we develop a XUL gui for a messenger http://retromessenger.sf.net we got .a files for the library, which has been build with MinGW for Xul gui we need XPCOM, but that need MSV++ and not MinGW Any news about using xpcom with mingw? any tip how to get this solved? maybe depends on the static links in the .a files..? Regards Max
038a8327-ca89-9d67-89ed-2f4c109338f6
['3e9ff2e0-6d8b-fb53-80f0-70da0c761aa3']
Ok, I am not a complete newbie, but the documentation for exim/sa is kinda causing me fits. Can anyone just give me the order in which I need to compile stuff? I am going to have approximately 5000 users behind this thing, and it will be the incoming smtp gateway. Anyone think I am gonna have any issues? All the info on gooooooooogle and such are pointing at debian/Rh, whereas I am running slack. Any help is appreciated. <PERSON>
c41142bc-7a59-70f1-891e-08d46feb1e1c
['3e9ff2e0-6d8b-fb53-80f0-70da0c761aa3']
I am not trying to be rude, but did I post this to the wrong list? I would have expected a reply of some type in one of the 100+ messages to the list I have received since I sent this one in. If I posted to the wrong list, can someone suggest an alternative list for a newbie like myself? Thanks!
0797ba4e-ff0b-4814-4883-c4ff303b6dfd
['3eaa480e-1c56-ae8f-e722-b0619376beed']
Hi all, For known MIME types such as Microsoft Word ("application/ms-word"), the default behavior is to open the document in the browser. How can I configure hippo cocoon based website in order to prompt the user to save the file directly to the user's disk, without opening it in the browser. Thanks in advance.
91ca6454-3284-da90-184e-ea045ae72472
['3eaa480e-1c56-ae8f-e722-b0619376beed']
Hi all, I have to add/change content of some repository document through FE (hippo cocoon is used in FE). For example, the textarea is displayed in the FE page, and when I fill in the textarea and submit the form, the appropriate BE document should be updated. What is the easiest way to do that? Thanks in advance.
38703209-fd46-7ee1-7a86-e8496e3d4fd5
['3ebc4e41-1b2f-cf51-d1fa-9ce126c93f5f']
This discussion has seemingly diverged in two different directions, and I'd like to clarify exactly what the concerns are. The discussion was initially about moving xmonad.hs to XDG_CONFIG_HOME. This is essentially a bike shed issue: some prefer $HOME/.xmonad/xmonad.hs and others prefer $HOME/.config/xmonad/xmonad.hs. I prefer the former, and I haven't seen any convincing arguments for the latter, so we're going to stick with $HOME/.xmonad/xmonad.hs. <PERSON> presented another concern about data files that xmonad writes, such as the cached executable and prompt's history. It is possible that there are race conditions with concurrent readers/writers that may cause corruption. One potential workaround for this is to append the hostname to XDG_DATA_HOME (or perhaps XDG_CACHE_HOME). It is important to note that this is orthogonal to XDG_CONFIG_HOME and only involves internal xmonad files that the user typically doesn't interact with. I don't think this solution is the right direction. There are still potential problems with multiple instances of xmonad on the same hostname, and it seems to be non-standard (or at least not expected) use of the XDG Base Directory Specification. If the potential of writing corrupted files is still a concern, I recommend that someone create a bug on the bug tracker and/or a new thread on the mailing list. I also suggest that we avoid mentioning XDG_CONFIG_HOME at all in that discussion, because it is orthogonal and tends to result in bike-shed arguments. Cheers, <PERSON>
abf6dbed-815e-6f80-d899-f8cf315ca133
['3ebc4e41-1b2f-cf51-d1fa-9ce126c93f5f']
I'd like to give everyone with commit access to xmonad and XMonadContrib committer access on the bug tracker. This will enable you to change bug properties, and will enable other committers to assign relevant bugs to you. If you do have commit access to contrib, but are not on the list below, please send me your Google account details. http://code.google.com/p/xmonad/people/list Cheers, <PERSON>
ee6c5a30-70be-f4a1-377c-85c80a146a98
['3eca843f-f1d8-3602-4f06-693043dd8cc5']
Dear all: Yesterday, the IT support people at my work place informed me that my local workstation (which is running debian testing/unstable) was broadcasting windows Randbot worm throughout the internal network and several win2k workstations got infected. How could that be? I checked my logs, there are quite alot of error message "xx.xx.xx.xx sent an invalid ICMP type 11, code 0 error to a broadcast xxx.xxx.xxx.xxx on eth0". I've checked info regarding to this particular worm on the Net, nothing in relation with Linux turned up. Anyway, I was forced to take my box off the network. Can anyone give me some clues of what is happening. Have I got broken into?? FYI, I have been lazy not setting up a proper firewall on my machine (which I am very much regretting now), since I thought company firewall should take care of that. I have only the essential services running on the machine ie. ssh, samba and nfs. I did run a quick chkrootkit and nothing turned up. Thanks, Xun.
583ecd35-2e24-e9a8-3e6b-71494f9c92ab
['3eca843f-f1d8-3602-4f06-693043dd8cc5']
Hi, All: My galeon was be able to display anti aliasing fonts before I did an testing/unstable upgrade yesterday. Now, it displays really ugly fonts. How can I fix this problem. I've tried to selected different true type fonts I got installed on my laptop and ran dpkg-reconfigure few times on xtt-xft etc. problem remains. Another problem I got after the upgrade is that my mouse starts to jump all over the screen uncontrollably. Can anyone help to resolve these issues? Thanks, Xun.
a6363238-0307-20aa-9be8-7f96c602f1a0
['3ecbb3ad-792d-ac3b-6997-fffa526b04e0']
Hm... I noticed that SQLTemplate doesn't even set the jdbc type of it's column descriptors... (at least, not in 2.x cayenne...) Should it? There's probably not enough information in #result to guess the type, but maybe a little later in the process, those value could be initialized from the query metadata? Just wondering, since it throws a kink into extended type conversion. (For example, the Enum type conversion fails when using sqltemplate and numeric-based columns because the type is Types.NULL (0), and so it tries do to an Enum.valueOf("string") call, which will fail since the "string" is a number... Certainly, the individual types can be adjusted to examine the result set metadata, rather than the type argument passed to it. But that seems like the wrong place to fix this. Thoughts? <PERSON>
9399f332-55a3-d626-e2a8-d2e4d18ae5bf
['3ecbb3ad-792d-ac3b-6997-fffa526b04e0']
Currently (to the best of my knowledge), cayenne always represents a to-many relationship as a java.util.List. However, I was thinking it would be nifty if cayenne supported map-representations of to-many relationships. For instance, you could model a relationship between Users and UserPreferences as a map, and specify the "name" property of the UserPreferences table as the map key. Does that make sense? Am I the only one who thinks that would be incredibly useful? :) Is something like this already planned for 3.0? If other people would find it useful, then I'd be happy to submit a feature request and also work up a patch. <PERSON>
29b7b159-0a80-93b4-6ee3-f8765f97ab11
['3ee78f0b-c564-d7c7-b798-8a408d047897']
<PERSON>, <PERSON>, I've sent you the KML report code by separate email as I'm not sure of the etiquette of sending attachments to the list. The files need to be dropped into ~/.gramps/gramps34/plugins/ directory. The report is Text Reports/Google KML Report. Select a place filter that returns the places you want to include. Eg first create a filter for places with valid Lat/Lon. I've also included a simple date filter in the report options to limit the places/events exported. It would be better if the report used both a place filter and a normal event filter. Keep in mind that Google My Maps silently limits the number of places imported and/or shown, to 200 or less. Hope it is useful. <PERSON>
b576c71a-27c1-4881-dce9-d3085d047483
['3ee78f0b-c564-d7c7-b798-8a408d047897']
Benevolent devs, I want to begin by saying that I have limited awareness of but deep feeling for those affected by gender identity issues, and I accept that the continued expression of sex/gender as binary can be part of what some people experience as a real problem. However it is not clear to me what problem we are trying to solve here. There seems to be confusion (or at least lack of clarity) between biological gender and gender identity (and possibly even sexuality). And some of the bug references include gender identity changes over time, the issue of gender roles in marriage, and even the definition of family unit supporting more than 2 parents. I do not deny the pure technical incorrectness or possible perceived injustice of some of these but fixing all these issues with generalised gender (and roles) could become a can of worms without really helping anyone. Should Gramps be taking this on independently from the broader genealogy community? I do not see a need for Gramps to support a data model for gender identity or sexuality, which can be infinite and fluid. The current three Gramps genders suffice for recording (human) biological gender if I accept that the 'unknown' gender could also be used for the extremely rare 'other' ambiguous biological gender. And as with all other areas where the Gramps data model is finite, I use notes to record extra information. To summarise my concerns here: - Confusion of intent - not clear who really needs (or is helped by) these changes in Gramps - Potential incompatibility with other programs via gedcom - Supporting all of the possible legal definitions of gender (including gender identity and sexuality) in Gramps gender type is unnecessary and a challenge to support, - This may be premature - May add unnecessary complexity to Gramps code, eg the gedcom handling of non-gedcom supported gender types - This would require major changes beyond gender type to cover all the gender issues expressed so far, eg changing family unit definition Are there an agreed set of principles for adding features to gramps core? I would suggest - Keep it simple. Less is more. - Are we adding gratuitous features that will complicate both the user experience and on-going maintenance of the code? - As simple as needed and no simpler... - Ensure users can record their information in an intuitive way that is most convenient for the most number of users and data. - Rare edge cases that can reasonably be handled by work-arounds (notes, attributes etc) probably shouldn't be added as features. So my 2 cents of recommendations: - Be clear that Gramps gender normally means biological gender. Notes and custom events can be used for gender identity and sexuality. Add a help page for this if appropriate. - Seek clarification from genealogy community over interoperability for gender and how best to record 'other' (Hermaphrodite etc) biological gender. Eg ISO 5218 defines 4 genders but there is discussion on whether 4th type 'not applicable' actually covers the cases of ambiguity of biological gender. - Keep gender types as it is (Male/Female/Unknown) for now until there is reasonable clarity and consensus on point above - Stamping gender on all events seems like madness - let it be recorded in note/transcript if it is relevant. - Any extension of gender to cover non-human genders should be kept out of Gramps core or normally disabled, to avoid confusing the common user. Regards, <PERSON>
34d2a6a4-c623-22d1-aae1-1d6b20f8efc6
['3ef57de0-ca94-1c71-6278-b9aea147a97b']
Hi, Can I use getEval() without getting a selenium handle to execute a javascript? I am trying to execute a method of a flashplugin of Fusion Chart. An pointers. Since Tellurium does not support <embed> tag, I cannot access the Flash Plugin directly, I have to rely on a javascript to access it. Regards, Manoj
be82f8e0-1ef4-b02d-e0b7-46fe6bea16c4
['3ef57de0-ca94-1c71-6278-b9aea147a97b']
Hi, I have been using Tellurium with a Maven 2 archtype and have been successful. In my current role, I need to use a different approach. I am having some trouble with which version of classes I need. I followed the instruction at http://code.google.com/p/aost/wiki/CustomTelluriumEclipseProject and started scripting a groovy module definition. When I compile I get the following error. "The project was not built since its build path is incomplete. Cannot find the file for org.stringtree.json.JSONReader." I have installed JavaSE-1.6, Groovy 1.7 and JUnit 4.4 and Tellurium 0.6 jar what else am I missing. Since I am not using Maven I am unable to find the link to download the 0.7-Snapshot jar. Any pointers appreciated. Thanks in advance. Manoj
ae29a190-84fb-051a-1b82-335faf494976
['3ef7cd69-67e5-e27c-8f18-68eb24fa0db3']
Hello <PERSON> and others, I have a physical hybrid testbed network with OVS switches (i.e. Pica8 hardware switches) as MPLS label edge routers and Juniper MPLS switches as core MPLS label switching routers. I want the edge OVS switches to push MPLS labels on to the incoming flow traffic and the core Juniper switches to switch that traffic based on the incoming labels and configured LSPs. I have configured static LSPs on the Juniper switches and I know the exact label - flow traffic bindings for each LSP. I have tested my hardware OVS switches for pushing the MPLS labels on to the incoming flow traffic (i.e. I have checked the Pica8 hardware flow tables for this). They seem to push the labels on to the incoming flow traffic. Somehow, this MPLS label pushed traffic is not being switched and/or matched by the incoming MPLS label and configured static LSPs in the core Juniper MPLS switches. Can any one of you tell me the reason for this behaviour, or am I missing something here ? I presumed that MPLS label format is vendor-independent, am I correct ? Let me know, how to debug this issue. With regards, *M.P.V. Manthena (Prashanth)*
4bb68fff-0a22-9fb1-cc8d-9658139e76d4
['3ef7cd69-67e5-e27c-8f18-68eb24fa0db3']
Dear all, I just want to update you all with the information regarding my M.Sc. thesis report and our IEEE NetSoft 2015 Conference paper. I thought, this information might be useful for some in the OVS discuss list as my proposed architecture's proof-of-concept (PoC) implementation involves OVS-enabled physical switches as its OpenFlow-enabled physical switches. *1) M.Sc. Thesis * *Title: *Network-as-a-Service Architecture with SDN and NFV: A Proposed Evolutionary Approach for Service Provider Networks My M.Sc. thesis report can be accessed online at TU Delft's institutional repository, here is the url: http://repository.tudelft.nl/view/ir/uuid:ce16a77c-f286-4dd7-89ba-5b38ccb2cf68/ *2) IEEE NetSoft 2015 Conference Paper * Our conference paper based on my M.Sc. graduation project and thesis got accepted for 1st IEEE Conference on Network Softwarization (IEEE Netsoft 2015), London, UK, April 13-17, 2015. *Title: *An SDN-based Architecture for Network-as-a-Service *Abstract:* Network-as-a-Service (NaaS) is a cloud-based service model that offers on-demand network connectivity and the provisioning and management of network services. However, the actual orchestration of dynamically allocating underlying resources to customer requirements is not trivial. In this paper, we propose an SDN-based approach to support the NaaS model. We implement a proof-of-concept (PoC) on a physical testbed and validate it through experimental performance evaluation Here is the URL to access the conference paper: http://www.nas.its.tudelft.nl/people/Fernando/papers/SDN4NaaS.pdf *3) PoC source code* My proof-of-concept (PoC) source code was published as open source on GitHub and can be found on "TUDelftNAS" GitHub page under the repository name "SDN-NaaSPlatform", here is the URL: https://github.com/TUDelftNAS/SDN-NaaSPlatform Most importantly, I want to thank you all for your support and help. This whole thing would not have been possible without your constant help and support. Let me know, if you need any additional information from my side. With regards, *M.P.V. Manthena (Prashanth)*
39acfa45-5032-af7e-6d32-5ca5b9c0ac1f
['3f04ce3a-0b98-1148-ebc3-0751a609b9f6']
Hi, I have created a new namespace for references in our local wiki. I have added it to the DefaultSeetings.php file as mentioned in help. I wanted to know if i need to add an entry in the languages.php file also, in the nstab section of language.php also?. The references in this wiki work i a similar fashion as images with each reference having its own talk page like any other article. Do i need to make any other changes anywhere within the code for this namespace to work? Thanks, <PERSON>
a4390c83-05e4-bc58-26de-dd9ca8bb22ca
['3f04ce3a-0b98-1148-ebc3-0751a609b9f6']
I want to create page and talk page for references that get added to any article. I have done the code where you can add a new reference and save it in the database. I have also created a separate reference and reference talk namespace. At the end of the article i am showing a list of references, now i want this to actually be the link to the reference page. Once the user clicks on the link it hsould take him to that reference page and show a standard box which shows the reference information. Also how to add a page in the namespace. Does doing Reference:pagename add the page to that namespace? Thanks, <PERSON>
c7d706e2-ad29-b352-6c0a-cc8b7593e9e4
['3f19407d-1871-8612-5431-5abd93a6103d']
<PERSON> suggested the addition of -- to end options and a -nocase added to lsearch. -- is not technically needed, but would make it more like other commands with options. And I've needed -nocase a couple of times and am willing to add that to lsearch while I'm at it. Comments please. Should I roll this into one TIP 'enhancements for lsearch', including the -bounds things or three separate ones? <PERSON>
f4528b68-e233-0bc9-8c20-1382ae959b1e
['3f19407d-1871-8612-5431-5abd93a6103d']
Hi <PERSON>, Good TIP. I'd like to have this too, except that I don't know if a new toplevel command is the place to put it (or if it is still required with ensembles). I am not very fond of new toplevel commands, as they have a habit of breaking existing code, or, more likely, being redefined by existing code. How about [string prefix ...] or [lsearch -prefix]? It feels like something that could logically reside inside string handling or list handling. - Pascal.
4e10468f-b9cb-500d-a150-cec421b5c8a7
['3f3d05a4-5843-b669-c912-d719003732c5']
Thanks for responding, that is what actually baffles me. What I actually try to do is load JPetstore4 into JBuilder2005 and get it to run, but every time I run it trows an exception at the same spot. Not sure if it's a JBuilder thing or the jar file that I have for iBatis DAO which is ibatis-dao-2.jar Thanks
9c881a88-1017-b225-3e26-d5be245deedc
['3f3d05a4-5843-b669-c912-d719003732c5']
Is there any such feature in iBatis, where the first letters returned are capitalized, if all the data in DB are all lower cases? I know another alternative is to modify my setters to capitalize the first letter, I think it's a pain in the rear to do that for all the attributes. Shardayyy
76d6dcac-fee5-9caf-97ed-8e94310cf534
['3f433679-5e55-d0d9-8151-15fe55c939c9']
I recently used my work *.eco file on my home computer. Now whenever I start up my home file, it shows me all of the alarms that were on the work file. How do I clear those? Clearing all the alarms on that file would be fine, as I don't have any strictly home ones set. <PERSON> at cox dot net
5b890250-58d6-eb13-0f86-0068bac3f726
['3f433679-5e55-d0d9-8151-15fe55c939c9']
When I start ECCO, I get a message box titled "Master File Getting Large." It contains this message: "Some remote file have not been synchronized in a long time. If you synchronize those remotes or delete the remotes you are not using, ECCO will be able to reduce the size of the master file." I don't use any remotes. When I choose file/synchronize/export changes, the dialog box shows two instances of "Unknown user-home computer's copy." How do I delete those entries? <PERSON> at cox dot net
b6497e19-c68f-afbf-546c-09d1f34aa8d6
['3f4b33b7-9829-4f9d-9537-0e439acc2d45']
Thanks for your reply. However, I am a little bit confused since in your reply you mention that these are programmable low-pass filters which operate at baseband, while in the code the associated comment says that this is the bandwidth of the bandpass filter on the board. Secondly, why are these baseband filters? These are on the daughterboard so I would expect them to operate on the intermediate band, since the daughterboard converts complex IF to Real RF. Please let me know where I get this wrong. Thank you for your time again. BR, Konstantinos
2899dde5-bcc5-917d-88be-176ea7bb171f
['3f4b33b7-9829-4f9d-9537-0e439acc2d45']
Hi, I am trying to find out how to set the TX-amplitude parameter between 0-1, which is given as an option in USRP sink. My attempts to find a clear explanation of this parameter have all failed. Also, I would like to understand how to set the receive SNR in the source file? As for the receive SNR, my guess would be to solve the classic equation, which involves estimating the noise figure, transmitted power, gains of antennas etc., however it does not seem to me a very realistic approach. How do you set this value? I would appreciate anyone's hints. Best Regards, Konstantinos
19fc2fc0-b0ca-4743-bd2f-f8d069fcac0a
['3f4b79c7-4035-ab4b-26cf-a63d0539d3ac']
<PERSON>, <PERSON> and all. The principal difficulty with the split/combine code I have suggested for extract/merge is that key order is not preserved in relation to the data when you get the keys. If you wish to re-merge after an extract then you must know what is the correct key order (e.g. a simple sort). Oh, and I also reversed the data and keys in the second code block (first two lines) compared with the extract. Mechanical error. regards <PERSON>
7af99ad4-0c74-42c8-b293-b8b41f5cc74f
['3f4b79c7-4035-ab4b-26cf-a63d0539d3ac']
I do not do professional development but use it in a couple of main areas. I have applications written to support my life. Examples include manage my Super Fund, look after contacts, do backups, provide a small multi-entry RPN calculator, calculate optimal gearing for model racing cars, calculate any parameter for allocated pensions under Australian rules, value stock market options, make decisions when there are many possibilities, generate bridge hands against a variety of parameters, calculate wheel/tyre combinations for given rollouts and other things of even lesser moment. My second use is as an ad hoc scripting package (having a general purpose stack for this) to massage data for input to a couple of stats packages or for other apps. <PERSON>
2779d19a-7705-eb3e-f7c4-539f2d347fcf
['3f5315ea-6d31-b2c6-2eda-c72caa8fd7f1']
Hello, I want to reduce bit rate of ~18Mb/s ATSC live stream which I capture over the air with HDHomerun box, and it looks that an HP DL360 G4 server (two 64 bit double core Xeon processors) can not do the job. Is there some way to make this functional? My idea is to reduce the stream from 18Mb/s to about 4-5Mb/s at hd720. The problem is that processor load goes over 4 and starts to overrun the buffer. Is there a way to make the transcoding somehow work with x264 on that computer? Thanks, <PERSON>.
bc56bc21-990d-e3c2-8ab8-e809ccafc1fc
['3f5315ea-6d31-b2c6-2eda-c72caa8fd7f1']
Hello again, It simply looks that 2 double-core Xeon at 3.4Ghz (HP DL 360) can not transcode mpeg2 ts live stream coming at ~20 Mb/s to h264. Even with 'preset ultrafast' the load goes above 4 and the buffer overruns. The minimal processor that is able to do this up to now is a single Phenom 2 X6 Black at 3.4 Ghz, and it sometimes gets with load ~5 on it's six cores. Thanks, <PERSON>
dd1b7e3c-cdb0-8424-05d9-c8e67f1dc100
['3f55f7c8-65dd-2440-a12d-333c6e0d3552']
Hey friends, I am starting a little web business, and since I've started interacting with customers it's time for me to legally get off the ground. Unfortunately, I don't have any expertise with this, beyond what I've learned from teh internets, and I could use some help. First, can anyone recommend a good, affordable, web-savvy San Diego small business lawyer? And an accountant? Otherwise, does anyone know anything about these things.... 1) Should I file for my permits in CA or in somewhere with nicer tax laws, like Delaware? If I and my employees are working from San Diego, does that just mean I have to register as a business here? With city, county, etc? 2) What international trademark classes do people use for the trademarks for web business? My site is providing instructional materials, but I'm also mailing people products and printed guides. I'll be building an iPhone app too. Should I just drop $1200 and cover all my bases, or can I get by with a trademark under one $300 class? 3) What do people recommend for business insurance? And where do you get it? 4) I'm leaning towards a Sole Proprietorship, since I want to maintain full control and I think the liability will be minimal. Has anyone done this? Are there any pitfalls? Should I look more closely at an LLC? It seems like I'm definitely going to need a lawyer soon enough, but maybe I can get by for a while without it. I'm supporting the business out of pocket and am trying to keep expenses to a minimum. Love, <PERSON>
c55c0886-56ff-98cd-f3fa-22293dfa8244
['3f55f7c8-65dd-2440-a12d-333c6e0d3552']
Hi Folks! For any developers reading... thank you for RSpec... it's wonderful! I've been trying my darndest to get into it, spec everything ahead of time, and it's working out great. The one thing I really have a hard time with though is writing more advanced custom matchers. I can write simple ones, but the code for the fancier matchers in RSpec is much more opaque. Often the code for something like an_instance_of is shared across several matchers, or it's being done partly by the translator? It's hard to tell. And so it's hard to write a custom matcher that does the same kind of job. I was wondering if someone with better Ruby skillz than I have, and more RSpec knowledge might explain how to structure some of the slightly fancier types of matchers. Like how do you write... * a matcher that accepts a block and passes on some information, like has_tag? * a matcher that can go in that block and use that information, like with_tag? * a mock argument matcher like is_instance_of or hash_including? It'd be wonderful if someone could post simple examples of how you'd write custom matchers of those types. I've tried (http://erikonrails.snowedin.net/?p=33) and failed. All the best, <PERSON>
72b7ca4d-1dc9-c242-4d86-8433dace1dd4
['3f5a5864-fe43-4a06-98f4-de875fae8c3c']
Hi, I got my BeagleBone Black yesterday. It boots with Angstrom Linux successfully. I created Ubuntu images on different microSD cards by following the instructions from the following sites: http://elinux.org/BeagleBoardUbuntu#Demo_Image http://www.armhf.com/index.php/getting-started-with-ubuntu-img-file I also created an image for ArchLinux from: http://www.armhf.com/index.php/getting-started-with-ubuntu-img-file/ I wasn't able to boot the BeagleBone Black from these images. I couldn't figure out what I'm doing wrong. I hold down the User/Boot button while I power on. Has anyone had the same experience? Thanks, <PERSON>
af229057-93ee-b722-9bbf-747d561c7a3a
['3f5a5864-fe43-4a06-98f4-de875fae8c3c']
Hi, I made Ubuntu (12.10) images on different SD cards by following the instructions from the following sites: http://www.armhf.com/index.php/getting-started-with-ubuntu-img-file/ http://elinux.org/BeagleBoardUbuntu#Demo_Image I also made an ArchLinux image from this site: http://archlinuxarm.org/platforms/armv7/beaglebone-black I wasn't able to boot the BBB from SD. I hold down the User button while I power on and then release the button when the power is on. I don't have issues booting the default Angstrom Linux. Has anyone had the same experience? Thanks, <PERSON>
a11a9afd-60b7-e685-f66d-e4d64f758dbd
['3f5f9fc9-2bfc-fe22-8592-e31a756f4124']
Hello - I am looking for an experienced Zope programmer who is familiar with using Squid. I would like to set up a Plone site on a dedicated FreeBSD 4.7 server. The main concern is that Zope will not crash after a certain period of time, and that the site be optimized for heavy traffic - i.e., upwards of 10,000 users a day. I have the server - I will give you ssh access. Please send an email with your bid amount. Amounts over $200, please do not reply. Thanks much ---
a6385bf7-886f-2def-85b0-fa09f5a45c39
['3f5f9fc9-2bfc-fe22-8592-e31a756f4124']
Hi - I am looking to have someone who is very familiar with Zope (and preferrably Plone) install Plone onto a server of mine. I would like to set it up for high traffic, thus I am requesting an install which makes use of Squid and mySQL. (If you know this configuration will work with PostgresSQL, all the better.) Again, this would be from scratch on a FreeBSD 4.7 system. If you are interested in this install, please email me with a quote @ <EMAIL_ADDRESS> Many thanks - It is likely this service would be requested again at a later date, given the install goes flawlessly. Thanks again! <PERSON>
3fdb4964-05f9-776d-e1aa-a370da2d11a1
['3f6baf63-27b3-3fdf-7748-dd07f8ed3b21']
I have a debian box (mostly stable, a few packages from unstable) I'd like to install the cyrus21-imap server & related packages onto. (I'm dying to try out SIEVE mail filtering). Since installing the cyrus21-* packages will require me to upgrade libc6 (which breaks things quite badly right now - see bug 155904), I'd like to build these packages myself with my current version of libc6. Is there a relatively simple way of getting the debian source and compiling it, and making .deb's? I appreciate any advice or assistance. Chris Hilts
fa154555-43d9-6c95-d0e5-685d16cb4b07
['3f6baf63-27b3-3fdf-7748-dd07f8ed3b21']
Is anyone currently working on storing the bayes databases in mysql? I've already got SQL prefs working, which I like very much. I want to enable Bayes on my domain, but am unwilling to create home directories for my (otherwise virtual) users. If someone's working on this, I'd like to offer my assistance as a tester/debugger/code monkey (warning: novice at perl but eager to learn) Thanks in advance.
214b6c36-a190-7aff-18e6-c896ebb8d08e
['3f73924d-d6b8-1ffe-12c5-3df3f9449d0e']
Hi, We've been using AspectJ5 through Java5 LTW, but unfortunately, we've lost the hot code replacement feature that's very import during development journeys (new code is not loaded with aspectj saying that "AspectJ5 does not weave hotswapped class"). Is there any way to do hot code replacement with LTW? (I've tried different ways, even with WeavingURLClassLoader with no success) Regards, <PERSON>
82095ce0-c83c-f00b-9082-aca45394c37f
['3f73924d-d6b8-1ffe-12c5-3df3f9449d0e']
Hi, I have a multi-project with severals modules. I was trying to use the assembly plugin to create the final project structure. Unfortunatelly the assembly descriptor does not have all the features that I need to achieve this final structure. So I tried to use the antrun plugin. I could make a set of tasks that builds what I want but unfortunatelly the antrun plugin runs before submodules are built so the tasks doesn't do anything at all and then I end up having to call maven twice ("mvn package" and then "mvn antrun:run"). So how can I make the antrun behave like the assembly plugin (that is, to have it ran AFTER the submodules are built)? Regards, <PERSON>
295c3d80-321a-5efb-84db-9715e2c96e0c
['3f93f218-d517-2404-09d0-1a9d180e285b']
Hello all! Maybe its a silly question but i'm wondering how i can reach the 150k insertions that are mentioned on the home page? I've written a simple insertion test and am reaching 200 insertions per second. Even if i don't add any edges, the max performance on my MacBook Air are 4000 insertions per second. https://github.com/alebon/caladesi-framework/blob/master/caladesi-orientdb/src/test/scala/net/caladesiframework/orientdb/graph/OrientGraphRepositorySpec.scala Thanks a lot! <PERSON>
189bf717-68c6-da63-01b2-6409adfeb97f
['3f93f218-d517-2404-09d0-1a9d180e285b']
Hi, i've seen a really strange thing on my currently developed application. I'm not sure if its a failure of my app... The sample is very simple: 1 Vertex (let's say) BlogEntry. Different other nodes are connected to this node (Comments). (BlogEntry)<--[BELONGS_TO]--(Comment) When i add comments one by one, everything works fine to 9 comments. After adding the 10th comment, only the last one remains connected to the BlogEntry. The Edge Documents are still present. The comments are still there and are linked to the edge documents. The only thing that is broken are the links between Edge and BlogEntry. Someone experienced something like that already? I'am on 1.1.0 ODB Thanks a lot, <PERSON>
33a5a4c3-00a7-0825-63ac-b4aef014d44f
['3f949335-632c-f1b4-814e-2465ffd83839']
Hi Thanks for the info - it all makes sence!! I have got the Root and Inter CA files from the certificate vendor. Link here: http://cert.startcom.org/?lang=en&app=110 and downloaded the pem for the root ca and the bundle file and none of the seem to work. I also tried my cert file to see if it would self sign - a long shot, and it didn't work. Would the easiest way be to add the Root CA and Inter Ca's intoo the certificate store on the FreeBSD box? Or, do I have to conver the CA certs to another format (but they are in pem format)? Many thanks <PERSON>
7fa20d6e-5739-7206-7f29-ee88f44e6b21
['3f949335-632c-f1b4-814e-2465ffd83839']
Hi I have client who wishes to point all browsers to a certain page with an company policy discalmer on it and the have to click on an aggree or disagree button to be granted accesss to the internet. Does anyone know of a way to do this, I know it is not exactly a squid issue? Many thanks <PERSON>
ffdcc091-42bf-8dc5-1ae9-a602933c2fa4
['3f989a83-92a3-b87e-3dd9-ee330f6495d6']
Hi all. It's so sad to read this thread. People are fighting instead of some creative work. STOP IT! I'm new here, so I'm probably not the right person to speak, but we need to find a way to get rid of these personal conflicts. I don't know what it is. Suggestions anyone? If failed, I see a split inevitable. -Jani
d2efd1f7-6019-ae4b-03df-204973dfc575
['3f989a83-92a3-b87e-3dd9-ee330f6495d6']
Hi there. I'm an amateur living room musician amongst other things and I've been learning Rosegarden for a while. First I want to thank you all developers for creating this wonderfull piece of free software. My current problem (minor) is when I have set volume and panning on each channel, save the file and then reload it Rosegarden does not respect these settings. Instead (by ear) panning is in the middle and volume 100 (again by ear). Control knobs still point the intended value. If I turn the knobs slightly it comes all right. Seems like these values aren't sent to synth before slight adjustment. Hope you understood what I tried to say :) Rosegarden version is Ubuntu shipped 1.7.0 on Intrepid i386. Synth is General MIDI Device mapped to SB Audigy hardware synth. I know this is minor thing but it annoys a little bit. Is this fixed in newer versions. Thanks in Advance, <PERSON>
db66e1c3-c369-6336-8300-89ad0da2209d
['3fa91a27-7b89-68e6-822d-c3c500e19958']
Morning everyone! As always it gives me great pleasure to announce the latest release of Catalyst-Runtime. This release includes a couple of backwards compatibility and bug fixes to the last release, as well as some new features to help people customise the restarter used for development. Full changelog below as always. Cheers t0m
c3cdc763-2ffb-8840-36b9-e6d8d482065e
['3fa91a27-7b89-68e6-822d-c3c500e19958']
Good afternoon. It gives me great pleasure to announce the release of the latest maintenance version of Catalyst-Runtime, 5.80024. This release adds some documentation and fixes what (for some people) was a major backwards compatibility breakage first seen in 5.80014_02. The more correct URI path handling which was introduced there is retained, but must now be activated with a configuration directive. A full changelog is included below. Cheers t0m
8f559712-3713-d084-a5c3-cb911017c1ef
['3fae3b78-90fb-6a5f-cfbc-945923ea96b2']
Hi Just a (EDIT: not so...) quick message to say how impressed I am with funambol. I currently have a Microsft Small Business server domain in my office and have been mulling over the possibility of migrating to OSS alternatives for some time. The one missing ingredient was push e-mail. I've just registered on my.funambol.com and tested out syncing to my Nokia E51. All I can say is that I will be formatting my server's system drive over the weekend and deploying a Linux based alternative. There were a multitude of options available for Mail, Groupware etc. but your system provided the one crucial omission to date. Once again - WOW, and thanks. I intend to drop in regularly - and might even build up the courage to contribute! <PERSON>
69fc5b0c-4b31-121b-4e3c-ee6d0735fe4a
['3fae3b78-90fb-6a5f-cfbc-945923ea96b2']
Hi <PERSON>, Thanks for the reply - I had doubts about Zimbra bewing OSS when I saw the Yahoo logo. The Zimbra Desktop is a really slick interface though. I'm planning to use a couple of virtual machines to test out the various options, and as you may have guessed, I would like to use software that is 100% Open source. Looks like I've a bit more investigating to do. <PERSON>
ae1dbe40-1cdb-4c80-d46f-3f9d0642c816
['3fb09c30-624d-b202-1e02-6756851a4708']
Morning  to  you all i  stored an rdf  file  inside exist  db   i  extract  data  from  that  file  using a  form (select) I'ld like   create  a text file  an  write  the  data  displayed  by the form inside that   file as  i can be  done  with php as  exist does  not  support php, please how to? Regards
101c4c5e-3ec1-d2a4-8588-99cf73393d1d
['3fb09c30-624d-b202-1e02-6756851a4708']
Hi to all I'm runing protégé 4.0.2 under ubuntu linux I have a ontology presentation to do i'ld like to 1. put an Hypertext link to the run.sh located inside protégé folder in my slide in other to start protégé by cliquing on that link during my presentation or 2. link my rdf file to the hyperlink text and launch it with protégé not with firefox as it isthe case now Please does anyone has an idea of how to?? regards
f16d279c-4afe-6e97-7d9c-c577d764f418
['3fb9864d-8542-7062-9d0e-093d9ce21c51']
Hello, I have bitmaps being generated by a process and need to display them at ~60Hz. What is the best way to get the data to the screen? It looks like I will have to create and destroy GdkPixbufs constantly. I am starting to think a multimedia library like SDL2 would be a better fit. Cheers, R0b0t1
7162be3c-7c7e-5385-174a-693bdd64e4b0
['3fb9864d-8542-7062-9d0e-093d9ce21c51']
Hello list, I need to save the rtf content of a gtk text buffer into an ASCII file with some other info. So to avoid the \0 string terminator weirdly inserted into the gtk text buffer content (why this, developers) and have only the string 'GTKTEXTBUFFERCONTENTS-0001' saved I replace the content with spaces and then when loading it BEFORE putting it back into the gtk text buffer with the function in the subject I replace the bytes with the original ones after GTKTEXTBUFFERCONTENTS-0001 so, 0,0,2,122 I also add 10 at the of the content. When I use the above function I get the error: Serialised data is malformed I went into the sources of gtk_text_buffer_serialize to try to understand what originates this error but with no luck as I couldn't find that string into the sources. Can anyone help please? Thanks <PERSON>
204663a3-18ea-f74d-b0cc-5824d578a919
['3fcbc573-bab0-467d-38cb-8262294fa063']
Well... I'm not that active recently however as someone should have noted I started implementing cursors in ODBC. Base cursor support was implemented by <PERSON> for CTLib. Mainly structures and functions didn't change so much. However there are some issues i like to discuss. 1- memory allocation Usually I think that layer how allocate a structure should be responsible to free it. This is not the case for cursors (try searching tds_alloc_cursor and tds_free_cursor). Mainly libTDS allocate cursor while we free it sometimes in CTLib/ODBC and sometimes in libTDS, IMHO very bad design). This cause the double free problem you can find at http://freetds.sourceforge.net/out/test2/ (look at "VG errors" column). I think that cursor allocation/deallocation should be handled entirely within libTDS. The reason is that libTDS know much better when to deallocate cursor from server so it can postpone deallocation as needed. 2- states State information for cursors are quite complicated. There is a srv_status with store server status (TDS_CUR_ISTAT_* constants) and a status structure witch store for every possible request (declaration, open, fetch, close and so on) the state. This is quite complicated and lead to strange situation. For instance what should we do if state is deallocated and a fetch is requested? The main reason for having so much states is that you can send multiple cursors operations in a single row (like declare, set option, open). Perhaps libTDS client should just try to send a request (like declaration) and libTDS should handle states by itself updating state and so on leaving client to only read state. 3- dynamics Cursors have many similarity with dynamics. They get allocated in server, used and then freed. You can even mix them opening a cursor for a dynamic! However current implementation have small differences. For instance allocation (see also point 1) are handled entirely by upper layer while allocation from libTDS. Any comment or hint on how to improve any of these issues is welcome. freddy77
5009cf21-340f-7146-0c12-39595ef6dc8d
['3fcbc573-bab0-467d-38cb-8262294fa063']
WML seem to have problem with RedHat9. WML compile successfully (with some warning, however) but after step1 wml executable core. After some debugging I discovered that the code happen at the end of eval for step1. So I call directly step1 and I had no core. Bug seem inside Perl free (I think something go wrong freeing resource...) Anyone know how to fix this bug? freddy77
42dffdda-2ba2-d999-dd48-973477959d18
['3fce4125-00f5-481c-ec0a-112484c66408']
Hello, I'm just wondering, who is maintaining linux.org.il website? I think it is missing some links from its main page, especially ubuntu-il website, which has active community. It would be nice if it will also contain link to debian.org.il and every other distribution domain which has Hebrew information. I can't find the requirements for links, but I will appreciate if you can also link from the projects page to mozilla.org.il. Thanks.
5c41c5f9-2c17-185a-b573-5bb77d23c53a
['3fce4125-00f5-481c-ec0a-112484c66408']
Hi, I've signed-up an account on sipme.me voip provider. They are official landline phone provider from the Ministry of Communication office, and provide phone lines with the 078-555 prefix. They are providing a customized soft-phone application for various platforms, including Windows and Symbian and iPhone, but as I preferred to use it under Linux, I had to configure it on SIP-complaint desktop application. Configuring it on various applications (including Ekiga, QutePhone and sflphone) was not an issue, and I can receive calls without any problem. As for doing calls, it seems that the line is hanging-up right after handshake, so my regular land-line phone is doing half ring and unable to get even the caller id string from the caller. For mobile phones I was unable even to get this. After asking their support, they said that it is happening due to the usage of a different SIP stack, and seems to refuse guiding me with relevant information. Anyone succeed getting their service to work well under Linux? Thanks.
306bd9f8-b1c1-cb75-c575-5b933870f302
['3fde05d4-0c7a-9fcf-50da-fff4ea85be46']
Hello- I'm using the CVS version of cedet. With senator's sticky func mode on, clicking on the header lines gives a menu allowing one to copy the tag and a few other things. The first option, senator-copy-tag, seemed to be broken, then I realized it copies the tag to a tag ring, not the kill ring. This seems not so useful, since when I copy something I usually want to yank it soon after, regardless of how I copied/killed it. On the other hand I assume there's a reason for the existence of a tag ring that's distinct from a kill ring. So, what's the reasoning and usage of the tag ring? How can it help me? thanks much!
84ee05f4-bdee-fc8c-3bcc-24af4479b1cc
['3fde05d4-0c7a-9fcf-50da-fff4ea85be46']
How about adding "C:/Program Files (x86)/Git/bin" to your windows %PATH% and removing the customization for vc-git-program? Then plain "git" will find the right executable, no matter locally and remotely. That's what I do. (You'll have to restart emacs after changing %PATH%.) I like to set my windows env using the GUI under the System Control Panel, but there's other ways to do it, search the web if you need help with that. -y
237c5531-a4e4-06e1-a05d-d06722ed81b6
['3fe85c1a-ab57-ed7e-a57f-c3ea828fd811']
I want to connect to a gabber server and I am behind an http proxy. I have gabber 0.87. I have configured my http proxy in gabber 0.87 on debian stable and tried to connect to jabber.org, but I am unclear on how to get a username/password and if I should use ssl encryption and what port to set. Can anyone give me some pointers. I am newbie sorry :) Thanks, <PERSON>
fade2ffc-97de-0dc0-fc35-44c10e948714
['3fe85c1a-ab57-ed7e-a57f-c3ea828fd811']
I have been using ejbgen with Weblogic but I found out that there are struts tags in Xdoclet so now I want to use Xdoclet with struts with weblogic 7.0. I am not clear on how to accomplish this easily. I would also like to be able to create a jar/war/ear that could deploy correctly in both weblogic 7.0 and jboss. I will be eternally grateful if someone could share such a solution with me. Thanks, <PERSON> P.S.
636a7135-dae5-5fa4-29e2-4341aecc7cb3
['3fec687f-8cc6-d10f-fa91-ac132cd575f3']
Hi I have a web service created using Axis2 and now i try to perform the load test by sending approximately 40000 records in a single request. I observe that i get a Axis2 client time out error!! How can we set the time out parameter of the axis client? Thanks <PERSON>
28faa70c-6fae-1569-2be0-60035d07f947
['3fec687f-8cc6-d10f-fa91-ac132cd575f3']
Hi I have the Axis2 configured with rampart1.1, we are using it to digitally sign and encrypt the messages. Now this is happening at the server side. It works perfectly if we have the same setup at the client side (as specified on ws02). I hope it is not mandatory that we need to have rampart at the client side. The reason i ask this is are there any issues if we have DOT Net consumers consuming the Axis2 web services and configured with rampart? If yes then what are the work arounds for that? Thanks <PERSON>
22681172-f632-76e2-677c-bf841f875263
['3ff68ed1-028e-74d3-ebc0-1b405d93ba15']
Hello Basic Linux team; How can you enter the hard disk in the graphical file brouwser? I really want to enter it, so I can use Basic Linux as a rescue OS. Another question; has Basic Linux a logo? I want to write an article about floppy OSes and I need a logo to make labels to print and paste on the floppy. I really like your OS, because everything goes blazingly fast. Instead of Windows, I never have to wait to do something in Basic Linux. Cheers; <PERSON>
9feb2856-1620-9663-9d00-291ff9455958
['3ff68ed1-028e-74d3-ebc0-1b405d93ba15']
<PERSON>, you're right. But I'm just searching for good floppy disk OSes to write an article about and I want to explain people how you work with them. Have you ever tried Kolibri OS? It has got a read-only function for NTFS and a read-write function for FAT12/36. And a bunch of stuff, like over 30 games, a text editor, a web brouwser, a table editor, a file download and lots more, on 1 floppy disk! <PERSON>
4d5f0982-ae2d-a58d-1079-47526cf98b5f
['3ff9242d-8737-e8b4-a90e-1fd83fb399d7']
Hello smart people: this is a followup to: http://www.nabble.com/Virtual-Mouse---Stage-position-inconsistency-tc15659653.html#a15659653 Let's say I have a movieclip "ball" at x,y on another MC "earth" that will be used as a texture. When that texture is applied to a sphere, the movieclip retains its 2d coords, relative to the surface, but its 2d coords in relation to stage vary as the camera or sphere are rotated. My question is, how can I determine those stage coordinates at any given time? Thanks <PERSON>
022afdff-5679-f789-1ca1-edd6674ff804
['3ff9242d-8737-e8b4-a90e-1fd83fb399d7']
Hey all, Here is a project (my 1st official pv3d project) I did for Leap Day: http://leapday.glg.com/ I'd like to get any input or suggestions on performance techniques that anyone may have. As you can see it got quite a bit of traffic and comments posted on the globe. The day after we launched (feb 28) there were already many pins posted and performance started to drop significantly, so I had to go back and make tweaks to squeeze performance out of it. The pins are spheres with 4 horizontal and 4 vertical segments (and they look a bit wonky). Originally it was 6x6. When I reduced, even that had a significant impact. I also simplified the earth texture a bit (does compression even have an affect?) and reduced the number of stars. Performance is still a little jittery at times. Sometimes it freezes and fps drops to 0 for a second. When I originally started this project, I had some sweet phong shading + bump mapping, as shown in one of the examples from the pv3d repository. My sphere size is 480, 24 horizontal segments, 12 vertical, and I set camera focus to change elevation. I had to completely remove all shading to get this thing to run decently. I also tried gouraud shading without much improvement... The way the globe spins is by rotating the camera, not the sphere. We wanted to do this to get perspective change on the star field. What seems strange to me is how performance-intensive this is, when I've seen crazy awesome examples like the chrome demo, and many other large pv3d sites that run very smooth. Typically I get around 9 - 16 fps. Any tricks I should be aware of? I've spent quite a bit of time researching and tweaking. Cheers! <PERSON>
afb19178-4af7-80bd-3d23-b2a4c890c6cd
['402d2aec-7aa1-346c-6f6c-6f5767067376']
HI, I am new to SOLR , we have CRM data for Contacts and Companies which are in millions, we have switched to SOLR for fast search results. PROBLEM: We have large inclusion and exclusion lists with names of companies or contacts. Ex: Include or Exclude : "company A" & "Company B" & "Company C" .... & "Company n" where assume n = 10000; What would be the best way to do this kind of a query using SOLR. WHAT I HAVE TRIED: Setting "q" ==> field_name: ("companyA" OR "companyB" ..... OR "Company n"); This works only for a list of 400 odd. Looking forward for assistance on this. Thank You, <PERSON>.
7fbfc920-1a41-1889-b470-4a5259bdd3d2
['402d2aec-7aa1-346c-6f6c-6f5767067376']
Hi , I am new to solr , i need help with the following PROBLEM: I have a huge file of 10000 lines i want this to be an inclusion or exclusion in the query . i.e each line like ( line1 or line2 or ..) How can this be achieved in solr , is there a custom implementation that i would need to implement. Also will it help to implement a custom filter ? Thank You, <PERSON>.
89af9824-2cab-08ad-20a5-0f8950636ebd
['40364d85-b736-476e-d438-5f66dacd958a']
Hi Folks, what is the most effective way to launch a compilation command from Kate? In the 'External Tool' menu I can define a command popping up a new shell and run the command but this not looking like a professional solution to me. Is there something like the compilation in 'Scite', where the command echoed in the terminal subwindow with the compiler messages and exit code. Please CC me, I am not subscribed. Regards, <PERSON>
51de9750-a124-8570-fae9-c15057e83a7b
['40364d85-b736-476e-d438-5f66dacd958a']
Hi there, when I wanted to print selected pages of a long file a noticed the following: This one works: a2ps -2 --pages=1,2,3 -o out.ps big-big.file and this one too: a2ps -4 --pages=1,2,3 -o out.ps big-big.file but this one prints all the pages on the top of each other: a2ps -3 --pages=1,2,3 -o out.ps big-big.file and the same with -6, -8 -9. My platform is SuSE Linux 10.0, a2ps 4.13, the architecture is 64 bit Opteron. Otherwise what is the correct form to define a range of pages? It is not in the document. Cheers, <PERSON>
5dd089ec-c08b-ed8f-4395-2281f1aae502
['403995e4-6183-f283-d86a-45d6167c2d7e']
Dear <PERSON>, I just saw your post regarding group level MVPA analysis. I am at the same point you were two years ago and I am struggling with the group level analysis? I was wondering which tutorial you referring to on the pyMVPA site. I could not find any tutorials on group level analysis? Do you have any other recommendations where to look for tutorials or help? Thanks a lot, Sebastian
68c62fda-4e1b-19c2-c217-e26b872b7e24
['403995e4-6183-f283-d86a-45d6167c2d7e']
Dear pyMVPA team, Whenever I try to import pyMVPA recently I get the error: AttributeError: 'rdist_gen' object has no attribute 'veccdf' I saw that this error occurred previously, but it was solved by updating pyMVPA to the latest version. However, I am running pyMVPA 2.5.0.dev1 and scipy 0.19.1. So I am not sure what the problem may be. Do you have any suggestions? Thanks, <PERSON>
0c228165-dc05-e02f-d84a-375181f093b3
['4052eca3-c050-e032-b91f-df0dc935310a']
<PERSON>, I just updated from 0.7 to 0.81 Sept.9 & now have no db. My db had over 18,000 spam & now has 14. That's a great deal of time lost. Now I will have to retrain for the product to work. What happened? Do you make a backup of the db prior to installing the update? Where can I find the backup? <PERSON>
0c85a1ef-4a4b-c986-f8d8-7571641778f5
['4052eca3-c050-e032-b91f-df0dc935310a']
Having used SpamBayes for some time, I feel good that it has been sufficiently "trained". Between Friday 8/15 @ 5:00pm and Monday 8/18 @ 8:30am I received 442 e-mail's. Of these, I only looked at 6. SpamBayes saves me hours each week. Time that would have previously been spent sorting through spam. Thank you. I have two requests; 1. Under Define Filters, give me the ability to delete Certain Spam. 2. Give me the ability to merge another SpamBayes db into my db. Myself & another user in our office use & appreciate SpamBayes. A third user would like to use the program. I don't want the new user to go through the month or so of training. I want to install SpamBayes on the third users computer & then merge my db into that new users db. Great product. I recommend it frequently. <PERSON> Basic Business Systems, Inc. Network Consultant <PHONE_NUMBER>
e93b2388-b115-525d-4af0-afe82fb8f1e8
['4055f4ed-72c6-de0e-985b-921f9d70a86b']
To participants of the J Conference The conference starts on Monday. However I will be in Toronto Sunday p.m. and would be pleased to meet other participants Sunday evening (for dinner too). I don't know enough of Toronto to select an appropriate restaurant or meeting place. Could someone take the lead and propose a place? for sure, I will be there. The conference is only two days; that's short, I believe, for all we have to share. <PERSON>
c20955b2-2d0b-6606-90c0-edf35a1ce7ae
['4055f4ed-72c6-de0e-985b-921f9d70a86b']
"Canada has a Request for Information (RFI) related to No-Charge Licensed Software (typically referred to as Free and Open Source Software or FOSS and also applicable to freeware)." http://www.merx.com/English/SUPPLIER_Menu.Asp?WCE=Show&TAB=1&PORTAL=MERX&State=7&id=PW-%24%24EE-015-18733&FED_ONLY=0&hcode=Au64x22Vv9pVNE3IKtFp3Q%3d%3d Closing 2009-02-19, with a possibility of being read if submitted later. The objective is "to develop internal guidelines" related to such software. <PERSON>
10d3d10a-2a43-0ac3-2e29-c3d298d3ea86
['40656492-2e0f-a9d7-879d-b593f51f6b24']
Hello I posted this a couple of days ago. Can no one respond? If a solution is not possible, can anyone let me know? I have set up an email layout which includes a container field with the full path name of the file I want to email as an attachment for a particular record. Most of my emails will be regular, repeating events but each time the file will be different. The files to be attached in each email are stored in the same folder. How can I set up the email attachment dialog box to point to the file mentioned in my container field? Using FileMaker Pro 9 Advanced. Thanks for any help.
59ce0976-1a3d-fa7e-863b-1377bc458c10
['40656492-2e0f-a9d7-879d-b593f51f6b24']
Hello I work on a lot of annual reports and need to know a bit about XBRL which Inland Revenue (UK) is requiring for company returns. There does not seem to be much info about XBRL out there, but I do know it is related to XML and that: 1. I can easily set up the required info in Excel, from there to FileMaker (but I do not know how I should set up the FM report info so it exports the data as required) 2. FileMaker exports to XML quite easily 3. XBRL is quite closely related to XML. Can anyone help with this? I am using FMP Advanced v11 Many thanks
764a475c-31ce-f1b1-b694-4251da76ec06
['4071fb06-cd46-03d6-0a90-d971a26e161b']
Hi, I have solved a model and I want to export the temperature distribution to import it for another model. As the exported file is not writen in the way it must be to be imported i am not able to do it. I know I can use the "store solution" button and the "use stored solution marker", but what I need Is to export it first and then import it. Another question I have is where can I find the file where a solution is stores when you use de "store solution" button Thak you
3a57f42c-9d14-959e-b728-47d5bac7201e
['4071fb06-cd46-03d6-0a90-d971a26e161b']
Hi, since I started working with comsol I have bening having the same problem and I thought it was because of the ram of my computer, but now I have changed It and still have it. The thgn is tha y can solve a problem with a certain mesh, but If refine it I get the next message. Time 0: Failed to find consistent initial values. Last time step is not converged. Why is that? do you have any idea. thanks
757a24f6-4aec-69ae-c7fe-13ff2fb92039
['407d4623-d118-0cd8-47d7-2c2ee5cbac15']
Hi Lucene Users, good news: we are planning to release Lucene 2.3 in about ten days from now! Lucene 2.3 will have significant performance improvements and various other new features. (see http://people.apache.org/~buschmi/staging_area/lucene_2_3/CHANGES.txt for a full list of new features and API changes) I uploaded a release candidate yesterday to http://people.apache.org/~buschmi/staging_area/lucene_2_3/rc2/ which we are currently testing extensively. We would like to ask everyone to help testing the release candidate. Our goal is it to make the final Lucene 2.3 release as stable as possible! On behalf of the Lucene Team, -Michael
60cad74c-1c4d-86cc-274d-bcc443e8d673
['407d4623-d118-0cd8-47d7-2c2ee5cbac15']
Release 2.2.0 of Lucene is now available! Many new features, optimizations, and bug fixes have been added since 2.1, including "point-in-time" searching, payloads, function queries and new APIs for pre-analyzed fields. The detailed change log is at: http://svn.apache.org/repos/asf/lucene/java/tags/lucene_2_2_0/CHANGES.txt Lucene 2.2 includes index format changes that are not readable by older versions of Lucene. Lucene 2.2 can both read and update older Lucene indexes. Adding to an index with an older format will cause it to be converted to the newer format. Binary and source distributions are available at http://www.apache.org/dyn/closer.cgi/lucene/java/ Lucene artifacts are also available in the Maven2 repository at http://repo1.maven.org/maven2/org/apache/lucene/ - Michael
725915cd-cb31-84ad-77f2-154040491d7a
['407d7843-50ee-8700-6f5c-b456b63a67c3']
Hi, We are currently trying to determine what the best strategy to upgrade NRPE + check_nrpe for >1024 bytes output support is? We would like to utilize the new support for 8kb output in Nagios 3, but we face some difficulties doing this in NRPE. It seems that when we naively touch the buffer limits in the NRPE source, we lose backwards compatibility? Has anybody found a way to use the same check_nrpe to support both existing "vanilla" NRPE installations and "upgraded" NRPE installations with multi-kb output support? If anybody knows if there is a spec for the NRPE protocol available, we would like a pointer to it. We figure that might help us in figuring out how to support both versions correctly. Best regards, <PERSON>
60dfecb5-bf21-1b11-a216-e560ee3c1b7f
['407d7843-50ee-8700-6f5c-b456b63a67c3']
Hi all, We have been running the Nagios 3.0a5 version for a while and are now interested in upgrading to the 3.0b1 version. We are running Solaris 10 on a Sun Fire V210 platform (2CPU), and performance on 3.0a5 have been excellent. But it seems that with the 3.0b1 something has changed that makes the installation unable to process the scheduling queue - Nagios stops processing the queue after 1 (one) check has finished. For our tests we are running 3.0b1 with a straight sample configuration, so it should not be a configuration issues that is stopping us (I hope .-)) We are curious if anybody else saw this? The logs are _completely_ quiet (even though nagios.cfg is set to log everything), and everything in the interface says "PENDING" (except for the 1 lonely check that is executed). It sort of reminds me of the recent NSCA issue where something similar happened - NSCA was also able to receive one event, and then also hang forever. I have no idea if the issues are related in any way though. I hope there is a patch for this available and of course I am happy to assist in testing this issue further. Regards, <PERSON>
30425714-ad37-0bc0-cc18-b3d594901a36
['408db854-754a-3295-4b42-4bd40eda8a03']
hello.. I've done some changes in the release32's AuthenticationException which are not compatible. In the constructors you always have to specify the localized message. and the no-param constructor is completely removed. That should force us to provide localized messages all through the library for the exception. I realized the non-compatibility after he commit. Sorry about that. <PERSON>, I wonder if it's ok with you to propagate the change to the main trunk.. Are you creating the Exception within you code or are you just catching it? and BTW are you using the release32 sources or the main trunk stuff for your developement? Once again sorry and let me know if I can merge the change with main trunk. <PERSON>
e4f1a396-58f2-2834-95b0-178b1662021e
['408db854-754a-3295-4b42-4bd40eda8a03']
Hello. When dealing with bug #9935 http://javacvs.netbeans.org/issues/show_bug.cgi?id=9935 i realized that I don't completely understand how to catch exceptions that come from the library and how to handle error messaging. Let's take a look at the Authentification exception. There can be many reasons why this exception is thrown 1. "Host name must not be null" message. 2. "Could not authenticate with server. Response was: ..." message 3. With Throwable as undelyingexception, which can be almost anything.. (Prolly IOException, HostNameNotFound etc..) I need to have a localized message shown to users for each case, probably with different message. Sometimes a log of the client-server communication might come to play as well.. Do I really need to do a row of if-then statements to handle each case on it's own or is there any other better way? CommandException has probably even more different case, which can't be even properly distinguished or all possibilities predicted (AFAIK). (try doing - find "throws new CommandException" on the library..) In most cases it just encapsulates the exception that was thrown.. whatever that might be.. I don't know. Thanks for any help or hint.. <PERSON>
f21ffc98-91c5-ea72-184d-47cc734cb4c3
['4090a5ae-c634-6a9d-a2d2-7dda52b55fc3']
Hi! My problem is that I need to export more columns than I display. The version on screen will serve as a summary, whereas the exported version (pdf/xls/etc..) will contain all the information I have. So, in order to clarify, I'll give a simplified example: On the screen the display:table should display Name Address Phone Whereas the export will contain: Name Address Phone Birthday Car Any help with solving this is greatly appreciated! <PERSON>
54c6a49c-bd57-99eb-578f-023c29778983
['4090a5ae-c634-6a9d-a2d2-7dda52b55fc3']
Hi! I'm using Appfuse 1.9.2/SpringMVC and I need to do some app initialization that is to be executed exactly once when TomCat is started (I need to start some Java Timers that execute a method in one of the services every hour). Where would a suitable place to insert this kind of code be? Regards, <PERSON>
34ceb676-1d7e-937a-8552-91a15546ffdf
['409c6597-2828-e049-8dda-27ad7188057f']
I have used SpamCop for months and months, and suddenly I start getting: "looks like a dynamic host, untrusted as relay" when trying to report spam. This only started in the last couple of days. I can guarantee you that my IP is not dynamic... and is not listed in any blacklists that I can find. An example of such would be: http://www.spamcop.net/sc?id=z178620506z756e85ca93f7d0826802afaeca0cf76bz I am using the same method I have always used. I open the message in Pine, with full Headers... then forward on to the spamcop email address as an attachment. My servers ARE on DSL connections, but the entire Class C they are on... are static IPs. I actually have 2 IPs I'd like to have excluded from whatever list is being used to determine this. Please let me know what I can do to remedy this, so I can start submitting spam reports again! Thanks, <PERSON>
b45b5cff-197b-6d69-1923-95ff7899f4a1
['409c6597-2828-e049-8dda-27ad7188057f']
There are a ton of factors involved with this question. I do know that they have taken spam seriously, as it obviously wastes their bandwidth and storage space. I know that most of you are thinking..."Why would the richest company in the world care about that?". Well, remember that Hotmail is pretty much a complete loss to them. There are a few customers that pay for it, but it is a very small percentage. They also make some money on banner ads. Many of you know how much bandwidth, datacenter space, servers, infrastructure, etc. cost. Now multiply that to the amount needed to support millions of users globally. I can assure you that they are (for a fact) using commercial applications to help with the spam. However, they have to be extremely careful to not cause false-positives on incoming mail. If nothing else, they need to implement such things to keep people from leaving them to go to Yahoo! Mail. Yahoo is great at keeping spam out, from my experience... much better than my Hotmail account. <PERSON>
057d10e6-f19f-5e25-62de-bc7b09ab0103
['40afb83f-4821-31e2-eb92-15f299ba92fd']
Hi: I was running KDE quite happily last week on the same version of A/demudi that i reinstalled on tuesday, however i can't seem to get it again. as far as i remember i used apt-get install kde, but now it doesn't work. also, it seems that kde is already installed, as all the basic pieces are there, but i have no idea how to access it. oh, did i mention i am a bit of a linux newb? :) basically, i just need some decent file browser that will allow me the basic tasks such as right-click/'gunzip functions, etc..'. nautilus is simply substandard for my needs, and every time i start it up it seems to kill fluxbox anyway so really it is a bigger problem than solution. I tried to install xfce which looks really good, but certain dependencies refused to be subjugated by apt-get. I love fluxbox (and blackbox for windows) and once kde was installed on my previous demudi inst., most of the things i need were available in the fluxbox right-clik menu. so, sorry for the novel; can somebody tell me how to access kde, or where to find a good file browser that works with demudi? i have googled till blue in the face, and i am getting nowhere. thanx for your time, and for any help. <PERSON>
13dd62f6-b40c-be03-69f4-4effb5452545
['40afb83f-4821-31e2-eb92-15f299ba92fd']
hi i am hoping that someone can help me <PERSON> now has a driver for my system, but if i can't get Linux to install in the first place, how can i use it? arg help i have been without <PERSON> for months now, and i feel myself becoming listless and resigned... :cry: so, when i try to install demudi or ubuntu my screen goes black as soon as the stuff unpacks at the beginning of the install. the same thing happens when i try to run ubuntu live cd please help me, please... i am just a musician / multimedia designer trying to do the right thing by using open source, but i am losing motivation now, after so long of trying to find a solution to no avail. thanx for ANY advice you can give me. sincerely <PERSON>
2ce3d19c-e1f9-ba30-7b65-1f73ccbc535d
['40b1e36e-aa55-3922-5b0e-4b4a8183fbfb']
Good day,   I have VTK6 installed and when building opensg, it detects VTK6 and tries to build the Contrib/VTK module.  However it then throws some compile errors because of breaking changes - for one vtkCommon is split into several parts and the compiler also complains about missing symbols. Is it possible to add an option to disable the build of VTK module?   Regards, Venkat  
f764129b-e18d-664f-4c9d-13f93d53ca46
['40b1e36e-aa55-3922-5b0e-4b4a8183fbfb']
Hello,   I am able to use an orthographic camera with simple scene manager, however the zoom in/out does not work though rotation works correctly.  I see that the projection matrix returned by the orthographic camera has the z-translation component zero, this I believe that this is the reason for the zoom issue.  What would the best way to implement zoom in/out? The only way I can think of is to store an external variable for the zoom factor and set the camera horizontal/vertical size before draw but I was hoping to avoid that and use the built-in navigator functionality.   Regards, Venkat  
90c8dbc3-eb8c-09c2-d0d9-aca622b431f3
['40b9ac2c-057f-e19d-a154-0a415c25beb8']
We have a backup system (backupPC) that is responsible for backing up millions of files and holding over 2 TB of data. The backup system saves space by creating hard links where it can. This actually reduces the total size down to 200 GB, however there are still millions of files/hard links. What does this have to do with reiserfs? Well, the partition runs reiserfs 3.6. Over the course of a few months (and the addition of millions more files/hard links) the performance of the filesystem has become painfully slow. In a directory of ~1000 files, running 'ls -l' or 'stat *' takes 45 seconds to complete (assuming nothing is previously cached). We are using the r5 hash, and mount the filesystem with noatime. No one directory has (or will ever have) more than about 2000 files and hard links inside. Is this performance decrease when calling stat to be expected with increasing millions of files/hard links? Would XFS or another filesystem get around this somehow? I'd rather not use reiserfs4, as this is a production backup server and needs to be as stable as possible. Thanks very much for your help, <PERSON>
bcdfd89d-546b-35c2-8d78-c0e9a95ec63a
['40b9ac2c-057f-e19d-a154-0a415c25beb8']
Hello, We're using XFS on a 250GB ide drive with one large partition. We're trying to move our main backup system from an external firewire reiserfs drive to this internal drive. The files we're trying to move over consist of several million real files, and tens of millions of hard links to those files. We're using cp -a to move everything over and preserve the hard links. After the cp proccess has been running for a long time, the kernel starts giving us errors (included at the end). I've used smartools, ran the extended self test on the drive, check for bad blocks using western digital's own drive scanning program, etc., and found no problems with the disk. Can anyone decode the error messages we're getting? I'm very new to XFS and can't figure out what they mean. Thanks very much, -Ross
7fdd60ac-4199-8e92-a6f9-44d2ea5c6e9d
['40d23924-e014-866c-01f0-2f83fd8d5204']
Hello, After a lot of trouble setting up an installation server, serving both a SuSE 9. 3 Pro source and an update source, i finally was able to autoinstall a machine which installed all packages and updates in one go. (So it installs the updated packages straight away and not first the older version.) However, when i then run YaST Online Update on the machine it still wants to install all the updates that are already on the system. It even reports that the installed version of a particular package is the exact same package as the one it wants to install. I already found that if i move a file from /var/lib/YaST2/you/mnt/i386/update/9. 3/patches to /var/lib/YaST2/you/installed the problem is solved for that particular package. But the first directory also contains files for packages that are not installed at all, so just copying all of them would not work. I really hope there is a clean solution to fix this? Any help would be highly appreciated. Regards, <PERSON>
22535cc5-4d67-35ad-67ae-d65d66907ed2
['40d23924-e014-866c-01f0-2f83fd8d5204']
Hello, I am trying to do a remote install using VNC, installing SuSE 9.3 Professional. This all goes fine until <PERSON> wants to do the first reboot. The machine reboots and after coming back up the console tells me to reconnect my VNC viewer and finish the installation. However, if i reconnect my viewer i just get an empty screen. It seems to be a gray pattern empty X screen with a mouse pointer. But <PERSON> is not coming back to finish the install. Is this a known issue? Or is there anything i should check? Regards, <PERSON>
6d17b406-744b-65db-b941-79b422e0db87
['40d72686-cadb-6cab-6cf0-b0cf20ef0388']
Hello everyone, Please excuse my "noobness" with this question but it is something that I have been wondering about for a little while now. Current we use DOM based tools in house to show xml files in tree views and the like. Since we need to move back and forth throughout the entire file I totally understand why the file must be loaded into memory and why things can get very very slow with large files. However, I was under the impression that SAX based tools did not load the entire file into memory and as such, could only be used when processing a file sequentially. Now, in the case of splitting down a large XML file into smaller parts using XSLT, this is (in my mind anyway) a sequential read as there is no need for going back and forth in the file. Once a node has been "split off" there is no need to every go backwards in the file. I raise this point in regards to needing about 5x the RAM as the size of the XML file. If we are reading sequentially why do we, by default, need to reserve so much RAM? I understand that I might be totally off base here but if you could toss me a line as to where my logic is flawed (it probably all is) I would greatly appreciate it. Thanks <PERSON>
45fc9703-8e70-b923-bb79-625b1aae3db2
['40d72686-cadb-6cab-6cf0-b0cf20ef0388']
Hello, Thanks for the replies. I was actually told here in this forum about the 5x size and that memory management for files of 100BM+ is cumbersome. My main issue is that I work for a software company that uses XML as an input source for variable document printing. Since XML seems to be the buzzword of the industry right now many companies want to go with XML but don't truly understand what it entails. Many customers do database extracts to XML and then expect us to be able to handle crazy large files (we have seen files up to 1 gig here already). My first thought is that the only way to handle this is to create smaller logical chunks of data. (Split done each invoice into 1 file for example). I then developed an interface that creates the XSLT code required to split down the file at the appropriate point. This works great and I must say that up to about 100 megs, Saxon destroys the other engine we were using (was not even close). However, 100MB+ files crash out with memory errors even though I have 1 gig of RAM (meaning the 5x RAM rule might be even a little higher) plus a swap of at least 2 gigs. However, my original point is that I was under the impression that <PERSON> based tools did not need such high memory requirements and that, in theory, a 1 gig file should work just the same as a 1 meg file, obviously slower due to such a large file to read through but that the time require to create the smaller files should be a linear amount of time (i.e 1 min for 1 meg, 10 minutes for 10 megs etc), however the curve is definitely exponential and running out of memory occurs quickly. There is something that I am not understanding here. <PERSON>
8ccf3caf-c192-6040-85c7-16e50a19a050
['40df84f9-87c4-4374-76a1-91d9099f3c56']
I would love to be able to easily switch to have the Palm vibrate when going into a meeting. Instead I have to go to prefs of Datebk and check vibrate and then go the Palm prefs and select silence. Is there any other way to do this with a little less hassle? Bro. <PERSON>
d4f8e843-990e-150b-d190-2cdcb1931bd0
['40df84f9-87c4-4374-76a1-91d9099f3c56']
Used to, i could look at an alarm when it went off and see the time that is had been set to go off at the bottom left. The top right time would be the actual time the alarm went off. So if I had snoozed or missed an alarm I could see when it was originally set to go off. Now the bottom left time is like 6:00 pm. The top right time is 5:59. It is always a minute off and i never do see the time that the alarm was originally set to go off. Does this make sense? Am I clear? Anyone else notice this? <PERSON>
366da450-97e9-0028-0eb7-952313200659
['40ec72b6-8944-79ee-acdd-baaa052b416a']
Our client, a leading university located outside of Boston, MA is seeking a Web Development Librarian. The Web Development Librarian provides expertise in the analysis, design, development and maintenance of university web sites and web applications. In addition, s/he provides information architecture support for major projects including: development of content standards for the enterprise content management system; integrated library systems web interface; digital initiatives projects and major web site re-design. This person will also provide web programming and help to maintain the functionality of library web sites, university web sites and associated systems and participate in the development and deployment of web-based initiatives in support of teaching, learning and scholarship activities. Requirements for this position include: Web development and database skills using industry standard tools, applications and languages; Information architecture skills including content analysis, wireframes, prototypes and user-centered design concepts; technical skills in Unix, shell scripting, JavaScript, CSS, database implementation, SQL and development languages; strong analytical skills and communication skills; project management and facilitation skills; proficiency in digital library standards for description, access, delivery and preservation of digital objects (e.g. XML, XSL, HTML, Dublin Core, MARC) and awareness of best practices; strong organizational and interpersonal skills; the ability to work in a team environment; experience with integrated library systems, digital initiatives, library organizations, and academic settings. A Master's degree in Library Science and 3-5 years of work experience are also required. Some experience may be substituted for some of the education. To Apply: Please send Word formatted resumes and credentials to: <EMAIL_ADDRESS> Paula Maloney InfoCurrent 28 State Street Suite 1102 Boston, MA  02109 ph: 617-573-5031 fax: 617-573-5058 <EMAIL_ADDRESS><PHONE_NUMBER> fax: <PHONE_NUMBER> wfZdzJlVdRzsZi1l@example.com
4844f44c-fdb9-da26-c4d0-4bd11c198608
['40ec72b6-8944-79ee-acdd-baaa052b416a']
Information Architect - Contract (3-4 months) Our Client in Framingham, MA is seeking an Information Architect for an on-site contract position (3-4 months).  The right candidate has experience at the mid-junior level and can work proactively. The IA will work on browser-based and traditional graphical user interfaces.   The scope of the work consists of creating IA deliverables such as sitemaps and page flows based on understanding gleaned from existing systems, prototypes, requirement sessions and ongoing ethnographic user research. Other assets like low-fidelity wire frames, HTML prototypes and content maps/labeling systems will be created in accordance with in-house standards. Facilitation of user interface definition sessions by leading teams through white boarding exercises and discussions might also be needed. These IA deliverables are widely used by the business and IS departments as means of communication and form a part of our client's development methodology.  The ideal candidate for this position must have a thorough grounding in interaction design. The candidate must be able to produce and refine ideas that work with existing solutions and be able to communicate these ideas easily. Candidates must also be comfortable working in teams and quickly adapt working style to add value to diverse projects. To apply: please send Word Documented resumes to:<EMAIL_ADDRESS> <PERSON> InfoCurrent
aa4de387-4b84-7b3a-060b-2aa8cdd90859
['40fc9136-160f-60cb-e3d5-9177ac2fb2d9']
Hi, I have two Protege projects: project A contains my metamodel, project B includes A and fills the metamodel. But when I change e.g. the name of a slot in A and B already contains instances which use this slot, reloading B after the change results in a load project error saying there is no slot whith the old name. I then need to update the .pins file of project B manually to update the slot name. Any suggestions on how to circumvent this? Or am I doing something wrong? My metamodel is still under development, thus such changes occur rather often... My only guess is that I would need to leave the system slot :NAME unchanged (so that it is stable) and use another custom slot for assigning class and slot names. However, I would then loose the functionality that Protege tests for a unique name, which is only possible with the InstanceNameWidget which I can only assign to the system slot :NAME. If I could use this widget for any string slot (i.e. a "UniqueStringWidget"), I could just create my own slot name, use this as display slot and the InstanceNameWidget would still help to assure unique naming. The :NAME slot would not be affected by my changes in the metamodel and the including project would stay consistent... Any hints on this would be great. Thanks in advance, <PERSON>
bebdecd3-59a4-09c9-c121-efd0f748e998
['40fc9136-160f-60cb-e3d5-9177ac2fb2d9']
Hi, I have created a project which consists of two parts: a metamodel (metaclasses and simple classes) and the instances (classes and simple instances). At the moment, in order to seperate both, I have implemented both parts in two separate projects: project A contains my metamodel, project B includes A and fills the metamodel. What I would like to do now is to write a backend plugin which uses the metamodel . As far as I understand the metamodel should be created in the method "createKnowledgeBase" of KnowledgeBaseFactory. I would like to ask for any hints on what's the easiest way to get the metamodel into the backend. I mean I have the metamodel as the usual .pins, .pont and .pprj files - Is there any way that I can reuse them without having to rewrite the whole metamodel programmatically? Creating classes and slots would be the smallest problem, but I have customized the formes a lot and have read in the discussion list that customizing forms programmatically is not so easy... It would be great if I could get some hints to get started. Thanks, <PERSON>
b4fa31dc-5678-75d2-bf0b-58ccbb2dd9c6
['40ff7495-bac2-c816-de8d-3b18f4b6b097']
I can't reproduce this but I think it worths mentioning. I just finished debugging a memory leak. It turned out to be compiler problem (dmd 1.035 windows). I had two big static arrays in a class member function (around 200kb each) and using my app as usual was causing huge memory leaks. Replacing these with dynamic arrays solved it. In another case importing a file (static const a = import("myfile.txt")), where myfile was around 1.2mb was causing huge huge memory leaks. The actual code in the function that had this import was called only once in the program lifetime but it was messing something so just using the rest of the program was causing progressive memory leaks... Moving this in the exe as rcdata solved it. Sorry I can't reproduce these in a small test case but it is definitely a compiler bug so I guess it worths mentioning anyway... Regards
c219542d-b7c5-4157-91cd-41c8502c8608
['40ff7495-bac2-c816-de8d-3b18f4b6b097']
I'm walking the PE header sections to find out the file size. I find the maximum PointerToRawData and add SizeOfRawData of the section to find where the exe ends. It works with the files I've tested. When compiling exe file with DMD 1.055 and -g there are additional four bytes after the last section. Why is that? Is SizeOfRawData wrong or there is something else at the end? Thanks
0a2c596b-880b-d72b-c157-42b5b1dd1052
['41099e03-0b71-fe59-b43a-60d2dee9b7e4']
I've just received an screenshot showing how <PERSON> looks like in the build appliance, and I'd like to file an enhancement to include a GTK theme that will show <PERSON> with a better face. Does anybody know how should I file it? Bugzilla under build system > general and indicating 'build appliance' in the title? Thanks <PERSON>
b6980e50-ce21-f174-6fd0-9d08c5f47204
['41099e03-0b71-fe59-b43a-60d2dee9b7e4']
I figured it would be handy to have a quick way of searching for GUI-related Toaster issues in Bugzilla (as opposed to those that are BitBake, OE or web back end related). Mainly for people who are interested in contributing to the UI. All GUI-related Toaster issues with a 1.6 milestone now include the string 'GUI' in the Whiteboard field. * If the Whiteboard just says 'GUI', this means no design documentation is required for the issue * If the Whiteboard says 'GUI design pending', this means design documentation is required but it is not yet done (you can contact me about it if you need it) * If the Whiteboard says 'GUI design available¹, this means design documentation is attached to the feature. If you need to find GUI issues in Bugzilla, you can search for 'GUI' using the Whiteboard field and you'll get this list. http://goo.gl/w82r4K This mainly helps me, but maybe others will find it useful as well. Cheers <PERSON>
e196da2e-3b4a-d273-d47f-32c5d541daa4
['4114df5f-46e4-82d8-04b4-ccc3547a3198']
Hi all, We are ending up with an Issue and a PR for the same new license/exception requests. I think a PR is sufficient, but there are going to be times where a request starts with an Issue due to the person making the request not feeling comfortable creating the XML file. I think this is fine, especially consider that not all requests for new license/exceptions will be accepted. But I think we ought to close issues once the PR is made or not start with both to make things easier to track. Note - hopefully, with the Google Summer of Code project proposal - this will all become easier in the future :) Thanks, <PERSON>
f8ceb2f8-0d73-5344-9fd9-f673f72080df
['4114df5f-46e4-82d8-04b4-ccc3547a3198']
Hi all, The meeting minutes from our last call are here: https://wiki.spdx.org/view/Legal_Team/Minutes/2018-01-25 Please note: The Open Source Leadership Summit is March 6-8 in Sonoma, CA. We will have a room Friday, March 9th for an SPDX working session (approx. from 9am to lunch). Who will be there? Call for things to work on? On the last call, we came up with a few ideas, as per below, but wanted to put a call here for other potential topics! We have our next legal call this Thursday at the NEW TIME (an hour earlier than last year). I won’t be there, so <PERSON> will be in charge. Update on my follow-up item re: 3.1 release: I have not gotten an update from LLVM. Will ping again and keep you posted. Cheers, <PERSON>
db519393-5644-96c5-ddf8-013705d3b54d
['41598641-0ac4-3c59-92b3-7930a2188c60']
Hi all, I'm trying to modify and recompile some UDFs for MySQL 4.1. I'm using the header files from the version 4.1.10 Linux source archive and am getting the following error: /home/sskarupo/mysql-4.1.10/include/my_global.h:70: my_config.h: No such file or directory my_config.h isn't there. It is included in the Windows source archive, though. Can anyone explain this? Thanks in advance, <PERSON>
73af4a58-1539-2021-dab2-199b2c25ef37
['41598641-0ac4-3c59-92b3-7930a2188c60']
Hello All, I hope someone can shed some light on this problem... This concerns large InnoDB tables (having on the order of millions of rows). When I run ALTER TABLE (for example, to change the default column value) or UPDATE or DELETE queries that affect many rows, mysqld-max crashes and apparently gets restarted by mysqld_safe. This also seems to hang the web server that runs on the same machine and maintains connections with the database. Of course, the query does not complete. I'm using mysql version 4.0.16 on Red Hat 9 Linux, kernel 2.4.20. Thanks in advance, Sergei
a0eabaec-5f31-3131-370e-09631fc08723
['416024b8-197b-8673-e61b-ba8c14e41057']
I finally updated my 32bit PC to wheezy in October. Shortly after, I started getting kernel panics (blinking CapsLock/Scroll Lock for about 10 seconds, then it would re-boot itself). I ran memtest for 14 hours; no errors. It often happened while watching videos in iceweasel, especially when seeking with the slider. It also happened with totem and an audio program again when seeking. It also happen on 3 occasions right after I clicked SEND in icedove. Often it would reboot on its own overnight. I admit I thought it was all due to software for many weeks. Then I started getting fsck errors during the re-boot. Then after running OK for an hour or so it started re-mounting the hard drive read-only without rebooting. I was seeing journal errors (ext3 filesystem). Then I saw a BIOS message saying a hard drive failure was imminent. I had a new drive that I wasn't using, so I set it up with ext4 partitions and copied everything to it, fixed up grub, and booted the new drive. It went back to kernel panics! I stole a Gateway desktop from my kids (similar CPU and memory). I put my harddrives (the new one), memory (4x1GB), gigabit LAN card and video card (GeForce 7300LE) into it. No problems at all. When swapping the video card I discovered that the fan was no longer working. I thought maybe an overheating video card could be to blame but it's run for 2 days now without a kernel panic. That pretty much leaves the blame on the original machine's mother board and power supply. I replaced the power supply a few years ago (Antec Earthwatts 430W EA-430D). The machine is an HP Pavillion MutilMedia TV PC, so there's an Hauppage TV tuner card installed. I didn't try removing that. I don't use it but I still have remnants installed from when I played with ivtv some years ago. Any comments about all this? I kind welcome the excuse to buy a new PC with a better video card and more memory (and 64bit), but it would be nice to know what's wrong with the machine before I through it out. <PERSON>
9e254a4e-9440-83c3-4272-d17090126c2e
['416024b8-197b-8673-e61b-ba8c14e41057']
I've been running 32bit Debian since release 0.93, before buzz was released. I've been through a few PCs over these 20 years, and now my latest one is dying on me (HP Dual core Pentium D, 4GB RAM). I'd like to take a step up and get a machine with more memory (12 or 16GB). I've done some searching and it seems these days there are no limitations with having access to all Debian packages, especially if one uses the multi-arch feature. Still, I'd like to ask on the list here. Are there any issues with switching to amd64? What about drivers? The new machine will likely be an off-the-shelf HP I7-4470 CPU machine with an NVIDIA GeForce card, somewhere between a GT635 and a GTX660. What about running 32 bit windows and apps in wine or VMWare? Regards, <PERSON>
6c217868-0aaa-96fe-daa9-df0c1efdf60a
['4186d37e-3eef-6413-4c9c-6e7e334e0a1a']
Hi, With MyFaces 2.0.0 we get an IndexOutOfBoundsException with a StackTrace that looks much like https://issues.apache.org/jira/browse/MYFACES-2432 We've made a minimal setup to reproduce the bug and it seems to be that it occures due to some nested components within our page. Maybe it is a special case of MYFACES-2432. Shall I reopen MYFACES-2432 to attach our example or shall I create a new Issue? Regards, Arne
b3d5c431-802f-4a49-821d-d7d4cc490695
['4186d37e-3eef-6413-4c9c-6e7e334e0a1a']
Hi folks, I saw the discussion of adding an @Transactional-Annotation to your CDI extensions. I think <PERSON> wrote it. I wonder if it deals with JTA transactions (which indeed would be pretty straight-forward) or with EntityTransactions of an resource-local EntityManager. I am working on the latter one and just would want to know if someone else is working on such stuff. I think it would be great, when we could archive injection of resource-local EntityManagers with transaction-support to deploy it on a tomcat or jetty. What do you think? Regards, <PERSON>
3c57b7d8-0efd-7268-7134-2b639cd5d30e
['418ba4cd-9033-388d-452a-e436c9e739f6']
Hi dev, My code need to parse some private request headers, is there any method already in the core to do this job, get the request header by header value? I don't want to iterate the array one by one to compare the key. I see only some standard headers are set in the request_headers_in hash table. Thanks, <PERSON>
ceb56410-c450-af51-2019-7c11c5d0923d
['418ba4cd-9033-388d-452a-e436c9e739f6']
Hello guys, I'm trying to find a way to use OpenStack SWIFT with nginx, the below are request steps: 1. nginx is configured as proxy cache 2. client send a request to nginx for url: http://domain.com/filename.txt 3. nginx received the request and it is a cache miss, it need to fetch the content from SWIFT proxy server 4. nginx send a request to swift proxy server for authentication, the url looks like http://swift-proxy/auth-account, account information is set in header, the response from swift proxy server contains a auth-token for that account if authentication success. 5. then nginx use this auth-token and put it in a new request header, and send the new request to the swift proxy server for the original request content, there could be a map between client request url to the swift proxy url, for example, /filename.txt --> /account/container/filename.txt, so the new requst url could be http://swift-proxy/account/container/filename.txt, plus the auth-token. 6. swift proxy sever response the content to nginx, then nginx cache the content and pass the response to the client. Could the above requirement be accomplished by some specific configuration plus some existing nginx modules? Thanks, <PERSON>
44fdd556-2d00-e4c5-b60a-66059801ae41
['418bb604-73dd-c4a3-0db4-748420b9a772']
Hi, I have a cluster setup with 3 nodes, and I'm adding hostname details (in /etc/hosts) manually in each node. Seems it is not an effective approach. How this scenario is handled in big clusters? Is there any simple of way to add the hostname details in all the nodes by editing a single entry/file/script? Thanks and Regards, Ramesh
28757f66-47da-5dac-27a1-4b56ce117878
['418bb604-73dd-c4a3-0db4-748420b9a772']
Hi, I'm am trying to insert data into IndexedTable using MapReduce technique, the MR job run for 3 hrs to insert a dataset into the IndexedTable (note: I haven't successfully inserted the data yet, but the job is completed successfully). When I use the same dataset with HTable, I able to insert aroundd 30 mins. Is there any overhead using MR with IndexedTable? (I understood, the number of Indexes need to be considered in IndexedTable. I got created 3 indexes of different family:qualifiers). Any advices? TIA, <PERSON>
9a8987cb-368c-03a3-2acb-5c99fca7c467
['4195426c-734a-ed73-694e-31caeac2a11c']
Dear all, I will be convening a workshop on the social and political thought of <PERSON> at the MANCEPT Workshops in Political Theory 2013. Please find details of the Workshop below. Would scholars interested in presenting a paper send me their paper proposals by *15 May 2013*? Proposals should be about 200 words. Papers may be on any aspect of <PERSON> work. Topics may include among others: - <PERSON>, <PERSON> and <PERSON>; - <PERSON> refinement of utilitarianism; - What is <PERSON> “one very simple principle”? - What is the major concern of <PERSON> *On Liberty*? - Mill and Socialism. - Mill and Feminism. - Mill and freedom of expression. - <PERSON> and <PERSON>. - <PERSON> and representative government. MANCEPT Workshops have between 3 and 12 paper-givers and, depending on the
9c8e12d8-a416-f9fd-b6fa-2d89a3e7be23
['4195426c-734a-ed73-694e-31caeac2a11c']
Dear all, I will be convening a workshop on the social and political thought of <PERSON> at the MANCEPT Workshops in Political Theory 2013. Please find details of the Workshop below. Would scholars interested in presenting a paper send me their paper proposals by *15 May 2013*? Papers may be on any aspect of <PERSON> work. Topics may include among others:****** - <PERSON>, <PERSON> and <PERSON>;**** - <PERSON> refinement of utilitarianism;**** - What is <PERSON> “one very simple principle”?**** - What is the major concern of <PERSON> *On Liberty*?**** - Mill and Socialism.**** - Mill and Feminism.**** - Mill and freedom of expression.**** - <PERSON> and <PERSON>.**** - J. S. Mill and representative government.**** MANCEPT Workshops have between 3 and 12 paper-givers and, depending on the number of papers, each workshop can have up to 4 sessions which can last 3 and a half hours. Each paper should be up to 30 minutes, upon which usually follows a 30-minute discussion. **** Best Wishes, Evangelia
e139bcaa-56d6-b4e4-cec0-56d2d68eac11
['4195d9cd-9cd6-3a96-250b-5214dff0a295']
Hi All, I am facing an issue in OPAL 2.2.2. I have Multiple connection ( WireLess and LAN) enabled on my computer and I try to Register to Open SER after some time OPAL sends message of Time out and Registration fails. Any Help will be appricated.................. jaffar
b14f828f-7160-d442-e233-979e5565d53f
['4195d9cd-9cd6-3a96-250b-5214dff0a295']
Hi I have not found any help to compile OPAL on window CE. How to compile the OPAL 2.2.4 and Pwlib 1.10.3 on Window CE? Any help will be appreciated...... <PERSON>
9de0ecad-c7df-71f4-c351-7bfe85dfc763
['41b946d3-26f7-83b8-5b88-3dd1ce9a8f8f']
During the Cosmo 0.6 postmortem, we talked about the use of Tinderbox for Cosmo. Basically the Cosmo tinderboxes have fallen into a state of disrepair, and we probably need to take a step back and discuss our goals for using Tinderbox on the Cosmo project. Maybe we could start by having <PERSON> or <PERSON> outline the current state of the world? <PERSON>
ccc8831d-521d-7e1d-8685-0da4ce1ed573
['41b946d3-26f7-83b8-5b88-3dd1ce9a8f8f']
It seems like things are settling down on 0.5 stuff, so I'd like to know if we can schedule the Universal/Magic URL design session for the regular design session slot (2:30-4) next Tuesday, Oct 24. Going over the photoshops that PPD has prepared will help us figure out how to estimate some of the features proposed for 0.6 Ted
b83f96fd-5b73-05b2-18c4-0b61e6c069f6
['41c50025-485d-b586-ce93-dff4fbc1e03f']
Fellow Goanetters, If any of you are near the Toronto area on Saturday July 16th, I'm playing HOLY JOE'S (651 Queen St. West). Just to let you know, I am a Goan-Canadian singer/songwriter who is influcened by Ben Harper, Bob Marley, Duncan Sheik, Ian Thornley and Peter Gabriel. I will be doing a solo set with electric-guitar and stage-piano. There are more details on my site at http://www.nealpinto.com I'm looking forward to seeing you there and please spread the word! :) If anyone would like to contact me directly for more details, please e-mail me at <EMAIL_ADDRESS><PERSON>, <PERSON>, <PERSON>, <PERSON> and <PERSON>. I will be doing a solo set with electric-guitar and stage-piano. There are more details on my site at http://www.nealpinto.com I'm looking forward to seeing you there and please spread the word! :) If anyone would like to contact me directly for more details, please e-mail me at 6NVn9vvaMJMGs2Km@example.com - my address on GOANET receives too much traffic for me to notice individual e-mail. Thanks,
33a2017c-a767-e5f8-547a-e24b37b40431
['41c50025-485d-b586-ce93-dff4fbc1e03f']
Hey... anyone remember that CD I released? Well, I'm planning to spin some tracks and talk about "21:21" on the radio. Monday February 4th, 2008... if you're in Winnipeg, tune into 101.5FM between 6:30PM and 8:00PM CST. If not... listen online at http://www.umfm.com:80/listen_online.shtml in whatever time zone corresponds. It should be fun... please come... listen. <PERSON> http://www.pintomusic.com
a965fc9f-78bc-85fc-1301-9e66b0679571
['41d72c3b-d191-8bee-7cd0-3743de3fc113']
I am writing a script that references a few Java libraries that expect some ".properties" files to be in the classpath. I can set the classpath in the shell before I run the jruby executable, but it would be much nicer if I could dynamically reference the ".properties" files from my script. Does anyone know how you can add a file that *isn't* a class or a jar to your classpath dynamically? Thanks in advance! <PERSON>
f1618614-5e0e-8c68-70da-dfa54db92970
['41d72c3b-d191-8bee-7cd0-3743de3fc113']
I would like to write a Jruby script that starts a timer, tries to complete something, and then fails if it times out. I took at look at the Ruby PLEAC page, and saw that this is typically done using the "timeout" module. That module didn't end up working for me, and I then found out that it using that module with Jruby is *not* recommended. Can anyone please suggest what I should use to set a timer using Jruby? I found the java.util.timer class in Java, but it seems a bit clunky. I was hoping there was something a bit more Ruby-ish. Is there any other class that anyone has had any luck with? Thanks! <PERSON>
528ae944-ff58-1354-5bbe-0cff485374f0
['41dfa95c-8d5d-03f1-b935-01825a9034d8']
Thanks for the Prompt reply. I got a little mixed up with your solution... First of all We are not on the same network so we cant use g711. I wouldn't even know what a cisco looks like, the cisco is what my potential customer is using. Quoting from your reply " For example: codec g729r8 isn't right. You should use something like this: codec g729r8 bytes 40 " So are you saying that G729r8 wont work?? If not do the modifications need to be made on * or on the cisco? What is the best way to make g729 work. Thanks <PERSON>
3008c8e7-924a-08b3-e224-a87023be970a
['41dfa95c-8d5d-03f1-b935-01825a9034d8']
Hi, I know this may not be exactly on the asterisk-biz mailing list but I'm sure someone on here can point me in the right direction or maybe even help me themselves. I am looking for some work to be done. My requirements are as follows. I have a VOIP gateway which outputs text CDR files. I want some kind of script developed to fetch the file 2 or 3 times an hour and have it entered into the MYSQL database. Anyone who thinks they maybe able to do this or anyone who can tell me where to go to get this done plz contact me. Thanks
49cc765c-e507-3993-757c-cecfa0650ed5
['41e7c17d-ec16-9798-68c3-8505df1d9867']
Hello <PERSON>, after preparing an expression (XQConnection.prepareExpression) I would expect that the static context returned by XQPreparedExpression.getStaticContext) is equivalent to the static context used when compiling the expression. However, the list of namespace prefixes (result of 'getNamespacePrefixes') is now extended (prefixes 'err', 'saxon', 'xs', 'xml', 'local', 'fn', 'xsi' added). Five of these correspond to predeclared namespaces (according to the spec), and the remaining two are obviously supplied by the Saxon implementation ('saxon' and 'err'). So these seven prefixes correspond to inscope namespaces, but whether they are returned by 'getNamespacePrefixes' depends on whether the static context object was obtained from the connection or from the expression object. And the same goes for the behaviour of 'getNamespaceURI': using the argument 'xml', for example, the connection's context throws an exception, whereas the expression's context yields the URI. Although all these prefixes can be used in a query without explicit declaration. So we have a real discrepancy between inscope prefixes and the behaviours of 'getNamespacePrefixes' and 'getNamespaceURI'. ( Side effect: it is problematic to check if a prepared expression has been compiled with a namespace context equal to some given namespace context, namely to compare the compile time namespace context with the namespace content currently held by a connection (Problematic in the sense of awkward (one has to ignore the absence/presence of those prefixes) and not portable.) This makes it difficult to manage XQPreparedExpression objects behind the scenes, recompiling them when necessary and reusing them when possible. ) Would it perhaps be possible to avoid this difference of behavior between the static context used to compile and the static context returned by the compilation result? I think the cleanest way would be to let 'getNamespacePrefixes' and 'getNamespaceURI' ALWAYS reflect all namespaces actually in scope. With kind regards, <PERSON>
6e7b1903-6302-d549-1b9c-8e6a6d63d79d
['41e7c17d-ec16-9798-68c3-8505df1d9867']
Hello <PERSON>, may I add a little remark? I urgently await the XQUF and simply cannot understand that your question is not asked by many voices (including mine, until today). I think XQUF is not any more a "facility" than, say, FLOWR expressions or constructors, rather it is - would be - a central part of the language, freeing the user from the obligation to think unnaturally. When some detail in a bathroom must be fixed, we get a hammer and fix it. XQuery 1.0, however, forces to rebuild the house, making sure to incorporate a fixed bathroom. I speak from practical experience with WordML documents. If you want to modify little - but more than an attribute or element with simple content - you tend to run into very error-prone recursion code, maintaining several big typeswitch expressions in parallel, to be chosen from according to context. One might argue that such push processing is a case for XSLT? I would not accept this as a justification for leaving the XQUF out, if only for architectural reasons: I regard XQuery not as a query language, but as a general purpose data processing language, and I see a great perspective in largescale OO/XQ patchworks. In this context, (a) having to pull XSLT into the boat as well and switch between X... and X... considerably enhances complexity, (b) local modification within very complex structures would be among the basic responsibilities of the XQ part. Besides Office documents, XHTML documents, SOAP headers and webservice results would be classic targets. So I think it is a pity that the present point of language development does not emphatically address what seems to me so important, according to project experience as well as theoretical considerations With kind regards -
fac862e6-959f-a641-80be-c09bdbd1b80e
['41ea4f4d-90a7-4ba1-1891-20d0f7649377']
I downloaded the sarge-i386-netinst.iso dated March 22 and attempted an install with it. While setting up network hardware, it successfully detected my sis900 network card, but 'modprobe -v sis900' returned 'cannot find module sis900'. Is there a place where I can add a copy of sis900.o to the install cd so that modprobe can find it? Is this a bug I should report and, if so, where / how? Thanks, <PERSON>
352181a9-27dc-0b77-de81-5f62d9c37b94
['41ea4f4d-90a7-4ba1-1891-20d0f7649377']
I'd like to create a Firefox extension that removes the google search box from firefox and adds Mozilla's "Search Google for" to the urlbar drop down window. I know you can change the standard 'I'm feeling lucky' keyowrd url to http://www.google.com/search?btnG=Google+Search&q=, but this leads to problems when the search string interferes with other keywords, or is an url itself. Does anyone know what components allow this is Mozilla. This is my first attempt at XUL hacking, so I could use some advice on where to start. Thanks, <PERSON>
783caab3-97c4-cd5a-236c-aa40a21e04e7
['4207f0b0-9a2c-9767-2f11-0b79ea54e798']
I used dasdlist to create a 1 cyl 3350 vol with a volser of 'myipl', and added it to the herc.conf file. System comes up, the vol is showing online. I was going to format it, but while editing jcl to do so, started receiving file creation / vtoc errors, etc. I'm guessing the reason for the errors, was that without an explicit volume menioned when I was allocating a new file to edit, that the system was searching for available space and included the unformatted 'myipl' volume in the search ? I did a 'vary 142,offine' and then a 'detach 142 (hercules)' and the errors have stopped. Is the correct procedure to format the volume as soon as the system ipl's, ? - or keep (vary) it offline until it's ready to be formatted, - or somehow otherwise to exclude it from "user" / system access until it's ready to be formatted .. - or use the "standalone" formatting / ipl procedure with only that volume on the system ? Is the procedure any different on Hercules, than with "real" hardware? Error IEC0201 Mike
2c46ee16-d4cd-40c0-f4fc-04911a898d6b
['4207f0b0-9a2c-9767-2f11-0b79ea54e798']
I don't know if this is "normal" or already known, but I found that my print jobs were showing 0 bytes, until I re-assigned the printer to a new destination after each print job. I.e. initial herc.conf shows : 000F 1403 e:/mvs/prt/prt00f.txt .. run print job devinit 0f e:/mvs/prt/newprt00f.txt Or is there a JES command that would normally be used? Is the /prt/<output file> supposed to emulating a printer? .. or a print output queue ? <PERSON>
d4e93c84-5714-1e87-700d-5edf2cb22eae
['422012fa-c071-f0cd-984c-e34dd29a7dbe']
I have just made 8.34-RC1 available for testing here: ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/Testing/pcre-8.34-RC1.tar.gz ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/Testing/pcre-8.34-RC1.tar.bz2 ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/Testing/pcre-8.34-RC1.zip There is quite a bit of new code in this release because the way that "auto-possessification" is done has been re-implemented. Previously, simple cases such as turning a+b into a++b were handled, but now many more cases are recognized. This gives significant performance gains. Credit for the new approach goes to <PERSON>. Other major changes are highlighted in NEWS, and all changes are listed in ChangeLog. Please test this release candidate as much as you can so that we can iron out any problems that it may have. <PERSON>
620e6833-423d-0d10-eb67-fd2ce1e7009e
['422012fa-c071-f0cd-984c-e34dd29a7dbe']
I have just put the tarballs for PCRE2 10.21 here: ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre2-10.21.tar.gz ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre2-10.21.tar.bz2 ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre2-10.21.zip There have been no changes to the code since the 10.21-RC1 release candidate was made available, other than comment updates. The only reported problem with the release candidate was an error in the test files, which has been fixed. This release fixes a lot of obscure bugs, many discovered by fuzzers. There are also extensions to the substitution facility. See NEWS and ChangeLog for details. <PERSON>
97d3a3d3-d0ab-5c02-0a5e-de8d4af1d7de
['4221e7cb-107c-32c1-ef23-487e81d505fc']
Hi all, I got problems running vocal from the CVS, compiled with --with-newprov directive. I noticed there are some settings I should add to let pserver access the Postgre DB, but after tunning up I still get the same problems(I use allinone configuration). When I startup vocal using the standart vocalctl start, it seems there's something wrong - only pserver and gua at 5110 starts properly, all other servers are defunct. There aren't any log files written by the defunct processes. However, I tried to run all the servers manually and all of them succeeded. I notice pserver connects DB and reads users properly. so, if I'm right I have to provision the system configuration data, as feature servers, marshals, etc. using the old provisioning system, but I have to use the DB records to provision the users' data, as well as the dialing rules, including centrexes?! I need to know it, cause when I manage to enter a dialing rule to PSTN gate in the DB, the call fails(however SIP to SIP call came trough). The info from the logs I found is that RS did not found any matching user record. Can anyone provide me some info on how to provision the Postgre records for the vocal to work properly. have a great day Regards, <PERSON>
5a3c2631-d56a-7174-df02-878e5c99a985
['4221e7cb-107c-32c1-ef23-487e81d505fc']
Hi all, I initialized the DB for use with the new pgSQL based provisioning. The pserver communicates properly with DB, I can dial SIP2SIP but the dialing plan fails. It seems it even doesn't make sense to the system configuration, although provisioned the right way in the DB. The call request never reaches GW Marshal I pointed the value from the dialing plan, RS searches and do not discovers any record in the DB as registered endpoint. Any ideas? By the way I discovered the hearthbeat was looking for vocal.secret at /vocal/etcvocal.secret instead of /vocal/etc/vocal.secret, so I copied it there and hbs runs properly(was reporting password incorrect before). Regards, <PERSON>