Skip to content

Instantly share code, notes, and snippets.

@fvdxai
fvdxai / package.json
Created February 11, 2020 07:43
private package (module) install via NPM
"dependencies": {
"<Gitepo>": "git+https://<token-from-github>:x-oauth-basic@github.com/<user>/<GitRepo>.git"
}
@fvdxai
fvdxai / task6.c
Last active January 8, 2019 20:19
BSUIR - KR#1 - v3 - task6
#include <stdio.h>
#include <stdlib.h>
#define FIO_MAX_SIZE 50
struct TStudent {
char fio[FIO_MAX_SIZE];
int year;
int group;
int ratings[4];
@fvdxai
fvdxai / task5.c
Last active January 11, 2019 10:13
BSUIR - KR#1 - v3 - task5
/* for build use gcc name.c -o name */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
void find_and_swap(int, int, int**);
void show(int, int, int**);
int main()
{