This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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 | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WMIC /node:192.168.66.145 process call create "msg.exe * Hello" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://jaliyaudagedara.blogspot.in/2013/02/database-synchronization-with-microsoft.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--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: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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; |
OlderNewer