This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
description = "windsurf-fhs"; | |
inputs.nixpkgs.url = "github:NixOS/nixpkgs/5633bcff0c6162b9e4b5f1264264611e950c8ec7"; | |
outputs = | |
{ self, nixpkgs }: | |
let | |
system = "x86_64-linux"; | |
pkgs = import nixpkgs { inherit system; }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ self, config, lib, flake-parts-lib, ... }: | |
let | |
inherit (flake-parts-lib) mkPerSystemOption; | |
inherit (lib) mkOption types; | |
inherit (types) functionTo raw listOf; | |
in { | |
# define all of the options on our flake | |
options = { | |
perSystem = mkPerSystemOption |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2layout-component---index-5c7c5c481e75264dca3b.js Failed to load resource: the server responded with a status of 404 () | |
sw.js:276 Uncaught (in promise) TypeError: Request scheme 'chrome-extension' is unsupported | |
at sw.js:276 | |
at <anonymous> | |
page-component---src-pages-index-js-9c8473a324dc925b5ce2.js Failed to load resource: the server responded with a status of 404 () | |
2layout-component---index-5c7c5c481e75264dca3b.js Failed to load resource: the server responded with a status of 404 () | |
sw.js:276 Uncaught (in promise) TypeError: Request scheme 'chrome-extension' is unsupported | |
at sw.js:276 | |
at <anonymous> | |
(anonymous) @ sw.js:276 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Daichi Shinozaki <[email protected]> | |
# Contributor: Jean-Sébastien Ney <[email protected]> | |
# Contributor: James Cleveland <[email protected]> | |
# Contributor: Eimantas Bunevičius <[email protected]> | |
_cfgdir=/opt/openresty/nginx/conf | |
_tmpdir=/var/lib/openresty | |
pkgname=openresty | |
pkgver=1.11.2.2 | |
pkgrel=1 | |
pkgdesc="A Fast and Scalable Web Platform by Extending NGINX with Lua" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
template(name="Profile") | |
.sidebar-profile | |
+ProfileDetails | |
.main-profile | |
.feed-profile | |
+MainProfileContainer | |
.add-profile | |
+SideProfileContainer | |
.clear-fix |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Schemas.Link = (collection) ->new SimpleSchema | |
url: | |
type: String | |
regEx: SimpleSchema.RegEx.Url | |
meta: | |
type: Object | |
optional:true | |
autoValue: -> | |
if this.isInsert | |
doc_id = this.field('_id') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Utils.getDescendantProp = (obj, desc)-> | |
arr = desc.split(".") | |
first = arr[0] | |
while arr.length and obj[first] | |
obj = obj[first] | |
first = arr.shift() | |
return obj | |
Schemas.buildDenormalizedRelation = (collection,fields,pk,fk)-> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ParentSchemaCol = new Meteor.Collection('parentcol') | |
@SubSchemaCol = new Meteor.Collection('subcol') | |
subSchema = new SimpleSchema { | |
autovalue: { | |
type: Date | |
autoValue: -> | |
new Date() | |
} | |
value:{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Template.Foo.created = function(){ | |
console.log(this); | |
this.data.store = new ReactiveDict() | |
this.data.store.set('post',{}); | |
this.data.store.set('images',[]); | |
this.data.store.set('files',[]); | |
}; | |
Template.Foo.events({ |