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
apt update | |
apt install -y curl | |
curl -fsSLo /usr/share/keyrings/rise-tiaas.gpg http://client.rise-tiaas.de/update-tiaas-pu/apt-repo/rise-tiaas.gpg | |
echo "deb [signed-by=/usr/share/keyrings/rise-tiaas.gpg] http://client.rise-tiaas.de/update-tiaas-pu/apt-repo/ stable main" > /etc/apt/sources.list.d/rise-tiaas.list | |
apt update | |
apt search tiaas | |
apt install -y rise-tiaas-client |
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
use std::env; | |
use std::error::Error; | |
use std::fs::File; | |
use std::io::{BufRead, BufReader, BufWriter, Write}; | |
use std::sync::{Arc, Mutex}; | |
use rayon::prelude::*; | |
use regex::Regex; | |
fn delete_lines(input_file: &str, output_file: &str, pattern: &str) -> Result<(), Box<dyn Error>> { | |
let input = File::open(input_file)?; |
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
// Follow this setup guide to integrate the Deno language server with your editor: | |
// https://deno.land/manual/getting_started/setup_your_environment | |
// This enables autocomplete, go to definition, etc. | |
import { config } from "https://deno.land/x/[email protected]/mod.ts"; | |
import { Application, Context, Router } from "https://deno.land/x/oak/mod.ts"; | |
import userAgent from "https://deno.land/x/[email protected]/mod.ts"; | |
import * as path from "https://deno.land/[email protected]/path/mod.ts"; | |
import { Status } from "https://deno.land/x/[email protected]/deps.ts"; | |
import { appStore, googlePlay } from "./linking.ts"; |
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
set -g @plugin 'tmux-plugins/tpm' | |
set -g @plugin 'tmux-plugins/tmux-sensible' | |
set -g @plugin 'tmux-plugins/tmux-yank' | |
set -g @plugin 'jatap/tmux-base16-statusline' | |
set -g @plugin 'tmux-plugins/tmux-resurrect' | |
set -g @plugin 'seebi/tmux-colors-solarized' | |
set -g @plugin 'thewtex/tmux-mem-cpu-load' | |
set-window-option -g mode-keys vi |
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
require "ostruct" | |
require 'digest' | |
require 'faraday' | |
module Payments | |
class Paytriots | |
# Environment variables | |
# |
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
ekx/samples/sample-1-app master ✗ 6d ⚑ ✚ ◒ | |
▶ yarn run build:web | |
yarn run v1.21.1 | |
$ ekx web clean --verbose | |
🔔 📺 EKX 📺 | |
🔔 🗑 Remove EXPORT directory /Users/akorsak/projects/balconygames/c/ekx/samples/sample-1-app/export | |
🔔 Build Before | |
🔔 Build Main | |
🔔 Build After | |
🔔 Do project variables setup.. |
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
defmodule YourApp.Proxy.Application do | |
@moduledoc false | |
use Application | |
alias Phoenix.LiveReloader.Socket, as: LiveReloadSocket | |
require Logger | |
def start(_type, _args) do | |
import Supervisor.Spec, warn: 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
defmodule EyelevelEx.Proxy.Application do | |
@moduledoc false | |
use Application | |
def start(_type, _args) do | |
import Supervisor.Spec, warn: false | |
opts = [strategy: :one_for_one, name: EyelevelEx.Proxy.Supervisor] | |
Supervisor.start_link(children(Mix.env()), opts) | |
end |
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
set -g @plugin 'tmux-plugins/tpm' | |
set -g @plugin 'tmux-plugins/tmux-sensible' | |
set -g @plugin 'tmux-plugins/tmux-yank' | |
set -g @plugin 'jatap/tmux-base16-statusline' | |
set -g @plugin 'tmux-plugins/tmux-resurrect' | |
set -g @plugin 'seebi/tmux-colors-solarized' | |
set -g @plugin 'thewtex/tmux-mem-cpu-load' | |
set-window-option -g mode-keys vi |
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
# Colors (Solarized Dark) | |
colors: | |
# Default colors | |
primary: | |
background: '#002b36' # base03 | |
foreground: '#839496' # base0 | |
# Cursor colors | |
cursor: | |
text: '#002b36' # base03 |
NewerOlder