clarkupdike.blogspot.com
developer bits: March 2009
http://clarkupdike.blogspot.com/2009_03_01_archive.html
Friday, March 27, 2009. A Basic Example of JQuery's UI.Dialog Dynamically Loading an URL with an IFRAME. Given the momentum that JQuery has had lately with .Net, I wanted to try out loading a form into a "lightbox" as an alternative to writing a webpart for SharePoint. So a first step is just to get the "lightbox" approach working. I used the JQuery UI Build Your Download. DOCTYPE html html head. Link type=text/css href=././themes/base/ui.all.css rel=stylesheet /. Div id=divId title=Dialog Title. MarginW...
clarkupdike.blogspot.com
developer bits: September 2014
http://clarkupdike.blogspot.com/2014_09_01_archive.html
Friday, September 12, 2014. Git ignore pattern in a file not working? Watch out for spaces on the line! I couldn't figure out why a git ignore pattern applied via:. Git config - global core.excludesfile. Wasn't working. Turns out there were spaces at the end of the pattern line that were preventing it from working. According to the docs, spaces at the end of lines aren't supposed to matter:. Trailing spaces are ignored unless they are quoted with backlash (" "). Ref: http:/ git-scm.com/docs/gitignore.
clarkupdike.blogspot.com
developer bits: April 2009
http://clarkupdike.blogspot.com/2009_04_01_archive.html
Friday, April 17, 2009. SharePoint Feature Scope Changes Ignored. I ran into a situation where I had deployed a broadly scoped feature and then narrowed the feature scope down, but the feature was acting like it still had the original scope settings. The feature was a delegate control to deploy JQuery using the AdditionalPageHead delegate control, just like Jan Tielens described here. When I had the feature scoped to the site collection (. I'll also mention that I tried developing this with VSeWSS 1....
clarkupdike.blogspot.com
developer bits: Gnome Desktop Blank Screen (spinner never goes away)
http://clarkupdike.blogspot.com/2014/10/gnome-desktop-blank-screen-spinner.html
Wednesday, October 8, 2014. Gnome Desktop Blank Screen (spinner never goes away). The root cause of this issue was that GDM AutomaticLogin was enabled in /etc/gdm/custom.conf but the login account had an expired password. The problem went away when this was resolved. Using the Cloudera CDH Quickstart VM. The fix was to kill the gnome gdm-simple-slave process, which then automatically restarts. This would cause the console to flash and then the desktop would come up. This command will do it:. The Helicopt...
clarkupdike.blogspot.com
developer bits: August 2009
http://clarkupdike.blogspot.com/2009_08_01_archive.html
Monday, August 17, 2009. Annoying cache problem in FF3.0.x. If it ain't broke, fix it till it is. Of course nobody would do that intentionally, but what if something. Http:/ www.west-wind.com/Weblog/posts/469125.aspx. Http:/ forums.mozillazine.org/viewtopic.php? And using that (as suggested by jscher2000 in that second link). Here's how:. Http:/ kb.mozillazine.org/Creating a new Firefox profile on Windows. And FireBug, I was able to determine that the CSS file that didn't seem to be having any effect was...
clarkupdike.blogspot.com
developer bits: April 2010
http://clarkupdike.blogspot.com/2010_04_01_archive.html
Wednesday, April 21, 2010. Debugging Gotcha With .Net's System.Diagnostics.Debugger.Break(). In developing a SharePoint feature deployed at web application scope, I was trying to attach the debugger to the w3wp.exe process so I could see what was going on in my code. I used the iisapp command to try and pick the logical process. no dice. So then I connected to ALL of the w3wp process (there were 5 for them). It still wouldn't hit my breakpoint. So then I threw a. Subscribe to: Posts (Atom).
clarkupdike.blogspot.com
developer bits: Running Spark on Yarn from Outside the Cluster (a remote machine)
http://clarkupdike.blogspot.com/2014/12/running-spark-on-yarn-from-outside.html
Friday, December 12, 2014. Running Spark on Yarn from Outside the Cluster (a remote machine). In figuring out how to run Spark on Yarn from a machine that wasn't part of the cluster, I found that I (like a few others in the forums) was confused about how it works. I was trying to follow along here:. However, those instructions (and a lot of what I found in terms of documentation) seem to be oriented around running the client from a node in the Yarn cluster. Here's one thing that confused people:. Error: ...
clarkupdike.blogspot.com
developer bits: Installing IPython Notebook on Redhat
http://clarkupdike.blogspot.com/2015/02/installing-ipython-notebook-on-redhat.html
Monday, February 2, 2015. Installing IPython Notebook on Redhat. I wanted in install IPython Notebook and got tripped up on sqlite dependencies. Here is what worked:. Install support libraries for python 2.7. Yum groupinstall -y 'development tools'. Yum install -y zlib-devel bzip2-devel openssl-devel xz-libs wget sqlite-devel. Prepare, build and install python 2.7 as an alternate (don't mess with system python 2.6). Wget https:/ www.python.org/ftp/python/2.7.8/Python-2.7.8.tgz. Cd Python-2.7.8. Most of t...