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; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using System.Windows; | |
| using System.Windows.Controls; | |
| using System.Windows.Data; | |
| using System.Windows.Documents; | |
| using System.Windows.Input; |
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
| site :opscode | |
| metadata | |
| cookbook 'git' |
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
| require 'net/http' | |
| # create a path to the file "d:\hoge\cacert.pem" | |
| cacert_file = File.join(%w{d: hoge cacert.pem}) | |
| Net::HTTP.start("curl.haxx.se") do |http| | |
| resp = http.get("/ca/cacert.pem") | |
| if resp.code == "200" | |
| open(cacert_file, "wb") { |file| file.write(resp.body) } | |
| puts "\n\nA bundle of certificate authorities has been installed to" |
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; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace LinqSample | |
| { | |
| class Program | |
| { |
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; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| // Add | |
| using System.Net; | |
| using AmazonProductAdvtApi; | |
| using System.Xml; | |
| using System.Xml.XPath; |
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
| <DnaLibrary RuntimeVersion="v4.0" Name="WorksheetExample" Language="CS"> | |
| <ExternalLibrary Path="WorksheetExample.dll"/> | |
| </DnaLibrary> |
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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| Vagrant.configure("2") do |config| | |
| # All Vagrant configuration is done here. The most common configuration | |
| # options are documented and commented below. For a complete reference, | |
| # please see the online documentation at vagrantup.com. | |
| config.vm.hostname = "hoge" | |
| #config.vm.hostname = "hoge-berkshelf" |
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
| site :opscode | |
| metadata | |
| cookbook 'apt' | |
| cookbook 'git' | |
| cookbook 'ruby_build' | |
| cookbook 'rbenv', github: "fnichol/chef-rbenv" |
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
| root:hoge@example.com:smtp.gmail.com:587 | |
| localusername:hoge@example.com:smtp.gmail.com:587 |
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
| # .caffrc -- vim:ft=perl: | |
| # This file is in perl(1) format - see caff(1) for details. | |
| $CONFIG{'owner'} = ''; | |
| $CONFIG{'email'} = 'hoge@example.com'; | |
| #$CONFIG{'reply-to'} = 'foo@bla.org'; | |
| # You can get your long keyid from | |
| # gpg --with-colons --list-key <yourkeyid|name|emailaddress..> | |
| # |