Skip to content

Instantly share code, notes, and snippets.

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

Wael Had tecno14

🏠
Working from home
View GitHub Profile
! #
! # --- YouTube Ad Blocklist ---
! # This project was created and is maintained by: Evan Pratten (@ewpratten)
! # More information at: https://github.com/Ewpratten/youtube_ad_blocklist
! #
||www.googletagservices.com^
||www-googletagmanager.l.google.com^
||www-google-analytics.l.google.com^
||www.googleadservices.com^
||www.analytic-google.com^
https://5ad7-2a00-f29-2a1-ef8-51b4-afd6-acce-7df.ngrok-free.app/webservice.asmx/
https://202.164.35.107:5000/
@tecno14
tecno14 / StandardScaler.cs
Created October 5, 2021 11:03
StandardScaler in C# take list of class objects where have constructor
using System;
using System.Data;
using System.Linq;
using System.Collections.Generic;
using System.Reflection;
using System.ComponentModel;
namespace PricePrediction.MachineLearning
{
/// <summary>
@tecno14
tecno14 / LabelEncoder.cs
Created October 5, 2021 11:00
LabelEncoder in C# (double to int only)
using System;
using System.Linq;
using System.Collections.Generic;
namespace PricePrediction.MachineLearning
{
/// <summary>
/// this class used to encode double data into continuous integer values and decode it vice versa
/// for example [0.1, 2, 9] will encoded as [0, 1, 2]
/// similar : https://github.com/foreverzet/Sharpkit.Learn/blob/master/src/Sharpkit.Learn/Preprocessing/LabelEncoder.cs
@tecno14
tecno14 / AdbCommands
Created August 21, 2021 11:25 — forked from Pulimet/AdbCommands
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
ㅤㅤㅤ
@tecno14
tecno14 / getMyCode.js
Created October 16, 2020 12:49 — forked from creationix/getMyCode.js
Script to download all repos for a user
// Run this with node and then run the output with sh
var Http = require('http')
var ChildProcess = require('child_process');
Http.cat("http://github.com/api/v2/json/repos/show/creationix", function (err, json) {
if (err) throw err;
var data = JSON.parse(json);
data.repositories.forEach(function (repo) {
console.log("echo " + JSON.stringify(repo.name + " - " + repo.description));
console.log("git clone --bare " + repo.url);
});
https://infinityfree.net/
https://www.000webhost.com/
@tecno14
tecno14 / visualstudio2019Key.txt
Created June 11, 2020 13:06
Visual Studio 2019 Product Key
Visual Studio 2019 Product Key
Visual Studio 2019 Enterprise
BF8Y8-GN2QH-T84XB-QVY3B-RC4DF
Visual Studio 2019 Professional
NYWVH-HT4XC-R2WYW-9Y3CM-X4V3Y
[Please Star this gist]