Blackberry - "[projectname].debug file is missing" and "I/O Error: Cannot find program "jar"
Tag : java , By : ChrisMe
Date : March 29 2020, 07:55 AM
I hope this helps . It turns out that there can be a few different causes. In some instances, hitting the 100 class limit in the project can cause this. In my case, the Environment Variable for Path in Windows > System Properties had disappeared. Something to note is that when you put it back in (in my case "c:\program files\java\jdk1.6.0_18\bin") it needs to be the first entry in the path variable.
|
Azure Worker Role restarted after receiving "changing" + "changed" event on Node.js
Date : March 29 2020, 07:55 AM
wish helps you Azure assumes that you want your servers rebooted after config changed, so that new settings can take effect properly. It does not know if you keep reading your configuration settings during runtime or only at startup. It also assumed that you have 2+ servers deployed in your Role and rebooting them one at a time will not harm you website
|
How do I debug "Error: spawn ENOENT" on node.js?
Date : November 14 2020, 04:48 PM
like below fixes the issue NOTE: This error is almost always caused because the command does not exist, because the working directory does not exist, or from a windows-only bug. I found a particular easy way to get the idea of the root cause of: Error: spawn ENOENT
(function() {
var childProcess = require("child_process");
var oldSpawn = childProcess.spawn;
function mySpawn() {
console.log('spawn called');
console.log(arguments);
var result = oldSpawn.apply(this, arguments);
return result;
}
childProcess.spawn = mySpawn;
})();
spawn called
{ '0': 'hg',
'1': [],
'2':
{ cwd: '/* omitted */',
env: { IP: '0.0.0.0' },
args: [] } }
|
Error 1 Unable to copy file "obj\Debug\SourceProject.exe" to "bin\Debug
Date : March 29 2020, 07:55 AM
fixed the issue. Will look into that further Just open your Debug Configuration near by Application Run Button in VS. Then , Choose debug with Any CPU to x64 or x86 .. May be it will help someone. ,
|
How do I fix the "we can't reach this page" error or "err_connection_timed_out" on my browsers?
Date : March 29 2020, 07:55 AM
this one helps. To narrow it down a bit, can you confirm that you only get this when navigating to the sites listed and they're using SSL / HTTPS? Some will auto re-direct to HTTPS if you go to their non-SSL equivalent, but it's worth trying this on sites like Google which do support both. If this does help narrow down the behaviour, then I've seen this behaviour once before, but this was behind a corporate proxy which didn't support SSL SPDY.
|