HackerTrans
TopNewTrendsCommentsPastAskShowJobs

going_north

no profile record

Submissions

80% of Norwegian Public Sector to Use Chainsaws by End of Year, Government Says

eaj.no
3 points·by going_north·قبل 11 شهرًا·1 comments

A little Slack notifier in Elixir

eaj.no
1 points·by going_north·قبل 12 شهرًا·0 comments

Upcoming deprecation of GitHub Command Palette feature preview

github.blog
1 points·by going_north·قبل 12 شهرًا·0 comments

Developer marketing is show and tell

buttondown.com
3 points·by going_north·السنة الماضية·0 comments

Publish your designs on the web with Figma Sites

figma.com
1 points·by going_north·السنة الماضية·0 comments

The Perils of Default Arguments in Python

eaj.no
1 points·by going_north·السنة الماضية·1 comments

comments

going_north
·قبل 6 أشهر·discuss
You can get a lot closer with only small modifications:

    input[type="radio"] {
      appearance: none;
      margin: 0;
      width: 25px;
      height: 25px;
      background: white;
      border-radius: 50%;
      display: inline-grid;
      place-content: center;
      box-shadow: 0 2px 10px color(display-p3 0 0 0/0.5);

      &::before {
        content: "";
        width: 11px;
        height: 11px;
        border-radius: 50%;
      }

      &:checked::before {
        background: color(display-p3 0.383 0.317 0.702);
      }
    }
Here's a link to a codepen so you can see what it looks like without rendering it yourself: https://codepen.io/erikaja/pen/RNRVMyB
going_north
·قبل 10 أشهر·discuss
I've been happy with both Render and fly.io
going_north
·قبل 11 شهرًا·discuss
I clicked through all of the Chrome and Google warnings, but now even my national ISP has blocked the site.
going_north
·قبل 11 شهرًا·discuss
Typing speed tests are always fun. I enjoy https://monkeytype.com/
going_north
·قبل 12 شهرًا·discuss
Chiming in to recommend it too! The policies are really good too, for instance this is one from our code base:

    policy action(:invite_user) do
      forbid_unless actor_attribute_equals(:role, :admin)
      authorize_if {App.Checks.OnlyAllowedRoles, roles: [:student, :parent]}
    end
And what's nice is that these policies apply for both the API and the frontend code without having to do anything extra :)
going_north
·السنة الماضية·discuss
Nice, thanks for the writeup! A small heads up, Phoenix is listed twice in the tech stack section.
going_north
·السنة الماضية·discuss
The RSS feed is another good option!
going_north
·السنة الماضية·discuss
It looks like a miniature gaming system (like a GameBoy) that also lets you make your own games and upload them to the device: https://www.arduboy.com/
going_north
·السنة الماضية·discuss
Maybe torturing the metaphor, but building a road up the mountain often ruins the view.
going_north
·السنة الماضية·discuss
This seems like a non-story to me. Once you post a code repo on the public internet, and especially on a site as prolific as GitHub, you should treat everything in there as public information.

> Dror said that Lasso reached out to all affected companies who were “severely affected” by the data exposure and advised them to rotate or revoke any compromised keys.

If the "companies affected" have any idea what they are doing all of the exposed tokens and the like would have been rotated a long time ago.
going_north
·قبل سنتين·discuss
One of the replies captures my thoughts quite well:

> "Email apps tone policing people" is quite high on my dystopian tech nightmare list.
going_north
·قبل سنتين·discuss
CSS first configuration is a good change! It seems like it would makes it easier to combine tailwind with regular CSS files which still uses the same design tokens. This is useful e.g. when creating a site with a component architecture where the components are styled with CSS, but some of the content comes from CSS or markdown.
going_north
·قبل 3 سنوات·discuss
> thus far

that's the spirit! :)