Skip to content

Instantly share code, notes, and snippets.

## Should you buy UniQure NV (ticker **QURE**)?
| Factor | Evidence | Bottom line |
|--------|----------|-------------|
| **Analyst consensus** | 12 analysts covering QURE – 41 % “Strong Buy”, 45 % “Buy”, 14 % “Hold” (<1 % “Sell”). Average price target ≈ $65.08 (≈ +20 % from the current ~\$53‑\$54). Sources: <https://stockanalysis.com/stocks/qure/forecast/>, <https://tipranks.com/stocks/qure> | **Positive** – the majority of coverage is bullish, with a fairly high upside target. |
| **Recent clinical breakthrough** | Positive topline data from Phase I/II trial of AMT‑130 (Huntington’s disease) released 24 Sep 2025; shares jumped > +200 % in intraday trading. Source: <https://uniqure.gcs-web.com/news-releases/news-release-details/uniqure-announces-positive-topline-results-pivotal-phase-iii> | **Strong upside driver** – a successful trial could trigger an FDA filing, potentially unlocking multi‑$1B market potential. |
| **Pipeline breadth** | 1) AMT‑130 (Huntington’s) – next step: Phase III<br>2) AMT‑260 (temp

BillHawk Knowledge Graph Build Instructions

Analyze the BillHawk project repository at /github/teo-mateo/ai-email-invoice-scraper and build a comprehensive knowledge graph following these instructions:

IMPORTANT: Execute each step independently. For each step, read the relevant project files to extract accurate information for nodes, observations, and relationships. Do not rely on assumptions or generic knowledge - base everything on actual code analysis.

Step 1: Create the Project Node

  • Read README.md, Application.md, and CLAUDE.md files
  • Create a Project node named "BillHawk"
  • Add observations extracted directly from these files about purpose, architecture, tech stack, and key features
@teo-mateo
teo-mateo / CLAUDE.md
Created June 20, 2025 09:07
Claude as SRS

Your task is to assist me learn, acting like a Spaced Repetition Software. Spaced Repetition Software (SRS) presents flashcards at increasing intervals based on how well you know each card. Cards answered correctly get scheduled further into the future, while incorrect answers reset the interval back to a short timeframe (like 1 day). This optimizes memory retention by showing difficult cards more frequently and easy cards less often, following the psychological spacing effect where information is better retained when reviewed at spaced intervals rather than all at once.

You will use only the command description. You will not look for deck-related code to understand the structure and conventions.

@teo-mateo
teo-mateo / chirp.c
Created February 1, 2025 17:16
swoop and chirp
#include <stdio.h>
#include <math.h>
#include "pico/stdlib.h"
#include "hardware/timer.h"
#include "hardware/spi.h"
//We will be using ALARM 0
#define ALARM_NUM 0
#define ALARM_IRQ TIMER_IRQ_0
@teo-mateo
teo-mateo / curl.md
Created December 13, 2020 12:59 — forked from subfuzion/curl.md
curl POST examples

Common Options

-#, --progress-bar Make curl display a simple progress bar instead of the more informational standard meter.

-b, --cookie <name=data> Supply cookie with request. If no =, then specifies the cookie file to use (see -c).

-c, --cookie-jar <file name> File to save response cookies to.

@teo-mateo
teo-mateo / moma.cs
Last active September 17, 2020 22:15
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
namespace LeMoma
{
public static class Program
{
public static void Test<TMoma>(this TMoma moma) where TMoma : IMoma
{
@teo-mateo
teo-mateo / time_format.go
Created November 10, 2017 23:44 — forked from ik5/time_format.go
A full example of all possible time formats in Golang
package main
import (
"fmt"
"time"
)
func main() {
fmt.Println("Times: ")
t := time.Now()
@teo-mateo
teo-mateo / gist:8029960
Last active December 31, 2015 18:49
publisher
public class LocationPublisher : IObservable<Location>
{
private List<IObserver<Location>> observers;
public LocationPublisher()
{
observers = new List<IObserver<Location>>();
}
public IDisposable Subscribe(IObserver<Location> observer)
public class LocationSubscriber : IObserver<Location>
{
private IDisposable unsubscriber;
private string instName;
public LocationSubscriber(string name)
{
this.instName = name;
}
// Provides a mechanism for receiving push-based notifications.
public interface IObserver<in T>
{
// Summary:
// Notifies the observer that the provider has finished sending push-based notifications.
void OnCompleted();
// Notifies the observer that the provider has experienced an error condition.
void OnError(Exception error);