summary refs log blame commit diff stats
path: root/java/state.sql
blob: a59f11f2ee858961aafd1bf2da6e764c6f5150a8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                                                                  
-- Assignment status using SQLite

CREATE TABLE `assignments` (
    `name` text, `code` boolean, `output` boolean, `text` boolean, `shown` boolean
);

INSERT INTO `assignments` VALUES 
    ('ArraySearch', true, true, true, true),
    ('ArraySort', true, true, true, true),
    ('StringOperations', true, true, true, true),
    ('MatrixOperations', true, true, true, true);

.mode markdown
SELECT * FROM `assignments`;
h self.settings.my_option, assuming self is a subclass of ranger.core.shared.SettingsAware. Adding colorschemes ------------------- * Copy ranger/colorschemes/default.py to ranger/colorschemes/myscheme.py and modify it according to your needs. Alternatively, create a subclass of ranger.colorschemes.default.Default and override the "use" method, as it is done in the "Jungle" colorscheme. * Add this line to your ~/.config/ranger/rc.conf: set colorscheme myscheme Change which programs start which file types -------------------------------------------- Edit the configuration file ~/.config/ranger/rifle.conf. The default one can be obtained by running "ranger --copy-config rifle". Change which file extensions have which mime type ------------------------------------------------- Modify ranger/data/mime.types. You may also add your own entries to ~/.mime.types Change which files are previewed in the auto preview ---------------------------------------------------- In ranger/container/file.py, change the constant PREVIEW_BLACKLIST