Following steps are for starting a PostgreSQL database locally on your machine
and accessing it as a postgres user.
sudo apt install postgresql
- note down the version with
psql --version
| #!/bin/bash | |
| # | |
| # convert mp4 video to gif and optionally remove green background | |
| # | |
| # created: early 2025 | |
| # ffmpeg version 5.1.6-0+deb12u1 | |
| # ImageMagick 6.9.11-60 |
| #!/bin/bash | |
| # | |
| # Generate a key-pair of PGP keys using gpg | |
| # ----------------------------------------- | |
| # ...a small wrapper around gpg | |
| # ...date of creation: April 2025 | |
| # ...author: okurka12 | |
| # | |
| # | |
| # How it works |
| # | |
| # IPK25chat client TCP stream test | |
| # author: vita v22.0 | |
| # date: 13. 4. 2025 | |
| # python 3.13.0 | |
| # | |
| import socket | |
| ADDRESS = "127.0.0.1" | |
| PORT = 4567 |
Hi, I'm from Brno University of Technology in the Czech republic and I’d like to ask for your help with my UX research:
You work for a secret agency and need to send highly classified materials — photos — to your colleagues. You’ll use FITstagram for this, as it allows you to restrict access to posts to specific users. As a cover, you’ll also upload a public post.
FITstagram is a platform created last semester as a project for the course Information Systems (IIS). It allows users to share photos.
| ################################################################################ | |
| # solve linear minimization/maximization problem using glpk | |
| # | |
| # based on example from: | |
| # https://octave.sourceforge.io/octave/function/glpk.html | |
| ################################################################################ | |
| # objective function coefficients | |
| c = [12000,9000]'; |
Ahoj, jsem z FIT VUT a chtěl bych vás poprosit o pomoc s mým UX výzkumem:
Pracujete pro tajnou službu a potřebujete vašim kolegům zaslat přísně tajné materiály — fotografie. Využijete pro to FITstagram, který umožňuje omezit přístup k příspěvkům pouze pro konkrétní uživatele. Jako záminku nahrajete i veřejný příspěvek.
FITstagram je platforma vznikuvší minulý semestr jako projekt do předmětu informační systémy (IIS). Umožňuje sdílet fotografie.
| Jazyk C DU1 25.2.2025 | |
| ---------------------------------------------------------------- | |
| Domácí úkol č.1 | |
| Termín odevzdání: 25.3.2025 | |
| Hodnocení celkem max. 15 bodů | |
| Čtěte pokyny na konci tohoto textu |
| /***************** | |
| ** Vit Pavlik ** | |
| ** xpavli0a ** | |
| ** 251301 ** | |
| *****************/ | |
| /** | |
| * Logging macros | |
| */ |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <!-- boilerplate --> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <!-- site title --> |