Skip to content

Instantly share code, notes, and snippets.

View lkannan's full-sized avatar

Kannan Ramaswamy lkannan

  • 23:30 (UTC +05:30)
View GitHub Profile
@lkannan
lkannan / clock.lu
Created May 11, 2022 10:32
Azure LUIS Chatbot export file - Clock.lu
> LUIS application information
> !# @app.name = Clock
> !# @app.desc = Natural language clock
> !# @app.versionId = 0.1
> !# @app.culture = en-us
> !# @app.luis_schema_version = 7.0.0
> !# @app.tokenizerVersion = 1.0.0
@lkannan
lkannan / idle.vbs
Created May 27, 2020 05:25
Script to prevent your screen to going to sleep and skype going away
set wsc = CreateObject("WScript.Shell")
Do
'Five minutes
WScript.Sleep(5*60*1000)
wsc.SendKeys("{F13}")
Loop
@lkannan
lkannan / main.dart
Created May 25, 2020 15:15
Demo for gist sharing of dart code ~🅳🅰🆁🆃 💀 🆅🅰🅳🅴🆁!
void main() {
//static typing
int a, b;
String x; //best practice
a = 10; x = 'foo';
print ('$a $x'); //strong data type
//dynamic typing
var c,d; //use this sparingly, when the type of data is not known
c = 5;
@lkannan
lkannan / main.dart
Created May 25, 2020 15:13
Demo file by ~🅳🅰🆁🆃 💀 🆅🅰🅳🅴🆁!
void main() {
//static typing
int a, b;
String x; //best practice
a = 10; x = 'foo';
print ('$a $x'); //strong data type
//dynamic typing
var c,d; //use this sparingly, when the type of data is not known
c = 5;
@lkannan
lkannan / main.dart
Created May 25, 2020 15:09
Demo dart file by ~🅳🅰🆁🆃 💀 🆅🅰🅳🅴🆁!
void main() {
//static typing
int a, b;
String x; //best practice
a = 10; x = 'foo';
print ('$a $x'); //strong data type
//dynamic typing
var c,d; //use this sparingly, when the type of data is not known
c = 5;
@lkannan
lkannan / main.dart
Last active May 25, 2020 14:52
Dartpad Gist by ~🅳🅰🆁🆃 💀 🆅🅰🅳🅴🆁!
void main() {
//static typing
int a, b;
String x; //best practice
a = 10; x = 'foo';
print ('$a $x'); //strong data type
//dynamic typing
var c,d; //use this sparingly, when the type of data is not known
c = 5;