
Security News
rv Is a New Rust-Powered Ruby Version Manager Inspired by Python's uv
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
github.com/saiashish9/instagram-api-clone-by-sai
go run main.go
curl http://localhost:9000
ngrok http 9000
\l \d \du \c \q
sudo -u postgres psql
sudo -u postgres createdb instagram
\c instagram
create table status(
ID serial primary key,
NAME text not null,
URL text not null
);
\d status
grant all privileges on database instagram to saiashish;
host : localhost
port : 5432
username : saiashish
password: saiashish
database: instagram
insert into status(name,url) values('Sarthak','https://cdn.pixabay.com/photo/2016/08/24/23/08/cristiano-ronaldo-1618341__340.jpg');
TABLE status;
SELECT current_database();
\d
\d status
TABLE status;
select * from status order by id desc limit 3;
\q
create table posts(
ID serial primary key,
NAME text not null,
URL text not null,
PROFILE_URL text not null,
TITLE text not null,
DESCRIPTION text not null,
COMMENTS_COUNT text not null,
TIME text not null
);
sudo -u postgres psql
\c instagram
\d status
alter table status add msg text ;
instagram=# create table media(
ID serial primary key,
url text,
is_video int,
is_gallery int DEFAULT 0);
alter table media alter column is_video set default 0 ;
create table suggestions(
instagram(# id serial primary key,
instagram(# image text,
instagram(# title text,
instagram(# desc1 text,
instagram(# desc2 text);
instagram=# alter table status add statusImg text;
ALTER TABLE
instagram=# alter table status add statusVideo text;
ALTER TABLE
instagram=# alter table status add statusMsg text;
ALTER TABLE
instagram=# alter table status add time text;
ALTER TABLE
instagram=# alter table status add colors text;
ALTER TABLE
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.