This file contains 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 cups | |
import time | |
import json,httplib | |
import random | |
import qrcode | |
from xhtml2pdf import pisa | |
import mysql.connector | |
import datetime | |
#Data to get access to database in hosting |
This file contains 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 cups | |
import time | |
import json,httplib | |
import random | |
import qrcode | |
from xhtml2pdf import pisa | |
notes = 7 | |
array = {} | |
mSeconds = 2 |
This file contains 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 cups | |
from xhtml2pdf import pisa | |
def main(): | |
filename = "/home/stopfan/print.pdf" | |
xhtml = "<h1>Test print</h1>\n" | |
xhtml += "<h2>This is test print</h2>\n" | |
xhtml += "<p><img src='/home/stopfan/image.jpg'/></p>" | |
pdf = pisa.CreatePDF(xhtml, file(filename, "w")) |
This file contains 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 <iostream> | |
#include <conio.h> | |
int getDet(int, int**); | |
int countMinor(int **); | |
int** getMinor(int**, int, int, int); |
This file contains 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
# Built application files | |
*.apk | |
*.ap_ | |
# Files for the Dalvik VM | |
*.dex | |
# Java class files | |
*.class |
This file contains 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
.gradle | |
/local.properties | |
/.idea/workspace.xml | |
/.idea/libraries | |
.DS_Store | |
/build |
This file contains 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
.gradle | |
/local.properties | |
/.idea/workspace.xml | |
/.idea/libraries | |
.DS_Store | |
/build |
This file contains 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
.gradle | |
/local.properties | |
/.idea/workspace.xml | |
/.idea/libraries | |
.DS_Store | |
/build |
This file contains 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 Solution { | |
/* | |
* Initialisation of sum | |
* Initialization of parametres of field | |
*/ | |
public static double sum=1; | |
public static double heigth = 3; | |
public static double length = 3; | |
//---------------------------------------------------------- |
This file contains 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.io.File; | |
import java.io.IOException; | |
import java.util.*; | |
public class main { | |
//Arrays declarations | |
//Array of Human objects | |
public static List<Human> humans = new ArrayList<Human>(); |
NewerOlder