Skip to content

Instantly share code, notes, and snippets.

View InspiritedCoder's full-sized avatar

Kirill Ponomarov InspiritedCoder

View GitHub Profile
import java.io.*;
import java.nio.charset.StandardCharsets;
import java.security.MessageDigest;
import java.util.*;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
class StringUtil {
/* Applies Sha256 to a string and returns a hash. */
public static String applySha256(String input){
#include <bits/stdc++.h>
using namespace std;
struct Node {
int val;
Node *next;
};
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#
### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
set have_grubenv=true
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
interface TPersonage extends Runnable {
public void step();
public void decrement();
}