chewbacca's recent activity

  1. Comment on Daily Tildes discussion - thoughts on recruiting in ~tildes.official

    chewbacca
    Link
    I'm not sure how popular/unpopular of an opinion this is, but I think Tildes is growing a bit too fast, and I've seen a noticeable decline in the quality of some posts since I first joined.

    I'm not sure how popular/unpopular of an opinion this is, but I think Tildes is growing a bit too fast, and I've seen a noticeable decline in the quality of some posts since I first joined.

    33 votes
  2. Comment on <deleted topic> in ~tildes

    chewbacca
    Link Parent
    Hopefully not too much. I like a lightweight site.

    Hopefully not too much. I like a lightweight site.

    5 votes
  3. Comment on News Desk Updated! in ~comp

    chewbacca
    Link Parent
    Not necessary .config (although this is what it will be in most cases), but whatever $XDG_CONFIG_HOME is set to.

    Not necessary .config (although this is what it will be in most cases), but whatever $XDG_CONFIG_HOME is set to.

    2 votes
  4. Comment on News Desk Updated! in ~comp

    chewbacca
    Link
    Your configuration files should be stored in XDG_CONFIG_HOME/nd_config, in compliance with XDG specifications: https://wiki.archlinux.org/index.php/XDG_Base_Directory_support

    Your configuration files should be stored in XDG_CONFIG_HOME/nd_config, in compliance with XDG specifications: https://wiki.archlinux.org/index.php/XDG_Base_Directory_support

    2 votes
  5. Comment on Source code in ~tildes

    chewbacca
    Link
    When it's ready.

    When it's ready.

    13 votes
  6. Comment on Change my mind: The world will be better without religion in ~talk

    chewbacca
    Link Parent
    Perhaps he meant to say "a" bible, but even then, that'd be very incorrect for plenty of religions.

    Perhaps he meant to say "a" bible, but even then, that'd be very incorrect for plenty of religions.

    11 votes
  7. Comment on Disagree button in ~tildes

    chewbacca
    Link Parent
    Then I agree with @tape that people should just express their disagreement in a reply, so people can explain why they disagree. It encourages discussion.

    Then I agree with @tape that people should just express their disagreement in a reply, so people can explain why they disagree. It encourages discussion.

    7 votes
  8. Comment on Disagree button in ~tildes

    chewbacca
    Link
    People wouldn't use it honestly. They would downvote instead of disagree, because that means it has less visibility.

    People wouldn't use it honestly. They would downvote instead of disagree, because that means it has less visibility.

    8 votes
  9. Comment on The ASUS ROG phone has a 90HZ screen, vapor cooling, and a plethora of gaming accessories in ~games

    chewbacca
    Link
    I much prefer battery life to fancy screens. 1080p 60Hz is fine with me.

    I much prefer battery life to fancy screens. 1080p 60Hz is fine with me.

  10. Comment on Android users: What are your favorite apps on f-droid? in ~tech

    chewbacca
    Link
    Simple Gallery, since stock android doesn't really have a nice lightweight one.

    Simple Gallery, since stock android doesn't really have a nice lightweight one.

    6 votes
  11. Comment on A sobering look at fake online reviews in ~tech

    chewbacca
    Link Parent
    Any politician who truly cares about a stable, free market should act on this immediately.

    Any politician who truly cares about a stable, free market should act on this immediately.

    5 votes
  12. Comment on Option to hide "invited by" in user page in ~tildes

    chewbacca
    Link
    I don't think Tildes should even store who invited you. It's detrimental to privacy because you then have an implicit connection to that person.

    I don't think Tildes should even store who invited you. It's detrimental to privacy because you then have an implicit connection to that person.

    8 votes
  13. Comment on Instagram feed algorithm seems to take into account your WhatsApp correspondence. in ~tech

    chewbacca
    Link
    I finally bit the bullet a few weeks ago and deleted Instagram. Only then did I realize I wasn't missing out on anything by not using Instagram. Life is pretty much the same, if not better.

    I finally bit the bullet a few weeks ago and deleted Instagram. Only then did I realize I wasn't missing out on anything by not using Instagram. Life is pretty much the same, if not better.

    3 votes
  14. Comment on Daily Tildes discussion - more growth, more groups in ~tildes.official

    chewbacca
    Link
    In my opinion, ~books and ~food are a bit niche for the size of this website.

    In my opinion, ~books and ~food are a bit niche for the size of this website.

    3 votes
  15. Comment on My best friend is currently at Walt Disney World (for the third time this year), and got this.. I am literally envious in ~life

  16. Comment on My best friend is currently at Walt Disney World (for the third time this year), and got this.. I am literally envious in ~life

    chewbacca
    Link Parent
    You do. I still have mine.

    You do. I still have mine.

    2 votes
  17. Comment on Today I finally beat being a digital pirate despite having to jump a big hurdle in ~talk

    chewbacca
    Link
    A similar thing happened to me, too. I liked Grand Theft Auto 5 so much that I just had to buy a legitimate copy.

    A similar thing happened to me, too. I liked Grand Theft Auto 5 so much that I just had to buy a legitimate copy.

    1 vote
  18. Comment on Programming Challenge: Make a Caesar cipher! in ~comp

    chewbacca
    Link Parent
    You don't have to use that spacing. You can always call functions normally (i.e., with parenthesis.) The spacing is just syntactic sugar for when you think it'd look nicer. The script behaves...

    You don't have to use that spacing. You can always call functions normally (i.e., with parenthesis.) The spacing is just syntactic sugar for when you think it'd look nicer. The script behaves exactly the same when written as follows:

    caesar = (input, shift) ->
    	coded = ""
    	for index = 1, input\len()
    		char = input\sub(index,index)
    		byte = char\byte()
    		
    		local byteOffset
    		if (byte >= 97 and byte <= 122)
    			byteOffset = 96
    		elseif (byte >= 65 and byte <= 90)
    			byteOffset = 64
    		else
    			coded ..= char
    			continue
    			
    		coded ..= string.char((byte - byteOffset + shift) % 26 + byteOffset)
    	coded
    

    I don't use it professionally, just as a hobby.

  19. Comment on What is your favorite non-American TV show? in ~tv

    chewbacca
    Link
    Does Black Mirror count? It was non-American until it was bought by Netflix.

    Does Black Mirror count? It was non-American until it was bought by Netflix.

    16 votes
  20. Comment on Programming Challenge: Make a Caesar cipher! in ~comp