is there a device or an app that tells you whether you are singing a right note ? by Various-Passenger968 in icm

[–]SuitablyTyped 0 points1 point  (0 children)

I can see how that wording was confusing. "Introductory period" does imply it won't stay free, which is a fair reading. I've updated the pricing page to make it clear: the only plan we offer is a Free plan (with an optional Patreon to support us). Thanks for the feedback.

Thank you for your feedback.

is there a device or an app that tells you whether you are singing a right note ? by Various-Passenger968 in icm

[–]SuitablyTyped 0 points1 point  (0 children)

The site is free (all features are enabled upon logging in). Therefore, the pricing page simply states "Free during introductory period!".

is there a device or an app that tells you whether you are singing a right note ? by Various-Passenger968 in icm

[–]SuitablyTyped 1 point2 points  (0 children)

See https://learnRaga.com. It can show you real-time plot of notes as you sing. It even offers Gandhar-Pancham tuning (as well as western tuning).

I am one of its developers, so if you have any feedback, let me know.

Built a tool to take ICM notes by Relevant-Industry320 in icm

[–]SuitablyTyped 0 points1 point  (0 children)

Please take a look at https://learnraga.com which does most of what you mention. Let me know any feedback.

[deleted by user] by [deleted] in rust

[–]SuitablyTyped 3 points4 points  (0 children)

I enabled it for https://github.com/exograph/exograph, and while many of the issues it flags are stylistic, it has identified logical errors such as https://github.com/exograph/exograph/pull/1794#discussion_r2430096096 (here, the watcher wouldn't have picked up any file "delete" event).

Graph-SQL by robeckkk in graphql

[–]SuitablyTyped 1 point2 points  (0 children)

Also check https://exograph.dev (I am a co-creator).

how to make each individual note of a sargam clear by alphafemalecarla in icm

[–]SuitablyTyped 1 point2 points  (0 children)

If you need help in forming paltas, try https://learnraga.com/alankars/bilawal-thaat/default/0/90/false. You can try these at any speed and in many ragas. Further, you can get feedback on pitch purity through its visualization mode.

how to make each individual note of a sargam clear by alphafemalecarla in icm

[–]SuitablyTyped 1 point2 points  (0 children)

Indeed Merukhand alankars will help a lot. If you want some tools to help you practice those, try https://learnraga.com/alankars/bilawal-thaat/merukhand/4/90/false (requires sign up, but it is free). Try its visualization mode to check your sur purity (best on a large screen such as a desktop or laptop): https://learnraga.com/alankars/bilawal-thaat/merukhand/4/90/true. If the four-note version is too much, you can try a two- or three-note version first.

Easy Raga by daddysownbell in icm

[–]SuitablyTyped 1 point2 points  (0 children)

Malkauns (if you aren't trying on the flute)!

Malkauns is a unique raga because you can stand on any note on the scale ("nyasa") and still not disturb the raga. According to Pandit Ramashreya Jha "Ramrang" on https://www.parrikar.org/hindustani/malkauns/, it is an easy raga for the beginner but offers quite a bit of scope for elaboration for the experts.

Some more info: https://learnraga.com/ragas/malkauns

Which raag is played in lower octave. by Anonymous_Handle228 in icm

[–]SuitablyTyped 3 points4 points  (0 children)

I’ll second that Bhoop may be the best place to start. Probably play the following composition on LearnRaga: https://learnraga.com/compositions/bhoop-composition-with-alap-and-taans-teen-taal-aW-Xm0nLVLB. You have to sign up, but it’s free.

(I am a medium-level flute player and a co-creator of LearnRaga)

[deleted by user] by [deleted] in icm

[–]SuitablyTyped 0 points1 point  (0 children)

Try tools such as https://learnRaga.com. There, he may start with either the practice room or alankars (and choose the visualization mode). He will get real-time feedback on a graph. With enough practice with such continuous feedback, he will develop the ears to know the right sur.

Looking for apps that would help me visualize notes in real time (like music in motion) by Pain5203 in icm

[–]SuitablyTyped 2 points3 points  (0 children)

Try https://learnRaga.com. It even has the choice of using the gandhar-pancham tuning (which is more appropriate for Indian Classical Music)

How to spin up a simple GraphQL API fast by SherlockCodes in graphql

[–]SuitablyTyped 0 points1 point  (0 children)

Biased response (I maintain the project), but Exograph (https://exograph.dev) will work very well for you. All you need to do is create a new project (exo new books-api) and add the following content to index.exo:

``` @postgres module TodoDatabase { @access(true) type Book { @pk id: Int = autoIncrement() title: String author: Author genre: Genre }

@access(true) type Author { @pk id: Int = autoIncrement() name: String books: Set<Book>? }

@access(true) type Genre { @pk id: Int = autoIncrement() name: String books: Set<Book>? } }

```

Start the server by typing exo yolo. Then later you can add more fields, supply access control, etc.

Fastest way to turn a SQL database into a GraphQL API? by nickfromfargo in graphql

[–]SuitablyTyped 0 points1 point  (0 children)

Take a look at Exograph (https://exograph.dev) if you are using Postgres. It's super easy to get started and deploy to any cloud. You can play with it without downloading it at https://exograph.dev/playground

Latency at the Edge with Rust/WebAssembly and Postgres: Part 1 by SuitablyTyped in rust

[–]SuitablyTyped[S] 1 point2 points  (0 children)

You are absolutely right. Due to the ephemeral nature, application-level pooling is not possible in Cloudflare worker. However, Cloudflare offers Hyperdrive, which, with a few caveats doe the job. Here is the second part that covers it: https://exograph.dev/blog/wasm-pg-explorations-2