HackerTrans
トップ新着トレンドコメント過去質問紹介求人

going_north

no profile record

投稿

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

eaj.no
3 ポイント·投稿者 going_north·11 か月前·1 コメント

A little Slack notifier in Elixir

eaj.no
1 ポイント·投稿者 going_north·12 か月前·0 コメント

Upcoming deprecation of GitHub Command Palette feature preview

github.blog
1 ポイント·投稿者 going_north·12 か月前·0 コメント

Developer marketing is show and tell

buttondown.com
3 ポイント·投稿者 going_north·昨年·0 コメント

Publish your designs on the web with Figma Sites

figma.com
1 ポイント·投稿者 going_north·昨年·0 コメント

The Perils of Default Arguments in Python

eaj.no
1 ポイント·投稿者 going_north·昨年·1 コメント

コメント

going_north
·6 か月前·議論
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 か月前·議論
I've been happy with both Render and fly.io
going_north
·11 か月前·議論
I clicked through all of the Chrome and Google warnings, but now even my national ISP has blocked the site.
going_north
·11 か月前·議論
Typing speed tests are always fun. I enjoy https://monkeytype.com/
going_north
·12 か月前·議論
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
·昨年·議論
Nice, thanks for the writeup! A small heads up, Phoenix is listed twice in the tech stack section.
going_north
·昨年·議論
The RSS feed is another good option!
going_north
·昨年·議論
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
·昨年·議論
Maybe torturing the metaphor, but building a road up the mountain often ruins the view.
going_north
·昨年·議論
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
·2 年前·議論
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
·2 年前·議論
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
·2 年前·議論
It's because of this element in one of the final sections [1]:

    <code>kstat.zfs.<pool>.misc.ddt_stats_<checksum></code>
Typesetting code on a narrow screen is tricky!

[1] https://despairlabs.com/blog/posts/2024-10-27-openzfs-dedup-...
going_north
·3 年前·議論
> thus far

that's the spirit! :)