Categories
Trello

Productivity Review: 🌈 Trello 🌈

I have mentioned my love for Trello. I’ve also been trying to work around the lack of global tags since about the time I began using it on Dec 31, 2018.

This shortcoming finally lead me on a trip around the world of kanban software. I plan to review some of the stops I made. First off, I’d like to write a love letter to Trello on what may be the eve of our separation.

Some things I love about Trello:

  • The primary functionality: kanban. I didn’t realize that’s what my life was missing until Trello came along. To-do lists just don’t cut it anymore.
  • The pretty background pictures. They call the Unsplash API to allow you to select a pretty background. It is surprisingly pleasant. I assume this hasn’t been copied due to some intellectual property reason. If/When Trello and I part ways, I’ll miss it.
  • The ability to use other boards and cards as attachments. It turns out to be surprisingly handy.
  • The ability to copy lists and move copies to other boards.
  • I have yet to find anything I can do on the website that I can’t do in the app.

The thing I don’t love:

  • It’s very siloed

Things I’d love to see

  • Global tags
  • A dashboard
  • It’s the nature of Trello’s beast to be closed source, but I’d sure love to find an alternative that’s so free rms would approve.

I’ve found a few open source web-based Kanban packages on Github, but none have all the features I’d need to be wooed away. I’m currently scoping out a few to potentially add missing functionality myself, but I’m still in the market.

Categories
npm Trello

Tinkering with carlosazaustre / vue-trello

In my continuing effort to find a Trello replacement, I’ve been looking at carlosazaustre / vue-trello. My thanks to carlosazaustre for creating it. After some exploring, I realized it’s more reliant on Google Cloud Platform than I particularly want to go. However, I publish the notes I had so far in the hopes that they’ll help someone else.

`npm install`

`npm install` kept dying on Firebase. I had to uninstall then reinstall. I can’t find the Stack Overflow post that gave me the instructions, but according to my bash history, it looks something like the following:

Chuck GRPC’s data:
rm node_modules/grpc -r

Delete package-lock.json:
rm package-lock.json

Rebuild node-sass:
npm rebuild node-sass

Install the latest version of firebase:
npm i firebase@latest

Install firebase/app:
npm install --save @firebase/app

Settings File

The next error was:
ERROR Failed to compile with 1 errors 11:43:17 PM This relative module was not found: * ./settings in ./src/api/firebase.js

It needs a file called settings.js in src/api/. There’s an example file (settings.js.example) to grab from. You need to add your Firebase details. You can learn your API key at:
https://console.firebase.google.com/project/[project ID]/settings/general/

Next Steps

This is where I got off the train. Presumably it’s now just a matter of filling the correct details into the config file. Best of luck to you.

Categories
Asana CLI Linux Productivity Programming Ruby Trello

Working with TrelloToAsana

First off, many thanks to goborrega, the author of TrelloToAsana – a ruby package to help users port their data from 🌹💃 💕 Trello 💕 💃 🌹 to Asana. I love Trello (as you may have gathered from the emojis), but the boards are very siloed. I have like 3 dozen boards, I don’t want to have to dig into each one.

There are a few ways to get data between the two, but none were to my satisfaction until I found this package on Github.

I ran into a couple issues and I wanted to save some other folks the time. Many of these issues stem from not being a Ruby developer Thanks to Google University, I was able to develop a sufficient passing literacy.

Some background that may be helpful to non-Ruby devs may find useful:

  • Install Bundler and other dependencies. On Suse the command was: sudo zypper install ruby2.5-rubygem-bundler ruby-dev ruby2.5-dev ruby2.5-rubygem-rails-5_1
  • Install dependencies defined in the gemfile: bundle install
  • To run a Ruby script: ruby [filename]

There seems to be a version problem with the required versions of Ruby and the gem json. To fix that, I went opened Gemfile and replaced where it calls for json version 1.8.1 with 1.8.5. I haven’t seen any negative consequences of advancing it to a later version.

Between the time of the code’s writing and the time I ran it, Asana evidently changed their property id to gid on workspaces, projects and tasks. A find and replace on all instances of .id with .gid fixed the problem. The error was:

/usr/lib64/ruby/gems/2.5.0/gems/asana-0.10.0/lib/asana/resource_includes/resource.rb:34:in `method_missing': undefined method `id'

It worked like a dream after that.

Having gone to all that trouble, I don’t think I’m going to stick with Asana. There are too many features 💖 Trello 🌈 has that Asana doesn’t. My hunt for a 🌼 Trello 🥰 alternative that has global tags continues.

Categories
CLI Linux

A Problem with `git push origin`

I couldn’t figure out why git kept complaining there was no such file as origin.

Because I was typing grep.