Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
css
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
61.
▲
by
css
5y ago
I searched for a ton of products I use on this site and found no results–I find EWG[0] to have a much better dataset. [0]: https://www.ewg.org/skindeep/
62.
▲
by
css
5y ago
Keynote.app does this already if you have multiple items stacked on top of each other or an item made of several smaller items (like charts). It’s a really hand way to “drill down” to edit stuff in your presentation. Here is an example wher
63.
▲
by
css
5y ago
Oops, yeah. Looks like there are not really any docs for the existing (better) system: https://docs.mattermost.com/messaging/sending-receiving-mess...
64.
▲
by
css
5y ago
Slack threads don’t (or at least, didn’t; it’s been a couple years) show in the main message feed, they show when you expand the thread into the sidebar. In the feed, it shows the original message with an “n replies” text below it. In Matte
65.
▲
by
css
5y ago
Of all the chat apps I have used, Mattermost's implementation of threads/replies [0] has felt the most natural. That said, all implementations I've tried leave something to be desired. [0]: https://docs.mattermost.
66.
▲
by
css
5y ago
The article title was too long for me to include the full context. From Dell: > Yes, this was driven by the California Energy Commission (CEC) Tier 2 implementation that defined a mandatory energy efficiency standard for PCs – including
67.
▲
by
css
5y ago
I have always had a suspicion that this is the most expedient course of action from a company's perspective: the velocity of media is so fast nowadays that any controversy will be forgotten by the next week.
68.
▲
by
css
5y ago
Yeah, this is an awesome change of pace for an industry that notoriously locks down its hardware.
69.
▲
by
css
5y ago
From the FAQ [0]: - What OS is Steam Deck running? SteamOS 3.0, a new version of SteamOS based on Arch Linux. - Will people be able to install Windows, or other 3rd party content? Yes. Steam Deck is a PC, and players will be able to install
70.
▲
by
css
5y ago
In the above example, the remaining balance gets accounted for as a loss to maintain the fiction of the facility’s not-for-profit status. It also provides the basis for a kickback the federal government sends to this hospital called Disprop
71.
▲
by
css
5y ago
I like the way v8 handles this problem: https://github.com/v8/v8/blob/dc712da548c7fb433caed56af9a021...
72.
▲
by
css
5y ago
> If you don't want your SSID broadcasted, turn off the broadcast Hiding the network name doesn't conceal the network from detection or secure it against unauthorized access. It also makes your devices constantly send out that
73.
▲
by
css
5y ago
I've been using Mattermost Incidents [0] with a Pull Request playbook like this for awhile, but its nice to see something else in this space. Wish it were open source. [0]: https://docs.mattermost.com/administration
74.
▲
by
css
5y ago
I don't use Facebook, but his Instagram definitely showed a blank "this user has been suspended" page before.
75.
▲
by
css
5y ago
His accounts are back on Facebook properties, though. Previously they would display as a blank suspended page. https://www.instagram.com/realDonaldTrump/ https://www.facebook.com/DonaldTrump
76.
▲
by
css
5y ago
This is a great video, but it glosses over some of the technical aspects because it assumes the viewer already understands them. This video provides a basic gestalt of the tech used for these runs: https://www.youtube.com/wa
77.
▲
by
css
5y ago
Projects like this make me sad for what we have lost. All of Instagram used to provide open RSS feeds [0]. They also used to brag about third parties making interesting things with Instagram data [1], [2]. You can see their old blog posts b
78.
▲
by
css
5y ago
A question I always have for diagramming software is how it handles refactoring. This is often the most frustrating part of every tool. How does IcePanel improve this experience? Group selection and dragging to hopefully have enough room fo
79.
▲
by
css
5y ago
They aren't refusing; there is an unlimited duration now as long as you keep paying. > AppleCare+ for Mac extends your coverage from your AppleCare+ purchase date and adds up to two incidents of accidental damage protection every 12
80.
▲
by
css
5y ago
This is really cool, I used it to implement a (very) basic trie: trie_struct: Callable = lambda: defaultdict(trie_struct) trie = trie_struct() for word in words: ref = trie for char in word: ref =
81.
▲
by
css
5y ago
What does the European definition of "right to repair" entail, then?
82.
▲
by
css
5y ago
This article moves the goalposts on what "right to repair" is several times. It generally means that manufacturers should not hide schematics from device users or disallow third party manufacturing of first party parts. However, t
83.
▲
by
css
5y ago
> Milk has quite a bit of sugar Sugar content without regard to glycemic index [0] is meaningless. Cow milk contains lactose, which has a very low glycemic index. Most milk replacements use maltose, which has almost double the glycemic l
84.
▲
by
css
5y ago
I love stuff like this. I searched my favorite variety [0] and learned that the genetics are actually patented and the university that owns it has an entire program for breeding apples [1]. [0]: https://adamapples.blogspot.com&#x
85.
▲
by
css
5y ago
I cannot imagine consuming that much food that quickly... what is this supposed to represent? - 2 eggs: 150 cal - 2 bacon strips: 50 cal - 2 toast slices: 150 cal - 4oz hash brown: 370 cal - 8 oz whole milk: 100 cal Before butter and oil, t
86.
▲
by
css
5y ago
I have not had difficulty writing code for AWS Lambda. I just write everything locally and run the code by invoking the entry point with the proper event and context dictionaries. For debugging, I just attach a debugger and run the entry po
87.
▲
by
css
5y ago
The check whether a token is a number happens before the check whether a token is a name, as evinced by both the source code and a trivial debugger session. You are conflating the fact that there is an order to the rules with a strawman tha
88.
▲
by
css
5y ago
> 0xfor can never be a name But to know if a token is a name, it has to check, and that check never happens because the tokenizer yields when the number case hits. You can attach a debugger and see for yourself. > It doesn't matt
89.
▲
by
css
5y ago
I’m suggesting that it has to happen in a specific order, which it does. Regardless of the direction the tokenization process reads, the rules can’t be evaluated concurrently. > the first thing it sees looks like the start of a number Ye
90.
▲
by
css
5y ago
Because the hexadecimal parsing rule [0] happens before [1] the rule that parses names [2]: % cat 0xfor.py 0xfor 1 % python -m tokenize -e '0xfor.py' 0,0-0,0: ENCODING 'utf-8' 1,0-1
More ›