User Chris - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T23:20:34Zhttp://stackoverflow.com/feeds/user/15578http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/629161/how-can-a-perl-script-know-its-own-memory-footprint/629186#6291864Answer by Chris for How can a Perl script know its own memory footprint?Chris2009-03-10T07:15:23Z2009-10-03T14:54:50Z<p>This will show you how:</p>
<p><a href="http://perldoc.perl.org/Devel/Peek.html" rel="nofollow">http://perldoc.perl.org/Devel/Peek.html</a></p>
<p>Also, <a href="http://perldoc.perl.org/perlguts.html" rel="nofollow">http://perldoc.perl.org/perlguts.html</a></p>
<p>and, man pages for perldebug and perldebguts.</p>
http://stackoverflow.com/questions/107017/detect-and-remove-rootkit/107113#1071131Answer by Chris for Detect And Remove RootkitChris2008-09-20T04:31:43Z2009-06-29T22:16:21Z<p>SysInternals stopped updating RootKit Revealer a couple of years ago.</p>
<p>The only sure way to detect a rootkit is to do an offline compare of installed files and filesystem metadata from a trusted list of known files and their parameters. Obviously, you need to trust the machine you are running the comparison from.</p>
<p>In most situations, using a boot cdrom to run a virus scanner does the trick, for most people.</p>
<p>Otherwise, you can start with a fresh install of whatever, boot it from cdrom, attach an external drive, run a perl script to find and gather parameters (size, md5, sha1), then store the parameters.</p>
<p>To check, run a perl script to find and gather parameters, then compare them to the stored ones.</p>
<p>Also, you'd need a perl script to update your stored parameters after a system update.</p>
<p>--Edit--
Updating this to reflect available techniques. If you get a copy of any bootable rescue cd (such as trinity or rescuecd) with an up-to-date copy of the program "chntpasswd", you'll be able to browse and edit the windows registry offline.</p>
<p>Coupled with a copy of the startup list from castlecops.com, you should be able to track down the most common run points for the most common rootkits. And always keep track of your driver files and what the good versions are too.</p>
<p>With that level of control, your biggest problem will be the mess of spaghetti your registry is left in after you delete the rootkit and trojans. Usually.</p>
<p>-- Edit --
and there are windows tools, too. But I described the tools I'm familiar with, and which are free and better documented.</p>
http://stackoverflow.com/questions/789964/visual-studio-2008-with-vista-glut-projects-gives-error-on-runtime/790192#7901920Answer by Chris for Visual Studio 2008 with Vista, GLUT projects gives error on runtime Chris2009-04-26T03:36:18Z2009-04-26T03:36:18Z<p>Did you try turning off DEP (data execution prevention) on your application?<br>
Right click on my computer and go into the virtual memory settings. Under the DEP tab, add your application to the ignore list.<br>
You might need a new glut.h, or to rewrite yours. I.e., a different GLUT library.<br></p>
http://stackoverflow.com/questions/784041/how-do-i-programatically-disable-hardware-prefetching/785090#7850902Answer by Chris for How do I programatically disable hardware prefetching?Chris2009-04-24T09:10:54Z2009-04-24T09:22:26Z<p>From the Intel reference:<br>
This instruction must be executed at privilege level 0 or in real-address mode; otherwise, a general protection exception #GP(0) will be generated. Specifying a reserved or unimplemented MSR address in ECX will also cause a general protection exception.<br>
<br>
...<br>
The CPUID instruction should be used to determine whether MSRs are supported (EDX[5]=1)
before using this instruction.<br>
<br>
So, your fault might be related to a cpu that doesn't support MSRs or using the wrong MSR address.<br>
<br>
There are lots of examples of using the MSRs in the kernel source:<br><br>
In the kernel source, for a single cpu, it demonstrates disabling prefetch for the Xeon in arch/i386/kernel/cpu/intel.c, in the function:<br>
<br>
static void __cpuinit Intel_errata_workarounds(struct cpuinfo_x86 *c)<br>
<br>
The rdmsr function arguments are the msr number, a pointer to the low 32 bit word, and a pointer to the high 32 bit word.<br>
The wrmsr function arguments are the msr number, the low 32 bit word value, and the high 32 bit word value.<br>
<br>
multi-core or smp systems have to pass the cpu struct in as the first argument:<br>
void rdmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 *l, u32 *h);<br>
void wrmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 l, u32 h);<br>
<br></p>
http://stackoverflow.com/questions/745901/how-to-do-a-cron-job-every-72-minutes/745914#74591412Answer by Chris for How to do a cron job every 72 minutesChris2009-04-14T00:36:54Z2009-04-23T23:40:23Z<p>Use at (man at). Have your app or startup script calculate a startup time 72 minutes in the future and schedule itself to run again before it starts working.<br>
<br>
Available on windows xp and vista too.
<br><br>
Here's an example for gnu/linux: at -f command.sh now + 72 minutes</p>
http://stackoverflow.com/questions/591536/can-we-modify-the-int-0x80-routine/591630#5916305Answer by Chris for can we modify the int 0x80 routineChris2009-02-26T17:44:42Z2009-02-28T19:39:48Z<p>UPDATE:<br>
1. the 0x80 handler is essentially the same between 2.4 and 2.6, although the function called from the handler is called by the 'syscall' instruction handler for x86-64 in 2.6.
2. the 0x80 handler can be modified like the rest of the kernel.<br>
3. You won't break anything by modifying it, unless you remove backwards compatibility. E.g., you can add your own trace or backdoor if you feel so inclined. The other post that says you will break your libs and toolchain if you modify the handler is incorrect. If you break the dispatch algorithm, or modify the dispatch table incorrectly, then you will break things.<br>
3a. As I originally posted, the best way to extend the 0x80 service is to extend the system call handler.<br>
<br>
As the kernel source says:<br></p>
<pre>What: The kernel syscall interface
Description:
This interface matches much of the POSIX interface and is based
on it and other Unix based interfaces. It will only be added to
over time, and not have things removed from it.
<pre><code> Note that this interface is different for every architecture
that Linux supports. Please see the architecture-specific
documentation for details on the syscall numbers that are to be
mapped to each syscall.
</code></pre>
<p></pre><br>
The system call table entries for i386 are in:<br>
<code>arch/i386/kernel/syscall_table.S</code><br>
<br>
Note that the table is a sequence of pointers, so if you want to maintain a degree of forward compatibility with the kernel maintainers, you'd need to pad the table before placement of your pointer.<br>
<br>
The syscall vector number is defined in <code>irq_vectors</code>.h<br>
Then traps.c sets the address of the <code>system_call</code> function via <code>set_system_gate</code>, which places the entry into the interrupt descriptor table. The <code>system_call</code> function itself is in entry.S, and calls the requested pointer from the system call table.
<br>
There are a few housekeeping details, which you can see reading the code, but direct modification of the 0x80 interrupt handler is accomplished in entry.S inside the <code>system_call</code> function. In a more sane fashion, you can modify the system call table, inserting your own function without modifying the dispatch mechanism.<br>
<br>
In fact, having read the 2.6 source, it says directly that int 0x80 and x86-64 syscall use the same code, so far. So you can make portable changes for x86-32 and x86-64.<br>
END Update<br>
<br>
The INT 0x80 method invokes the system call table handler. This matches register arguments to a call table, invoking kernel functions based on the contents of the EAX register. You can easily extend the system call table to add custom kernel API functions.<br>
<br>
This may even work with the new syscall code on x86-64, as it uses the system call table, too.<br>
<br>
If you alter the current system call table in any manner other than to extend it, you will break all dependent libraries and code, including libc, init, etc.<br>
<br>
Here's the current Linux system call table: <a href="http://asm.sourceforge.net/syscall.html" rel="nofollow">http://asm.sourceforge.net/syscall.html</a><br></p>
http://stackoverflow.com/questions/591478/better-control-over-emacs-windows/591558#5915581Answer by Chris for Better control over emacs windowsChris2009-02-26T17:31:50Z2009-02-26T17:31:50Z<p>This question has always bugged me too. I found this:<br>
<br>
<a href="http://www.gnu.org/software/emacs/elisp/html_node/Choosing-Window.html" rel="nofollow">http://www.gnu.org/software/emacs/elisp/html_node/Choosing-Window.html</a><br>
<br>
It looks like you can use (setf pop-up-frames t) to make stuff show up in a new frame.<br>
<br>
Also, it looks like you can use display-buffer-function to override the display function (how buffers are chosen.) Of course, you'd have to be good at elisp.<br></p>
http://stackoverflow.com/questions/576761/why-do-we-need-zonehighmem-on-x86/576791#5767911Answer by Chris for why do we need zone_highmem on x86?Chris2009-02-23T07:25:09Z2009-02-23T07:34:30Z<p>Look Here: <a href="http://www.xml.com/ldd/chapter/book/ch13.html" rel="nofollow">http://www.xml.com/ldd/chapter/book/ch13.html</a><br>
<br>
Kernel low memory is the 'real' memory map, addressed with 32-bit pointers on x86.<br>
<br>
Kernel high memory is the 'virtual' memory map, addressed with virtual structures on x86.<br>
<br>
You don't want to map it all into the kernel address space, because you can't always address all of it, and you need most of your memory for virtual memory segments (virtual, page-mapped process space.)<br>
<br>
At least, that's how I read it. Wow, that's a complicated question you asked.<br>
<br>
To throw more confusion, chapter 13 talks about some PCI devices not being able to address the 32-bit space, which was the genesis of my previous comment:<br>
<br>
On x86, some kernel memory usage is limited to the first Gigabyte of memory bacause of DMA addressing concerns. I'm not 100% familiar with the topic, but there's a comapatibility mode for DMA on the PCI bus. That may be what you are looking at.<br></p>
http://stackoverflow.com/questions/576750/is-there-a-standard-command-line-tool-for-unix-for-piping-to-a-socket/576758#5767585Answer by Chris for Is there a standard command-line tool for unix for piping to a socket?Chris2009-02-23T07:05:20Z2009-02-23T07:05:20Z<p>netcat will help establish a pipe over the network.</p>
http://stackoverflow.com/questions/572283/what-is-the-underlying-transport-for-d-bus/572287#5722872Answer by Chris for What is the underlying transport for D-Bus?Chris2009-02-21T04:42:30Z2009-02-21T04:49:47Z<p>Apparently, IPC or TCP/IP:<br>
<br>
<a href="http://www.freedesktop.org/wiki/Software/dbus" rel="nofollow">http://www.freedesktop.org/wiki/Software/dbus</a><br>
Update:<br>
I mean, multiple IPC methods on different OS's, plus TCP/IP.<br>
<a href="http://dbus.freedesktop.org/doc/dbus-daemon.1.html" rel="nofollow">http://dbus.freedesktop.org/doc/dbus-daemon.1.html</a> shows that the unix reference edition uses both unix domain sockets and tcp/ip.</p>
http://stackoverflow.com/questions/556152/remote-assistance-linux-to-windows/556164#5561643Answer by Chris for Remote assistance Linux to WindowsChris2009-02-17T10:06:06Z2009-02-17T10:06:06Z<p>There's an app, Remotedesktop Client. Comes with Debian, so you should be able to install it. It is an RDP client, and can connect to XP and Windows 2003 server, and other versions what support RDP. Remotedesktop Client is the Gnome frontend to rdesktop.<br>
<br>
You have to allow 'remote desktop connections' in the target XP machine.<br></p>
http://stackoverflow.com/questions/481602/how-to-validate-a-user-through-an-ajax-request/482095#4820951Answer by Chris for How to validate a user through an AJAX request?Chris2009-01-27T01:57:50Z2009-01-27T01:57:50Z<p>Relying on HTTP_REFERER isn't the way to go. You want your client's website to use an API to contact your website over a secure link, and get a temporary session string, which is then used as part of the source url for the IFRAME, which is how google does it (not with referer.)<br>
<br>
Make the url for the IFRAME valid for a limited time, after which you display a nice message about going back to the client's page to start over.<br>
<br></p>
http://stackoverflow.com/questions/481461/creating-3d-model-then-determine-dimensions/481993#4819931Answer by Chris for Creating 3D Model then determine dimensionsChris2009-01-27T00:56:19Z2009-01-27T01:33:26Z<p>What you're talking about is depth mapping, or 'disparity mapping', which is the basis of stereoscopic computer vision. The OpenCV project has libraries which do this. I don't know if they directly convert into a rotatable 3D object, which may be what you are looking for, but they probably come close.<br>
<br>
<a href="http://opencv.willowgarage.com/wiki/" rel="nofollow">http://opencv.willowgarage.com/wiki/</a><br>
<a href="http://en.wikipedia.org/wiki/OpenCV" rel="nofollow">http://en.wikipedia.org/wiki/OpenCV</a><br>
<br>
<br>
The dimension part is a little harder. The libraries can identify objects, but that would just give you 'common' dimension. If you were using stereoscopic imaging with two cameras, you could determine real depth, and therefore dimensions, from multiple samples.<br>
<br>
The problem is difficult, really difficult, otherwise (i.e., impossible.)<br></p>
http://stackoverflow.com/questions/355030/is-it-possible-to-avoid-a-wakeup-waiting-race-using-only-posix-semaphores-is-i/355368#355368-1Answer by Chris for Is it possible to avoid a wakeup-waiting race using only POSIX semaphores? Is it benign?Chris2008-12-10T07:48:27Z2008-12-10T13:44:50Z<p>You are looking for: pthread_cond_wait, pthread_cond_signal, I think.<br>
That's if you are using posix threads, then the pthread methods would supply the functionality of CondWait and Signal.<br>
Look here for source code on multiprocess pthreads via shared memory.<br>
<a href="http://linux.die.net/man/3/pthread_mutexattr_init" rel="nofollow">http://linux.die.net/man/3/pthread_mutexattr_init</a><br>
That's for Linux, but the documents are posix. They're similar to Solaris, but you'll want to peruse the man pages on your OS.<br></p>
http://stackoverflow.com/questions/120420/image-icon-beside-the-site-url/120427#120427-3Answer by Chris for Image icon beside the site URLChris2008-09-23T11:31:09Z2008-12-09T23:16:21Z<p>It was originally a windows icon format file, stored under the URL <a href="http://site/favicon.ico" rel="nofollow">http://site/favicon.ico</a>. Most sites still use favicon.ico, and many browsers still automatically look there, regardless of the meta tags.</p>
http://stackoverflow.com/questions/344262/resize-encrypted-windows-partition/345122#3451221Answer by Chris for Resize Encrypted Windows PartitionChris2008-12-05T21:00:42Z2008-12-05T21:00:42Z<p>No, a partition resizer must actually modify the underlying file system. Because the drive is encrypted, you would need a 'SafeBoot' aware partition resizer. I don't know of any.</p>
http://stackoverflow.com/questions/342497/crawling-spidering-getting-data/342635#3426350Answer by Chris for Crawling, spidering, getting dataChris2008-12-05T01:23:10Z2008-12-05T01:23:10Z<p>Just one program that will do what you're talking about is nmap from insecure.org (author is fyodor if I remember correctly.) Works on multiple platforms. It might be useful to start with one of the dozens to hundreds of available network and infrastructure scanners out there to get an idea of what you can do, and how to do it.</p>
http://stackoverflow.com/questions/342008/is-there-a-gtk-terminal-component-that-can-be-used-under-windows/342571#3425711Answer by Chris for Is there a GTK terminal component that can be used under Windows?Chris2008-12-05T00:53:52Z2008-12-05T00:53:52Z<p>Gnuplot wxt provides a terminal which is compiled with GTK on X and uses the win32 API on windows. It uses the WxWindows interface to compile into both environments.</p>
http://stackoverflow.com/questions/319900/what-should-i-teach-a-beginning-perl-programmer/319942#3199424Answer by Chris for What should I teach a beginning Perl programmer?Chris2008-11-26T06:56:12Z2008-11-26T06:56:12Z<p>That's basically a task-oriented question.</p>
<p>If they are to use it for parsing, show them how easy manipulating STDIN and file i/o is.</p>
<p>If they are going to use it for databases, show them how to get hashrefs from query results and that should wow them.</p>
<p>Perl usually has some way to make just about any task super-quick. Pick out the task they need to do.</p>
<p>But definitely teach them to use my and local. Stress the importance of my and that will make their experiences happier.</p>
http://stackoverflow.com/questions/312124/opengl-how-to-avoid-texture-scaling/312377#3123773Answer by Chris for opengl: how to avoid texture scalingChris2008-11-23T10:44:25Z2008-11-23T23:24:18Z<p>Create the 3D object in question, without displaying it.<br>
<br>
You can get the bounds of the object as pixel locations by using gluProject (to get the pixels that represent the object's edges. You can then use gluUnProject to map the intervening pixels to the object's coordinates.<br>
<br>
Then, you start your draw over, and map a custom (on-the-fly) texture over the same object and display it.<br>
<br>
Not sure why you'd want to do this, but that should be a good starting point.<br>
<br>
Edit:<br>
<br>
What I mean by custom, is if the bounds of your object (in one dimension,) are -3.0 to 1.0, and the first pixel row is from -3.0 to -2.0, your texture map is going to indicate that 25% of your custom texture maps over that spot, and you create it all with the color of the pixel you want to show there.<br>
<br>
After thinking that through, I realized you could just draw a texture over the top of the projected screen coordinates (using the 2D drawing facilities.)<br>
<br>
I think that gets the gist of your idea across. I don't think it would work well in an interactive 3D demo, if the 'object' comes closer and moves away, if the texture doesn't seem to scale up and down. But you didn't say what you were actually doing.<br>
<br>
Edit 2:<br>
<br>
OpenGL 2D Projection:<br>
<br>
<br>
CAUTION<br>
Careful with the function names, e.g., opengles 1.1 has glOrthox and glOrthof. Make sure you check what is available in your gl.h header file.<br>
<br>
const XSize = 640, YSize = 480<br>
glMatrixMode (GL_PROJECTION)<br>
glLoadIdentity ()<br>
glOrtho (0, XSize, YSize, 0, 0, 1)<br>
glMatrixMode (GL_MODELVIEW)<br>
glDisable(GL_DEPTH_TEST)<br>
glClear(GL_COLOR_BUFFER_BIT)<br>
<br>
// Now draw with 2i or 2f vertices instead of the normal vertex3f functions.<br>
// And for ES, of course set up your data structures and call drawarrays ofr drawelements.<br>
<br>
SwapBuffers()<br>
<br>
This will allow you to draw 2D shapes in OpenGL (much more simply than using 3D projections.) To mix the two, e.g., draw in 3D then in 2D, follow the second link.<br>
<br>
Here's an excellent tutorial on 2D drawing:<br>
<a href="http://basic4gl.wikispaces.com/2D+Drawing+in+OpenGL" rel="nofollow">http://basic4gl.wikispaces.com/2D+Drawing+in+OpenGL</a><br>
<br>
Here's the basics on mixing the two:<br>
<a href="http://www.gamedev.net/community/forums/topic.asp?topic_id=96440" rel="nofollow">http://www.gamedev.net/community/forums/topic.asp?topic_id=96440</a><br>
<br>
I hope that is what you want. I get a sneaking suspicion from your post that you're having trouble mapping your texture across triangle points to make it show up 'straight'. You might want to review basic texture mapping on NeHe:<br>
<a href="http://www.gamedev.net/community/forums/topic.asp?topic_id=96440" rel="nofollow">http://www.gamedev.net/community/forums/topic.asp?topic_id=96440</a><br>
E.g., gltexcoord2f specifies the point (0.0-1.0) within the texture in terms of the percentage of width and height of the texture that maps to the next drawn vertex. With triangle fans, you can have some mathematical conniptions to figure out what % of width and height of the overall object you are specifying with the vertex.<br>
<br>
Take, for example, a sphere with a texture map (a mercator projection of the earth,) is best mapped by calculating the lines of latitude as a basis for your underlying triangle fan vertex values, as it eases calculation of the texture coordinates. Making your polygons approximate simple geometric shapes allows you to use trigonometry to more easily calculate texture coordinates.<br>
<br>
I hope this is helpful.<br>
<br>
Hehere, I'll quit going on with desktop examples you have to modifiy. Here's an OpenGLES example that does proper 3D texture mapping. You can use what I said above, and this example, to do 2D texture mapping.<br>
<a href="http://www.zeuscmd.com/tutorials/opengles/17-TextureMapping.php" rel="nofollow">http://www.zeuscmd.com/tutorials/opengles/17-TextureMapping.php</a><br></p>
http://stackoverflow.com/questions/310947/solaris-filemerge-and-pstack-equivalents-for-linux/312399#3123991Answer by Chris for solaris filemerge and pstack equivalents for linuxChris2008-11-23T11:13:47Z2008-11-23T11:13:47Z<p>gdb -ex bt program_file core_file should print out the stack trace of the core file.</p>
<p>As for filemrege, there's a bunch of open source stuff:</p>
<p>tkdiff
meld
mgdiff
kdiff3</p>
http://stackoverflow.com/questions/312357/suggested-platform-tools-for-rapid-game-development-and-game-prototyping/312371#3123713Answer by Chris for Suggested platform/tools for rapid game development and game prototypingChris2008-11-23T10:37:00Z2008-11-23T10:37:00Z<p><a href="http://wiki.blender.org/index.php/Game_Engine" rel="nofollow">http://wiki.blender.org/index.php/Game_Engine</a></p>
<p>Blender Game Engine is a 3D game development environment with a Python based 'AI' system.</p>
http://stackoverflow.com/questions/300935/definition-of-a-binary-search-tree/300968#3009684Answer by Chris for Definition of a binary search treeChris2008-11-19T04:08:53Z2008-11-19T05:28:42Z<p>Many algorithms will specify that duplicates are excluded. For example, the example algorithms in the MIT Algorithms book usually present examples without duplicates. It is fairly trivial to implement duplicates (either as a list at the node, or in one particular direction.)</p>
<p>Most (that I've seen) specify left children as <= and right children as >. Practically speaking, a BST which allows either of the right or left children to be equal to the root node, will require extra computational steps to finish a search where duplicate nodes are allowed.</p>
<p>It is best to utilize a list at the node to store duplicates, as inserting an '=' value to one side of a node requires rewriting the tree on that side to place the node as the child, or the node is placed as a grand-child, at some point below, which eliminates some of the search efficiency.</p>
<p>You have to remember, most of the classroom examples are simplified to portray and deliver the concept. They aren't worth squat in many real-world situations. But the statement, "every element has a key and no two elements have the same key", is not violated by the use of a list at the element node.</p>
<p>So go with what your data structures book said!</p>
<p>Edit:</p>
<p>Universal Definition of a Binary Search Tree involves storing and search for a key based on traversing a data structure in one of two directions. In the pragmatic sense, that means if the value is <>, you traverse the data structure in one of two 'directions'. So, in that sense, duplicate values don't make any sense at all.</p>
<p>This is different from BSP, or binary search partition, but not all that different. The algorithm to search has one of two directions for 'travel', or it is done (successfully or not.) So I apologize that my original answer didn't address the concept of a 'universal definition', as duplicates are really a distinct topic (something you deal with after a successful search, not as part of the binary search.)</p>
http://stackoverflow.com/questions/279990/where-can-i-find-sample-code-on-mouse-movements-and-polygon-spins-in-opengl/280032#2800321Answer by Chris for Where can I find sample code on mouse movements and polygon spins in OpenGL?Chris2008-11-11T04:45:33Z2008-11-11T04:45:33Z<p>You'd probably find this useful:</p>
<p><a href="http://pepijn.fab4.be/software/nehe-java-ports/" rel="nofollow">http://pepijn.fab4.be/software/nehe-java-ports/</a></p>
http://stackoverflow.com/questions/279945/set-permissions-on-a-compressed-file-in-python/279975#2799751Answer by Chris for Set permissions on a compressed file in pythonChris2008-11-11T04:10:07Z2008-11-11T04:37:12Z<p>Per the documentation, unzip sets the permissions to those stored, under unix. Also, the shell umask is not used. Your best bet is to make sure the perms are set before you zip the file.</p>
<p>Since you can't do that, you will have to try and do what you were trying to do (and get it to work under Debian.)</p>
<p>There have been a number of issues with Pythons zipfile library, including setting the mode of writestr to that of the file being written on some systems, or setting the zip systm to windows instead of unix. So your inconsistent results may mean that nothing has changed.</p>
<p>So you may be completely out of luck.</p>
http://stackoverflow.com/questions/234367/web-site-as-image-clip-art-libray-with-reference/234569#2345691Answer by Chris for Web site as image/clip art libray with reference?Chris2008-10-24T17:43:29Z2008-10-24T17:52:51Z<p>Typically sites discourage this. What this really does is shift the bandwidth cost to the hosting site. There have been cases where sites with pictures have analyzed the referrer to determine if images are linked to from other sites, then servering an image with text claiming the image is being 'stolen'.</p>
<p>The point of that, is the idea isn't very well liked.</p>
<p>However, some sites like w3c, allow you to link to their certification images. It all depends on what you are linking to.</p>
<p>It is hard to think of a business doing this, as there doesn't seem to be a revenue aspect.</p>
<p>Even if some were charged fees, there's a lot of work involved in checking/verifying who has paid, via referrer texts. Maybe you have a new business plan.</p>
<p>Update:
Oh, I have a friend who always sends me emails with links to flickr. Maybe their license lets you link to images on their site. Something for you to check out.</p>
<p>Update:
This text, "photo hosting sites", makes for an interesting, relevant google search.</p>
http://stackoverflow.com/questions/234479/determining-the-line-terminator-in-emacs/234495#2344950Answer by Chris for determining the line terminator in emacsChris2008-10-24T17:30:50Z2008-10-24T17:30:50Z<p>Open the file in emacs using find-file-literally. If lines have ^M symbols at the end, it expects a windows format text file.</p>
http://stackoverflow.com/questions/233192/detecting-stealth-web-crawlers/233465#2334652Answer by Chris for Detecting 'stealth' web-crawlersChris2008-10-24T13:08:06Z2008-10-24T14:18:07Z<p>One thing you didn't list, that are used commonly to detect bad crawlers.</p>
<p>Hit speed, good web crawlers will break their hits up so they don't deluge a site with requests. Bad ones will do one of three things:</p>
<ol>
<li>hit sequential links one after the other</li>
<li>hit sequential links in some paralell sequence (2 or more at a time.)</li>
<li>hit sequential links at a fixed interval</li>
</ol>
<p>Also, some offline browsing programs will slurp up a number of pages, I'm not sure what kind of threshold you'd want to use, to start blocking by IP address.</p>
<p>This method will also catch mirroring programs like fmirror or wget.</p>
<p>If the bot randomizes the time interval, you could check to see if the links are traversed in a sequential or depth-first manner, or you can see if the bot is traversing a huge amount of text (as in words to read) in a too-short period of time. Some sites limit the number of requests per hour, also.</p>
<p>Actually, I heard an idea somewhere, I don't remember where, that if a user gets too much data, in terms of kilobytes, they can be presented with a captcha asking them to prove they aren't a bot. I've never seen that implemented though.</p>
Update on Hiding Links
<p>As far as hiding links goes, you can put a div under another, with CSS (placing it first in the draw order) and possibly setting the z-order. A bot could not ignore that, without parsing all your javascript to see if it is a menu. To some extent, links inside invisible DIV elements also can't be ignored without the bot parsing all the javascript.</p>
<p>Taking that idea to completion, uncalled javascript which could potentially show the hidden elements would possilby fool a subset of javascript parsing bots. And, it is not a lot of work to implement.</p>
http://stackoverflow.com/questions/233358/elf-file-headers/233408#2334080Answer by Chris for ELF file headersChris2008-10-24T12:55:13Z2008-10-24T12:55:13Z<p>You might be able to use libmelf, a dead project on freshmeat, but available from LOPI - <a href="http://www.ipd.bth.se/ska/lopi.html" rel="nofollow">http://www.ipd.bth.se/ska/lopi.html</a></p>
<p>Otherwise, you can get the spec and (over)write the header yourself.</p>
http://stackoverflow.com/questions/232228/whats-the-best-method-to-use-store-encryption-keys-in-mysql/232352#2323521Answer by Chris for What's the best method to use / store encryption keys in MySQLChris2008-10-24T03:02:21Z2008-10-24T03:02:21Z<p>It seems that you are considering the use of a 'column-specific' key to use with 'AES_ENCRYPT' and 'AES_DECRYPT'. As the commenter said, this is a bad idea, because any intrusion will have access to all the data.</p>
<p>If you use a 'user-supplied' password, with/without a salt, you are being much more secure.</p>
<p>That said, if the encryption key is only readable by the application using it, you are probably 'good enough'. If the machine is broken into, they're going to get your data faster with a single key though.</p>
http://stackoverflow.com/questions/107017/detect-and-remove-rootkitComment by Chris on Detect And Remove RootkitChris2009-06-29T22:24:36Z2009-06-29T22:24:36ZIf the comment "belongs-on-serverfault" means it isn't programming related, I guess that is relative, because I described below a way to write a program to detect rootkits.http://stackoverflow.com/questions/107017/detect-and-remove-rootkit/107113#107113Comment by Chris on Detect And Remove RootkitChris2009-06-29T22:11:53Z2009-06-29T22:11:53ZThat's not what the question asked, Boyd. The question asked how to detect and remove a rootkit. I described some of the necessary preconditions to do so. Your comment is not relevant to the topic, or even my response.http://stackoverflow.com/questions/784041/how-do-i-programatically-disable-hardware-prefetching/785090#785090Comment by Chris on How do I programatically disable hardware prefetching?Chris2009-04-28T03:22:46Z2009-04-28T03:22:46ZIt was right after 2.6.18 was chosen for Debian, the patch was introduced in january-2007 according to lkml.org: <a href="http://lkml.org/lkml/2007/1/18/91" rel="nofollow">lkml.org/lkml/2007/1/18/91</a>http://stackoverflow.com/questions/784041/how-do-i-programatically-disable-hardware-prefetching/785090#785090Comment by Chris on How do I programatically disable hardware prefetching?Chris2009-04-28T03:15:49Z2009-04-28T03:15:49ZI forget exactly, but that sound about right.http://stackoverflow.com/questions/790196/what-are-the-implications-of-half-duplex-serial-connections/790222#790222Comment by Chris on What are the implications of half-duplex serial connections?Chris2009-04-26T04:16:01Z2009-04-26T04:16:01ZAnd I have never, ever seen a serial port without dedicated send/receive pins.http://stackoverflow.com/questions/790196/what-are-the-implications-of-half-duplex-serial-connections/790222#790222Comment by Chris on What are the implications of half-duplex serial connections?Chris2009-04-26T04:14:26Z2009-04-26T04:14:26ZWell, I stand corrected.http://stackoverflow.com/questions/790196/what-are-the-implications-of-half-duplex-serial-connections/790219#790219Comment by Chris on What are the implications of half-duplex serial connections?Chris2009-04-26T04:09:20Z2009-04-26T04:09:20ZActually, my comment on flow control is a bit terse. There are software and hardware methods to allow asynchronous communications. Also, there are extra wires to allow the receiver to signal it is ready to receive, to help stop buffer overflow. You need to read a particular UART's data sheet (and probably a particular serial port's data sheet.)http://stackoverflow.com/questions/784041/how-do-i-programatically-disable-hardware-prefetchingComment by Chris on How do I programatically disable hardware prefetching?Chris2009-04-26T00:30:20Z2009-04-26T00:30:20ZSo your premise is that extra memory which is prefetched is actually not useful?<br>
Intel discusses this at length: <a href="http://software.intel.com/en-us/articles/how-to-choose-between-hardware-and-software-prefetch-on-32-bit-intel-architecture/<br>" rel="nofollow">software.intel.com/en-us/articles/…</a>;
http://stackoverflow.com/questions/784041/how-do-i-programatically-disable-hardware-prefetchingComment by Chris on How do I programatically disable hardware prefetching?Chris2009-04-26T00:15:33Z2009-04-26T00:15:33Z.globl _start
.text
_start:
pusha
mov msr_pf,%ecx
// OF 32
rdmsr
mov %edx, hi
mov %eax, lo
popa
mov $1,%eax ; // terminate process
mov $0,%ebx ; // result status
int $0x80 ; // system call
.data
.align 8, 0xff
lo: .word 0
hi: .word 0
msr_pf: .word 0x1A0
save all that in a file: rdmsr.s
Then:
as rdmsr.s -o rdmsr.o
ld rdmsr.o -o rdmsr
If you could run that in ring 0, it would work just fine.
http://stackoverflow.com/questions/625236/vbulletin-cannot-connect-to-mysql-databaseComment by Chris on VBulletin cannot Connect to MySQL Database. Chris2009-03-09T07:14:17Z2009-03-09T07:14:17ZThis is probably a question you should be asking your ISP. I'd guess that you need to create a whole new database for the new doman name. Often hosted services are given network access to only specific database machines.http://stackoverflow.com/questions/603365/socket-passing-between-processesComment by Chris on socket passing between processesChris2009-03-02T18:32:11Z2009-03-02T18:32:11ZYou can use a named pipe to redirect i/o from multiple client processes. Not a shared socket but pretty simple. <a href="http://msdn.microsoft.com/en-us/library/aa365590(VS.85).aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>http://stackoverflow.com/questions/598318/when-talking-about-programming-languages-what-is-the-definition-of-magic/598338#598338Comment by Chris on When talking about programming languages, what is the definition of Magic?Chris2009-02-28T18:08:08Z2009-02-28T18:08:08ZIn the 'way back', "black magic" was just a really tight piece of machine code. Also, the use of uncommon or undocumented interfaces. In short, demonstrating great skill and knowledge of the system architecture.http://stackoverflow.com/questions/118307/a-way-to-determine-a-processs-real-memory-usage-i-e-private-dirty-rss/118726#118726Comment by Chris on A way to determine a process's "real" memory usage, i.e. private dirty RSS?Chris2009-02-15T18:18:48Z2009-02-15T18:18:48ZAny unused memory in your example would still show up in the VIRT total. And the RES total would reflect any unused memory (i.e., not show it.) At least, that's theway it seems to work on Debian x86.http://stackoverflow.com/questions/84859/writing-data-over-rxtx-using-usbserial/115004#115004Comment by Chris on Writing data over RxTx using usbserial?Chris2009-02-15T18:10:57Z2009-02-15T18:10:57ZI deleted my answer because it looked like a better one was given.http://stackoverflow.com/questions/98383/how-do-i-setup-a-networked-drive-through-a-vpn-server/98411#98411Comment by Chris on How do I setup a networked drive through a VPN server?Chris2009-01-27T01:46:44Z2009-01-27T01:46:44ZWow, I look back at this and I'm surprised that my answer helped you. Duh. Besides, now that I look it over, this is a bit off-topic for this site. My answer should have read, I think, connect a machine that can read the drive and export a windows share to your network.