Skip to content

Commit

Permalink
Deploying to gh-pages from @ c254cd3 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredrummler committed Mar 28, 2024
1 parent e6a548c commit e30e25a
Show file tree
Hide file tree
Showing 43 changed files with 2,073 additions and 2,762 deletions.
2 changes: 1 addition & 1 deletion 404.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion about/index.html

Large diffs are not rendered by default.

32 changes: 16 additions & 16 deletions assets/cards/languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,61 +2,61 @@
{
"title": "C++",
"url": "styles/cpp",
"image": "https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/cplusplus/cplusplus-original.svg"
"image": "assets/img/cplusplus.svg"
},
{
"title": "C#",
"url": "styles/csharp",
"image": "https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/csharp/csharp-original.svg"
"image": "assets/img/csharp.svg"
},
{
"title": "Dart",
"url": "styles/dart",
"image": "https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/dart/dart-original.svg"
"image": "assets/img/dart.svg"
},
{
"title": "Go",
"url": "styles/go",
"image": "https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/go/go-original-wordmark.svg"
"image": "assets/img/go.svg"
},
{
"title": "Java",
"url": "styles/java",
"image": "https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/java/java-original.svg"
"image": "assets/img/java.svg"
},
{
"title": "JavaScript",
"url": "styles/javascript",
"image": "https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/javascript/javascript-original.svg"
"image": "assets/img/javascript.svg"
},
{
"title": "Kotlin",
"url": "styles/kotlin",
"image": "https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/kotlin/kotlin-original.svg"
"image": "assets/img/kotlin.svg"
},
{
"title": "Objective-C",
"url": "styles/objc",
"image": "https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/objectivec/objectivec-plain.svg"
"image": "assets/img/objective-c.svg"
},
{
"title": "Python",
"url": "styles/python",
"image": "https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/python/python-original.svg"
"image": "assets/img/python.svg"
},
{
"title": "Rust",
"url": "styles/rust",
"image": "https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/rust/rust-line.svg"
},
{
"title": "Shell",
"url": "styles/shell",
"image": "https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/swift/swift-original.svg"
"image": "assets/img/rust.svg"
},
{
"title": "Swift",
"url": "styles/swift",
"image": "https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/typescript/typescript-original.svg"
"image": "assets/img/swift.svg"
},
{
"title": "TypeScript",
"url": "styles/typescript",
"image": "assets/img/typescript.svg"
}
]
71 changes: 37 additions & 34 deletions assets/css/app.css
Original file line number Diff line number Diff line change
@@ -1,67 +1,70 @@
:root {
--md-primary-fg-color: #007BFF;
--md-primary-fg-color--light: #288EFA;
--md-primary-fg-color--dark: #005DC1;
--md-primary-fg-color: #007BFF;
--md-primary-fg-color--light: #288EFA;
--md-primary-fg-color--dark: #005DC1;
}

/* region: Code Block Styles */

/* Code Block: good-code */
.highlight.good-code code, .highlight.good-code code *,
.highlight.good-code .linenos, .highlight.good-code .linenos * {
background-color: #f3fbf9 !important;
background-color: #f3fbf9 !important;
}

/* Title: good-code */
.highlight.good-code th, .highlight.good-code th * {
background-color: #2c7a7b !important;
color: #f0f3f4;
.highlight.good-code th, .highlight.good-code th *,
.highlight.good-code .filename, .highlight.good-code .filename * {
background-color: #2c7a7b !important;
color: #f0f3f4;
}

/* Code Block: bad-code */
.highlight.bad-code code, .highlight.bad-code code *,
.highlight.bad-code .linenos, .highlight.bad-code .linenos * {
background-color: #fcf3f6 !important;
background-color: #fcf3f6 !important;
}

/* Title: bad-code */
.highlight.bad-code th, .highlight.bad-code th * {
background-color: #a8323e !important;
color: #f9f9f9;
.highlight.bad-code th, .highlight.bad-code th *,
.highlight.bad-code .filename, .highlight.bad-code .filename * {
background-color: #a8323e !important;
color: #f9f9f9;
}


[data-md-color-scheme="slate"] {

/* Code Block: good-code */
/* Code Block: good-code */

.highlight.good-code code, .highlight.good-code code *,
.highlight.good-code .linenos, .highlight.good-code .linenos * {
background-color: #1a2a2a !important;
color: #e0e0e0;
}
.highlight.good-code code, .highlight.good-code code *,
.highlight.good-code .linenos, .highlight.good-code .linenos * {
background-color: #1a2a2a !important;
color: #e0e0e0;
}

/* Title: good-code */
/* Title: good-code */

.highlight.good-code th, .highlight.good-code th * {
background-color: #20635c !important;
color: #e0e0e0;
}
.highlight.good-code th, .highlight.good-code th *,
.highlight.good-code .filename, .highlight.good-code .filename * {
background-color: #20635c !important;
color: #e0e0e0;
}

/* Code Block: bad-code */
/* Code Block: bad-code */

.highlight.bad-code code, .highlight.bad-code code *,
.highlight.bad-code .linenos, .highlight.bad-code .linenos * {
background-color: #2a1a1f !important;
color: #d1d1d1;
}
.highlight.bad-code code, .highlight.bad-code code *,
.highlight.bad-code .linenos, .highlight.bad-code .linenos * {
background-color: #2a1a1f !important;
color: #d1d1d1;
}

/* Title: bad-code */
/* Title: bad-code */

.highlight.bad-code th, .highlight.bad-code th * {
background-color: #78202a !important;
color: #d1d1d1;
}
.highlight.bad-code th, .highlight.bad-code th *,
.highlight.bad-code .filename, .highlight.bad-code .filename * {
background-color: #78202a !important;
color: #d1d1d1;
}
}

/* endregion */
28 changes: 28 additions & 0 deletions assets/files/kotlin-jetbrains.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<code_scheme name="GoatStyles — Kotlin" version="173">
<option name="RIGHT_MARGIN" value="100" />
<JavaCodeStyleSettings>
<option name="CLASS_NAMES_IN_JAVADOC" value="3" />
<option name="CLASS_COUNT_TO_USE_IMPORT_ON_DEMAND" value="666" />
<option name="NAMES_COUNT_TO_USE_IMPORT_ON_DEMAND" value="666" />
</JavaCodeStyleSettings>
<JetCodeStyleSettings>
<option name="PACKAGES_TO_USE_STAR_IMPORTS">
<value>va.util" alias="false" withSubpackages="false" />
<package name="kotlinx.html" alias="false" withSubpackages="true" />
<package name="kotlinx.android.synthetic" alias="false" withSubpackages="true" />
<package name="io.ktor" alias="false" withSubpackages="true" />
</value>
</option>
<option name="NAME_COUNT_TO_USE_STAR_IMPORT" value="2147483647" />
<option name="NAME_COUNT_TO_USE_STAR_IMPORT_FOR_MEMBERS" value="2147483647" />
<option name="CODE_STYLE_DEFAULTS" value="KOTLIN_OFFICIAL" />
</JetCodeStyleSettings>
<codeStyleSettings language="kotlin">
<option name="CODE_STYLE_DEFAULTS" value="KOTLIN_OFFICIAL" />
<indentOptions>
<option name="INDENT_SIZE" value="2" />
<option name="CONTINUATION_INDENT_SIZE" value="4" />
<option name="TAB_SIZE" value="2" />
</indentOptions>
</codeStyleSettings>
</code_scheme>
98 changes: 98 additions & 0 deletions assets/files/kotlin.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = false
max_line_length = 100
tab_width = 2
ij_continuation_indent_size = 4

[{*.kt,*.kts}]
indent_size = 2
tab_width = 2
ij_continuation_indent_size = 4
ij_kotlin_align_in_columns_case_branch = false
ij_kotlin_align_multiline_binary_operation = false
ij_kotlin_align_multiline_extends_list = false
ij_kotlin_align_multiline_method_parentheses = false
ij_kotlin_align_multiline_parameters = true
ij_kotlin_align_multiline_parameters_in_calls = false
ij_kotlin_allow_trailing_comma = false
ij_kotlin_allow_trailing_comma_on_call_site = false
ij_kotlin_assignment_wrap = normal
ij_kotlin_blank_lines_after_class_header = 0
ij_kotlin_blank_lines_around_block_when_branches = 0
ij_kotlin_blank_lines_before_declaration_with_comment_or_annotation_on_separate_line = 1
ij_kotlin_block_comment_add_space = false
ij_kotlin_block_comment_at_first_column = true
ij_kotlin_call_parameters_new_line_after_left_paren = true
ij_kotlin_call_parameters_right_paren_on_new_line = true
ij_kotlin_call_parameters_wrap = on_every_item
ij_kotlin_catch_on_new_line = false
ij_kotlin_class_annotation_wrap = split_into_lines
ij_kotlin_code_style_defaults = KOTLIN_OFFICIAL
ij_kotlin_continuation_indent_for_chained_calls = false
ij_kotlin_continuation_indent_for_expression_bodies = false
ij_kotlin_continuation_indent_in_argument_lists = false
ij_kotlin_continuation_indent_in_elvis = false
ij_kotlin_continuation_indent_in_if_conditions = false
ij_kotlin_continuation_indent_in_parameter_lists = false
ij_kotlin_continuation_indent_in_supertype_lists = false
ij_kotlin_else_on_new_line = false
ij_kotlin_enum_constants_wrap = off
ij_kotlin_extends_list_wrap = normal
ij_kotlin_field_annotation_wrap = split_into_lines
ij_kotlin_finally_on_new_line = false
ij_kotlin_if_rparen_on_new_line = true
ij_kotlin_import_nested_classes = false
ij_kotlin_imports_layout = *,java.**,javax.**,kotlin.**,^
ij_kotlin_insert_whitespaces_in_simple_one_line_method = true
ij_kotlin_keep_blank_lines_before_right_brace = 2
ij_kotlin_keep_blank_lines_in_code = 2
ij_kotlin_keep_blank_lines_in_declarations = 2
ij_kotlin_keep_first_column_comment = true
ij_kotlin_keep_indents_on_empty_lines = false
ij_kotlin_keep_line_breaks = true
ij_kotlin_lbrace_on_next_line = false
ij_kotlin_line_break_after_multiline_when_entry = true
ij_kotlin_line_comment_add_space = false
ij_kotlin_line_comment_add_space_on_reformat = false
ij_kotlin_line_comment_at_first_column = true
ij_kotlin_method_annotation_wrap = split_into_lines
ij_kotlin_method_call_chain_wrap = normal
ij_kotlin_method_parameters_new_line_after_left_paren = true
ij_kotlin_method_parameters_right_paren_on_new_line = true
ij_kotlin_method_parameters_wrap = on_every_item
ij_kotlin_name_count_to_use_star_import = 2147483647
ij_kotlin_name_count_to_use_star_import_for_members = 2147483647
ij_kotlin_packages_to_use_import_on_demand = java.util.*,kotlinx.html.**,kotlinx.android.synthetic.**,io.ktor.**
ij_kotlin_parameter_annotation_wrap = off
ij_kotlin_space_after_comma = true
ij_kotlin_space_after_extend_colon = true
ij_kotlin_space_after_type_colon = true
ij_kotlin_space_before_catch_parentheses = true
ij_kotlin_space_before_comma = false
ij_kotlin_space_before_extend_colon = true
ij_kotlin_space_before_for_parentheses = true
ij_kotlin_space_before_if_parentheses = true
ij_kotlin_space_before_lambda_arrow = true
ij_kotlin_space_before_type_colon = false
ij_kotlin_space_before_when_parentheses = true
ij_kotlin_space_before_while_parentheses = true
ij_kotlin_spaces_around_additive_operators = true
ij_kotlin_spaces_around_assignment_operators = true
ij_kotlin_spaces_around_equality_operators = true
ij_kotlin_spaces_around_function_type_arrow = true
ij_kotlin_spaces_around_logical_operators = true
ij_kotlin_spaces_around_multiplicative_operators = true
ij_kotlin_spaces_around_range = false
ij_kotlin_spaces_around_relational_operators = true
ij_kotlin_spaces_around_unary_operator = false
ij_kotlin_spaces_around_when_arrow = true
ij_kotlin_use_custom_formatting_for_modifiers = true
ij_kotlin_variable_annotation_wrap = off
ij_kotlin_while_on_new_line = false
ij_kotlin_wrap_elvis_expressions = 1
ij_kotlin_wrap_expression_body_functions = 1
ij_kotlin_wrap_first_method_in_call_chain = false
1 change: 1 addition & 0 deletions assets/img/cplusplus.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 0 additions & 3 deletions assets/img/cpp.svg

This file was deleted.

24 changes: 1 addition & 23 deletions assets/img/csharp.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/img/dart.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/img/go.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit e30e25a

Please sign in to comment.