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.
#!/usr/bin/python3
# Copyright 2012 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# Virtual Me2Me implementation. This script runs and manages the processes
# required for a Virtual Me2Me desktop, which are: X server, X desktop
# session, and Host process.
# This script is intended to run continuously as a background daemon
# process, running under an ordinary (non-root) user account.

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