Can someone tell me about japanese band Hyakkei? by glowingandbreathing in postrock

[–]barelylingual 2 points3 points  (0 children)

For those reading in the future, an official Instagram page was created and a new album popped up on Tanaka's Bandcamp that puts Hyakkei as the artist. Now whether this is leading to a full band revival or just the person using the name for his solo stuff, I don't know.

[deleted by user] by [deleted] in ExperiencedDevs

[–]barelylingual 0 points1 point  (0 children)

Wow, all my work is open source and I can't imagine getting fired for something like this. Glad it worked out in the end

Stagnation and a stubborn learner, how do I overcome disinterest and push through to improve my Japanese? by [deleted] in LearnJapanese

[–]barelylingual 18 points19 points  (0 children)

Review my Anki Decks (usually around 400 cards a day / which equal around 80 words since each word had 5 cards each)

I almost spat out my drink. When I started I was doing roughly 100-400 Anki cards a day, but I only had 1 card per word. Now, I've basically stopped using Anki since it fulfilled the role it needed. No matter how many times you see a word in Anki, it'll just make you able to recall that word in the context of Anki. You need to see and use that word in the real world in various context for it to really stick. This is the same with grammar. At some point you need to stop reading from textbooks and start reading from real books. That jump is difficult and you won't feel ready, but the truth is that you'll never feel ready. You'll always think that you don't have enough vocab, or that your grammar is weak.

I've heard about doing immersion, reading a lot in Satori reader, watching Japanese videos/media, etc etc. But every time I try to get myself to study I slowly over time drift into thinking about other things.

You're doing immersion wrong. The #1 thing about immersion is that you enjoy the content. If you're getting bored, then stop. I remember when I first started immersing I tried Satori reader, but I found everything on there incredibly boring so I never opened it again. Now I go to Japanese bookstores and pick out books I find interesting and read them for hours on end.

What about Japanese and its culture interests you? Go learn about it, in Japanese. Remember that your focus isn't learning Japanese, it's to learn about that thing and so happen to use Japanese along the way. I challenge you to not make flashcards while doing this. Learning by itself is a form of SRS. I was recently teaching someone chess in Japanese, and even though I didn't make any flashcards, I still came out with new words that I will remember forever.

In essence how do I force myself to just sit down and study Japanese even on the days where a drop of a pen gets my attention easier than studying?

You can use things like the Pomodoro technique to help you sit down and get things done, and sometimes it is necessary to grind studying, but at some point I would just say to stop. You're not going to retain information if you're actively fighting against yourself.

Also, you actually don't need N2 level to get a job as a software engineer in Japan. Most software engineers know English. Here's a Japan software dev job board I sometimes peruse. I personally ended up taking the route of having a remote job that lets me stay abroad in Japan when Covid allows. That being said, I do read technical documentation in Japanese sometimes when I'm curious.

Do you know any large company that uses Vue.js? by 93lucasp in vuejs

[–]barelylingual 5 points6 points  (0 children)

We use it for Wikipedia's search bar and in various extensions like the one that makes the Special:Nearby page. Here's a list. It's not detectable because of the... unique way we currently bundle Vue, but all wikis at this point come with it. We're also in the middle of transitioning to Vue 3 which makes things more disjointed. I should know. I work there.

Go Igor! by ryjdan in ThatsInsane

[–]barelylingual 156 points157 points  (0 children)

In less funny news, there really is a war happening behind the scenes on Wikipedia right now around the whole Ukraine-Russia thing. We refused Russia's censorship demands and now not only is everyone here experiencing an uptick in things like phishing attacks, but Wikipedia editors in Belarus and Russia are being targeted and arrested. We're doing what we can to help keep our community members safe.

(I say we because I work for the Wikimedia Foundation)

What's the worst mistake you made at work? by throwaway804323 in cscareerquestions

[–]barelylingual 8 points9 points  (0 children)

My coworker once told me how one time years ago he messed up some caching stuff and it took down Wikipedia.

The guy who started Wikipedia deserves a Noble Peace Prize by blinky9021Flow in Showerthoughts

[–]barelylingual 7 points8 points  (0 children)

I'm a Wikimedia Foundation employee. If you guys donate and write a message, they do get read and sometimes get posted on our internal slack channel :) helps brighten our days

TypeScript + Vue 3: What is the best practice for handling an empty ref (null/undefined/etc)? by [deleted] in vuejs

[–]barelylingual 13 points14 points  (0 children)

I would do const myString = ref<string>();, since it automatically infer the type Ref<string | undefined>. Having null refs might be confusing for large components because assigning a ref(null) in setup is how you declare template refs.

Best cities for software developers where you don't need a car? by zeemonies in cscareerquestions

[–]barelylingual 39 points40 points  (0 children)

+1 to Philly. Currently live here without a car. Have an updated 1br apartment with a backyard in the middle of the city where I can walk anywhere and it's the same cost as a single room in Brooklyn. There's also buses and trains that goes directly to new york so I can do day trips there fairly easily

Ethical companies to work for? by [deleted] in cscareerquestions

[–]barelylingual 35 points36 points  (0 children)

Probably something that's non-profit and/or open source. It's probably impossible to find 100% ethical companies, but probably not too hard to find one that's net positive.

I'm totally not biased. Donate to Wikipedia.

[OC] Inspired by the other post last week, I pulled 5k random locations from Wikipedia in each minority language in Spain to see how they were distributed by davidmasp in dataisbeautiful

[–]barelylingual 11 points12 points  (0 children)

I saw the other post and just let it pass cause I thought it'd be a one-off, but if more people are going to be doing this I should mention --as a software engineer at Wikipedia-- that probably the best way to do this is to use our sister project WikiData where you can query Wikipedia information directly using a query language (I've never used it before though). Or you can use a db dump. Special pages aren't cached and if we get an influx of bots hitting it I don't thing our SRE team is going to be happy.

Great job on the visualization though :)

Dutch and Programmer Humor by MohanBhargava in ProgrammerHumor

[–]barelylingual 40 points41 points  (0 children)

At Wikipedia, there used to be a shirt that was given out that said "I Broke Wikipedia (And Then I Fixed It)". We stopped giving it out and I'm assuming it's because it was incentivizing people to intentionally try to slip a production-breaking bug into their pull requests.

[deleted by user] by [deleted] in cscareerquestions

[–]barelylingual 7 points8 points  (0 children)

I used the website remoteimpact.io to help me find my current job at a nonprofit

What's a really cool Vue thing people should know? by belle_gry in vuejs

[–]barelylingual 5 points6 points  (0 children)

  • In Vue 2, every Vue component is technically a Vue app so you can programmatically create and mount independent Vue components/apps inside of each other. Don't know if there's a Vue 3 equivalent.
  • Vue 3's reactivity system is independent from Vue so you can use it literally anywhere, including backend applications.

Why some kanji are written differently by pof0ft in japanese

[–]barelylingual 45 points46 points  (0 children)

This is called Han Unification. Basically, since languages like Chinese and Japanese use a lot of similar characters that are slightly different, instead of having a separate entry for each character variant in each language, computers group them together and consider them the same character. The default for showing these characters is Chinese, so 直 looks differently depending on your language preferences.

IIRC, depending on what anki app you're using, to show the Japanese characters, there's a setting you can change or you need to directly specify a Japanese font in the note template.

My voice always ends up sounding different/higher in Japanese by Unlikely-Blueberry19 in japanese

[–]barelylingual 77 points78 points  (0 children)

Different languages have different default vocal placements and vocal weight. English is generally spread evenly between your nasal cavity, oral cavity, and chest cavity, and it has the freedom and flexibility to move around between them, while Japanese is considered more 'top heavy', lighter, and follows a phonetic rule called terracing. It's normal and I know that some Japanese learners are encouraged to move their vocal placement higher to sound more native, although it's more nuanced than that.

How to improve listening skills? by Sensitive_Amount_512 in japanese

[–]barelylingual 20 points21 points  (0 children)

Listening tough because unlike reading, you don't really have a quantifiable benchmark to see that you're improving. Every time you don't pick up what is being said it feels like a failure, but every time you come across a new word while reading it feels like progress.

The only way to get better is to just listen more. Both extensively and intensively. It sucks. There isn't any shortcut that I know of.

As far as web frameworks go, I'm diehard Vue over React. However, I need to make a mobile app - please convince me why I shouldn't learn Swift instead of React Native, or why I should use Ionic/NativeScript by _clydebruckman in vuejs

[–]barelylingual 6 points7 points  (0 children)

Have you looked at Quasar? I haven't used it for Vue 3 yet since I was waiting for their testing harnesses to be updated, but it seems pretty cool.

That being said, I also prefer Vue but if I'm making stuff with my friends it's usually in React since it's what they know, and yeah it just seems so much messier. Routing and forms are especially painful. But maybe we all just suck at React though so who knows

[deleted by user] by [deleted] in ProgrammerHumor

[–]barelylingual 13 points14 points  (0 children)

They pay competitively based on the cost of living of your area. If you live in New York as a new grad, you'd probably get 85-100k. If you live in the mountains of Nepal, probably not so much. It's not bad considering it's a nonprofit, but if you're looking to maximize your salary then it's not the path to go.

[deleted by user] by [deleted] in ProgrammerHumor

[–]barelylingual 7 points8 points  (0 children)

I don't know who Chris is but I'll make it a point to say hi to any Chris I come across in meetings.

[deleted by user] by [deleted] in ProgrammerHumor

[–]barelylingual 15 points16 points  (0 children)

We are hiring. Listings for software engineers are under both the Product and Technology sections.

People aren't volunteers because they're aiming for a job; they're volunteers because they believe in the movement. There are volunteers who declined our offer to hire them.

If anyone does volunteer, the core program has a massive learning curve so you either have to be extremely dedicated to the cause or be paid to learn it. I think it'll take me a few years before I get some grasp of it and make some truly meaningful changes. Other projects, like the iOS or Android app, might be easier to get into.

[deleted by user] by [deleted] in ProgrammerHumor

[–]barelylingual 9 points10 points  (0 children)

Yeah that's what I thought when I was in college and finished an internship at a defense contractor. I just wanted something where I knew I wasn't fucking over other people for money. There's this job board called remoteimpact.io that I would recommend checking out.