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
| font-size=16 | |
| window-padding-balance=true | |
| window-padding-x=10 | |
| window-save-state=always | |
| background-opacity=0.9 | |
| background-blur-radius=20 | |
| confirm-close-surface=always |
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
| // Zed settings | |
| // | |
| // For information on how to configure Zed, see the Zed | |
| // documentation: https://zed.dev/docs/configuring-zed | |
| // | |
| // To see all of Zed's default settings without changing your | |
| // custom settings, run the `open default settings` command | |
| // from the command palette or from `Zed` application menu. | |
| { | |
| "assistant": { |
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
| 'use client'; | |
| import { ClerkProvider } from "@clerk/nextjs"; | |
| import { dark } from "@clerk/themes"; | |
| import { useTheme } from "next-themes"; | |
| export function ClerkThemedProvider({ children }: { children: React.ReactNode }) { | |
| const { resolvedTheme } = useTheme(); | |
| const clerkTheme = resolvedTheme === 'dark' ? dark : undefined; |
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 { App } from '@octokit/app'; | |
| import { EmitterWebhookEvent } from '@octokit/webhooks'; | |
| import { WebhookEventName } from '@octokit/webhooks-types'; | |
| import { AppService } from '../github-apps/services/app-service'; | |
| //prep:create app | |
| this.app = new App({ | |
| appId, | |
| privateKey, | |
| webhooks: { |
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 org.oxbow.codebridge.ui.main | |
| import java.io.File | |
| import scala.reflect.runtime.universe | |
| import org.controlsfx.control.StatusBar | |
| import org.oxbow.codebridge.scm.Repository | |
| import org.oxbow.codebridge.util.InjectableController | |
| import javafx.application.Platform | |
| import javafx.fxml.FXML | |
| import javafx.geometry.Orientation |
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
| plugins: [ | |
| "hyper-statusline", | |
| "hyperterm-bold-tab", | |
| "hyper-tabs-enhanced", | |
| "hyper-papercolor", | |
| "hyper-opacity", | |
| "hyper-simple-highlight-active-session", | |
| "hypercwd", | |
| "hyper-pane", | |
| "hyper-search" |
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
| { | |
| "editor.fontSize": 15, | |
| "editor.fontFamily": "Consolas, Menlo, Monaco, 'Courier New', monospace", | |
| "editor.tabSize": 4, | |
| "terminal.integrated.fontFamily": "Consolas, Menlo, Monaco, 'Courier New', monospace", | |
| "terminal.integrated.fontSize": 15, | |
| // "terminal.integrated.fontWeight" | |
| "http.proxy": "http://go-proxy.fpl.com:8080", |
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
| // flatMap | |
| // This code is equivalent to: | |
| // option.flatMap(foo(_)) | |
| option match { | |
| case None => None | |
| case Some(x) => foo(x) | |
| } | |
| // flatten | |
| // This code is equivalent to: |
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
| <!-- | |
| Following switches Spring proxy targeting to classes vs interfaces as default | |
| and allows for using Spring annotations (scanning etc) in Scala | |
| --> | |
| <aop:config proxy-target-class="true"/> |
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
| JTable table = TableRowFilterSupport.forTable(new JTable()).searchable(true).apply(); |
NewerOlder