Running IIS in VS2015 in Windows 10
http://stackoverflow.com/questions/12859891/error-unable-to-access-the-iis-metabase


JBB: An Artblog!
RMH

@theartofmadeline
Misplaced Lens Cap
DEAR READER
Lint Roller? I Barely Know Her
2025 on Tumblr: Trends That Defined the Year

Love Begins
styofa doing anything

#extradirty
Today's Document
YOU ARE THE REASON
Cosmic Funnies
cherry valley forever
art blog(derogatory)
TVSTRANGERTHINGS
i don't do bad sauce passes

❣ Chile in a Photography ❣

if i look back, i am lost
seen from Mexico

seen from TĂĽrkiye
seen from United States
seen from Australia

seen from United States

seen from United States
seen from TĂĽrkiye

seen from United States
seen from United States
seen from United Kingdom

seen from United States

seen from Netherlands

seen from Lithuania

seen from United States
seen from Malaysia

seen from Singapore

seen from United States
seen from Malaysia
seen from Canada

seen from United Kingdom
@any-tag
Running IIS in VS2015 in Windows 10
http://stackoverflow.com/questions/12859891/error-unable-to-access-the-iis-metabase

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
INSTALL_FAILED_UPDATE_INCOMPATIBLE on Android
I got this message trying to install from Xamarin Studio to multiple Android devices. Â The fix that worked for me is
$Â adb uninstall package-name
Numlock on Logitech k750-mac keyboard
Quick tip - on the Logitech k750 mac keyboard, when using Windows in VMWare, <fn>-<clear> is the numlock key.
Git checkout last branch
To switch to the branch you were on before the current one, type
git checkout -
Windows storage analyzer
WinDirStat, the awkwardly named but extremely useful and intuitive utility to show you, with old-school gradients, what's using space where. Â And it's free.

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Ignore whitespace on github diff
When viewing a diff on github, if someone cleaned up whitespace and/or changed line endings, you can ignore that and just see the good stuff by appending ?w=1 on the query.
Like for example:
Before
After
The 5 Types of Developers
Work horses, who put their head down and do whatever they're told, and generally get things done. Â They may not be the best problem solvers, but usually they can figure out a way to get it done. Â They don't want to be promoted, they don't care about what they work on (well, to a certain extent), they just work.
Money hungry programmers - they learn the bare minimum to get the job done, are eager to be promoted and always overpromise and underdeliver... they cut corners wherever they can, their quality is usually bad or horrible, and they are the worst kind of programmer
The highly intelligent but unmotivated programmer - figures out the coolest ways to solve problems, and can calculate pi to the 20,000th digit in their head, but won't spend any time learning beyond their current problem. Â Usually doesn't want to be promoted, but will become manager if it seems like the same type of work.
The knowledge thirsty programmer - Cannot stop learning no matter how hard he tries... always reading about the latest trends and trying as many of them out as possible. Â May not be the smartest, but can almost always figure out a way to do something, or find someone else that already has and use that.
The moderately good, but highly crazy programmer... unstable but capable mostly.  May write great code one day, then refactor it into horrible code the next.  Or have a mental breakdown.
Could not determine type for X in Fluent NHibernate
Just spent way too long researching this error.
The issue was that I had:
mapping.Map(x => x.Customer, "UserId")
instead of:
mapping.References(x => x.Customer, "UserId")
So it couldn't tell that it was an object and not a value....
Fix Visual Studio Hanging While Closing Files
Visual Studio was taking 10 or more second to close a file. Â After some searching, I found people recommending deleting the .suo file. Â I recommend backing it up first, but that definitely worked.
View the Apache Error Log on Ubuntu
tail -f /var/log/apache2/error.log

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
View Threaded Outlook Messages
Ever since the gmail and mobile phones started showing email as threaded conversations, it's been hard to use a client that didn't.
For people using Outlook, you can add this ability by simply going to the View "Ribben" and checking "Show as Conversation".
Testing your Django Routes
If you're trying to figure out why a route isn't working, a quick way to see what it's doing is to open up a python shell and see what it's returning:
$ python >>> import re >>> re.match(r'^(?P<the_result>\w+)','does it blend').groupdict() {'the_result': 'does'} >>>Â
Getting pip and easy_install on your linux box
Download the correct version of setuptools (for your python version) from http://pypi.python.org/pypi/setuptools
$ sh setuptools-0.6c11-py2.7.egg
$ easy_install pip
All Done.
Getting Post Requests from IIS
I needed to see what endpoints my web app was hitting, and my trusty network tools (fiddler and chrome dev tools) weren't helping, because it was between the web server (IIS) and the endpoints (not the browser and web server).
After a little digging, I discovered Wireshark. Â Using the following settings, I could see what the posts were:
Capture -> Options -> Capture Filter: HTTP TCP port (80)
Filter: (in the toolbar above the requests) http.request.method == "POST"
Hopefully this helps save someone a few minutes (hours) of searching just to get this info.
Also, to see the soap envelope (assuming it's hitting a soap endpoint), drill down into the data for:
eXtensible Markup Language -> s:Envelope -> s:Header -> s:Action
Wiring up static files on Apache in a Django Turnkey Server
Previously I showed how to (quickly) get a django linux box up and running. Â Now it's time to update the settings to get static files served (correctly) with apache.
First, edit the config file, like:
vim /etc/apache2/sites-enabled/django
And add the following:
Alias /static /var/www/project/static <Location "/static"> Â Â SetHandler None </Location>Â
Then edit your project settings file to reference the static folder
STATIC_ROOT = os.path.join(PROJECT_ROOT, 'static') STATIC_URL = '/static/' STATICFILES_DIR = ( "/var/www/static", )Â
And lastly, run collectstatic to map the files:
manage.py collectstatic

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Reset IIS on remote server
This one is so obvious I can't believe I didn't know it, but if you need to reset IIS on a different box, just run
iisreset <machine_name>
Running a Linux Server for Django
I've been digging django and wanted to figure out a good way to host it, as well as mess with it in a linux environment. Â Most of my linux skill comes from hacking a western digital world book (to use as a torrent server), so I don't know too much...
The first thing I did was download a vm appliance, from turnkey, created just for django. Â You'll also need vmware player (a free download with registration).
And I was done. Â Go ahead, try it.
Another thing that will help is updating a few things. Â To get the gcc compiler and other essentials, run:
apt-get install build-essential
To get python and django updated to latest (current 2.7.2 and 1.3) try the following:
$ wget http://www.python.org/ftp/python/2.7/Python-2.7.2.tgz $ tar xzf Python-2.7.tgz $ cd Python-2.7 $ ./configure --with-pth --with-dec-threads --with-signal-module --prefix=/opt/python-2.7 $ make $ make install
and then
$ rm /usr/bin/python $ ln -s /opt/python2.7/bin/python /usr/bin/python $ Â export PATH=/opt/python-2.7/bin:$PATH
$ rm rm /usr/lib/pymodules/python2.6/Django-1.1.1.egg-info $ rm -rf /usr/lib/pymodules/python2.6/django/ $ wget http://www.djangoproject.com/download/1.3.1/tarball/Django-1.3.1.tar.gz $ tar xzvf Django-1.3.1.tar.gz $ cd Django-1.3.1.tar.gz $ python setup.py installÂ