This file contains 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
{ | |
"manifest_version": 2, | |
"name": "Dummy Extension", | |
"version": "1.0", | |
"background": { | |
"page": "background.html" | |
}, | |
"permissions": [ | |
"activeTab", | |
"alarms", |
This file contains 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 ChakraHost.Hosting; | |
namespace ConsoleApplication2 | |
{ | |
class Program |
This file contains 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; | |
using UnityEditor; | |
namespace Unity.Assets.Editor | |
{ | |
public class AnytimeHoldOn |
This file contains 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
%base { | |
input[type=text] { | |
color: red; | |
} | |
} | |
.class-01 { | |
@extend %base; | |
input[type=text] { |
This file contains 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
'App4.Windows.exe' (Win32): Loaded 'C:\Users\Tomoyo\Documents\Visual Studio 2013\Projects\App4\App4\App4.Windows\bin\x64\Debug\AppX\App4.Windows.exe'. Module was built without symbols. | |
'App4.Windows.exe' (Win32): Loaded 'C:\Windows\System32\ntdll.dll'. Skipped loading symbols. Module is native, and native debugging is currently disabled. | |
'App4.Windows.exe' (Win32): Loaded 'C:\Windows\System32\kernel32.dll'. Skipped loading symbols. Module is native, and native debugging is currently disabled. | |
'App4.Windows.exe' (Win32): Loaded 'C:\Windows\System32\KernelBase.dll'. Skipped loading symbols. Module is native, and native debugging is currently disabled. | |
'App4.Windows.exe' (Win32): Loaded 'C:\Users\Tomoyo\Documents\Visual Studio 2013\Projects\App4\App4\App4.Windows\bin\x64\Debug\AppX\mrt100_app.dll'. Skipped loading symbols. Module is native, and native debugging is currently disabled. | |
'App4.Windows.exe' (Win32): Loaded 'C:\Windows\System32\combase.dll'. Skipped loading symbols. Module is native, and native debugg |
This file contains 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
C:\>type Get-Hoge.ps1 | |
$args | %{ Write-Host $_ } | |
C:\>powershell -File Get-Hoge.ps1 "foo bar" "hauhau maumau" | |
foo bar | |
hauhau maumau | |
C:\>powershell -Command "&{ $args | %{ Write-Host $_ } }" "foo bar" "hauhau maumau" | |
foo | |
bar |
This file contains 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
<!DOCTYPE html> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>HTMLOptionElement: 全角スペース</title> | |
<script> | |
function showText() { | |
var E = document.querySelector('option'); | |
alert([ | |
'E.text: ' + E.text, | |
'E.textContent: ' + E.textContent, |
This file contains 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
dir -r *.resx | %{ $xmldoc = [xml](Get-Content $_); $xmldoc.root.data | ?{ -not [System.String]::IsNullOrWhiteSpace($_.name)} | %{ $_.value = ("[EN]" + $_.value + "[/EN]") }; $xmldoc.Save($_.FullName.Substring(0,$_.FullName.Length-4)+"en.resx") } |
This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<!-- | |
ASP.NET アプリケーションの構成方法の詳細については、 | |
http://go.microsoft.com/fwlink/?LinkId=152368 を参照してください | |
--> | |
<configuration> | |
<system.webServer> | |
<serverSideInclude ssiExecDisable="true" /> |
This file contains 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.Runtime.InteropServices; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace ConsoleApplication1 | |
{ | |
class Program |
NewerOlder