Comment by Michael Paulukonis on Node version command
The versions of npm and the version of node are not synchronized. You can update one without updating the other, depending upon your process.
View ArticleComment by Michael Paulukonis on How to fix files with gulp-eslint?
WHY is this the "right way"? Particularly, why should "FailAfterError()" be removed?
View ArticleComment by Michael Paulukonis on Copy-paste code from Visual Studio, but...
@PaulMolloy - I'm still using it, only I've got it mapped to Windows-V to paste unformatted text. I totally missed using the hotkeys option until recet months. Doh!
View ArticleComment by Michael Paulukonis on How can I continuously run unit tests in...
If the site is down, an archived page is available @ web.archive.org/web/20161007013353/http://jason.learmouth.ca
View ArticleComment by Michael Paulukonis on Add tenant name to the url after...
What is the error or issue that is occurring? That is - what do you expect to happen, and what is actually happening?
View ArticleComment by Michael Paulukonis on Can't call javascript client method in signalr
Jack, you should be able to accept your own answer by now. However, could you put an example of the "failure" into the question, above?
View ArticleComment by Michael Paulukonis on What is -moz-border-radius? -CSS
If you use google, you have to remove the "-" prefix, since that tells google to EXCLUDE that term from the query.
View ArticleComment by Michael Paulukonis on Auto generate function documentation in...
tips link fixed again. curse you, one-way web!
View ArticleComment by Michael Paulukonis on How do I get the screen coordinates of...
Can you inline some of your solution here?
View ArticleComment by Michael Paulukonis on Node unit test AWS Lambda function using...
As of June, 2018 the project notes "Version 3 targets Lambda handlers using Node 6.10 and 8.10. If you require support for Node 4.x, please use version 2.x"
View ArticleComment by Michael Paulukonis on Ramda. create subarray with fixed length...
"Brubeck" ? :frowny-face:
View ArticleComment by Michael Paulukonis on Regular expression for ddmmyyyy date...
Fails for October 10/29 and 10/30 of each year. So there's that.
View ArticleComment by Michael Paulukonis on Linux how to copy but not overwrite?
@ceving I think you'll find that oh-my-zsh has an alias for that use-case.
View ArticleAnswer by Michael Paulukonis for Is JSLint available for offline use?
Cory Bennet has a good post on command-line JSLint. Much of your setup will be getting SpiderMonkey working. Not so bad if you're running Linux; a wee harder if you're using Windows and Cygwin. And...
View ArticleAnswer by Michael Paulukonis for Is there a way to change frames in the...
To follow-up on Ben's answer, that would becd([reference])orcd(frames[n])where n is a valid index in the window.frames array
View ArticleAnswer by Michael Paulukonis for execute google image search several times in...
The hi function doesn't make a lot of sense to me:function hi(){ keyword="usa"; alert('hi'); google.setOnLoadCallback(OnLoad); imageSearch.execute(keyword);}Because the onLoadCallbak has already been...
View ArticleAnswer by Michael Paulukonis for No Last Spintax Repeat
Keep things simple - the Spin function should generate spun text, and nothing else.Use some other function to do what you want.Here's a quick wrapper to compare runs:var prev = "";var getNewSpun =...
View ArticleAnswer by Michael Paulukonis for Can't install socket.io on Windows 7
SO despite my comments regarding running shell as administrator working, I ran into this problem on another machine where I was still running shell as administrator.(A pretty-much-complete extract of...
View ArticleAnswer by Michael Paulukonis for PostSharp in web project using NuGet
The RequiresPostSharp.cs file was meant to be helpful, but does not always work correctly. If PostSharp is otherwise working, you can safely delete that file.
View ArticleAnswer by Michael Paulukonis for c# OleDbConnection csv to excel skips first...
This comment notes the same behavior when the FULL PATH is passed into the SELECT statement. Since the directory of the file is provided in the OleDbConnection it does not need to be provided a second...
View ArticleAnswer by Michael Paulukonis for Blinking effect missing
According to MSDN, the WdAnimation enumeration has been deprecated:This object, member, or enumeration is deprecated and is not intended to be used in your code.I can't find any other reference as to...
View ArticleAnswer by Michael Paulukonis for Accessing elements of Office clipboard...
There is no API or documentation for the Office Clipboard.Here's an article from 2010 that explores accessing MSO.dll directly to use the Office Clipboard.I have not tested the code myself.
View ArticleAnswer by Michael Paulukonis for Transferred site doesn't show content with...
The page-source is available by appending &action=source, so that tells us there is no problem accessing the content.Additionally, the content looks normal -- no weird characters that I can see...
View ArticleIs there a benefit to using @Url.Content("~")
I'm new to MVC4/razor2, and I think understand the general benefit of using @Url.Content and @Url.Action- if my routing or virtual directory changes, magic-url-strings are correctly rendered.I'm...
View ArticleIs there a Perl equivalent for Emacs' ido-completion?
I've built a number of work-specific helper functions that could be useful for other members of my team&mdash. But I've written them all in Emacs' Elisp, and getting them to convert from Notepad++...
View ArticleJavascript 'First or Default' function for 'associative arrays'/objects
Is there a better way to do this?I'm storing values in what some would erroneously call an associated array:The tokens object stores.... tokens and a count of documents using that token on a per-db...
View ArticleAnswer by Michael Paulukonis for vba: Dictionary passed to function acting as...
You would have to build a copy method, make a complete copy of the dictionary, and then make modifications on the copy.Assigning to a new variable just assigns the original reference to the new...
View ArticleAnswer by Michael Paulukonis for Javascript bookmark stopped working in...
NOTE: this solution no longer appears to work as of FF41. See JS Bookmarklets stopped working in Firefox 41.If you first load almost any URL, including about:blank, then a Javascript bookmark will work...
View ArticleAnswer by Michael Paulukonis for Javascript bookmarklet stopped working in...
According to ghacks, Mozilla wanted the feature removed from about:config and only re-settable via extension:The browser.newtab.url preference has no exposed UI, is not really supported, and is abused...
View ArticleJavascript bookmarklet stopped working in Firefox 41
In Firefox 41, bookmarklets (bookmarks with a javascript: URL, e.g. javascript: alert("it works"), run from a click or a keyword) stopped working. Is there any solution to use javascript: bookmarks in...
View ArticleLINQ throws exception in deployed code, not in IDE
My LINQ statement (query? variable? expression?) is throwing an exception when it's enumerated (.ToList() or foreach) [see below].In most environments.This error does not occur when I run from...
View ArticleAnswer by Michael Paulukonis for Node.js won't install on Windows 7 x64
I the exact same error in Windows 10.After launched my shell, making sure I was running as administrator, it worked.
View ArticleAnswer by Michael Paulukonis for Where is Developer Command Prompt for VS2013?
I used a modified version of this answer - based on my experiences adding it to VS 2010:Select Tools>>External Tools in Visual StudioClick AddTitle: I use Visual Studio Command &Prompt&P...
View ArticleWhy would the Excel Interop remove an image after processing a file?
Excel Interop is removing images from processed files.I’m using the Excel Interop, no third-party components are present (that I'm aware of).The workflow is -- create a copy (target) of a file...
View ArticleAnswer by Michael Paulukonis for Saving the auth token and using it
If what you are posting is JSON, then it looks like the access-token is accessible via body.X-GSAccessToken
View ArticleAnswer by Michael Paulukonis for Moving javascript file to external reference...
Move the code that is currently inside of your script tag to a separate file, say side.js: $(document).ready(function() { $('#mainTable').DataTable( {"ajax": "jsonData","columns": [ { "data": "level"...
View ArticleHow can I add the VS Command Prompt to Visual Studio 2010 C# Express?
When I install "real" editions, the command prompt exists as a tool, but not in the express edition?How can I open the special command prompt, and have easier access to the various command-line tools...
View ArticleWhat's the difference between (string[] args) and...
I'm inheriting maintenance on several console application that are entered, naturally, with static void Main(string[] args). However, the code ignores the args array, and instead reads the command-line...
View ArticleAnswer by Michael Paulukonis for OpenXML - Writing a date into Excel...
Try indicating it is a CellValues.String type, instead of a CellValues.Date type.UseDataType = new EnumValue<CellValues>(CellValues.String) // goodinstead ofDataType = new...
View ArticleAnswer by Michael Paulukonis for Problem in loading Magick.dll for module...
I had the exact same problem... nearly pulled my hair out over it.Can't load 'C:/Perl/site/lib/auto/Image/Magick/Magick.dll' for module Image::MagickThen I remembered a note we had in our wiki, and...
View ArticleAnswer by Michael Paulukonis for Clear all content in XmlTextWriter and...
You'd think there would be an intuitive way to do this, but....A solution I found suggests the following:// make a StringWriter, and fill it with junkStringWriter sw = new...
View ArticleAnswer by Michael Paulukonis for Why functional languages?
Most applications are simple enough to be solved in normal OO waysOO ways have not always been "normal." This decade's standard was last decade's marginalized concept.Functional programming is math....
View ArticleComment by Michael Paulukonis on can push/pull from terminal not from VS...
I also unchecked, exited terminal, didn't work, rechecked, exited terminal - and then it worked. TURN IT OFF AND THEN ON AGAIN!!! :scream:
View Article