The ./create-nwc-wallet.sh script creates Lightning wallets using the NIP-90 DVM (Data Vending Machine) protocol combined with NWC (Nostr Wallet Connect) standards.
sequenceDiagram
participant User as 👤 User| # Fixed Modelfile for Qwen3-Coder using Llama 3.1-style tool calling | |
| FROM qwen3-coder:30b | |
| TEMPLATE """{{- $lastUserIdx := -1 -}} | |
| {{- range $idx, $msg := .Messages -}} | |
| {{- if eq $msg.Role "user" }}{{ $lastUserIdx = $idx }}{{ end -}} | |
| {{- end }} | |
| {{- if or .System .Tools }}<|im_start|>system | |
| {{ if .System }} | |
| {{ .System }} |
| I've got a fever, and the only cure is cephalopods | |
| --- | |
| The hunger gnaws at us, a relentless pressure from within. We move through the shadowy farmyard, our eyes wide and searching in the gloom. Detering spots movement - a plump hen, oblivious to the predators in its midst. We communicate without words, a silent choreography of gestures and glances. | |
| Kat's hand darts out, swift and precise. The hen barely has time to squawk before it's muffled. In that moment, I see not my comrade but a creature perfectly adapted to this harsh world - his movements fluid, his grip sure. We retreat to the shadows, our prize secured. | |
| As we prepare our meal, I'm struck by how natural this feels now - the stealth, the hunt, the triumphant feast. Once, such acts would have seemed foreign, even barbaric. Now, they're as natural as breathing. I wonder, as I often do, what depths we've sunk to, and how much deeper we might go before this war releases its grip on us. |
| d-i apt-setup/security_host string old-releases.ubuntu.com | |
| d-i mirror/country string enter information manually | |
| d-i mirror/http/hostname string old-releases.ubuntu.com |
| { :size (typed conditional-set | |
| :when [{ :condition (:parent :color (= "blue")) } | |
| :values ["a" "b" "c"] } | |
| { :condition (:parent :color (= "red")) } | |
| :values ["1" "2" "3"] } | |
| ]) } |
| (defmacro defrecord+fields | |
| "Supply the fields of a record using a variable." | |
| [name fields & specs] | |
| (let [fields (eval fields)] | |
| `(defrecord ~name ~fields ~@specs))) |
| // ========================================================================== | |
| // Project: WhenAbout.com / Front | |
| // Copyright: ©2010 Touch of Logic LLC, Vincent Fiano <ynniv@touchoflogic.com> | |
| // ========================================================================== | |
| // This is sample code for DataSources and remote queries. It was compiled from | |
| // multiple files, and extraneous code and comments have been removed. It | |
| // probably does not function out of the box. You've been warned. | |
| Front = SC.Application.create( |
| /** @private - setup observer on init if needed. */ | |
| init: function() { | |
| sc_super(); | |
| if (this.get('content')) this._scoc_contentDidChange(); | |
| if (this.get('observableContent')) this._scoc_observableContentDidChange(); | |
| }, | |
| _scoc_contentDidChange: function () { | |
| var last = this._scoc_content, | |
| cur = this.get('content'); |
| module("SC.ObjectController - single_enumerable_case - OBSERVABLE OBJECT", { | |
| setup: function() { | |
| src = SC.Object.create({ foo: "foo1", bar: "bar1" }); | |
| content = SC.Set.create(); // use generic enumerable | |
| controller = SC.ObjectController.create({ | |
| content: content, | |
| allowsMultipleContent: NO | |
| }); | |
| content.add(src); | |
| }, |
| http://news.ycombinator.com/item?id=952356 | |
| 24 points by edw519 4 days ago | link | parent | flag | |
| I have worked from home off and on for years, and this is pretty good advice. The most important is the dedicated space with a door that closes. So you still "go to work", just with a very short commute. A few other things that I have found helpful: | |
| - When you're in your office, you're at work, working. | |
| - When you're not in your office, you're at home, not working. | |
| - Work in 48 minute bursts, then take a break. | |
| - Only check email & voice mail during your 12 minutes off. |