You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some tips for using AI to clean up your resume and tailor it for specific jobs
AI Resume Builder Cookbook
I’ve had decent luck with free models with this method (openai and anthropic).
HINT: Turn web search off, it's not good for this unless you're famous. I get much better results copy-pasting the text I care about (resumes, linkedin content and such) directly into the chat, as opposed to attaching files, or worse, pasting links and asking for web search. Unlike when you paste things directly in the chat, file attachments and webpages are chunked and not all chunks make it to the model when responding to any given request.
You should be able to get from a solidly-written linkedin page or federal resume to a decent two pager in under an hour (still requires lots of human editing, show it to friends, etc...).
After that, you should be able to tailor your resume for a specific job description in just a few minutes.
Just a list of URLs to block that may or may not affect paywalls on various sites
This file contains hidden or 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
Book recommendations from the Fediverse, June 2024
I asked for book recommendations on the fediverse and oh my goodness got so many suggestions. I wanted to share the list of all that came up in case others want to dig into this stuff. I asked specifically for
naturalist writing a la Muir or Abbey but about Alaska (I picked up Arctic Dreams but want more)
time travel / multiverse stuff, like Sliding Doors etc
fantasy with really weird or different systems of magic, like Max Gladstone's Craft series
So most of this is falls into one of these themes, but also some stuff doesn't. I made this list quickly and sloppily, please forgive mispellings, missing author names, etc. Here's the list, sorted first by most common recs then alpha by title.
This file contains hidden or 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
How to unpack .wpress archive files created by the All-in-one-Wp-Migration Wordpress plugin
How to unpack .wpress archive files created by the All-in-one-Wp-Migration Wordpress plugin
Recently I needed to download some files from a Wordpress installation where the client only gave me access to the admin dashboard. Fortunately the All-in-One WP Migration plugin was already installed, so I could take a quick backup of the whole site by downloading the installed plugins, theme and database.
To my surprise downloading the backup from the All-in-One WP Migration plugin only gave me a single compressed migration.wpress file that any unpack tool refused to extract. A little web search brought me to a five year old tool called Wpress-Extractor but the provided binaries for MacOS refused to work because the package was already too old.
So I decided to rewrite this little helpful tool in Node.js to make it cross-platform compatible for Windows, MacOS and Linux.
Ok here it is: A simple 2-step tutorial how to extract a file with the .wpress extension on your computer:
I'm playing around a lot nowadays with Terraform 0.13 and I found a really interesting feature and that's the ... symbol (also called an ellipsis) to be used with for expressions.
The operator can be used for group_by operations.
Example
We have a list of entries. The list contains employee/manager/project triplets.
An RMarkdown pandoc filter for MS Word docx output
This file contains hidden or 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
-- Extension ofTarleb's answer on Stackoverflow (https://stackoverflow.com/a/52131435/3888000) to include docx section ends with portrait/landscape orientation changes.
-- Also uses officer package syntax to create sections breaks
local function newpage(format)
if format == 'docx' then
local pagebreak = '<w:p><w:r><w:br w:type="page"/></w:r></w:p>'
Load environment variables from dotenv / .env file in Bash
This file contains hidden or 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