HN user

vasinov

323 karma
Posts40
Comments25
View on HN
medium.com 3mo ago

I ran Gemma 4 as a local model in Codex CLI

vasinov
1pts0
pycubed.org 2y ago

SmallSat Framework Programmable in Python

vasinov
2pts1
www.etched.ai 2y ago

Transformers on Chips

vasinov
94pts62
www.reuters.com 2y ago

OpenAI plans major updates to lure developers with lower costs

vasinov
4pts0
www.geekwire.com 2y ago

Amazon vets raises $12.5M for Griptape to help companies build AI apps

vasinov
2pts0
status.python.org 3y ago

PyPI new user and new project registrations temporarily suspended

vasinov
3pts0
github.com 3y ago

Show HN: Build AI DAGs with Memory; Run and Validate LLM Tools in Containers

vasinov
48pts11
www.vasinov.com 3y ago

Adding Memory to GPT Models and Building a Mini Version of ChatGPT

vasinov
2pts0
aeon.co 3y ago

Get Under the Hood (2015)

vasinov
2pts0
stripe.com 4y ago

Stripe Introduces Data Pipeline

vasinov
2pts0
www.linkedin.com 5y ago

Quantum Computing Hype Is Bad for Science

vasinov
3pts0
www.docker.com 6y ago

Shortening the developer commute with Docker and Microsoft Azure

vasinov
2pts0
ionq.com 6y ago

IonQ Secures $55M in Funding

vasinov
2pts0
www.entangled.xyz 7y ago

Show HN: Scotty: Quantum Computing in Scala

vasinov
2pts0
www.vasinovgames.com 7y ago

Eons of War: One Year in Development

vasinov
2pts0
www.vasinovgames.com 7y ago

How Many Steam Wishlists Convert to $100k

vasinov
3pts0
www.grokacademy.com 8y ago

Beginning Functional Programming

vasinov
2pts0
www.grokacademy.com 8y ago

Lesson: Rocking Functional Combinators

vasinov
2pts0
github.com 8y ago

Blockade

vasinov
1pts2
blog.opslog.com 8y ago

13 On-Call Metrics for Happy Teams

vasinov
2pts0
www.opslog.com 8y ago

Show HN: OpsLog – Quantify On-Call Impact and Development Progress

vasinov
1pts1
blog.opslog.com 8y ago

Team Management Gotchas in SaaS Apps

vasinov
2pts0
blog.opslog.com 9y ago

Announcing OpsLog: Metrics and Reports for Dev Teams

vasinov
4pts0
solenodonus.com 9y ago

Truly Quantum Chess

vasinov
1pts0
www.readmeweekly.com 9y ago

ReadMe Weekly: A Newsletter about Distributed Systems

vasinov
3pts0
medium.com 9y ago

Stop Looking for Top Talent

vasinov
1pts0
medium.com 9y ago

Let’s Become an Interplanetary Species

vasinov
1pts0
thenextweb.com 9y ago

80% of all Android devices are vulnerable to hackers hijacking their Web traffic

vasinov
2pts0
aws.amazon.com 10y ago

AWS IoT Button

vasinov
285pts137
hakiri.io 10y ago

Continuous Integration for Ruby Security

vasinov
2pts0

I should, perhaps, add an FAQ section addressing the hows and whys of Griptape :)

In short, Griptape is different from LangChain in the following ways:

- Instead of chained agents, it uses more general-purpose DAGs and pipelines. Think of it as Airflow for LLMs. It still implements chain of thought logic for prompt workflow steps that use tools but it also supports any kind of input and output (think images, audio, etc.). - Griptape tools are designed to be decoupled from the caller logic and execution environments. For example, tools can be easily run in a Docker container or a Lambda function (as opposed to just YOLOing LLM-generated Python code on the local box). - Tools can be plugged into other LLM frameworks through adapters. For example, you can convert any Griptape tool into a LangChain tool or generate a ChatGPT Plugin API with a single line of code. This is the only place Griptape actually references LangChain in code, afaik :)

Issues do need to be moved from a private Trello into GitHub (still early days...)—I can ping when that's done—are you on Griptape Discord?

The WebScraper tool uses Trafilatura [1] to scrape and parse HTML—nothing too fancy. "Scraping" a React site would require a totally different approach, probably something more akin to Adept's ACT-1 [2].

I run a local chat app built with Griptape and I use it to give me summaries of web pages or answer specific questions all the time :)

1. https://github.com/adbar/trafilatura/

2. https://www.adept.ai/blog/act-1

This looks cool! A couple of questions:

1. Currently, if I install something in the notebook, does it get re-installed every time the pipeline is run? Is there any way to "snapshot" the state of the container?

2. Where is the data stored between the steps?

3. How well-integrated is it with AWS cloud primitives such as EC2 instances, EFS, and S3?

Blockade 9 years ago

It seems like it uses Docker instead of custom cluster-building logic. I'm not sure if there are differences between how it slows down the network and creates partitions.

Hi! I launched OpsLog a few weeks ago. Its purpose is to analyze team's on-call and pull request data to quantify operations impact and software engineering progress.

I'd love to get some feedback on the product and the problem that I'm trying to solve. I'm also wondering what HN folks generally struggle with when it comes to analyzing and improving on-call at the team and org levels.

SaaS is dying. Here’s why.

I'm not sure I agree with the listed reasons. From what I understood, the author tries to prove that "SaaS is eating SaaS" and SaaS abundance/switching costs are prohibitive to new SaaS ventures. This doesn't seem like a very good argument for "SaaS is dying." May be, it's better suited for "it's becoming more difficult to enter the SaaS game."

Why is that news??

It's not exactly news but it's nice to see it broken down in a cohesive way.

Because the article assumes or implies the conclusion that there are a huge number of vulnerable Rails apps.

I think the article quite clearly indicates where all data points came from (Hakiri Facets) and then analyzes them. There is a post scriptum at the end that encourages readers to not evaluate their or any other projects based on the number of CVE vulnerabilities and goes into detail why it's not always a great idea.

I don't understand... The article first analyzes apps that use a certain number of vulnerable gems. Sure, most of them are probably patched, but it doesn't change the fact that certain apps use old unpatched versions of these gems.

The second part focuses on historical vulnerability data for Ruby gems.

In what way any of it is misleading?

Do you know of any apps like https://hakiri.io that automate security scanning and serve as a security monitor for any future disclosures?

Also, how would one use bundler-audit if a Rails app is not actively maintained?

"With that said, it won't find vulnerabilities you code in yourself - only publicly released vulns that Ruby, etc. have issued patches for."

This is not quite true. Brakeman (and Hakiri for that matter) runs static code analysis and finds vulnerabilities that were introduced by the developer. E.g., XSS, SQL injection, etc.