Skip to content

Instantly share code, notes, and snippets.

  1. I've got both album and artist dialog's running. Album dialog i.e. https://github.com/rahul-raturi/picard/tree/embed_search_(release), is based on rebase of track dialog. There are some commits in this tree that affect the track dialog, like renaming some methods and variables, and moving common code to methods etc. I've not pushed them to track dialog's PR, because they won't make much sense there and would only complicate the PR imo. The artist dialog (https://github.com/rahul-raturi/picard/tree/embed_search_(artist)) is based on rebase of album dialog.
  2. There's cover-art-archive element in a release lookups, but not in searches. I'm thinking of downloading only 250*250 px covers for displaying them in album dialog, dis regarding user's cover preferences. For this purpose, I guess cover-art-archive element would be required. Is there a way to get it in a search xml?
  3. Have a look at artist dialog. It doesn't seems much useful to me presently. I mean, in website, there's a way to look at the artist
@rahul-raturi
rahul-raturi / notes.md
Created February 5, 2016 17:40
CLI Workshop - 6 Jan 16

CLI Workshop (6 January 16)

Introduction

  • Shell
  • Terminal
  • Linux!
  • Files/Directories
@rahul-raturi
rahul-raturi / Makefile
Last active August 29, 2015 14:15
A simple make file to compile systemc programs
SRCS = $(wildcard *.cpp)
OBJS = $(SRCS:%.cpp=%.o)
DEPS = $(SRCS:%.cpp=%.d)
SYSTEMC = /usr/local/systemc230
CXX = g++
CXXFLAGS = -Wall -ansi -g -O0 -Di386
INCLUDES = -I $(SYSTEMC)/include