Kanika Profile picture
Jun 23, 2023 8 tweets 3 min read Read on X
STOP wasting 5+ hours on tedious tasks.

These 6 AI powered CHROME EXTENSIONS will Turbocharge Your Time and Productivity

Master Your Online Universe RIGHT NOW 🧵👇
1. ChapaGPT -

✅ Summarize Articles
✅ Discover Similar Pages
✅ Reframe Content
✅ Elaborate on Content
✅ Translate into Any Language
✅ Draft Emails and responses

Also, it can be integrated with ChatGPT 3.5 and ChatGPT 4
2. Compose AI: AI-powered Writing Tool -

✅ Autocomplete sentences across different websites
✅ Rephrase sentences to make them friendlier, shorter, or longer
✅ Reply to emails with a click
✅ Generate full-length emails from short phrases
3. Monica - Your AI Copilot powered by GPT-4

The Best Features of Monica AI:
✅ Search Enhance
✅ Web Browser
✅ Prompt Library
✅ YouTube summary
✅ Voice Control
✅ Mail login
4. Fireflies AI: Summarize meetings, articles, docs

With Fireflies you can:
✅ Meeting recordings, transcripts, search
✅ Summarize Keywords, Meeting Outline, Summary & Notes
✅ Integrate & Automatically get summaries & transcripts on the apps you use
5. Wiseone -

Best Features
✅Helps you understand complex concepts ✅Crosschecking that helps you verify facts with different sources
✅Suggestions that provide a list of articles from diverse sources
✅Summarization, that helps you read more efficiently
6. Jasper AI :

With the Jasper AI Chrome Extension you can:
✅ Improve wording
✅ Create Social content
✅ Craft personalised Email
✅ Summarize content and a lot more
That's a wrap!

If you enjoyed this thread:

1. Follow me @KanikaBK for more of these
2. RT the tweet below to share this thread with your audience

• • •

Missing some Tweet in this thread? You can try to force a refresh
 

Keep Current with Kanika

Kanika Profile picture

Stay in touch and get notified when new unrolls are available from this author!

Read all threads

This Thread may be Removed Anytime!

PDF

Twitter may remove this content at anytime! Save it as PDF for later use!

Try unrolling a thread yourself!

how to unroll video
  1. Follow @ThreadReaderApp to mention us!

  2. From a Twitter thread mention us with a keyword "unroll"
@threadreaderapp unroll

Practice here first or read more on our help page!

More from @KanikaBK

Apr 18
YOUR OLD PHONE IS A FREE 24X7 SECURITY CAMERA.

Not e-waste or a paperweight.

TOOK ME 2 MINS TO SETUP. Here is exactly how:👇
I found my old phone in a drawer last month.

Cracked screen. Three years old. Was about to throw it out.

Instead I turned it into a home security camera that streams live to my current phone from anywhere.

Cost me nothing. Works better than I expected.
Here is what most people do not realize.

Your old phone has a working camera, connects to Wi-Fi, and is basically a tiny computer.

That is all a security camera is.

You are already paying for Ring or Nest every month for something you already own.
Read 8 tweets
Apr 18
YOUR WINDOWS LAPTOP IS SLOW BECAUSE OF DEFAULT SETTINGS.

Not a hardware problem.

TAKES 90 SECONDS TO FIX IT. Here is exactly how:👇
I found this by accident while setting up a new laptop for content creation.

Tested it on three different machines after. Same result every time.

Most people who buy a new laptop never touch these settings once. That is the entire problem.
Here is what is actually happening.

Windows runs animations on every single click, every window open, every tab switch.

It also limits your processor speed by default to save battery. Even when you are plugged in.

And it loads 10 to 15 background apps before you even open your browser.

All three of these are on right now on your laptop.
Read 8 tweets
Apr 14
YOUR ANDROID PHONE IS SLOW BECAUSE OF A DEFAULT SETTING.

Not old hardware.

Takes 90 SECONDS TO FIX. Here is exactly how:
I have been using this trick since 2012 on my first smartphone.

It made a single-core budget phone feel noticeably faster.

It still works on every Android in 2026. Most people have no idea it exists.
Here is what is actually happening.

Every time you open an app, switch screens, or tap a button your phone plays a small animation.

By default that animation runs at 1x speed. Around 300 milliseconds per transition.

That wait adds up every single time you use your phone.
Read 10 tweets
Apr 13
😱 I SPENT 3 HOURS TESTING THIS SO HERE IS WHAT ACTUALLY MATTERS.

Kronos is a foundation model built from scratch on the language of financial markets.

45 global exchanges. AAAI 2026 accepted. MIT license.
Every trading model being built from scratch right now is already behind.

The crazy part?
Most people building trading models right now have NO IDEA this already exists.

While everyone else is still coding from scratch.

Here is what makes it different from every other trading model:

↳ Trained specifically on financial candlestick data not repurposed from general time series models
↳ Handles OHLCV data natively. Open, high, low, close, volume and amount all in one model
↳ Novel two-stage framework. Specialized tokenizer converts continuous market data into discrete tokens first. Then a large autoregressive transformer learns from those tokens
↳ Designed to handle the unique high-noise characteristics of financial data that break general purpose models
↳ Trained across 45 global exchanges for broad market understanding

Four models available today:

↳ Kronos-mini — 4.1M parameters. Lightweight. Fast. Deploy anywhere.
↳ Kronos-small — 24.7M parameters. Strong performance for most use cases.
↳ Kronos-base — 102.3M parameters. Full power. Production ready.
↳ Kronos-large — 499.2M parameters. Research grade. Coming soon.

All on Hugging Face. All free.

Raw data to forecast in four lines of code:

↳ Load the tokenizer and model from Hugging Face
↳ Pass your historical OHLCV data
↳ Define your prediction length
↳ Call predict

No feature engineering. No manual preprocessing.

Just raw candles in and forecasts out.Image
The fine-tuning pipeline is already included:

↳ Complete pipeline for adapting Kronos to any market or asset class
↳ Chinese A-share market example with full backtest included
↳ Multi-GPU training supported via torchrun
↳ Two stage fine-tuning. Tokenizer first. Predictor second
↳ Backtesting script with cumulative return curves against benchmark included

The part that should concern every quant still building from scratch:

This model was trained on 45 exchanges.
Accepted by one of the top AI conferences in the world.
Released completely free under MIT license.

The barrier to having a foundation model for financial forecasting just dropped to zero.

MIT License. 100% open source.
Fine-tuning code included.
Live demo running right now.

The only question is what you build on top of it.Image
Here is the repo 🔗

( SAVE FOR LATER )github.com/shiyu-coder/Kr…
Read 4 tweets
Apr 11
MOST PEOPLE DON'T KNOW THIS

There are Python libraries giving free market data for 170,000+ tickers.

Stocks.
Crypto.
Forex.
Economic indicators.

No Bloomberg. No expensive APIs.

Here are 12 libraries every quant dev should bookmark👇
1. yfinance
🔗 github.com/ranaroussi/yfi…

One of the most popular Python libraries for financial data.

Get:
• Stocks
• Crypto
• FX
• Options
• Fundamentals
• Intraday + historical data

All pulled from Yahoo Finance.

2. pandas-datareader
🔗 pandas-datareader.readthedocs.io
Originally part of pandas.

Pull data from multiple sources:

• Stocks
• Forex
• Economic indicators
• Fama-French factors
• Global datasets

Perfect for research and analysis.
3. IBApi
🔗 interactivebrokers.github.io/tws-api/
The official API for Interactive Brokers.

Direct access to:

• live market data
• historical data
• trading functionality

Serious traders and quants rely on this.

4. Alpha Vantage
🔗 github.com/RomelTorres/al…

One of the easiest APIs to start with.

Provides:

• Real-time market data
• Technical indicators
• Stocks, FX, crypto

Outputs in JSON or CSV.

5. Nasdaq Data Link (Quandl)
🔗 data.nasdaq.com/tools/python

Massive financial dataset hub.

Access:

• economic data
• commodities
• equities
• alternative datasets

Used heavily in quant research.
Read 9 tweets
Apr 6
🤯 YOUR OBSIDIAN VAULT is worth $120K/YR GOLDMINE but you have 0 idea about it

GREG ISENBERG just dropped a 1hr MASTERCLASS explaining:

Obsidian + Claude Code = 24/7 personal OS.
Total Cost: $120/yr
This setup: FREE

🔖 Bookmark before it's buried!
Here’s what nobody tells you about Obsidian:

It’s not a productivity app.
It’s local markdown files that link together like neurons in your brain.

↳ Every idea connects to other ideas.
↳ Every connection creates new patterns.
↳ Every pattern becomes visible in a graph.

Then Claude Code enters via command line.
It can now read your entire vault.

An old idea from months ago. A recent meeting note. Today’s random thought.

Claude connects all three before you even realize they’re related.
That’s the magic.
The 5 slash commands running my life now:

↳ /context
Instant full life + work state. Claude knows everything without asking.
↳ /today
Calendar + tasks + notes turned into one clean plan.
↳ /ghost
Replies to anything in my exact voice using my vault.
↳ /emerge
Surfaces connections my vault suggests but I never explicitly made.
↳ /ideas
Pattern recognition across everything I’ve documented.

Critical rule:
Humans write. AI reads.
Never reverse it.
Read 6 tweets

Did Thread Reader help you today?

Support us! We are indie developers!


This site is made by just two indie developers on a laptop doing marketing, support and development! Read more about the story.

Become a Premium Member ($3/month or $30/year) and get exclusive features!

Become Premium

Don't want to be a Premium member but still want to support us?

Make a small donation by buying us coffee ($5) or help with server cost ($10)

Donate via Paypal

Or Donate anonymously using crypto!

Ethereum

0xfe58350B80634f60Fa6Dc149a72b4DFbc17D341E copy

Bitcoin

3ATGMxNzCUFzxpMCHL5sWSt4DVtS8UqXpi copy

Thank you for your support!

Follow Us!

:(