Skip to content

Instantly share code, notes, and snippets.

View acyuta's full-sized avatar
🌐
Digital Nomad

Akim Glushkov acyuta

🌐
Digital Nomad
View GitHub Profile
@acyuta
acyuta / main.cpp
Last active October 29, 2015 17:46
For T
#include <iostream>
#include <limits>
// climits for intmax value
using namespace std;
void print_array(int *a, int size) {
for (int i = 0; i < size; i++)
cout << a[i] << ' ';
cout << endl;
@acyuta
acyuta / Test.java
Created January 31, 2014 06:30 — forked from skrb/Test.java
import java.io.IOException;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.layout.StackPane;
import javafx.scene.web.WebEngine;
import javafx.scene.web.WebView;
import javafx.stage.Stage;
public class Test extends Application {