Wanted to give it a shot but got disappointed when I launched it and the following happened: - Outgoing request to googleapis.com - Outgoing request to segment.io - Outgoing request to sentry.io - Requires sign up (only via Github, mind you) I understand the first request is probably to get some dynamic configuration, even though I'd rather my terminal ship with static configuration. But then you have segment and sen…
I definitely understand the concerns. For our public beta, we do send telemetry and associate it with the logged in user because it makes it much easier to reach out and get feedback when something goes wrong. But we only track metadata, never console output. For an exhaustive list of events that we track, see here: https://docs.warp.dev/getting-started/privacy#exhaustive-tel... . Once we hit general availability, ou…
Show HN: Warp, a Rust-based terminal
71–80 of 757 posts
Re: Show HN: Warp, a Rust-based terminal
#72Wanted to give it a shot but got disappointed when I launched it and the following happened: - Outgoing request to googleapis.com - Outgoing request to segment.io - Outgoing request to sentry.io - Requires sign up (only via Github, mind you) I understand the first request is probably to get some dynamic configuration, even though I'd rather my terminal ship with static configuration. But then you have segment and sen…
Come on. You must realize VS Code and basically every website you use collects telemetry data, which is rarely for anything nefarious except product improvements. If GitHub/Microsoft had released this product, would you be raising the same concerns?
> If GitHub/Microsoft had released this product, would you be raising the same concerns?
Yes. It’s one of the reasons I use the open source build instead.
Re: Show HN: Warp, a Rust-based terminal
#73This is neat, but I'm not convinced it's going in the right direction. It's not open source, and "maybe it will eventually be" is unacceptable for such a core component of an engineer's workflow. Most of the features on the front page are "coming soon," not actually available. There's no timeline for support for non-Mac OS systems, and it's built using Metal rather than any cross-platform API, so it will be at least…
Regarding the cross-platform piece, the plan is absolutely to support different platforms. In fact we've built our own cross-platform UI framework to help us with this endeavor which you can read about here: https://www.warp.dev/blog/how-warp-works. We chose Metal to start because the Metal debugging tools in Xcode are excellent, allowing us to inspect texture resources and easily measure important metrics like frame rate and GPU memory size. Thankfully, because our graphics code is decoupled from our UI framework, porting the graphics piece of the UI framework essentially mounts to porting over a few hundred lines of shader code, which shouldn't be too difficult.
Re: Show HN: Warp, a Rust-based terminal
#74Re: Show HN: Warp, a Rust-based terminal
#75One feature that’s missing from a surprising number of Mac terminals is a hotkey-bound non-activating dropdown (think Quake console) or HUD window (imagine a floating, frameless terminal window in the vein of the Alfred or Spotlight window). The best implementation of this to date was in TotalTerminal/Visor, which was a mod for the Apple terminal that added this feature but naturally went the way of the dodo when mac…
Re: Show HN: Warp, a Rust-based terminal
#76Re: Show HN: Warp, a Rust-based terminal
#77I use configured zsh which has majority of features mentioned above. It is integrated with fzf and also has autcompletions(with help description), autosuggestions,hints, file completions and more. You can see my zsh dotfiles below. https://github.com/varbhat/dotfiles/tree/main/dot_config/zsh I could even have enabled real time type ahead completions with this plugin but i haven't (because i don't need this feature) :…
Here are some differentiated features:
- Blocks: we group commands and outputs together so it is easier to navigate through the terminal, and perform actions on the outputs [0]
- A text editor for the input: selections, cursor positioning, multiple cursors [1]
- Workflows which allows you to save and share hard-to-remember commands [2]
The projects you mentioned are great. They do involve some amount of configuration. We have those out of the box so they are more easily accessible to developers.
[0]https://docs.warp.dev/features/blocks
Re: Show HN: Warp, a Rust-based terminal
#78Re: Show HN: Warp, a Rust-based terminal
#79I use configured zsh which has majority of features mentioned above. It is integrated with fzf and also has autcompletions(with help description), autosuggestions,hints, file completions and more. You can see my zsh dotfiles below. https://github.com/varbhat/dotfiles/tree/main/dot_config/zsh I could even have enabled real time type ahead completions with this plugin but i haven't (because i don't need this feature) :…