Skip to content

Instantly share code, notes, and snippets.

@claudiutraistaru
claudiutraistaru / gist:25e4b16e55f9d7bd089609a97a2e06c0
Created January 23, 2024 15:03 — forked from pawelmhm/gist:8917867
Scrapy spider crawling Stack Overflow
from scrapy.spider import Spider
from scrapy.contrib.spiders import CrawlSpider, Rule
from scrapy.contrib.linkextractors.sgml import SgmlLinkExtractor
from scrapy.selector import Selector
from scrapy.item import Item, Field
import urllib
class Question(Item):
tags = Field()
answers = Field()
@claudiutraistaru
claudiutraistaru / networking_datasets.md
Created October 9, 2023 07:07 — forked from stefanbschneider/networking_datasets.md
List of datasets related to networking. Useful for data-driven evaluation or machine learning approaches. Feel free to comment with updates.

FortiClient VPN CLI - Linux

Installation

Before you install the program you also need to install xterm, if this is not already installed, as this program is sometimes used by the client to view the license. To do this open a Terminal and run the following command:

sudo apt-get install xterm