• Activity
  • Votes
  • Comments
  • New
  • All activity
    1. Scythe tips and tricks

      Hello! I'm an avid fan of the board game Scythe and I've played quite a few games now. While everything seems very well balanced and thought out, no one in my group has ever managed a win using...

      Hello! I'm an avid fan of the board game Scythe and I've played quite a few games now. While everything seems very well balanced and thought out, no one in my group has ever managed a win using the Saxony faction. Some have come close, but never enough to beat Rusivet and Crimea (the usual victors). If there are some other Scythe fans here, what are your tips and tricks besides focusing on combat?

      Some info on our general playstyle:

      • Most people go for all their enlist actions
      • Factions always have a star or two from combat in the end
      • Everyone wants their factory card, all the time

      Thanks!

      EDIT: I'm going to play a game this evening, will report back on what went on.
      EDIT #2: It turns out Saxony wasn't played becuase we used the expansion factions. Coupled with airships, I don't think I can explain it all!

      6 votes
    2. What do you look forward to in your week?

      This can be anything, I'll accept "relaxing in front of the TV with a drink" as an answer. Personally I've grown fond of Wednesdays, because that's when I sometimes get me a sandwich from my...

      This can be anything, I'll accept "relaxing in front of the TV with a drink" as an answer.

      Personally I've grown fond of Wednesdays, because that's when I sometimes get me a sandwich from my favorite place, and Sundays because that's when I often go to play board-games with some old friends.

      Do you have something you look forward to in your week? Or maybe some advice for people who are looking for something to look forward to?

      26 votes
    3. An informal look at the concept of reduction (alternatively: problem-solving for beginners).

      Preface One of the most common questions I see from prospective programmers and computer scientists is "where should I start?". My answer to that is a pretty consistent one: learn how to solve...

      Preface

      One of the most common questions I see from prospective programmers and computer scientists is "where should I start?". My answer to that is a pretty consistent one: learn how to solve problems effectively. But that's vague and not really all that helpful, so I figured that I should actually tackle this in a little more depth by touching on something more specific.

      Specifically, I want to touch on the subject of how to think about complex problems.


      The Rationale Behind Learning

      Before we can better understand how to effectively solve problems, it's important to consider how it is that we learn. With any subject, the standard approach is to begin with the bare basics. For programming, that's writing a Hello, World! program in the new language you're working with. For foreign languages, you learn basic common words and sentence structure. For math, you learn your basic arithmetic operations like addition and multiplication.

      From there, we add on more additional complexity and string together everything we've learned. For a foreign language, this looks like learning about new words, stringing them together in your own sentences, then learning about verb tenses and throwing them into the mix as well. With math, you take your normal number crunching and suddenly throw the concept of order of operations into the mix, then variables and how to solve for them.

      As a general rule, we first get comfortable with solving a simple problem and gradually build up toward solving increasingly more difficult ones.


      The Missing Piece

      Odds are that we've all sat in a math class at one point, and when the teacher asked a student how to solve a problem, they received an immediate "I don't know". You may or may not have been that kid yourself. I have no intention of shaming the kids who struggled (or those who still struggle) with math. Rather, I want to point to what I believe is the fundamental cause of that mental barrier that has frustrated students for generations.

      Learning is not simply a matter of adding more complexity to problems. A key part of learning, and one that I don't recall ever having emphasized during my grade school studies, is your ability to break problems down into the steps that you know how to complete and combine the different, simpler skills you've already learned to arrive at a solution. Instead, you were expected to solve many of those complex problems and learn through practice, or through pure rote memorization.

      What determined whether or not you could solve those problems was then a question of whether or not you could intuit or memorize how to solve those specific problems, and brand new problems that still made use of the same skill sets but had completely different forms would throw a wrench in that. Those who could solve any of those problems--those who, I would argue, were often mistakenly referred to as "geniuses" or "talented"--were really just those who knew how to break a problem down into simpler pieces.

      This isn't a failing on the students, but on the way they've been taught to think about problems.


      Reducing Problems

      What does it mean to "break down" a problem, though? The few times I recall a teacher ever touching on the subject, "break down the problem" and "use the skills you've already learned" were the kinds of pieces of advice passed around, completely vague and devoid of meaning for anyone who didn't already understand. How can we better grasp this important step?

      There's a term in complexity theory known as "reduction". The general idea is that if you have problems A and B, where you already know how to solve B, then if you can transform problem A so that it looks like problem B, then you can use your solution for B to solve at least part of A.

      In other words, finding the solution to a more complex problem is just a matter of finding a way to make it look like a problem you already know how to solve.

      The advice to "break down" a problem really means to perform this process of "reduction", of transforming your more complicated problem A into your simpler, known problem B.


      In Practice

      We're still discussing a vague concept, but now that we have more specific language to work with, we can more easily see how it works in practice (a reduction of its own!).

      Let's consider a conceptually simple problem: grabbing the kth largest (or smallest) item from a list. How do we solve this problem? Probably the most obvious and straightforward answer is to sort the list then grab the kth item, right?

      Notice that we gave two high-level descriptions of the steps we need to solve this problem: sorting, then grabbing the appropriate item. We can therefore then state that the problem of "grab the kth largest/smallest item from a list" can be reduced to the two problems "sort a list" and "grab the kth item from a list".

      Now, let's say we're given the problem "take this list of competitor times from the race and tell me what the top 10 race times were". What do we know about this problem? We know that we're being given a list, and we know that we need the 10 smallest items from that list. We also know that "10 smallest items" is just shorthand for "the 1st smallest item, the 2nd smallest item, ..., and the 10th smallest item". We can therefore reduce this problem to the previous one we solved by transforming it into "grab the kth smallest item from a list" and "repeat for values 1-10 for k".


      Practical Advice

      In the end, my explanation may not have helped much at all in actually grasping the concept of reduction. My intent isn't necessarily to help you understand it immediately, but to provide you a framework for a way of thinking. Even if you do grasp the general concept, you may even wonder how you're supposed to recognize these kinds of reductions out in the wild in non-academic environments. The answer, perhaps annoying, is practice. Much like an appraiser can only become good at discerning details through experience, a programmer or computer scientist can only recognize these patterns through repeated exposure.

      In general, if I had to narrow it down to a small list of tips for improving your problem solving skills, this would be it:

      • Work on grasping the concept of reduction itself.
      • Expose yourself to lots of new problems.
      • Don't shy away from difficult problems. Reduce them as much as you can and solve the pieces you're able to. Try to research the pieces you're struggling with. Return to the problem later when you have more experience if you have to, but take a crack at it first.
      • Don't accept "I don't know" as an answer in itself. Ask yourself why you don't how to solve a problem. Narrow down which pieces you're able to solve and which pieces you're not.
      • Just solve problems. Any problems. Easy ones, hard ones, and anything in between. Solving problems is a skill, and practicing it will make you better at solving problems in general, and better at recognizing the simpler problems inside of more complicated ones.
      • Don't just come up with a solution to a problem. Ensure that you understand how each piece of it works and why it works. Copy-pasting from StackOverflow can be a valid tool at your disposal, but doing so mindlessly isn't nearly as valuable as reviewing the solution, being able to determine whether or not it works before ever executing the code, and being able to discard anything unnecessary from it.

      Final Thoughts

      I'm not an authoritative voice on this subject. I'm not an educator. More than anything, I'm a life-long student and an enthusiast. There's seldom a day when I don't have to research something new in order to solve a problem I'm not familiar with, or remind myself the syntax for a function I've used several times in the past. I don't know anything about teaching others, but I do know plenty about learning, and if there's anything that has stood out to me over the years, it's the fact that I find it easier to learn about something or to solve a problem if I can transform the concept into something that's easier for me to grasp.

      Moreover, I'm human and thus prone to mistakes. Call me out on them if you notice them. I'll take any of my mistakes as learning opportunities :)

      11 votes
    4. How to deal with a friend gone cynical?

      I have a friend at the office, who is very dear to me. I don't have many friends, and I've known this person for over five years. But recently they've become increasingly cynical and sometimes...

      I have a friend at the office, who is very dear to me. I don't have many friends, and I've known this person for over five years. But recently they've become increasingly cynical and sometimes outright toxic. Saying things like "our job doesn't matter", "nobody cares", and "you should stop trying to improve things". The company we work for had incompetent managers for the last couple of years, who were ignoring issues and basically making it up as they go. The management was basically purged, and now there are a lot of new people. So I guess it is my friend's way to cope with the situation. But it feels unhealthy, because recently they started lashing out on people, including new people who have done nothing wrong yet.

      I am honestly kind of afraid to bring this issue up to them, because (a) I am afraid to lose them and (b) they will probably respond with something along the lines of "you don't know what I've been through", or "eff off", or plain old silence. I feel like they are hurting, but I don't know how to help.

      What should I do? Should I do anything at all?

      10 votes
    5. Culinary Theory?

      Is there a "theory of cooking"? I'm interested in learning to cook (but could not spend much time learning it unfortunately), but I don't like the general ad-hoc and very subjective nature of...

      Is there a "theory of cooking"? I'm interested in learning to cook (but could not spend much time learning it unfortunately), but I don't like the general ad-hoc and very subjective nature of recipes. Also, information is very disorganised, it's dispersed in many resources, most hardly accessible. I always thought that there should be a general set of theories when preparing food, like what sort of ingredient does what, how things react when mixed together at different times, and what processes like heating, freezing or kneading do to food. Indeed generally it's possible to find detailed and nearly objective information, sometimes even physical and/or chemical explanations to certain stuff, but then it's always ad-hoc, i.e. related to the particular food item or recipe I'm looking for. I've been searching for a resource that aims to be a comprehensive and scientific (as much as possible) intro to cooking that gives the sort of culinary theory I want, but I've been unable to find such a thing so far. Does anybody here know of such a resource?

      16 votes
    6. How long does it take you to read an academic journal article?

      I feel like I'm a bit slow, though I'm gaining practice. I cannot read two moderate or long-ish papers in one day. I guess part of that reason is that the field I'm mostly reading in is a field...

      I feel like I'm a bit slow, though I'm gaining practice. I cannot read two moderate or long-ish papers in one day. I guess part of that reason is that the field I'm mostly reading in is a field I'm new to, though in accordance with that what I'm reading often is kindo-of introductory material (linguistics, and Linguistics Handbook ed. Aronoff, 2017). A chapter is around the size of an average paper (around 25-30 pages). Another factor may be that I'm not a native speaker of English, but I think I do have a quite decent command of it especially when reading, enough to read through ~60 A4 pages in five-six hours, but I just can't do it.

      So I wonder if I'm too slow or maybe exaggerating it a bit? How long does it take for you, and how many can you read, without skimming/skipping, in a "day"?

      11 votes
    7. How do you prevent burnout?

      Heyo guys, Long story short, I'm a college student in his final semester right now. I've gone through many different phases of my college life between not being sure of my future, wanting to take...

      Heyo guys,

      Long story short, I'm a college student in his final semester right now. I've gone through many different phases of my college life between not being sure of my future, wanting to take advantage of my last point in life of youth, trying to grow up and learn to be a competent adult at home, trying to grow up and learn to be a competent adult in the workforce, and everything else in between. Right now, I'm coming off of a summer where I took 9 credits and managed to get As in all three classes while also feeling very accomplished that I felt I've taken many valuable skills and lessons away from those classes.

      At the moment, I am taking 18 credits for this Fall semester, sitting at six classes and I'm finally happy that I'm able to be taking a lot of productive and worthwhile classes in my major. I love all of my classes and professors so far and I'm very eager to learn and continue developing myself to be the person I want to be. However, my concern is the heavy burnout that I feel is imminent within a few weeks to a month, as I'm already beginning to feel it come on within the last two weeks.

      How do I deal with this or prevent it? How do you personally handle situations where you uphold a lot of responsibility to yourself and you want to keep in top form? Personal stories, experiences, advice, and all of the above are welcome.

      24 votes
    8. Linux gaming: GOG vs. Steam?

      I started prioritizing GOG a couple of years ago, buying most of my games there because I love their DRM-free stance. I have an entire backup of my GOG gaming library on my hard drive, so even if...

      I started prioritizing GOG a couple of years ago, buying most of my games there because I love their DRM-free stance. I have an entire backup of my GOG gaming library on my hard drive, so even if something happened to my account I'd still have everything I've bought from them over the years. On the other hand, their Linux support isn't great. For example, GOG Galaxy, their all-in-one frontend, is still not available on Linux despite being out for other platforms for years.

      Steam, on the other hand, is DRM-agnostic, and there isn't an easy way to separate my games from the service. I worry about what would happen if I somehow lost access to my account. When a game is available on Steam and GOG, I opt for GOG each time because I'd rather have a DRM-free copy that I can control. Nevertheless, Valve has done a lot to support Linux gaming, especially with their recent debut of SteamPlay and Proton. Right now, Steam gives a much better user experience to Linux users and supporting Valve helps move Linux gaming forward. It also helps that their selection is much greater than GOG's, (though that's less of a pull for me as I do appreciate GOG's heavier-handed curation).

      I'm torn because I want a little of column A and a little of column B. I keep hoping that GOG will eventually catch up with Steam with regards to Linux support, but that's already been the dream for a while (and a lot of people are done holding their breath). At this point I'm wondering whether I should just hop on the SteamPlay train and start putting my eggs back in that basket. Anyone have any thoughts? Who do you choose to buy from, and why?

      31 votes
    9. Advice for those who want a computer science career?

      Those that have pursued a career that deals with any type of computer science, what advice would you give to students before they get a job in it? What do you do on a daily basis? What would you...

      Those that have pursued a career that deals with any type of computer science, what advice would you give to students before they get a job in it? What do you do on a daily basis? What would you have wanted to know before you started?

      17 votes
    10. Anything to vent, ~talk?

      Hello, fellow Tildrestians. Having just joined, I found that Tildes was a substantial improvement from the standard Reddit fare. Hooray for substantial conversation! I’ve always been a long time...

      Hello, fellow Tildrestians. Having just joined, I found that Tildes was a substantial improvement from the standard Reddit fare. Hooray for substantial conversation!

      I’ve always been a long time lurker, and I’ve never been confident enough to start threads. So, ~talk, this is a vent thread for your problems and your worries. Not for the fact that you stubbed your toe, but possibly stuff that might worry you. If this doesn’t go well, then I will probably remove this thread in emberassment.

      But if it does, then perhaps we can all propose solutions to others problems. Perhaps we can comfort each other with advice and tips. It could be a stupid idea, which, if it is, let me know, but it could be a chance to actually not be the circlejerking redditors some of us once were.

      And if this in the wrong group, also do let me know.

      25 votes
    11. Does the Expansion Pass for Xenoblade Chronicles 2 improve or break it?

      I just got Xenoblade Chronicles 2 and am wondering if it makes sense to get the Expension Pass already from the start or rather wait before I finish the game. What I am concerned about is that it...

      I just got Xenoblade Chronicles 2 and am wondering if it makes sense to get the Expension Pass already from the start or rather wait before I finish the game.

      What I am concerned about is that it makes the game too easy or that it adds some unneeded items that stick out of the original story/feeling too much.

      Is that the case, or is it rather just ironing out some small nit-picks and the DLCs make it better?

      7 votes
    12. Coding Noob Needs Help/Guidance on Small Project

      Hi, There's a certain site which hosts media files and has a player that depends on a lot of third-party resources to play, while browsers have native support for those file types. Those 3rd-party...

      Hi,

      There's a certain site which hosts media files and has a player that depends on a lot of third-party resources to play, while browsers have native support for those file types. Those 3rd-party resources are often blocked by ad blockers and I have no desire to white-list them. I would like to extract the direct link to the media file and make it playable on my custom web page.

      The link to the media file is present in the page source of each page, always on the same line. It's not anchored in HTML but present in the JavaScript for the player, like so:

          $(document).ready(function(){
            $("#jquery_jplayer_1").jPlayer({
              ready: function () {
                $(this).jPlayer("setMedia", {
                  [ext]: "https://[domain]/[filename.ext]"
                });
              },
      

      In this example it's on line #5. [ext] = the file extension.

      I want to build the following:

      • A web page with a form with a single input field meant to receive links from that specific file host
      • [Something] that extracts the file link from the source of the host's page
      • Present the linked file as playable in an embedded native player

      So far I've managed to create a form with an input box and a submit button, but it doesn't do anything yet. What is the best way to build the actual functionality? I know HTML/CSS. I have some rudimentary understanding of JavaScript/jQuery and Python3, so those would be my preferred tools.

      For those worried about piracy: The files in question are not copyrighted and I'm not looking to make copies. I just want to make them playable. This is for personal use.

      Thank you for reading this far. Any and all advice is welcome!

      10 votes
    13. Going to be running a GURPS Infinite Worlds campaign in a few days. Any tips? Suggestions? General RPG ideas to steal?

      I've run a number of one shots before based off GURPS Lite, and I've come to like the system and its versatility. So, I've taken the next step and drafted a couple interested players from the one...

      I've run a number of one shots before based off GURPS Lite, and I've come to like the system and its versatility. So, I've taken the next step and drafted a couple interested players from the one shots into a campaign.

      Essentially, it's a 150 point campaign in the Infinity Patrol setting, based one of the alternate timelines (Gernsback) developing world jumping tech, and the PCs being one of the first teams assembled from said world to scout out and investigate other timelines. The overarching plot is going to be them defending their world from incursions from Centrum and Homeline and building alliances with other parachronically enabled third parties, like Merlin. The main plot hook is going to be a series of kidnappings, by parties including the Homeline Mafia, Reich 5 Nazis, and Centrum. Because of the nature of their travel, all Quanta are accessible by the party, but not as easily as by projector/conveyor. The worlds they're going to be visiting run the gamut from high fantasy to hard science fiction.

      Now that background info's out of the way, basically what I'm asking is: are there any interesting items, characters, or plot beats you've used or seen used in tabletop games that could fit well into this kind of story and setting? I want to put some originality into the worlds they visit so they all feel alive and memorable, and side quests and artifacts are a great way to do that. By no means am I interested only in GURPS stuff, the nature of the system makes it pretty easy to graft in stuff from others.

      9 votes
    14. Tildes, I'm going on a ten day road trip with my s/o, what are some things I should prepare for?

      It's been about a decade since I had a vacation and I have a wedding to attend, so to kill two birds with one stone we will be traveling from Florida to New York by car. Me and my girlfriend of 7...

      It's been about a decade since I had a vacation and I have a wedding to attend, so to kill two birds with one stone we will be traveling from Florida to New York by car. Me and my girlfriend of 7 months will be taking the trip together and its both of our first times taking a vacation in forever.

      Aside from the more obvious stuff like toothbrushes, clothes and condoms (humble brag), what should I think about? After the wedding we'll have nearly a full week to do anything we want or go just about anywhere within reason/distance.

      Here's what I have covered so far:

      • Trip route is planned for there and (somewhat) back.
      • Car oil changed, tires replaced, cleaned & roadside assistance available 24/7.
      • Cat is taken care of, will be well fed and spied on via a security cam.
      • Got lots of good snacks for the road, small cooler with water etc.
      • Will be using airbnb or a somewhat affordable hotel most nights, we're not scraping by but we want to try and spend money on fun stuff instead of rooms.
      • Got plenty of phone charges, plugs, etc for all our electronics.
      • Got an emergency medical kit and a paper US map in the car (For fun, and just in case.)

      So any suggestions, anything I am missing? Anything I can do to make the trip more fun for me and my girlfriend? Any fun road trip things to do between FL to NY would be nice as well!

      13 votes
    15. Post something that you want to get into but don't know how, and have other people give you advice

      Example: I'd like to learn more about wine1, but it seems very complicated and its hard to tell what's "real" and what's just stuff people have made up to be pretentious. I recognize this isn't a...

      Example: I'd like to learn more about wine1, but it seems very complicated and its hard to tell what's "real" and what's just stuff people have made up to be pretentious.

      1. I recognize this isn't a "hobby" per se but I think it fits best in this group
      41 votes
    16. Trying to switch from Literature to Linguistics: similar experience and/or advices?

      Hi! I've recently graduated as a BA of Italian philology. But I am interested in pursuing my further studies and academical career in linguistics, studying language contact and linguistic strata...

      Hi! I've recently graduated as a BA of Italian philology. But I am interested in pursuing my further studies and academical career in linguistics, studying language contact and linguistic strata in particular. I was wondering if anybody took a similar path and am interested in advice from such folks and also any other humanists here. I'm studying some online material and will try to partecipate in some local university's linguistics BA as a visiting student (I guess it's called a freemover in English) if I can find an affordable option. Also I have found out recommended reading material from local universities I'm interested in and some papers about my field. Do you know of any useful resources for making the transition smoother? What has been you experience if you've taken a similar path to your studies? Thanks in advance!

      6 votes
    17. How do I move past nihilistic depression?

      Nothing really matters and I can't enjoy anything anymore knowing that. Games are not that fun anymore, talking to people is boring, we are basically waiting for death and I can't enjoy myself or...

      Nothing really matters and I can't enjoy anything anymore knowing that. Games are not that fun anymore, talking to people is boring, we are basically waiting for death and I can't enjoy myself or will myself to work on anything anymore... How do I move past that?

      26 votes
    18. How do I get "good" at art?

      So this is the dumb post of the day. Bear with me. All I can say about art (like paintings and sculpture) is "is cool", "I like it", "it makes me sad" and look like a complete idiot totally out of...

      So this is the dumb post of the day. Bear with me.

      All I can say about art (like paintings and sculpture) is "is cool", "I like it", "it makes me sad" and look like a complete idiot totally out of place. (On the other hand, I can deliver a nuanced analysis of graffiti and hip hop so yeah it's all about the background.) I want to take my partner to a museum and start saying fancy shit like "oh you see the lines here these remind me of Donatello's style of light and shadow". Like I know it's possibly the dumbest thing to want but I really would like to learn more about it and be able to give informed opinions on art pieces.

      Anyway, any recommendations? Maybe some youtube videos or some books? Or should I just say that everything past 1400 is derivative?

      16 votes
    19. Advice on Google's OKR Framework

      I've hard a lot of great results using Google's OKR (Objectives and Key Results) framework in my roles leading technical and product teams. I've been tasked with bringing this framework across my...

      I've hard a lot of great results using Google's OKR (Objectives and Key Results) framework in my roles leading technical and product teams. I've been tasked with bringing this framework across my organization, including to teams like marketing and business development.

      My main issue recently has been around defining the key results of the projects that our teams are going to be pursuing. All of the advice I've gotten in the past has been to ensure that KRs are quantitative, NOT qualitative. This has been at odds with some of the projects the marketing and business teams are planning on working on. These are projects like...

      • create a new marketing plan given the new budget constraints
      • audit the distribution process to increase our information about the retail sales process

      The push back I am getting is along the lines of "when I create the new marketing plan, the project will be complete, and therefore it's just whether or not I finished the plan that matters." i.e. if the objective is finished then the project is a success. My point of view is that ALL projects should have metrics attached to them, and if we can't measure the progress then we cannot show the added value to the business as a result of our effort.

      The natural response is: what metrics would you attribute to projects like these? And THAT'S where I could use help. Coming from a product/tech background, my understanding of marketing, biz, and operations leaves something to be desired.

      For the marketing plan, I suggested a metric could be to reduce the monthly marketing budget from $current to $future. For the distribution audit, I suggest we track the # of insights/recommendations we produced as a result of the audit. The pushback was that these metrics "didn't really matter" and that "how can we set a goal on insights - even one good insight could be worth a lot, but I could come up with 4 crappy insights just to achieve a numerical goal."

      I'm a bit at a loss. I understand their point of view, and I really feel in my heart that we need to be pursuing measurable KRs. Do you have any advice?

      6 votes
    20. If a campaign gets fully derailed, how should the DM/players handle it?

      In the latest DnD 5e session, we basically invalidated about 10 sessions of prep, due to jumping over a lot of plot points. Should the DM have railroaded us a bit, or was it a good decision to...

      In the latest DnD 5e session, we basically invalidated about 10 sessions of prep, due to jumping over a lot of plot points.

      Should the DM have railroaded us a bit, or was it a good decision to just let us say fuck it, and do what we want?

      21 votes
    21. Point-and-click adventures?

      Any recommendations of modern or not so modern point-and-click adventures (for PC)? Just finished all of Wadjet Eyes games (loved Blackwell series!) and I'm craving some good stuff. I'm interested...

      Any recommendations of modern or not so modern point-and-click adventures (for PC)? Just finished all of Wadjet Eyes games (loved Blackwell series!) and I'm craving some good stuff. I'm interested in not-orthodox games too if there's some experimental stuff that you like. Are the telltale games worth it? I'm also tempted by the Sherlock Holmes games.

      Incidentally, any advice on how to find (and make work) some old(ish) adventures? In particular looking for Discworld II and Noir, EcoQuest, Simon the Sorcerer, Hollywood Monsters, Runaway, or the older (EA I think) Sherlock Holmes games (they are not in GOG I think).

      Extra bonus points if there's a way to make them work in Mac and Linux!

      13 votes
    22. The dehumanization of human resources

      I realize that businesses want to draw talent from the largest pool possible, and to do so available positions are often advertised simultaneously across several job market websites with audiences...

      I realize that businesses want to draw talent from the largest pool possible, and to do so available positions are often advertised simultaneously across several job market websites with audiences larger than what almost any company could reach on their own. Certainly some steps of the application process must be automated when dealing with, what I can only imagine, is a relatively high number of applicants. Websites like Indeed.com have even automated the phone interview process, having applicants take a robo-call and recording their responses to questions selected by the employer. The result, in my own experience, is an often bleak, one-sided, discouraging and depressing bout of dysfunctional online dating, except the relationship you're looking for is with your future employer.

      Are there any HR people on Tildes? If so, I'm curious what this whole process looks like on your side and how it differs from say, twenty years ago. Is the process better? Are the people you hire better? How, on your end, could this process be improved? And most importantly, do you have any advice for getting through this increasingly frustrating first step?

      23 votes
    23. Need advice about Tomboy notes and note apps in general

      I'm looking for some advice on what note programs people recommend. Not a basic text editor, but something capable of doing some basic categorizing, chronological sorting, that sort of thing. I've...

      I'm looking for some advice on what note programs people recommend. Not a basic text editor, but something capable of doing some basic categorizing, chronological sorting, that sort of thing. I've used Evernote most recently, but I'm becoming less and less of a fan. I don't need cloud sync necessarily, although device sync could be handy. A pleasant UI (not fettered with extraneous crap) would be nice, but aesthetic appeal takes a backseat to navigation and stability. Target OS is mostly likely going to be windows 10.

      What are you experiences with note apps, what are your favorites?


      (A bit of context for anyone interested)
      Years ago, I used tomboy notes in Ubuntu for keeping track of timesheets/daily logs. It seemed like a good program to set up for my step dad to use as well. A few years later, Tomboy notes petered out without much fanfare. I've kept his laptop running with that setup for as long as I could, but the hardware is just getting worn out (it's about 10 years old now).

      So! Time to get him an upgrade. This time around, I don't think I'm gonna set up up with Linux. He isn't really up to the task of doing his own troubleshooting in linux (i.e. when an automatic update breaks something), and I haven't even been keeping up on Linux for the past few years myself. So I'm probably going to set him up on a Windows machine.

      I should be able to export the tomboy notes database fairly easy, but it would be a huge load off my mind if I could settle on a decent program to migrate to first.

      Thanks in advance for any input!

      11 votes
    24. Middle aged gay dating advice?

      Fellow LGBTQ+ ~ers, I'm hoping you can give me some direction and pointers in dating advice. I'm a male in my early 40s who has become single after a dozen years and finally realizing/admitting...

      Fellow LGBTQ+ ~ers, I'm hoping you can give me some direction and pointers in dating advice.

      I'm a male in my early 40s who has become single after a dozen years and finally realizing/admitting that I'm gay. This isn't a huge deal (I've always identified as queer/not straight) but it does leave me in a place of total ignorance on how to proceed in meeting gay men and dating them.

      I'm not intetested in sex-without-friendship, so Grindr is out. I'm not a fan of social media, so FB is useless to me. Even if there are any gay bars left, I'm not the bar type. My preferred personals site was craigslist... which shows you how out of the loop I am.

      Any advice on dating sites and/or alternative ways of meeting people? I'm thinking about getting a bunch of shirts printed with a wittier version of "Introduce me to your gay friends!" and a rainbow necklace or bracelet...

      If location matters, I'm a fair distance outside the Seattle area but get there often enough.

      Thanks, all!

      12 votes
    25. Advice on how to make a personal website

      Hi, I want to make a personal website, as basic as possible (I don't even want SEO or stuff like that). This is totally a personal project, I don't want to generate revenue from it or anything...

      Hi,

      I want to make a personal website, as basic as possible (I don't even want SEO or stuff like that).

      This is totally a personal project, I don't want to generate revenue from it or anything like that (at least for now), I just want an old school website to link it to possible employers and contacts. I have about 12 years of coding experience but mostly low-level (DSP, ASM, C, C++) and scientific code (Python, R, Julia). So I'm not scared of doing it from scratch (even though it will be much uglier in the beginning than pre-generated websites) or using some basic lightweight libraries.

      Until now I have been using github pages but I want to put some projects that require server side work, so I'll probably have to host somewhere else. I really like tildes' technical goals, but I don't know if the stack it uses is overkill for a personal website (I know I will need some database for some of the projects though).

      My questions are:

      • Is Pyramid a good choice or is it more appropriate for huge multiuser platforms? I do need some level of interaction between users (some of my more artsy projects are related to NLP) as well as interaction between user-server (some projects include simulations with parameters etc.).
      • How does hosting/DNS work? How much should I expect to spend per year? I know there exist hosting services and also places like Heroku, I don't really know the difference between them or what should I be looking for.
      • How much should I worry about security? In other words, what is the threat level? I don't plan to have confidential info in the website, or information about the users (other than a hash value). But should I be worried about other kind of threats?
      • Is making a website as basic as possible and then keep on improving it as time goes a sound plan for a long-term personal project? With this I mean, will it be fun or will it be 100% frustrating and I should just go to (whatever hosting service that has premade web applications) and make my website there even though it will be bloated with scripts and stuff?
      • Is there something I'm not asking that I should be asking? As I said I know how to code but it feels like web development is a completely different beast sometimes.
      • Is there any compelling reason for me to use google analytics, SEO, all that stuff that big websites use? I have never understood the point for it in, for example, github pages.

      Thanks for your help! Feel free to correct me on any stupid thing I may have said, I definitely speak from ignorance.

      Edit: My biggest issue with this kind of format for conversations is that I cannot thank everybody at the same time, and responding to everyone with a thanks is definitely not contributing anything to the conversation. So I'll put it in an edit. Thanks for all your help! I'll probably be coming for more advice soon...

      22 votes
    26. What’s your favourite self-help book?

      Wondering what’s your favorite self-help book, with the most practical, down-to-earth advice that maybe changed your life. I’ll go first: I really liked Mindfullness in Plain English, removed all...

      Wondering what’s your favorite self-help book, with the most practical, down-to-earth advice that maybe changed your life.
      I’ll go first: I really liked Mindfullness in Plain English, removed all the myths around meditation and broke it down to very digestible concepts allowing me to practice the same on a daily basis.

      Looking forward to hear yours!

      10 votes
    27. Best way to browse/use Tildes on mobile?

      Hi fellow Tildes Beta users! I primarily do my browsing on an iPad or my iPhone. Currently I'm using Chrome. Until an app is made, what do you all find the best way to browse Tildes is? The...

      Hi fellow Tildes Beta users!

      I primarily do my browsing on an iPad or my iPhone. Currently I'm using Chrome.

      Until an app is made, what do you all find the best way to browse Tildes is? The formatting is a little wonky for me, which is perfectly understandable. It's not exactly a deal breaker, but it would be a lot easier having a more optimized experience.

      I doubt I'm alone, so what're y'alls preferences?

      22 votes
    28. Are there situations where donating items in a box can be as helpful as cash?

      When it comes to disaster relief, I often hear the refrain that it is best to donate cash, and donating boxes of things often hurts more than it helps. Is this universally true, or are there...

      When it comes to disaster relief, I often hear the refrain that it is best to donate cash, and donating boxes of things often hurts more than it helps. Is this universally true, or are there situations where donation boxes are actually helpful?

      Search results on the subject ("disaster relief donation box vs cash"), all saying that boxes of stuff hurt more than help, due to the logistical costs of shipping, sorting, and storage:

      4 votes
    29. A hopefully non-spammy experiment in public self-improvement

      I made an embarrassingly verbose post yesterday attempting to put into words and seek advice on difficulties in executing sustained steps towards building a future. It's something I've struggled...

      I made an embarrassingly verbose post yesterday attempting to put into words and seek advice on difficulties in executing sustained steps towards building a future. It's something I've struggled with all my life, coasting along, with the mirage of action towards goals forever ahead, always tomorrow, or next week, or when I get home. I think Pink Floyd wrote something about missing the starting gun.

      (...Goddamn I haven't listened to Pink Floyd in years. That's some good stuff right there.)

      Anyway reading and replying to the (much appreciated) comments from you lovely people got me thinking and, frankly, a little bit motivated to be an agent for some change. However something I've learned to notice by now is that that initial drive tends to have a nauseatingly short half-life. So how can we regularly stir things up to keep the reaction going?

      So here's what I'm thinking: Starting a short weekly post in ~talk detailing what I've worked on or otherwise accomplished (or not accomplished) from Monday to Sunday open to input, encouragement or criticism. Actually, if other people would be interested in committing to something like this I'd almost prefer to make it a public thing where people (including myself) can log their weekly progress in the comments of a thread dedicated to such a thing.

      Obviously this is a bit rough around the edges so I'll think about it this week and pending suggestions or objection will probably put the first one up next Sunday or Monday.

      I think this might be a Neat Thing, yeah?

      4 votes
    30. Keto diet for picky eaters?

      Wanted to Get some Input from anyone who may have tried the Keto Diet. Has any picky eaters tried the Keto diet and seen results? If so can you share some metrics? what you have tried, and in...

      Wanted to Get some Input from anyone who may have tried the Keto Diet. Has any picky eaters tried the Keto diet and seen results? If so can you share some metrics? what you have tried, and in general if it works for such people.

      5 votes
    31. Has anyone done an on the job/industry PhD?

      Tildes, I'd like some opinions please! I work in a genetics lab as a research assistant and I've got the opportunity to pursue a PhD under the supervision of the lab director whilst maintaining my...

      Tildes, I'd like some opinions please! I work in a genetics lab as a research assistant and I've got the opportunity to pursue a PhD under the supervision of the lab director whilst maintaining my current position and salary, with work I'd probably be doing anyway contributing to my thesis.

      I feel like this is a pretty good opportunity: I'm not getting any younger and I have a young family, so going back to school to do this on a studentship is not an option, and my employer is willing to fund half the tuition fees and cover materials/ reagents etc. Word in the media is that there is a glut of PhDs at the moment, but I don't have my heart set on an academic career, so I won't be crushed if I end up in industry. I'm based in Europe, so would be looking at taking 3 years for the whole degree, which is coincidentally when my current contract is up.

      Has anyone pursued a PhD under similar conditions? What was your experience like? Was getting your PhD worth it (especially in the life sciences/biotech)?

      Thanks!

      7 votes
    32. I need help with execution and impulse control

      The short version is throughout my life I've seemed to be unable to execute sustained action towards any kind of meaningful forward momentum. I know very well all the things I need to be doing,...

      The short version is throughout my life I've seemed to be unable to execute sustained action towards any kind of meaningful forward momentum. I know very well all the things I need to be doing, but in that precious moment called the present things always seem to slip. I can't gain traction. All reagent and no catalyst.

      It goes without saying that the irony isn't lost on me of asking for advice, more information, more data, when what's really needed is action, but I simply don't know what else to do.

      The details;

      I think by far my biggest character flaw so to speak is a lack of an ability to execute under normal circumstances. Obviously procrastination and other related behaviours plague most people to one degree or another but I think in my case it's at a point where it presents an arguably existential risk to any kind of real future.

      I'm in my late twenties working a relatively low paying job with moderate technical skill. Like many other children in the 1990s I was diagnosed with ADHD and medicated, though with little to no success. I stopped in my late teens but have recently begun to experiment anew consulting with my family doctor. I've since failed to renew my latest prescription but I think there's some small potential there. That said I think the buik of the change will still have to come from within.

      I'm reticent to frame my experience within the pathology of a medical condition and would prefer to describe my experience without the artifacts and assumptions I feel would otherwise flatten the anecdotes. For years now I've been meaning to study when I get home from work, go to the gym (hell, just get a subscription), eat healthier, etc. There's a burnt out light in my kitchen I've been wanting to change for the past 3 weeks and haven't gotten around to. Everything slips. If I remember I need to do something I'm walking to the grocery store, or on the bus to work, or at a friend's house. I've been meaning to return a friend's call for over a month. Again, everything slips.

      I feel like I'm at a point where I really need discipline and this scares me. I dropped out of college 10 years ago, live alone and work full time. I have no academic backing to speak of and feel this severely limits my future prospects as far as both lucrative, enjoyable and fruitful future employment goes. They say that when trying to plot future human behaviour the best predictor by far is past behaviour; so I'm at a point where personal success is probably unlikely, so I'd also be content being in a position where I can positively impact the lives of others. I feel all else aside this should even be a priority; I need not necessarily find success or happiness if I can be some part of the catalyst for a multitude of people to find it. Net positive for the cosmos and all that.

      I've got a relatively strong foundation of knowledge for doing IT work, having administered a handful of Linux desktops and servers for personal use for the past 5 years (with previous albeit inconsistent dabbling prior to that). I generally believe in open source software and try to use it wherever I can. Unless something Very Bad happens computers are going to be a huge part of the human experience moving forward and if we are to truly prosper for the coming millennia it's probably best if this part of humanity wasn't closed off in boxes held by duopolies with the power to rival governments.

      In regard to IT work I also want to stress that I'm not kidding myself either, there would still be a lot of work to do in terms of certifications, an exponential increase in experience, etc. Dunning–Kruger looms its head here I think. Also, though it's probably my best asset to convert into a career I'm not sure I like the culture that surrounds IT at least as far as I imagine it, and I don't have a particular fascination with things like networking or server administration which has me a bit worried. For what it's worth I'd say my true passion lies in the Sciences, namely Astronomy. Fusion seems to be the main attraction in the Universe so I like to pay attention. Words fail me a bit here but suffice to say the latter is the only subject which I feel truly fascinates me.

      The world isn't lack for the musings and moans of uncomfortable souls, and this turned out much more long-winded than I intended it to. I can't imagine anyone reading this to derive much value here so I'll cut it short.

      If you've made it this far and have any kind of feedback I'd appreciate hearing it.

      Cheers,

      17 votes
    33. Any game developers here? Share your projects and insights

      I'm curious if we have any game devs on Tildes, either professional or amateur. If so, share your games, experiences, or advice for any aspiring developers. I briefly dabbled with game development...

      I'm curious if we have any game devs on Tildes, either professional or amateur. If so, share your games, experiences, or advice for any aspiring developers.

      I briefly dabbled with game development in the past, which amounted to a goofy helicopter combat game made from the Ogre framework. I've been trying to get it running again, and it's inspiring me to get back into hobbyist game development.

      20 votes
    34. dagga.

      last one for today, feel like i've been littering all over tildes and i dont want to be the only thing people see on the homepage. i normally only do these like once a week, but i kept finding...

      last one for today, feel like i've been littering all over tildes and i dont want to be the only thing people see on the homepage.

      i normally only do these like once a week, but i kept finding words that work today.

      sorry for the clutter,

      cheers.


      bliky at the forehead
      hit the floor dead.
      i give you advice
      so that i feel important
      tell me to stay im
      a little distorted
      cross-faded vision
      is going contorted

      take off my seatbelt
      and i start to floor it
      fuck all your comments
      i know its abhorrent
      i only go out in the
      night when it's dormant
      in hopes that I'll see
      a brick wall and ignore it

      gorgeous.

      tell me, do you cry or get lonely?
      Do you ever feel soulless?
      Do you ever stop and reminisce?
      Baby I want to feel free.
      Free.

      (beat.)

      dagga in die bak - smoke
      til the morning
      i just want you back
      still hear you moaning
      hard to look back,
      know that you happened
      hard to look back,
      see what we had then
      knife hits the floor, saying
      what the fuck man
      you're a grown man how
      do you function
      why do you do this
      you're above this
      Cus I don't know what's real
      Baby I want to feel free

      Free

      Free

      Free

      bliky at the forehead
      hit the floor dead.
      i give you advice
      so that i feel important
      tell me to stay im
      a little distorted
      cross-faded vision
      is going contorted

      take off my seatbelt
      and i start to floor it
      fuck all your comments
      i know its abhorrent
      i only go out in the
      night when it's dormant
      in hopes that I'll see
      a brick wall and ignore it
      it's gorgeous.

      6 votes
    35. I would like to get into drones, any tips?

      I bought one of those cheap miniature drones that are flimsy but overall pretty fun to start with. Now, I have the bug to get something with a camera, more flight time, and can withstand the wind....

      I bought one of those cheap miniature drones that are flimsy but overall pretty fun to start with. Now, I have the bug to get something with a camera, more flight time, and can withstand the wind. Any suggestions on what I could get <$150 that would be a good investment.

      Any maintenance tips or flying in public tips?

      9 votes
    36. Throwaway accounts / anonymous posting / temporary personas

      Edit: whoopsie, already being discussed here: https://tildes.net/%7Etildes.official/2x3 This is tangential to this post here about NSFW/controversial content. Sometimes one needs to make a...

      Edit: whoopsie, already being discussed here: https://tildes.net/%7Etildes.official/2x3


      This is tangential to this post here about NSFW/controversial content. Sometimes one needs to make a confidential post detached from their own identity (say for example about a psychological problem or advice on an event where the OP wants to conceal real identities), and most places one needs a throwaway account. I think it'd be nicer if we allowed people to make posts detached from their main accounts w/o having to create new throwaway accounts. It might be possible via allowing a certain number of "personas" (i.e. a couple names one can allocate and use as nicknames), or via allowing to post anonymously (i.e. hiding the poster's account name, not w/o one), or allowing personas but temporarily and randomly generated names. What's you thoughts?

      6 votes
    37. Let's talk player classes

      No, not the PC classes in your game - the classes that describe the people you play the game with. Mister Fantastic: Every single number on this player's character sheet has been optimized beyond...

      No, not the PC classes in your game - the classes that describe the people you play the game with.

      Mister Fantastic: Every single number on this player's character sheet has been optimized beyond comprehension to be at least 20% higher than you thought was possible, and it's all legal. Reading one of his sheets will teach you about traits, feats, and rules you never knew existed. Often mumbles cryptic, one-word answers while barely paying attention that end ongoing rules discussions leaving the other players with blank faces. His characters are nearly invincible except for one small key weakness (AC 26 at level 1, but with a CMD of 5). This player can typically one-shot the BBEG and reverse the party's fortunes in a single round. If he's charmed or dominated it will result in a TPK unless dealt with instantly.

      The Veteran: A quiet fellow wearing a T-Shirt that says, "Don't tell me about your character: just play." He's never flashy, and seems to do very little, content to let everyone else play and have fun. Always prepared for any situation when no one else is. More likely to aid other players than act directly. He'll only involve himself when everyone else is making a mess out of things, and when he does wake up, his ability to deal with any given situation leaves Mister Fantastic green with envy. Has been known to kill BBEGs via roleplaying. Has the ability to summon natural 20s on demand but rarely uses it. The GM often consults with him on rules issues.

      Negative Diplomacy: No matter the class or the character's abilities, whenever this player opens their mouth to talk to someone who isn't in the party, you know the group is going to be in combat to the death in less than three rounds. The GM is uniquely powerless to prevent this from happening. His superpower is always knowing the worst possible in-character thing to say.

      Milla Vanilla: Every character this person plays is the exact same thing - even when playing different classes. For whatever reason, this player cannot mentally step into the shoes of their character, and ends up on endless repeat. Often not noticeable until one has played multiple games with this person and notices that their ninja assassin is remarkably similar in temperament to their paladin.

      The Conspiracy Theorist: This player is convinced that every single thing that happens is part of some grand tapestry and he is on a mission to figure it out. Often obsesses over small details, makes bizarre (sometimes nonsensical) connections between events, places, and facts. Your worst fear is that he's giving the GM ideas. It's confirmed when some of his wilder predictions come to pass later in the game.

      Aaron Justicebringer: The kind of perma-lawful good holy crusader who walks into a tavern and announces, "Greetings! I am Aaron Justicebringer. You may flee if you wish." He's on a mission to smite evil. Since he's always got detect evil running, he finds quite a lot of it and smites often, without concern for trivialities like local customs, ettiquette, roleplaying, and plot. This player always plays crusader types.

      Kaboom: Kaboom likes loves lives to set things on fire. Often a wizard or sorcerer, and the kind of fellow who can reduce six enemies to ash in a single round (even if those were six fire elementals). Flaming spells, flaming daggers, flaming hair, and one can track him across Golarion just by following the smoke. Unfortunately, that's all he's good for. Kaboom is a blunt instrument, best kept wrapped in asbestos until the party finds a target he can be aimed at in a location that hasn't got too much potential for collateral damage. This player comes in non-fire flavors too.

      Sleepy Pete: Sleepy Pete has a wife, six kids, and a stressful day job. By the time he makes it to the session, he's been clinically dead for two hours already. He'll be asleep within an hour of starting, even faster if food or alcohol is involved. Sleepy Pete is also prone to missing sessions with little forewarning. You're not even sure what his character or personality is because you've been given almost no opportunity to observe him in a conscious state.

      Brandon The Builder: A player who in all other ways is relatively normal, Brandon must never be given downtime in any way, shape, or form. With a full set of item crafting feats and flawless mastery of the downtime rules, Brandon will not only rule the entire kingdom in less than six months, he'll find a way to provide every single party member with a Headband of Mental Superiority, Belt of Physical Perfection, two +5 Tomes or Manuals of their choice, and a well staffed keep while doing it.

      Broken Billy: This player has no comprehension of the mathematical progression of the games he plays. Instead, he jumps at the first thing he finds that sounds cool. This leaves him with a hodgepodge of abilities that quickly become useless as the game progresses, leaving poor Billy more and more frustrated as the game goes on. Broken Billy steadfastly ignores all advice and all warnings given to him by the GM and more experienced players. Prone to having five first level classes on his fifth level character.

      The Novice Namer: Never good at coming up with names, this player has given birth to many legendary heroes: Bob the Barbarian, Robert the Ranger, and who could forget Sheldon the Sorcerer.

      The Knife Hoarder: For whatever reason, this player insists on having at least 2 knives on his belt and 4 hidden on his person. He'll never actually use these knives, but as they'd say "just in case."

      The 1-Leaf-Clover: This person's dice are trying to kill him. Oh he might roll a natural 20 to get a cheap room at the inn or tell if an item is masterwork (its not), but the second he's in combat, the most you can expect is a 12 or 13.

      The iGenie: Only looks away from his laptop when his name is said three times.

      The Bookworm: If not taking an action, is found face first in a book looking for a rare never before seen rule that will get him out of the in-game situation. There has got to be rule specifically for negotiating with a different race to reduce the price of a toll. There just has to be!

      Secretly Evil: This player almost always plays a Wizard/Sorcerer and takes a Necromantic path. They'll write a sizable and traumatic back-story. Then in game they'll never do or say anything evil in front of the group(in or out of character). In fact, they'll do very little in general. Instead they wait until everyone is gone and tell the DM what evil things they actually did while "no one was looking".

      You should try FATAL: Makes all their characters and every encounter somehow revolve around sex.

      Spellsaver: Spellcaster that never casts their spells because they think the next fight is going to be harder.

      The Lore Keeper: This player may not be the most talkative person at the table, but that's possibly because they're too busy writing down every even happening in the game. Conversations, shared loot, timelines, and character sketches -- this player is devoted to the story, and keeps track of all of it.

      What are we missing?

      (Some inspiration from this old reddit thread.)

      17 votes
    38. What is the best casual game console?

      The back story is that I’m currently deciding whether to get a PS4 or a Nintendo Switch. But instead of just a “what’s your fave” thread I want to take this opportunity to turn it into a proper...

      The back story is that I’m currently deciding whether to get a PS4 or a Nintendo Switch.

      But instead of just a “what’s your fave” thread I want to take this opportunity to turn it into a proper discussion which console you think is filling the casual gamer needs better, why and how. Including the games

      Now, my personal feeling – and I never owned a game console before myself, but have gamed on the PC before – it seems to me like Nintendo is trying to cater to the casual gamer who wants to wind down and perhaps play some fun games with friends during a party. While Sony and Microsoft seem to me to aim more at gamers who want a more immersive experience and play either alone or if with others in a more competitive/rival way.

      16 votes
    39. What is the best way to add a growth mechanic to Dungeons and Dragons?

      There isn't really a great mechanic for learning skills and languages in dungeons and dragons. This makes it a bit lacking if there is a certain amount of off-time between adventures and missions....

      There isn't really a great mechanic for learning skills and languages in dungeons and dragons. This makes it a bit lacking if there is a certain amount of off-time between adventures and missions. It would be cool to think some sort of mundane dnd. Like mini-games in video game RPGs that make your character a little bit more personal. A quirks mechanic, that adds a certain way your character acts in the every day or what your character normally does. The risk is that it could turn into too much of a dice roller and the players might engage less with the story. What do you think?

      9 votes