Date context: January 31, 2026 (as provided)
I want to connect to my rds instance using psql I allowed all traffic still mo use
- Even with security group allowing all traffic, common blockers are:
- Publicly accessible = No
Date context: January 31, 2026 (as provided)
I want to connect to my rds instance using psql I allowed all traffic still mo use
| Hey tailwind team, | |
| I have been a developer for the past 10 years. I was selected for the Google Summer of Code program where I started seriously open-sourcing. | |
| Since then I have built and open-sourced many applications and libraries primarily in React, Javascript and Python. | |
| I am passionate about Tailwind and have been using it in every project of mine. | |
| Most recently I built Rocketgraph(https://rocketgraph.io/) using Next.js. It's a backend as a service product that let's developers build web applications in minutes. | |
| I have gained solid design principles working at companies like Hackerrank(YC) among others. I am also passionate about building products outside of my work and open-sourcing them. This passion is what brings that extra edge to my performance. | |
| I'd love to contribute to the Tailwind library that many other developers and I use on a daily basis. |
| CREATE FUNCTION insert_user_id() | |
| RETURNS trigger AS $BODY$ | |
| BEGIN | |
| SELECT id INTO NEW.to_id FROM users WHERE email = NEW.to_email; | |
| RETURN NEW; | |
| END; | |
| $BODY$ LANGUAGE plpgsql; | |
| CREATE TRIGGER insert_article BEFORE INSERT OR UPDATE ON messages FOR EACH ROW EXECUTE PROCEDURE insert_user_id(); |
People
:bowtie: |
๐ :smile: |
๐ :laughing: |
|---|---|---|
๐ :blush: |
๐ :smiley: |
:relaxed: |
๐ :smirk: |
๐ :heart_eyes: |
๐ :kissing_heart: |
๐ :kissing_closed_eyes: |
๐ณ :flushed: |
๐ :relieved: |
๐ :satisfied: |
๐ :grin: |
๐ :wink: |
๐ :stuck_out_tongue_winking_eye: |
๐ :stuck_out_tongue_closed_eyes: |
๐ :grinning: |
๐ :kissing: |
๐ :kissing_smiling_eyes: |
๐ :stuck_out_tongue: |
| // src/index.js | |
| import React from "react"; | |
| import ReactDOM from "react-dom"; | |
| import App from "./App"; | |
| import { NhostApolloProvider } from "@nhost/react-apollo"; | |
| ReactDOM.render( | |
| <React.StrictMode> | |
| <NhostApolloProvider gqlEndpoint="https://hasura-xxx.nhost.app/v1/graphql"> | |
| <App /> |
| #include <stdio.h> | |
| #include <string.h> | |
| #define MIN(a,b) (((a)<(b))?(a):(b)) | |
| int getBit(long long int s, int i) { | |
| return (s >> i) & 1; | |
| } | |
| long long int clearBit(long long int s, int i) { | |
| s ^= 1 << i; |
| strings = ['I', 'am', 'the', 'laziest', 'person', 'in', 'the', 'world' ] | |
| s = '' | |
| s.join(strings) |
| strings = ['I', 'am', 'the', 'laziest', 'person', 'in', 'the', 'world' ] | |
| s = "" | |
| for string in strings: | |
| s = s+string | |
| print(s) |
| // | |
| // This is tested and works! | |
| // | |
| String input = "123,456"; | |
| int firstVal, secondVal; | |
| for (int i = 0; i < input.length(); i++) { | |
| if (input.substring(i, i+1) == ",") { | |
| firstVal = input.substring(0, i).toInt(); | |
| secondVal = input.substring(i+1).toInt(); |
| (function () { | |
| rcversion = '1.0'; | |
| load('underscore.min.js') | |
| // NOTES | |
| // Basics, wrap the whole thing in a function | |
| // Set a version for sanity's sake | |
| // Load underscore, a must in any javascript environment |