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
[Desktop Entry] | |
Type=Application | |
Name=Tilda | |
Comment=Launch Tilda on startup | |
Exec=bash -c 'bash -c $(command -v tilda)' | |
Icon=/usr/share/pixmaps/tilda.png | |
Terminal=false |
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 you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH="/home/damian/.oh-my-zsh" | |
# Set name of the theme to load --- if set to "random", it will | |
# load a random theme each time oh-my-zsh is loaded, in which case, | |
# to know which specific one was loaded, run: echo $RANDOM_THEME | |
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes |
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", | |
"final_space": false, | |
"osc99": true, | |
"blocks": [ | |
{ | |
"type": "prompt", | |
"alignment": "left", | |
"segments": [ | |
{ |
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
{ | |
// TERMINAL | |
"terminal.integrated.fontFamily": "'Hack Nerd Font', 'Jetbrains Mono', Consolas, monospace", | |
"terminal.integrated.sendKeybindingsToShell": true, | |
"workbench.colorCustomizations": { | |
"terminal.background": "#1D2021", | |
"terminal.foreground": "#A89984", | |
"terminalCursor.background": "#A89984", | |
"terminalCursor.foreground": "#A89984", | |
"terminal.ansiBlack": "#1D2021", |
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
// Place your key bindings in this file to override the defaultsauto[] | |
[ | |
{ | |
"key": "ctrl+; ctrl+j", | |
"command": "workbench.action.togglePanel" | |
}, | |
{ | |
"key": "ctrl+j", | |
"command": "-workbench.action.togglePanel" | |
}, |
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
language: bash | |
os: | |
- linux | |
- osx | |
rust: | |
- stable | |
jdk: | |
- oraclejdk |
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
-16 | |
+12 | |
-18 | |
-1 | |
+5 | |
-8 | |
+9 | |
-15 | |
+12 | |
+6 |
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 request = require("request"); | |
const server = require("../../src/server"); | |
const base = "http://localhost:3000/topics/"; | |
const sequelize = require("../../src/db/models/index").sequelize; | |
const Topic = require("../../src/db/models").Topic; | |
const Post = require("../../src/db/models").Post; | |
const User = require("../../src/db/models").User; | |
const Comment = require("../../src/db/models").Comment; | |
describe("routes : comments", () => { |
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
include RSpec | |
require_relative 'hash_item' | |
require_relative 'hashclass' | |
RSpec.describe HashClass, type: Class do | |
let(:lotr_movies) { HashClass.new(6) } | |
describe "#index" do | |
it "creates a hash key based on the string value passed in" do |
NewerOlder