User PabloG - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T05:34:40Zhttp://stackoverflow.com/feeds/user/394http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/272935/does-it-make-sense-to-set-up-a-wiki-at-the-workplace/273296#2732962Answer by PabloG for Does it make sense to set up a wiki at the workplace?PabloG2008-11-07T19:23:38Z2009-12-19T17:28:05Z<p>More lightweight than a wiki, I use <a href="http://en.wikipedia.org/wiki/Google%5FDocs" rel="nofollow">Google Docs</a> to share information between project members.</p>
<p>This way I get an <em>extremely easy</em> way to concurrently access and update relevant data without almost any administrative overhead. When any member of the group updates the information (a spreadsheet or a document, in my case), the rest of the group receive an update notification:</p>
<pre><code>See the changes in your Google Document "<My document>": Click here
member25 made changes from 11/6/08 10:21 PM to 10:23 PM
Values changed (7)
Values deleted
</code></pre>
<p>You can create folders to organize the files, you can search for files (it's Google, after all :) ). I think it worth to mention it as an excellent alternative to an internal wiki.</p>
http://stackoverflow.com/questions/1446891/record-locking-problem-between-linux-and-windows0Record locking problem between linux and WindowsPabloG2009-09-18T21:22:45Z2009-12-03T23:00:02Z
<p>I need to run a bunch of old DOS FoxPro / Clipper applications in linux under DOSEMU.
The programs access their "databases" located on a network server (could be a Windows or
Linux server)</p>
<p>Actually, the programs ran fine, but I cannot manage to make the record locking work
as supposed: I can run a program in two terminals (or the server and any terminal for
instance) and lock the same record in both.</p>
<p>Now, I'm using Tiny Core Linux as terminal and Windows XP as server, accesing the shared
files via CIFS and the latest DOSEMU (1.4.0), but I tried with various combinations of
server (Ubuntu 7 to 9, Damn Small Linux, XP) <-> protocol (CIFS, samba, various versions of smbclient) <-> client (same as server) with no luck</p>
<p>I tried to configure the server part to work without oplocks in samba (after reading the entire O'Reilly Samba book locking chapter in <a href="http://oreilly.com/catalog/samba/chapter/book/ch05_05.html" rel="nofollow">http://oreilly.com/catalog/samba/chapter/book/ch05_05.html</a> ) and in XP (\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters\UseOpportunisticLocking = 0) but the problem persist.</p>
<p>Any ideas?</p>
<p>TIA,
Pablo</p>
http://stackoverflow.com/questions/72090/how-to-implement-dom-ready-event-in-a-greasemonkey-script4How to implement "DOM Ready" event in a GreaseMonkey script?PabloG2008-09-16T13:20:58Z2009-10-12T21:30:49Z
<p>I'm trying to modify my GreaseMonkey script from firing on window.onload to window.DOMContentLoaded, but this event never fires.</p>
<p>I'm using FireFox 2.0.0.16 / GreaseMonkey 0.8.20080609</p>
<p><a href="http://stackoverflow.com/questions/59205/enhancing-stackoverflow-user-experience">This</a> is the full script that I'm trying to modify, changing:</p>
<pre><code>window.addEventListener ("load", doStuff, false);
</code></pre>
<p>to</p>
<pre><code>window.addEventListener ("DOMContentLoaded", doStuff, false);
</code></pre>
http://stackoverflow.com/questions/260273/most-efficient-way-to-search-the-last-x-lines-of-a-file-in-python/260352#26035211Answer by PabloG for Most efficient way to search the last x lines of a file in pythonPabloG2008-11-03T23:40:34Z2009-09-25T18:53:06Z<pre><code># Tail
from __future__ import with_statement
find_str = "FIREFOX" # String to find
fname = "g:/autoIt/ActiveWin.log_2" # File to check
with open(fname, "r") as f:
f.seek (0, 2) # Seek @ EOF
fsize = f.tell() # Get Size
f.seek (max (fsize-1024, 0), 0) # Set pos @ last n chars
lines = f.readlines() # Read to end
lines = lines[-10:] # Get last 10 lines
# This returns True if any line is exactly find_str + "\n"
print find_str + "\n" in lines
# If you're searching for a substring
for line in lines:
if find_str in line:
print True
break
</code></pre>
http://stackoverflow.com/questions/1446891/record-locking-problem-between-linux-and-windows/1447070#14470700Answer by PabloG for Record locking problem between linux and WindowsPabloG2009-09-18T22:21:44Z2009-09-18T22:21:44Z<p>@Michael: the programs works fine on any DOS (Lantastic, WFW) or Windows (95, NT, XP, ...) network.</p>
<p>I created a minimal C program to reproduce the behavior:</p>
<pre><code>#include <io.h>
#include <fcntl.h>
#include <sys\stat.h>
#include <process.h>
#include <share.h>
#include <stdio.h>
#include <conio.h>
int main(void)
{
int handle, status;
long length;
handle = sopen("testlock.txt", O_RDONLY,SH_DENYNO,S_IREAD);
if (!handle)
{
printf("sopen failed\n");
exit(1);
}
length = filelength(handle);
status = lock(handle,0L,length/2);
if (status == 0)
printf("lock succeeded\n");
else
printf("lock failed\n");
printf ("Press a key...\n");
getch();
status = unlock(handle,0L,length/2);
if (status == 0)
printf("unlock succeeded\n");
else
printf("unlock failed\n");
close(handle);
return 0;
}
</code></pre>
<p>It works fine on DOS / Windows (the first terminal can lock, the 2nd one no), but fails executing in Linux under DOSEMU (you can concurrently run two instances of the program in a network share, and both can obtain the lock independently of the run sequence Linux-Windows / Windows-Linux). </p>
http://stackoverflow.com/questions/59205/enhancing-stackoverflow-user-experience16Enhancing StackOverflow "user experience" [closed]PabloG2008-09-12T15:02:45Z2009-08-24T17:57:48Z
<p>Like many of you, I spend a couple of hours a day checking SO questions (far more than I should ;) ). While I can simply subscribe to tag feeds, I feel that this way I'll loose many interesting questions and answers. </p>
<p>I usually browse the questions sorted by "Newest", but this way is hard to remember if i saw an specific question, and is easy to miss a question of my favorite tags. Then, I made a little GreaseMonkey script to:</p>
<ul>
<li>Mark the questions that I seen (counting as "seen" all the questions of the actual page, not the entered links)</li>
<li>Highlight my "favorite" tags to make it easier to spot quickly.</li>
</ul>
<p>I used it for a couple of days and it seems to work fine.</p>
<p>Enhancements / bugfixes / suggestions welcome ;)</p>
<p><strong>EDIT</strong>: added userscript <a href="http://userscripts.org/scripts/show/33601" rel="nofollow">link</a>, added User Script Command as suggested by @Sam</p>
<p><strong>EDIT</strong>: modify "beta" in QUESTION_URL (StackOverflow out of beta!)</p>
<p><strong>EDIT</strong>: change window.onload for direct call, faster response </p>
<pre><code>// ==UserScript==
// @name Stack Overflow highlight viewed questions
// @namespace *
// @include http://stackoverflow.com/questions
// @include http://stackoverflow.com/questions?*
// @include http://beta.stackoverflow.com/questions
// @include http://beta.stackoverflow.com/questions?*
// @version 0.55 (DOM-Ready instead of onload)
// ==/UserScript==
(function() {
// Customizable items
// var fav_tags = ["python", "database", "mysql"]; // Your favorite tags
const UNSEEN_BACK_COLOR = "rgb(225,210,210)"; // Backcolor for the question already seen
const FAV_TAG_BACK_COLOR = "rgb(210,210,225)"; // Backcolor for the favorite tags
// Internal to the DOM
// const QUESTION_URL = "http:\/\/beta.stackoverflow.com\/questions\/([0-9]+)\/";
const QUESTION_URL = "http:\/\/stackoverflow.com\/questions\/([0-9]+)\/";
const TAG_PREFIX = "show questions tagged ";
const SEEN_MARK = "x";
//
var seen_q = [];
var seen_q_str = "";
var seen_q_str = GM_getValue ("seen_q", "");
var seen_q = seen_q_str.split("|");
var fav_tags_str = GM_getValue ("fav_tags", "")
var fav_tags = fav_tags_str.split(" ")
var already_run = false;
GM_registerMenuCommand ("Set favorite tags", askTags);
// window.addEventListener ("DOMContentLoaded", doStuff, false);
if (! doStuff()) {
window.addEventListener ("load", doStuff, false);
}
function doStuff() {
var elements = window.document.getElementsByTagName('A');
if (! elements || already_run) {
return false;
} else {
already_run = true;
}
// GM_log ("here");
for (elem = 0; elem < elements.length; elem++) {
if (elements[elem].href.match (QUESTION_URL)) {
curr_q = RegExp.$1;
// Already seen?
if ((seen_q.length < curr_q) || (seen_q [curr_q] != SEEN_MARK)) {
elements[elem].style.backgroundColor = UNSEEN_BACK_COLOR;
seen_q [curr_q] = SEEN_MARK;
}
// Is a favorite tag?
node = elements[elem].parentNode.parentNode;
for (tag = 0; tag <= fav_tags.length; tag++) {
if (node.innerHTML.match ("'" + fav_tags[tag] + "'")) {
node.style.backgroundColor = FAV_TAG_BACK_COLOR;
break;
}
}
// return (0);
}
}
seen_q_str = seen_q.join("|");
GM_setValue ("seen_q", seen_q_str);
return true;
}
function askTags() {
fav_tags_str = prompt("Favorite tags (separated by spaces)", fav_tags_str);
GM_setValue ("fav_tags", fav_tags_str)
}
})();
</code></pre>
http://stackoverflow.com/questions/1238893/autohotkey-editor/1239172#12391722Answer by PabloG for Autohotkey editor PabloG2009-08-06T14:17:44Z2009-08-06T14:17:44Z<p>I'm using <a href="http://www.pspad.com/en/" rel="nofollow">PsPad</a> 4.5.3 (freeware), it supports AutoHotkey syntax highlighting, command completion, etc. The only feature I missed is code-folding, but for AutoHotkey scripts it doesn't seems to be a big problem.</p>
http://stackoverflow.com/questions/1213730/remap-keyboard-navigation-with-jython-swing2Remap keyboard navigation with Jython / SwingPabloG2009-07-31T17:07:38Z2009-08-01T16:39:01Z
<p>Hi, I'm trying to remap several navigation keys:</p>
<ul>
<li>ENTER: to work like standard TAB behavior (focus to next control)</li>
<li>SHIFT+ENTER: to work like SHIFT+TAB behavior (focus to previous control)</li>
<li>UP / DOWN arrows: previous /next control</li>
<li>etc</li>
</ul>
<p>I tried with a couple of options but without luck:</p>
<pre><code>from javax.swing import *
from java.awt import *
class JTextFieldX(JTextField):
def __init__(self, *args):
# Thanks, Jack!!
JTextField.__init__(
self,
focusGained=self.onGotFocus,
focusLost=self.onLostFocus,
*args)
def onGotFocus (self, event):
print "onGotFocus "
self.selectionStart = 0
self.selectionEnd = len(self.text)
def onLostFocus (self, event):
print "onLostFocus ", self.name
class Test(JFrame):
def __init__(self):
JFrame.__init__(self,
'JDesktopPane and JInternalFrame Demo',
size=(600, 300),
defaultCloseOperation=JFrame.EXIT_ON_CLOSE)
self.desktop = JDesktopPane()
self.contentPane.add(JScrollPane(self.desktop)) # This is the same as self.getContentPane().add(...)
frame = JInternalFrame("Frame", 1, 1, 1, 1, size=(400, 400), visible=1)
panel = JPanel()
self.label = JLabel('Hello from Jython')
panel.add(self.label)
self.textfield1 = JTextFieldX('Type something here', 15)
panel.add(self.textfield1)
self.textfield2 = JTextFieldX('and click Copy', 15)
panel.add(self.textfield2)
panel.add(copyButton)
frame.add(panel)
frame.pack()
self.desktop.add(frame)
# ENTER=SPACE remapping for buttons (works ok, but only for buttons)
# inputMap = UIManager.getDefaults().get("Button.focusInputMap")
# pressedAction = inputMap.get(KeyStroke.getKeyStroke("pressed SPACE"));
# releasedAction = inputMap.get(KeyStroke.getKeyStroke("released SPACE"));
# # pressedAction = self.noAction
# inputMap.put (KeyStroke.getKeyStroke("pressed ENTER"), pressedAction)
# inputMap.put (KeyStroke.getKeyStroke("released ENTER"), releasedAction)
# # Attemp to remap ENTER=TAB for TextFields (didn't work, no errors)
# inputMap = UIManager.getDefaults().get("TextField.focusInputMap")
# pressedAction = inputMap.get(KeyStroke.getKeyStroke("pressed TAB"));
# releasedAction = inputMap.get(KeyStroke.getKeyStroke("released TAB"));
# inputMap.put (KeyStroke.getKeyStroke("pressed W"), pressedAction)
# inputMap.put (KeyStroke.getKeyStroke("released W"), releasedAction)
# # Attemp to remap ENTER=TAB for all controls (didn't work, no errors)
# spaceMap = self.textfield1.getInputMap().get(KeyStroke.getKeyStroke(event.KeyEvent.VK_TAB, 0, True));
# self.textfield1.getInputMap().put(KeyStroke.getKeyStroke(event.KeyEvent.VK_ENTER, 0, True),spaceMap);
frame.setSelected(1)
frame.moveToFront()
def noAction (self, event):
print "noAction"
pass
if __name__ == '__main__':
test = Test()
test.setLocation(100, 100)
test.show()
</code></pre>
http://stackoverflow.com/questions/1213730/remap-keyboard-navigation-with-jython-swing/1216973#12169731Answer by PabloG for Remap keyboard navigation with Jython / SwingPabloG2009-08-01T16:39:01Z2009-08-01T16:39:01Z<p>Finally used part of Jack's answer (the keyPressed event) but without manually setting setNextFocusableComponent:</p>
<pre><code>keyFocusMgr = KeyboardFocusManager.getCurrentKeyboardFocusManager()
keyFocusMgr.focusNextComponent()
</code></pre>
http://stackoverflow.com/questions/1213295/handling-swing-focus-events-with-jython2Handling Swing focus events with JythonPabloG2009-07-31T15:45:09Z2009-07-31T15:50:57Z
<p>Jython 2.5</p>
<p>I'm trying to bind a method to the focusGained event of a JText control, but all the examples that I found are Java samples, not Jython. Here's the code, I want to run a custom method when each text control gains focus (to select all the control's text, for instance)</p>
<pre><code>from javax.swing import *
from java.awt import *
class Test(JFrame):
def __init__(self):
JFrame.__init__(self,
'JDesktopPane and JInternalFrame Demo',
size=(600, 300),
defaultCloseOperation=JFrame.EXIT_ON_CLOSE)
self.desktop = JDesktopPane()
self.contentPane.add(JScrollPane(self.desktop)) # This is the same as self.getContentPane().add(...)
frame = JInternalFrame("Frame", 1, 1, 1, 1, size=(400, 400), visible=1)
panel = JPanel()
self.label = JLabel('Hello from Jython')
panel.add(self.label)
self.textfield1 = JTextField('Type something here',15)
# self.textfield1.addFocusListener(event.FocusListener()) # ???
panel.add(self.textfield1)
self.textfield2 = JTextField('and click Copy', 15)
panel.add(self.textfield2)
copyButton = JButton('Copy',actionPerformed=self.noAction)
panel.add(copyButton)
frame.add(panel)
frame.pack()
self.desktop.add(frame)
frame.setSelected(1)
frame.moveToFront()
def noAction (self, event):
pass
if __name__ == '__main__':
test = Test()
test.setLocation(100, 100)
test.show()
</code></pre>
http://stackoverflow.com/questions/1159308/software-hardware-options-to-replace-an-old-handheld-application0Software & hardware options to replace an old handheld applicationPabloG2009-07-21T13:46:02Z2009-07-21T14:43:46Z
<p>I'm looking for options to replace and old application running in a <a href="http://www.bioeddie.co.uk/models/psion-workaboutmx.htm" rel="nofollow">Psion Workabout mx</a> handheld, developed in OPL.
The handheld and the application (developed more than 10 years ago) are both working fine
by now, but the device is discontinued, and each time is harder to find replacement parts for it.</p>
<p>Then I started to look to the newer Psion handheld models, but they are expensive and
filled with features that I don't need at all (color screen, barcode reader, ...). Also,
they look a lot less rugged than the actual Workabout mx that I'm using. I had to replace
around 50 handhelds, and i'm looking for good options with this features:</p>
<ul>
<li>Reasonable priced</li>
<li>Fast numeric data entry, optionally alphanumeric data (not usual)</li>
<li>Readable screen, with at least 7 lines of text visible. No color needed</li>
<li>Rugged</li>
<li>Replacement parts available</li>
<li>Reasonable development environment (handheld emulator, IDE, minimal GUI support, PC / handheld connectivity)</li>
</ul>
<p>Maybe an old mobile phone with Java support can do the work? </p>
<p>Please indicate the suggested device model and the development options available for it.</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/33534/extending-base-classes-in-python2Extending base classes in PythonPabloG2008-08-28T22:18:02Z2009-01-16T01:18:26Z
<p>I'm trying to extend some "base" classes in Python:</p>
<pre><code>class xlist (list):
def len(self):
return len(self)
def add(self, *args):
self.extend(args)
return None
class xint (int):
def add(self, value):
self += value
return self
x = xlist([1,2,3])
print x.len() ## >>> 3 ok
print x ## >>> [1,2,3] ok
x.add (4, 5, 6)
print x ## >>> [1,2,3,4,5,6] ok
x = xint(10)
print x ## >>> 10 ok
x.add (2)
print x ## >>> 10 # Not ok (#1)
print type(x) ## >>> <class '__main__.xint'> ok
x += 5
print type(x) ## >>> <type 'int'> # Not ok (#2)
</code></pre>
<p>It works fine in the <em>list</em> case because the <em>append</em> method modifies the object "in place", without returning it. But in the <em>int</em> case, the <em>add</em> method doesn't modify the value of the external <em>x</em> variable. I suppose that's fine in the sense that <em>self</em> is a local variable in the <em>add</em> method of the class, but this is preventing me from modifying the initial value assigned to the instance of the class.</p>
<p>Is it possible to extend a class this way or should I define a class property with the base type and map all the needed methods to this property?</p>
http://stackoverflow.com/questions/42774/how-can-i-disable-a-hotkey-in-greasemonkey-while-editing0How can I disable a hotkey in GreaseMonkey while editing?PabloG2008-09-03T22:49:29Z2009-01-03T21:59:38Z
<p>I'm using Ctrl+Left / Ctrl+Right in a GreaseMonkey script as a hotkey to turn back / forward pages. It seems to works fine, but I want to disable this behavior if I'm in a text edit area. I'm trying to use document.activeElement to get the page active element and test if it's an editable area, but it always returns "undefined".</p>
http://stackoverflow.com/questions/365223/disable-usb-storage-devices/365245#3652452Answer by PabloG for Disable usb storage devicesPabloG2008-12-13T14:10:05Z2008-12-13T14:29:51Z<p>Taken from <a href="http://www.pragmaticutopia.com/content/view/89/125/" rel="nofollow">here</a>, not tested:</p>
<pre><code>Directions for Use:
1.) Take the following blue text, copy it, and paste it into a text document. Then, save it as USBSTOR.ADM.
CLASS MACHINE
CATEGORY "Custom Policies"
KEYNAME "SYSTEM\CurrentControlSet\Services\UsbStor"
POLICY "USB Mass Storage Installation"
EXPLAIN "When this policy is enabled, USB mass storage device permissions can be changed by using the drop down box.
Selecting 'Grant Permission' will allow USB mass storage devices to be installed. Selecting 'Deny Permission' will prohibit
the installation of USB mass storage devices.
IF REMOVING THIS POLICY: Reset to original setting and let policy propegate before deleting policy."
PART "Change Settings:" DROPDOWNLIST REQUIRED
VALUENAME "Start"
ITEMLIST
NAME "Grant Permission" VALUE NUMERIC 3 DEFAULT
NAME "Deny Permission" VALUE NUMERIC 4
END ITEMLIST
END PART
END POLICY
END CATEGORY
2.) Open a group policy management console (gpedit.msc), and right click on "administrative templates" under "Computer Configuration". Select "Add/Remove Templates".
3.) Browse to the text document you just saved and click OK. You'll now see "Custom Policies" under "Administrative Templates". Right click on it, select "View", then select "Filtering". Uncheck the bottom box, labeled "Only show policy settings that can be fully managed".
4.) Click ok. Now you'll see the USB policy available for use under the custom policy heading. From there, you can enable or disable it just like any other policy.
</code></pre>
<p>or (to disable USB storage devices, tested on XP SP3)</p>
<pre><code>REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\USBSTOR" /v Start /t REG_DWORD /d 4 /f
</code></pre>
<p>(to enable USB storage devices, tested on XP SP3)</p>
<pre><code>REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\USBSTOR" /v Start /t REG_DWORD /d 3 /f
</code></pre>
http://stackoverflow.com/questions/285132/with-what-kind-of-ide-if-any-you-build-python-gui-projects/285175#2851750Answer by PabloG for With what kind of IDE (if any) you build python GUI projects?PabloG2008-11-12T20:09:16Z2008-11-12T20:09:16Z<p>You can try <a href="http://boa-constructor.sourceforge.net/" rel="nofollow">Boa Constructor</a> or <a href="http://www.dabodev.com/" rel="nofollow">Dabo</a></p>
http://stackoverflow.com/questions/274230/what-are-the-best-free-software-that-helps-you-become-more-productive-or-helps-yo/274751#2747513Answer by PabloG for What are the best free software that helps you become more productive or helps you code?PabloG2008-11-08T14:08:22Z2008-11-08T14:08:22Z<p>Besides many already mentioned tools, I use:</p>
<ul>
<li><a href="http://clipx.org" rel="nofollow">ClipX</a> for multiple clipboard support in any program, not only inside Visual Studio</li>
<li><a href="http://www.bayden.com/SlickRun/" rel="nofollow">SlickRun</a> for quick command execution</li>
<li><a href="http://www.donationcoder.com/Software/Mouser/findrun/index.html" rel="nofollow">Find and Run Robot</a> for fast desktop/start menu search or filesystem search with Locate32 plugin</li>
<li><p><a href="http://www.autohotkey.com/" rel="nofollow">AutoHotkey</a> for keyboard remappings, with my own keyboard mappings, <p><p>
F4+F4 To close any window
Alt+Alt To open Find and Run Robot process list (similar to Alt+Tab but with filters)<p>
Alt+1 Send active window to half up screen (useful for comparisons in one monitor)<p>
Alt+2 Send active window to half down screen<p>
Alt+0 Switch active window to monitor 1-2<p>
...<p></p></li>
<li><p><a href="http://www.autohotkey.com/docs/scripts/MouseGestures.htm" rel="nofollow">MouseGestures</a> (AutoHotkey
script) to enable mouse gestures across applications</p></li>
<li><a href="http://www.autoitscript.com/autoit3/" rel="nofollow">AutoIt</a> as a general automation tool</li>
</ul>
http://stackoverflow.com/questions/273494/is-there-a-way-to-install-all-versions-of-all-browsers-on-one-machine/273539#2735391Answer by PabloG for Is there a way to install all versions of all browsers on one machine?PabloG2008-11-07T20:26:20Z2008-11-07T20:26:20Z<p>For FireFox, you can install the portable versions available <a href="http://portableapps.com/apps/internet/firefox_portable" rel="nofollow">here</a></p>
<p>With IE, I think the only way is via virtual machines. I can recommend VirtualBox, works smoothly for me. </p>
http://stackoverflow.com/questions/272764/what-is-the-quickest-path-to-writing-a-lightweight-gui-program-on-windows/273357#2733571Answer by PabloG for What is the quickest path to writing a lightweight GUI program on Windows?PabloG2008-11-07T19:36:36Z2008-11-07T19:36:36Z<p>For a quick and dirty GUI program like you said, you can use an <a href="http://www.autoitscript.com/autoit3/" rel="nofollow">AutoIt</a> script. You can even compile to an exe.</p>
<p>For an GUI example of AutoIt, you can check my stdout redirect script in a previous answer <a href="http://stackoverflow.com/questions/8004/best-way-to-wrap-rsync-progress-in-a-gui">here</a> </p>
http://stackoverflow.com/questions/265339/whats-the-best-way-to-automate-secure-ftp-in-powershell/265402#2654023Answer by PabloG for What's the best way to automate secure FTP in PowerShell?PabloG2008-11-05T15:04:57Z2008-11-05T15:04:57Z<p>Taken from <a href="http://www.vistax64.com/powershell/17000-using-powershell-automate-ftp-transfers.html" rel="nofollow">here</a></p>
<pre><code>$source = "ftp://ftp.microsoft.com/ResKit/win2000/dureg.zip"
$target = "c:\temp\dureg.zip"
$WebClient = New-Object System.Net.WebClient
$WebClient.DownloadFile($source, $target)
</code></pre>
<p>Works for me</p>
http://stackoverflow.com/questions/263985/regex-question-one-or-more-spaces-outside-of-a-quote-enclosed-block-of-text/264124#2641240Answer by PabloG for Regex Question - One or more spaces outside of a quote enclosed block of textPabloG2008-11-05T01:28:40Z2008-11-05T02:11:27Z<p>Personally, I don't use Java, but this RegExp could do the trick:</p>
<pre><code>([^\" ])*(\\\".*?\\\")*
</code></pre>
<p>Trying the expression with RegExBuddy, it generates this code, looks fine to me:</p>
<pre><code>try {
Pattern regex = Pattern.compile("([^\" ])*(\\\".*?\\\")*", Pattern.CASE_INSENSITIVE | Pattern.UNICODE_CASE);
Matcher regexMatcher = regex.matcher(subjectString);
while (regexMatcher.find()) {
for (int i = 1; i <= regexMatcher.groupCount(); i++) {
// matched text: regexMatcher.group(i)
// match start: regexMatcher.start(i)
// match end: regexMatcher.end(i)
// I suppose here you must use something like
// sstr += regexMatcher.group(i) + " "
}
}
} catch (PatternSyntaxException ex) {
// Syntax error in the regular expression
}
</code></pre>
<p>At least, it seems to work fine in Python:</p>
<pre><code>import re
text = """
este es un texto de prueba "para ver como se comporta " la funcion sobre esto
"para ver como se comporta " la funcion sobre esto "o sobre otro" lo q sea
"""
ret = ""
print text
reobj = re.compile(r'([^\" ])*(\".*?\")*', re.IGNORECASE)
for match in reobj.finditer(text):
if match.group() <> "":
ret = ret + match.group() + "|"
print ret
</code></pre>
http://stackoverflow.com/questions/253198/outlook-express-sending-e-mail-from-the-command-line/254845#2548450Answer by PabloG for Outlook Express - sending e-mail from the command linePabloG2008-10-31T20:27:41Z2008-10-31T20:27:41Z<p>Quick'n dirty <a href="http://www.autoitscript.com/" rel="nofollow">AutoIt</a> script, you can modify it
to accept parameters from the command line:</p>
<pre><code>; Send a mail vía outlook "automation"
$sRcpt = "test@test.com"
$sSubj = "Test subject"
$sBody = "This is a test"
$sAttach = "g:\AutoIt\AnHoras.PRG"
If Not WinActivate ("[REGEXPTITLE:.*\- Outlook Express]") Then
RunWait ("d:\Archivos de programa\Outlook Express\msimn.exe") ; Set your path to the Outlook .exe
Endif
Send ("!anm") ; Archivo->Nuevo->Mensaje (in spanish, sorry, I suppose that in english it will be File->New->Message)
Send ($sRcpt & "{Tab 3}")
Send ($sSubj & "{Tab}")
Send ($sBody)
If $sAttach <> "" Then
Send ("!i{Enter}" & $sAttach & "{Enter}") ; Insertar adjunto (Insert->Attachment)
EndIf
Send ("!a{Down}{Enter}") ; Archivo->Enviar mensaje (File->Send message)
</code></pre>
http://stackoverflow.com/questions/245395/underused-features-of-windows-batch-files/252310#2523101Answer by PabloG for Underused features of Windows batch filesPabloG2008-10-31T01:02:17Z2008-10-31T13:11:28Z<p>Multiple commands in one line, useful in many situations:</p>
<p>& Used to combine two commands, executes command1 and then command2
&& A conditional combination, executes command2 if command1 completes successfully
¦¦ Command2 executes only if command1 does not complete successfully.</p>
<p>Examples:</p>
<pre><code>:: ** Edit the most recent .TXT file and exit, useful in a .CMD / .BAT **
FOR /F %%I IN ('DIR *.TXT /B /O:-N') DO NOTEPAD %%I & EXIT
:: ** If exist any .TXT file, display the list in NOTEPAD, if not it
:: ** exits without any error (note the && and the 2> error redirection)
DIR *.TXT > TXT.LST 2> NUL && NOTEPAD TXT.LST
</code></pre>
http://stackoverflow.com/questions/156755/tools-for-creating-ui-prototype/158157#1581572Answer by PabloG for Tools for creating UI prototype.PabloG2008-10-01T15:18:35Z2008-10-01T15:18:35Z<p>I use <a href="http://www.inkscape.org/" rel="nofollow">InkScape</a>. It isn't an specific GUI prototype tool, but a versatile (and freeware) vector draw program. Big plus for me is that it works with SVG files that are easily parsed or modified, also allows to create a basic "widget", create clones of it, modify the base widget and apply the modifications to these clones.</p>
<p>GUI Prototype example with InkScape (Spanish):</p>
<p><img src="http://www.hotlinkfiles.com/files/1907358_olag7/Interface.jpg" alt="" title="" /></p>
http://stackoverflow.com/questions/146602/upgrading-dos-batch-files-for-windows/146641#1466411Answer by PabloG for Upgrading DOS Batch files for WindowsPabloG2008-09-28T20:21:00Z2008-09-28T20:21:00Z<p>I personally use Python or <a href="http://www.microsoft.com/windowsserver2003/technologies/management/powershell/default.mspx" rel="nofollow">PowerShell</a>
for this kind of tasks.</p>
http://stackoverflow.com/questions/136734/key-presses-in-python/136759#1367595Answer by PabloG for Key Presses in PythonPabloG2008-09-25T23:03:55Z2008-09-26T00:19:52Z<p><a href="http://www.autohotkey.com/" rel="nofollow">AutoHotKey</a> is perfect for this kind of tasks (keyboard automation / remapping)</p>
<p>Script to send "A" 100 times:</p>
<pre><code>Send {A 100}
</code></pre>
<p>That's all</p>
<p><strong>EDIT</strong>: to send the keys to an specific application:</p>
<pre><code>WinActivate Word
Send {A 100}
</code></pre>
http://stackoverflow.com/questions/131955/keyboard-shortcut-to-paste-clipboard-content-into-command-prompt-window-win-xp/133332#13333211Answer by PabloG for Keyboard shortcut to paste clipboard content into command prompt window (Win XP)PabloG2008-09-25T13:30:58Z2008-09-25T13:30:58Z<p>I personally use a little <a href="http://www.autohotkey.com/" rel="nofollow">AutoHotkey</a> script to remap certain keyboard functions, for the console window (CMD) I use:</p>
<pre><code>; Redefine only when the active window is a console window
#IfWinActive ahk_class ConsoleWindowClass
; Close Command Window with Ctrl+w
$^w::
WinGetTitle sTitle
If (InStr(sTitle, "-")=0) {
Send EXIT{Enter}
} else {
Send ^w
}
return
; Ctrl+up / Down to scroll command window back and forward
^Up::
Send {WheelUp}
return
^Down::
Send {WheelDown}
return
; Paste in command window
^V::
; Spanish menu (Editar->Pegar, I suppose English version is the same, Edit->Paste)
Send !{Space}ep
return
#IfWinActive
</code></pre>
http://stackoverflow.com/questions/130116/dos-batch-commands-to-read-first-line-from-text-file/130379#1303790Answer by PabloG for DOS batch command(s) to read first line from text filePabloG2008-09-24T22:41:02Z2008-09-24T22:41:02Z<p>One liner, useful for stdout redirect with ">":</p>
<pre><code>@for /f %%i in ('type yourfile.txt') do @echo %%i & exit
</code></pre>
http://stackoverflow.com/questions/120359/tools-for-automated-gui-testing-on-windows/120642#1206425Answer by PabloG for Tools for automated GUI testing (on Windows)?PabloG2008-09-23T12:26:18Z2008-09-23T12:26:18Z<p>I use <a href="http://www.autoitscript.com/autoit3/" rel="nofollow">AutoIt</a> and <a href="http://www.autohotkey.com/" rel="nofollow">AutoHotKey</a> to automate GUI tasks, both are excellent products to automate GUIs (press buttons, complete form entries, stuff keys, etc). Both are very well documented and are easy to use.</p>
http://stackoverflow.com/questions/114946/vertical-scrolling-marquee-for-foxpro/115111#1151110Answer by PabloG for Vertical Scrolling Marquee for foxproPabloG2008-09-22T14:23:31Z2008-09-22T14:23:31Z<p>You can use <a href="http://www.ctl32.com.ar/ctl32_scontainer.asp" rel="nofollow">Scrollable Container</a></p>
http://stackoverflow.com/questions/108439/how-do-i-get-the-result-of-a-command-in-a-variable-in-windows/108615#1086152Answer by PabloG for How do I get the result of a command in a variable in windows?PabloG2008-09-20T16:23:21Z2008-09-20T16:23:21Z<p>If you have to capture all the command output you can use a batch like this:</p>
<pre><code>@ECHO OFF
IF NOT "%1"=="" GOTO ADDV
SET VAR=
FOR /F %%I IN ('DIR *.TXT /B /O:D') DO CALL %0 %%I
SET VAR
GOTO END
:ADDV
SET VAR=%VAR%!%1
:END
</code></pre>
<p>All output lines are stored in VAR separated with "!".</p>
<p>@John: is there any practical use for this? I think you should watch PowerShell or any other programming language capable to perform scripting tasks easily (Python, Perl, PHP, Ruby)</p>
http://stackoverflow.com/questions/1213730/remap-keyboard-navigation-with-jython-swing/1214292#1214292Comment by PabloG on Remap keyboard navigation with Jython / SwingPabloG2009-07-31T20:03:00Z2009-07-31T20:03:00Z@Jack: first of all, thanks for your help.
I'm trying the code you posted, but either
gotFocus.nextFocusableComponent
and
gotFocus.getNextFocusableComponent()
return None.
TIA,
Pablohttp://stackoverflow.com/questions/1213730/remap-keyboard-navigation-with-jython-swing/1213879#1213879Comment by PabloG on Remap keyboard navigation with Jython / SwingPabloG2009-07-31T18:34:37Z2009-07-31T18:34:37ZOk so far, but then how can I (generically) get the next focusable control?
I tried with self.nextFocusableComponent but it's set to None.
http://stackoverflow.com/questions/1213295/handling-swing-focus-events-with-jython/1213341#1213341Comment by PabloG on Handling Swing focus events with JythonPabloG2009-07-31T16:08:11Z2009-07-31T16:08:11ZExcellent, thank you!http://stackoverflow.com/questions/260273/most-efficient-way-to-search-the-last-x-lines-of-a-file-in-python/260352#260352Comment by PabloG on Most efficient way to search the last x lines of a file in pythonPabloG2008-11-04T11:31:20Z2008-11-04T11:31:20Z@MizardX / @ΤΖΩΤΖΙΟΥ: you're right, of course. Thx for the bugfix/commenthttp://stackoverflow.com/questions/260273/most-efficient-way-to-search-the-last-x-lines-of-a-file-in-python/260352#260352Comment by PabloG on Most efficient way to search the last x lines of a file in pythonPabloG2008-11-04T01:16:57Z2008-11-04T01:16:57Z@Darius: I really meant if len(l) > 10, fixedhttp://stackoverflow.com/questions/245395/underused-features-of-windows-batch-files/252310#252310Comment by PabloG on Underused features of Windows batch filesPabloG2008-10-31T19:45:34Z2008-10-31T19:45:34ZLooks better! :)http://stackoverflow.com/questions/59205/enhancing-stackoverflow-user-experienceComment by PabloG on Enhancing StackOverflow "user experience"PabloG2008-09-15T02:01:00Z2008-09-15T02:01:00Z@Sam: User Script Command addedhttp://stackoverflow.com/questions/59205/enhancing-stackoverflow-user-experienceComment by PabloG on Enhancing StackOverflow "user experience"PabloG2008-09-15T00:53:10Z2008-09-15T00:53:10Z@Sam: already added the userscript link. I'll check the User Script Command option, thanks for the suggestionshttp://stackoverflow.com/questions/59205/enhancing-stackoverflow-user-experience/59218#59218Comment by PabloG on Enhancing StackOverflow "user experience"PabloG2008-09-12T15:25:43Z2008-09-12T15:25:43ZPosted in userscripts:
<a href="http://userscripts.org/scripts/show/33601" rel="nofollow">userscripts.org/scripts/show/33601</a>http://stackoverflow.com/questions/56430/foxpro-app-and-removable-drives-problem/56726#56726Comment by PabloG on Foxpro App and removable drives problemPabloG2008-09-11T23:03:42Z2008-09-11T23:03:42ZNelson: did you try _COMMAND = SYS(2450, 1) in CONFIG.FPW ?