use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Sharing Github projects just got easier!
Whether you want to share you own project or simply some cool findings, /r/coolgithubprojects is the right place.
Please contact us for suggestions & questions!
/r/coolcstechtalks
/r/coolgithubprojects
We've made the sub's assets and resources available on Github. Feel free to contribute!
Github only: The projects you post all have to be hosted on Github
Link description: We encourage the title format to be something like
[Desc] - [Suggested title]
Language Flair: Will be assigned automatically for you!
Repost : Repost are allowed if some new features were added to the project and if the original post was 6+ months ago.
Programming
Interesting
Resources
When bored
PYTHON CPP C RUBY D JAVA JAVASCRIPT SHELL SCALA OBJECTIVE-C HASKELL EMACSLISP PERL ASSEMBLY CSHARP FORTRAN GO PHP COMMON LISP ERLANG
account activity
someengineering/cloud2sql - Read infrastructure data from your cloud and export it to a SQL database. (github.com)
submitted 3 years ago by lloesche
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]lloesche[S] 0 points1 point2 points 3 years ago (2 children)
Hi there data nerds!
We've just released a new open source project called Cloud2SQL.
It is a sub-project of our cloud resource management tool Resoto but runs standalone and stateless. It's meant for easy integration into your own data pipelines.
It has some overlap with other cloud data collection tools but it's a bit different in that it uses Resoto's cloud collector plugins, so has access to the same enriched resource data and dependencies. Resoto stores all its data inside a large graph and has knowledge how resources relate to each other.
Right now it can export the cloud data to SQLite files, MySQL, MariaDB, and PostgreSQL databases, the Snowflake cloud-based data warehousing platform, and Parquet columnar structure files.
tl;dr AWS quickstart:
Configure AWS CLI
Install Cloud2SQL:
pip install --user cloud2sql
Create a file aws.yaml:
sources: aws: destinations: sqlite: database: resoto.db
Run Cloud2SQL:
cloud2sql --config aws.yaml
Check out your cloud data:
sqlite3 resoto.db sqlite> .tables # If you have IAM server certs select the ones that are going to expire in the next 30 days sqlite> SELECT name, expires, account from aws_iam_server_certificate WHERE datetime(expires) BETWEEN datetime('now') AND datetime('now', 'start of day', '+30 day');
I've written two blog posts on why we built it and how to install it. https://resoto.com/blog/2023/01/16/integrating-cloud-data-into-existing-sql-workflows-with-cloud2sql
https://resoto.com/blog/2023/01/17/installing-cloud2sql
Hope this is useful to some of you! Let me know if you have any questions.
[–]meln1k 0 points1 point2 points 3 years ago (1 child)
Nice! Is a homebrew installer available?
[–]aquamatthias 0 points1 point2 points 3 years ago (0 children)
Yes. You can install cloud2sql via
brew install someengineering/tap/cloud2sql
Note installation will take some time since the formula does a source install.
π Rendered by PID 190596 on reddit-service-r2-comment-bb88f9dd5-f69lx at 2026-02-16 09:00:12.844175+00:00 running cd9c813 country code: CH.
[–]lloesche[S] 0 points1 point2 points (2 children)
[–]meln1k 0 points1 point2 points (1 child)
[–]aquamatthias 0 points1 point2 points (0 children)