This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"company": "3M", | |
"description": "3M, based in Minnesota, may be best known for its Scotch tape and Post-It Notes, but it also produces sand paper, adhesives, medical products, computer screen filters, food safety items, stationery products and many products used in automotive, marine, and aircraft industries.", | |
"initial_price": 44.28, | |
"price_2002": 56.27, | |
"price_2007": 95.85, | |
"symbol": "MMM" | |
}, | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void ConfigureAuth(IAppBuilder app) | |
{ | |
// ... | |
var linkedInOptions = new LinkedInAuthenticationOptions(); | |
linkedInOptions.ClientId = "Your LinkedIn API Key"; | |
linkedInOptions.ClientSecret = "Your LinkedIn Secret Key"; | |
linkedInOptions.Scope.Add("r_fullprofile"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Web; | |
using System.Web.Optimization; | |
namespace AjaxDemo | |
{ | |
public class BundleConfig | |
{ | |
public static void RegisterBundles(BundleCollection bundles) | |
{ | |
bundles.Add(new ScriptBundle("~/bundles/jquery").Include( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd /c/deps/ | |
tar xvfz db-4.8.30.NC.tar.gz | |
cd db-4.8.30.NC/build_unix | |
../dist/configure --disable-replication --enable-mingw --enable-cxx | |
make |