kd> ed nt!Kd_DEFAULT_MASK 0xFFFFFFFF
reg add "HKLM\SYSTEM\ControlSet001\Control\Session Manager\Debug Print Filter" /v DEFAULT /t REG_DWORD /d 0xFFFFFFFF
| /* Original style: http://userstyles.org/styles/46647/rtm-on-top-chrome */ | |
| /* Fix 1: Modified notifications to show on bottom (div.orange_rbroundbox) */ | |
| /* Fix 2: Hide the online help and keyboard shortcut divs */ | |
| /* Remove these comments if the style doesn't work :) */ | |
| .xtd_task_name { | |
| display: block ; | |
| margin-bottom: 3px ; | |
| font-size: 10pt; | |
| } |
| <Project ToolsVersion="4.0" InitialTargets="Log" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| <!-- other properties go here.... --> | |
| <Target Name="Log"> | |
| <Message Text="SearchPath = $(AssemblySearchPaths)"/> | |
| </Target> | |
| </Project> |
| #!/bin/bash | |
| # Script to speak out GRE words, turn it on and sleep ;) | |
| # Get wordlist from http://pastebin.com/JLQs9MT2 | |
| #espeakcmd="espeak -g 1 -s 170 -a 150 -p 10 -v english-us" | |
| espeakcmd="festival --tts" | |
| shuf GREwordlist.txt | while read line | |
| do | |
| word=`echo $line | cut -f 1 -d " " -` | |
| meaning=`echo $line | cut -f 2- -d " " -` |
| --- | |
| comtypes/__init__.py | 8 ++++++-- | |
| comtypes/automation.py | 4 +++- | |
| 2 files changed, 9 insertions(+), 3 deletions(-) | |
| diff --git a/comtypes/__init__.py b/comtypes/__init__.py | |
| index 6590ead..fa604af 100644 | |
| --- a/comtypes/__init__.py | |
| +++ b/comtypes/__init__.py | |
| @@ -268,7 +268,9 @@ class _cominterface_meta(type): |
Once you have these, you can use custom scripts in TFS 2013 build definition to run phone tests using vstest.console command line. See the script RunPhoneTests.bat
| # | |
| # Script to update assembly bindings to support 3rd party test adapters in Visual Studio Test Platform | |
| # Applies to VS 2014 CTP 3 bits | |
| # Needs to run as Admin, please use it at your own risk | |
| # | |
| function Update-AssemblyBinding($configFile) | |
| { | |
| Write-Host "Updating $configFile" | |
| [xml] $config = Get-Content $configFile |
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # | |
| # debug net http | |
| require 'net/http' | |
| module Net | |
| class HTTP | |
| def self.enable_debug! | |
| #raise "You don't want to do this in anything but development mode!" unless Rails.env == 'development' | |
| class << self |
| # -*- coding: utf-8 -*- | |
| import CommonMark | |
| if __name__ == "__main__": | |
| with open("trial.md") as f: | |
| parser = CommonMark.DocParser() | |
| renderer = CommonMark.HTMLRenderer() | |
| ast = parser.parse(f.read()) | |
| html = renderer.render(ast) | |
| json = CommonMark.ASTtoJSON(ast) |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import sys | |
| from PyQt5 import QtCore, QtDBus, QtWidgets | |
| def notify(header, msg): | |
| item = "org.freedesktop.Notifications" | |
| path = "/org/freedesktop/Notifications" | |
| interface = "org.freedesktop.Notifications" |