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
[allenuser@1e57ed4f5960 build]$ cmake -DSTANDALONE=ON .. | |
-- CMAKE_BUILD_TYPE: RelWithDebInfo | |
-- Separable compilation: ON | |
-- CPU_ARCH: native | |
-- Memory manager: SINGLE_ALLOC | |
-- Synchronous device execution: OFF | |
-- Contracts: OFF | |
-- Magfield use texture: OFF | |
-- Allen device target: CPU | |
-- Could NOT find FFI (missing: FFI_LIBRARIES HAVE_FFI_CALL) |
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
enum TipoHabitacion { | |
// Esta es la clave: qué pasa cuando añades un nuevo tipo de habitación? | |
//Free(0.0f), | |
Lowcost(50.0f), | |
Doble(100.0f), | |
Suite(200.0f); | |
private final float coste; | |
TipoHabitacion(float c) { |
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
## K8s cluster with kind | |
Docker is the only available dependency. | |
TODO: amd64? | |
docker build -t kind-cli -f Dockerfile.kind . | |
docker run --rm -it \ | |
-v /var/run/docker.sock:/var/run/docker.sock \ | |
kind-cli --help |
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
{ | |
"name": "Minio", | |
"description": null, | |
"permissions": "PUBLIC_READ_WRITE", | |
"pages": [ | |
{ | |
"name": "Minio", | |
"description": null, | |
"widgets": [ | |
{ |
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
set hlsearch | |
set scrolloff=3 | |
set ignorecase smartcase | |
set showmode | |
set history=1000 | |
set NERDTree | |
" antonmry | |
let mapleader = " " | |
let g:mapleader = " " |
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
--- Name: minimum | |
--- Description: A minimal colorscheme for neovim. | |
--- Author: Peter Aronoff | |
--- License: BSD-3-Clause | |
--- URL: https://github.com/telemachus/dotfiles/blob/main/config/nvim/colors/minimum.lua | |
local g = vim.g | |
local cmd = vim.cmd | |
if g.colors_name ~= nil then | |
cmd("highlight clear") |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>litra-auto-on</string> | |
<key>ProgramArguments</key> | |
<array><string>/Library/LaunchDaemons/litra-auto-on.sh</string></array> | |
<key>RunAtLoad</key> | |
<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
FROM nginx:latest | |
WORKDIR /usr/share/nginx/html | |
COPY index.html index.html |
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
spring: | |
kafka: | |
producer: | |
value-serializer: org.springframework.kafka.support.serializer.JsonSerializer | |
logging: | |
level: | |
org.springframework.kafka.*: OFF | |
org.springframework.kafka.listener.[KafkaMessageListenerContainer$ListenerConsumer]: OFF | |
org.apache.kafka.*: OFF |
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 example; | |
import lombok.*; | |
@Data | |
@NoArgsConstructor(access = AccessLevel.PRIVATE, force = true) | |
@AllArgsConstructor | |
public class Foo2 { | |
private String foo; | |
} |
NewerOlder