Although I have found similar questions on this site they were not what I was looking for.
I have modified the source code of an MIT licensed project, and I have added new classes to it as well. Please correct me if I am wrong, but I think that it is legal to add my copyright notice above the license and remove the other one. But how should I…
When you create a Publishing site that has anonymous access enabled, you will notice that anonymous users will not be able to access pages that reside in the “_layouts” virtual directory (e.g. http://siteX/_layouts/viewlsts.aspx). This is because the publishing infrastructure activates a hidden feature that prevents anonymous users from…
We are announcing the availability of the LinqPad driver for StreamInsight 2.1. The purpose of this blog post is to offer a quick introduction into the new features that we added to the StreamInsight LinqPad driver. We’ll show you how to connect to a remote server, how to inspect the entities present of that server, how to compose on…
Some company is selling software through Apple's App Store which uses portions of code that I released publicly under the GPL. The company is violating the licensing terms in two ways, by (1) not preserving my copyright statement, and not releasing their code under the GPL license and (2) by distributing my GPL-licensed code through…
One option for achieving step 1 in the Live Debugging process is attaching to an already running instance of the process that hosts your code, and this is a good place for me to talk about debug engines. You can attach to a process by selecting the "Debug" menu and then the "Attach To Process…" menu in Visual Studio 11 (Ctrl+Alt+P…
I've been experiencing this problem for quite a while, and it's quite frustrating. I'll do a traceroute, to www.l.google.com, for example. This is the result (please note: I will replace some parts of personal information with text - i.e. ISP.IP is in reality an actual IP address, and ISPNAME replaces the actual ISP name):
Tracing…
I was going through some PHP functions and I could not help notice the following:
<?php
function foo(&$var) { }
foo($a); // $a is "created" and assigned to null
$b = array();
foo($b['b']);
var_dump(array_key_exists('b', $b)); // bool(true)
$c = new StdClass;
foo($c->d);
var_dump(property_exists($c, 'd')); //…
I was going through some PHP functions and I could not help notice the following:
<?php
function foo(&$var) { }
foo($a); // $a is "created" and assigned to null
$b = array();
foo($b['b']);
var_dump(array_key_exists('b', $b)); // bool(true)
$c = new StdClass;
foo($c->d);
var_dump(property_exists($c, 'd')); //…
We are announcing the availability of the LinqPad driver for StreamInsight 2.1. The purpose of this blog post is to offer a quick introduction into the new features that we added to the StreamInsight LinqPad driver. We’ll show you how to connect to a remote server, how to inspect the entities present of that server, how…
I have content that appears within a corporate website inside an iframe. Several departments contribute their own CSS files to manage the overall UI and design.
My problem is that they may use selectors for elements like td (for instance), without notice. Of course that will affect my own content in the frame unless I…
Hi all, today we would like to show you another improvement we have
prepared for NetBeans 7.2. Today, let's talk a little bit about remote synchronization.
If you already use our simple (S)FTP client, this enhancement could be useful for you. Simply right click on Source Files and select Synchronize.
Please…
Per this discussion I've enabled the Compiz commands plugin in order to try to bind some keyboard shortcuts to wmctrl actions. CCSM captures my keystrokes just fine, but no matter what keystroke I try or what command I bind it to (everything from my original intention of binding Super-1, Super-2 etc. to wmctrl -o 0,0,…
I did not find the lawyers' SE site, so I thought it best to post here.
/*
* ...subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* The Software shall be used for Good, not Evil.
*
* THE…
I am writing data munging scripts (python and bash), to munge data and import large quantities of text files into a database.
I am currently in the test phase, so I am generating several K's of files and deleting them (the files consume about 20G of space). After a test run, I delete the files (sometimes without…
I have a Compaq Presario SR1950NX desktop computer with the AMD64 3800+ processor and 1GB ram and it seems that Ubunutu, Xubuntu and Lubuntu are all laggy. Things seem to be slow such as clicking on menus and opening programs and the UI renders in peices. When using the browser the system slows down considerably.…
I'm trying to define an emacs function that will be called when the display size changes, currently I'm not finding any hooks that I can use for this.
I an NOT trying to notice when the emacs window changes size.
My use case is that I have emacs open on my laptop, then I close it and bring it to work and plug…
As we know that microsoft has been pushing Windows 8.1 which strongly uses XAML to design the app and for windows desktop mode WPF is another framework (which probably some thinks it fails)
However, in old times, developer write windows form software using MFC or something alike that they have to do their own…
So, I'm looking ordering myself a new development desktop soon and setting up a PROPER office environment by the end of this year.
To boost productivity, I'm going to purchase three new monitors. I find that two just isn't enough when I'm debugging or doing something intensive.
That said, I had something…
I can't open any of my computer drives (:c/,:d/.....)
Every time i tried to open the drives, the following notice appeared:
(i'm new in Ask Ubuntu,so,i can't upload the snapshot,i need 10 reputations to do that)
**Unable to access "__ Volume"**
error mounting/dev/sda7at/media/MyPC/__Volume:Command-Line…
I have been having problem installing php-fpm for use with apache2-mpm-worker. This is the guide that I am following.
According to the guide's Step 5,
Alias /php5-fcgi /usr/lib/cgi-bin/php5-fcgi
FastCgiExternalServer /usr/lib/cgi-bin/php5-fcgi -host 127.0.0.1:9000 -pass-header Authorization
However I…
I am running Macports apache2 on Mac OS X 10.5. Whenever I configure a virtual host in the default folder, it works, however when I configure the virtual host in my home directory I get a "403 Forbidden" error.
How do I configure a vhost in my home directory?
Here is the configuration that yields…
I have puppet master running on a Xen dom0, and 3 domUs syncing to it via an hourly crontab puppet agent --test.
About 80% of the time, the puppet agent --test completes successfully:
info: Retrieving plugin
info: Caching catalog for test3
info: Applying configuration version '1333319732'
notice:…
Background:
I use my Mac for web development, running copies of web sites locally.
I recently installed the Snow Leopard update, which to all intents and purposes seems to have gone fine, except...
What's not working?
Web-sharing; more specifically I can't turn it on via preferences. The…
Apache 2.2.3 is running as an existing web server under RHEL 5. Attempting to set up Trac using wsgi_module.
RHEL 5 ships with python 2.4, so in order to use the current version of Trac (1.0) I needed to install it with easy_install-2.6.
Trac works with the default mod_python,…