This gist was built by the community of the researchers and was scribed by Kir and Igor from the QIWI/Vulners. We are grateful for the help of all those who sent us the data, links and information. Together we can make this world a better place!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Output of executed https://github.com/lab2023/builder/blob/develop/linux.sh on Terminal | |
OS: Linux Mint Debian Edition 17 Cinnamon (*Debian Jessie Distro Based) | |
------------------------------------------------------------- | |
Updating system packages ... | |
Using aptitude ... | |
Ign http://dl.google.com stable InRelease |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
#include <string.h> | |
#include <errno.h> | |
#include <signal.h> | |
#include <sys/types.h> | |
#include <sys/wait.h> | |
#define BUFFER_SIZE 1<<16 | |
#define ARR_SIZE 1<<16 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Kisi { | |
//ZİNNUR YEŞİLYURT !!! | |
private static String ad, soyad, dogumtarihi; | |
public static void uyur() { | |
System.out.print("Ben uyuyorum!!!"); | |
} | |
public static void gezer() { | |
System.out.print("Gezmeye çıktım gidiyorum !!!"); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class siralaortala { | |
//ZİNNUR YEŞİLYURT !!! | |
/** | |
* @param args | |
*/ | |
static int[] BuyuktenKucuge(int[] arr) { //insertion sort algoritmasını gerçeledim. | |
int i, j, yenideger; | |
for (i = 1; i < arr.length; i++) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Scanner; | |
public class Diziler { | |
private static Scanner scan; | |
public static void diziyap(String[] args) { | |
scan = new Scanner(System.in); | |
System.out.print("boyut girsene\n"); | |
String[] dizi = new String[scan.nextInt()]; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module KRONOMETRE (CLOCK_50, KEY, HEX7,HEX6,HEX5,HEX4,HEX3,HEX2, HEX1); | |
/******************************************************************/ | |
/**** PORT TANIMLAMALARI ****/ | |
/******************************************************************/ | |
input CLOCK_50; | |
input [3:0] KEY; | |
output [0:6] HEX7,HEX6,HEX5,HEX4,HEX3,HEX2, HEX1; | |
/******************************************************************/ | |
/**** WIRE TANIMLAMALARI,,, ****/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from graphics import* | |
colormap = ['blue','yellow','green'] | |
win = GraphWin("MyCircle", 900, 900) | |
def tiny(x, y, r): | |
c = Circle(Point((x-r), y), r/2) | |
c.draw(win) | |
c.setFill(colormap[0]) | |
d = Circle(Point((x+r), y), r/2) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <time.h> | |
int printRandomNumbers(int limit) { | |
char status[limit]; | |
int i, j, sayac, random, k; | |
for(i = 0; i<limit; i++) | |
status[i] = 'f'; |