diff --git a/content/generalposts/Opentowork.md b/content/generalposts/Opentowork.md new file mode 100644 index 00000000..5986a1d7 --- /dev/null +++ b/content/generalposts/Opentowork.md @@ -0,0 +1,25 @@ +--- +title: "Open to work" +summary: Just graduated looking for remote or work based in the UAE. +date: 2021-30-06 +tags: ["Work","Open"] +author: "Akilan Selvacoumar" +draft: false +aliases: [/opentowork] +weight: 1 +--- + +I just finished my 4 years honors degree in Computer Science at Heriot-Watt +.I am currently looking for work as a software engineer. I prefer to help +in creating micro services and in building efficient software. What I +am capable of building is what you see in my website. + +#### Current Location: UAE (GMT +4) + +#### Preferred rate hourly: 32$ an hour + +#### Contact email: me@akilan.io (Response time will be 24 hours) + +I am happy to have a conversation with interested employers :) + + diff --git a/content/technicalposts/Modifying-laplace-keyboard-mouse.md b/content/technicalposts/Modifying-laplace-keyboard-mouse.md new file mode 100644 index 00000000..b8427686 --- /dev/null +++ b/content/technicalposts/Modifying-laplace-keyboard-mouse.md @@ -0,0 +1,37 @@ +--- +title: "Using remote ScreenShare ,keyboard and mouse using laplace and Barrier" +summary: Modifying the open source project laplace to allow remote keyboard and mouse during screenshare +date: 2020-05-25 +aliases: ["/laplace-keyboard-mouse"] +tags: ["WebRTC","laplace"] +author: "Akilan Selvacoumar" +draft: true +aliases: [/laplace-keyboard-mouse] +weight: 2 +--- + +## What is laplace ? +" Laplace is an open-source project to enable screen sharing directly via browser. Made possible using WebRTC for low latency peer-to-peer connections, and WebSocket implemented in golang for WebRTC signaling. " + +link: https://github.com/adamyordan/laplace + +## How to set up laplace ? + +You need to ensure that you have the go compiler installed in your machine. +``` +> go version +> git clone https://github.com/adamyordan/laplace +> cd laplace +> go build . + +// Run laplace +> ./laplace +``` +When running the default port it's using is port 443 with a https connection + +#### Ex: https://0.0.0.0:443 + + + + +