Tagged Questions

A small program written to be read and executed by a command interpreter or another scripting language.

learn more… | top users | synonyms

15
votes
1answer
3k views

Chrome extension: accessing localstorage in content script

So, i have an options page where the user can define certain options and it saves it in localstorage: options.html Now, i also have a content script that needs to get the options that were defined on ...
14
votes
9answers
288 views

how to make this “action-packed, random data” being echoed in a terminal?

OK, this isn't really a question to achieve anything practical, but still it is a serious question and I hope it will be taken seriously and mods won't punish me for this :) I'm sure majority of you ...
13
votes
3answers
234 views

How do I change the color of my Terminal.App when I log into my production remote on Heroku?

I remember there was an article, or a few, going around about how the author changes the color of the terminal from green (for development) to red (for production) based on the SSH address. But I am ...
11
votes
6answers
389 views

Is the 'type' attribute necessary for <script> tags?

I've seen both this: <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js'></script> and this: <script type='text/javascript' ...
10
votes
4answers
679 views

WHat are the pros and cons of RemObjects PascalScript versus the DWS script?

I'm planning to include a pascal script in my application. It does not require any web access, simply access to classes in my Application. It should be fast (compiled). I see that there are a number ...
9
votes
2answers
81 views

My div does not exists after loading my pixel

I have a pixel and when I load it, it says: a call to document.write() from an asynchronously-loaded external script was ignored and then displays: document.getElementById('gospixel') is null ...
9
votes
2answers
1k views

Auto increment version code in Android app

is there a way to auto-increment the version code each time you build an Android application in Eclipse? According to http://developer.android.com/guide/publishing/versioning.html, you have to ...
9
votes
2answers
146 views

why are end tags somtimes required and sometimes not?

very basic question, but i haven't found an answer for it... why do some html opening/start tags require a closing/end tag? for example, <script> requires a </script>, while <img> ...
9
votes
3answers
568 views

How to split a huge folder?

We have a folder on Windows that's ... huge. I ran "dir > list.txt". The command lost response after 1.5 hours. The output file is about 200 MB. It shows there're at least 2.8 million files. I know ...
9
votes
2answers
281 views

sending password to command line tools

i'm writing a python application that uses a command line utility (propietary so it can't be modified) to do part of its work. The problem is that I have to pass the password as a command line ...
9
votes
6answers
315 views

XSS prevention. Handling <script is enough?

I was wondering if checking for and removing "<script" from text entry fields would be enough to stop javascript code injection attacks?
7
votes
4answers
151 views

Is there a performance gain in including <script> tags as opposed to using eval?

I have seen a lot of suggestions about how one should add code dynamically like so (source): var myScript = document.createElement("script"); myScript.setAttribute("type","text/javascript"); ...
7
votes
2answers
145 views

Split 95mb JSON array into smaller chunks?

I exported some data from my database in the form of JSON, which is essentially just 1 [list] with a bunch (900K) of {objects} inside it. Trying to import it on my production server now, but I've got ...
7
votes
2answers
2k views

How exactly does <script defer=“defer”> work?

I have a few code blocks and some of them depend on other ones. I saw the defer attribute can come in handy here as it allows code blocks to be postponed in execution. To test it I executed this on ...
7
votes
2answers
1k views

Is it possible to pass a variable into a Windows FTP script file?

I have a batch script that dynamically creates some files and generates four files with somewhat random filenames based on the time, date, etc. It then needs to upload that file to a server via FTP. ...
7
votes
1answer
119 views

Why doesn't jQuery UI see jQuery?

I've built a JavaScript widget that must be embeddable on any third-party site, in any environment. The widget relies on jQuery and jQuery UI. I followed the steps in How to embed Javascript widget ...
6
votes
1answer
153 views

Access website - WWW::Mechanize

I try to use the code as below to get the website htm source and it works. However, I cannot get the result when I visit the website ...
6
votes
2answers
152 views

A Haskell interpreter /w type definitions

Is there a Haskell interpreter that accepts type definitions or preferably all kinds of statements? I've already tried ghci and hugs and none of these does that. Is there some particular reason that ...
6
votes
4answers
166 views

When scripting, what's the difference between #!/usr/bin/perl and #!/usr/bin/env perl?

Obviously this applies equally with python, bash, sh, etc substituted for perl! Quentin's answer below was clearly correct, and so I've accepted it, but I guess what I actually meant was 'what are ...
6
votes
3answers
187 views

Library to create forms/GUIs/dialogs from scripts?

At the moment, whenever I need a custom dialog, however simple, I use Delphi's form designer to create a new dialog form. The form is then wrapped in an easy to use ShowMessage() type function. In ...
6
votes
5answers
289 views

Dollar notation in script languages - why? [closed]

Does anyone know, what is the actual reason behind "dollar variable notation" in some of the scripting languages, i.e. PHP or Perl? Python creators did not find $variable useful, neither do I. Why ...
6
votes
3answers
738 views

Bash script, watch folder, execute command

I am trying to create a bash script that takes 2 parameters a directory and a command, I need to watch this directory for changes and when something has been changed I need to execute the command. I'm ...
6
votes
1answer
376 views

Python script to remove blank pages using pyPDF

I am trying to write a couple of python scripts using pyPDF to split PDF pages into six separate pages, order them correctly (usually printed front and back, so every other page needs to have its ...
6
votes
3answers
173 views

Script for separating implementation from headers in a .h file

Sometimes, when working with small classes, it's a pain in the ass to separate the implementation in a .cpp file, so I put all the code in the header file (kids, don't do this). However, eventually ...
6
votes
5answers
1k views

Rename Files and Directories (Add Prefix)

I would like to add prefix on all folders and directories. Example: I have Hi.jpg 1.txt folder/ this.file_is.here.png another_folder.ok/ I would like to add prefix "PRE_" PRE_Hi.jpg PRE_1.txt ...
6
votes
1answer
535 views

Improving Scala script startup time — client mode?

I'd like to get short Scala scripts running as fast as python scripts do, particularly in terms of script startup time. Can anyone recommend some ways of doing this, that doesn't involve compiling ...
6
votes
2answers
205 views

What if script tag has both “src” and inline script?

I am wondering what if one script tag has both "src" and inline script. I tried below code. <script src="http://yui.yahooapis.com/2.8.1/build/yahoo/yahoo-min.js" type="text/javascript" ...
5
votes
5answers
91 views

What does it mean in linux scripts? #!/usr/bin/python -tt

I know that in the begining of .sh bash scripts is #!/bin/bash which points to the command interpeter executable. But during watching Google Python Class http://www.youtube.com/watch?v=tKTZoB2Vjuk ...
5
votes
1answer
51 views

bash scripting: how to get item name on a radiolist using dialog

i need to make a radiolist in bash script using dialog interface, for example if i have the following list: dialog --backtitle "OS infomration" \ --radiolist "Select OS:" 10 40 3 \ 1 "Linux 7.2" ...
5
votes
13answers
305 views

One JS File for Multiple Pages

I typically put all the JavaScript scripts into one file e.g. scripts.js (the less HTTP request, the better). So, as expected, some scripts are needed for some pages, some aren't. To target a ...
5
votes
1answer
62 views

Tilde for home directory doesn't expand within quotes

This is a very short script I wrote. I'm wondering why it isn't working: #!/bin/bash file="~/Desktop/test.txt" echo "TESTING" > $file The error I get is ./tester.sh: line 4: ~/Desktop/test.txt: ...
5
votes
1answer
107 views

Running Perl-Script from Java (embedded in Perl)

Perl accepts a scipt via STDIN. After pressing CTRL-D perl knows the "End of Script". After doing so, the script is executed. Now my question: I wand to do that from Java. Open Process Perl Copy ...
5
votes
1answer
63 views

Bash: How do I make sub-processes of a script be terminated, when the script is terminated?

The question applies to a script such as the following: Script #!/bin/sh SRC="/tmp/my-server-logs" echo "STARTING GREP JOBS..." for f in `find ${SRC} -name '*log*2011*' | sort --reverse` do ( ...
5
votes
5answers
64 views

How to notify myself when a python script runs into an error or just stops?

I have a python script which runs on Ubuntu and processes the content of a MySQL Database. I want to be informed when the script runs into an unhandled exception or when it is done processing. What ...
5
votes
2answers
134 views

convert time to local time given city/state/country

I'd like to write a function that can convert a time in EST (USEast Standard Time) to a time in another local timezone. The inputs will be "time in EST" in the form 'Y-m-d H:i:s' (i.e. 2011-08-23 ...
5
votes
4answers
278 views

Bash : iterate over list of files with spaces

I want to iderate over a list of files. This list is the result of a find command, so I came up with: getlist() { for f in $(find . -iname "foo*") do echo "File found: $f" # do something ...
5
votes
4answers
150 views

bash scripting de-dupe

I have a shell script. A cron job runs it once a day. At the moment it just downloads a file from the web using wget, appends a timestamp to the filename, then compresses it. Basic stuff. This file ...
5
votes
3answers
53 views

Shell: put data together

I write a shell script to put data together. I have 2 files with different columns. One of the columns is the same on both of the file. Like : File 1: a 5 c 7 d 9 b 5 File 2: c 1 d 8 a ...
5
votes
5answers
543 views

Bash script log file display to screen continuously

I am creating an application that writes to a log file, and I need to know how in Linux / Bash to continuously display the log file to the screen (updating the screen with every new line put into the ...
5
votes
2answers
205 views

Why is loading this file taking so much memory?

Trying to load a file into python. It's a very big file (1.5Gb), but I have the available memory and I just want to do this once (hence the use of python, I just need to sort the file one time so ...
5
votes
4answers
269 views

bash script: how to save return value of first command in a pipeline?

Bash: I want to run a command and pipe the results through some filter, but if the command fails, I want to return the command's error value, not the boring return value of the filter: E.g.: if ...
5
votes
2answers
599 views

Running a script before locking a computer (Windows 7/Vista/XP)

HI Guys, Basically, I've written some powershell which allows me to harness the power of the keyboard media keys to control any music that's currently running. What I want to be able to do is run ...
5
votes
3answers
248 views

Run python script without the “python” keyword

How can I run a python script in Terminal on Mac without using the "python" keyword, without having to edit my existing python files? Right now I have to do this: python script.py What I like to do ...
5
votes
2answers
429 views

Disable Automatic Updates with PowerShell

I would like to know how to disable Automatic Updates with PowerShell on a windows machine. Thanks in advance!
5
votes
2answers
190 views

Running PowerShell scripts as git hooks

Is it possible to run PowerShell scripts as git hooks? I am running git in a PowerShell prompt, which shouldn't make any difference, but I can't seem to get them to work, as the hooks are named ...
5
votes
2answers
188 views

How big is too big for RSS feed XML file?

I'm implementing an RSS feed for a website and I don't understand certain things about the format/size/content of the XML file for the feed. I'm initializing the site with the past data, which runs ...
5
votes
2answers
758 views

Encrypting powershell passwords

I have a powershell script that connects to a MySQL database - Of course this connection needs a password and I would like to encrypt the password in some way, as opposed to storing the password as ...
5
votes
4answers
655 views

How can I check in a bash script if my local git repo has changes or not

there are some scripts that do not work correctly if they check for changes. I tried it like this: VN=$(git describe --abbrev=7 HEAD 2>/dev/null) git update-index -q --refresh ...
5
votes
3answers
2k views

How to automate version code incrementing in AndroidManifest?

I have application which uploaded into Subversion/SVN repo. Is it possible to use script to somehow change application version code stored in AndroidManifest? I mean during/after checkout/update? ...
5
votes
3answers
318 views

What is the best way to include Javascript?

Many of the big players recommend slightly different techniques. Mostly on the placement of the new <script>. Google Anayltics: (function() { var ga = document.createElement('script'); ...

1 2 3 4 5 54