(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.
| <html> | |
| <head> | |
| <script src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.4.2/underscore-min.js"></script> | |
| <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script> | |
| <script src="//cdnjs.cloudflare.com/ajax/libs/modernizr/2.6.2/modernizr.min.js"></script> | |
| <script src="//ajax.cdnjs.com/ajax/libs/json2/20110223/json2.js"></script> | |
| <!-- | |
| TODO: |
| 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.