This file contains 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
<?php | |
namespace WPGraphQL\Extensions\OffsetPagination; | |
use WPGraphQL\Data\Connection\AbstractConnectionResolver; | |
use WPGraphQL\Data\Connection\UserConnectionResolver; | |
class Loader | |
{ | |
public static function init() |
This file contains 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
2020-10-12 09:09:34,349 [INFO] - gui_access - GET /jatos/log (admin) | |
2020-10-12 09:09:31,894 [INFO] - gui_access - POST /jatos/study (admin) | |
2020-10-12 09:09:20,684 [INFO] - gui_access - GET /jatos/log (admin) | |
2020-10-12 09:09:19,191 [INFO] - gui_access - POST /jatos/study (admin) | |
2020-10-12 09:09:16,664 [INFO] - gui_access - GET /jatos/log (admin) | |
2020-10-12 09:09:15,683 [INFO] - gui_access - GET /jatos/log (admin) | |
2020-10-12 09:08:44,989 [INFO] - gui_access - GET /jatos/log (admin) | |
2020-10-12 09:08:42,627 [INFO] - gui_access - POST /jatos/study (admin) | |
2020-10-12 09:08:37,504 [INFO] - gui_access - GET /jatos/sidebarStudyList (admin) | |
2020-10-12 09:08:37,475 [INFO] - gui_access - GET /jatos/releaseInfo? (admin) |
This file contains 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
const items = [ | |
{ | |
category: "screwdrivers", | |
name: "screw1" | |
}, | |
{ | |
category: "perforators", | |
name: "perf1" | |
}, | |
{ |
This file contains 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
// -------------------------------------------------- | |
// Flexbox SASS mixins | |
// The spec: http://www.w3.org/TR/css3-flexbox | |
// -------------------------------------------------- | |
// Flexbox display | |
@mixin flexbox() { | |
display: -webkit-box; | |
display: -moz-box; | |
display: -ms-flexbox; |
This file contains 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 sample; | |
import javafx.fxml.FXML; | |
import javafx.collections.FXCollections; | |
import javafx.collections.ObservableList; | |
import javafx.geometry.Orientation; | |
import javafx.scene.control.ListView; | |
import javafx.scene.control.Slider; | |
This file contains 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
# --------------------------------------------------------------------------- | |
# | |
# Description: This file holds all my BASH configurations and aliases | |
# | |
# Sections: | |
# 1. Environment Configuration | |
# 2. Make Terminal Better (remapping defaults and adding functionality) | |
# 3. File and Folder Management | |
# 4. Searching | |
# 5. Process Management |