Skip to content

Instantly share code, notes, and snippets.

First Time Setup

  1. Run CLion
  2. Set Do not import settings, as there is nothing to import yet.
  3. Setup Light/Dark theme
  4. For the sake of simplicity, disable all plugins.
  5. Do not enable any featured plugins.
  6. Start using CLion.
  7. Toggle Evaluate for free for 30 days.

Zalozenie

hugo new site .

Zalozenie noveho clanku

hugo new content/index.md

Clanky su:

1995-08-24 Windows 95 [Chicago] #win
1998-06-25 Windows 98 [Memphis] #win
2000-02-17 Windows 2000 [NT 5.0] #win-nt
2000-09-14 Windows ME [Millenium] #win
2001-10-25 Windows XP [Whistler] #win #win-nt
2003-04-24 Windows Server 2003 [Whistler Server] #win #win-nt #server
2006-11-30 Windows Vista [Whistler] #win #win-nt
2008-02-27 Windows Server 2008 [Longhorn Server] #win #win-nt #server
2009-10-22 Windows 7 [Vienna] #win #win-nt
2009-10-22 Windows Server 2008 R2 [Longhorn Server] #win #win-nt #server
@novotnyr
novotnyr / keltska_krcma_slack.sh
Last active July 30, 2017 18:41
Downloads a lunch menu from KeltskaKrcma.sk and pipes it to the Slack webhook.
#!/bin/sh
SLACK_HOOK=___FILL_IN____
curl -s http://keltskakrcma.sk/index.php \
| hxnormalize -x \
| hxunent \
| hxselect -i "#left_galeria table:nth-child(11)" \
| hxnormalize -x -i 2 -l 99999 \
| xmlstarlet sel -t -v "//tr[position() > 1]/td//text()" \
| grep -ve '^\s*$' \
@novotnyr
novotnyr / redis-session.sh
Created November 29, 2016 14:19
redis-cli utility to handle Spring Security / Spring Session sessions
#!/bin/sh
COMMAND="$1"
REDIS_CLI="redis-cli"
case "$COMMAND" in
list)
"$REDIS_CLI" keys 'spring:session:sessions:[a-f0-9][a-f0-9]*'
;;
hkeys)
package sk.upjs.ics.android.util;
import android.content.DialogInterface;
import android.database.ContentObserver;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.net.Uri;
public interface Defaults {
/**
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>sk.upjs.ics</groupId>
<artifactId>sql-migrations-demo</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<profiles>
<profile>
<id>db</id>
public class DayGridDatabaseOpenHelper extends SQLiteOpenHelper {
public DayGridDatabaseOpenHelper(Context context) {
super(context, Database.NAME, DEFAULT_CURSOR_FACTORY, Database.VERSION);
}
@Override
public void onCreate(SQLiteDatabase db) {
String sql = "CREATE TABLE %s (" +
"%s INTEGER PRIMARY KEY AUTOINCREMENT, " +
import android.provider.BaseColumns;
public class Database {
public static final String NAME = "daygrid";
public static final int VERSION = 1;
public interface DayColor extends BaseColumns {
public static final String TABLE_NAME = "daycolor";
import android.database.ContentObserver;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase.CursorFactory;
public class Defaults {
public static final String[] NO_PROJECTION = null;
public static final String[] ALL_COLUMNS = null;
public static final String NO_SELECTION = null;