Re: DJANGO QUORA LIKE APPLICATION

2019-03-04 Thread Makori Breens
Becareful.this guy stole my idea, conned me then dissappeared into thin air

On Fri, Feb 8, 2019, 2:59 AM Ben Indangasy  wrote:

> yes
>
> On Thu, Feb 7, 2019 at 10:03 AM Peter Mudoko  wrote:
>
>> I want a Django quora like application anybody who can do it hungout me
>>
>>
>>
>> Systems developer
>>
>> *Web Technologies Ltd*
>>
>> Email *p e...@webtechnologies.co.tz
>> *
>>
>> Mobile: *+254 7 <%2B254%20729490486>21449067/+255716282017/+254721491491*
>>
>> *Website **http://www.w
>> ebtechnologies.co.tz
>> *
>>
>> *Skype:peter.mudoko15*
>>
>>
>> *"Try and Try Again but dont fail to Try"*
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CABfSCxdH51a1%2BF%2BRtRKK7AmidtWo37yiaLKeYWneWPe_XHKx%2BQ%40mail.gmail.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAKHEhDLJdffotM_kO5cVNRrpVFnr20wkm-%2B3nNysTYmW3KPruw%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAOz9w2H%3DO4jfGWziWn4GA-ZTw-t1Sr1JTgCpKuze83Q7EvC%2B1w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re:

2019-03-30 Thread Makori Breens
http://track.haatm.com/aff_c?offer_id=919&aff_id=29710

On 3/30/19, Victor H. Velasquez Rizo  wrote:
> Hello Carol.
>
> Try this
> https://tutorial.djangogirls.org/en/
>
> On Sat, Mar 30, 2019 at 9:12 AM carol caro  wrote:
>
>> Hello. I am a new or beginner django developer. Where do I start from
>> I have installed python and integrated with Django framework but I don't
>> know what to do next
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAN%2Bowc-S7n3OX0jc_fLjro6unDSNZJU4yGbYsxTLGeh55%3DFQvA%40mail.gmail.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
> --
>
>
>
> Atte...,.
> Vìctor Hugo Velàsquez Rizo
> Cali - Colombia
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAFCXTzjxXSzeP8KQEWeV%2BCnVOZEHPinh08iCN1a1jYWpNcf4Xw%40mail.gmail.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAOz9w2Ei8LWhTorQ5Lmw-O4vBK683v%3D-nwLnWZDGQgs0uJrejA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: compute model field by related field

2019-04-16 Thread Makori Breens
Implement rest framework

On Tue, Apr 16, 2019, 9:20 PM omar ahmed  wrote:

> hello ... i have two models "Club" class and "Match" class and it has
> foreign key to Club
> now i want to increment "won" field (or draw or lost) in "Club" class by
> "score_local" and "score_visitor" in "Match" class ..
> how can i do this
> class Club(models.Model):
> name = models.CharField(max_length=100)
> won = models.IntegerField(default=1)
> draw = models.IntegerField(default=1)
> lost = models.IntegerField()
> goal_for = models.IntegerField()
> goal_against = models.IntegerField()
>
>
> class Match(models.Model):
> play_date = models.DateTimeField('play date')
> club_visitor = models.ForeignKey(Club, on_delete=models.CASCADE,
> related_name='match_club_visitor')
> club_local = models.ForeignKey(Club, on_delete=models.CASCADE,
> related_name='match_club_local')
> score_visitor = models.IntegerField()
> score_local = models.IntegerField()
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/33e234c0-22d1-43aa-be66-fd2149cd085d%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAOz9w2Fe_cqxKRiBH-NwS%3Dc%3DhQErnB8thc0_kYcmAkWbZsnBXQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Blog sharing

2019-04-24 Thread Makori Breens
Easy, there are several automatic sharing services out there...some free

On Wed, Apr 24, 2019, 10:41 PM Soumen Khatua 
wrote:

> Hi folks,
>
> I want to make on blogger website and I want to share them with social
> media's timeline like Facebook, instragam, twitter etc. But for each post
> generate the embed code is little bit time consuming. So how I can write a
> script where for each post can be redirect to Facebook or twitter Web site.
> If anyone have this type of code please share with me.
>
> Thank you guys.
>
> Soumen
> Regards,
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAPUw6WbjhfjZ6bY8xU4u%3DEBs1AnbDxHJZ-nwPn7m37KZEJX3HQ%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAOz9w2FN%2BrSg_tDNLF2HMZDOaxdgbWUR%2BK%2BvY0tt0aurBmyAmw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Django and AWS backend MENTOR NEEDED

2020-03-14 Thread Makori Breens.
Hey bro,can you help in customizing open source app?

On Saturday, March 14, 2020, Ousseynou Diop  wrote:

> Hello how i can help you ?
> You can reach out to me here @xarala221 https://ousseynoudiop.com
> 
> Le vendredi 13 mars 2020 20:48:59 UTC, Harsh Tibrewal a écrit :
>>
>> Hi, I have been trying to learn django and AWS for backend of my mobile
>> applications. However, all my learnig is currently based on open source
>> youtube and and other forums. There are errors that I get stuck with and
>> need help to resolve them. Please someone be my mentor and guide. This will
>> help me learn it faster and I will be happy to work for you on your
>> projects etc.
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-users/004e81db-1ff5-4e31-aeb5-3f22de91a88c%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAOz9w2GMRx%2BenPbTkLQB4cyhNp2aSBE0gfm7%3DmhpPimN8D_0nw%40mail.gmail.com.


Re: heroku goddaddy domain config

2020-04-01 Thread Makori Breens.
Try pointing through your heroku A records from godaddy.also make sure you
domain is added on heroku panel.it should work

On Wednesday, April 1, 2020, John McClain  wrote:

> Hello,
>
> I am trying to point my GoDaddy hosted domain to my heroku app but am not
> getting any love.
>
> Trying to get the https version configured
>
> Any suggestions?
>
> Thanks
>
> --
> John McClain
>
> Cell: 085-1977-823
> Skype: jmcclain0129
> Email: jmcclain0...@gmail.com
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-users/CAN-hv_rgdai-%2Bp0RCsMvXMtrGC6DMkn%
> 3DphcuQWiUVoD3humTAw%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAOz9w2FcBwXu0qZ7_AGyEauiOfs0Wd-7KhNMs3KXZV9GsTP-Vg%40mail.gmail.com.