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
const log = require('electron-log-rotate'); | |
module.exports = { | |
// path.resolve([from ...], to) | |
resolve: function resolve() { | |
var resolvedDevice = ''; | |
var resolvedTail = ''; | |
var resolvedAbsolute = false; | |
for (var i = arguments.length - 1; i >= -1; i--) { |
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 System.Management; | |
namespace DeviceManager.Brightness | |
{ | |
class BrightnessController |
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 CoreAudioApi; | |
namespace DeviceManager.Volume | |
{ | |
class VolumeController |
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
#include <nan.h> | |
void Method(const Nan::FunctionCallbackInfo<v8::Value>& info) { | |
info.GetReturnValue().Set(Nan::New("world").ToLocalChecked()); | |
} | |
void Init(v8::Local<v8::Object> exports) { | |
exports->Set(Nan::New("hello").ToLocalChecked(), | |
Nan::New<v8::FunctionTemplate>(Method)->GetFunction()); | |
} |
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
#include <node.h> | |
#include <v8.h> | |
void Method(const v8::FunctionCallbackInfo<v8::Value>& args) { | |
v8::Isolate* isolate = args.GetIsolate(); | |
v8::HandleScope scope(isolate); | |
args.GetReturnValue().Set(v8::String::NewFromUtf8(isolate, "world")); | |
} | |
void init(v8::Local<v8::Object> exports) { |
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
var a = { | |
x: 1, | |
[Symbol.toPrimitive]: function(type) { | |
console.log('called toPrimitive, type: ', type); | |
return this.x; | |
} | |
}; | |
Number(a); |
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
let mainWindow = null; | |
// Create the browser window. | |
if (process.env.NODE_ENV === 'development') { | |
mainWindow = new BrowserWindow({ | |
width: 1024, | |
height: 728, | |
transparent: false, | |
show: false, | |
frame: 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title></title> | |
<style> | |
canvas { | |
width: 500px; | |
height: 500px; | |
} |
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
var socket = new WebSocket('ws://127.0.0.1:8080/websocket'); | |
var socket.onmessage = onmessage; | |
var socket.onopen = onopen; | |
var socket.onclose = onclose; | |
function onmessage(event) { | |
console.log('from-server: ', event.data); | |
} | |
function onopen() { |
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
'use strict'; | |
import 'babel-regenerator-runtime'; | |
// require('babel-polyfill'); // おまじない | |
//require('regenerator').runtime(); | |
console.log('main: start'); | |
main().then(function (val) { | |
console.log('main: finish:', val); | |
}); |