Skip to content

Instantly share code, notes, and snippets.

View petros's full-sized avatar
👾
Making games

Petros Amoiridis petros

👾
Making games
View GitHub Profile
@petros
petros / keybindings.json
Created August 11, 2022 20:05 — forked from whazzmaster/keybindings.json
Test tasks for Visual Studio Code and Elixir
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "cmd+t cmd+t",
"command": "workbench.action.tasks.runTask",
"args": "Run All Tests"
},
{
"key": "f5",
"command": "workbench.action.tasks.runTask",

kaths-bookshelf

There's a lot of recommended reading for product managers out there. Some of it is incredibly useful, and some of it is a waste of time. Business books don't really get me excited, but there are a few books, articles, newsletters, and podcasts authored by folks I look up to in the industry that I find myself coming back to often. When you're reading about product management, it's important to take everything with a grain of salt. The industry changes rapidly, and so does the discipline. If you learn something you want to try out from one of these books, go for it! But be careful not to whiplash yourself or your team.

I find new books and articles all the time, so I'm going to start dropping them here. Hope they help and inspire some other Product folks!

Books

The Influential Product Manager by Ken Sandy

This book is for people who are starting out in Product Management, but the

class ApplicationController < ActionController::Base
include SessionAuthentication
# ...
end
@petros
petros / gist:1208330
Created September 10, 2011 13:49 — forked from apod/gist:1208284
Resize application
tell application (path to frontmost application as Unicode text)
activate
set x to 400
set y to 400
set width to 1024
set height to 768
set bounds of window 1 to {x, y, x + width, y + height}
end tell