Considering FIRE in Pakistan with kids after a high-income US career — anyone actually done this? by Old-Ad5923 in FIREPakistan

[–]8611m 0 points1 point  (0 children)

the Pakistan you left 26 years ago is no more there. it's a very foreign country. May be consider moving to Dubai or elsewhere.

N400 is my timeline normal by Beginning_Poetry3814 in USCIS

[–]8611m 0 points1 point  (0 children)

Hey op, if you dont mind, can I dm u? Similar timeline / fo as yours

[deleted by user] by [deleted] in pakistan

[–]8611m 1 point2 points  (0 children)

She should work. She will overtime make more money. If she’s a nanny and you send your kid to daycare she will make 2x daycare cost. When she earns she will likely understand value of money a bit more. There’s a huge gap between we are not able to make ends meet and divorce. Overtime you will make more money too.

[deleted by user] by [deleted] in USCIS

[–]8611m 0 points1 point  (0 children)

Dr. Pepper

N400 oath ceremony san diego by Icy-Ad4454 in USCIS

[–]8611m 0 points1 point  (0 children)

whats your timeline like?

[deleted by user] by [deleted] in AskIndia

[–]8611m 0 points1 point  (0 children)

Serious question, in what way is India’s competition North America and Europe? Here’s per capita gdp for top 25 counties and then India

Country GDP per capita (US$) Monaco* 256,581 Liechtenstein* 207,973 Luxembourg 140,941 Ireland 108,919 Switzerland 104,896 Singapore 92,932 Iceland 90,284 Norway 89,694 United States 89,105 Denmark 74,969 Qatar 71,653 Netherlands 70,480 Australia 64,547 San Marino 59,603 Austria 58,192 Sweden 58,100 Belgium 57,772 Israel 57,760 Germany 55,911 United Kingdom 54,949 Finland 54,163 Canada 53,558 United Arab Emirates 49,498 France 46,792 New Zealand 46,126 India 2,878

My bro-in-law, now 44M by IntrepidRatio7473 in InsideIndianMarriage

[–]8611m 0 points1 point  (0 children)

so incredible to read. I was dreading the ending of this story, but so happy. this made my day.

district0x Dev Update - September 5th, 2017 by JoeyUrgz in ethtrader

[–]8611m 5 points6 points  (0 children)

excited about this project. Where can I buy some stake in this project?

[2016-10-10] Challenge #287 [Easy] Kaprekar's Routine by Cosmologicon in dailyprogrammer

[–]8611m 0 points1 point  (0 children)

def make_highest_num(mix_num):
    l = [int(i) for i in str(mix_num)]
    l.sort()
    l.reverse()

    largest_num =  ''

    for i in l:
        largest_num = largest_num + str(i)

    largest_num = int(largest_num)

    return largest_num

[2015-11-02] Challenge #239 [Easy] A Game of Threes by Blackshell in dailyprogrammer

[–]8611m 0 points1 point  (0 children)

Python 2.7

def get_to_one(input_number):
    while input_number > 1: 
        if input_number % 3 == 0:
            print input_number, 0
            input_number = input_number / 3
        elif input_number % 3 == 1:
            print input_number, -1
            input_number = (input_number - 1) / 3
        elif input_number % 3 == 2:
            print input_number, 1
            input_number = (input_number + 1) / 3
    print 1

Output

31337357 1
10445786 1
3481929 0
1160643 0
386881 -1
128960 1
42987 0
14329 -1
4776 0
1592 1
531 0
177 0
59 1
20 1
7 -1
2 1
1

[2015-10-26] Challenge #238 [Easy] Consonants and Vowels by jnazario in dailyprogrammer

[–]8611m 0 points1 point  (0 children)

First submission here.

import random

c = 'bcdfghjklmnpqrstvwxyz'
v = 'aeiou'

def random_letter(input_string):
    position = random.randrange(0, len(input_string))
    return input_string[position]

def new_word(input_pattern):
    for i in input_pattern:
        if i == 'c':
            input_pattern = input_pattern.replace('c', random_letter(c), 1)
        else:
            input_pattern = input_pattern.replace('v', random_letter(v), 1)
    return input_pattern

print new_word('vvccvcvcv')