Coder Social home page Coder Social logo

Comments (10)

sindresorhus avatar sindresorhus commented on May 3, 2024 12

I use a MacBook Pro (15-inch, Late 2013) and Bose QC25 headphones.

My most used apps are iTerm2, Chrome, Sublime Text, Dash, Alfred, Caprine, Black Out, and Gifski. I also use the menu bar apps Bartender, Battery Indicator, Lungo, and Spectacle.

In Sublime Text, I use the Spacegray theme, the Oceanic Next color scheme, with the above font. I use n for Node.js version management.

Also see "What terminal do you use?".

from ama.

sindresorhus avatar sindresorhus commented on May 3, 2024 1
149  14.9149%   c
97   9.70971%   nv
70   7.00701%   nh
42   4.2042%    xo
39   3.9039%    npm
39   3.9039%    nis
30   3.003%     nid
30   3.003%     ags
29   2.9029%    nl
27   2.7027%    gc
25   2.5025%    node
24   2.4024%    g
19   1.9019%    s
16   1.6016%    nig
16   1.6016%    ni
15   1.5015%    echo
12   1.2012%    pageres
12   1.2012%    gcl

Not very useful though as most of those are ZSH alias shortcuts.

from ama.

gaboesquivel avatar gaboesquivel commented on May 3, 2024 1

do you use dash templates?

from ama.

sindresorhus avatar sindresorhus commented on May 3, 2024 1

People have asked what laptop I have now. I still have the MacBook Pro (15-inch, Late 2013). Not because I cannot afford to buy a new one, but rather it's a choice. The current one still works great, although battery life is only 3 hours now. And getting a new one comes with a lot of risk: Touch Bar, crappy keyboard, other flaws. I have to admit that the new 16 inch model is very tempting, but at the same time, I never buy the first model of something. It always has flaws. I'll probably get a new one when the second generation of the 16 inch comes out.

from ama.

jaan avatar jaan commented on May 3, 2024

👍

from ama.

iamstarkov avatar iamstarkov commented on May 3, 2024

Would you mind showing your zsh_stats log? 🐱

from ama.

A avatar A commented on May 3, 2024

@sindresorhus can you expand your aliases? I just wrote cute bash one-lining for you :D

zsh_stats | awk '{gsub(/ +|\t+/," ")}1' | cut -d ' ' -f 5 | while read -r i; do alias "$i" || echo "$i"; done

from ama.

sindresorhus avatar sindresorhus commented on May 3, 2024
c=cd
nv=latest-version
nh='npm docs'
xo
npm
nis='npm install --save'
nid='npm install --save-dev'
ags='ag --ignore-case --literal'
nl='npm link --force'
gc
node
g=git
s
nig='npm install -g'
ni='npm install'
echo
pageres
gcl=clonecd

from ama.

sindresorhus avatar sindresorhus commented on May 3, 2024

Modified it slightly to show more info:

fc -l 1 | awk '{CMD[$2]++;count++;}END { for (a in CMD)print CMD[a] " " CMD[a]/count*100 "% " a;}' | grep -v "./" | column -c3 -s " " -t | sort -nr | command nl | head -n20 | awk '{gsub(/ +|\t+/," ")}1' | cut -d ' ' -f 5 | while read -r i; do alias "$i" || which "$i" || echo "$i"; done
c=cd
nv=latest-version
nh='npm docs'
/usr/local/bin/xo
nis='npm install --save'
/usr/local/bin/npm
nid='npm install --save-dev'
ags='ag --ignore-case --literal'
nl='npm link --force'
gc () {
    hub checkout "${@:-master}" &> /dev/null || hub checkout "${@:-gh-pages}"
}
/usr/local/bin/node
g=git
s () {
    if [ $# -eq 0 ]
    then
        /Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl .
    else
        /Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl "$@"
    fi
}
nig='npm install -g'
ni='npm install'
echo: shell built-in command
/usr/local/bin/pageres
gcl=clonecd

And clonecd:

clonecd () {
    hub clone --recursive $1 && cd $(basename ${1%.git})
}

from ama.

sindresorhus avatar sindresorhus commented on May 3, 2024

@gaboesquivel Yup, https://dl.dropboxusercontent.com/u/71884/dash-snippets.dash.zip

from ama.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.