Skip to content

Instantly share code, notes, and snippets.

View hisava's full-sized avatar

hi sava hisava

View GitHub Profile
#include <iostream>
using namespace std;
int main() {
srand( time( NULL ) );
while ( true ) {
int randNum = rand() % 100 + 1;
cout << randNum << endl;
if ( randNum > 95 ) {
cout << "Конец цикла while" << endl;
break;
@hisava
hisava / GitHub Pages Jekyll Dockerfile
Last active August 11, 2023 09:41 — forked from BillRaymond/GitHub Pages Jekyll Dockerfile
GitHub Pages and Jekyll Dockerfile
# "#################################################"
# Dockerfile to build a GitHub Pages Jekyll site
# - Ubuntu 22.04
# - Ruby 3.1.2
# - Jekyll 3.9.3
# - GitHub Pages 288
#
# This code is from the following Gist:
# https://gist.github.com/BillRaymond/db761d6b53dc4a237b095819d33c7332#file-post-run-txt
#