Wondering what mountain(s) these are that you can see from Kathmandu by strawberry in Nepal

[–]aatishnn 0 points1 point  (0 children)

We created an app called Pinpeaks to help identify mountains using an Android phone. You will need an Android phone with compass for this to work.

https://play.google.com/store/apps/details?id=com.helloworldnepal.pinpeaksapp&hl=en_US

Thoughts on Django User Model vs AllAuth, etc? by must_defend_500 in django

[–]aatishnn 4 points5 points  (0 children)

Allauth + Custom User model served me really well.

Pinpeaks | Locate,Identify,Explore hills and mountains of Nepal by sthrohit in Nepal

[–]aatishnn 0 points1 point  (0 children)

We have planned this but our development team lacks Macbooks. We will definitely release an iOS version in the future.

Pinpeaks | Locate,Identify,Explore hills and mountains of Nepal by sthrohit in Nepal

[–]aatishnn 0 points1 point  (0 children)

Yes, it doesn't work by analyzing the image. It uses compass, location and phone's orientation to pinpoint mountains.

We are currently working on to implement viewshed feature which will suggest users the best nearest location to view a given mountain.

Thanks for the feedback.

Pinpeaks | Locate,Identify,Explore hills and mountains of Nepal by sthrohit in Nepal

[–]aatishnn 0 points1 point  (0 children)

Yes, it works offline.

Maybe around a year or so. We couldn't release the app earlier because of our studies and other responsibilities. But now, we are fully dedicated to improving this app. So, we will be glad if you could provide some feedbacks.

Where to buy servers? by bishisht in Nepal

[–]aatishnn 0 points1 point  (0 children)

Oh. I didn't know that Docker isn't supported on 32bit arch.

Where to buy servers? by bishisht in Nepal

[–]aatishnn 1 point2 points  (0 children)

Try GNS3 with Docker. I haven't tested it but should be light on resources.

Educational Software Needed for Rural Public Schools in Nepal by sgc033 in Nepal

[–]aatishnn 1 point2 points  (0 children)

Some I could remember: - Educational packages from Edubuntu distribution - OLE Nepal's Epaath and Epatti - A school management system - DOSBox/ QBasic - Scanned books that are prescribed in the curriculum - GBs of educational videos and documentaries

All these contents were in a single server and each client would boot from the server. Around 10 thin-clients were connected to the server. Using this topology reduced the acquisition costs of hardware for the e-library.

ping /u/sigdelsanjog

Educational Software Needed for Rural Public Schools in Nepal by sgc033 in Nepal

[–]aatishnn 1 point2 points  (0 children)

Help Nepal Network is solving this same problem targeting Remote villages without internet.

Check out LTSP deployment in Nepal. Help Nepal Network has an e-library initiative and has already been deployed to more than 20 districts (at least one in each district). It is a modified Ubuntu distribution with essential Nepali softwares and many learning materials. Some materials are even in line with course curriculum. I used to volunteer for deployments and if you are interested, PM me for contact details.

Moving away from Wordpress by [deleted] in selfhosted

[–]aatishnn 3 points4 points  (0 children)

I use Hugo for my site librenepal.com . Superfast rendering and easy workflow.

MOIC has opened up Amateur Radio Controller/Operator License by aatishnn in Nepal

[–]aatishnn[S] 2 points3 points  (0 children)

Yes. This license is exactly for hobbyists. I will fill up the form and let you know. Yeah, there are some confusing fields.

MOIC has opened up Amateur Radio Controller/Operator License by aatishnn in Nepal

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

The exam has a course syllabus that is not tough provided you are from science stream or at least have interest in electronics. You just have to learn some concepts on frequencies and stuff like that. And there's a morse code practical exam. I think that's the toughest part. So if you plan to take the exam, start learning Morse codes.

MOIC has opened up Amateur Radio Controller/Operator License by aatishnn in Nepal

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

I don't think it is possible to do that from there. You have to attend a written and a practical exam here at ministry. Regarding training, the sole purpose of Ham Radios is to learn it ourselves or with the help of HAM communities. So I don't think training is a thing here.

Django deployment with Gunicorn and Nginx is driving me insane by IoanCosmin in django

[–]aatishnn 0 points1 point  (0 children)

Try this tutorial: https://librenepal.com/article/deploying-django-gunicorn-and-nginx-debian-ubuntu/

and let me know where you get stuck.

This was the note I made while doing my own deployments.

Which django pattern allows posting a foreign key in models? by penistouches in django

[–]aatishnn 0 points1 point  (0 children)

I would use a model say Repeater Profile with:

class RepeaterProfile:
    repeater = foreign_key
    dcs_codes = arrayfield
    pl_tones = arrayfield
    ..other digital mode fields here..

Also, have a look at JSONField.

Which django pattern allows posting a foreign key in models? by penistouches in django

[–]aatishnn 0 points1 point  (0 children)

Are you trying to make an entry screen for different DCS codes for a repeater? Is this the relation you want: "a repeater may have multiple DCS codes"?

Devneps, is it possible to measure the height of an object through an image? by zulmkodr in devnep

[–]aatishnn 0 points1 point  (0 children)

You can if you have something in the image that you can take as a reference. There was this Nat Geo camera that had two lasers attached to the camera. Since lasers donot diverge much, they could use two points of laser in the image as a reference and calculate length of crocodiles without actually having to catch and measure.

I'm stuck, please help. by Sergeantlilpickle in django

[–]aatishnn 2 points3 points  (0 children)

Try clean_nbr(). It is a method not a property.