Skip to content

Instantly share code, notes, and snippets.

View giammirove's full-sized avatar
🦝

xgampx giammirove

🦝
View GitHub Profile
@giammirove
giammirove / italiaserieScraper.js
Created April 6, 2019 09:28
scraper of italiaserie.org in nodejs
var fetch = require("node-fetch");
var DomParser = require('dom-parser');
var parser = new DomParser();
var url = "https://italiaserie.org/?s=big%20bang%20theory";
fetch(url)
.then((data) => data.text())
.then((html) => {
@giammirove
giammirove / dreamsub.online.js
Last active January 28, 2019 22:50
fra qui getti roba da dreamsub.online
var fetch = require("node-fetch")
var url = "https://www.dreamsub.online/search/one%20piece";
var items_list = [];
var getAll = fetch(url)
.then((data) => data.text())
.then((response) => {
var lista = response.match(/<ul class=\"tvSeriesList\">[^\0]*?<\/ul>/gm);
@giammirove
giammirove / bypass_cloudflare_fetch.js
Created January 27, 2019 23:31
bypass cloudflare using fetch nodejs
/*
Rovelli Gianmaria @2019
This script only show the cookie to bypass
Good job :P
*/
const fetch = require("node-fetch");
@giammirove
giammirove / bypass_cloudflare.js
Created January 27, 2019 23:26
bypass_cloudflare_nativescript module
/*
Rovelli Gianmaria @2019
How to use
---------------------------------------------------------------------------
|var bypass_cloudflare_module = require("./my_script/bypass_cloudflare"); |
| |
|var url = "https://ilgeniodellostreaming.app/"; |
var io = require('socket.io')({
transports: ['websocket'],
});
io.attach(4567);
io.sockets.on('connection', function(socket){
console.log('Player connected');
socket.on('sendMess', function(data){
var io = require('socket.io')({
transports: ['websocket'],
});
io.attach(4567);
var match = new Array();
var finger = new Array();
var inWait;
using System;
using System.Threading;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace nn_python_class_monodevelop
{
public class Neuron
// LOGIC GATE NEURAL NETWORK
// BINARY STEP ACTIVATION
#include <iostream>
#include <math.h>
using namespace std;
double x1, x2;
double w1 = 0.01, w2 = 0.02;
using System;
using System.Threading;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace nn_python_class_monodevelop
{
public class Neuron
#include <iostream>
#include <math.h>
#include <time.h>
using namespace std;
// training set
// ...........
// struttura neurone