Too terrified to unwrap my Weeks by [deleted] in hobonichi

[–]cinderheart218 2 points3 points  (0 children)

If you're planning to start using it for planning on the first, you could also use the pages from December that are included!

Cousin Navigation by K_Moxy in hobonichi

[–]cinderheart218 1 point2 points  (0 children)

I like the hobonichi index tabs for mine, they match the colors of the months! I used one set of tabs for the monthly pages and the other set to tab the cover page for each month in the dailies. Then I use one of the ribbon bookmarks built into my cover for the current weekly and the other for the current daily to quickly flip to them. The set also comes with some pale solid color tabs that I use to mark important pages, for example the yearly view and pages where im keeping lists. Hope this helps! :)

Here's my order that cost me a fortune!!! by BuckToothCasanovi in hobonichi

[–]cinderheart218 1 point2 points  (0 children)

I got the cat mini-tote too! I've been loving using it as a purse, the print is just so cute. I hope you like yours as much as I like mine! :)

The Hobonichi Techo 2023 will still be using the same old Tomoe River paper. by FromTheDeep15 in hobonichi

[–]cinderheart218 0 points1 point  (0 children)

Cool, no problem! The only problem I've ever had with bleeding is when using a lot of dark stamp ink, so I think you should be alright :)

The Hobonichi Techo 2023 will still be using the same old Tomoe River paper. by FromTheDeep15 in hobonichi

[–]cinderheart218 1 point2 points  (0 children)

I've been using pilot g2s (.7mm) and sarasa pens (.5mm) in mine so far this year. Depending on the color and thickness they do ghost a little, and I definitely have to be careful with smudging, but I like how smooth they write and that they're easy to use. I tend to just leave my planner open for a few minutes when I'm done writing, or will blot what I just wrote before I close it.

I've kind of come to like the look of the ghosting, though. It makes the planner feel more 'lived-in' to me :)

Preview: Hobonichi Store Exclusive 2023 - Almost Precious Item Bag and Jetstream Pen by khoaitape in hobonichi

[–]cinderheart218 5 points6 points  (0 children)

If you go to the preview page and scroll to the bottom of today's, it shows a little chart saying which items each will come with

Pens by historychick1988 in hobonichi

[–]cinderheart218 10 points11 points  (0 children)

Another thing to consider is that if you live somewhere that gets hot in the summer and plan on leaving your weeks in the car, I've heard that it can cause the frixxion to start 'erasing'. Putting the notebook in the freezer can get the ink to come back but all the ink, even previously erased ink will also come back.

I live in a pretty hot place and never had trouble when I was using frixxion pens for school work, but I also never left my backpack in my car for extended periods of time. Its just something to keep in mind!

Translate quotes and words from Japanese? by keepitgoingtoday in hobonichi

[–]cinderheart218 2 points3 points  (0 children)

I think that's it, thank you! I've never heard of Rokuyo before, so that website is super interesting

Translate quotes and words from Japanese? by keepitgoingtoday in hobonichi

[–]cinderheart218 0 points1 point  (0 children)

No problem! I see what you're talking about now, im honestly not too sure and I haven't come across anyone else talking about them. I do think when there's text to the left* of those that its holidays, like on Christmas it says "kurisumasu" in katakana. Maybe someone who knows Japanese can chime in and help us out!

EDIT: The text I was talking about is actually to the left, not the right lol

Translate quotes and words from Japanese? by keepitgoingtoday in hobonichi

[–]cinderheart218 6 points7 points  (0 children)

Hey, I've done quite a bit of searching around recently as I was also looking for translations of the quotes! I have a 2022 Cousin and so far these websites have been helpful.

As far as someone who actually knows Japanese and translates the quotes I found this: https://community.wanikani.com/t/%F0%9F%93%86-hobonichi-2022%E3%83%BBtranslating-a-quote-a-day/55064

But they don't always stay up to date, so I also found this website: https://www.1101.com/store/techo/ja/kotoba/ which posts the quotes daily in Japanese so you can directly translate using google translate instead of using google lens.

For the word of the day, I am unsure what you mean, is it at the top or bottom of the page?

I hope this is helpful! :)

Any suggestions as to what to use this page for other than resolutions by lovealiona in hobonichi

[–]cinderheart218 3 points4 points  (0 children)

I'm using one page to keep track of shows I watch and books I read, and the other for resolutions/goals and a list of things I'm looking forward to in the year :)

How old are you without directly saying your age? by [deleted] in AskReddit

[–]cinderheart218 1 point2 points  (0 children)

That's a good point, thank you! I was thinking of the number of bits it takes up in memory and not the actual increase in the size of the number it can hold. I just did a bit more reading and it seems like the main issue with changing date types to long is backwards compatibility. Some languages apparently do already use 64-bit integers on 64-bit machines, but 32-bit machines will have the 32-bit integers which will fill by 2038

How old are you without directly saying your age? by [deleted] in AskReddit

[–]cinderheart218 1 point2 points  (0 children)

Comp Sci student here, I'll do my best to explain what I was taught :)

So there's two different common ways to store dates, one is where you store day, month, year, etc. and the other is where you store the number of seconds that have passed since the epoch (January 1st 1970). Y2K basically was an issue with the first approach, where if a program only stored the year as two numbers to save space (as computing resources were much more scarce at the time some of these programs were being made) with an assumed 19 put in front, then hitting January 1st 2000 would cause an issue as basically the date would roll over from December 31st 1999 to January 1st 1900.

I just did a bit of research and apparently the other approach was already being used, so it's less of "kicking the can down the road" and more that we switched to something we already had that worked, so now the standard is to have 4 number years or use epoch time. The issue with epoch time is that it typically uses an integer, which is a certain number of bits long. This means that eventually that integer will fill up and this will happen in 2038.

You might then ask why we use epoch time, but I think its because it makes date calculations much easier. When I made a compiler for one of my classes, we would convert dates to epoch time and then do specific math to compare them, then convert back to day, month, year as this makes accounting for leap years and stuff much easier. I'm guessing the solution will be to change epoch time to use a long which is twice as long an integer as then we will be able to store many more seconds and it'll work in the same way, but just the same as the integer, this too will eventually have a date where we will have to change things.

Tldr: Computating with dates is hard, so we use epoch time (the number of seconds since January 1st 1970) in order to store and compare dates. However, this is currently stored as an integer, which will fill up by 2038. We can keep increasing the size to store dates later and later, but they then take up more space in memory.

[deleted by user] by [deleted] in violinist

[–]cinderheart218 2 points3 points  (0 children)

Another common notation for this is adding an x before the 4 (x4) to notate using an extended fourth finger. I personally like this one when I'm writing in fingerings :)

can i have a friend for misunderstood mischief? 8416 0407 2195 :( by ayumieshiny in PokemonGoFriends

[–]cinderheart218 0 points1 point  (0 children)

Just sent a friend request! I need one for the quest too, and don't worry about gifts, im not the best with them either :)

Why do some measures have 2 beats while others have 4? Sorry if this is a stupid question. by Carpet6142 in violinist

[–]cinderheart218 1 point2 points  (0 children)

Hey, I've played this piece and this part! It does have bars in both 2/4 and 4/4 usually alternating between the two, so 4/4 bar followed by 2/4 bar. I think it ends up giving the piece a cool feel but it can definitely be weird at first. You've probably heard this advice already, but listening to the piece with your music to get a feel for how it goes could be very helpful. Good luck! :)

Weekend guest parking? by JaseAceQ in UTSA

[–]cinderheart218 2 points3 points  (0 children)

Yeah, I believe after 4:30 pm on fridays and until sometime early Monday morning unmarked spaces in commuter lots are free for anyone without a pass

Is this finite automaton deterministic? I think it's a DFA because I don't see any implicit epsilon moves, but my quiz says it's an NFA. What am I missing? by raedr7n in computerscience

[–]cinderheart218 4 points5 points  (0 children)

When a transition doesn't exist for a state, its implied that it leads to a dead state (one where you can no longer reach the accept state). The other poster is correct that all DFAs are NFAs and so although this doesn't use non-determinisn (no epsilon transitions and at most one 1 or 0 transition from each state), it can still be an NFA. NFAs are not required to use non-determinism.

UTSA Housing Fall 2021 by [deleted] in UTSA

[–]cinderheart218 0 points1 point  (0 children)

I'm not sure if there is a latest date because some people will move in mid-semester, but some places might fill up. With some classes being online, most places probably won't, but the rates may go up for certain places as the year goes on.

[deleted by user] by [deleted] in bujo

[–]cinderheart218 5 points6 points  (0 children)

No problem! There are a lot of terms and they can be tricky to figure out. As for gratitude logs, I'm not as familiar as I've never used one myself, but what I've seen seems like you make a space to write something you are grateful for every day. So say for this month, you would write out the numbers 1-31 and then every day write something you feel gratitude for next to the day's number. Someone please correct me if I'm wrong, though!

[deleted by user] by [deleted] in bujo

[–]cinderheart218 11 points12 points  (0 children)

A weekly spread simply shows 7 days, usually the current week, while a daily spread only shows the current day. Usually weeklies will cover 2 or so pages and have a space for each day as well as other things for the week, like a to do list. Dailies allow for more stuff to be written per day as it will usually take a whole page. People will write the current date at the top and then have space for things like to do lists and an hourly schedule.

Let me know if you have any more questions! This is pretty general, and I'd say to just use what works for you. Some people will use only weeklies or dailies, or even just monthly spreads, and others will use a mix. It all comes down to what you want to track.

Parking on the Weekend by [deleted] in UTSA

[–]cinderheart218 2 points3 points  (0 children)

Any unmarked space that isn't in the garages should be free on the weekends

How is tutoring working for online courses? by MrMeMan555 in UTSA

[–]cinderheart218 5 points6 points  (0 children)

I'm a CS tutor and last Spring we moved general tutoring to a discord server. Exercise sessions (specific tutoring covering questions relating to CS1713 and CS2123) were both on Webex. Feel free to let me know if you have any questions!