Skip to content

Instantly share code, notes, and snippets.

View franzbischoff's full-sized avatar
I were here

Francisco Bischoff franzbischoff

I were here
View GitHub Profile
@franzbischoff
franzbischoff / fix-permissions.sh
Created March 14, 2024 14:13 — forked from x3rAx/fix-permissions.sh
Shell script to easily fix permissions recursively on files and directories (Set user / group / file mode / dir mode)
#!/usr/bin/env bash
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# MIT License
#
# Copyright (c) 2019 Björn Richter
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
@franzbischoff
franzbischoff / gist:93d6b14b1c3ad9fc3b1f4fc0d3b3ad47
Created September 25, 2023 10:18 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@franzbischoff
franzbischoff / dlpo.ubiquity.js
Created July 11, 2023 15:03 — forked from BrunoCaimar/dlpo.ubiquity.js
DLPO - Dicionário Priberam de Lingua Portuguesa On-Line - Ubiquity command
CmdUtils.CreateCommand({
names: ["dlpo"],
icon: "http://www.priberam.pt/favicon.ico",
description: "DLPO - Dicionário Priberam de Lingua Portuguesa On-Line v0.0.3.20090917",
help: "Procura a definição da palavra informada no DLPO - Dicionário Priberam de Língua Portuguesa On-Line (http://www.priberam.pt/dlpo/)",
author: {
name: "Bruno Caimar",
email: "bruno.caimar@gmail.com"
},
license: "MIT",
@franzbischoff
franzbischoff / GitHubCopilotCLIAlias.ps1
Created May 26, 2023 03:26 — forked from MattJeanes/GitHubCopilotCLIAlias.ps1
Alias commands to use GitHub Copilot CLI in PowerShell
# You should insert this script into your PowerShell Profile script so it exists in every session
# Fun fact: This script was mostly generated by ChatGPT by giving it the bash version of the output
# from `github-copilot-cli alias -- "$0"` with a few fixes from me
function Invoke-CopilotWhatTheShell {
$TMPFILE = New-TemporaryFile;
try {
github-copilot-cli what-the-shell $args --shellout $TMPFILE
if ($LASTEXITCODE -eq 0) {
@franzbischoff
franzbischoff / plot_dependencies.R
Last active March 5, 2020 23:54 — forked from crsh/plot_dependencies.R
Plots the network of package dependencies
#' Plot network of package dependencies
#'
#' @param pkg package description, can be path or package name. See \code{\link[devtools]{as.package}} for
#' more information.
#'
#' @details The resulting plot visualizes the network of package dependencies. If you are trying to cut down
#' on package dependencies look for big red dots that represent a lot of upstream but few downstream
#' dependencies.
#' @import ggplot2
#' @export