curl -sL https://deb.nodesource.com/setup_11.x | sudo -E bash -
sudo apt-get install -y nodejs
sudo apt install -y libavahi-compat-libdnssd-dev
sudo npm install -g --unsafe-perm homebridge
19 September 2019 - A day with an attempt to generate Graver basis vectors | |
- https://ie.technion.ac.il/~onn/Nachdiplom/3.pdf (Followed this lecture notes, and replicated the example) | |
- https://ie.technion.ac.il/~onn/Book/NDO.pdf (Also followed the book) | |
<!DOCTYPE html> | |
<html> | |
<body> | |
<div id="header">Welcome, Prof. Dr. Taner Güneş</div> | |
<div id="container"> | |
<form> | |
<input type="text" name="firstname"> | |
</form> |
curl -sL https://deb.nodesource.com/setup_11.x | sudo -E bash -
sudo apt-get install -y nodejs
sudo apt install -y libavahi-compat-libdnssd-dev
sudo npm install -g --unsafe-perm homebridge
/********* | |
Rui Santos | |
Complete project details at http://randomnerdtutorials.com | |
*********/ | |
// Load Wi-Fi library | |
#include <ESP8266WiFi.h> | |
#include <IRremoteESP8266.h> | |
#include <IRsend.h> |
#include <NewRemoteTransmitter.h> | |
static unsigned long ADDRESS = 17503242; // TRUST AC3-1000R | |
static unsigned short DATA_PIN = 11; // Arduino 443Mhz transmitter's Data pin | |
static unsigned int PULSE_RATE = 250; // Pulse rate of the protocol | |
// Receives input switch_id: 0,1,2 state: 0,1 for (on-off) | |
void setup() { | |
Serial.begin(9600); |
 I am a PhD student in University of Southampton within Agents, Interaction and Complexity group (AIC). My current interests are in the field of Artificial Intelligence, specifically: sequential decision making under uncertainty, trust and reputation systems, probabilistic modelling and machine learning.
Recent News:
import java.util.List; | |
import genius.core.AgentID; | |
import genius.core.Bid; | |
import genius.core.actions.Accept; | |
import genius.core.actions.Action; | |
import genius.core.actions.Offer; | |
import genius.core.parties.AbstractNegotiationParty; | |
import genius.core.parties.NegotiationInfo; |
23:44:04.261 [main] INFO o.t.world.biomes.BiomeManager - Restored biome Core:snow with short id 2 from save game. | |
23:44:04.261 [main] INFO o.t.world.biomes.BiomeManager - Restored biome Core:plains with short id 7 from save game. | |
23:44:04.302 [main] INFO o.t.e.prefab.internal.PrefabFormat - Attempting to deserialize prefab engine:clientInfo with inputs [/engine/assets/prefabs/player/clientInfo.prefab] | |
23:44:04.303 [main] INFO o.t.e.prefab.internal.PrefabFormat - Attempting to deserialize prefab Core:fuseLong with inputs [/Core/assets/prefabs/fuseLong.prefab] | |
23:44:04.303 [main] INFO o.t.e.prefab.internal.PrefabFormat - Attempting to deserialize prefab engine:iconItem with inputs [/engine/assets/prefabs/iconItem.prefab] | |
23:44:04.304 [main] INFO o.t.e.prefab.internal.PrefabFormat - Attempting to deserialize prefab engine:itemBase with inputs [/engine/assets/prefabs/itemBase.prefab] | |
23:44:04.305 [main] INFO o.t.e.prefab.internal.PrefabFormat - Attempting to deserialize prefab engine:physicalDamage with in |
1. Run Windows o Linux, on Windows go to Device Management, open your wifi card (atheros 9287), so "Details" > "ID hardware". (I have windows in Italian, I do not know if English is really so named; With Linux I don't know lol) | |
2. Copy on paper (or take a photo) the characters XXXX --> "VEN_168C&DEV_XXXX". | |
3. Run OS X and take the file IO80211Family.kext from Hard Disk>System>Library>Extension (U need to enable "hidden files" from terminal; search how with google), copy it on the desk (and make it a backup copy). | |
4. Right button on it > Show package contents. | |
5. Go to "Contents>PlugIns>AirPortAtheros40.kext", open with "Show package contents". Now go to "Contents>Info.plist", open it with the TextEdit. | |
6. So look in it, and replace as I did: | |
My ID Hardware: ....VEN_168C&DEV_002E... (XXXX = 002E) | |
Our id : VEN | |
I replace the first <string>pci168c,XXXX</string> with my ID Hardware: <string>pci168c,2e</string> | |
Note: the 0 is not reported; the "E" becomes "e". |