Skip to content

Instantly share code, notes, and snippets.

View muzimka's full-sized avatar

SergeyOrlov muzimka

View GitHub Profile
<target name="util" description="Compile ./mindview/util">
<mkdir dir="bin"/>
<echo>Compile "${srcdir}"</echo>
<javac
includeantruntime="false"
destdir = "${destdir}"
classpath="${classpath}"
srcdir="${src_util}">
package dbhandler;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import java.util.Properties;
@muzimka
muzimka / crack.c
Last active October 14, 2016 08:33
/*-->>
int maxSetNumber =9;
int allCiphers[maxSetNumber];
initSeqOrder(maxSetNumber,allCiphers);
-->>*/
int* initSeqOrder(int n, int *src){
for ( int i = 0; i < n; i++){
src[i]=i;
}
int* strToInts(char* src, int *out){
int n = strlen(src);
for ( int i = 0; i < n; i++){
out[i] = src[i]&15;
}
return out;
}
<div class="history">
<h2>Немного истории</h2>
<dl>
<dt>
<h3>Происхождение кваса</h3>
<i>Источник:</i>
<a href="#" target="_blank">ru.wikipedia.org</a>
</dt>
<dd>
<img alt="Происхождение кваса" src="img/wiki-1.png">
<head>
<title>Еще раз про article. Анонс поста</title>
<meta charset="utf-8">
</head>
<body>
<header class="page-header">
<div class="logo">
<img src="/assets/course73/logo.svg" width="90" height="90">
</div>
<nav class="main-menu">
<!DOCTYPE html>
<html lang="ru">
<head>
<title>Паттерны значений полей</title>
<meta charset="utf-8">
<link rel="stylesheet" href="/assets/course74/keksik-style.css">
</head>
<body>
<header class="page-header">Форма личных данных</header>
<main>
.cards li:not(.king){
background-color:#808080;
}
.cards li:not(.diamond){
background-color: #0099ff;
}
.cards li:not(:first-child){
font-family: "Arial", sans-serif
}
ul:nth-last-child(2)>li{
background-color:#ff3300;
}
li:nth-last-child(2){
background-color:#339933;
}
ul:nth-last-child(2)>li:nth-last-child(2){
background-color:#0099ff;
}
@muzimka
muzimka / 1.css
Last active February 2, 2017 10:08
.footer-middle,
.footer-bottom {
border-top: 1px solid #5e5e5e;
}
.footer-title{
font-family:"Georgia", serif;
font-size: 24px;
font-weight: bold;
color: #a38b70;