Skip to content

Instantly share code, notes, and snippets.

@zupo
zupo / synology_iperf3.md
Last active April 4, 2025 08:15
Synology NAS with DSM 7.1 that starts iperf3 at startup

Synology NAS with DSM 7.1 that starts iperf3 at startup

I wanted to run iperf3 on my Synology NAS to monitor WiFi speeds on different devices around my location.

Steps to install iperf3 are:

  1. Follow https://synocommunity.com/#easy-install to install SynoCommunity package repository.
  2. Log into DSM, Package Center -> Community -> SynoCli Monitor Tools -> Install.
  3. Temporarily enable SSH via Control Panel -> Terminal -> Enable SSH Service
  4. SSH into the NAS:
//Проект "Лабіринт"
//Завдання:
//Якщо персонаж дійшов до виходу з лабіринту в нижньому правому куті,
//гра завершується перемогою
//(вивести діалог із повідомленням : "Перемога – знайдено вихід").
//
//Якщо всі монетки лабіринту зібрані, гра завершується перемогою
//(вивести діалог із повідомленням : "Перемога – монети зібрано").
//
//Додати новий тип об'єктів лабіринту – "ліки", які при збиранні відновлюють здоров'я на 25 очок.
-- 1. Показати назви та категорії товарів, постачальниками яких є ООО "Паньки" або ООО "Які люди".
SELECT p.name [назва товару],
c.name [категорія]
FROM Product p
JOIN Category c ON p.id_category = c.id
JOIN Supplier s ON p.id_supplier = s.id
WHERE s.name IN ('ООО "Паньки"', 'ООО "Які люди"');
-- 2. Вибрати всі товари з вказівкою їх постачальника, ім'я виробника яких не містить літер [АКМ], і категорія яких не "Крупи"
SELECT p.name AS [назва товару],
// 1. Написати функцію Line, яку можна буде викликати так : Line(20, '@', 12, true); І при цьому горизонтально буде намальована лінія, що складається з 20 «собачок» червоного кольору.Якщо передати в останньому параметрі false, то лінія стане вертикальною.
#include <iostream>
#include <windows.h>
using namespace std;
void Line(int length, char symbol, int color, bool isHorizontal) {
HANDLE h = GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleTextAttribute(h, color);
if (isHorizontal) {
@ih2502mk
ih2502mk / list.md
Last active April 4, 2025 08:10
Quantopian Lectures Saved
@sadikay
sadikay / google_fonts.css
Created April 26, 2017 22:34
All Google Fonts In One CSS File
@font-face {
font-family: 'ABeeZee';
font-style: normal;
font-weight: 400;
src: local('ABeeZee'), local('ABeeZee-Regular'), url(http://fonts.gstatic.com/s/abeezee/v9/JYPhMn-3Xw-JGuyB-fEdNA.ttf) format('truetype');
}
@font-face {
font-family: 'Abel';
font-style: normal;
font-weight: 400;
- After making changes, ALWAYS make sure to start up a new server so I can test it.
- Always look for existing code to iterate on instead of creating new code.
- Do not drastically change the patterns before trying to iterate on existing patterns.
- Always kill all existing related servers that may have been created in previous testing before trying to start a new server.
- Always prefer simple solutions
- Avoid duplication of code whenever possible, which means checking for other areas of the codebase that might already have similar code and functionality
- Write code that takes into account the different environments: dev, test, and prod
- You are careful to only make changes that are requested or you are confident are well understood and related to the change being requested
- When fixing an issue or bug, do not introduce a new pattern or technology without first exhausting all options for the existing implementation. And if you finally do this, make sure to remove the old implementation afterwards so we d
@TheSherlockHomie
TheSherlockHomie / RenewExpiredGPGkey.md
Created January 3, 2021 16:36
Updating expired GPG keys and backing them up 🔑🔐💻

Updating expired GPG keys and their backup 🔑🔐💻

I use a GPG key to sign my git commits.

An error like this one might be a sign of an expired GPG key.

error: gpg failed to sign the data fatal: failed to write commit object
@xTCry
xTCry / webpackJsonpVjuher.js
Last active April 4, 2025 08:02
Поиск внутри webpackJsonp
function wpVjuh_FindByWord(pay) {
let stack = [];
for (let chunk of window.webpackJsonp) {
for (let codeID in chunk[1]) {
let codeObj = chunk[1][codeID];
let code = codeObj.toString();
if (code && code.includes(pay)) {
stack.push([codeID, codeObj]);
@Yiannis128
Yiannis128 / youtube-rss-subscriptions
Last active April 4, 2025 07:59
This is a python script that extracts your YouTube subscriptions into an RSS feed. Simply provide as an argument to the script, the path where you have the html file saved of the https://www.youtube.com/feed/channels make sure to check the whole page is saved because the script can only see the channels that are in that file.
#!/usr/bin/env python3
# Licence: GPLV3
import requests
from bs4 import BeautifulSoup as soup
from sys import argv as argv
from time import sleep
def get_channel_id(url):