Skip to content

Instantly share code, notes, and snippets.

View mataprasad's full-sized avatar

Mata Prasad Chauhan mataprasad

View GitHub Profile
//https://www.hackerearth.com/practice/data-structures/trees/binary-and-nary-trees/tutorial/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Treeimpl
{
class Program
{
WMIC /node:192.168.66.145 process call create "msg.exe * Hello"
http://jaliyaudagedara.blogspot.in/2013/02/database-synchronization-with-microsoft.html
1) Configure Weaved on PI
https://www.weaved.com/installing-weaved-raspberry-pi-raspbian-os/
2) Use Weaved API
http://docs.weaved.com/docs/devicesend
3) Make user api to call PI-Service
------------------------------------------------
https://developer.weaved.com/portal/members/home.php
using System;
using System.Diagnostics;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using System.IO;
class InterceptKeys
{
private const int WH_KEYBOARD_LL = 13;
private const int WM_KEYDOWN = 0x0100;
<!--https://diafygi.github.io/webrtc-ips/ -->
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<h4>
Demo for:
import Foundation
class Employee: Codable {
var EmployeeID: String?
var LastName: String?
var FirstName: String?
var Title: String?
var TitleOfCourtesy: String?
var BirthDate: String?
var HireDate: String?
//https://resizeappicon.com/
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package mobileicon;
import java.io.File;
<?php
include_once "./Helper/CryptoHelper.php";
$input = "Text to encrypt";
echo "input:". $input."</br>";
$cipher = CryptoHelper::encrypt($input);
echo "cipher:". $cipher."</br>";
$output = CryptoHelper::decrypt($cipher);
echo "output:".$output;