#supabasetips search results

You can update a user's password when they are logged in using the update method. #SupabaseTips

silentworks's tweet image. You can update a user's password when they are logged in using the update method. #SupabaseTips

Ever wanted to do pagination with your data from @supabase, well worry not my friend, you can do it right there in your frontend code like so. #SupabaseTips

silentworks's tweet image. Ever wanted to do pagination with your data from @supabase, well worry not my friend, you can do it right there in your frontend code like so. #SupabaseTips

Did you know you can update a jsonb column with the @supabase client library while using a jsonb column object property to check a value against? #SupabaseTips

silentworks's tweet image. Did you know you can update a jsonb column with the @supabase client library while using a jsonb column object property to check a value against? #SupabaseTips

#SupabaseTips from @TomasHubelbauer Use upsert() with select() to determine if it was an insert or an update:

kiwicopple's tweet image. #SupabaseTips from @TomasHubelbauer 

Use upsert() with select() to determine if it was an insert or an update:

⚡️#SupabaseTips Series - #07⚡️ Create separate development and production DBs in Supabase. When developing production-grade apps, you want to be able to have 3 environments. Development -> Staging -> Production Setup the development on the Free Plan

ahmedfmire's tweet image. ⚡️#SupabaseTips  Series - #07⚡️

Create separate development and production DBs in Supabase. 

When developing production-grade apps, you want to be able to have 3 environments. 

Development -> Staging -> Production 

Setup the development on the Free Plan

Did you know that you can do image transforms directly from @supabase's CDN. For basic transforms, there is no need to use an external service like Cloudinary. This is how easy it is 👇😎 #Supabasetips

nwbotha's tweet image. Did you know that you can do image transforms directly from @supabase's CDN.

For basic transforms, there is no need to use an external service like Cloudinary.

This is how easy it is 👇😎

#Supabasetips

I bet you didn't know that in @supabase you can write JavaScript-based SQL functions 😲 How? Config -> Extension: Activate plv8, Write JavaScript Docs: plv8.github.io #frontend #SupabaseTips

activenode's tweet image. I bet you didn't know that in @supabase you can write JavaScript-based SQL functions 😲

How? Config -> Extension: Activate plv8, Write JavaScript

Docs: plv8.github.io

#frontend #SupabaseTips

Logging in with social authentication is made really easy with @supabase but it's also as easy to set the scopes you want the application to have on sign in with the scopes property that is passed as part of the object of the second parameter for the signIn function #SupabaseTips

silentworks's tweet image. Logging in with social authentication is made really easy with @supabase but it's also as easy to set the scopes you want the application to have on sign in with the scopes property that is passed as part of the object of the second parameter for the signIn function #SupabaseTips

Ever wanted to get an initial migration file of your hosted @supabase to use with your local Supabase. Look no further, the supabase CLI is here to help. #SupabaseTips

silentworks's tweet image. Ever wanted to get an initial migration file of your hosted @supabase to use with your local Supabase. Look no further, the supabase CLI is here to help. #SupabaseTips

画像ファイルのアップロードもSupabaseストレージなら3行でパパッと実装 #SupabaseTips

dshukertjrjp's tweet image. 画像ファイルのアップロードもSupabaseストレージなら3行でパパッと実装
#SupabaseTips

Did you know that the Supabase Flutter SDK now supports querying from non-public schema? #SupabaseTips

dshukertjr's tweet image. Did you know that the Supabase Flutter SDK now supports querying from non-public schema?
#SupabaseTips

Did you know you can pass a redirect URL to your @supabase sign in and sign up functions? This works even when using magic link sign in too. #SupabaseTips

silentworks's tweet image. Did you know you can pass a redirect URL to your @supabase sign in and sign up functions? This works even when using magic link sign in too. #SupabaseTips

Upload your files to Supabase storage securely with just 3 lines of code from your Flutter app! #SupabaseTips

dshukertjr's tweet image. Upload your files to Supabase storage securely with just 3 lines of code from your Flutter app!
#SupabaseTips

Supabaseで"public"以外のスキーマもクエリーできるようになりました!Flutterだとこのような形でクエリーすることができます! #SupabaseTips

dshukertjrjp's tweet image. Supabaseで"public"以外のスキーマもクエリーできるようになりました!Flutterだとこのような形でクエリーすることができます!
#SupabaseTips

One thing I love about @PostgreSQL is the ease to use geo data 🌎 Here is an example PostgreSQL function to load nearby restaurants 🍝 #SupabaseTips

dshukertjr's tweet image. One thing I love about @PostgreSQL is the ease to use geo data 🌎

Here is an example PostgreSQL function to load nearby restaurants 🍝
#SupabaseTips

Want to allow a user to reset their password when they are unable to log in? well, there are functions for that in the Supabase JS client library. #SupabaseTips

silentworks's tweet image. Want to allow a user to reset their password when they are unable to log in? well, there are functions for that in the Supabase JS client library. #SupabaseTips

Supabase supports sending one time password via WhatsApp when performing phone auth. Here is how you can implement it in your Flutter app: #SupabaseTips

dshukertjr's tweet image. Supabase supports sending one time password via WhatsApp when performing phone auth.

Here is how you can implement it in your Flutter app:

#SupabaseTips

Performing the "LIKE" query on Supabase is as easy as the following: #SupabaseTips #Flutter

dshukertjr's tweet image. Performing the "LIKE" query on Supabase is as easy as the following:
#SupabaseTips #Flutter

Wait! Supabase supports spread operators when making API requests!? Yup, using the spread (...) operator, you can "flatten" the result of your query just like flattening objects in JavaScript 👍 #SupabaseTips

dshukertjr's tweet image. Wait! Supabase supports spread operators when making API requests!?

Yup, using the spread (...) operator, you can "flatten" the result of your query just like flattening objects in JavaScript 👍

#SupabaseTips

Did you know that Supabase Realtime now supports eq, neq, gt, gte, lt, and lte filters? Here is an example of how you can listen to realtime updates of posts that are newer than a certain date in a Flutter app! #SupabaseTips

dshukertjr's tweet image. Did you know that Supabase Realtime now supports eq, neq, gt, gte, lt, and lte filters? 

Here is an example of how you can listen to realtime updates of posts that are newer than a certain date in a Flutter app!

#SupabaseTips

Python/Supabase devs: Hitting `TypeError: Client.__init__() got an unexpected keyword argument 'proxy'`? It's a `supabase-py` 2.8.1 + `gotrue` 2.9.1 clash. ⚡️ Quick fix: Pin `supabase-py` 2.8.1, `gotrue` 2.8.1, `httpx` 0.24.x Avoid the "proxy" pitfall! #SupabaseTips


timestamptz型のデフォルト値を設定する際に、現在日時からN日後(前)としたい場合、(NOW() + INTERVAL '7 days')のようにカッコでくくる。 #supabaseTips


Bulk-inserting data with Supabase is easy. You simply pass all the data as an array (or List in Dart) to the `insert()` method, and all of the data will be inserted! #SupabaseTips

dshukertjr's tweet image. Bulk-inserting data with Supabase is easy. You simply pass all the data as an array (or List in Dart) to the `insert()` method, and all of the data will be inserted!
#SupabaseTips

Wait! Supabase supports spread operators when making API requests!? Yup, using the spread (...) operator, you can "flatten" the result of your query just like flattening objects in JavaScript 👍 #SupabaseTips

dshukertjr's tweet image. Wait! Supabase supports spread operators when making API requests!?

Yup, using the spread (...) operator, you can "flatten" the result of your query just like flattening objects in JavaScript 👍

#SupabaseTips

.upsert() is handy for editing content functionality, because it allows you to use the same set of code for both inserting and updating the data. #SupabaseTips

dshukertjr's tweet image. .upsert() is handy for editing content functionality, because it allows you to use the same set of code for both inserting and updating the data.

#SupabaseTips

Generated columns allow you to create a column based on calculation that can be indexed! When used properly, it brings massive performance boost 🚀 Learn how you can use them in this video 👇 #SupabaseTips


Thanks, everyone for so many #SupabaseTips in the thread! The ones that came up the most are: - Learn Postgres Views - Learn Row Level Security - Read the official docs - Learn local development using the CLI Recommend you to read through the thread if you haven't yet 👇

Question for all @supabase users ‼️ What is one tip you would give to someone getting started with Supabase today? Let us know in the comments 👇 Let's create a nice list of #SupabaseTips together!



Great post for #supabase tips! #SupabaseTips

Question for all @supabase users ‼️ What is one tip you would give to someone getting started with Supabase today? Let us know in the comments 👇 Let's create a nice list of #SupabaseTips together!



Question for all @supabase users ‼️ What is one tip you would give to someone getting started with Supabase today? Let us know in the comments 👇 Let's create a nice list of #SupabaseTips together!


Performing the "LIKE" query on Supabase is as easy as the following: #SupabaseTips #Flutter

dshukertjr's tweet image. Performing the "LIKE" query on Supabase is as easy as the following:
#SupabaseTips #Flutter

📼 New #SupabaseTips: Multilingual full text search using PGroonga. By @dshukertjr.


Implementing multilingual full-text search is easy with Supabase thanks to the PGroonga extension! Learn how you can use it in your app with today's #SupabaseTips video 🚀 youtu.be/Mmmv9g_MiBA?si…

dshukertjr's tweet image. Implementing multilingual full-text search is easy with Supabase thanks to the PGroonga extension! 

Learn how you can use it in your app with today's #SupabaseTips video 🚀

youtu.be/Mmmv9g_MiBA?si…

Still one of my favorite Postgres features. You can use plain English words to specify a date or date-time value like "now" or "yesterday". You can also use them to interact with Supabase like this: #SupabaseTips

dshukertjr's tweet image. Still one of my favorite Postgres features. You can use plain English words to specify a date or date-time value like "now" or "yesterday". 

You can also use them to interact with Supabase like this:
#SupabaseTips

Postgresのdateやdatetime型って結構柔軟で、"now"や"yesterday"のように単語で日時を指定することもできるんですよね! もちろんそのままSupabaseで使うことも可能です! #SupabaseTips

dshukertjrjp's tweet image. Postgresのdateやdatetime型って結構柔軟で、"now"や"yesterday"のように単語で日時を指定することもできるんですよね!

もちろんそのままSupabaseで使うことも可能です!
#SupabaseTips

You can use the `count` option and `range()` to implement pagination when querying data from Supabase on your Flutter apps! #SupabaseTips

dshukertjr's tweet image. You can use the `count` option and `range()` to implement pagination when querying data from Supabase on your Flutter apps!

#SupabaseTips

Supabaseを使ったパジネーション! `CountOption`を使って全体で難行データがあるのかを取得しつつ、`range()`を使って特定のインデックスの範囲のデータを取得することができます。 #SupabaseTips

dshukertjrjp's tweet image. Supabaseを使ったパジネーション!

`CountOption`を使って全体で難行データがあるのかを取得しつつ、`range()`を使って特定のインデックスの範囲のデータを取得することができます。
#SupabaseTips

Supabaseを使うと「ここから近い順にレストラン一覧をクエリーする」みたいなこともパパッと実装できちゃったりします! supabase.com/docs/guides/da… #SupabaseTips

dshukertjrjp's tweet image. Supabaseを使うと「ここから近い順にレストラン一覧をクエリーする」みたいなこともパパッと実装できちゃったりします!

supabase.com/docs/guides/da…
#SupabaseTips

With the help of PostGIS, performing near by query is as easy as simply calling a database function. supabase.com/docs/guides/da… #SupabaseTips

dshukertjr's tweet image. With the help of PostGIS, performing near by query is as easy as simply calling a database function. 

supabase.com/docs/guides/da…
#SupabaseTips

Supabase supports sending one time password via WhatsApp when performing phone auth. Here is how you can implement it in your Flutter app: #SupabaseTips

dshukertjr's tweet image. Supabase supports sending one time password via WhatsApp when performing phone auth.

Here is how you can implement it in your Flutter app:

#SupabaseTips

Upload your files to Supabase storage securely with just 3 lines of code from your Flutter app! #SupabaseTips

dshukertjr's tweet image. Upload your files to Supabase storage securely with just 3 lines of code from your Flutter app!
#SupabaseTips

No results for "#supabasetips"

I bet you didn't know that in @supabase you can write JavaScript-based SQL functions 😲 How? Config -> Extension: Activate plv8, Write JavaScript Docs: plv8.github.io #frontend #SupabaseTips

activenode's tweet image. I bet you didn't know that in @supabase you can write JavaScript-based SQL functions 😲

How? Config -> Extension: Activate plv8, Write JavaScript

Docs: plv8.github.io

#frontend #SupabaseTips

画像ファイルのアップロードもSupabaseストレージなら3行でパパッと実装 #SupabaseTips

dshukertjrjp's tweet image. 画像ファイルのアップロードもSupabaseストレージなら3行でパパッと実装
#SupabaseTips

Supabaseで"public"以外のスキーマもクエリーできるようになりました!Flutterだとこのような形でクエリーすることができます! #SupabaseTips

dshukertjrjp's tweet image. Supabaseで"public"以外のスキーマもクエリーできるようになりました!Flutterだとこのような形でクエリーすることができます!
#SupabaseTips

Supabaseを使うと「ここから近い順にレストラン一覧をクエリーする」みたいなこともパパッと実装できちゃったりします! supabase.com/docs/guides/da… #SupabaseTips

dshukertjrjp's tweet image. Supabaseを使うと「ここから近い順にレストラン一覧をクエリーする」みたいなこともパパッと実装できちゃったりします!

supabase.com/docs/guides/da…
#SupabaseTips

Supabaseを使ったパジネーション! `CountOption`を使って全体で難行データがあるのかを取得しつつ、`range()`を使って特定のインデックスの範囲のデータを取得することができます。 #SupabaseTips

dshukertjrjp's tweet image. Supabaseを使ったパジネーション!

`CountOption`を使って全体で難行データがあるのかを取得しつつ、`range()`を使って特定のインデックスの範囲のデータを取得することができます。
#SupabaseTips

Supabase CLIを使ってTypeScript用の型生成ができるのって知ってましたか?? 本日公開された動画で簡単にその方法を紹介しています! #SupabaseTips youtu.be/7CqlTU9aOR4

dshukertjrjp's tweet image. Supabase CLIを使ってTypeScript用の型生成ができるのって知ってましたか??

本日公開された動画で簡単にその方法を紹介しています!
#SupabaseTips
youtu.be/7CqlTU9aOR4

Postgresのdateやdatetime型って結構柔軟で、"now"や"yesterday"のように単語で日時を指定することもできるんですよね! もちろんそのままSupabaseで使うことも可能です! #SupabaseTips

dshukertjrjp's tweet image. Postgresのdateやdatetime型って結構柔軟で、"now"や"yesterday"のように単語で日時を指定することもできるんですよね!

もちろんそのままSupabaseで使うことも可能です!
#SupabaseTips

Did you know you can pass a redirect URL to your @supabase sign in and sign up functions? This works even when using magic link sign in too. #SupabaseTips

silentworks's tweet image. Did you know you can pass a redirect URL to your @supabase sign in and sign up functions? This works even when using magic link sign in too. #SupabaseTips

#SupabaseTips from @TomasHubelbauer Use upsert() with select() to determine if it was an insert or an update:

kiwicopple's tweet image. #SupabaseTips from @TomasHubelbauer 

Use upsert() with select() to determine if it was an insert or an update:

16 #SupabaseTips videos and counting! youtube.com/watch?v=Jx8unD… Which is your favorite so far?

supabase's tweet image. 16 #SupabaseTips videos and counting! 

youtube.com/watch?v=Jx8unD…

Which is your favorite so far?

Performing the "LIKE" query on Supabase is as easy as the following: #SupabaseTips #Flutter

dshukertjr's tweet image. Performing the "LIKE" query on Supabase is as easy as the following:
#SupabaseTips #Flutter

Bulk inserting your data is easy when using Supabase and Flutter! Simply pass your data as a List and your good ⚽️ supabase.com/docs/reference… #SupabaseTips #FlutterDev

dshukertjr's tweet image. Bulk inserting your data is easy when using Supabase and Flutter! Simply pass your data as a List and your good ⚽️

supabase.com/docs/reference…
#SupabaseTips #FlutterDev

Did you know you can return stuff with an `INSERT ..` statement in #PostgreSQL ? E.g. getting the new id. #SupabaseTips #Database

activenode's tweet image. Did you know you can return stuff with an `INSERT ..` statement in #PostgreSQL  ? E.g. getting the new id.

#SupabaseTips #Database

Logging in with social authentication is made really easy with @supabase but it's also as easy to set the scopes you want the application to have on sign in with the scopes property that is passed as part of the object of the second parameter for the signIn function #SupabaseTips

silentworks's tweet image. Logging in with social authentication is made really easy with @supabase but it's also as easy to set the scopes you want the application to have on sign in with the scopes property that is passed as part of the object of the second parameter for the signIn function #SupabaseTips

Manage your database migration with our CLI! #SupabaseTips youtu.be/Kx5nHBmIxyQ

supabase's tweet image. Manage your database migration with our CLI! #SupabaseTips
youtu.be/Kx5nHBmIxyQ

You can get started with image transformation feature on your Flutter app as well 🌉 Just run `flutter pub upgrade` to get the latest Flutter SDK and enjoy the fun 🎉 #SupabaseTips #SupaLaunchWeek

dshukertjr's tweet image. You can get started with image transformation feature on your Flutter app as well 🌉

Just run `flutter pub upgrade` to get the latest Flutter SDK and enjoy the fun 🎉

#SupabaseTips #SupaLaunchWeek

📼 New #SupabaseTips: Introduction to Supabase Storage By @dshukertjr. youtube.com/watch?v=J9mTPY…

supabase's tweet image. 📼 New #SupabaseTips: Introduction to Supabase Storage

By @dshukertjr.

youtube.com/watch?v=J9mTPY…

#SupabaseTips: ⚡️ If you have a table where users are allowed to WRITE but not READ then you might love this tip. Use { returning: 'minimal' } for Supabase to avoid encountering a selection error due to Row Level Security. 💚

activenode's tweet image. #SupabaseTips:

⚡️ If you have a table where users are allowed to WRITE but not READ then you might love this tip.

Use { returning: 'minimal' } for Supabase to avoid encountering a selection error due to Row Level Security. 💚

📼 New #SupabaseTips: One to Many Relationship with SupabaseJS By @silentworks. youtube.com/watch?v=_GQJa3…

supabase's tweet image. 📼 New #SupabaseTips: One to Many Relationship with SupabaseJS

By @silentworks.

youtube.com/watch?v=_GQJa3…

Loading...

Something went wrong.


Something went wrong.


United States Trends