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
| // TODO: Make sure the aif RA and CA nodes have `probability` field assigned to 1.0. | |
| // TODO: For an example, check `resources/aif/5.json`. | |
| public class Example { | |
| public static void main(String[] args) { | |
| AIFReader reader = new AIFReader("changethepath.json"); | |
| AIFTheory theory = reader.read(); | |
| AIFtoPEEAFConverter converter = new AIFtoPEEAFConverter(); | |
| PEEAFTheory peeafTheory = converter.convert(theory); |
| import re | |
| if __name__ == '__main__': | |
| TEST = """ | |
| [ | |
| { | |
| "_id": "5e1d995f08f9e94ea4c67e31", | |
| "data.Attack_Pattern_Catalog.Attack_Patterns.Attack_Pattern": [ | |
| { | |
| "_attributes": { | |
| "ID": "1", |
| 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; |