Best of SQLSeptember 2022

  1. 1
    Article
    Avatar of devtoDEV·4y

    Database GUIs in JavaScript

    Traditional tools are often written in Java, C++ or Delphi and they use good old JDBC, ODBC or ADO.NET drivers for accessing database. Almost all tools are open-source. If you know about other tool not listed in this article, you could write about it in comments below. For SQLlite I actually use Firefox.

  2. 2
    Article
    Avatar of phProduct Hunt·4y

    CodeSkill - Testing essential coding skills is a breeze with CodeSkill

    CodeSkill CodeSkill makes it easy to test essential programming skills of a developer. It fits very well into hiring processes as a live coding tool.

  3. 3
    Article
    Avatar of tdsTowards Data Science·4y

    Powerful SQL queries that you might not know

    queries could exist in different dialects too but with different syntax, or not supported in some dialects at all. The problem with this method is that if you have a lot of categories for each brand, the number of rows will become so many that it’s difficult to inspect each brand. Using array_agg we can easily answer questions like ‘How many categories does each brand have?’.

  4. 4
    Article
    Avatar of logrocketLogRocket·4y

    Comparing the 7 best ORM packages in Go

    The GORM (Go-ORM) package is the most popular ORM package in the Go ecosystem. The SQLC package provides database queries, transactions, configurations, and functionalities. The Beego ORM is a powerful ORM inspired by popular Python ORMs, like the Django ORM and SQLAlchemy.

  5. 5
    Article
    Avatar of faunaFauna·4y

    Understanding the document-relational database

    Fauna is a distributed document-relational database built for modern applications. It combines the flexibility and familiarity of JSON documents with the power of a traditional relational database. It is delivered as an API, removing the operational burden from developers.

  6. 6
    Article
    Avatar of systemweaknessSystem Weakness·4y

    SQL Injection

    The first thing to do when faced with an SQL vulnerability is to try to detect how many columns exist in your table. To do this we will use the payload order by 1000. When you have executed this, you will see an error like this. To automate this I create a very nice python tool and it will be the tool with which I will teach you how to exploit a Blind SQL Injection. It is a type of SQL injection.

  7. 7
    Article
    Avatar of redislabsRedis·4y

    3 Reasons Why Your MySQL Database Needs Redis

    Redis Enterprise is a free, free, open source database solution until… it isn’t. It’s very common for products and services to eventually run into issues with performance, scaling, and innovating outside of the rigid SQL-based environment.

  8. 8
    Article
    Avatar of phProduct Hunt·4y

    AskEdith - Never write SQL from scratch again! ⭐️

    AskEdith is an AI English-To-SQL translator that can speed up the analytics process for beginners and experts alike. Ask your data questions directly, and share your results in graph or CSV format.

  9. 9
    Article
    Avatar of infosecwriteupsInfoSec Write-ups·4y

    How I Found Multiple SQL Injections in 5 Minutes in Bug Bounty

    SQL Injection is one of the most critical vulnerabilities that can be found in web applications. I will show you today how I found multipleSQL Injection vulnerabilities while hunting in Bug Bounty program.

  10. 10
    Article
    Avatar of devgeniusDev Genius·4y

    Data Analyst Portfolio Project.

    Data Analyst Portfolio Project will cover all the problems, errors, and we'll slide through the project in a step by step manner. To start with the Dataset, we’ll start by cleaning and joining the various tables of the Year 2018, 2019 and 2020 since the dataset is very huge.

  11. 11
    Article
    Avatar of communityCommunity Picks·4y

    Prompt injection attacks against GPT-3

    GPT-3 offers a paid API that allows people to build custom software that uses the API. It turns out you can use prompt injection attacks to leak the original prompt. If part of your prompt includes untrusted user input, all sorts of weird and potentially dangerous things might result. A few people have suggested using further AI prompts to detect if a prompt attack has been performed.

  12. 12
    Article
    Avatar of tinybirdTinybird·4y

    How I replaced Google Analytics with Retool and Tinybird, Part 1

    Tinybird has released a Web Analytics Starter Kit that lets you deploy an end-to-end customizable Google Analytics alternative in less than 5 minutes. In web parlance, a ‘session’ is a collection of events that begins when a visitor enters the domain and ends when they exit the domain. The tracker doesn’t send ‘exit’ events to the Tinybird data source. This is fine for now.

  13. 13
    Article
    Avatar of pointerPointer·4y

    Postgres Full Text Search is Awesome!

    ElasticSearch has all kinds of best in class features, like a modified version of BM25 that is state of the art. But the ElasticSearch approach is a dead end for 2 reasons: Trying to improve search relevance with statistics like TF-IDF and BM25 is like trying to make a flying car.

  14. 14
    Article
    Avatar of glcGolang News·4y

    Golang Tutorial to setup a RESTful API Project with Postgres and GORM

    Golang Tutorial to setup a RESTful API Project with Postgres and GORM Golang. Golang has impressive features that support the needs of microservice architecture, large-scale enterprise applications, and distributed systems.