Skip to content

Instantly share code, notes, and snippets.

@Szil
Szil / config.json
Last active August 29, 2015 14:17 — forked from anonymous/config.json
{
"vars": {
"@gray-base": "#000",
"@gray-darker": "lighten(@gray-base, 13.5%)",
"@gray-dark": "lighten(@gray-base, 20%)",
"@gray": "lighten(@gray-base, 33.5%)",
"@gray-light": "lighten(@gray-base, 46.7%)",
"@gray-lighter": "lighten(@gray-base, 93.5%)",
"@brand-primary": "darken(#428bca, 6.5%)",
"@brand-success": "#5cb85c",
@Szil
Szil / config.json
Last active August 29, 2015 14:17 — forked from anonymous/config.json
{
"vars": {
"@gray-base": "#000",
"@gray-darker": "lighten(@gray-base, 13.5%)",
"@gray-dark": "lighten(@gray-base, 20%)",
"@gray": "lighten(@gray-base, 33.5%)",
"@gray-light": "lighten(@gray-base, 46.7%)",
"@gray-lighter": "lighten(@gray-base, 93.5%)",
"@brand-primary": "darken(#428bca, 6.5%)",
"@brand-success": "#5cb85c",
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>avsort.js</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="./lib/codemirror/codemirror.css">
<link rel="stylesheet" type="text/css" href="./style.css">
@Szil
Szil / main.js
Created October 31, 2014 14:18
chathub
$(function () {
var name = '';
var connected = false;
var numUsers = 0;
// Reference the auto-generated proxy for the hub.
var chat = $.connection.chatHub;
// Create a function that the hub can call back to display messages.
chat.client.addNewMessageToPage = function (name, message) {
// Add the message to the page.
import java.util.ArrayList;
import java.util.Collections;
import java.util.Random;
/**
* Created by Gergo on 2014.09.19..
*/
public class NinetyNineProblem {
static Integer[] riddleArray = new Integer[99];
import java.util.ArrayList;
import java.util.Collections;
import java.util.Random;
/**
* Created by Gergo on 2014.09.19..
*/
public class NinetyNineProblem {
static Integer[] riddleArray = new Integer[99];
@Szil
Szil / UpdateManager.java
Created July 7, 2014 09:15
mobilinfo-updatemanager
package info.kallaim.gdfinfo;
import android.app.Notification;
import android.app.NotificationManager;
import android.content.ContentValues;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
import android.database.sqlite.SQLiteDatabase;
@Szil
Szil / ormConfig.java
Created June 22, 2014 19:21
Maven Depencies
package controller;
import com.avaje.ebean.config.ServerConfig;
/**
*
*
*
* Created by Gergo on 2014.06.22..
*/