1.) Download a Nerd Font
2.) Unzip and copy to ~/.fonts
3.) Run the command fc-cache -fv
to manually rebuild the font cache
################################################## | |
# Packages | |
# $ sudo apt install -y xclip grc gobuster rlwrap evil-winrm powercat seclists peass raven | |
# Install flatpak | |
# -> https://www.kali.org/docs/tools/flatpak/ | |
# urlencode: | |
# $ sudo apt install gridsite-clients | |
# Python2 pip | |
# $ sudo sh -c "curl https://bootstrap.pypa.io./pip/2.7/get-pip.py | python2" | |
# Cool Hollywood screensaver ❤️ |
1.) Download a Nerd Font
2.) Unzip and copy to ~/.fonts
3.) Run the command fc-cache -fv
to manually rebuild the font cache
#!/usr/bin/env ruby | |
begin | |
require "bundler/inline" | |
rescue LoadError => e | |
puts "You should install bundler with >= 1.10.3 version." | |
puts "* Current Ruby: #{`ruby -v`}" | |
puts "* Current Bundler: #{`gem list bundler`}" | |
puts "* Original Exception: \"#{e.message}\"" | |
exit 1 |
class NotesController < ApplicationController | |
self.responder = NotesResponder | |
def create | |
@page = Page.find(params[:page_id]) | |
@note = page.notes.create(params[:note]) | |
respond_with(@note, :location => page_path(@page)) | |
end | |
end |