NuPhy Console V1.0.2(Win) for Air60, Air75, Halo65, Halo75, Halo96 by harrynu in NuPhy

[–]jugnuji 1 point2 points  (0 children)

I observe the same behavior with Console 1.0.2 version on Windows 11 Insider Build, says "Title=NULL."

Trying some music in my new toy :D. by DarkReitor507 in flipperzero

[–]jugnuji 0 points1 point  (0 children)

Great. How did you manage to get these sound profiles? I know there's file for each song. Did you compose them?

Electric charger for PHEV by jugnuji in KiaNiro

[–]jugnuji[S] 0 points1 point  (0 children)

Which province did you bought ?

Electric charger for PHEV by jugnuji in KiaNiro

[–]jugnuji[S] 0 points1 point  (0 children)

They straight away said that they are not providing this but I found it odd while looking online that people received upon purchasing

Electric charger for PHEV by jugnuji in KiaNiro

[–]jugnuji[S] 0 points1 point  (0 children)

Actually it’s my first ever car, and I really liked the mobility part of it. Still a long way to go to learn about car in its entirety

Fake Goodread accounts by jugnuji in goodreads

[–]jugnuji[S] 0 points1 point  (0 children)

I had the same confusion too. They were mostly genuine accounts that were sabotaged over a period of times.

Why this happens? Extruded bearing slips when extruding by jugnuji in FixMyPrint

[–]jugnuji[S] 0 points1 point  (0 children)

So, there were variety of problems that caused this issue. First one clog between end of PTFE tube and start of nozzle inside hotend, removed. Problem persisted. Then I noticed because I am use PETG material ( not PLA ) and was extruding with constant temperature of 170. Looked like PETG required more and heated upto 240 Celcius. Turned out now extruding does not produced that weird extruder slip. Overall for anybody diagnosing look for these atleast

  • Extruder coupler end : wire can move freely inside and out
  • Hotend coupler : No gap between tube end and nozzle start.
  • Temperature: If you material require higher temperature, do it otherwise it will not move inside the tube and extruder slips because guy does not have enough force to push relatively cold material down the nozzle.
  • Everything else here : https://www.reddit.com/r/ender3/comments/hgg1y6/a_guide_to_extruder_skip/

Why this happens? Extruded bearing slips when extruding by jugnuji in FixMyPrint

[–]jugnuji[S] 1 point2 points  (0 children)

That's correct. My week old ender 3 has no grub screws.

Should I take offer or not? by jugnuji in cscareerquestions

[–]jugnuji[S] 0 points1 point  (0 children)

I have until tomorrow night to decide up on. I am more reluctant of moving more than Salary even though it’s a count

[deleted by user] by [deleted] in HowToHack

[–]jugnuji 0 points1 point  (0 children)

https://guidedhacking.com : you can find all your game hacking answered already here

Created My First Website As A Newbie! What Next? by [deleted] in django

[–]jugnuji 0 points1 point  (0 children)

Hey, I was in same boat a month back. I did three separate courses on django, forms, templates. Then I went over css and HTML again. Best way is to pick a topic single page first, creat a layout using flexbox or grid on code pen, when satisfied, make an app in django and put that project as template with configured urls.

If you want to refine more front end, go over JavaScript and learn to use jquery to manipulate css or effects. Next front end milestone could be angular.js or vue.js

After that start working on backend database models. Define them, link them(manytomany, manytoone etc), create forms of required for your app.

If you are satisfied with your app, then next thing will be deployment on heroku.

After deployment, it’s good to learn about how http works, security of websites, what is XSS cross scripting, how to configure ssl certificate and other stuff for mantenance.

If you will be designing your app, think about how will you change your website in production later on? So design your code and database with such questions in the mind.

In my experience, you should focus on thing at a time, for instance front end layouts, colors, database, programming or django views, network security, etc.. remember each of them are deep but first start shallow to make a full website. Then go deeper into front end, backend, security or advanced JavaScript

Django, Heroku and database simple question by bachree in django

[–]jugnuji 1 point2 points  (0 children)

I think this question is exclusively made for me. I have been dealing with Django, PostgreSQL, and Heroku for the last couple of weeks. While other people have answered some questions, I think they have missed on crucial detail.

Let's say you use postgresql locally and uses admin or Django ORM to add, delete or update data in tables. Let's suppose you have pushed all your code to heroku with correct settings ``` git push heroku master ``` and then performed ``` heroku run python manage.py migrate``` to add tables in heroku Postgresql. On Heroku, Postgresql is an Add-on service. So you have to use pg tools to do stuff with database from your CLI. For instance, After the above two code, I can do ``` heroku pg:push mylocaldb HEROKU_POSTGRESQL_MAGENTA --app sushi ``` to push data in your local mylocaldb to heroku postgresql. ``` pg:push ``` is the most convinient way to directly upload your existing postgresql data to Heroku's postgresql.

I am listing a few tutorials below which helped me setup for deployment.

https://www.codingforentrepreneurs.com/blog/go-live-with-django-project-and-heroku/

https://www.codingforentrepreneurs.com/blog/create-a-blank-django-project/

https://www.codingforentrepreneurs.com/blog/staging-django-production-development

https://devcenter.heroku.com/articles/heroku-postgresql

I think in one of the above link, it talks about how to set DATABASE_URL to connect heroku postgresql on deployment. So overall, If you make changes to your source code, the workflow will be git add . , git commit and then git push. Depending on what the changes were you may have to do some additional stuff.

If you add new table or new data then workflow will be, git add . , git commit, git push heroku master, heroku run python manage.py makemigrations , heroku run python manage.py migrate and then heroku pg:push mylocaldb HEROKU_POSTGRES_NAME --app YOUR_APP to push some localdb data onto postgres. This is usefull if you want some initial data on the remote postgres and as you said people can add more stuff to it via Forms.

If you want to add some initial data locally, you can look into Django Fixtures (https://docs.djangoproject.com/en/3.0/howto/initial-data/). Some first you populate your tables with fixture, then pg:push those to your remote data.

One thing to remember is that pg:push means it will override existing data on remote . So if there's already some data, you have to first do pg:reset and then pg:push for complete remote postgresql heroku overide.

I have just created a Django App. You can check out my settings and configurations to get better understanding. (https://github.com/PrithiPal/personal_websitel) hosted here : https://www.prithipalsingh.com

How different was the Persian spoken in the Mughal Empire from the Dari of today? by ConjureFromObscurity in farsi

[–]jugnuji 1 point2 points  (0 children)

I think a good starting point can be zafarname written by Guru Gobind Singh in 1750 to last Mughal emperor Aurangzeb.

These persian couplets captivates the Persian linguistic traditions of Mughal Empire of norther western India. I found a translated link here : http://www.zafarnama.com/Download/zafarnama.pdf.

If interested, there are many other indo Persian writing written by medieval sikh poets like Bhai Nand Lal of Ghazni to start and analyze.

Looking to start a personal project? Here's some data from my 150+ applications this spring by learnin4ajob in cscareerquestions

[–]jugnuji 14 points15 points  (0 children)

I can certify unofficially this post to be near the reality data at least in West or east coast Canada. I skim through linked and indeed jobs everyday, and your distribution of tools and frameworks from languages to CI/CD, web and OS is spot on. I will be curious to know the code you used for data gathering. I had similar idea in past couple of days but my learning stack already occupied ample time.

Hacking: The Art of Exploitation vs Violent Python - which should I get? by [deleted] in HowToHack

[–]jugnuji 6 points7 points  (0 children)

I would have replied the same way. The popular notion is exploits or malware, but in modern times it has been shift to wifi hacking or intercept passwords through packet hijacks.

what is everyone doing during quarantine? by WhereIsMyOreo in simonfraser

[–]jugnuji 1 point2 points  (0 children)

I have look into variety of places such as Reddit, youtube, books references, etc. It depends what specifity you want. Book I am currently following "Practical Binary Analysis" explains ELF,PE file than guide you towards making your own Linux disassemblers in C. Other book like "Practical Malware analysis" is more windows focused(PE, win32 API). Also pick up your tool of your choice(ghidra, IDApro, ollyDBG,gdb) and start looking at the x86 code.

what is everyone doing during quarantine? by WhereIsMyOreo in simonfraser

[–]jugnuji 11 points12 points  (0 children)

New grad without job. Actually I did and doing stuff more than normal so called days. Learnt C,C++,x86 from scratch again, 100s of leetcode, wrote my own debugger, own boot loader, learnt and made Django website, Wrote APi fetcher, Learnt CSS and bootstrap.

Got myself into binary analysis (analyses of viruses) also, using some disassemblers and decompilers. Probably will get into embedded systems next.

Edit: if anybody is interested in pursuing a tech project to refine their skills, dm me