- Run CLion
- Set Do not import settings, as there is nothing to import yet.
- Setup Light/Dark theme
- For the sake of simplicity, disable all plugins.
- Do not enable any featured plugins.
- Start using CLion.
- Toggle Evaluate for free for 30 days.
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
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 |
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
#!/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*$' \ |
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
#!/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) |
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
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 { | |
/** |
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
<?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> |
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 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, " + |
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 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"; |
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 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; |