Get-Content
(alias: gc
) is your usual option for reading a text file.
gc log.txt -head 10
gc log.txt -tail 10
gc log.txt -tail 10 -wait # equivalent to tail -f
gc log.txt | %{ $_ -replace '\d+', '($0)' } # sed
macOS has ncurses version 5.7 which doesn't ship the terminfo description for tmux. There're two ways that can help you to solve this problem.
Instead of tmux-256color
you can use screen-256color
, place this command into your ~/.tmux.conf
.
set-option -g default-terminal "screen-256color"
<span lang="face with tears of joy"> 😂 </span> | |
<span lang="grinning face with smiling eyes"> 😄 </span> | |
<span lang="grinning face with sweat"> 😅 </span> | |
<span lang="face with rolling eyes"> 🙄 </span> | |
<span lang="smirking face"> 😏 </span> | |
<span lang="smiling face with halo"> 😇 </span> | |
<span lang="grinning face"> 😀 </span> | |
<span lang="squinting face with tongue"> 😝 </span> | |
<span lang="grinning face with big eyes"> 😃 </span> | |
<span lang="unamused face"> 😒 </span> |
#!/bin/sh | |
# Wrapper script around yay to try to ignore errors | |
# Copyright © 2019 Ashkan Kiani | |
# 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, either version 3 of the License, or | |
# (at your option) any later version. | |
# This program is distributed in the hope that it will be useful, |
# WARNING: These steps seem to not work anymore! | |
#!/bin/bash | |
# Purge existign CUDA first | |
sudo apt --purge remove "cublas*" "cuda*" | |
sudo apt --purge remove "nvidia*" | |
# Install CUDA Toolkit 10 | |
wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/cuda-repo-ubuntu1804_10.0.130-1_amd64.deb |
#!/bin/bash | |
flip_last_branch_name=ongoing-flip-last; | |
git rev-parse --verify $flip_last_branch_name > /dev/null 2>&1; | |
res=$?; | |
if [ "$res" = "0" ]; then | |
echo "An ongoing flip-last is already in progress ($res) ... execute following command to remove it : git branch -D $flip_last_branch_name"; | |
exit -1; | |
fi; |
This is a short post that explains how to write a high-performance matrix multiplication program on modern processors. In this tutorial I will use a single core of the Skylake-client CPU with AVX2, but the principles in this post also apply to other processors with different instruction sets (such as AVX512).
Matrix multiplication is a mathematical operation that defines the product of
def __init__(self,unit): | |
## Type Options ## | |
## "path" is blue, "success" is green, "failed" is red, "node" is yellow, "blue" is itteration, True is white, False does not create an image ## | |
## THIS DETERMINES IF A PATH HAS BEEN FOUND AND WHAT IT IS IF IT HAS FOUND A PATH ## | |
self.pathFound = ["none"] | |
## KEEPS PATH FINDER LOOKING AS LONG AS THERE IS AN OPEN PATH OPTION ## | |
self.pathFoundViable = True | |
self.unit = unit |
To use media keys on the Ducky One 2 Skyline, you must record a macro to bind the media function to a hotkey combination, i.e. Fn
plus some key.
Important: In the instructions below, "Press X+Y+Z
" means press and hold key X
, press and hold key Y
, press and hold key Z
in that order, and then release all three.
As an example, to bind Fn+PgUp
to the play/pause media function:
#!/usr/bin/env python | |
# select a colour with wxPython's | |
# wx.ColourDialog(parent, data) | |
# source: Dietrich 20nov2008 | |
# Description: Python color wheel. | |
import wx | |
class MyPanel(wx.Panel): | |
def __init__(self, parent): | |
wx.Panel.__init__(self, parent, wx.ID_ANY) |