- How big is the company?
- Why did you choose to work here?
- Do you enjoy this particular project?
- Is there flexibility within the org to move around to different projects?
- What's a typical day like?
- Software dev process? (agile/tdd/pairing?)
- Bug tracking system?
#Instalar homebrew | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
#Hidden bar - esconde itens na barra de notificações do macos + fonts | |
brew install --cask hiddenbar font-hack-nerd-font font-victor-mono monitorcontrol almighty rectangle maccy itsycal openemu telegram spotify whatsapp imageoptim cheatsheet google-chrome zed firefox iterm2 | |
#command lines must haves | |
brew install eza wget2 asdf automake curl fzf gawk git gnupg neovim readline terminal-notifier thefuck watch xz | |
# zsh and powerlevel10k | |
brew install powerlevel10k |
// jQuery plugin to prevent double click | |
jQuery.fn.preventDoubleClick = function() { | |
$(this).on('click', function(e){ | |
var $el = $(this); | |
if($el.data('clicked')){ | |
// Previously clicked, stop actions | |
e.preventDefault(); | |
e.stopPropagation(); | |
}else{ | |
// Mark to ignore next click |
pv mydump.sql.gz | gunzip | mysql -u User -p database_name |
.hyphenate { | |
overflow-wrap: break-word; | |
word-wrap: break-word; | |
-webkit-hyphens: auto; | |
-ms-hyphens: auto; | |
-moz-hyphens: auto; | |
hyphens: auto; | |
} |
Custom Development | Revenue Software | | --- | --- | --- | | Key Metric | Staff Utilization (busy developers) | Users (subscribers, licenses) | | Business Model | Mark-up on staff hours | Re-use of identical bits | | We track... | Projects/programs | Products/releases | | Essential skills | Sales, business development | Segmentation, validation | | Innovation ownership & risk | Client owns IP: we hope they pay and send more projects our way | We own IP: we hope target segment pays handsomely for perceived value | | Graded first on... | On time, on budget, on spec | Market winner vs. competition | | Customer wants a one-off? | "Great! Here's a change order" | "Let me put that (deep) into the backlog." | | Plan to productize platforms? | Always sacrificed when paid projects run late | Essential part of product line planning |
diff --git a/cpn.js b/cpn.js | |
index 57a25d8..2029107 100644 | |
--- a/cpn.js | |
+++ b/cpn.js | |
@@ -9,7 +9,13 @@ | |
attach: function(context, settings) { | |
// Append enable/disable links. | |
$('.form-item-cpn-css, .form-item-cpn-js', context).each(function() { | |
- $('.description', this).append(' <a href="#" class="cpn-toggle">Enable syntax highlighting</a>.'); | |
+ if ($('.description', this).length) { |