User Vicent Marti - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T22:44:27Zhttp://stackoverflow.com/feeds/user/4381http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/898136/file-i-o-in-the-python-3-c-api1File I/O in the Python 3 C APIVicent Marti2009-05-22T14:23:39Z2009-08-02T07:24:21Z
<p>The C API in Python 3.0 has changed (deprecated) many of the functions for File Objects.</p>
<p>Before, in 2.X, you could use</p>
<pre><code>PyObject* PyFile_FromString(char *filename, char *mode)
</code></pre>
<p>to create a Python file object, e.g:</p>
<pre><code>PyObject *myFile = PyFile_FromString("test.txt", "r");
</code></pre>
<p>...but such function no longer exists in Python 3.0.
What would be the Python 3.0 equivalent to such call?</p>
http://stackoverflow.com/questions/54795/limiting-cpu-speed-for-profiling6Limiting CPU speed for profilingVicent Marti2008-09-10T17:37:57Z2009-07-07T21:04:29Z
<p>I'm trying to optimize several bottlenecks on an application which is supposed to run on a really wide range of CPUs and architectures (some of them very close to embeded devices).</p>
<p>The results of my profiler, however, aren't really significant because of the speed of my CPU. Is there any way (preferably under Windows or Mac OS X) to limit the speed of my CPU for profiling purposes?</p>
<p>I've thought about using a virtual machine, but haven't found any with such functionality.</p>
http://stackoverflow.com/questions/810830/what-are-your-favorite-small-handy-utility-programs-tools-helping-you-programmi/811405#8114050Answer by Vicent Marti for What are your favorite small handy utility programs (tools) helping you programming ? Vicent Marti2009-05-01T13:43:33Z2009-05-01T13:43:33Z<p><a href="http://betterthangrep.com/" rel="nofollow">Ack</a>: As its domain name implies, Ack is better than grep. Mind-numbingly better than grep. So much better than grep that makes the original grep look brain-damaged.</p>
<p>I couldn't live without Ack.</p>
http://stackoverflow.com/questions/764569/vim-key-map/765711#7657110Answer by Vicent Marti for VIM Key mapVicent Marti2009-04-19T16:59:25Z2009-04-19T16:59:25Z<p>Just like many Emacs users rebind their "Caps Lock" key to "Control", vimmers rebind their "Caps Lock" to "Escape".</p>
<p>...At least I do. And it works wonders.</p>
http://stackoverflow.com/questions/744055/gcc-inline-assembly-jump-to-label-outside-block4GCC Inline Assembly: Jump to label outside blockVicent Marti2009-04-13T14:27:36Z2009-04-13T14:47:35Z
<p>When using inline assembly under MSVC, one is allowed to jump outside of the assembly block by referencing a label in the C/C++ code, as explained <a href="http://msdn.microsoft.com/en-us/library/aa279405%28VS.60%29.aspx" rel="nofollow">in this MSDN article</a>.</p>
<p>Can such thing be done when using inline assembly under GCC?</p>
<p>Here's an example of what I'm trying to accomplish:</p>
<pre><code>__asm__ __volatile__ (
" /* assembly code */ "
" jz external_label; "
);
/* some C code */
external_label:
/* C code coninues... */
</code></pre>
<p>The compiler, however, complains about "external_label" not being defined.</p>
http://stackoverflow.com/questions/476887/can-i-get-ido-mode-style-completion-for-searching-tags-in-emacs/476896#4768961Answer by Vicent Marti for Can I get ido-mode-style completion for searching tags in Emacs?Vicent Marti2009-01-24T23:45:48Z2009-01-24T23:45:48Z<p>This blog post already implements what you are trying to do:</p>
<p><a href="http://chopmo.blogspot.com/2008/09/quickly-jumping-to-symbols.html" rel="nofollow">http://chopmo.blogspot.com/2008/09/quickly-jumping-to-symbols.html</a></p>
http://stackoverflow.com/questions/392349/modify-bound-variables-of-a-closure-in-python4Modify bound variables of a closure in PythonVicent Marti2008-12-24T23:38:30Z2008-12-25T03:13:56Z
<p>Is there any way to modify the bound value of one of the variables inside a closure? Look at the example to understand it better.</p>
<pre><code>def foo():
var_a = 2
var_b = 3
def _closure(x):
return var_a + var_b + x
return _closure
localClosure = foo()
# Local closure is now "return 2 + 3 + x"
a = localClosure(1) # 2 + 3 + 1 == 6
# DO SOME MAGIC HERE TO TURN "var_a" of the closure into 0
# ...but what magic? Is this even possible?
# Local closure is now "return 0 + 3 + x"
b = localClosure(1) # 0 + 3 +1 == 4
</code></pre>
http://stackoverflow.com/questions/392349/modify-bound-variables-of-a-closure-in-python/392372#3923724Answer by Vicent Marti for Modify bound variables of a closure in PythonVicent Marti2008-12-25T00:08:52Z2008-12-25T00:08:52Z<p>I've found an alternate answer answer to Greg's, slightly less verbose because it uses Python 2.1's custom function attributes (which conveniently enough can be accessed from inside their own function).</p>
<pre><code>def foo():
var_b = 3
def _closure(x):
return _closure.var_a + var_b + x
_closure.func_dict['var_a'] = 2
return _closure
localClosure = foo()
# Local closure is now "return 2 + 3 + x"
a = localClosure(1) # 2 + 3 + 1 == 6
# DO SOME MAGIC HERE TO TURN "var_a" of the closure into 0
# ...but what magic? Is this even possible?
# apparently, it is
localClosure.var_a = 0
# Local closure is now "return 0 + 3 + x"
b = localClosure(1) # 0 + 3 +1 == 4
</code></pre>
<p>Thought I'd post it for completeness. Cheers anyways.</p>
http://stackoverflow.com/questions/267455/c-cross-platform-zlib-simplifer-wrapper/268805#2688050Answer by Vicent Marti for C++ cross-platform zlib simplifer-wrapperVicent Marti2008-11-06T14:11:25Z2008-11-06T14:11:25Z<p>You could try to grab the code from another FOSS project. ScummVM, for example, has a highly portable Zlib wrapper (<a href="http://scummvm.svn.sourceforge.net/viewvc/scummvm/scummvm/trunk/common/unzip.cpp?revision=34899&view=markup" rel="nofollow">implementation</a>, <a href="http://scummvm.svn.sourceforge.net/viewvc/scummvm/scummvm/trunk/common/unzip.h?revision=34899&view=markup" rel="nofollow">header</a>) with all the functions you need, plus an OO layer for interfacing generically with any other kind of archive.</p>
<p>Maybe that's a good starting point? The wrapper functions are totally standalone and portable (heck, they even work on a Nintendo DS), but the OO layer depends on many custom classes which may be hard to add to your own project.</p>
http://stackoverflow.com/questions/258740/what-tools-are-built-using-themselves/261300#2613000Answer by Vicent Marti for What tools are built using themselves?Vicent Marti2008-11-04T09:09:28Z2008-11-04T09:09:28Z<p>As far as I know, when building EMACS from source, all of the ELISP code is bootstrapped. I found that quite noteworthy.</p>
http://stackoverflow.com/questions/260511/russian-peasant-multiplication/260544#26054413Answer by Vicent Marti for Russian Peasant Multiplication Vicent Marti2008-11-04T01:26:44Z2008-11-04T01:26:44Z<p>I think it's a pretty poor attempt bragging about code which, although being supposedly smart, it's obfuscated to the point that no sane developer would ever use it on production code.</p>
<p>...Once again, what was your question? </p>
http://stackoverflow.com/questions/172928/best-2d-animation-library-tech-for-iphone-style-animation-on-win32/255305#2553052Answer by Vicent Marti for Best 2D animation library/tech for "iPhone" style animation on WIN32?Vicent Marti2008-11-01T00:20:44Z2008-11-01T00:20:44Z<p>I think you are looking for the Clutter Toolkit. It's free, cool, and multi-platform. Works on top of OpenGL by implementing all those timers and stuff you can't be arsed to implement yourself, and wrapping them on a very convenient and awesome API.</p>
<p><a href="http://clutter-project.org/" rel="nofollow">http://clutter-project.org/</a></p>
http://stackoverflow.com/questions/231951/whats-the-next-thing-on-your-list-to-learn/232010#2320106Answer by Vicent Marti for What's the next thing on your list to learn?Vicent Marti2008-10-23T23:50:39Z2008-10-23T23:50:39Z<p>Much more EMACS... </p>
<p>I can't really rely on TextMate anymore. It's awesome, but it's only for Mac.</p>
http://stackoverflow.com/questions/223656/untar-ungz-gz-tar-how-do-you-remember-all-the-useful-options/223742#2237429Answer by Vicent Marti for Untar, ungz, gz, tar - how do you remember all the useful options?Vicent Marti2008-10-21T22:19:29Z2008-10-21T22:19:29Z<p>There's a small Perl script called "unp".</p>
<pre><code>unp filename.tar.gz
</code></pre>
<p>...and it extracts everything. Works with <em>any</em> compressed file as long as you have the right binaries. And you just forget about syntax or any of that crap. Check your Linux distribution's repositories. It should be there (at least on Arch, Debian and Ubuntu).</p>
http://stackoverflow.com/questions/214359/converting-hex-to-rgb-and-vice-versa/214386#2143861Answer by Vicent Marti for Converting hex to RGB and vice-versaVicent Marti2008-10-18T01:57:11Z2008-10-18T01:57:11Z<p>Real answer: Depends on what kind of hexadecimal color value you are looking for (e.g. 565, 555, 888, 8888, etc), the amount of alpha bits, the actual color distribution (rgb vs bgr...) and a ton of other variables.</p>
<p>Here's a generic algorithm for most RGB values using C++ templates (straight from ScummVM).</p>
<pre><code>template<class T>
uint32 RGBToColor(uint8 r, uint8 g, uint8 b) {
return T::kAlphaMask |
(((r << T::kRedShift) >> (8 - T::kRedBits)) & T::kRedMask) |
(((g << T::kGreenShift) >> (8 - T::kGreenBits)) & T::kGreenMask) |
(((b << T::kBlueShift) >> (8 - T::kBlueBits)) & T::kBlueMask);
}
</code></pre>
<p>Here's a sample color struct for 565 (the standard format for 16 bit colors):</p>
<pre><code>template<>
struct ColorMasks<565> {
enum {
highBits = 0xF7DEF7DE,
lowBits = 0x08210821,
qhighBits = 0xE79CE79C,
qlowBits = 0x18631863,
kBytesPerPixel = 2,
kAlphaBits = 0,
kRedBits = 5,
kGreenBits = 6,
kBlueBits = 5,
kAlphaShift = kRedBits+kGreenBits+kBlueBits,
kRedShift = kGreenBits+kBlueBits,
kGreenShift = kBlueBits,
kBlueShift = 0,
kAlphaMask = ((1 << kAlphaBits) - 1) << kAlphaShift,
kRedMask = ((1 << kRedBits) - 1) << kRedShift,
kGreenMask = ((1 << kGreenBits) - 1) << kGreenShift,
kBlueMask = ((1 << kBlueBits) - 1) << kBlueShift,
kRedBlueMask = kRedMask | kBlueMask
};
};
</code></pre>
http://stackoverflow.com/questions/205529/c-c-passing-variable-number-of-arguments-around10C/C++: Passing variable number of arguments around Vicent Marti2008-10-15T16:58:12Z2008-10-15T18:35:57Z
<p>Say I have a C function which takes a variable number of arguments: How can I call another function which expects a variable number of arguments from inside of it, passing all the arguments that got into the first function?</p>
<p>Example:</p>
<pre><code>void format_string(char *fmt, ...);
void debug_print(int dbg_lvl, char *fmt, ...) {
format_string(fmt, /* how do I pass all the arguments from '...'? */);
fprintf(stdout, fmt);
}
</code></pre>
http://stackoverflow.com/questions/192793/what-is-your-favorite-programmer-t-shirt/196082#1960824Answer by Vicent Marti for What is your favorite "programmer" t-shirt?Vicent Marti2008-10-12T21:05:13Z2008-10-12T21:05:13Z<p>Call me a fashion victim, but I like programming t-shirts which actually look good. These ones for instance are stylish enough for my nerdy desires:</p>
<p><img src="http://images.cafepress.com/product/166947554v0_350x350_Front_Color-BlackWhite.jpg" alt="alt text" /><img src="http://images.cafepress.com/product/56943194v2_240x240_Front_Color-BlackWhite.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/5138/webcomics-besides-xkcd/194731#194731-5Answer by Vicent Marti for Webcomics besides XKCDVicent Marti2008-10-11T22:14:46Z2008-10-11T22:14:46Z<p><a href="http://www.hyperdeathbabies.com/index.php?dir=anomaly&comic=1" rel="nofollow">Anomaly</a> by Kennedy Rose is the only thing that makes me really laugh lately. I also follow Saturday Morning Breakfast Cereal and Cyanide & Happiness.</p>
<p><img src="http://www.hyperdeathbabies.com/anomaly/images/209-cutting-edge.gif" alt="Anomaly" /></p>
http://stackoverflow.com/questions/53264/what-is-the-most-beautiful-code-you-have-ever-seen-or-written/175774#1757748Answer by Vicent Marti for What Is the most beautiful code you have ever seen or written?Vicent Marti2008-10-06T19:20:13Z2008-10-06T19:20:13Z<p>The Haskell prelude. Specially the List module.
Sample which gives me an erection:</p>
<pre><code>(++) :: [a] -> [a] -> [a]
[] ++ ys = ys
(x:xs) ++ ys = x : (xs ++ ys)
</code></pre>
http://stackoverflow.com/questions/172720/speeding-up-python/172737#1727374Answer by Vicent Marti for Speeding Up PythonVicent Marti2008-10-05T22:02:52Z2008-10-05T22:02:52Z<p>Run your app through the Python profiler.
Find a serious bottleneck.
Rewrite that bottleneck in C.
Repeat.</p>
http://stackoverflow.com/questions/153956/python-gui-application-redistribution4Python GUI Application redistributionVicent Marti2008-09-30T16:50:38Z2008-09-30T21:28:06Z
<p>I need to develop a small-medium sized desktop GUI application, preferably with Python as a language of choice because of time constraints.</p>
<p>What GUI library choices do I have which allow me to redistribute my application standalone, assuming that the users don't have a working Python installation and obviously don't have the GUI libraries I'm using either?</p>
<p>Also, how would I go about packaging everything up in binaries of <em>reasonable</em> size for each target OS? (my main targets are Windows and Mac OS X)</p>
<p><em>Addition:</em>
I've been looking at WxPython, but I've found plenty of horror stories of packaging it with cx_freeze and getting 30mb+ binaries, and no real advice on how to <em>actually</em> do the packaging and how trust-worthy it is.</p>
http://stackoverflow.com/questions/121018/is-it-possible-to-develop-for-the-iphone-without-an-iphone/121052#1210522Answer by Vicent Marti for Is it possible to develop for the iPhone without an iPhone?Vicent Marti2008-09-23T13:39:07Z2008-09-23T13:39:07Z<p>I'd say it depends on the kind of application you are developing. For a successful iPhone app, one which is properly integrated on the system, you are going to <em>need</em> to be able to test your tactile interface. That's hardly accomplished with the Emulator.</p>
<p>So, my answer is Yes, you do need an iPhone to develop iPhone apps. Fortunately, if you cannot afford one, an iPod Touch (200 bucks) is a very competent replacement. The underlying hardware is pretty much the same.</p>
http://stackoverflow.com/questions/36039/templates-spread-across-multiple-files9Templates spread across multiple filesVicent Marti2008-08-30T15:27:34Z2008-09-21T23:27:24Z
<p>C++ seems to be rather grouchy when declaring templates across multiple files. More specifically, when working with templated classes, the linker expect all method definitions for the class in a single compiler object file. When you take into account headers, other declarations, inheritance, etc., things get really messy. </p>
<p>Are there any general advice or workarounds for organizing or redistributing templated member definitions across multiple files?</p>
http://stackoverflow.com/questions/11459/increasing-battery-life-under-linux/104027#1040271Answer by Vicent Marti for Increasing Battery Life Under LinuxVicent Marti2008-09-19T17:46:46Z2008-09-19T17:46:46Z<p>Use a lightweight windows manager. You will be more productive and the lack of useless background processes and graphical bells and whistles will improve your battery life.</p>
<p>XMonad is victory, and Awesome WM is almost as cool. They are both tiling.</p>
http://stackoverflow.com/questions/88950/is-there-any-reason-to-not-ship-the-pdbs-with-your-application/88989#889891Answer by Vicent Marti for Is there any reason to not ship the pdb's with your application?Vicent Marti2008-09-18T00:43:44Z2008-09-18T00:43:44Z<p>Apart from the fact that they are extremely heavy in any serious project? No, there´s no reason if you don't mind people reverse engineering your software.</p>
http://stackoverflow.com/questions/87096/stl-alternative/87418#874181Answer by Vicent Marti for STL AlternativeVicent Marti2008-09-17T20:39:07Z2008-09-17T20:39:07Z<p>For big, performance critical applications, building your own containers specifically tailored to your needs may be worth the time investment.</p>
<p>I´m talking about <em>real</em> game development here.</p>
http://stackoverflow.com/questions/81797/is-it-ethical-legal-to-bring-your-favorite-code-with-you-after-a-job/81847#818471Answer by Vicent Marti for Is it ethical/legal to bring your favorite code with you after a job?Vicent Marti2008-09-17T10:30:45Z2008-09-17T10:30:45Z<p>As pointed out, there's really no point on keeping personal copies of anything that aren't small code snippets.</p>
<p>If you are a good developer, you'll find out in a few months that your "gold nuggets" aren't really worth a thing and you'll probably feel the urge to rewrite them in a better, clearer way.</p>
http://stackoverflow.com/questions/79090/whats-a-good-way-to-enter-the-professional-world-of-programming/79151#791514Answer by Vicent Marti for What's a good way to enter the professional world of programming?Vicent Marti2008-09-17T02:00:15Z2008-09-17T02:00:15Z<ol>
<li>Finish college.</li>
<li>Do [Google's Summer of Code][<a href="http://code.google.com/soc" rel="nofollow">http://code.google.com/soc</a>] every year to help pay the college bills, while earning extremely valuable experience and contacts in the Open Source world.</li>
</ol>
<p>Then, when you are done with college, get a real job.
It seems to be working for me -- then again, the government pays for most of my tuition bills.</p>
http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/79117#791170Answer by Vicent Marti for What do you use to keep notes as a developer?Vicent Marti2008-09-17T01:55:17Z2008-09-17T01:55:17Z<p>Every good text editor (and by good I mean Emacs and TextMate) has a mode/bundle for note taking, organization, etc.</p>
<p>Try ORG mode on Emacs, or the notes Bundle in TextMate. I use the latter.</p>
http://stackoverflow.com/questions/79023/c-gdb-gui/79050#790508Answer by Vicent Marti for C++ gdb GUIVicent Marti2008-09-17T01:45:42Z2008-09-17T01:45:42Z<p>Although I will get massively downranked for this, you won't find <em>anything</em> overlaying GDB which can compete with the raw power of the Visual Studio debugger. It's just too powerful, and it's just too well integrated inside the IDE. </p>
<p>For a Linux alternative, try DDD if free software is your thing.</p>
http://stackoverflow.com/questions/854113/why-would-you-choose-oo-language-over-functional-language/854370#854370Comment by Vicent Marti on Why would you choose OO language over functional language?Vicent Marti2009-05-12T19:23:30Z2009-05-12T19:23:30ZIf that's your main point versus Haskell, then good riddance. That "recursive" code (and a gazillion other examples) is translated by GHC to C in the same exact manner that you would write a 'strlen' function in C i.e. a loop. It's a trivial optimization. http://stackoverflow.com/questions/744055/gcc-inline-assembly-jump-to-label-outside-block/744108#744108Comment by Vicent Marti on GCC Inline Assembly: Jump to label outside blockVicent Marti2009-04-13T14:57:54Z2009-04-13T14:57:54ZActually, I've just fixed. Turns out you cannot have a 'continue' keyword between the two assembly jumps, or things go messy. :) Thanks!http://stackoverflow.com/questions/744055/gcc-inline-assembly-jump-to-label-outside-block/744108#744108Comment by Vicent Marti on GCC Inline Assembly: Jump to label outside blockVicent Marti2009-04-13T14:53:30Z2009-04-13T14:53:30ZHmm... This is strange. Your code does compile, however when doing the same thing in mine, the linker still complains about an undefined reference. :/http://stackoverflow.com/questions/744055/gcc-inline-assembly-jump-to-label-outside-block/744108#744108Comment by Vicent Marti on GCC Inline Assembly: Jump to label outside blockVicent Marti2009-04-13T14:43:13Z2009-04-13T14:43:13ZThat's the first thing I tried, doesn't work either. :/http://stackoverflow.com/questions/392349/modify-bound-variables-of-a-closure-in-python/392366#392366Comment by Vicent Marti on Modify bound variables of a closure in PythonVicent Marti2008-12-25T00:01:47Z2008-12-25T00:01:47ZCheers, that did the trick! A tad verbose, but it works.http://stackoverflow.com/questions/392349/modify-bound-variables-of-a-closure-in-python/392360#392360Comment by Vicent Marti on Modify bound variables of a closure in PythonVicent Marti2008-12-24T23:57:07Z2008-12-24T23:57:07ZThat's doesn't quite answer my problem, because I need to modify the values of closures which are already created. I.e. your answer requires me to create a new closure everytime I need to change the bound variables.http://stackoverflow.com/questions/172303/is-there-a-regular-expression-to-detect-a-valid-regular-expression/174440#174440Comment by Vicent Marti on Is there a regular expression to detect a valid regular expression?Vicent Marti2008-11-11T20:17:57Z2008-11-11T20:17:57ZI find it remarkably retarded to comment write code half-way in english, half-way in spanish, and to comment it with verbs such as "matchear".
Just pointing out.
http://stackoverflow.com/questions/244452/what-is-an-efficient-algorithm-to-find-area-of-overlapping-rectangles/244592#244592Comment by Vicent Marti on What is an Efficient algorithm to find Area of Overlapping RectanglesVicent Marti2008-10-28T20:34:45Z2008-10-28T20:34:45ZSLOWEST. THING. EVAAR.http://stackoverflow.com/questions/240715/how-will-you-evaluate-a-programmer-in-a-companys-annual-evaluationComment by Vicent Marti on How will you evaluate a programmer in a company's annual evaluation? Vicent Marti2008-10-27T17:28:28Z2008-10-27T17:28:28ZRetagged as subjective.http://stackoverflow.com/questions/231951/whats-the-next-thing-on-your-list-to-learn/232010#232010Comment by Vicent Marti on What's the next thing on your list to learn?Vicent Marti2008-10-24T06:57:14Z2008-10-24T06:57:14ZAlready checked it... IMHO it cannot really compete with TextMate right now. :/
Wish there was as an open source alternative to both of them.http://stackoverflow.com/questions/226970/whats-the-best-open-source-game-ever/227000#227000Comment by Vicent Marti on What's the best open source game ever?Vicent Marti2008-10-22T20:00:35Z2008-10-22T20:00:35ZAlthough originally commercial, the fact that these games are now released under the GPL make them the best open source games. Ever. You can't compete with Quake. You can't compete with what it means.http://stackoverflow.com/questions/219742/open-source-why-not-release-into-public-domainComment by Vicent Marti on Open Source: Why not release into Public Domain?Vicent Marti2008-10-20T23:33:22Z2008-10-20T23:33:22ZI just wanted to point out the fact that the acronym "IANAL" contains the words "I" and "ANAL". It may be something worth expanding when typing it.http://stackoverflow.com/questions/211535/fastest-way-to-do-a-case-insensitive-substring-search-in-c-cComment by Vicent Marti on Fastest way to do a case-insensitive substring search in C/C++?Vicent Marti2008-10-17T12:05:52Z2008-10-17T12:05:52ZThis is StackOverflow, not EgoOverflow.
I can't help but look at this post as a very lame attempt at bragging. Either way, I'm not impressed by your spaghetti code.http://stackoverflow.com/questions/206106/is-a-safe-way-to-convert-to-bool-in-c/206126#206126Comment by Vicent Marti on Is !! a safe way to convert to bool in C++?Vicent Marti2008-10-15T19:42:49Z2008-10-15T19:42:49ZGreat way when you work with mentally challenged people!http://stackoverflow.com/questions/205529/c-c-passing-variable-number-of-arguments-aroundComment by Vicent Marti on C/C++: Passing variable number of arguments around Vicent Marti2008-10-15T17:22:11Z2008-10-15T17:22:11ZExample doesn't make sense. It was just to show the outline of the code.