2
votes
5answers
86 views
Checking if a website is up via Python
By using python, how can I check if a website is up? From what I read, I need to check the "HTTP HEAD" and see status code "200 OK", but how to do so ?
Cheers
Related
How do you send a HEAD HTTP …
1
vote
1answer
15 views
Luabind class deriving problem (memory ‘leak’)
Using luabind 0.81
Simple test to illustrate the problem:
1)
class 'A'
function A:__init()
print('A init\n')
end
function A:__finalize()
print('A finalize\n')
end
do
local obj = A()
…
0
votes
0answers
100 views
using ssh to reboot a computer when it is hung [closed]
Hello,
I have a computer running tests, sometimes during a test it will freeze. I was thinking of writing a shell script to ping the test machine and if it is hung reboot it.
I ssh into the test …
1
vote
1answer
62 views
cURL Download Progress in PHP not working ?
Hi,
I am a PHP newbie and trying to add a progress-bar to an existing PHP script using the following method :
$ch=curl_init() or die("ERROR|<b>Error:</b> cURL Error");
curl_setopt($ch, …
1
vote
3answers
122 views
How to execute python scripts in windows?
I have a simple script blah.py:
import sys
print sys.argv[1]
If I execute my script by:
python c:/..../blah.py argument
It prints argument but if I execute script by:
blah.py argument
error …
0
votes
2answers
47 views
Strange program call error
I have a problem. I have made a script to convert a given HTML page (url) to a given jpg file using html2image:
#!/bin/sh
cd /absolute/path/html2imagev3
LD_LIBRARY_PATH=.:/usr/lib:$LD_LIBRARY_PATH …
2
votes
4answers
33 views
Can’t get MySQL source query to work using Python mysqldb module
I have the following lines of code:
sql = "source C:\\My Dropbox\\workspace\\projects\\hosted_inv\\create_site_db.sql"
cursor.execute (sql)
When I execute my program, I get the following …
0
votes
2answers
36 views
Passing variable from shell script to sql statement
I was trying to make cat1.txt as a variable ($2) so that it will be inserted in sql select statement. Is there a way to do this?
my cat1.txt
1111
2334
2234
3333
4444
....
....
etc.
my SQL …
2
votes
8answers
141 views
What’s the best way to debug third-party Perl script?
I have a Perl script that gives a completely useless error message, is there a way to get perl to give a stack trace when the error occurs? I tried it this way but it did not work:
# Run command in …
3
votes
4answers
45 views
Can script.readyState be trusted to detect the end of dynamic script loading?
I use dynamic script loading to reduce the duration of the initial page load. To ensure that the functions and objects defined by a script are accessible, I need to ensure that the script has been …
1
vote
2answers
67 views
F# Generate SQL from CSV
I have recently been learning F# and functional programming. One application I have found very useful is generating SQL inserts for a data load from a CSV (or excel table) with some associated ID's.
…
-1
votes
2answers
74 views
Php script to javascript
I am trying to write something similar in javascript
function Spin($txt){
$test = preg_match_all("#\{(.*?)\}#", $txt, $out);
if (!$test) return $txt;
$toFind = Array();
$toReplace = Array();
…
0
votes
6answers
84 views
simple encryption tutorial?
I'm looking for a simple encryption tutorial, for encoding a string into another string. I'm looking for it in general mathematical terms or psuedocode; we're doing it in a scripting language that …
3
votes
2answers
80 views
Difference between launching a script with ./script.sh and . ./script.sh
Please tell me what is the difference in bash shell between launching a script with
./script.sh and . ./script.sh?
0
votes
0answers
12 views
Extract embedded PDF fonts to an external ttf file using some utility or script
Is it possible to extract fonts that are embedded in a PDF file to an external ttf file using some utility or script?
If the fonts that are embedded (or not embedded) to a PDF file are present in …
