• Activity
  • Votes
  • Comments
  • New
  • All activity
  • Showing only topics with the tag "ask". Back to normal view
    1. Working as a contractor in IT

      Does anyone have any experience working as a contractor in the IT field? I have 4 years of experience in the IT industry, all of it as a full time direct hire. I may have an opportunity to work...

      Does anyone have any experience working as a contractor in the IT field? I have 4 years of experience in the IT industry, all of it as a full time direct hire. I may have an opportunity to work for a very large company on a 2 year contract at fairly reasonable salary increase. The most important part to me is that I will be getting some experience off of the service desk as well, which I can use to continue my career going forward.

      My main concern is that I am unfamiliar with contract work. I do know that I get health benefits / 401k / sick days, but I assume there must be a drawback to being a contractor, right? I feel like being a contractor is inherently more unstable than being an actual hire. The position I am being considered for is a 2 year contract, but I worry that the position could simply disappear a few months in and I'd be out of a job. Is this a fair feeling, and is there any way I can gauge how true this might be for my position? Is there something I could discreetly ask in my interview that might help me understand if this is a stable position?

      If anyone has any experience as a contractor, I'd love to hear it.

      4 votes
    2. Virtual tabletop with emphasis on story

      Hey, all. First actual post here! In another post on the site (having trouble finding it at the moment, alpha is alpha), someone mentioned a virtual tabletop that was more asynchronous and focused...

      Hey, all. First actual post here!

      In another post on the site (having trouble finding it at the moment, alpha is alpha), someone mentioned a virtual tabletop that was more asynchronous and focused on storytelling rather than battlemaps like roll20. Does anyone happen to know what it is? I'd definitely like to explore something like that for starting a game for busy folks, and also because my interests in tabletop gaming are definitely more focused on the story rather than combat (I'm a spade / heart rather than a club). Thanks!

      edited to clarify: It was definitely not Tabletop Simulator, it was something relatively new, so not e.g. Maptools.

      10 votes
    3. Introductions | February 2019

      Lots of new people coming in today, and there will be lots in the next couple of days... the last Introductions post was months ago, we're overdue for another one. Drop in, say hi, tell us...

      Lots of new people coming in today, and there will be lots in the next couple of days... the last Introductions post was months ago, we're overdue for another one. Drop in, say hi, tell us whatever you like about yourself, even if it's just how your day is going. On Tildes, ~talk is the casual space, so don't feel pressured to be clever or anything. :P

      Past introduction threads for everyone to catch up: -1- . -2- . -3- . -4- . -5-

      Also in case anyone missed it, there's an intro to tildes post to help bring you up to speed on this place.

      47 votes
    4. Are any other Tilders Red Dead Redemption 2 Junkies like I am?

      (Still don't know if Tilders is a thing, but I'm rolling with it.) Red Dead Redemption 2 has hooked me like no other game has in years, and that's saying something. My collection is massive...

      (Still don't know if Tilders is a thing, but I'm rolling with it.)

      Red Dead Redemption 2 has hooked me like no other game has in years, and that's saying something. My collection is massive between my Steam library, PS4 library, and all the older titles I hoard. But ever since RDR2 came out a few months ago, it's almost all I have played on a daily basis.

      Aside from the fact that the graphics and animations are objectively jaw-drop gorgeous, there is something about this game's pacing, writing, thematic story telling, game-play, and characters that has absolutely captured my imagination, and has become my go-to way to unwind after a long day. Most of this applies to the story mode.

      But I also dove completely head first in the Online Beta for a few months straight. I'm now rank 101, have all I want really for online as it stands, and I loved every minute of my crazy solo-hunting/fishing/griefer oblitherating grind. Taking a break for new content coming on the 26th of this month, and also really need to get some friends to play with... (I have a perma-posse on PS4 named "The Pariah" as well if anyone decides they may be interested)

      I'm a lifelong vegetarian, and somehow, RD2 MADE ME FALL IN LOVE WITH HUNTING IN IT. I could go on, but I'm hoping to get some discussion out of this and not just blabber on and on like I do in real life about it.

      So... please tell me I'm not the only freak on here that loves this game. The Reddit communities for this game are a toxic dumpster fire, and I really want to discuss it with some people who actually like to... discuss.

      11 votes
    5. Using ghoneycutt/pam puppet module

      Hi guys, I'm really stumped and looking for a nudge in the right direction for how to utilise the ghoneycutt/pam module in puppet. Relatively new to this but got what I'd like to think as most the...

      Hi guys,

      I'm really stumped and looking for a nudge in the right direction for how to utilise the ghoneycutt/pam module in puppet. Relatively new to this but got what I'd like to think as most the basics down.

      I've configured a few things using modules such as NTP, SSSD and NSSWITCH but I'm just stuck on how I can use this module and pull info from Hiera into it.

      So, lets start with

      .yaml file:

      
              ### nsswitch.conf authentication configuration
      
              nsswitch::passwd:     'files sss'
      
              nsswitch::shadow:     'files sss'
      
      
      

      And then looking at the nsswitch.pp file:

      
              ### nsswitch.config setup
      
              class profile::linux::base::nsswitch {
      
              # Get heira values
      
                class { 'nsswitch':
      
                  passwd    => [lookup('nsswitch::passwd')],
      
                  shadow    => [lookup('nsswitch::shadow')],
      
      
      

      Simple enough to call the values I want and works how I want, now I'm trying to do the same type of thing for PAM using the ghoneycutt/pam module and there doesn't seem to be much info on how to use it, or it's just not sinking in for me.

      Some of my PAM Heira values:

              pam::pam_auth_lines:
                - '# Managed by Hiera key pam::pam_auth_lines'
                - 'auth        required      pam_env.so'
                - 'auth        sufficient    pam_fprintd.so'
                - 'auth        sufficient    pam_unix.so nullok try_first_pass'
                - 'auth        requisite     pam_succeed_if.so uid >= 500 quiet'
                - 'auth        sufficient    pam_sss.so use_first_pass'
                - 'auth        required      pam_deny.so'
              pam::pam_account_lines:
                - '# Managed by Hiera key pam::pam_account_lines'
                - 'account     required      pam_unix.so'
                - 'account     sufficient    pam_localuser.so'
                - 'account     sufficient    pam_succeed_if.so uid < 500 quiet'
                - 'account     [default=bad success=ok user_unknown=ignore] pam_sss.so'
                - 'account     required      pam_permit.so'
              pam::pam_password_lines:
                - '# Managed by Hiera key pam::pam_password_lines'
                - 'password    requisite     pam_cracklib.so try_first_pass retry=3 type='
                - 'password    sufficient    pam_unix.so sha512 shadow nullok try_first_pass use_authtok'
                - 'password    sufficient    pam_sss.so use_authtok'
                - 'password    required      pam_deny.so'
      

      Some things I've tried:

      1:

              class profile::linux::base::pam {
                # resources
                class { 'pam':
                  password-auth-ac  => [
                    lookup('pam::pam_auth_lines')],
                    lookup('pam::pam_account_lines')],
                    lookup('pam::pam_password_lines')],
                    lookup('pam::pam_session_lines')],
                 }
      
      

      2:

      
      	
      	      passwd  => [
      	
      	      lookup('pam::pam_auth_lines'),
      	
      	      lookup('pam::pam_account_lines'),
      	
      	      lookup('pam::pam_password_lines'),
      	
      	      lookup('pam::pam_session_lines'),
      	
      	      ],
      	
      	  }
      
      
              include ::pam
      
      	class profile::linux::base::pam {
      	
      	  # resources
      	
      	    include ::pam
      
      	         lookup('pam::pam_auth_lines')
      	
      	}
      
      
      

      I've tried a few other ways and can't get it to work as I want it to. Can anyone help?

      Thanks

      4 votes
    6. your ways of staying healthy?

      I've been programmer for past 4 years and signs of sedentary life, not being active and overconsuming certain stuff is showing... what do you do to stay healthy? I plan on signup for a swimming...

      I've been programmer for past 4 years and signs of sedentary life, not being active and overconsuming certain stuff is showing... what do you do to stay healthy?
      I plan on signup for a swimming pool, I started IF but I fail too many times.. Also i'm trying to cut sugar as much as possible but today was a really bad day in this regard...

      my goal is not to get thiner. (i don't consider myself fat where it would be determinal to my health).
      my problem is that I feel like my muscles are always tired (can't explain, like I could be strecthing them all day long and they would feel tired), my right side of body starts hurting everyday after 14:00 (+/- few hours, depends on what I am doing). I have regular lower back pains... :(

      edit2:
      wasn't on computer for the whole day after posting. thanks for all the responses.
      My plan for the following weeks is:
      -Waking at regular hours (6:30)
      -Going to beed at regular hours (22:00 - 22:30)
      -My morning routine will be:
      some water, wimhof breathing, stretching, shower, coffee -> work.
      I'll signup for a swimming pool and try to get my active hours in by going to swimming pool 3-5 times per week.
      Regarding food:
      Intermitting fasting between 12-20, no sugar, only tea,coffee,water.
      Will be cooking my own meal every day / meal prep for the whole week.
      all above should be simple to implement and not too hard to give up. On days when I will not feel energetic I'll take some modafinil in the morning.
      Also I'll be abstaining from alchocol and any drug... also I'll try to smoke weed on weekends only in small quantites.
      all the above shouldn't be hard to do because I allready do some of the things above...
      I try to do wimhof breathing when I can, I cook 2-3 times per week. so the biggest ones will be:
      giving up daily weed, signing up for swimming pool, going to sleep and waking up at regular hours.

      15 votes
    7. What Song Comes to Mind: Anxious

      Hey fellow tilderinos, I thought it'd be interesting to have a semi-regular discussion where we get into those songs, whether a new find or old standby, where we relate them to specific emotions....

      Hey fellow tilderinos,

      I thought it'd be interesting to have a semi-regular discussion where we get into those songs, whether a new find or old standby, where we relate them to specific emotions.

      I'd like to keep it pretty general for now and not put too many rules or regulations on how the discussion unfolds (it is a discussion after all) so we start with something more ambiguous: anxious.

      So tilderinos what songs do you gravitate towards when you feel anxious or what songs do you feel capture the emotion of anxiousness properly to you?

      For instance: Ful Stop by Radiohead really captures what anxiety feels like for me. From the underlying base to the manic cries of Thom Yorke is really is an experience. One or two times I've been on my way home from work and this song pops on and it's almost too much for a drive home after a long shift.

      On the flip side, Lion's Mane by Iron and Wine has the ability to calm me down even at my most anxious. It gives me the idea that it isn't always easy but its relatable and everything will calm down and be okay. It's mostly just really soothing to me for whatever reason.

      Your turn Tilde. What songs do you associate with the word "anxious?"

      10 votes
    8. What habits help your sleep the most?

      For me, it has to be getting up the moment I wake up. No matter if I wake up before the alarm, I still get up. That helps a lot with fighting oversleeping. Not only am I late, but I also feel bad...

      For me, it has to be getting up the moment I wake up. No matter if I wake up before the alarm, I still get up. That helps a lot with fighting oversleeping. Not only am I late, but I also feel bad after spending a lot of time in bed, my head often hurts. So I only figured I better spend less time sleeping than more. And it works, too!

      20 votes
    9. Share your favorite vegetarian meals

      I'm making an effort to cut out meat from my diet and I'd love to hear what everyone's favourite vegetarian meals are. For a long time I have been making pasta with ground beef and I recently...

      I'm making an effort to cut out meat from my diet and I'd love to hear what everyone's favourite vegetarian meals are.

      For a long time I have been making pasta with ground beef and I recently found out that I can just not put the beef in and it tastes even better. The tomato sauce really gets a chance to shine without the beef.

      40 votes
    10. Why aren't smartphones like PCs where you have choice over your OS and get updates directly from OS vendor?

      I can install Linux or Windows or even BSD on my laptop without much hassle, and get the updates directly from the OS vendors. This isn't the case for smartphones. You don't have choice over your...

      I can install Linux or Windows or even BSD on my laptop without much hassle, and get the updates directly from the OS vendors.

      This isn't the case for smartphones. You don't have choice over your OS. You don't even get android updates directly from Google, and have to wait for device manufacturers to release the updates. Why is it so?

      32 votes
    11. Future of personal security and privacy, upcoming trends.

      A few years ago I got into improving my knowledgebase of personal security - theory and tools - but it didn't go much farther than reinforcing everything with 2FA and setting up a password...

      A few years ago I got into improving my knowledgebase of personal security - theory and tools - but it didn't go much farther than reinforcing everything with 2FA and setting up a password manager, plus setting up a VPN and full disk encryption.

      It seems like we're amidst a rising tide of data breaches due to, IMHO, laziness and cheapness on the part of many companies storing personal data.

      So, recently I've embarked on my second journey to improve my own security via habits and software and teaching myself. Privacytools has been a super helpful resource. My main lesson this time is to take ownership/responsibility for my own data. To that end, I have switched to KeyPass with yubikey 2FA (still trying to figure out how to get 2FA with yubi on my android without NFC), moved over to Joplin for my note taking (away from Google and Evernote) and also switched to NextCloud for all of my data storage and synchronization. I'm also de-Googling myself, current due-date is end of March when Inbox is shut down.

      So my question / discussion topic here, is, what are everyone's thoughts on the future of practical personal security and privacy? More decentralization and self-hosting? That's what it looks like to me. Blockchain tech would be cool for public objects like news articles, images etc. but from what I understand that has zero implication for anything personal. The other newish tech is PGP signatures, which I'm still having trouble implementing/finding use for, but surely that will change.

      There is this topic but that ended up just being about encryption which I think is a no-brainer at this point. I'm more so looking for the leading edge trends.

      17 votes
    12. I'm downsizing my digital life. Do you listen to a lot of music? How do you archive it?

      I'm downsizing my digital life. I deleted my account on reddit, on another phpbb forum and i don't have instagram/facebook apps anymore. This subject got me thinking about my music. I grab/buy...

      I'm downsizing my digital life. I deleted my account on reddit, on another phpbb forum and i don't have instagram/facebook apps anymore.

      This subject got me thinking about my music.

      I grab/buy albums in mp3 and i have so many that it's impossible to listen to everything. I don't pay for any service like spotify because i don't like. I prefer to download and/or buy in places like bandcamp where i can download the album.

      I started reading about other codecs like flac and opus. The availability of albums in flac are way less than mp3 and it's a lossless format. If i focus on it i will be forced to downsize my music library.

      The problem is disk space in my smartphone. I'm not an audiophile so i'm not able to hear the difference between flac and 320kpbs mp3. This is where opus enters. This codec gives half the size with better quality than mp3. Soundcloud uses it. A 96kbps opus is the same quality as 320kbps mp3.

      Now that Android can play opus i don't see a reason to keep using mp3. The downside is converting flac files every time i want to put on my phone.

      I could just convert flac to opus and just live with opus everywhere, freeing a lot of space. But i think keeping flac files is better for archiving because it's lossless. If opus for some reason disappears, i'll have a lossy format and would have convert to another one losing more quality.

      How do you deal with music?

      26 votes
    13. What DE and distro do you use and why?

      I'm curious as to what the Tildes Linux/BSD community (and I suppose other answers like Windows or MacOS would be acceptable, though they may feel a bit more dry) use for their desktop. I imagine...

      I'm curious as to what the Tildes Linux/BSD community (and I suppose other answers like Windows or MacOS would be acceptable, though they may feel a bit more dry) use for their desktop. I imagine that Ubuntu and Gnome will dominate the answers as you would expect, but maybe you'll surprise me. Personally, I'm on Arch Linux with i3-gaps. I use Arch because I enjoy the DIY aspect of Linux as well as the aur and slim nature of Arch. I'd also be lying if I didn't say I use it partially just because I like the "pacman" pun.

      As for i3-gaps, I think that WMs are generally more customizable and good for 'ricing', plus they go with my workflow and are convenient in that they load faster and the likes, though I have to admit I have only ever used i3 (I've been considering trying out bspwm). So, what do you guys use? You can also of course share more information such as your shell or DM if you wanted, though I highly doubt anyone cares what display manager you us or anything.

      24 votes
    14. What are the most influential books to you?

      I'm young, I'm looking to understand more ways of looking at the world. What books do you recommend people to read that had profound impacts on your world outlook, character, or anything else like...

      I'm young, I'm looking to understand more ways of looking at the world. What books do you recommend people to read that had profound impacts on your world outlook, character, or anything else like that. Future me says thank you.

      Edit List (Books listed so far by Title):
      "Accelerando" by Charles Stross
      "A Clockwork Orange" by Anthony Burgess
      "A People's History of the United States" by Howard Zinn
      "A Short History of Nearly Everything" by Bill Bryson
      "Bardo Thödol" by Padmasambhava
      "Brave New World" by Huxley
      "Book of the Dead" by ?
      "Cain" by José Saramago
      "Capital vol.1" by Karl Marx
      "Code: The Hidden Language of Computer Hardware and Software" by Charles Petzold
      "Collected Fictions" by Jorge Luis Borges
      "Crime and Punishment" by Dostoyevsky
      "Die Grundlage der Allgemeinen Relativitätstheorie" by Einstein
      "Divine Comedy" by Dante
      "Do Androids Dream of Electric Sheep?" by Philip K. Dick
      "Don Quixote" by Cervantes
      "Daughters of the Dragons" by William Andrews
      "Ender's Game" by Orson Scott Card
      "Ethics" by Spinoza
      "Fables" by Aesop
      "Fahrenheit 451" by Bradbury
      "Faust" by Goethe
      "Flowers for Algernon" By Daniel Keyes
      "Fragile Things" by Neil Gaiman
      "God and the State" by Mikhail Bakunin
      "Gödel, Escher, Bach: An Eternal Golden Braid" by Douglas R. Hofstadter
      "Good Omens" by Neil Gaiman and Terry Pratchett
      "Great Books" by David Denby
      "Harry Potter" by J.K. Rowling
      "Hitchhiker's Guide to the Galaxy" by Douglas Adams
      "History of Violence" By Édouard Louis
      "Homo Deus" by Yuval Noah Harari
      "How to Win Friends and Influence People" by Dale Carnegie
      "Illiad" by Homer
      "Ishmael" by Daniel Quinn
      "Kafka on the Shore" by Haruki Murakami
      "Le contrat social" by Rousseau
      "Les fleurs du mal" by Baudelaire
      "Leviathan" by Hobbes
      "Maus" by Art Spiegelman
      "Naked Economics" by Charles Wheelan
      "Name of the Wind" by Patrick Rothfuss
      "Neuromancer" by William Gibson
      "Odyssey" Homer
      "On the Origin of Species" by Darwin
      "Paid Attention" by Faris Yakob
      "Personality-Shaping Through Positive Disintegration Processes" by Kazimierz Dąbrowski
      "Player Piano" by Vonnegut
      "Poetics" by Aristotle
      "Republic" by Plato
      "Sapiens: A Brief History of Humankind" by Yuval Noah Harari
      "Shogun" by James Clavell
      "Slaughterhouse-Five" by Kurt Vonnegut
      "Tao Te Ching" by Lao Tzu
      "Tales of Power" by Carlos Castaneda
      "Theory and Reality: An Introduction to the Philosophy of Science" by Peter Godfrey-Smith
      "The Ancestor's Tale" by Richard Dawkins
      "The Bible" by :contentious_topic_here:
      "The End of Eddy" By Édouard Louis
      "The Goldfinch" by Donna Tartt
      "The Handmaid's Tale" by Margaret Atwood
      "The Lucifer Effect" by Philip Zimbardo
      "The Origin of Consciousness in the Breakdown of the Bicameral Mind" by Julian Jaynes
      "The Prince" by Machiavelli
      "The Selfish Gene" by Richard Dawkins
      "The Singularity Is Near" by Ray Kurzweill
      "The Stranger" by Camus
      "The Tao of Pooh" by Benjamin Hoff
      "The Three-Body Problem Trilogy" by Cixin Liu
      "Tractatus Logico-Philosophicus" by Wittgenstein
      "Traité d'atheologie" by Onfray
      "Treatise of the Three Imposters" by ?
      "Where Mathematics Comes From" by Lakoff and Nunez
      "Where I'm Calling From" by Raymond Carver
      "1984" by George Orwell

      20 votes
    15. Gardeners in da house?

      I've enjoyed the challenges of gardening in zone 5 -6 and zone 10 - 11, and am wondering about others' experience. Climate change, with migrating pests/diseases and more erratic weather, are...

      I've enjoyed the challenges of gardening in zone 5 -6 and zone 10 - 11, and am wondering about others' experience.

      Climate change, with migrating pests/diseases and more erratic weather, are definitely noticeable trends.

      While it's interesting to grow ornamentals and food crops that wouldn't ordinarily be available, it's also disturbing to find falling yields and utter collapses of formerly successful "easy" plants like basil and temperate climate tomato varieties.

      There are limits on how much can be accomplished with purely "organic" controls - I've had to experiment with soil ecology (MycoStop for fungal infections, etc.). Allergenic plants are an increasing problem. There are brand new animal pests where I live as well - iguanas, pythons, and other hot-climate reptiles.

      I'm curious about others' gardening results, and suggestions for improving adaptability.

      12 votes
    16. How do you get your news?

      With so many news organizations spreading false information and relying on clickbaity titles to get views, it is getting harder to find quality journalism. So what are some of the resources which...

      With so many news organizations spreading false information and relying on clickbaity titles to get views, it is getting harder to find quality journalism.
      So what are some of the resources which you use to get your news without having to wade through a sea of pointless headlines.

      22 votes
    17. What are some good Spanish books?

      I'm learning Spanish and feel like reading is really helping me get to the next level. I've read 1984 and one part of Harry Potter in Spanish but now I'm thinking of trying some original,...

      I'm learning Spanish and feel like reading is really helping me get to the next level. I've read 1984 and one part of Harry Potter in Spanish but now I'm thinking of trying some original, non-translated literature.

      What Spanish-language books would you recommend (that are not too difficult to read)?

      6 votes
    18. Does the Oracle v. Google court case mean that Wine/DXVK is illegal?

      I've been thinking about this but based on the current rulings in the Oracle v. Google court case, it would seem that APIs are indeed copyrightable. This would mean that Wine would be infringing...

      I've been thinking about this but based on the current rulings in the Oracle v. Google court case, it would seem that APIs are indeed copyrightable.

      This would mean that Wine would be infringing on Microsoft's copyright of the Windows API and system calls. Of course it wouldn't matter until Microsoft actually does something about it. But as Wine gets better and better and its market share higher and higher, I worry that Microsoft might set their sights on Wine now that they have the law on their side.

      15 votes
    19. What have you been watching/reading this week?

      I'm gonna move this to Fridays from now on, it's easier for me to remember to post. Anyway, what have you been watching/reading this week? Feel free to talk about something you saw that was cool,...

      I'm gonna move this to Fridays from now on, it's easier for me to remember to post.

      Anyway, what have you been watching/reading this week?

      Feel free to talk about something you saw that was cool, something that was bad, ask for recommendations, or anything else you can think of.

      If you want to, feel free to find the thing you're talking about and link to its Anilist, MAL, or any other anime/manga database you use!

      10 votes
    20. Suggestions for manga/anime focused on hand-to-hand combat primarily?

      Recently I've started getting really into manga/anime that focuses pretty heavily on brawling. I binged Kengan Asura, which primarily focuses on a fighter named Ohma and his coach as they fight in...

      Recently I've started getting really into manga/anime that focuses pretty heavily on brawling.

      I binged Kengan Asura, which primarily focuses on a fighter named Ohma and his coach as they fight in an underground fighting ring.

      Baki was very similar, but probably a bit more silly, and a bit more focused on the conflict with his father.

      Part of my problem is I don't really know what to look for after this. Does anyone have any suggestions for either manga or anime that is focused on fighters / fighting like Kengan or Baki?

      9 votes
    21. What tea are yall drinking today?

      For my daily tea-drinkers: What are you drinking today? Where'd you get it? How would you rate it? For my non-tea drinkers: Feel free to ask any questions you might have about the most widely...

      For my daily tea-drinkers: What are you drinking today? Where'd you get it? How would you rate it?

      For my non-tea drinkers: Feel free to ask any questions you might have about the most widely consumed beverage in the world (next to water). Share a time you had a good experience or a bad experience.

      35 votes
    22. Synthwave

      In a bit of a synthwave haze at the moment and craving some more, does anyone have any good artists? Current list: Fm84 Gunship Freeweights September87 Timecop1983 Dance with the dead Lebrock...

      In a bit of a synthwave haze at the moment and craving some more, does anyone have any good artists?

      Current list:

      Fm84
      Gunship
      Freeweights
      September87
      Timecop1983
      Dance with the dead
      Lebrock
      Scandroid
      Droid Bishop
      Turbo Knight
      Neon nox
      GOST
      Pertubator
      0edit
      Dav Dralleon
      Dynatron
      Power Glove
      Lazerhawk
      Magic Sword
      Starcadian

      14 votes
    23. Home/remote workers, any advice or tips?

      I've recently accepted a new developer role for a small tech company where everyone works remotely. I've had experience of working from home as a freelancer in the past and slightly more recently...

      I've recently accepted a new developer role for a small tech company where everyone works remotely. I've had experience of working from home as a freelancer in the past and slightly more recently working for a distributed company, although there I was working in a small shared office with one other colleague.

      I wondered if anyone has any tips or advice on how best to remain productive as well as avoid distractions and try to keep a work/life balance?

      I do intend to eventually find a co-working space but immediately I plan to work from home for at least the first few months.

      Thanks!

      16 votes
    24. Where do you get your music from?

      What is your preferred source for music? Streaming, CD, vinyl, web dl, something else? My preferred source is web flac usually from bandcamp but I sometimes buy cds and copy them to my computer. I...

      What is your preferred source for music? Streaming, CD, vinyl, web dl, something else?

      My preferred source is web flac usually from bandcamp but I sometimes buy cds and copy them to my computer. I currently don't have a vinyl player so stuff that was only released on vinyl I have to find someone else who has copied it.

      I tried streaming for a while but didn't like it. There was a bunch of older stuff missing and I kept getting told things were not available in my country as well as some songs only having a shitty remaster available.

      14 votes
    25. Is filtering working properly?

      Are we able to filter things like music and anime by simply adding those keywords to the filter? I tried adding the tilde in front and that didn’t work either. Is this operator error or perhaps a...

      Are we able to filter things like music and anime by simply adding those keywords to the filter?

      I tried adding the tilde in front and that didn’t work either.

      Is this operator error or perhaps a good place for me to learn some pyramid and make a PR?

      11 votes
    26. Should we limit meta-discussion in non-~tildes posts as we near public visibility?

      I've seen a number of topics that have had unrelated comments regarding Tildes as a whole and the direction in which we'd like to steer it toward. While I realize much of these sidebar...

      I've seen a number of topics that have had unrelated comments regarding Tildes as a whole and the direction in which we'd like to steer it toward. While I realize much of these sidebar conversations have been occurring naturally and very frequently in well-nested comments, I wonder if it isn't going to become distracting to some going forward.

      On one hand, I have enjoyed passively gaining insight into the vision of Tildes. On the other, I can see how we might want to start setting examples on the type of organization and behavior we'd want from users as the site grows. If new users who are joining after Tildes goes public see a regular occurrence of off-topic conversation, they might fall into bad habits and it may take root and grow.

      What are your thoughts? Maybe start creating new topics in ~tildes and tag users along with quotes from outside threads so that there's still a reference point to start discussion from?

      10 votes
    27. How do you unwind?

      We all have stressful days and we all wish we didn't. What is your go-to strategy for calming yourself down after an all too eventful day?

      32 votes
    28. What have you been watching/reading this week? (Anime/Manga)

      Picking these threads up from @Cleb after talking to her about it :) What have you been watching and reading this week? You don't need to give us a whole essay if you don't want to, but please...

      Picking these threads up from @Cleb after talking to her about it :)

      What have you been watching and reading this week? You don't need to give us a whole essay if you don't want to, but please write something! Feel free to talk about something you saw that was cool, something that was bad, ask for recommendations, or anything else you can think of.

      If you want to, feel free to find the thing you're talking about and link to its pages on Anilist, MAL, or any other database you use!

      20 votes
    29. What are some good short novels?

      I've read a few novels, I think an excellent short novel is Elevation by Stephen King. It's not what you'd expect from a Stephen King novel (no horror elements), but it's a great read. I can't say...

      I've read a few novels, I think an excellent short novel is Elevation by Stephen King. It's not what you'd expect from a Stephen King novel (no horror elements), but it's a great read. I can't say too much without spoiling it, but here's the blurb:

      The latest from legendary master storyteller Stephen King, a riveting, extraordinarily eerie, and moving story about a man whose mysterious affliction brings a small town together—a timely, upbeat tale about finding common ground despite deep-rooted differences.

      It starts off a little slow, but give it a little bit of time. It's readable in an afternoon, I think I spent 5 or so hours reading it.

      7 votes
    30. What non-fiction books have had lasting explanatory power?

      I was telling someone about a psychology book I'm reading at the moment. Intending to read it themselves they messaged me later to ask for the title. And I felt a bit unsettled at sharing it!...

      I was telling someone about a psychology book I'm reading at the moment. Intending to read it themselves they messaged me later to ask for the title. And I felt a bit unsettled at sharing it!

      Whilst it's interesting and I'm enjoying it, I doubt I'll remember its lessons or claims in a year or two. Which got me thinking about books that I read years ago which still help me understand the world.

      So I thought I'd make a post asking which books other users still found helpful year(s) later.

      tldr; share books that are:

      • Non-fiction (or at least serious fiction).
      • First read over a year ago.
      • Have been helpful to you multiple times since.
      18 votes
    31. Why are so many websites (and CDNs) IPv4 only?

      One of the people in an IRC channel I frequent pointed out a site I've been building uses CDNs that are IPv4 only. I never realized this, I just assumed every major provider had deployed IPv6. Oh,...

      One of the people in an IRC channel I frequent pointed out a site I've been building uses CDNs that are IPv4 only. I never realized this, I just assumed every major provider had deployed IPv6. Oh, how very wrong I was. A quick check of some major (to me) sites shows a shocking lack of IPv6, including:

      • Bootstrap (stackpath.bootstrapcdn.com)
      • Discord
      • FontAwesome (use.fontawesome.com)
      • GitHub/GitHub pages
      • GitLab/GitLab pages (self-hosted supports IPv6, but officially hosted GitLab only supports IPv4 due to Azure limitations)
      • jQuery, IF you use code.jquery.com (some tutorials use ajax.googleapis.com, which does have IPv6, but an unfortunate amount use code.jquery.com, including the getting started page for Bootstrap)
      • Parts of Amazon/AWS (Amazon is IPv4 only, some of AWS is IPv4 only, including S3)
      • Reddit
      • Stack Overflow/Exchange/etc
      • Twitter

      An honorable mention goes to Angular's websites because the websites themselves are IPv4 only but the libraries are hosted on ajax.googleapis.com, which is IPv6 accessible. I checked npm, PyPI, RubyGems, and Tildes, and they all support IPv6.

      I can understand why companies like Amazon have partial support (upgrading can be a PITA if you're a cloud service provider with uptime requirements), but then you have services like Discord (launched in 2015 with no obligation to maintain service) that only support IPv4. At the very least, I'd expect CDNs referenced by thousands (if not millions) of webpages to be on IPv6 by now.

      Am I missing something? CDNs are pretty static, it's just a matter of choosing one that supports IPv6, you don't even need to update your application if you just change the DNS entries.

      13 votes
    32. What have you been listening to this week?

      What have you been listening to this week? You don't need to do a 6000 word review if you don't want to, but please write something! If you've just picked up some music, please update on that as...

      What have you been listening to this week? You don't need to do a 6000 word review if you don't want to, but please write something! If you've just picked up some music, please update on that as well, we'd love to see your hauls :)

      Feel free to give recs or discuss anything about each others' listening habits.

      You can make a chart if you use last.fm:

      http://www.tapmusic.net/lastfm/

      Remember that linking directly to your image will update with your future listening, make sure to reupload to somewhere like imgur if you'd like it to remain what you have at the time of posting.

      17 votes
    33. What are you reading these days? #12

      What are you reading currently? Fiction or non-fiction, any genre, any language! Tell us what you're reading, and talk a bit about it. Edit 2019-01-16: Add the link for Week #11 below. Past weeks:...

      What are you reading currently? Fiction or non-fiction, any genre, any language! Tell us what you're reading, and talk a bit about it.

      Edit 2019-01-16: Add the link for Week #11 below.

      Past weeks: Week #1 · Week #2 · Week #3 · Week #4 · Week #5 · Week #6 · Week #7 · Week #8 · Week #9 · Week #10 · Week #11

      11 votes
    34. Wood desktop finishing question

      I built a basic panel out of some boards left over from another project. I'd like to use this as a desktop surface just laid on top of some filing cabinets. I'm wondering what the best way to...

      I built a basic panel out of some boards left over from another project. I'd like to use this as a desktop surface just laid on top of some filing cabinets. I'm wondering what the best way to finish this would be? I don't think I want to paint and I'm ok with some light staining but I don't have any experience with sealing or whatever I would want to do to help preserve the surface. It would have typical office items on it (keyboard, mouse, monitor, paper, pens, etc.).

      9 votes
    35. What have you been watching/reading this week? (Anime/Manga)

      Feel free to talk about something you saw that was cool, something that was bad, ask for recommendations, or anything else you can think of. If you want to, feel free to find the thing you're...

      Feel free to talk about something you saw that was cool, something that was bad, ask for recommendations, or anything else you can think of.

      If you want to, feel free to find the thing you're talking about and link to its Anilist, MAL, or any other anime/manga database you use!

      11 votes
    36. Isn't the number of groups too restrictive?

      I know that tildes is still a small community (sub 9k) but I find the number of groups too restrictive. I am mainly a redditor so I am used to subscribing to many subs, most of which are not...

      I know that tildes is still a small community (sub 9k) but I find the number of groups too restrictive. I am mainly a redditor so I am used to subscribing to many subs, most of which are not "main" subs.

      For example, shouldn't there be a group for "countries", so one could post in countries.germany or countries.finland in the future? Also, how come there is no videos? I can understand the reasoning that a video is (almost) always about a given subject but where should I post, for example, a video of "ASMR"? Should it go to health? Should chess posts go to "games" or "sports"?

      I find this idea of groups a bit too comfusing, perhaps because I am used to subreddits..

      Maybe it is not a bad idea to create some kind of map, with an handy link in the site, so one knows in which group one should post a certain something.

      27 votes