Wednesday, July 29, 2015

Lexus will officially unveil its hoverboard on August 5th

http://www.engadget.com/2015/07/29/lexus-hoverboard-unveil/

Tuesday, July 28, 2015

Unrecognized attribute 'targetFramework'. Note that attribute names are case-sensitive

http://www.codeproject.com/Questions/281518/Unrecognized-attribute-targetFramework-Note-that-a

Check the .NET version of Application pool in IIS. If application pool is running on .NET version 2 and the web.Config file specify .Net version 4, you get this error.
Note this may not be the only cause for your error. But check this.

How to enable assembly bind failure logging (Fusion) in .NET

http://stackoverflow.com/questions/255669/how-to-enable-assembly-bind-failure-logging-fusion-in-net


Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Fusion]
"ViewerAttributes"=dword:56300949
"ForceLog"=dword:00000001
"LogFailures"=dword:00000001
"LogResourceBinds"=dword:00000001
"LogPath"="D:\\Logs\\bind\\"
"EnableLog"=dword:00000001

Monday, July 27, 2015

Saturday, July 25, 2015

Wiwo-s20

Wiwo-s20

http://www.cnx-software.com/2014/07/31/orvibo-wiwo-s20-wi-fi-smart-socket-features-us-eu-uk-or-au-plug-types/

Friday, July 24, 2015

SourceTree tutorial

https://www.atlassian.com/git/

pull down rep
stages files (ready to go file)
commit , snapshot of staged file

then push to master

https://www.youtube.com/watch?v=srXdUml4_HM

git for age 4 and up
https://www.youtube.com/watch?v=3m7BgIvC-uQ

https://answers.atlassian.com/questions/244429/unknown-user-in-sourcetree
git config --global user.name "Jennifer Connor"
git config --global user.email "your@email.com"

  1. The author name and e-mail is configured in Tools -> Options -> General.
    In Repository -> Repository Settings -> Advanced it does not matter if 'Use global user settings' is checked or not.

Sunday, July 19, 2015

ipad

iPad air with 64 GB memory, protect jackket, key board for sell.
Model MD790LL/A
 
Amazon link  Amazon price $525, sell price $349
 
Rugged Tough Jacket Amazon price $67.76, sell price $39
 
Keyboard Amazon price $54.99, sell price $29
 
Please contact me if you are interested. I work at IT department. Swiching to Microsoft Surface Pro 3, so no longer need this device.

Saturday, July 18, 2015

change actionlink color

<td>
                @Html.ActionLink("Details", "Details", new { _id = item._id }, new { style = "color: #000"}) |
                @Html.ActionLink("Register", "Register", new { _id = item._id }, new { style = "color: #000" })
            </td>
        </tr>

Wednesday, July 15, 2015

Unable to retrieve NT credentials. Make sure 'Anonymous Access' is disabled within IIS.

\Documents\IISExpress\config\applicationhost.config

  <authentication>

                <anonymousAuthentication enabled="false" userName="" />

                <basicAuthentication enabled="true" />

                <clientCertificateMappingAuthentication enabled="false" />

                <digestAuthentication enabled="false" />

                <iisClientCertificateMappingAuthentication enabled="false">
                </iisClientCertificateMappingAuthentication>

                <windowsAuthentication enabled="false">
                    <providers>
                        <add value="Negotiate" />
                        <add value="NTLM" />
                    </providers>
                </windowsAuthentication>

            </authentication>

Friday, July 10, 2015

VB.net Why reference not showing up?

I have a reference DLL added to the project, but import just would not see it.

Reason being the DLL was compiled to framework 4.5.2 and my project is 4.5.0, so that's the reason why it does not see it.

Google material design

Flat design

Thursday, July 9, 2015

.webinfo file needed when Can't open my VS2003 project: The project you are trying to open is a Web project. You need...

Re: Can't open my VS2003 project: The project you are trying to open is a Web project. You need...

Mar 05, 2007 12:44 PM|LINK

    <Web URLPath = "http://localhost/Folder/fred.csproj" />
Folder is the application name of the  in the IIS manager website properties
ex. xyzService is the application name


VB.net

<VisualStudioUNCWeb>
    <Web URLPath = "http://localhost/xyzService/xyzServices.vbproj" />
</VisualStudioUNCWeb>




To fix this error all you need to do is add a webinfo file.  If your using VSS for source control, it's probably a good idea to add the webinfo file to SourceSafe as well as this is not done for you automatically.
If you have a project file c:\Inetpub\wwwroot\Folder\fred.csproj then you need a corresponding webinfo file fred.csproj.webinfo.  The contents of the webinfo file looks like this:
<VisualStudioUNCWeb>
    <Web URLPath = "http://localhost/Folder/fred.csproj" />
</VisualStudioUNCWeb>
When you go to add this web project to your solution file you actually don't specify “Add Existing Project From Web”, but simply “Add Existing Project”, then browse to c:\Inetpub\wwwroot\Folder\fred.csproj

Visual studio 2013 missing convert to web application

http://stackoverflow.com/questions/19561982/visual-studio-2013-missing-convert-to-web-application

Convert to Web Application

Rest soap

[BasicHttpBinding = Soap 1.1], [WsHttpBinding = Soap 1.2], [WebHttpBinding = Rest] –  Frank Myat Thu May 19 '14 at 4:49

SetSite failed for package [JavaScriptWebExtensionsPackage]

Depends on which version of visual studio

C:\Users\[user]\AppData\Roaming\Microsoft\VisualStudio\1x.0\ActivityLog.xml

In order to fix the issue one needs to clear the VS cache under:
%LOCALAPPDATA%\Microsoft\VisualStudio\1x.0\ComponentModelCache

Wednesday, July 8, 2015

Replace code one line with multiple lines

https://visualstudiogallery.msdn.microsoft.com/699ce302-b0d4-4083-be0e-1682e873cebf