2,977 Topics

Member Avatar for
Member Avatar for vij_alok

Hi, I have written a perl script which internally calls a java program using the system commands. Now i have to document all what i did. How should i depict the workflow? Should i draw a flowchart separately for the perl script and an activity diagram for the java program …

0
39
Member Avatar for SergioQ

So I've been trying to see if I can write a Facebook app, that uses Perl on my side, and interfaces with people who install the app on their Facebook page. But it's so hard to see if this exists! The Facebook dox, well I am lazy, but they don't …

Member Avatar for KevinADC
0
105
Member Avatar for idbgy

Hi all, I am using MS Windows SP2. I should like to share my positive and negative experience with the PPM (Perl Package Manager) with the community. For a reason I uninstalled Perl from my computer and installed again. After installation only DBI was present, and for Mysql the DBD::mysql …

Member Avatar for idbgy
0
270
Member Avatar for KilluaX

Hi, all What I am trying to do is to put a hyperlink on my jsp page. Then, when I click on the link, I will come to the linked page and as well the page can get some info from the jsp page. How is the code like? thanks.

Member Avatar for missalexa
0
4K
Member Avatar for Vandithar

Hi, I have 3 arrays. [code] @arr=("TDP-43 is a highly conserved, 43-kDa RNA-binding protein implicated to play a role in transcription repression, nuclear organization, and alternative splicing","the major disease protein of several neurodegenerative diseases, including frontotemporal lobar degeneration with ubiquitin-positive inclusions","For the splicing activity, the factor has been shown to …

Member Avatar for Vandithar
0
146
Member Avatar for gp04lch

hi, just added an mdi form into a tabpage with the following code: [CODE]frm_ASN f_New = new frm_ASN(0); f_New.Dock = DockStyle.Fill; f_New.FormBorderStyle = FormBorderStyle.None; f_New.MdiParent = this; this.components = new System.ComponentModel.Container(); ExtremeTabPage tab = new ExtremeTabPage(); tab.Text = f_New.Text; tab.Name = f_New.Name; tab.Controls.Add(f_New); this.Text = "[" + f_New.Text + "]"; …

Member Avatar for gp04lch
0
122
Member Avatar for SNN

I am trying to write a perl script that takes a file with 3 columns, the chromosome position , start base pair position and the end base pair position. The script should pull out all the snps in these regions . I would like to do this use the following …

0
81
Member Avatar for shaybery

This regular expresion is not good !!! --------------------- if ($line=/(.*)=(.*)(#+.*)/){ my ($val,$key,$comment)=($1,$2,$3); print "Match line : key($key)=val($val) c($comment) \n"; } --------------------- Example os inputs and the wanted output : a=b #c => key(a)=val(b) c(#c) a=b => key(a)=val(b) c() a="b#" => key(a)=val("b#") c() a="b#"#ff => key(a)=val("b#") c(#ff) a="b"#"#ff => key(a)=val("b") c(#"#ff) …

Member Avatar for mattjmorrison
0
102
Member Avatar for Samudra2008

Good day, I like so many, am new Perl. I am trying to search a file for a string, if found, pass it to an array. I don't think what I have done is the best way of doing things, but I learn by getting scripts to work and them …

Member Avatar for Samudra2008
0
85
Member Avatar for rastaberry

Greetinmgs, I am a programming greenhorn and I would like to make a programm which will generate a number in the way that first the user will say how many digits the number should have (i.e. 10 000) and will also specify the rules for creating the number- i.e. every …

Member Avatar for rastaberry
0
105
Member Avatar for localp

i am reading a url and inthat i have an array that has stored the value of a string as follows [code] address=no+3%2C+oxford+street in this wat i want is to display the address as "no 3 oxford street" [/code] some one please give me the code to write this as …

Member Avatar for KevinADC
0
90
Member Avatar for GT2010

I have 3 classes, a student class, a studentList class, and a form. The ToString method is implemented in the student class, and a few students have been created and added in the studentList class. In the form, I'd like my current list of students to show up in a …

Member Avatar for ddanbe
0
101
Member Avatar for localp

i want decode a url, can please some one help me [code] http://localhost/cgi-bin/p.pl?Name=jenny&address=oxford+street+&address=Enter+your+working+place+if+any+or+state+%27NO%27&button=SUBMIT [/code] how do i extract the name and other information from this url and save it to a variable. and save it to an array please help i am an absolute beginner

Member Avatar for KevinADC
0
68
Member Avatar for newbietech

<?php $query_getf = "select ci.tb_ci_id, concat(ci.tb_ci_fname, ' ', ci.tb_ci_lname),ci.tb_ci_city, ct.tb_ct_desc, md5(ci.tb_ci_id), s.tb_s_name_full, case ci.tb_ci_addr_2 when '' then ci.tb_ci_addr_1 else concat(ci.tb_ci_addr_1, ', ', ci.tb_ci_addr_2) end, ci.tb_ci_phone_1, ci.tb_ci_phone_2, ci.tb_ci_fax, ci.tb_ci_email FROM tb_contact_info ci, tb_contact_type ct, tb_states s WHERE md5(ci.tb_p_id)='".$fd_p_d['md5_id']."' AND ci.tb_ct_id=ct.tb_ct_id AND ci.tb_s_id=s.tb_s_id ORDER BY ct.tb_ct_desc, ci.tb_ci_date_added"; //print $query_getf; $sth_getf = mysql_query($query_getf); …

Member Avatar for Rhyan
0
97
Member Avatar for it2051229

In C we have what we call dangling pointers where if a pointer is pointing to something else and if that something else is deallocated or removed from memory then the pointer that is pointing to that something else is now a dangling pointer. I've been learning the basics of …

Member Avatar for KevinADC
0
98
Member Avatar for CoolAtt

hi ! does anyone know how to install & use the perl compatible regex (PCRE) api in Bloodshed Dev++ ?

0
93
Member Avatar for ninjaimp

Hi I have a form which adds data to a dataset, which can be viewed in a datagrid as it happens and then they finish and this adds it to the database - but after a short while the data that was added seems to rdissapear ffrom the database! Wondered …

0
85
Member Avatar for cardanadam
Member Avatar for yair7190

Hi, i have the following script: [CODE] #!/bin/perl -w use strict; $ENV{"PATH"} = ".;" . $ENV{"PATH"}; print "Revesing the history file...\n"; print reverse <> history.txt > history_rev.txt; print "Reversing the XpressClients file\n"; print reverse <> XpressClients.txt > Xp_clients.txt; print "Parsing the XpressClients file...\n"; require 'Clients.pl' Xp_clients.txt > clients_file.txt; [/CODE] the …

Member Avatar for yair7190
0
163
Member Avatar for grambo

I'm trying to load some data I download from my real estate system. They have split out the features in a separate file. Here are my 2 files: File1.txt (~25,000 records) |123|Main|St|City|State|1701,1708|800,801|MORE|MORE|ETC| |987|Bailey|Dr|City|State|1702,1708,1717|800,801|MORE|MORE|ETC| File2.txt (~1,300 records) |RES|800|City Sewer| |RES|801|City Water| |RES|1701|1 Car| |RES|1702|2 Car| |CND|1702|2 Car| |RES|1708|Door Opener| |RES|1717|Side Load| …

Member Avatar for eggi
0
94
Member Avatar for idbgy

Hi, I'm new to Perl but I'd like to know more. For this purpose I downloaded the ActivePerl-5.10.0.104-MsWin32 .msi package and installed it on my computer OS XP Home. Xitami, PHP, MySQL were already installed, and PHP can connect to MySQL. Now I run the following code from the command …

Member Avatar for KevinADC
0
326
Member Avatar for ealion
Member Avatar for poojapo

Is it possible to execute Perl code from java script? I have installed apache-tomcat for the same. In which folder should I paste the html file and the Perl file (uses cgi module) ?

Member Avatar for KevinADC
0
82
Member Avatar for Niner710

Hi, I am trying to parse a txt file in C++. I usually use perl to parse thru text files but need to do it in c++. Here is my text file. [code] NAME BITMAPVBIREFE MESSAGE VirginBitMapiIrefE VCCVALUE 3.000000 VIHSELECT 1 VIHVALUE 3.000000 WPSELECT 1 WPARGSELECT 0 WPVALUE 2.600000 [/code] …

Member Avatar for Lerner
0
211
Member Avatar for kaushik259106

Hi Everyone, Can some one tell me is this possible. I want to show a text hiperlink over an image. [URL=http://img371.imageshack.us/my.php?image=texthiperlinkjv3.png][IMG]http://img371.imageshack.us/img371/5936/texthiperlinkjv3.th.png[/IMG][/URL][URL=http://g.imageshack.us/thpix.php][IMG]http://img371.imageshack.us/images/thpix.gif[/IMG][/URL] The image it self wont be hyperlink but only the text over it. Check this attached image. Need some thing like this.. Thanks,

Member Avatar for essential
0
118
Member Avatar for ko_cjun

hello everyone! i'm trying to display a text from my database, that part is already fine but when the value of the text has a - or ' (maybe there's more) in it, instead of displaying the actual - or ' it displays other special char like smileys and stuff. …

Member Avatar for cadillacwd
0
109
Member Avatar for Panarchy

Hello I [B]have[/B] to learn C++ and how to code GUIs (for a new programming language). I need to be able to learn all this within a month. I have a little bit of experience (tiny bit of PERL, and tiny bit of Python... also a tiny bit of CSS …

Member Avatar for Panarchy
0
101
Member Avatar for reno02

I have a script that needs to have the email acknowledgment sent to the email that the customer gives. However, when doing it, it doesn't work when I test it. Can anyone view this and let me know if I am mising something. I have changed a few things to …

Member Avatar for reno02
0
125
Member Avatar for DaniWeb4Jim

I had trouble with ZoneAlarm so I uninstalled it. Not uninstalled and can not remove it to turn Windows Firewall on. So, Oh it gets better. Thinking I would get help by installing a new firewall (NOT), I installed COMODO Firewall. No they are both active by SSoftware and the …

Member Avatar for DaniWeb4Jim
0
264
Member Avatar for CathShadow

Well, to give some background on the app, it's a program (service) that runs in a loop, collects data about the PC its running on (users connected, CPU load, network traffic) etc. It then opens "plink" and sends the XML data accross to a perl file which processes and inserts …

0
46
Member Avatar for daFool

[B]Now playing:[/B] AC/DC Black Ice [B]Now reading:[/B] Wikinomics [B]Now browsing:[/B] Fedora 9/Firefox 3.0.2/Gnome [B]Editors/IDES/tools used today:[/B] Vi, Gedit, Emacs, Bluefish, Visual Studio (BizTalk), Notepad, DBVisualizer 6.1, Xlint, xsltproc, Microsoft SQL Server Management Studio [B]Languages used today:[/B] TSQL, Bash, XSLT, XML, pgsql [B]Operating systems used today:[/B] Windows 2003 (64/32 bit), RHEL …

Member Avatar for jbennet
0
167
Member Avatar for Narayanank

when i ran a perl script on xampp i got this error [B]The server encountered an internal error and was unable to complete your request. Error message: Premature end of script headers: sai2.pl If you think this is a server error, please contact the webmaster. [/B]

Member Avatar for haonamdaica
0
102
Member Avatar for todd8670

looking for a Python/Django Developer in Jersey City NJ. Beloqw is the job description Job Summary: This is a programming position in the technical department of Advance Internet, working on application development, application integration, automated testing and deployment of applications, publishing structure and unit testing in various development environments. Job …

0
57
Member Avatar for iamtuxmeister

I am new to the world of compiled programming languages. I do most of my work with Perl and bash scripting. I was recently asked to pursue a listener to the Asterisk Manager Interface that will be able to pull out caller ID information based on the extension that the …

Member Avatar for Salem
1
252
Member Avatar for mruane

I just downloaded ActivePerl, hoping it was some kind of IDE for perl. I run windows XP service pack 3 on this box. My Linux Box has perl already installed, but I want to use perl on my windows box as well. I know nothing about perl, so do I …

Member Avatar for orko
0
138
Member Avatar for annie_singh

Hello, I am a beginner in perl. I am stuck with a problem. I have an array which looks like this 6.324 32.707 50.379 5.197 32.618 46.826 4.020 36.132 46.259 7.131 38.210 45.919 6.719 38.935 42.270 2.986 39.221 41.892 -0.269 37.184 41.565 `Inline Code Example Here` These are the X, …

Member Avatar for KevinADC
0
864
Member Avatar for it2051229

Hello, i'm interested on learning the PERL language and I do not have any idea on the installation and what really PERL does although i've made research but still confused. Is PERL for the WEB like PHP? or it is like C for creating executable applications?.. I have E-books of …

Member Avatar for KevinADC
0
179
Member Avatar for reno02

Hello: I am a newbie and need help with a celsius to fahrenheit script. If anyone can help, it would be greatly appreciated. Right now, it comes back with the error Here is my HTML code: <!xxxx.html> <HTML> <HEAD><TITLE>XXXXX Temperature Conversion</TITLE></HEAD> <BODY> <H3>Use this form to convert a temperature.</H3><BR /> …

Member Avatar for KevinADC
0
98
Member Avatar for arunprakash647

Hi i am new to perl. i just got an error when i exceuted the perl script which is as folows: Day '' out of range 1...31 in C:\..... in line 87 and the code around line 87 is: sub get_unix_timestamp { my ($date,$time) = @_; my $mday = substr($date,0,2); …

Member Avatar for KevinADC
0
691
Member Avatar for akshay144

Hi All Please help me with the following code, it works fine when i enter 1234567890 but goes mad when i enter one more digit i.e 12345678901. It keeps on looping and displays infinitely:- "Invalid Input. Please try again.!!" How can i fix/correct this? Any help will be appreciated! [code=cplusplus] …

Member Avatar for Sci@phy
0
133
Member Avatar for kkarimi

I'm developing an application that sends emails to customers. The body of the email contains a URL encoded hyperlink back to our site kind of like this: [url]http://myserver/myfolder/test.cfm?id=%409%20%2DW9I74%3D%402%5CN8%2A5%3D%3D5%2D%40%3C%3D%3DQ%5B%40%3AB%5D2Q%2B%2BN%3C44%3A3%3E3%3C%20%0A[/url] In Yahoo, GMail, Outlook, etc. the link works fine. However Hotmail is decoding the link before it sends: http://myserver/myfolder/test.cfm?id=@WUE^[MA6 9J?%3D5B%258D^K5@^%2BD<;5U) '((OZ<,%2BFU%25( Anyone …

Member Avatar for buddylee17
0
242
Member Avatar for consultant1027

I've got a Perl program that is returning an incomplete result set. I can output the mySQL call that Perl is executing. In the perl program it gets less records back than if I copy and paste the statement into phpMyAdmin and execute it. Statement Example: SELECT brand,name,collection,dept FROM models2 …

Member Avatar for consultant1027
0
142
Member Avatar for samuelo

Hi i did a shell script. This script is configuration for voip gw's. But i dont upload this output file ( example = ****.ini ) from gw with telnet and commands. how do i need ? This script must be telnet and put confguration mean must read my output file …

Member Avatar for KevinADC
0
97
Member Avatar for it2051229

I'm new in perl although i'm an experienced programmer on the c language and its successors. I learned that perl borrowed some concepts in C so i bothered learning it. i'm trying to solve this palindrome thing. In C we have the isalpha() function which PERL doesn't have. Is there …

Member Avatar for KevinADC
0
58
Member Avatar for Babidi

Dear community, I am not so good at Linux, but I have some problems: What I want is just a Complete Email Server for Mass Mail distribution to my Customers. I have purchased a VPS (Virtual Dedicated Server) with Webmin. I have Installed Vsftpd, Postfix, Dovecot, Spam Assassin, Clav AV, …

0
116
Member Avatar for talk2mishal

Hi, As i m newbie for the Perl With Html Button. The scenario is like this: [list]I have HTML button in the perl Script. [/list] [list]I have to get the Data of Enable checkbox Data using the button click event in perl [/list] [list]And I have to copy/cut that Enable …

Member Avatar for KevinADC
0
97
Member Avatar for aanya

Iam new to perl. This is my problem. I have calculated the distance using the formula my $distance = sqrt(($x2 - $x1)**2 + ($y2 - $y1)**2 + ($z2 - $z1)**2); and the value of $distance looks like this: 3.72851967944384 5.83210433720111 7.12922562414741 10.2322964186931 11.2073015931579 11.882666956538 14.4465118281196 16.0581479006765 17.2278339903773 Now I have …

Member Avatar for aanya
0
134
Member Avatar for joecheriross

Is there any method to handle minimize event in Tk when minimize button is being pressed, like we handle close with onDestroy(). Regards, Joe.

Member Avatar for joecheriross
0
36
Member Avatar for perltoday

hi, Is it possible to read 2 or more files and getting data out of them simultaneously? can I know the perl format for that

Member Avatar for KevinADC
0
120
Member Avatar for PPP1

The End.