(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| ipcMain.on("HTMLData", (event, arg) => { | |
| // Proses data arg | |
| } |
| dotdBrowserWindow.webContents.on('dom-ready', (event, url) => { | |
| dotdBrowserWindow.webContents.executeJavaScript('require("electron").ipcRenderer.send("HTMLData", document.body.innerHTML);'); | |
| }) |
| let data = "Awesome!"; | |
| browserWindow.webContents.executeJavaScript(`document.getElementById("deskripsi").innerHTML="${data}"`); |
| <div id="deskripsi"></div> |
| #!/usr/bin/env xcrun swift | |
| /* | |
| gen.swift is a direct port of cfdrake's helloevolve.py from Python 2.7 to Swift 3 | |
| -------------------- https://gist.github.com/cfdrake/973505 --------------------- | |
| gen.swift implements a genetic algorithm that starts with a base | |
| population of randomly generated strings, iterates over a certain number of | |
| generations while implementing 'natural selection', and prints out the most fit | |
| string. | |
| The parameters of the simulation can be changed by modifying one of the many |
| #include <stdio.h> | |
| #include <string.h> | |
| #include <stdlib.h> | |
| #define MAX_FRAME_SIZE 256*1024 // KB | |
| #define CONTENT_LENGTH "Content-Length: " | |
| #define PAYLOAD "\r\n" | |
| int main() | |
| { |
| using UnityEngine; | |
| public class Torsi : MonoBehaviour { | |
| public Rigidbody rb; | |
| public float torque; | |
| void Start () { | |
| rb = GetComponent<Rigidbody>(); | |
| } |
| ‘use strict’ | |
| const mbambung = require(‘komponist’); | |
| mbambung.createConnection((err, client) => { | |
| if(!err){ | |
| client.command(‘load’,[‘Mbambung’], (err, res) => { | |
| client.play(function(err) { | |
| client.currentsong(function(err, info) { | |
| console.log(info.Artist); |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
This does NOT work on Raspberry Pi 2!
sudo dd bs=4M if=fxos-pi-gpio.img of=/path/to/your/disksudo dd bs=4m if=fxos-pi-gpio.img of=/dev/rdisk5 (do rdisk, not disk here!)