- feat: add column selection
- fix(output): fix width issue with columns
- test(fs): add tests for filesystem metadata
- feat!: breaking change / feat(config)!: implement config file
- chore(deps): update dependencies
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
# Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved. | |
# | |
# This program is free software; you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation; version 2 of the License. | |
# | |
# This program is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
# GNU General Public License for more details. |
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
{ | |
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", | |
"blocks": [ | |
{ | |
"alignment": "left", | |
"segments": [ | |
{ | |
"foreground": "#98C379", | |
"style": "plain", | |
"template": "\u279c", |
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
FROM rust:slim as builder | |
RUN apt-get update && apt-get install -y libpq-dev libssl-dev pkg-config musl-tools perl make && rm -rf /var/lib/apt/lists/* | |
RUN export OPENSSL_STATIC=1 | |
RUN export OPENSSL_NO_VENDOR=Y | |
RUN rustup target add x86_64-unknown-linux-musl | |
WORKDIR /app | |
COPY . /app | |
RUN cargo build --release --target x86_64-unknown-linux-musl | |
RUN strip /app/target/x86_64-unknown-linux-musl/release/bt_postgres_test |
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
colourful: true | |
filekinds: | |
normal: | |
foreground: null | |
background: null | |
is_bold: false | |
is_dimmed: false | |
is_italic: false | |
is_underline: false | |
is_blink: false |
- Intro to CLI tools, coreutils, shells, and advantages of the terminal.
- Basic introduction to Computer Science, CPU's, turing machines, binary etc.
- Introduction to Open Source and Github.
- Introduction to Functional Programming (can be language agnostic).
- Introduction to C programming + memory management.
- Developer environment efficiency (vim, tmux, tiling window mgmt), effective terminal workflow.
- Back-end/API design best pracices. (language agnostic)
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
-- If LuaRocks is installed, make sure that packages installed through it are | |
-- found (e.g. lgi). If LuaRocks is not installed, do nothing. | |
pcall(require, "luarocks.loader") | |
-- Standard awesome library | |
local gears = require("gears") | |
local awful = require("awful") | |
require("awful.autofocus") | |
-- Widget and layout library | |
local wibox = require("wibox") |
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
func importExcelData(db *gorm.DB) { | |
dataDir := os.Getenv("DIGITAL_EQUITY_WORKDIR") | |
f, err := excelize.OpenFile(dataDir + "/DigitalEquity.xlsx") | |
if err != nil { | |
logrus.Errorf("Failed to open Excel file: %s\n", err) | |
return | |
} | |
sheetName := f.GetSheetName(0) | |
rows, err := f.GetRows(sheetName) |