Skip to content

Instantly share code, notes, and snippets.

View andrewwxy's full-sized avatar

_WXY andrewwxy

View GitHub Profile
@felixlohmeier
felixlohmeier / openrefine-webserver-install.md
Last active March 8, 2025 23:34
How To Install OpenRefine on a web server with Ubuntu 22.04

How To Install OpenRefine on a web server with Ubuntu 22.04

OpenRefine is intended to be installed locally as a desktop application. Due to the client-server architecture it is also possible to install OpenRefine on a web server to share it with multiple users. This can be useful despite the missing user administration, e.g. temporarily for a workshop or permanently in a protected network.

Security warning

Can I somehow host OpenRefine for others to access ?

" Specify a directory for plugins
call plug#begin('~/.vim/plugged')
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'scrooloose/nerdtree'
"Plug 'tsony-tsonev/nerdtree-git-plugin'
Plug 'Xuyuanp/nerdtree-git-plugin'
Plug 'tiagofumo/vim-nerdtree-syntax-highlight'
Plug 'ryanoasis/vim-devicons'
Plug 'airblade/vim-gitgutter'
@icecr4ck
icecr4ck / idapython_cheatsheet.md
Last active June 24, 2026 15:53
Cheatsheet for IDAPython
# Luke's config for the Zoomer Shell
# Enable colors and change prompt:
autoload -U colors && colors
PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}$%b "
# History in cache directory:
HISTSIZE=10000
SAVEHIST=10000
HISTFILE=~/.cache/zsh/history
@aparrish
aparrish / enough-python.ipynb
Last active October 11, 2024 15:27
Just enough Python!
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rjhansen
rjhansen / keyservers.md
Last active April 19, 2026 05:12
SKS Keyserver Network Under Attack

SKS Keyserver Network Under Attack

This work is released under a Creative Commons Attribution-NoDerivatives 4.0 International License.

Terminological Note

"OpenPGP" refers to the OpenPGP protocol, in much the same way that HTML refers to the protocol that specifies how to write a web page. "GnuPG", "SequoiaPGP", "OpenPGP.js", and others are implementations of the OpenPGP protocol in the same way that Mozilla Firefox, Google Chromium, and Microsoft Edge refer to software packages that process HTML data.

Who am I?

$ curl -s "https://crawler.ninja/files/security-txt-values.txt" | grep -i "hiring: http" | sed 's/^#//g' | awk '{print $2}'
https://www.tumblr.com/jobs
https://kariera.shoptet.cz/
https://g.co/SecurityPrivacyEngJobs
https://www.shopify.com/careers
https://solarwinds.jobs
https://www.chcidozootu.cz/it-devel/
https://careerssearch.bbc.co.uk/jobs/search
https://www.npmjs.com/jobs
https://grab.careers/
@scrapehero
scrapehero / booking.json
Created May 16, 2019 06:23
A quick and easy tutorial to scrape data from Booking.com based on parameters destination, date, budget, star rating, and distance from city center.
{
"_id":"booking",
"startUrl":[
"https://www.booking.com/searchresults.html?aid=1508980&sid=ee7c661a3ec2420db360347075d64079&tmpl=searchresults&checkin_month=6&checkin_monthday=4&checkin_year=2019&checkout_month=6&checkout_monthday=7&checkout_year=2019&city=20015725&class_interval=1&dest_id=20015725&dest_type=city&from_sf=1&group_adults=2&group_children=0&label_click=undef&no_rooms=1&raw_dest_type=city&room1=A%2CA&sb_price_type=total&shw_aparth=1&slp_r_match=0&src=searchresults&srpvid=4f694ca313d60042&ss=San%20Diego&ssb=empty&ssne=San%20Diego&ssne_untouched=San%20Diego&nflt=pri%3D2%3B&rsf="
],
"selectors":[
{
"id":"product listing",
"type":"SelectorElement",
"parentSelectors":[
@anshoomehra
anshoomehra / parsing10k.ipynb
Last active November 25, 2025 00:38
How to Parse 10-K Report from EDGAR (SEC)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@justanotherdot
justanotherdot / Dockerfile.bite_sized_networking
Last active May 20, 2022 08:56
A Dockerfile with (almost) all the tools mentioned in Bite Size Networking by Julia Evans
# N.B. The only tool missing here that is mentioned in the document is `zenmap`
# purely because this image is intended to be run via a CLI and `zenmap` is a GUI
# to `nmap` i.e. one can play around with the tools by running:
#
# $ docker build --name bite_size_networking:latest .
# $ docker run --rm -d --name bsn_test bite_size_networking:latest
# $ docker exec -it bsn_test bash
#
# Alternatively, one can change the `ENTRYPOINT` to `["bash"]` and run:
#