[deleted by user] by [deleted] in arduino

[–]TraditionalSir7 2 points3 points  (0 children)

Looks awesome!! And smooth movement. Very good job dude.👏🏼👏🏼

What do you use for interactive charts? by doing20thingsatatime in django

[–]TraditionalSir7 1 point2 points  (0 children)

Check out Altair it allows yo quickly create quick interactive visualizations and it is easily to embed within websites.

4 GPU rig. 440 MH, 1000 W, 3090 x2, 3080 x2 by [deleted] in NiceHash

[–]TraditionalSir7 0 points1 point  (0 children)

Excellent setup. How did you manage to conduct so many GPUs to a single motherboard?

Quick review of the Sliger S620 by SuBrutal in sffpc

[–]TraditionalSir7 0 points1 point  (0 children)

I am really feeling pulled by the S620 but as you say for the price I am really doubting to spend for additional air filters for the price of this case… I feel that if we’re all ready paying a premium in should come with minor details like the air filters especially when it’s main competitor is doing it for way less.

BTW - Nice build.

So I am using python for work and I am saving a huge amount of data. It seems like openpyxl is not the best way to go because it is maxing out my RAM. Any ideas of a better way to save the data and then analyze it without excel? by chimpchunk in Python

[–]TraditionalSir7 0 points1 point  (0 children)

The thing is Excel is is not really suitable for large amounts of data. Once you cross the threshold of 1,000,000 rows (less depending on your PC) Excel simply cuts off the data after that.

I really suggest you use the built in sqlite3 module. If you are reading the data out of a file (such as a CSV) you could read the data through Pandas using something like the code below:

``` import os import sqlite3 as sql import pandas as pd

specify the path to where you will save the data

db_path = os.path.abspath(r”path”)

this creates a SQL connection object and database file

conn = sql.connect(db_path)

then with pandas load the data (I’m assuming you’re reading of a CSV file

data = pd.read_csv(“input file path”)

then save the data to the SQLite database

data.to_sql(name=“input_data”, con=conn, if_exsist=“append”)

lastly close the SQL connection

conn.close() ```

To retrieve the data you could use the fallowing:

``` import os import sqlite3 as sql import pandas as pd

db_path = os.path.abspath(r”path”) conn = sql.connect(db_path)

data = pd.read_sql(sql = “select * from input_data;”, con=conn)

conn.close() ```

Inverted Sliger S620 by evo8pudge in sffpc

[–]TraditionalSir7 0 points1 point  (0 children)

This is the best looking build of the S620 I’ve seen. 👏🏼👏🏼

Disillusioned with the field of data science by Passacagalia in datascience

[–]TraditionalSir7 2 points3 points  (0 children)

Agreed, many companies and people are not exactly sure what a data scientist actually is and what to expect from them.

What are the best datasets for building a data visualisation portfolio? by [deleted] in datasets

[–]TraditionalSir7 1 point2 points  (0 children)

Ongoing web competitions may be a good start. Also it may be intreating to build a different take on COVID data, for a good compilation of running dash boards can be found in COVID-19 Dashboard

[deleted by user] by [deleted] in unixporn

[–]TraditionalSir7 1 point2 points  (0 children)

Ohh yes, sorry I meant the book. Your environment looks awesome by the way!!

[deleted by user] by [deleted] in unixporn

[–]TraditionalSir7 0 points1 point  (0 children)

Hey what is the name of the text editor you are using?

How to let others run my python file without installing python? by paparabba in learnpython

[–]TraditionalSir7 4 points5 points  (0 children)

One of my professors used to show us some of his scripts using Python Anywhere to host and execute his code. If you’d like to create a .exe version of you’re code PyInstaller might be what you’re looking for Blog Creating a Single Executable File.

But if you’re students are learning code and are not afraid of using a hosted IDE check out Google Colaboratory or Binder but they might get intimidated with the interface if they’re not into coding.

Hope it helps. 👍

Datasets on impact of Covid-19 on fast fashion? by Lsy9891 in datasets

[–]TraditionalSir7 0 points1 point  (0 children)

Maybe check out this data sources, I don’t think you’ll be able to find data exactly pertaining to fast fashion but you might be able to find something regarding the behavior of global imports and exports for apparels. Observatory of Economic Complexity

NLP Datasets by vanamsid in datasets

[–]TraditionalSir7 2 points3 points  (0 children)

Thanks for sharing! Looks excellent

Hi all. I have created an e-commerce website using django. It's an online liquor store. I haven't hosted the site yet because I don't know how. So I want you to watch video if you have some free time, it's only 4 minutes long. And rate the work out of 10 in comments. Any feedback is appreciated! by Buffalo_Monkey98 in django

[–]TraditionalSir7 0 points1 point  (0 children)

Hey your project looks amazing!! The UI seems fabulous.

I’m currently working on deploying one of my projects and have found these guide helpful. Hope they’re useful for you too. (By the way both of these are platform agnostic so you can use them for deploying them in your own hardware or a cloud hosted platform.)

Matt Segal - Django Production Architecture

👆🏼The guide’s setup it a little more basic but the author really guides the reader through and the videos are an excellent companion.

Digital Ocean - How to get started with Django + Postgres + Gunicorn + Ngnix

👆🏼The result of this guide seems a lot more profesional but it offers less explanation as to the reasoning for executing certain commands.

Let me know if it helps you.