PDA

View Full Version : Perl Misc


Pages : 1 2 3 [4] 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78

  1. FAQ 8.40 How do I avoid zombies on a Unix system?
  2. How do I pass values from a .pl to a .pm.
  3. FAQ 4.11 How do I get a random number between X and Y?
  4. FAQ 3.25 Where can I learn about CGI or Web programming in Perl?
  5. FAQ 5.41 How do I traverse a directory tree?
  6. FAQ 5.30 How can I read in a file by paragraphs?
  7. FAQ 5.24 All I want to do is append a small amount of text to the end of a file. Do I still have to use locking?
  8. how about for(<>){...} instead of while(<>){...}
  9. FAQ 4.12 How do I find the day or week of the year?
  10. FAQ 4.73 How do I determine whether a scalar is a number/whole/integer/float?
  11. strange behaviour w.r.t get function
  12. FAQ 9.14 How do I make sure users can't enter values into a form that cause my CGI script to do bad things?
  13. FAQ 6.11 How do I use a regular expression to strip C style comments from a file?
  14. FAQ 6.7 How can I make "\w" match national character sets?
  15. pattern matching and abstract functions
  16. FAQ 8.21 Where do I get the include files to do ioctl() or syscall()?
  17. FAQ 3.7 How do I cross-reference my Perl programs?
  18. two attempts at DBI connect call
  19. FAQ 5.33 How do I do a "tail -f" in perl?
  20. Search script to index dynamic pages
  21. FAQ 8.27 What's wrong with using backticks in a void context?
  22. FAQ 4.5 How do I convert between numeric representations/bases/radixes?
  23. FAQ 8.20 How can I call my system's unique C functions from Perl?
  24. FAQ 5.31 How can I read a single character from a file? From the keyboard?
  25. FAQ 9.12 How do I put a password on my web pages?
  26. FAQ 4.63 Why don't my tied hashes make the defined/exists distinction?
  27. FAQ 7.18 How can I access a dynamic variable while a similarly named lexical is in scope?
  28. FAQ 5.19 How can I open a file with a leading ">" or trailing blanks?
  29. FAQ 8.47 How do I keep my own module/library directory?
  30. FAQ 7.4 How do I skip some return values?
  31. FAQ 8.17 How can I measure time under a second?
  32. FAQ 6.15 How can I print out a word-frequency or line-frequency summary?
  33. FAQ 2.3 I don't have a C compiler. How can I build my own Perl interpreter?
  34. FAQ 5.42 How do I delete a directory tree?
  35. Problem
  36. FAQ 5.40 Why do I get weird spaces when I print an array of lines?
  37. How to avoid searching this folder?
  38. FAQ 1.11 When shouldn't I program in Perl?
  39. Perl drops first argv[0] parameter when being called via execv()
  40. FAQ 4.30 How do I capitalize all the words on one line?
  41. writing to different offsets of a file in parallel
  42. FAQ 4.49 How do I process/modify each element of an array?
  43. hash of hashes
  44. FAQ 4.15 How can I take a string and turn it into epoch seconds?
  45. FAQ 4.53 How do I manipulate arrays of bits?
  46. FAQ 2.1 What machines support perl? Where do I get it?
  47. Perl script running external command
  48. FAQ 8.38 How do I timeout a slow event?
  49. FAQ 8.15 How do I set the time and date?
  50. FAQ 5.17 Why do I sometimes get an "Argument list too long" when I use <*>?
  51. File::Slurp 9999.14 is released
  52. using File::Find
  53. FAQ 1.7 How stable is Perl?
  54. polling TCP server on Win32 (with Tk)
  55. How to pass arguments to perl
  56. Parsing some pdf files failed
  57. variable/subroutine visibility
  58. Data::Dumper vs. UTF-8, as usual
  59. Fetching SQL boolean values with Perl DBI?
  60. FAQ 8.43 How do I open a file without blocking?
  61. FAQ 5.35 How do I close a file descriptor by number?
  62. List assignment to array affects scalar results
  63. FAQ 9.9 How do I automate an HTML form submission?
  64. reading .ini file without using a module
  65. module for MSCRM?
  66. FAQ 8.16 How can I sleep() or alarm() for under a second?
  67. C Compiler question
  68. FAQ 3.16 How can I make my Perl program take less memory?
  69. FAQ 5.29 How can I read in an entire file all at once?
  70. FAQ 4.71 How can I check if a key exists in a multilevel hash?
  71. Hash
  72. recursive Pythagorian triples
  73. attn new users: IGNORE PREVIOUS MESSAGE
  74. FAQ 9.2 My CGI script runs from the command line but not the browser. (500 Server Error)
  75. array not printing what I want
  76. FAQ 5.3 How do I count the number of lines in a file?
  77. FAQ 7.26 How can I find out my current or calling package?
  78. FAQ 4.60 How do I sort a hash (optionally by value instead of key)?
  79. FAQ 3.20 How can I hide the source for my Perl program?
  80. FAQ 9.19 How do I return the user's mail address?
  81. FAQ 3.18 How can I free an array or hash so my program shrinks?
  82. FAQ 2.2 How can I get a binary version of perl?
  83. FAQ 6.19 Why does using $&, $`, or $' slow my program down?
  84. convenient module to take statistics for hashed structures?
  85. FAQ 8.24 Why can't I get the output of a command with system()?
  86. DBD::mysql used to take octets into the utf8 texts but no more inmariadb
  87. FAQ 4.33 How do I pad a string with blanks or pad a number with zeroes?
  88. FAQ 4.59 How can I know how many entries are in a hash?
  89. FAQ 4.74 How do I keep persistent data across program calls?
  90. FAQ 8.34 I {changed directory, modified my environment} in a perl script. How come the change disappeared when I exited the script? How do I get my changes to be visible?
  91. FAQ 8.25 How can I capture STDERR from an external command?
  92. FAQ 8.10 How do I read and write the serial port?
  93. FAQ 7.30 What does "bad interpreter" mean?
  94. How to suppress non fatal messages
  95. FAQ 5.22 Why can't I just open(FH, ">file.lock")?
  96. FAQ 4.45 How do I find the first array element for which a condition is true?
  97. What do you use with Perl for GUI programming and why?
  98. FAQ 7.15 How can I pass/return a {Function, FileHandle, Array, Hash, Method, Regex}?
  99. FAQ 8.2 How come exec() doesn't return?
  100. FAQ 3.27 Where can I learn about linking C with Perl?
  101. FAQ 2.7 Is there an ISO or ANSI certified version of Perl?
  102. FAQ 5.38 Why does Perl let me delete read-only files? Why does "-i" clobber protected files? Isn't this a bug in Perl?
  103. FAQ 4.56 How do I merge two hashes?
  104. how to remove the string part between the two marks
  105. FAQ 3.29 When I tried to run my script, I got this message. What does it mean?
  106. FAQ 9.21 How do I use MIME to make an attachment to a mail message?
  107. Who is on Stack Overblow . com?
  108. FAQ 8.9 How do I ask the user for a password?
  109. FAQ 2.9 What are the Perl newsgroups on Usenet? Where do I post questions?
  110. perl reg expression help.
  111. FAQ 9.16 How do I decode a CGI form?
  112. FAQ 7.23 How do I create a switch or case statement?
  113. "getting" a website
  114. FAQ 2.6 What modules and extensions are available for Perl? What is CPAN? What does CPAN/src/... mean?
  115. FAQ 8.1 How do I find out which operating system I'm running under?
  116. FAQ 4.70 How can I use a reference as a hash key?
  117. FAQ 5.11 How can I set up a footer format to be used with write()?
  118. FAQ 4.22 How do I expand function calls in a string?
  119. FAQ 8.7 How do I clear the screen?
  120. FAQ 3.10 Is there an IDE or Windows Perl Editor?
  121. FAQ 4.51 How do I permute N elements of a list?
  122. FAQ 8.46 What's the difference between require and use?
  123. FAQ 4.3 Why isn't my octal data interpreted correctly?
  124. FAQ 3.4 How do I find which modules are installed on my system?
  125. FAQ 3.23 Can I write useful Perl programs on the command line?
  126. FAQ 1.16 How can I convince others to use Perl?
  127. FAQ 3.6 How do I profile my Perl programs?
  128. FAQ 3.15 How can I make my Perl program run faster?
  129. How to create an OO spreadsheet?
  130. FAQ 8.3 How do I do fancy stuff with the keyboard/screen/mouse?
  131. LWP::Simple went haywire this morning
  132. FAQ 4.61 How can I always keep my hash sorted?
  133. FAQ 6.20 What good is "\G" in a regular expression?
  134. Perl sort different from unix sort
  135. Readline question
  136. FAQ 2.11 Perl Books
  137. FAQ 3.13 How can I use curses with Perl?
  138. FAQ 4.6 Why doesn't & work the way I want it to?
  139. Can't locate Expect.pm
  140. FAQ 8.50 What is socket.ph and where do I get it?
  141. FAQ 8.11 How do I decode encrypted password files?
  142. hash key
  143. FAQ 8.49 How do I add a directory to my include path (@INC) at runtime?
  144. FAQ 2.8 Where can I get information on Perl?
  145. How can you do different things on certain lines in a text filedivided by separators?
  146. Regular Expressions: Greedy Matching
  147. FAQ 1.12 What's the difference between "perl" and "Perl"?
  148. FAQ 4.41 How can I remove duplicate elements from a list or array?
  149. FAQ 7.9 How do I create a module?
  150. Perl
  151. FAQ 7.24 How can I catch accesses to undefined variables, functions, or methods?
  152. Hash array with variable size?
  153. FAQ 7.20 Why doesn't "my($foo) = <FILE>;" work right?
  154. FAQ 6.16 How can I do approximate matching?
  155. FAQ 4.36 How can I expand variables in text strings?
  156. going from CPAN to RPM
  157. FAQ 1.4 What are Perl 4, Perl 5, or Perl 6?
  158. FAQ 4.27 How can I access or change N characters of a string?
  159. FAQ 9.7 How do I make an HTML pop-up menu with Perl?
  160. FAQ 5.43 How do I copy an entire directory?
  161. FAQ 7.3 Do I always/never have to quote my strings or use semicolons and commas?
  162. FAQ 4.78 How do I pack arrays of doubles or floats for XS code?
  163. FAQ 4.65 How can I get the unique keys from two hashes?
  164. matching '?' in a string ending with digits
  165. FAQ 8.42 How do I make a system() exit on control-C?
  166. FAQ 4.8 How do I perform an operation on a series of integers?
  167. FAQ 4.32 How do I strip blank space from the beginning/end of a string?
  168. FAQ 6.1 How can I hope to use regular expressions without creating illegible and unmaintainable code?
  169. FAQ 9.8 How do I fetch an HTML file?
  170. FAQ 5.2 How do I change, delete, or insert a line in a file, or append to the beginning of a file?
  171. Can't get command line perl to work right
  172. FAQ 5.6 How can I copy a file?
  173. FAQ 4.16 How can I find the Julian Day?
  174. FAQ 6.4 How do I match XML, HTML, or other nasty, ugly things with a regex?
  175. Removing empty tags
  176. newsgroups on perl
  177. FAQ 6.23 How can I match strings with multibyte characters?
  178. FAQ 9.23 How do I find out my hostname, domainname, or IP address?
  179. FAQ 4.52 How do I sort an array by (anything)?
  180. FAQ 8.12 How do I start a process in the background?
  181. FAQ 7.8 How do I declare/create a structure?
  182. passing (and getting) references to/from functions
  183. FAQ 2.5 I grabbed the sources and tried to compile but gdbm/dynamic loading/malloc/linking/... failed. How do I make it work?
  184. FAQ 3.19 How can I make my CGI script more efficient?
  185. grab posted data
  186. Imager module with GIFs
  187. Ruby on rails training for Perl developers
  188. FAQ 7.29 How can I use a variable as a variable name?
  189. FAQ 7.6 What's an extension?
  190. FAQ 4.62 What's the difference between "delete" and "undef" with hashes?
  191. books on perl
  192. Telnet to cisco
  193. FAQ 6.22 What's wrong with using grep in a void context?
  194. FAQ 4.20 How do I unescape a string?
  195. FAQ 8.5 How do I read just one key without waiting for a return key?
  196. Please help me how is easiest way to extract text between some variable text
  197. FAQ 6.8 How can I match a locale-smart version of "/[a-zA-Z]/"?
  198. arithmetic persistence
  199. FAQ 8.44 How do I tell the difference between errors from the shell and perl?
  200. FAQ 3.30 What's MakeMaker?
  201. FAQ 9.25 How do I fetch/put an FTP file?
  202. FAQ 7.11 How do I create a class?
  203. FAQ 7.2 What are all these $@%&* punctuation signs, and how do I know when to use them?
  204. FAQ 8.37 How do I find out if I'm running interactively or not?
  205. FAQ 1.5 What was Ponie?
  206. FAQ 4.42 How can I tell whether a certain element is contained in a list or array?
  207. FAQ 4.28 How do I change the Nth occurrence of something?
  208. List Separator $, behaving oddly
  209. FAQ 9.5 How do I extract URLs?
  210. FAQ 5.7 How do I make a temporary file name?
  211. FAQ 2.4 I copied the perl binary from one machine to another, but scripts don't work.
  212. FAQ 4.76 How do I define methods for every class/object?
  213. Strategies for modifying marked-up text?
  214. FAQ 8.45 How do I install a module from CPAN?
  215. FAQ 5.27 How do I set a file's timestamp in perl?
  216. FAQ 5.25 How do I randomly update a binary file?
  217. FAQ 3.5 How do I debug my Perl programs?
  218. FAQ 4.77 How do I verify a credit card checksum?
  219. Regex question; match <br> after opening tag
  220. FAQ 4.72 How do I handle binary data correctly?
  221. FAQ 1.2 Who supports Perl? Who develops it? Why is it free?
  222. FAQ 1.1 What is Perl?
  223. FAQ 7.22 What's the difference between calling a function as &foo and foo()?
  224. FAQ 7.16 How do I create a static variable?
  225. FAQ 7.1 Can I get a BNF/yacc/RE for the Perl language?
  226. Subroutine exec redefined warning with perl 5.12.2
  227. FAQ 6.21 Are Perl regexes DFAs or NFAs? Are they POSIX compliant?
  228. FAQ 8.8 How do I get the screen size?
  229. How to use (??{code}) correctly in foreach loop?
  230. FAQ 1.5 What was Ponie?
  231. FAQ 4.72 How do I handle binary data correctly?
  232. FAQ 7.10 How do I adopt or take over a module already on CPAN?
  233. FAQ 3.20 How can I hide the source for my Perl program?
  234. FAQ 4.10 Why aren't my random numbers random?
  235. FAQ 7.8 How do I declare/create a structure?
  236. FAQ 4.35 How do I find the soundex value of a string?
  237. FAQ 2.1 What machines support perl? Where do I get it?
  238. FAQ 6.20 What good is "\G" in a regular expression?
  239. perl sorting
  240. data transformation, Perl and MicroSoft
  241. FAQ 4.25 How do I expand tabs in a string?
  242. FAQ 8.7 How do I clear the screen?
  243. Hashes are good, but not good enough.
  244. FAQ 5.38 Why does Perl let me delete read-only files? Why does "-i" clobber protected files? Isn't this a bug in Perl?
  245. FAQ 6.11 How do I use a regular expression to strip C style comments from a file?
  246. How to exclude action of Find::Find::find in subdirectories withknown names?
  247. How to exclude action of Find::Find::find in subdirectories withknown names?
  248. FAQ 3.10 Is there an IDE or Windows Perl Editor?
  249. table --> pre?
  250. ParseExcel $font->{Color} Question?