Skip to content

Instantly share code, notes, and snippets.

View ElyDotDev's full-sized avatar
🏠
Working from home

Ely ElyDotDev

🏠
Working from home
View GitHub Profile
@ElyDotDev
ElyDotDev / .block
Last active August 5, 2019 22:34 — forked from agnjunio/.block
Dependency Graph using D3 + Vue.js (3/3)
license: apache-2.0
height: 600
border: no
#include <stdexcept>
#include "windows-kill-library.h"
using WindowsKillLibrary::sendSignal;
using WindowsKillLibrary::SIGNAL_TYPE_CTRL_C;
using WindowsKillLibrary::SIGNAL_TYPE_CTRL_BREAK;
try {
sendSignal(signal_pid, signal_type);
std::cout << "Signal sent successfuly. type: " << signal_type << " | pid: " << signal_pid << "\n";
@ElyDotDev
ElyDotDev / shatelland-advanced-features.user.js
Last active June 14, 2017 12:41
Shatelland.com Upload Center Advanced Features Userscript | Abandend | New versions: https://github.com/alirdn/Shatelland-Upload-Center-Userscript
// ==UserScript==
// @name Shatelland Upload Center Advanced Features
// @namespace http://allii.ir/
// @version 3.2.4
// @description Add new and advanced features to Shatelland upload center
// @author Alireza Dabiri Nejad | alireza.dabirinejad@live.com | http://allii.ir
// @include http*://*shatelland.com/upload*
// @run-at document-end
// @grant none
// ==/UserScript==
@ElyDotDev
ElyDotDev / addition-controller-params.html
Last active January 22, 2016 22:25
دوره آموزش AngularJS - کنترل‌گرها (Controllers): http://blog.allii.ir/2016/01/angularjs-beginner-intermediate-course-controllers
<!DOCTYPE html>
<html lang="en">
<head>
<!-- AngularJS 1.4.8 !-->
<script src="../src/angular.min.js"></script>
<script src="module.js"></script>
<script src="addition-controller-params.js"></script>
</head>
<body ng-app="app">
<p ng-controller="AdditionController">
<!DOCTYPE html>
<html></html>
<head>
<!-- AngularJS 1.4.8 !-->
<script src="../src/angular.min.js"></script>
</head>
<body ng-app>
String equals to Number? {{'1' == 1}}
</body>
</html>
@ElyDotDev
ElyDotDev / dfplayer_mini_avr.c
Last active March 13, 2021 15:18
DFPlayer Mini MP3 Module Controlling Using AVR UART Codevision Sample: http://blog.allii.ir/2016/01/dfplayer-mini-mp3-module-control-avr-uart/
/************************************************************************************
Run DFPlayer Mini Module With Atmega8
DFPlayer Mini: http://blog.allii.ir/go/dfplayer-mini-main-wiki/
For: http://blog.allii.ir/2016/01/dfplayer-mini-mp3-module-control-avr-uart/
By: Alireza Dabiri Nejad | http://blog.allii.ir
Program: : Codevision
Chip type : ATmega8
AVR Core Clock frequency: 8/001000 MHz
*************************************************************************************/