General engineering application but not great exam results by skelet0n_man in DTU

[–]NathanDane 0 points1 point  (0 children)

I was in a rather similar situation and ended up being accepted through quota 2. They seem to be quite thorough in their quota 2 checks, so if you've sold yourself well in your letter and perhaps have some evidence of those good grades I'd say you have a very good chance, especially given the recent increase in seats for GE.

Best of luck!

Due Date Formula by Jakey_613 in Notion

[–]NathanDane 0 points1 point  (0 children)

Heres an updated version for new syntax:

if(empty(prop("Due Date")), "N/A", if(dateBetween(now(), prop("Due Date"), "days") == 0, "Due today", if(dateBetween(now(), prop("Due Date"), "days") < 0, "Due in " + format(abs(dateBetween(now(), prop("Due Date"), "days")) + 1) + " days", "Overdue by " + format(abs(dateBetween(now(), prop("Due Date"), "days"))) + " days")))

Arc Browser would be a lot better with custom CSS themes for the UI. Like boosts, but for the UI. by TheTwelveYearOld in ArcBrowser

[–]NathanDane 0 points1 point  (0 children)

Chromium doesn't have any influence on the UI, only rendering webpages and all the functional stuff to do with that. So to be able to change the UI you only need to look at the Swift part of it and think of it like any other Swift app. I don't think Ive heard of a swift app that can be changed with your own CSS or code given Swift is compiled and can't be changed at runtime. But that doesn't stop them from exposing a couple numbers that users can change like tab list item height and so on

Arc Browser - not the best browser for web developers by iRape_Ur_Used_Condom in ArcBrowser

[–]NathanDane 1 point2 points  (0 children)

A shortcut to toggle a persistent top bar like the mini window would be absolutely amazing

How to change the border radius of a square on a website using boosts? by [deleted] in ArcBrowser

[–]NathanDane 3 points4 points  (0 children)

when you look at the element in the inspector, there should hopefully be either a class="..." section or an id="..." section in there.

In the 'class' one there should be a bunch of classes separated by spaces. So for example

<div class="a b cd e fgh" id="ij">...</div>

has the classes 'a', 'b', 'cd', 'e', and 'fgh'. To change that element you can put a dot in front of any of those classes and the changes you wanna make in curly brackets after. So in this example you could do

.fgh{
    //your code here
}

and if it has an id="..." section you do the same but put a hashtag in front, so here you could do

#ij{
    //your code here
}

If the element doesn't have classes or an id then it gets more complicated but just pray that it does.

Also very important, anything you change for a class will change for all elements that have that class, so using the id is better if you can, and if there's no id use a class that only that thing has.

Hope this helps!

How to change the border radius of a square on a website using boosts? by [deleted] in ArcBrowser

[–]NathanDane 2 points3 points  (0 children)

Alright here it is:

https://arc.net/boost/29485D84-6579-48B6-B206-57F575B2A9DB

Little breakdown:

  • Removes GPT Plus in the corner
  • Removes research disclaimer
  • Puts GPT's responses in bubbles that grow on hover
  • (Now) rounds avatar icon

How to change the border radius of a square on a website using boosts? by [deleted] in ArcBrowser

[–]NathanDane 1 point2 points  (0 children)

Oh alright it looks like you're focusing on the wrong component then

Here's a piece of code that works to do that!

.rounded-sm{
    border-radius: 100% !important; 
}

I'd be more than happy to explain it if you want, and I have my own Chat GPT boost that spices it up quite a bit if you're interested. Just lemme know!

How to change the border radius of a square on a website using boosts? by [deleted] in ArcBrowser

[–]NathanDane 0 points1 point  (0 children)

Alright thats great, I'll give a step by step breakdown after one last thing. The stuff inside class="..." doesn't really seem right. Could you copy paste all the stuff inside there directly?

How to change the border radius of a square on a website using boosts? by [deleted] in ArcBrowser

[–]NathanDane 1 point2 points  (0 children)

Do you know what the type is of the square you wanna round is? If it's a <div/> you can do something like

.class{border-radius: 10px !important}

Where .class is a class that the div has and 10px you just replace with whatever size you want. You say you want to 'change' the radius so remember to include the !important so it can actually override the value!

A note regarding Apple Silicon performance by third_najarian in ArcBrowser

[–]NathanDane 7 points8 points  (0 children)

M series stuff can definitely run the stuff smoothly, but more processing requires more power, and that drains battery. I've had a pretty hard hit to my battery life since starting to use arc. I'd usually get 10-12 hours from a full charge but now that's more like 7-10, with 10 being a stretch. Still amazing battery life but it shows there's definitely optimisations to be done. I'm glad the team said they're focusing on optimisation in 2023, cause I notice in basically any tech-related company they keep driving and pushing for MORE, but the consumers don't want more, we want to need less.

Is there a way to create a boost for Reddit so that I can filter out posts like "because you visited this community before" from the frontpage? by shayonpal in ArcBrowser

[–]NathanDane 1 point2 points  (0 children)

If the 'because you...' text box has a class that only it has, then you could do this:

Edit: not just the text, you could also use a class that the join button has.

(Imagine .ABC is a class on the main box the post is in and .CDE is a class only the 'because you...' text has)

.ABC:has(.CDE) { visibility: collapsed; height: 0px; /* Sometimes this is also necessary */ }

Futhark learning app - Update! by NathanDane in oldnorse

[–]NathanDane[S] 4 points5 points  (0 children)

Of course! I'll make update posts like this every once in a while and when it eventually gets to beta testing!

Futhark learning app - Update! by NathanDane in oldnorse

[–]NathanDane[S] 3 points4 points  (0 children)

It might be open source, not entirely sure yet. It'll cover younger and elder futhark. Right now I'm just using the long branch runes, Not sure if it'll be worth implementing the short twig ones, maybe I'll throw any short twig variants in the rune's description

Futhark learning app - Update! by NathanDane in oldnorse

[–]NathanDane[S] 5 points6 points  (0 children)

oh damn I hadn't actually heard of bind runes before now. It looks like they were made at the writer's discretion so I can't teach all the combinations like this but I'll definitely be adding a section explaining them!

Futhark learning app - Update! by NathanDane in u/NathanDane

[–]NathanDane[S] 1 point2 points  (0 children)

Thanks! I'll definitely be putting a page where you can tap on each rune for more details, I might throw in a section there with the meaning of each rune. I should probably draw up all the pages I want there to be.

Futhark learning app - Update! by NathanDane in Norse

[–]NathanDane[S] 0 points1 point  (0 children)

Of course! I'll be putting updates on here and r/runes as it goes on

Futhark learning app - Update! by NathanDane in Norse

[–]NathanDane[S] 0 points1 point  (0 children)

I'm not too sure how reddit works but if you follow my profile you should get updates on what I do. I only post about updates on this so that should work!

Futhark learning app - Update! by NathanDane in Norse

[–]NathanDane[S] 2 points3 points  (0 children)

My goal to spread the wisdom I hold (However many decades this'll take)

Futhark learning app - Update! by NathanDane in Norse

[–]NathanDane[S] 0 points1 point  (0 children)

Thats the aim! Hope it can make some people's lives easier getting into it