First you need the 'xsel' package.
$> pacman -S xsel
Then create aliases.
alias pbcopy='xsel --clipboard --input'
alias pbpaste='xsel --clipboard --output'
SPC | |
SPC: find file | |
, switch buffer | |
. browse files | |
: MX | |
; EX | |
< switch buffer | |
` eval | |
u universal arg | |
x pop up scratch |
// Website you intended to retrieve for users. | |
const upstream = 'api.openai.com' | |
// Custom pathname for the upstream website. | |
const upstream_path = '/' | |
// Website you intended to retrieve for users using mobile devices. | |
const upstream_mobile = upstream | |
// Countries and regions where you wish to suspend your service. |
@import 'colors.css'; | |
/*title btn config*/ | |
button.titlebutton.close { | |
margin: 0px; | |
padding: 0px; | |
min-height: 30px; | |
min-width: 30px; | |
color: transparent; | |
background-size: 30px; | |
} |
[Data] | |
DataCount=1 | |
[Data_1] | |
Comment=Shortcuts for taking screenshots with Flameshot | |
DataCount=5 | |
Enabled=true | |
Name=Flameshot | |
SystemGroup=0 | |
Type=ACTION_DATA_GROUP |
package hello; | |
import org.bouncycastle.jce.provider.BouncyCastleProvider; | |
import org.bouncycastle.util.encoders.Base64; | |
import java.nio.charset.StandardCharsets; | |
import java.security.NoSuchAlgorithmException; | |
import java.security.Security; | |
import java.security.spec.AlgorithmParameterSpec; |
import com.fasterxml.jackson.annotation.JsonProperty; | |
import com.fasterxml.jackson.core.JsonParser.Feature; | |
import com.fasterxml.jackson.core.JsonProcessingException; | |
import com.fasterxml.jackson.databind.ObjectMapper; | |
public class ResponseEntity<T> { | |
private static final ObjectMapper mapper = new ObjectMapper(); | |
private int code; |
/* | |
* Copyright (c) 2014, Oracle America, Inc. | |
* All rights reserved. | |
* | |
* Redistribution and use in source and binary forms, with or without | |
* modification, are permitted provided that the following conditions are met: | |
* | |
* * Redistributions of source code must retain the above copyright notice, | |
* this list of conditions and the following disclaimer. | |
* |
function go_switch --argument-names 'verzion' # since version in fish shell is a bulit-in var | |
if not test -n "$verzion" | |
echo "Usage: go_switch [version]" | |
return 1 | |
end | |
if not type -q go # check bootstrap go | |
if [ (uname -i) != "x86_64" ] | |
echo "only x86_64 supported"; and return 1 | |
end |
eclipse.preferences.version=1 | |
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 | |
org.eclipse.jdt.core.compiler.compliance=1.8 | |
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled | |
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning | |
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore | |
org.eclipse.jdt.core.compiler.processAnnotations=disabled | |
org.eclipse.jdt.core.compiler.release=disabled | |
org.eclipse.jdt.core.compiler.source=1.8 | |
org.eclipse.jdt.core.formatter.align_assignment_statements_on_columns=false |