Category: Web development
- How to make simple Mastodon bot ()
Today we’re going to write simple Twitter-Mastodon exporter, which listens to tweets from one or several accounts and then publishes new tweets to Mastodon page. Project initialization Firstly, make new npm project: npm init npm i –save twitter mastodon I’ve decided to make this project in TS, so here’s our tsconfig.json: { “compilerOptions”: { “module”: […]
- Simple dark HTML Template ()
Small HTML template, which I designed to practice my design skills. It looks… well, not so bad, not so good. Feel free to use for any purpose. Github repository Demo
- Open Source .Net Web Scraper ()
Working example of program scraping prices from competitor’s websites to csv table. Was done for a customer, but he agreed to share this code with public. Gitlab repository How to run Install .Net Core Open console Move to root project directory, which contains .csproj file Type dotnet run
- Simple Python site downloader ()
Simple script that can be used for collecting information from website by downloading whole pages.