diff --git a/analyze.go b/analyze.go index 215e7a676..db2279e8e 100644 --- a/analyze.go +++ b/analyze.go @@ -1,84 +1,98 @@ package main import ( + "errors" "fmt" "slices" "strings" - "github.com/jmoiron/sqlx" - _ "github.com/mattn/go-sqlite3" + "github.com/looplab/tarjan" + "gorm.io/driver/sqlite" + "gorm.io/gorm" ) type Analysis struct { - db *sqlx.DB + db *gorm.DB + relMeClusters map[string]int + relMeClustersRev map[int][]string } func NewAnalysis() *Analysis { var err error a := Analysis{} - a.db, err = sqlx.Open("sqlite3", "feed2pages.db") - ohno(err) - err = a.db.Ping() + a.db, err = gorm.Open(sqlite.Open("feed2pages.db"), &gorm.Config{ + PrepareStmt: true, + }) ohno(err) return &a } -func (a *Analysis) Close() { - a.db.Close() -} - func (a *Analysis) PopulateCategoriesForFeed(feed *FeedInfo) { - rows, err := a.db.Query(` - SELECT category - FROM feeds_by_categories - WHERE link = ? - `, - feed.Params.FeedLink, - ) - ohno(err) + var cats []string + a.db. + Model(&FeedsByCategory{}). + Where("link = ?", feed.Params.FeedLink). + Pluck("category", &cats) - for rows.Next() { - var cat string - err = rows.Scan(&cat) - ohno(err) - if !slices.Contains(feed.Params.Categories, cat) && len(cat) > 1 { - feed.Params.Categories = append(feed.Params.Categories, cat) - } - } + slices.Sort(cats) + cats = slices.Compact(cats) + feed.Params.Categories = append(feed.Params.Categories, cats...) if len(feed.Params.Categories) == 0 { a.PopulateCategoriesForFeedByHashtag(feed) } } +func (a *Analysis) PopulateLanguageForFeed(feed *FeedInfo) { + var language FeedsByLanguage + result := a.db. + Where("link = ?", feed.Params.FeedLink). + First(&language) + if errors.Is(result.Error, gorm.ErrRecordNotFound) { + return + } + ohno(result.Error) + feed.Params.Language = language.Language +} + func (a *Analysis) PopulateCategoriesForPost(feed *FeedInfo) { post_link := feed.Params.LastPostLink if post_link == "" { return } - rows, err := a.db.Query(` - SELECT category - FROM posts_by_categories - WHERE link = ? - `, - post_link, - ) - ohno(err) - for rows.Next() { - var cat string - err = rows.Scan(&cat) - ohno(err) - if !slices.Contains(feed.Params.LastPostCategories, cat) && len(cat) > 1 { - feed.Params.LastPostCategories = append(feed.Params.LastPostCategories, cat) - } - } + var cats []string + a.db. + Model(&PostsByCategory{}). + Where("link = ?", post_link). + Pluck("category", &cats) + + slices.Sort(cats) + cats = slices.Compact(cats) + feed.Params.LastPostCategories = append(feed.Params.LastPostCategories, cats...) if len(feed.Params.LastPostCategories) == 0 { a.PopulateCategoriesForPostByHashtag(feed) } } +func (a *Analysis) PopulateLanguageForPost(feed *FeedInfo) { + post_link := feed.Params.LastPostLink + if post_link == "" { + return + } + + var language PostsByLanguage + result := a.db. + Where("link = ?", post_link). + First(&language) + if errors.Is(result.Error, gorm.ErrRecordNotFound) { + return + } + ohno(result.Error) + feed.Params.LastPostLanguage = language.Language +} + func isHashtag(s string) bool { // looks close enough // TODO: mirror the Twitter approach: https://github.com/twitter/twitter-text @@ -108,31 +122,21 @@ func (a *Analysis) PopulateCategoriesForPostByHashtag(feed *FeedInfo) { } func (a *Analysis) PopulateLastPostForFeed(feed *FeedInfo) { - rows, err := a.db.Query(` - SELECT date, description, title, post_link, guid - FROM posts - WHERE feed_id = ? - ORDER BY date DESC - LIMIT 1 - `, - feed.Params.FeedID, - ) - ohno(err) - - var date string - var description string - var title string - var link string - var guid string - for rows.Next() { - err = rows.Scan(&date, &description, &title, &link, &guid) - ohno(err) + row := Post{} + result := a.db. + Where("feed_id = ?", feed.Params.FeedID). + Order("date desc"). + First(&row) + if errors.Is(result.Error, gorm.ErrRecordNotFound) { + return } - feed.Params.LastPostTitle = title - feed.Params.LastPostDesc = description - feed.Params.LastPostDate = date - feed.Params.LastPostLink = link - feed.Params.LastPostGuid = guid + ohno(result.Error) + + feed.Params.LastPostTitle = row.Title + feed.Params.LastPostDesc = row.Description + feed.Params.LastPostDate = row.Date + feed.Params.LastPostLink = row.PostLink + feed.Params.LastPostGuid = row.Guid a.PopulateCategoriesForPost(feed) } @@ -148,24 +152,18 @@ func (a *Analysis) PopulateBlogrollsForFeed(feed *FeedInfo) { } } - query, args, err := sqlx.In(` - SELECT destination_url - FROM links - WHERE destination_type = 3 - AND source_url IN(?); - `, - source_urls, - ) - ohno(err) - - query = a.db.Rebind(query) - rows, err := a.db.Query(query, args...) + rows, err := a.db. + Model(&Link{}). + Select("destination_url"). + Where("destination_type = 3"). + Where("source_url IN(?)", source_urls). + Rows() ohno(err) for rows.Next() { - var link string - err = rows.Scan(&link) - ohno(err) + var row Link + a.db.ScanRows(rows, &row) + link := row.DestinationUrl if !slices.Contains(feed.Params.Blogrolls, link) { feed.Params.Blogrolls = append(feed.Params.Blogrolls, link) } @@ -174,25 +172,22 @@ func (a *Analysis) PopulateBlogrollsForFeed(feed *FeedInfo) { // Website <==> Feed func (a *Analysis) PopulateWebsitesForFeedURL(feed *FeedInfo) { - // Find websites that point to this feed - rows, err := a.db.Query(` - SELECT source_url - FROM links - WHERE destination_url = ? - AND destination_type = ? - AND source_type = ? - `, - feed.Params.FeedLink, - NODE_TYPE_FEED, - NODE_TYPE_WEBSITE, - ) + rows, err := a.db. + Model(&Link{}). + Select("source_url"). + Where(Link{ + DestinationUrl: feed.Params.FeedLink, + DestinationType: NODE_TYPE_FEED, + SourceType: NODE_TYPE_WEBSITE, + }). + Rows() ohno(err) websites := []string{} for rows.Next() { - var link string - err = rows.Scan(&link) - ohno(err) + var row Link + a.db.ScanRows(rows, &row) + link := row.SourceUrl if !slices.Contains(websites, link) { websites = append(websites, link) feed.Params.Websites[link] = false @@ -206,107 +201,37 @@ func (a *Analysis) PopulateWebsitesForFeedURL(feed *FeedInfo) { // Now check that each feed points to the website // we want bidirectional links here to prevent // non-official pages from getting linked - query, args, err := sqlx.In(` - SELECT destination_url - FROM links - WHERE source_url = ? - AND source_type = ? - AND destination_url IN(?) - AND destination_type = ? - `, - feed.Params.FeedLink, - NODE_TYPE_FEED, - websites, - NODE_TYPE_WEBSITE, - ) - ohno(err) - - query = a.db.Rebind(query) - rows, err = a.db.Query( - query, - args..., - ) + rows, err = a.db. + Model(&Link{}). + Select("destination_url"). + Where(Link{ + SourceUrl: feed.Params.FeedLink, + SourceType: NODE_TYPE_FEED, + DestinationType: NODE_TYPE_WEBSITE, + }). + Where("destination_url IN(?)", websites). + Rows() ohno(err) for rows.Next() { - var link string - err = rows.Scan(&link) - ohno(err) + var row Link + a.db.ScanRows(rows, &row) + link := row.DestinationUrl feed.Params.Websites[link] = true } } func (a *Analysis) PopulateRelMeForWebsites(feed *FeedInfo) { - // Only consider rel=me links from validated pages - validatedWebsites := []string{} for url, validated := range feed.Params.Websites { if validated { - validatedWebsites = append(validatedWebsites, url) + clusterId, has := a.relMeClusters[url] + if has { + for _, link := range a.relMeClustersRev[clusterId] { + feed.Params.RelMe[link] = true + } + } } } - if len(validatedWebsites) < 1 { - return - } - - query, args, err := sqlx.In(` - SELECT destination_url - FROM links - WHERE source_url IN(?) - AND link_type = ? - `, - validatedWebsites, - "rel_me", - ) - ohno(err) - - query = a.db.Rebind(query) - rows, err := a.db.Query( - query, - args..., - ) - ohno(err) - - pendingRelMe := []string{} - for rows.Next() { - var link string - err = rows.Scan(&link) - ohno(err) - pendingRelMe = append(pendingRelMe, link) - feed.Params.RelMe[link] = false - } - - if len(pendingRelMe) < 1 { - return - } - - // Look for backlinks - query, args, err = sqlx.In(` - SELECT source_url - FROM links - WHERE source_url IN(?) - AND destination_url IN(?) - AND link_type = ? - `, - pendingRelMe, - validatedWebsites, - "rel_me", - ) - ohno(err) - - query = a.db.Rebind(query) - rows, err = a.db.Query( - query, - args..., - ) - ohno(err) - - for rows.Next() { - var link string - err = rows.Scan(&link) - ohno(err) - // Validated! - feed.Params.RelMe[link] = true - } } func (a *Analysis) CollectWebsiteRecommendations(feed *FeedInfo) []string { @@ -314,28 +239,19 @@ func (a *Analysis) CollectWebsiteRecommendations(feed *FeedInfo) []string { return []string{} } - query, args, err := sqlx.In(` - SELECT destination_url, destination_type - FROM links - WHERE source_url IN(?); - `, - feed.Params.Blogrolls, - ) - ohno(err) - - query = a.db.Rebind(query) - rows, err := a.db.Query( - query, - args..., - ) + rows, err := a.db. + Model(&Link{}). + Select("destination_url", "destination_type"). + Where("source_url IN(?)", feed.Params.Blogrolls). + Rows() ohno(err) websites := []string{} for rows.Next() { - var link string - var linkType int64 - err = rows.Scan(&link, &linkType) - ohno(err) + var row Link + a.db.ScanRows(rows, &row) + link := row.DestinationUrl + linkType := row.DestinationType if linkType == NODE_TYPE_FEED { if !slices.Contains(feed.Params.Recommended, link) { feed.Params.Recommended = append(feed.Params.Recommended, link) @@ -354,30 +270,19 @@ func (a *Analysis) PopulateRecommendationsFromWebsites(feed *FeedInfo, websites return } - query, args, err := sqlx.In(` - SELECT destination_url - FROM links - WHERE destination_type = ? - AND source_url IN(?); - `, - NODE_TYPE_FEED, - websites, - ) - ohno(err) - - query = a.db.Rebind(query) - rows, err := a.db.Query( - query, - args..., - ) + rows, err := a.db. + Model(&Link{}). + Select("destination_url"). + Where("destination_type = ?", NODE_TYPE_FEED). + Where("source_url IN(?)", websites). + Rows() ohno(err) fmt.Printf("\tDBG:Websites: %v\n", websites) for rows.Next() { - var link string - err = rows.Scan(&link) - ohno(err) - + var row Link + a.db.ScanRows(rows, &row) + link := row.DestinationUrl fmt.Printf("\tDBG: Feed From Websites: %s\n", link) if !slices.Contains(feed.Params.Recommended, link) { @@ -387,30 +292,21 @@ func (a *Analysis) PopulateRecommendationsFromWebsites(feed *FeedInfo, websites } func (a *Analysis) FindBlogrollsSuggestingFeed(feed *FeedInfo) []string { - query, args, err := sqlx.In(` - SELECT source_url - FROM links - WHERE destination_url = ? - AND source_type = ?; - `, - feed.Params.FeedLink, - NODE_TYPE_BLOGROLL, - ) - ohno(err) - - query = a.db.Rebind(query) - rows, err := a.db.Query( - query, - args..., - ) + rows, err := a.db. + Model(&Link{}). + Select("source_url"). + Where(Link{ + DestinationUrl: feed.Params.FeedLink, + SourceType: NODE_TYPE_BLOGROLL, + }). + Rows() ohno(err) blogrolls := []string{} for rows.Next() { - var link string - err = rows.Scan(&link) - ohno(err) - + var row Link + a.db.ScanRows(rows, &row) + link := row.SourceUrl if !slices.Contains(blogrolls, link) { blogrolls = append(blogrolls, link) } @@ -423,30 +319,19 @@ func (a *Analysis) FindWebsitesRecommendingBlogrolls(blogrolls []string) []strin return []string{} } - query, args, err := sqlx.In(` - SELECT source_url - FROM links - WHERE destination_url IN(?) - AND source_type = ?; - `, - blogrolls, - NODE_TYPE_WEBSITE, - ) - ohno(err) - - query = a.db.Rebind(query) - rows, err := a.db.Query( - query, - args..., - ) + rows, err := a.db. + Model(&Link{}). + Select("source_url"). + Where("source_type = ?", NODE_TYPE_WEBSITE). + Where("destination_url IN(?)", blogrolls). + Rows() ohno(err) websites := []string{} for rows.Next() { - var link string - err = rows.Scan(&link) - ohno(err) - + var row Link + a.db.ScanRows(rows, &row) + link := row.SourceUrl if !slices.Contains(websites, link) { websites = append(websites, link) } @@ -455,12 +340,17 @@ func (a *Analysis) FindWebsitesRecommendingBlogrolls(blogrolls []string) []strin } func (a *Analysis) PopulateScore(feed *FeedInfo) { + isSocial := false + // Does this site recommend others? // More recommendations are better // until you reach 20 // Half a point each, up to 10 points promotesScore := min(len(feed.Params.Recommended), 20) / 2 feed.Params.ScoreCriteria["promotes"] = promotesScore + if promotesScore > 0 { + isSocial = true + } // Do others recommend this feed? // 5 points if any @@ -469,6 +359,9 @@ func (a *Analysis) PopulateScore(feed *FeedInfo) { promotedScore = 5 } feed.Params.ScoreCriteria["promoted"] = promotedScore + if promotedScore > 0 { + isSocial = true + } // Does this feed have a website? // +1 point @@ -492,6 +385,7 @@ func (a *Analysis) PopulateScore(feed *FeedInfo) { for _, verified := range feed.Params.RelMe { if verified { relMeScore = 2 + isSocial = true // TODO: keep this? } else { relMeScore = max(relMeScore, 1) } @@ -508,6 +402,10 @@ func (a *Analysis) PopulateScore(feed *FeedInfo) { postCatScore := min(len(feed.Params.LastPostCategories), 3) feed.Params.ScoreCriteria["postcats"] = postCatScore + // Does the feed specify a language? + feedLangScore := min(len(feed.Params.Language), 1) + feed.Params.ScoreCriteria["feedlangs"] = feedLangScore + // Does the feed have a title? // 3 points titleScore := 0 @@ -529,6 +427,9 @@ func (a *Analysis) PopulateScore(feed *FeedInfo) { for _, score := range feed.Params.ScoreCriteria { feed.Params.Score += score } + + // Track if the feed is part of the network + feed.Params.InNetwork = isSocial } func (a *Analysis) PopulateRecommenders(feed *FeedInfo, blogrolls []string, websites []string) { @@ -538,29 +439,18 @@ func (a *Analysis) PopulateRecommenders(feed *FeedInfo, blogrolls []string, webs return } - query, args, err := sqlx.In(` - SELECT source_url - FROM links - WHERE destination_url IN(?) - AND source_type = ?; - `, - targetUrls, - NODE_TYPE_FEED, - ) - ohno(err) - - query = a.db.Rebind(query) - rows, err := a.db.Query( - query, - args..., - ) + rows, err := a.db. + Model(&Link{}). + Select("source_url"). + Where("source_type = ?", NODE_TYPE_FEED). + Where("destination_url IN(?)", targetUrls). + Rows() ohno(err) for rows.Next() { - var link string - err = rows.Scan(&link) - ohno(err) - + var row Link + a.db.ScanRows(rows, &row) + link := row.SourceUrl if !slices.Contains(feed.Params.Recommender, link) { feed.Params.Recommender = append(feed.Params.Recommender, link) } @@ -574,6 +464,11 @@ func (a *Analysis) FixUp(feed *FeedInfo) { feed.Params.Categories = feed.Params.LastPostCategories } + // Assume the feed generally uses the language of the most recent post + if len(feed.Params.Language) == 0 { + feed.Params.Language = feed.Params.LastPostLanguage + } + // Something in hugo breaks if there's a trailing slash for i, c := range feed.Params.Categories { if strings.HasSuffix(c, "/") { @@ -587,25 +482,60 @@ func (a *Analysis) FixUp(feed *FeedInfo) { } } +func (a *Analysis) BuildRelMeClusters() (map[string]int, map[int][]string) { + links := make(map[interface{}][]interface{}) + rows, err := a.db. + Model(&Link{}). + Select("source_url", "destination_url"). + Where("link_type = ?", "rel_me"). + Rows() + ohno(err) + + for rows.Next() { + var row Link + a.db.ScanRows(rows, &row) + source_url := row.SourceUrl + destination_url := row.DestinationUrl + if _, has := links[source_url]; !has { + links[source_url] = []interface{}{} + } + links[source_url] = append(links[source_url], destination_url) + } + + // Find strongly connected components + // These are verified rel=me links + connections := tarjan.Connections(links) + + // Restructure + out := map[string]int{} + outRev := map[int][]string{} + connId := 0 + for _, connected := range connections { + group := []string{} + for _, vertex := range connected { + out[vertex.(string)] = connId + group = append(group, vertex.(string)) + } + outRev[connId] = group + connId += 1 + } + + return out, outRev +} + func (a *Analysis) Analyze() { - feedRows, err := a.db.Query(` - SELECT description, date, title, feed_link, feed_id, feed_type, is_podcast, is_noarchive - FROM feeds;`, - ) + // Tarjan to consolidate all verified rel=me profiles + a.relMeClusters, a.relMeClustersRev = a.BuildRelMeClusters() + // clusters - { A=>1, B=>1, C=>2, D=2, E=>3, F=4 } + // reverse - { 1=>[A,B], 2=>[C,D], 3=>[E], 4=>[F] } + + rows, err := a.db. + Model(&Feed{}). + Rows() ohno(err) - for feedRows.Next() { - var row ScanFeedInfo - err = feedRows.Scan( - &row.Description, - &row.Date, - &row.Title, - &row.FeedLink, - &row.FeedID, - &row.FeedType, - &row.IsPodcast, - &row.IsNoarchive, - ) - ohno(err) + for rows.Next() { + var row Feed + a.db.ScanRows(rows, &row) feed := NewFeedInfo(row) fmt.Printf("\n\nProcessing Feed: %s\n", feed.Title) a.PopulateWebsitesForFeedURL(feed) @@ -623,13 +553,18 @@ func (a *Analysis) Analyze() { fmt.Printf("\tIn Feeds: %v\n", feed.Params.Recommender) a.PopulateRelMeForWebsites(feed) a.PopulateCategoriesForFeed(feed) + a.PopulateLanguageForFeed(feed) a.PopulateLastPostForFeed(feed) + a.PopulateScore(feed) // Apply some hacks to improve content // but do this after the score is calculated a.FixUp(feed) - feed.Save() + // Ignore feeds outside the network or without content + if feed.Params.InNetwork && len(feed.Params.LastPostLink) > 0 { + feed.Save() + } } } diff --git a/consts.go b/consts.go index 5c04a6a98..081d28055 100644 --- a/consts.go +++ b/consts.go @@ -1,6 +1,7 @@ package main -type NodeType = int64 +// TODO was int64 +type NodeType = int const ( NODE_TYPE_SEED NodeType = iota diff --git a/content/discover/feed-0011fbf7cbba68c796796fa98956a31d.md b/content/discover/feed-0011fbf7cbba68c796796fa98956a31d.md new file mode 100644 index 000000000..83166c3ad --- /dev/null +++ b/content/discover/feed-0011fbf7cbba68c796796fa98956a31d.md @@ -0,0 +1,139 @@ +--- +title: Friendly Area Code +date: "1970-01-01T00:00:00Z" +description: Well come to my blog here you will read all about area code and its prospects. +params: + feedlink: https://livmciver.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 0011fbf7cbba68c796796fa98956a31d + websites: + https://livmciver.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Street All Area Code + last_post_description: On 2000 October 01, required utilization of 321 region code + starts in non-overlay region. Accordingly, lenient Dialing closes. All guests + should utilize the appropriate code when calling into Brevard + last_post_date: "2022-01-06T17:52:00Z" + last_post_link: https://livmciver.blogspot.com/2022/01/street-all-area-code.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 9b3c559a89d253e2e216a4a37d0f6dbc + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-0018dd34589965c0e654da4d99f2a3b8.md b/content/discover/feed-0018dd34589965c0e654da4d99f2a3b8.md new file mode 100644 index 000000000..ed04d74a7 --- /dev/null +++ b/content/discover/feed-0018dd34589965c0e654da4d99f2a3b8.md @@ -0,0 +1,52 @@ +--- +title: Linkage +date: "2024-07-09T03:28:13Z" +description: |- + updated daily because if I can't find at least one website to share every day, I need to turn in my Internet license! + + | Pronouns: he/him + | Occupatio... +params: + feedlink: https://linkage.lol/feed/ + feedtype: atom + feedid: 0018dd34589965c0e654da4d99f2a3b8 + websites: + https://linkage.lol/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://amerpie.lol/: true + https://amerpie.omg.lol/: true + https://amerpie2.micro.blog/: true + https://amerpiegateway.micro.blog/: true + https://apps.louplummer.lol/: true + https://linkage.lol/: true + https://louplummer.lol/: true + https://social.lol/@amerpie: true + last_post_title: Unsplash, Royalty Free Photography + last_post_description: Unsplash.com is a source for high-quality, royalty-free photography + for use by bloggers and wen designers + last_post_date: "2024-07-08T09:25:12Z" + last_post_link: https://linkage.lol/unsplash-royalty-free-photography/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 39c7b85f23ea878921060180eda2192d + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-0026f7644f1ce7e3030e26e00bbfad9b.md b/content/discover/feed-0026f7644f1ce7e3030e26e00bbfad9b.md index 86e90d705..cc3395ef6 100644 --- a/content/discover/feed-0026f7644f1ce7e3030e26e00bbfad9b.md +++ b/content/discover/feed-0026f7644f1ce7e3030e26e00bbfad9b.md @@ -22,17 +22,22 @@ params: last_post_date: "2024-04-16T00:00:00Z" last_post_link: https://tomcritchlow.com/2024/04/16/active-advisor/ last_post_categories: [] + last_post_language: "" last_post_guid: aeffc2a051fb5f95af20f2619442790a score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-0045e6f92d80280cf660069b33191cab.md b/content/discover/feed-0045e6f92d80280cf660069b33191cab.md new file mode 100644 index 000000000..64f8cdd67 --- /dev/null +++ b/content/discover/feed-0045e6f92d80280cf660069b33191cab.md @@ -0,0 +1,59 @@ +--- +title: ScummVM Music - Pixel Refresh +date: "1970-01-01T00:00:00Z" +description: Gaming & Tech | Retro & Modern +params: + feedlink: https://www.pixelrefresh.com/category/scummvm-music-enhancement-project/feed/ + feedtype: rss + feedid: 0045e6f92d80280cf660069b33191cab + websites: + https://www.pixelrefresh.com/category/scummvm-music-enhancement-project/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Leisure + - Technology + relme: + https://www.pixelrefresh.com/category/scummvm-music-enhancement-project/: true + last_post_title: 'Touche: The Adventures of the Fifth Musketeer Fan-Made Soundtrack + v2.0 Released for ScummVM' + last_post_description: |- + I release version 2.0 of the soundtrack for use within ScummVM, a complete rework of my original efforts with FLAC lossless version available for free. + Original post link: Touche: The Adventures of + last_post_date: "2023-07-28T10:56:51Z" + last_post_link: https://www.pixelrefresh.com/touche-the-adventures-of-the-fifth-musketeer-fan-made-soundtrack-v2-0-released-for-scummvm/ + last_post_categories: + - Ben Daglish + - Featured + - Gaming + - James Woodcock + - Music + - PC + - Point and Click Adventure + - Retro Gaming + - ScummVM + - ScummVM Music + - ScummVM Music Enhancement Project + - Software + - Soundtrack + - 'Touché: The Adventures of the Fifth Musketeer' + last_post_language: "" + last_post_guid: 39895580102db12bda8759146a05944e + score_criteria: + cats: 2 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: true + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-0047b05251af0dadb862dec350989ee4.md b/content/discover/feed-0047b05251af0dadb862dec350989ee4.md deleted file mode 100644 index 630a515a0..000000000 --- a/content/discover/feed-0047b05251af0dadb862dec350989ee4.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: OpenStack Nova Developer Rollup -date: "1970-01-01T00:00:00Z" -description: the digest you can digest -params: - feedlink: https://novarollup.wordpress.com/feed/ - feedtype: rss - feedid: 0047b05251af0dadb862dec350989ee4 - websites: - https://novarollup.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Meetings - relme: {} - last_post_title: Nova Weekly Team Meeting (R21) - last_post_description: 'Meeting log here: http://eavesdrop.openstack.org/irclogs/%23openstack-meeting/%23openstack-meeting.2016-05-19.log.html - June 2: newton-1, non-priority spec approval freeze Keystone Fernet token as' - last_post_date: "2016-05-19T23:05:28Z" - last_post_link: https://novarollup.wordpress.com/2016/05/19/nova-weekly-team-meeting-r21/ - last_post_categories: - - Meetings - last_post_guid: f7962c1187bc55dd5ae871436a1cc57d - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-005494c4f495953dfa982229ea70fa89.md b/content/discover/feed-005494c4f495953dfa982229ea70fa89.md new file mode 100644 index 000000000..1335f5092 --- /dev/null +++ b/content/discover/feed-005494c4f495953dfa982229ea70fa89.md @@ -0,0 +1,45 @@ +--- +title: Eclipse JCRM and other advantures +date: "2024-03-14T00:47:31-07:00" +description: "" +params: + feedlink: https://jcrmanagement.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 005494c4f495953dfa982229ea70fa89 + websites: + https://jcrmanagement.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ESE + - Eclipse JCR Management + - Eclipse Summit Europe + - JCRM + relme: + https://jcrmanagement.blogspot.com/: true + https://www.blogger.com/profile/18429739662459415277: true + last_post_title: Termination of JCR Management + last_post_description: "" + last_post_date: "2012-08-06T01:53:35-07:00" + last_post_link: https://jcrmanagement.blogspot.com/2012/08/termination-of-jcr-management.html + last_post_categories: [] + last_post_language: "" + last_post_guid: a71160d096b0c7e298ad38396bbb978b + score_criteria: + cats: 4 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-005dc110d471071328c586c377750055.md b/content/discover/feed-005dc110d471071328c586c377750055.md deleted file mode 100644 index 5b4da982b..000000000 --- a/content/discover/feed-005dc110d471071328c586c377750055.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Jeff Jarvis -date: "1970-01-01T00:00:00Z" -description: Public posts from @jeffjarvis@mastodon.social -params: - feedlink: https://mastodon.social/@jeffjarvis.rss - feedtype: rss - feedid: 005dc110d471071328c586c377750055 - websites: - https://mastodon.social/@jeffjarvis: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://buzzmachine.com/: true - https://gutenbergparenthesis.com/: false - https://jeffjarvis.medium.com/: false - https://journalism.cuny.edu/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-00649060fcc3ef0c0e222252bf3c7c04.md b/content/discover/feed-00649060fcc3ef0c0e222252bf3c7c04.md new file mode 100644 index 000000000..01ef86191 --- /dev/null +++ b/content/discover/feed-00649060fcc3ef0c0e222252bf3c7c04.md @@ -0,0 +1,42 @@ +--- +title: Mozilla on Oxymoronical +date: "1970-01-01T00:00:00Z" +description: Recent content in Mozilla on Oxymoronical +params: + feedlink: https://www.oxymoronical.com/blog/category/technical/mozilla/feed/index.xml + feedtype: rss + feedid: 00649060fcc3ef0c0e222252bf3c7c04 + websites: + https://www.oxymoronical.com/blog/category/technical/mozilla/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://www.oxymoronical.com/blog/category/technical/mozilla/: true + last_post_title: Tests don't replace Code Review + last_post_description: I frequently see a bold claim come up in tech circles. That + as a team you’re wasting time by doing code reviews. You should instead rely on + automated tests to catch bugs. This surprises me because + last_post_date: "2024-05-01T23:02:00+01:00" + last_post_link: https://www.oxymoronical.com/blog/2024/05/tests-dont-replace-code-review/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 175c5bab3c6b1d71b23097468384528e + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-00714cc59ddcfe2445231fad9e2f44d4.md b/content/discover/feed-00714cc59ddcfe2445231fad9e2f44d4.md deleted file mode 100644 index 2e91548b8..000000000 --- a/content/discover/feed-00714cc59ddcfe2445231fad9e2f44d4.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Comments for The Candybox Blog -date: "1970-01-01T00:00:00Z" -description: my adventures in video games & art -params: - feedlink: https://www.nathalielawhead.com/candybox/comments/feed - feedtype: rss - feedid: 00714cc59ddcfe2445231fad9e2f44d4 - websites: - https://www.nathalielawhead.com/candybox: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://mastodon.social/@alienmelon: false - last_post_title: Comment on The story of my first A MAZE (and why I wish we had - an event dedicated to solo-devs) by alienmelon - last_post_description: |- - In reply to Robert What. - - this is thoughtful. - last_post_date: "2024-06-02T13:25:11Z" - last_post_link: https://www.nathalielawhead.com/candybox/the-story-of-my-first-a-maze-and-why-i-wish-we-had-an-event-dedicated-to-solo-devs#comment-101740 - last_post_categories: [] - last_post_guid: 914d925717e88e5d5bd4f7eff694544e - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-0076f872dbc52b55c2d940f7fa48bb94.md b/content/discover/feed-0076f872dbc52b55c2d940f7fa48bb94.md index d72b2301d..259cdcd91 100644 --- a/content/discover/feed-0076f872dbc52b55c2d940f7fa48bb94.md +++ b/content/discover/feed-0076f872dbc52b55c2d940f7fa48bb94.md @@ -11,14 +11,10 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: - Comic - Fun Smutty Comics @@ -26,29 +22,34 @@ params: - Shareable Comics - Transcribed relme: {} - last_post_title: The Joust by Ray Starshine - last_post_description: 'A sexy nsfw comic for your knight time! Lay down your arms, - remove your gauntlets, and wipe the sweat from your brow: The fight is over and - you’ve earned this time to enjoy today’s fine erotic' - last_post_date: "2024-06-04T07:02:00Z" - last_post_link: https://www.ohjoysextoy.com/the-joust-ray-baehr/ + last_post_title: A Kiss For Luck by Lumen + last_post_description: Polish your helmet, brandish your steel, pucker up and muster + yourself for today’s NSFW comic by Lumen! An epic tale of chivalry, valor and + knights who steal kisses or maybe swallow swords?! I’m + last_post_date: "2024-07-02T07:02:00Z" + last_post_link: https://www.ohjoysextoy.com/a-kiss-for-luck-lumen/ last_post_categories: - Comic - Fun Smutty Comics - Guest Comics - Shareable Comics - Transcribed - last_post_guid: c95fd39519e1b8d4d38e4acecb6c7acc + last_post_language: "" + last_post_guid: a5301fad9b32088bb0fe2e725571575a score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 16 + score: 20 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-007ff0366704e3272b3e4ccb3845dc7c.md b/content/discover/feed-007ff0366704e3272b3e4ccb3845dc7c.md new file mode 100644 index 000000000..80f89d894 --- /dev/null +++ b/content/discover/feed-007ff0366704e3272b3e4ccb3845dc7c.md @@ -0,0 +1,137 @@ +--- +title: The Dwan of Nyquil Meme +date: "2024-03-05T21:31:07-08:00" +description: Best Nyquil Meme is here. Hope You like it. +params: + feedlink: https://esirkalemler1.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 007ff0366704e3272b3e4ccb3845dc7c + websites: + https://esirkalemler1.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Nyquil Meme is Love + last_post_description: "" + last_post_date: "2020-12-03T12:16:24-08:00" + last_post_link: https://esirkalemler1.blogspot.com/2020/12/nyquil-meme-is-love.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 938505b0efdeea233a16958768024bf0 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-0080a613bd4c47f26375f6bd5b51b7b7.md b/content/discover/feed-0080a613bd4c47f26375f6bd5b51b7b7.md new file mode 100644 index 000000000..ad04413b9 --- /dev/null +++ b/content/discover/feed-0080a613bd4c47f26375f6bd5b51b7b7.md @@ -0,0 +1,43 @@ +--- +title: Comments for Marc Richter's personal site +date: "1970-01-01T00:00:00Z" +description: About Linux, programming in Python and Music +params: + feedlink: https://www.marc-richter.info/comments/feed/ + feedtype: rss + feedid: 0080a613bd4c47f26375f6bd5b51b7b7 + websites: + https://www.marc-richter.info/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://mas.to/@mindofjudge: true + https://www.marc-richter.info/: true + last_post_title: Comment on Fix missing Google calendars in Evolution / CalDAV by + Tom Hirons + last_post_description: Amazing. So simple and so much time spent trying to fix this. + Thanks! + last_post_date: "2023-10-04T02:06:31Z" + last_post_link: https://www.marc-richter.info/fix-missing-google-calendars-in-evolution-caldav/#comment-65 + last_post_categories: [] + last_post_language: "" + last_post_guid: 872b7399278d3b26bbba90f43a53bbea + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-0088c27a63178f983b392eb72c982ae1.md b/content/discover/feed-0088c27a63178f983b392eb72c982ae1.md deleted file mode 100644 index 2be85290c..000000000 --- a/content/discover/feed-0088c27a63178f983b392eb72c982ae1.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Frederik Braun � -date: "1970-01-01T00:00:00Z" -description: Public posts from @freddy@security.plumbing -params: - feedlink: https://social.security.plumbing/@freddy.rss - feedtype: rss - feedid: 0088c27a63178f983b392eb72c982ae1 - websites: - https://social.security.plumbing/@freddy: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://frederik-braun.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-00982ea3aee0fe3aeff3a36b0814223c.md b/content/discover/feed-00982ea3aee0fe3aeff3a36b0814223c.md new file mode 100644 index 000000000..d756a5b44 --- /dev/null +++ b/content/discover/feed-00982ea3aee0fe3aeff3a36b0814223c.md @@ -0,0 +1,50 @@ +--- +title: Mäd Meier's Twike Post +date: "2024-03-19T03:23:33-07:00" +description: "" +params: + feedlink: https://madmeierstwike.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 00982ea3aee0fe3aeff3a36b0814223c + websites: + https://madmeierstwike.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - insurance + - twike 108 + relme: + https://4urit.blogspot.com/: true + https://huggenberg.blogspot.com/: true + https://madmeiersadventures.blogspot.com/: true + https://madmeierscloud.blogspot.com/: true + https://madmeierslife.blogspot.com/: true + https://madmeierstwike.blogspot.com/: true + https://mmsketches.blogspot.com/: true + https://www.blogger.com/profile/14628306885093928732: true + last_post_title: The Twike + last_post_description: "" + last_post_date: "2012-01-29T07:13:51-08:00" + last_post_link: https://madmeierstwike.blogspot.com/2011/05/twike.html + last_post_categories: + - twike 108 + last_post_language: "" + last_post_guid: fd7711ffbd655e6bf7d43cf303e784d2 + score_criteria: + cats: 2 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-00a268b04056d783f418112e9283baf1.md b/content/discover/feed-00a268b04056d783f418112e9283baf1.md new file mode 100644 index 000000000..e8d8106b7 --- /dev/null +++ b/content/discover/feed-00a268b04056d783f418112e9283baf1.md @@ -0,0 +1,46 @@ +--- +title: Triveni +date: "1970-01-01T00:00:00Z" +description: lines from the Indian Student Association of University of North Carolina, + Charlotte +params: + feedlink: https://uncctriveni.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 00a268b04056d783f418112e9283baf1 + websites: + https://uncctriveni.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://chetukuli.blogspot.com/: true + https://tweakeclipse.blogspot.com/: true + https://uncctriveni.blogspot.com/: true + https://www.blogger.com/profile/12901447063650143488: true + last_post_title: TPL begins... + last_post_description: '"1.5" said Mitesh which was immediately followed by a counter + bid. "2" said Mitesh and someone else said "2.5" which was followed by "3." The + audience at the auction were wondering when did the bid' + last_post_date: "2011-04-14T21:58:00Z" + last_post_link: https://uncctriveni.blogspot.com/2011/04/1.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 03cfa86e4a332871938b8eaadf76765c + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-00b07de02758132545b454fef24042fe.md b/content/discover/feed-00b07de02758132545b454fef24042fe.md deleted file mode 100644 index a7a11a4c4..000000000 --- a/content/discover/feed-00b07de02758132545b454fef24042fe.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Parimal Satyal (Félix) -date: "1970-01-01T00:00:00Z" -description: Public posts from @neustadt@mamot.fr -params: - feedlink: https://mamot.fr/@neustadt.rss - feedtype: rss - feedid: 00b07de02758132545b454fef24042fe - websites: - https://mamot.fr/@neustadt: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://neustadt.fr/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-00c6b73d8420204672757c56b75646ff.md b/content/discover/feed-00c6b73d8420204672757c56b75646ff.md deleted file mode 100644 index fc99ebfcd..000000000 --- a/content/discover/feed-00c6b73d8420204672757c56b75646ff.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Jon S. von Tetzchner -date: "1970-01-01T00:00:00Z" -description: Public posts from @jon@vivaldi.net -params: - feedlink: https://social.vivaldi.net/@jon.rss - feedtype: rss - feedid: 00c6b73d8420204672757c56b75646ff - websites: - https://social.vivaldi.net/@jon: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://vivaldi.com/: false - https://vivaldi.com/team/: true - https://vivaldi.net/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-00cfc367a76067c72d5cf82cb143acee.md b/content/discover/feed-00cfc367a76067c72d5cf82cb143acee.md deleted file mode 100644 index 7c3cb2768..000000000 --- a/content/discover/feed-00cfc367a76067c72d5cf82cb143acee.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: '@joeross.me - Joe Ross' -date: "1970-01-01T00:00:00Z" -description: |- - Lawyer, husband & dad. Geek, especially about the collision of #law & #tech, #IndieWeb. Often waiting for DNS changes to propagate. - - Web: joeross.me - Masto: joeross.me/mastodon - Threads: joeross -params: - feedlink: https://bsky.app/profile/did:plc:xxqlinj6dvgaz6grpxrvugj7/rss - feedtype: rss - feedid: 00cfc367a76067c72d5cf82cb143acee - websites: - https://bsky.app/profile/joeross.me: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - '#law' - - '#tech,' - - '#IndieWeb.' - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 3 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-00e567229cbeb12ea666ac87013e7d5e.md b/content/discover/feed-00e567229cbeb12ea666ac87013e7d5e.md deleted file mode 100644 index 9b3bcf54d..000000000 --- a/content/discover/feed-00e567229cbeb12ea666ac87013e7d5e.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Sally Lait -date: "1970-01-01T00:00:00Z" -description: Public posts from @sally@mastodon.social -params: - feedlink: https://mastodon.social/@sally.rss - feedtype: rss - feedid: 00e567229cbeb12ea666ac87013e7d5e - websites: - https://mastodon.social/@sally: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://sallylait.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-00e5b4de048426c705469ee833d6ce82.md b/content/discover/feed-00e5b4de048426c705469ee833d6ce82.md new file mode 100644 index 000000000..cfb52f811 --- /dev/null +++ b/content/discover/feed-00e5b4de048426c705469ee833d6ce82.md @@ -0,0 +1,47 @@ +--- +title: Where parallels cross +date: "2024-06-16T17:53:54Z" +description: Interesting bits of life +params: + feedlink: https://ag91.github.io/rss.xml + feedtype: rss + feedid: 00e5b4de048426c705469ee833d6ce82 + websites: {} + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: [] + relme: {} + last_post_title: YASnippet list also my html email questions please! + last_post_description: |- + In an old post I shared a little hack to highlight the questions to + answer in an email. It is still something I use, so that code was indeed valuable. + + + + Today I realized that html messages don't + last_post_date: "2024-06-16T00:00:00Z" + last_post_link: http://ag91.github.io/blog/2024/06/16/yasnippet-list-also-my-html-email-questions-please + last_post_categories: [] + last_post_language: "" + last_post_guid: 95df69bd2219889de9001a876ea9a620 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 0 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-010b9595cea7f6655749f9efaf2d8536.md b/content/discover/feed-010b9595cea7f6655749f9efaf2d8536.md index c46c77b9d..83fa112c4 100644 --- a/content/discover/feed-010b9595cea7f6655749f9efaf2d8536.md +++ b/content/discover/feed-010b9595cea7f6655749f9efaf2d8536.md @@ -11,46 +11,43 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: - - Reklamierung - - Über Hörbares - - Über Schaubares - - it girl explosion + - Allgemein + - Kölnkram + - klimawandel relme: + https://drikkes.com/: true https://github.com/drikkes: true - https://mastodon.social/web/@drikkes: true - https://micro.blog/drikkes: false - https://twitter.com/drikkes: false - last_post_title: verfügung verfügbarkeit SEO what the füg - last_post_description: 'Heute Gestern in “Wir ballern noch die letzte Ecke mit Werbung - zu und fühlen uns dabei sowas von total clever”: die Sendungsverfolgung. Dazu - passend das Video zu 360, dem neuen Song von Charli' - last_post_date: "2024-05-15T15:21:12Z" - last_post_link: https://drikkes.com/?p=19139 + last_post_title: Auf Streifen + last_post_description: Diese verheerenden wie schicken Streifendiagramme, die unsere + Klimakatastrophe so anschaulich machen, kennt man ja schon länger. In den News, + auf Social Media oder sogar als selbstgestrickte Schals. + last_post_date: "2024-06-21T16:47:13Z" + last_post_link: https://drikkes.com/?p=19193 last_post_categories: - - Reklamierung - - Über Hörbares - - Über Schaubares - - it girl explosion - last_post_guid: 446fa45b36f3e23cb2177ef955bc0866 + - Allgemein + - Kölnkram + - klimawandel + last_post_language: "" + last_post_guid: daa9264e950f488ceb27433a9c3dd111 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 18 + score: 22 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-010d5a7b54b376ded7e7eb7c9847df0e.md b/content/discover/feed-010d5a7b54b376ded7e7eb7c9847df0e.md new file mode 100644 index 000000000..166d26901 --- /dev/null +++ b/content/discover/feed-010d5a7b54b376ded7e7eb7c9847df0e.md @@ -0,0 +1,140 @@ +--- +title: Cheesy world +date: "1970-01-01T00:00:00Z" +description: Get best information About Cheesy food in my blogspot. +params: + feedlink: https://uuuu270uuuu.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 010d5a7b54b376ded7e7eb7c9847df0e + websites: + https://uuuu270uuuu.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: All about Cheesy Food + last_post_description: |- + The four areas of Devon, Dorset, Somerset, what kind of cheese does chipotle use and Cornwall are + reasonably renowned for the nature of their products and can flaunt more food + and drink makers than + last_post_date: "2022-01-11T08:07:00Z" + last_post_link: https://uuuu270uuuu.blogspot.com/2022/01/all-about-cheesy-food.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 31050d38d614d1ad1c3bf0a48d1915fa + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-0120505b68000e00c6ef337f7601a9f1.md b/content/discover/feed-0120505b68000e00c6ef337f7601a9f1.md new file mode 100644 index 000000000..789f5e589 --- /dev/null +++ b/content/discover/feed-0120505b68000e00c6ef337f7601a9f1.md @@ -0,0 +1,40 @@ +--- +title: Scott Frazer's Blog +date: "2024-03-20T05:35:32-04:00" +description: "" +params: + feedlink: https://scottfrazersblog.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 0120505b68000e00c6ef337f7601a9f1 + websites: + https://scottfrazersblog.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://scottfrazersblog.blogspot.com/: true + last_post_title: 'Emacs: Filtered Buffer Switching' + last_post_description: "" + last_post_date: "2010-01-07T10:41:32-05:00" + last_post_link: https://scottfrazersblog.blogspot.com/2010/01/emacs-filtered-buffer-switching.html + last_post_categories: [] + last_post_language: "" + last_post_guid: dd6c2a3f9f766213aa317abece98ab82 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-012d747ffc2de7ad579d7d8736a5c10f.md b/content/discover/feed-012d747ffc2de7ad579d7d8736a5c10f.md new file mode 100644 index 000000000..e5bf15024 --- /dev/null +++ b/content/discover/feed-012d747ffc2de7ad579d7d8736a5c10f.md @@ -0,0 +1,139 @@ +--- +title: Nyquil Memes Game +date: "1970-01-01T00:00:00Z" +description: Best Nyquil Memes games is here. Get best Collection of it. +params: + feedlink: https://palausolitaiplegamans.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 012d747ffc2de7ad579d7d8736a5c10f + websites: + https://palausolitaiplegamans.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Damn Nyquil Memes And Dayquil Memes are Carzy + last_post_description: Human awareness receives its innovation From Nyquil Dayquil + MemesFrom the contemporary structure; the created reality has arisen as in social + continuums' genealogy. Authenticities in themselves with + last_post_date: "2020-12-07T11:20:00Z" + last_post_link: https://palausolitaiplegamans.blogspot.com/2020/12/damn-nyquil-memes-and-dayquil-memes-are.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 916fbecceb0907956fcab022dd01024b + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-01526b00a3be9113fe350f3742dd6f45.md b/content/discover/feed-01526b00a3be9113fe350f3742dd6f45.md index f67176f43..29df83570 100644 --- a/content/discover/feed-01526b00a3be9113fe350f3742dd6f45.md +++ b/content/discover/feed-01526b00a3be9113fe350f3742dd6f45.md @@ -14,32 +14,18 @@ params: recommended: [] recommender: [] categories: - - Open Web - - WordPress - IndieWeb - Meetup + - Open Web - Stuttgart + - WordPress relme: - https://developers.google.com/profile/u/pfefferle: false https://github.com/pfefferle: true https://gitlab.com/pfefferle: true - https://indieweb.org/User:Notiz.blog: false https://mastodon.social/@pfefferle: true - https://micro.blog/pfefferle: false - https://microformats.org/wiki/User:Pfefferle: false - https://notiz.blog/about/: false - https://openwebpodcast.de/: false - https://packagist.org/packages/pfefferle/: false - https://pfefferle.tumblr.com/: false - https://profiles.wordpress.org/pfefferle: false - https://twitter.com/pfefferle: false - https://wordpress.tv/speakers/matthias-pfefferle/: false - https://www.crunchbase.com/person/matthias-pfefferle: false - https://www.flickr.com/people/pfefferle: false - https://www.linkedin.com/in/pfefferle/: false - https://www.npmjs.com/~pfefferle: false - https://www.slideshare.net/pfefferle: false - https://www.xing.com/profile/Matthias_Pfefferle: false + https://notiz.blog/: true + https://notiz.blog/about/: true + https://profiles.wordpress.org/pfefferle/: true last_post_title: WP Meetup Stuttgart – IndieWeb und WordPress last_post_description: 'Ich war am 05. August zu Besuch beim WordPress Meetup in Stuttgart um über das IndieWeb und WordPress zu sprechen. Wer es nicht sehen konnte, @@ -47,22 +33,27 @@ params: last_post_date: "2020-09-10T21:23:56Z" last_post_link: https://notiz.blog/2020/09/10/wp-meetup-stuttgart-indieweb-und-wordpress/ last_post_categories: - - Open Web - - WordPress - IndieWeb - Meetup + - Open Web - Stuttgart + - WordPress + last_post_language: "" last_post_guid: 12a24f975ab41a24363bf00f0bbf0f27 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: de --- diff --git a/content/discover/feed-01a942ad8de4a2cf9f421570fe4aa20f.md b/content/discover/feed-01a942ad8de4a2cf9f421570fe4aa20f.md new file mode 100644 index 000000000..1aae07d1c --- /dev/null +++ b/content/discover/feed-01a942ad8de4a2cf9f421570fe4aa20f.md @@ -0,0 +1,143 @@ +--- +title: Easy To Use Snap chat +date: "1970-01-01T00:00:00Z" +description: Easy way to use snapchat is not very difficult. +params: + feedlink: https://unamareadilibri.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 01a942ad8de4a2cf9f421570fe4aa20f + websites: + https://unamareadilibri.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Easy to Use + - Easy way to use snap chat + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Easy to Use The Area Code + last_post_description: |- + What Time Zone Does area code 877 Cover?The 877 region code number goes under + various time regions given North America's geographic reach. From east to west, + the landmass is partitioned into the + last_post_date: "2021-11-13T13:46:00Z" + last_post_link: https://unamareadilibri.blogspot.com/2021/11/easy-to-use-area-code.html + last_post_categories: + - Easy to Use + last_post_language: "" + last_post_guid: 109107bc18a2ed656ecccd83e1154f05 + score_criteria: + cats: 2 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-01de5b50465fa41a1c874fdae284e6c7.md b/content/discover/feed-01de5b50465fa41a1c874fdae284e6c7.md deleted file mode 100644 index 493105ed3..000000000 --- a/content/discover/feed-01de5b50465fa41a1c874fdae284e6c7.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: timomeh.de -date: "2024-05-25T23:30:41Z" -description: About software development and other thoughts I wanted to elaborate on. -params: - feedlink: https://timomeh.de/posts/feed.atom - feedtype: atom - feedid: 01de5b50465fa41a1c874fdae284e6c7 - websites: - https://timomeh.de/: true - https://timomeh.de/posts/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://mastodon.social/@timomeh: true - last_post_title: Open Ear Earbuds - last_post_description: In-ear earbuds are weird, aren't they? You've got those small - rubbery mushrooms that you shove into your ear canal to listen to music and you - hope there's no juicy ear gunk on them when you pull 'em - last_post_date: "2024-05-25T23:30:41Z" - last_post_link: https://timomeh.de/posts/open-ear-earbuds - last_post_categories: [] - last_post_guid: 6f36dc93f57e6a5deaff4a2f5ad80452 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-01f86309245d316962b641c08a24e184.md b/content/discover/feed-01f86309245d316962b641c08a24e184.md new file mode 100644 index 000000000..a63d113fe --- /dev/null +++ b/content/discover/feed-01f86309245d316962b641c08a24e184.md @@ -0,0 +1,872 @@ +--- +title: B/X BLACKRAZOR +date: "2024-07-08T14:08:32-07:00" +description: "" +params: + feedlink: https://bxblackrazor.blogspot.com/feeds/posts/default/ + feedtype: atom + feedid: 01f86309245d316962b641c08a24e184 + websites: {} + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - 5ak + - 7elements + - AB + - ACKS + - ADM + - Asprin + - Bond + - BrOSR + - CC + - Christmas + - DM certification + - DYK + - DoIP + - DoS + - EID + - Evergreen + - Forge + - G+ + - GusL + - HARLIs + - HW + - Idaho + - Introduction + - Kids on Bikes + - LORE + - Mentat + - NAP + - NPCs + - New DND + - OED + - OHD + - OSR + - On Role-Playing + - PbtA + - Pub44 + - RBG + - RPG 201 + - RPGaDay + - RtB2 + - STA + - Scoobthulu + - TROS + - Thievesworld + - Tékumel + - a1-4 + - a2z2019 + - abb + - acrobat + - add + - add2 + - advanced play + - advancement + - advantage + - adventure + - aging + - al-qadim + - albedo + - alejandro + - alexander + - aliens + - alignment + - allston + - alpha + - amber + - anderson + - anger + - angst + - animals + - anthony + - anti-clerics + - anti-paladin + - ape + - apes victorious + - apok + - apologies + - aquarius + - archery + - arduin + - argentina + - aries + - armor + - arneson + - ars + - art of the DM + - artifacts + - artwork + - ashen + - asimov + - aspirin + - assassins + - astrology + - asuncion + - atlantis + - attributes + - auto-kill + - awards + - axe + - axiom + - b/x + - b1 + - b10 + - b11 + - b12 + - b2 + - b2 series + - b3 + - b6 + - badass + - baker + - balloon + - baranof + - barbarian + - bard + - bastion + - batgirl + - bayless + - bb + - beagle + - beans + - bear + - bear week + - beard + - beast + - becmi + - begging + - ben + - beowulf + - besm + - bg + - bh + - bible + - bigG + - bike + - bitchin-moanin + - biz + - black history + - blackmoor + - blackrazor + - blackrock + - bladehawk + - blog + - blue + - blueprint + - blume + - bonus XP + - boot hill + - borg + - bounty hunter + - box + - boyer + - bradstreet + - bronze + - bryant + - bs + - bsg + - bt + - btq + - building + - burns + - burroughs + - burton + - bx + - bxsk + - bxsw + - c1 + - campaign + - campaign setting + - canada + - cannibals + - cantrips + - capes + - capricorn + - carcosa + - cards + - carroll + - cartoons + - cascade + - cauldron + - cayce + - cdf + - chainmail + - challenge + - chaos + - chaosium + - chargen + - charity + - charley manson special + - cheat + - chess + - chronicle o mutation + - class + - cleric + - clockwork + - clusterfk + - coaching + - coffee + - collaboration + - collaborative rp + - collecting + - combat + - comics + - companion + - comparison review + - computer + - contest + - convention + - conversion + - cook + - corruption + - cosmology + - crap + - creepy + - crowns of blood + - crystal + - cthulhu + - culture + - cyoa + - d1-2 + - d20 + - d3 + - damage + - dancey + - dark sun + - darkover + - dc + - dcc + - dcu + - ddg + - ddm + - dead characters + - deadlands + - deadlines + - deathdealer + - deathguard + - declercq + - deconstruction + - demon + - desert + - design + - development + - devils + - df + - dfd + - dgas + - dice + - diego + - dinosaur + - dio + - distribution + - diversity + - dl + - dmg + - dmg4 + - dmi + - dnd mine + - dnd4e + - doc + - dope + - dq + - dragon + - drama + - dresden + - druid + - drunk + - dune + - dungeonbg + - dv + - dwarf + - edwards + - eew + - elf + - ellis:kit + - ellison + - elmore + - emerald city gamefest + - encumbrance + - eo + - ept + - errors + - evil + - ewalt + - example + - exceptional traits + - family + - fan service + - fantasy football + - faq + - fate + - fatigue + - faust + - favreau + - feedback + - fencing + - ff + - ffg + - fhb + - fiasco + - fifa + - fighter + - film + - fiveqs + - florida + - fmj + - fmm + - folklore + - food + - forgotten realms + - fortune + - frazetta + - free rpg day + - freebies + - freud + - frontier space + - fudging + - fundamentals + - funny + - fwp + - g1-3 + - games + - gaming survey + - gardening + - gaz1 + - geezer + - gender + - generations + - germania + - giant robots + - giants + - gibbons + - gibson + - gladiator + - glory + - gnoll + - gnome + - gns + - goblin + - goblins + - god-fighting + - gods + - goldman + - gonzo + - gor + - goth + - gq1 + - great commandments + - greeks + - green spectrum + - greenwood + - greg + - grendel + - grit + - grog + - grogtalk + - grubb + - gumshoe + - guns + - gurps + - gw + - gygax + - h1-4 + - half-elf + - half-orc + - halfling + - halloween + - hardcore + - hargrave + - harryhausen + - hats + - haven:cov + - heartbreakers + - heavy metal mag + - help + - heron + - hex + - hh + - hickmans + - highlander + - hillfolk + - his dark materials + - history + - hite + - hmb + - holiday + - holloway + - holmes + - homecoming + - horror rules + - hot + - howard + - hpl + - hps + - hu + - huso + - hybrid + - i1 + - i2 + - i3 + - i4 + - i5 + - i6 + - ideas + - illusionist + - indie + - industry + - initiative + - insanity + - inspiration + - intelligence + - interview + - irish + - jackasses + - jackson + - jap + - jason + - jbgme + - jedi + - jocelyn + - joel + - josh + - jugger + - jungle + - kaiser + - kaminski + - karma + - kas + - kayce + - keldern + - kenzer + - kickstarter + - kidd + - kids + - king + - kiss + - kotor + - kraken + - krull + - kuntz + - kwn + - lakofka + - land of ash + - land of ice + - language + - larp + - laws + - lazy + - legacy + - legal + - leiber + - leo + - level + - licancabur + - lieber + - limits + - lists + - lit + - literature + - lizard + - ll + - lmz + - lockdown + - lost world + - lotfp + - lotl + - love + - lpj + - lucas + - lucky + - luke + - lynch + - m1 + - mac + - madness + - mael + - magic-user + - mail + - mamet + - maps + - mariners + - mars + - martin + - mass cbt + - matt + - mc + - mcb + - mckinley + - mdr + - mearls + - medicine + - melnibone + - mentzer + - mercenaries + - merp + - mexico + - michael + - micronauts + - midway + - millington + - minis + - missiles + - misty + - mj + - mnm + - mod + - module + - modules + - moldvay + - money + - monk + - monster + - montana + - moon + - moorcock + - morale + - mordheim + - morningstar + - mountebank + - mournblade + - movement + - mox + - mpc + - msh + - mtg + - mummy lord + - munchkin + - music + - mutant future + - mw + - mystarra + - mzb + - n1 + - n2 + - nadi + - narcotics + - nbx + - necromancy + - nephews + - neptune + - nerd + - network + - new school + - new year resolutions + - news + - nfl + - niles + - ninja + - nkg + - nm + - norse + - nostalgia + - nudity + - numbers + - nurgle + - objectives + - od&d + - ogl + - ogre + - orc + - orcus + - origins + - ork + - ote + - otus + - out of time + - outlaw + - overlays + - pain-suffering + - paladin + - palladium + - pandius + - paraguay + - paranoia + - pathfinder + - patreon + - paypal + - pbem + - pbp + - pdf + - pdq + - pendragon + - pern + - perry + - phb4 + - pini + - pirates + - pisces + - pix + - playground + - playtest + - pluto + - po + - podcast + - poetry + - poison + - polaris + - poll + - port angeles + - post-apoc + - powers + - predator + - prince + - printing + - progress + - project + - psbeagle + - pseudoscience + - psionics + - ptsd + - publishing + - pulp + - punch it + - puppet + - pvp + - pyoung + - q1 + - quiz + - race + - rage + - random + - randy + - ranger + - rat + - reaper + - red + - red sonja + - redundancy + - reflections + - religion + - retainers + - return to wpm + - reviews + - revolution + - riskbg + - rob + - roberson + - rogues gallery + - role-playing + - roslov + - rowling + - rtal + - ruined earth + - rules + - s1 + - s2 + - s3 + - s4 + - sag + - sand + - saturn + - savage + - saves + - schick + - schultz + - schweighofer + - scorp + - scott + - sea + - sechi + - secrets + - sex + - sf + - shakespeare + - shields + - ships + - shop + - sick + - silk + - sindbad + - skald + - skills + - sky + - slave + - slump + - snafu + - snark + - sneakshadow + - snow + - sns + - snw + - soccer + - sofia + - solo + - sotc + - space + - spain + - spellbook + - spells + - spirit77 + - sports + - sr + - srpg + - st. andre + - stages of exploration + - star blazers + - starsiege + - steakley + - steam + - steel + - steve + - sticker + - stirling + - stoned + - stormbringer + - strategic review + - strength + - strike band + - stunts + - style + - subclass + - subversive design + - supers + - supers! rpg + - supplement + - sw + - swn + - sword + - synnibarr + - t1-4 + - tables + - tactics + - talisman + - tao + - tarot + - taxes + - tcbxa + - teabag + - teaching + - tekumel + - television + - ten years + - theory + - thief + - thor + - three pillars + - thyatis + - tiefling + - tiers + - title + - tm + - tmnt + - toad + - tolkien + - top + - top secret + - torture + - town + - toys + - tpk + - trade system + - training + - traps + - traveller + - treasure + - trek + - tri-stat + - troll slayer + - tsr + - tv + - tweet + - twilight2k + - tx + - ua + - uk1 + - uk2-3 + - unisystem + - university + - uranus + - usa + - vacation + - vampire + - vance + - vehicles + - venger + - verne + - villains + - vince + - virgo + - void + - vtm + - vv + - war + - war of the mecha + - warlock + - warlord + - wave + - weapons + - weg + - wells + - western city + - wfrp + - wg5 + - wh40k + - whfrp + - white plume mountain + - white star + - wife + - wild + - willingham + - wine + - witch + - wocd + - wolf + - women studies + - wonder woman + - work + - world + - world building + - worm + - wormwood + - wotrp + - wow + - writing + - wt + - ww + - wwI + - wwII + - wwb + - x-plorers + - x/y + - x1 + - x10 + - x12 + - x2 + - x4 + - x5 + - yoga + - yuki + - zelazny + - zenopus + - zep + - zero + - zines + relme: {} + last_post_title: Jolly Old England + last_post_description: "" + last_post_date: "2024-06-24T22:27:53-07:00" + last_post_link: https://bxblackrazor.blogspot.com/2024/06/jolly-old-england.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 995d0eff56d3621c78e8c47a2346e3f1 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 0 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-0210ba7b42f530ed56e256fd94fc34db.md b/content/discover/feed-0210ba7b42f530ed56e256fd94fc34db.md index 5cc8f95e0..6b6c22ee6 100644 --- a/content/discover/feed-0210ba7b42f530ed56e256fd94fc34db.md +++ b/content/discover/feed-0210ba7b42f530ed56e256fd94fc34db.md @@ -31,17 +31,22 @@ params: - drafts-actions - readwise - shortcuts + last_post_language: "" last_post_guid: 3006d17e796c4ad7ca8a8c3b124a7f5f score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-0214b639982e7c60ee88017b55c8f65c.md b/content/discover/feed-0214b639982e7c60ee88017b55c8f65c.md index e8862a7e6..1cdfb35c5 100644 --- a/content/discover/feed-0214b639982e7c60ee88017b55c8f65c.md +++ b/content/discover/feed-0214b639982e7c60ee88017b55c8f65c.md @@ -1,6 +1,6 @@ --- title: '18F: Digital service delivery' -date: "2024-05-31T21:29:19Z" +date: "2024-07-03T17:28:42Z" description: 18F builds effective, user-centric digital services focused on the interaction between government and the people and businesses it serves. params: @@ -14,28 +14,39 @@ params: - https://visitmy.website/feed.xml categories: - 18f - - how we work + - ai + - design + - machine learning + - user-centered design relme: {} - last_post_title: '18F practices in action (spoiler: this stuff works)' - last_post_description: Do 18F software development principles really work? We reflected - on a recent project to see how well 18F recommendations aligned with what we actually - did. - last_post_date: "2024-04-03T00:00:00Z" - last_post_link: https://18f.gsa.gov/2024/04/03/18f-practices-in-action/ + last_post_title: Back to basics in the age of AI + last_post_description: The federal government is abuzz with conversation about the + way that artificial intelligence (AI) is going to change the game. Since 18F partners + with agencies to drive technology modernization + last_post_date: "2024-06-18T00:00:00Z" + last_post_link: https://18f.gsa.gov/2024/06/18/back-to-basics-in-the-age-of-ai/ last_post_categories: - 18f - - how we work - last_post_guid: e51fe4b738a5eb1d853d0c9e6d5d9a1d + - ai + - design + - machine learning + - user-centered design + last_post_language: "" + last_post_guid: 106880f6c0af2f5b246bc690202e5a1c score_criteria: cats: 0 description: 3 - postcats: 2 + feedlangs: 0 + postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-02234cd09bd09d878aec464f34d6e7f4.md b/content/discover/feed-02234cd09bd09d878aec464f34d6e7f4.md deleted file mode 100644 index 8843092dd..000000000 --- a/content/discover/feed-02234cd09bd09d878aec464f34d6e7f4.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: '@jenett.bsky.social - jenett' -date: "1970-01-01T00:00:00Z" -description: "a curator (of sorts)\n\nfind me at \ni.webthings - https://iwebthings.joejenett.com/\nsimply. - - https://simply.joejenett.com/\nbulltown - https://bulltown.2022.joejenett.com/" -params: - feedlink: https://bsky.app/profile/did:plc:gypntnnxelapbw5rwsclnae3/rss - feedtype: rss - feedid: 02234cd09bd09d878aec464f34d6e7f4 - websites: - https://bsky.app/profile/jenett.bsky.social: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-0224635c4eb6b21aa36c6361bb66621f.md b/content/discover/feed-0224635c4eb6b21aa36c6361bb66621f.md deleted file mode 100644 index 452038cf0..000000000 --- a/content/discover/feed-0224635c4eb6b21aa36c6361bb66621f.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Miniflux -date: "2024-04-27T00:00:00Z" -description: "" -params: - feedlink: https://miniflux.app/feed.xml - feedtype: atom - feedid: 0224635c4eb6b21aa36c6361bb66621f - websites: - https://miniflux.app/: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - - https://jlelse.blog/.min.rss - - https://jlelse.blog/.rss - - https://jlelse.blog/index.xml - categories: [] - relme: {} - last_post_title: Miniflux 2.1.3 - last_post_description: "" - last_post_date: "2024-04-27T00:00:00Z" - last_post_link: https://miniflux.app/releases/2.1.3.html - last_post_categories: [] - last_post_guid: cb07d4a0f718a618dcf258e2e580f088 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-0232bb5357ee7eba169a762331c698e8.md b/content/discover/feed-0232bb5357ee7eba169a762331c698e8.md deleted file mode 100644 index 0153b34a9..000000000 --- a/content/discover/feed-0232bb5357ee7eba169a762331c698e8.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: STORYmin.es -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://storymin.es/feed/ - feedtype: rss - feedid: 0232bb5357ee7eba169a762331c698e8 - websites: - https://storymin.es/: true - https://storymin.es/abonneer/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Gedachten - - Geschreven - - Inspiratie - - berk - - birch - - verhaal - - zkv - relme: {} - last_post_title: The Birch - last_post_description: Dit is een kort verhaal dat ik schreef voor Canadese vrienden, - Peter en Lisa, die me een prachtig notitieboekje opstuurden. Een boekje met berken - op de omslag en een quote uit Anne of Green Gables, - last_post_date: "2024-05-13T11:27:35Z" - last_post_link: https://storymin.es/2024/05/the-birch/ - last_post_categories: - - Gedachten - - Geschreven - - Inspiratie - - berk - - birch - - verhaal - - zkv - last_post_guid: 2842a42544c8834f9577614e5c4ac73f - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-024700d7db26c70cc34da0bdb2f6482b.md b/content/discover/feed-024700d7db26c70cc34da0bdb2f6482b.md new file mode 100644 index 000000000..aab3b699c --- /dev/null +++ b/content/discover/feed-024700d7db26c70cc34da0bdb2f6482b.md @@ -0,0 +1,51 @@ +--- +title: Music Theory for Everyone +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://musictheoryforeveryone.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 024700d7db26c70cc34da0bdb2f6482b + websites: + https://musictheoryforeveryone.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - kids + - music theory + relme: + https://alchymiastudio.blogspot.com/: true + https://happstack.blogspot.com/: true + https://learnhaskell.blogspot.com/: true + https://musictheoryforeveryone.blogspot.com/: true + https://nhlab.blogspot.com/: true + https://www.blogger.com/profile/18373967098081701148: true + last_post_title: Online Music Lessons and Games for Kids + last_post_description: Hello, Are you looking for online music lessons, games, + and other activities which would be suitable for 6-12 year olds? If so, I want + to hear from you! I creating a new site to serve this audience + last_post_date: "2009-01-14T15:36:00Z" + last_post_link: https://musictheoryforeveryone.blogspot.com/2009/01/online-music-lessons-and-games-for-kids.html + last_post_categories: + - kids + - music theory + last_post_language: "" + last_post_guid: 4eb56001cdf28f6761dad13564418903 + score_criteria: + cats: 2 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-02470474574bd471c88385cca41049f4.md b/content/discover/feed-02470474574bd471c88385cca41049f4.md new file mode 100644 index 000000000..06a6d5f37 --- /dev/null +++ b/content/discover/feed-02470474574bd471c88385cca41049f4.md @@ -0,0 +1,52 @@ +--- +title: Peewee Convenor Notes +date: "1970-01-01T00:00:00Z" +description: Notes from the Kanata Minor Hockey Association Peewee Convenor for the + 2011-2012 season. +params: + feedlink: https://kmhapeeweeconvenor.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 02470474574bd471c88385cca41049f4 + websites: + https://kmhapeeweeconvenor.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - "1:44" + relme: + https://ahuntereclipse.blogspot.com/: true + https://ahunterhunter.blogspot.com/: true + https://kmhapeeweeconvenor.blogspot.com/: true + https://www.blogger.com/profile/03060102622123930690: true + last_post_title: Peewee Playoff Standings as of Fri Apr 13 + last_post_description: |- + Peewee A Playoff Standings + +  TeamGPWinsLossesTiesPointsGFGAGF GA % + 1Kanata Predators (A4)33006720.778 + 2Kanata Stampede (A3)32104730.700 + 3Kanata Jets (A2)31202750.583 + 4Kanata Blazers (A1)303001120 + last_post_date: "2012-04-13T14:11:00Z" + last_post_link: https://kmhapeeweeconvenor.blogspot.com/2012/04/peewee-playoff-standings-as-of-fri-apr.html + last_post_categories: [] + last_post_language: "" + last_post_guid: d2b7f33c7c8a4261450081a9be40e1e3 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-026d6d5c16199d6ee8e8c30b2254afbc.md b/content/discover/feed-026d6d5c16199d6ee8e8c30b2254afbc.md new file mode 100644 index 000000000..89a4780ae --- /dev/null +++ b/content/discover/feed-026d6d5c16199d6ee8e8c30b2254afbc.md @@ -0,0 +1,54 @@ +--- +title: Marcin Juszkiewicz +date: "2024-06-14T13:04:00+02:00" +description: "" +params: + feedlink: https://marcin.juszkiewicz.com.pl/feed/ + feedtype: atom + feedid: 026d6d5c16199d6ee8e8c30b2254afbc + websites: + https://marcin.juszkiewicz.com.pl/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - aarch64 + - arm + - conferences + - linaro + - misc + - travels + relme: + https://github.com/hrw/: true + https://marcin.juszkiewicz.com.pl/: true + https://society.oftrolls.com/@hrw: true + last_post_title: Linaro Connect MAD24 + last_post_description: It was a great conference. + last_post_date: "2024-06-14T13:04:00+02:00" + last_post_link: https://marcin.juszkiewicz.com.pl/2024/06/14/linaro-connect-mad24/ + last_post_categories: + - aarch64 + - arm + - conferences + - linaro + - misc + - travels + last_post_language: "" + last_post_guid: 7e1b6ab0ea130fe6710393f81d31fc33 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-02790193aaa1eeb066d3cfe7d403b638.md b/content/discover/feed-02790193aaa1eeb066d3cfe7d403b638.md deleted file mode 100644 index 7b97c6e6a..000000000 --- a/content/discover/feed-02790193aaa1eeb066d3cfe7d403b638.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Golang Weekly -date: "1970-01-01T00:00:00Z" -description: A weekly newsletter about the Go programming language -params: - feedlink: https://golangweekly.com/rss/ - feedtype: rss - feedid: 02790193aaa1eeb066d3cfe7d403b638 - websites: - https://golangweekly.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: The Go team explains compiler optimizations - last_post_description: ▶  Boosting Performance of Go Apps with Optimizations — Three - members of the Go team gave a talk at last week’s Google I/O about a topic we’ve - covered a lot lately – using Go 1.20+’s - last_post_date: "2024-05-21T00:00:00Z" - last_post_link: https://golangweekly.com/issues/508 - last_post_categories: [] - last_post_guid: 105db231f2fb8f6a3dfc76e5e626bd3f - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-029bc19690f520ecc3cd16f2eb3ec308.md b/content/discover/feed-029bc19690f520ecc3cd16f2eb3ec308.md index 17f0b1c6b..2ed63eb68 100644 --- a/content/discover/feed-029bc19690f520ecc3cd16f2eb3ec308.md +++ b/content/discover/feed-029bc19690f520ecc3cd16f2eb3ec308.md @@ -18,23 +18,28 @@ params: categories: [] relme: https://hachyderm.io/@johnnydecimal: true - last_post_title: 22.00.0063 Why my software will be Apple-only - last_post_description: I'm going to write some software. I'm sorry, but it'll be - for Apple platforms only. This is why. - last_post_date: "2024-06-04T08:00:07Z" - last_post_link: https://johnnydecimal.com/22.00.0063/ + https://johnnydecimal.com/: true + last_post_title: 15.01 Introduction + last_post_description: What are the standard Johnny.Decimal patterns? + last_post_date: "2024-07-03T02:24:22Z" + last_post_link: https://johnnydecimal.com/10-19-concepts/15-patterns-templates/15.01-introduction/ last_post_categories: [] - last_post_guid: bb11c7d3437c7712ced26bf96d879dc8 + last_post_language: "" + last_post_guid: 76956da7ab6375800840038ce0ac8edb score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-02a12ecc2a1cd94a2fdb4e40f914fa47.md b/content/discover/feed-02a12ecc2a1cd94a2fdb4e40f914fa47.md new file mode 100644 index 000000000..7a37805ab --- /dev/null +++ b/content/discover/feed-02a12ecc2a1cd94a2fdb4e40f914fa47.md @@ -0,0 +1,58 @@ +--- +title: Alex's Adventures on the Infobahn +date: "2023-12-10T19:28:00Z" +description: the wanderings of a supposed digital native +params: + feedlink: https://www.bennee.com/~alex/blog/feeds/all.atom.xml + feedtype: atom + feedid: 02a12ecc2a1cd94a2fdb4e40f914fa47 + websites: + https://www.bennee.com/~alex/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ai + - chatgpt + - geek + - llms + - open source + - programming + - qemu + - systems + relme: + https://www.bennee.com/~alex/: true + last_post_title: A Systems Programmer's Perspectives on Generative AI + last_post_description: Alex discusses his experience playing with the current crop + of large language models and muses on the power of processors multiplying lots + of numbers together. + last_post_date: "2023-12-10T19:28:00Z" + last_post_link: https://www.bennee.com/~alex/blog/2023/12/10/a-systems-programmers-perspectives-on-generative-ai/ + last_post_categories: + - ai + - chatgpt + - geek + - llms + - open source + - programming + - qemu + - systems + last_post_language: "" + last_post_guid: 1e0df76181429d8abf7730e6d4135e7b + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-02a8da04bf58edb058c2f5a134f2a68e.md b/content/discover/feed-02a8da04bf58edb058c2f5a134f2a68e.md new file mode 100644 index 000000000..367df0102 --- /dev/null +++ b/content/discover/feed-02a8da04bf58edb058c2f5a134f2a68e.md @@ -0,0 +1,57 @@ +--- +title: Virtual Thoughts! +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://mksamuel.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 02a8da04bf58edb058c2f5a134f2a68e + websites: + https://mksamuel.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Eclipse RAP Rich Ajax Platform Java + - Fiction + - Gene Machine Biography System Architecture Xtext EMF Eclipse RAP Java + - Grady Booch Perspective + - I Like Eclipse PlanetEclipse committment dedication + - Inception + - Java Getters Setters Software Object Oriented Programming OOPS + - Mind Graph Theory MindGraph Dreams Explained Nightmare Map brain imagination God + Concentration Mediation subconscious consious + - rules + - software tool development passion enthusiasm java hard work hardwork eclipse + relme: + https://dummywebsite.blogspot.com/: true + https://eclipse-info.blogspot.com/: true + https://iosdribbles.blogspot.com/: true + https://mksamuel.blogspot.com/: true + https://www.blogger.com/profile/05191409900046165475: true + last_post_title: Coronavirus Spread, is it time to follow the Koreans? + last_post_description: Australia has touched 564 coronavirus cases as of yesterday + night (17th of March). Every hour the virus is spreading to more and more people. + We have touched the acceleration phase. What it means is + last_post_date: "2020-03-18T23:10:00Z" + last_post_link: https://mksamuel.blogspot.com/2020/03/coronavirus-spread-is-it-time-to-follow.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 99640647411d814e728bc68d7890fcad + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-02b3ab9bb58b950585428721c166f8c3.md b/content/discover/feed-02b3ab9bb58b950585428721c166f8c3.md deleted file mode 100644 index 3cae84c2b..000000000 --- a/content/discover/feed-02b3ab9bb58b950585428721c166f8c3.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Anxious Fox -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://anxiousfox.co.uk/feed/ - feedtype: rss - feedid: 02b3ab9bb58b950585428721c166f8c3 - websites: - https://anxiousfox.co.uk/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://octodon.social/@mikesheldon: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-02beb18ff6d40d8460cebb5e31df9c43.md b/content/discover/feed-02beb18ff6d40d8460cebb5e31df9c43.md new file mode 100644 index 000000000..578dd6012 --- /dev/null +++ b/content/discover/feed-02beb18ff6d40d8460cebb5e31df9c43.md @@ -0,0 +1,142 @@ +--- +title: Code of City +date: "1970-01-01T00:00:00Z" +description: Here we have good article of all area code of USA. +params: + feedlink: https://nhungdieucanbietvevincity.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 02beb18ff6d40d8460cebb5e31df9c43 + websites: + https://nhungdieucanbietvevincity.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - area + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: All Area of The USA + last_post_description: |- + Area CodeSince it's simple for criminal guests to + utilize satirizing innovation to show a phony telephone number on your Caller + ID, it's by and large fitting to screen any calls or messages from + last_post_date: "2021-12-30T20:20:00Z" + last_post_link: https://nhungdieucanbietvevincity.blogspot.com/2021/12/all-area-of-usa.html + last_post_categories: + - area + last_post_language: "" + last_post_guid: 3527e19b4156dadd0e2702f9eb618054 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-02c5a68e35f0323d6b40655cedf93b2a.md b/content/discover/feed-02c5a68e35f0323d6b40655cedf93b2a.md new file mode 100644 index 000000000..de01ebefe --- /dev/null +++ b/content/discover/feed-02c5a68e35f0323d6b40655cedf93b2a.md @@ -0,0 +1,124 @@ +--- +title: Eclipse and Java Blog by Michael Scharf +date: "1970-01-01T00:00:00Z" +description: Here I collect interesting links and findings about eclipse and java... +params: + feedlink: https://michaelscharf.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 02c5a68e35f0323d6b40655cedf93b2a + websites: + https://michaelscharf.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - '@alexwg' + - AI + - Alan Cooper + - Alexander D. Wissner-Gross + - C/C++ entwicklung + - CDT + - CDT buch + - ConcurrentModificationException + - Crevasse of Doom + - DDD + - Domain Driven Design + - Douglas Crockford + - Dreyfus model of skill acquisition + - EMF text editor + - Eric Evens + - IDE + - IllegalAccessError + - Interaction design + - IxD + - JavaScript + - Martin Fowler + - The Good Parts + - Yawning Dan North + - blog + - bloggers.com + - break into blog + - closures + - databinding + - diversity + - download + - dpunkt + - eclipse + - eclipse plugin + - eclipsecon2008 + - editor + - emfatic plugin + - equation of intelligence + - extension location + - force of intelligence + - fragment + - full screen + - fullscreen + - fund raising + - future + - future of eclipse + - google + - hijack + - java memory model + - junit + - launches + - learning + - link file + - links directory + - mobile + - open source + - p2 + - pde + - peep pressure + - plugin + - protoypte based language + - pydev + - python + - robust iterators + - runtime application + - sample projects + - slides + - spam + - spammers + - tragedy of the commons + - update manage + - web + - wrong plugins + relme: + https://draft.blogger.com/profile/16708708879318235495: true + https://michaelscharf.blogspot.com/: true + last_post_title: How to make eclipse attractive to new communities? + last_post_description: Recently, I had some discussions with different people on + how to make eclipse attractive for non-java communities, in particular for web + and mobile developers. This is also based on my experience + last_post_date: "2014-05-29T17:56:00Z" + last_post_link: https://michaelscharf.blogspot.com/2014/05/how-to-make-eclipse-attractive-to-new.html + last_post_categories: + - IDE + - JavaScript + - eclipse + - editor + - future + - mobile + - python + - tragedy of the commons + - web + last_post_language: "" + last_post_guid: f5124fe919fb38295bf787a6c888b82b + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-0306973dceaf54d3b7dfaf97b8c05ba1.md b/content/discover/feed-0306973dceaf54d3b7dfaf97b8c05ba1.md deleted file mode 100644 index c97a25781..000000000 --- a/content/discover/feed-0306973dceaf54d3b7dfaf97b8c05ba1.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: remy sharp's b:ooks -date: "1970-01-01T00:00:00Z" -description: About [code] and all that jazz -params: - feedlink: https://remysharp.com/books.xml - feedtype: rss - feedid: 0306973dceaf54d3b7dfaf97b8c05ba1 - websites: - https://remysharp.com/: true - https://remysharp.com/books: false - https://remysharp.com/speaking/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://flickr.com/photos/remysharp: false - https://front-end.social/@rem: true - https://github.com/remy: true - https://github.com/remy/: true - https://leftlogic.com/: false - https://remysharp.com/books: false - https://remysharp.com/speaking/: false - https://twitter.com/rem: false - https://www.twitch.tv/remysharp: false - last_post_title: 'Review: What About Men? by Caitlin Moran' - last_post_description: |- - 5 stars out of 5 - - --- - - For me: a must read. - Reading Moran's book I could quickly see that I was the exact target audience for the content: white, cis, straight, leftie male. I try my best to be a - last_post_date: "2024-03-01T00:00:00Z" - last_post_link: https://remysharp.com/books/2024/what-about-men - last_post_categories: [] - last_post_guid: 6a992327b1ee08118d07a866c8c4bf89 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-030c37d4ad891b482b4a59ea1dfa7fff.md b/content/discover/feed-030c37d4ad891b482b4a59ea1dfa7fff.md new file mode 100644 index 000000000..ed8103f8e --- /dev/null +++ b/content/discover/feed-030c37d4ad891b482b4a59ea1dfa7fff.md @@ -0,0 +1,44 @@ +--- +title: SummerMute +date: "1970-01-01T00:00:00Z" +description: Worklog for the porting of WinterMute Lite to ScummVM +params: + feedlink: https://summermute2012.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 030c37d4ad891b482b4a59ea1dfa7fff + websites: + https://summermute2012.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://cellacc.blogspot.com/: true + https://summermute2012.blogspot.com/: true + https://www.blogger.com/profile/15228832038565149878: true + last_post_title: 'WME Testing: Chivalry is not dead' + last_post_description: As I've been a bit busy the past few months, the Wintermute-engine + port for ScummVM hasn't seen as much progress as I would have liked, but I still + think it's time to get the ball rolling a bit again + last_post_date: "2012-12-03T10:23:00Z" + last_post_link: https://summermute2012.blogspot.com/2012/12/wme-testing-chivalry-is-not-dead.html + last_post_categories: [] + last_post_language: "" + last_post_guid: dcd56ab821f732a7745dcf986f99555e + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-032a9c7511b2487324aa77588b23dcbe.md b/content/discover/feed-032a9c7511b2487324aa77588b23dcbe.md new file mode 100644 index 000000000..ce6f4ad2f --- /dev/null +++ b/content/discover/feed-032a9c7511b2487324aa77588b23dcbe.md @@ -0,0 +1,57 @@ +--- +title: Hyperspacial Gaming Reality +date: "1970-01-01T00:00:00Z" +description: Random thoughts and opinions on Mac gaming +params: + feedlink: https://hyperspatialgamingreality.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 032a9c7511b2487324aa77588b23dcbe + websites: + https://hyperspatialgamingreality.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Apple + - Civilization III + - Diablo III + - StarCraft 2 + - World of Warcraft + - blizzard + - cataclysm + - horde + - iPhone + - nerf + - raiding + - starcraft + relme: + https://cpp-muttering.blogspot.com/: true + https://hyperspatialgamingreality.blogspot.com/: true + https://www.blogger.com/profile/16367423341141776840: true + last_post_title: When Will Blizzard Learn (Part 1 - reprise) + last_post_description: So Cataclysm arrived last week and in between leveling every + class and profession my main character has on them I've also noticed the changes + in how the social hubs in the main cities have changed + last_post_date: "2010-12-13T21:40:00Z" + last_post_link: https://hyperspatialgamingreality.blogspot.com/2010/12/when-will-blizzard-learn-part-1-reprise.html + last_post_categories: + - World of Warcraft + last_post_language: "" + last_post_guid: af9c70432cee3831548375ba697a782a + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-03405f157c97557968f6ddb5ad3bb3cd.md b/content/discover/feed-03405f157c97557968f6ddb5ad3bb3cd.md new file mode 100644 index 000000000..309474683 --- /dev/null +++ b/content/discover/feed-03405f157c97557968f6ddb5ad3bb3cd.md @@ -0,0 +1,41 @@ +--- +title: all that's past is prologue... +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://prologuist.blogspot.com/rss.xml + feedtype: rss + feedid: 03405f157c97557968f6ddb5ad3bb3cd + websites: {} + blogrolls: [] + recommended: [] + recommender: + - https://frankmcpherson.blog/feed.xml + categories: [] + relme: {} + last_post_title: The Quick Fix - a Build Post + last_post_description: For years, when I got a new haircut or color I have wanted + to go out to celebrate it.So tonight we went to Lowe's (and Home Depot) — proving + I am Officially Old. Though we did run into another + last_post_date: "2024-07-09T01:40:00Z" + last_post_link: https://prologuist.blogspot.com/2024/07/the-quick-fix-build-post.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 1934280af7d2a0306a3dd0d7a69a4777 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 0 + score: 11 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-0347d1b8dc62f356cd095947480051af.md b/content/discover/feed-0347d1b8dc62f356cd095947480051af.md deleted file mode 100644 index 5da186524..000000000 --- a/content/discover/feed-0347d1b8dc62f356cd095947480051af.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Danny van Kooten -date: "1970-01-01T00:00:00Z" -description: Openbare berichten van @dvk@toot.re -params: - feedlink: https://toot.re/@dvk.rss - feedtype: rss - feedid: 0347d1b8dc62f356cd095947480051af - websites: - https://toot.re/@dvk: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://www.dannyvankooten.com/: true - https://www.kokoanalytics.com/: false - https://www.mc4wp.com/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-035a852b4828462df46131330e19b86a.md b/content/discover/feed-035a852b4828462df46131330e19b86a.md deleted file mode 100644 index 56e4e2ce5..000000000 --- a/content/discover/feed-035a852b4828462df46131330e19b86a.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for daniel.haxx.se -date: "1970-01-01T00:00:00Z" -description: tech, open source and networking -params: - feedlink: https://daniel.haxx.se/blog/comments/feed/ - feedtype: rss - feedid: 035a852b4828462df46131330e19b86a - websites: - https://daniel.haxx.se/blog: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on curl user survey 2024 by Daniel Stenberg - last_post_description: |- - In reply to sirocyl. - - @sirocyl: correct, I would never dream of running a third-party - last_post_date: "2024-05-23T06:48:54Z" - last_post_link: https://daniel.haxx.se/blog/2024/05/14/curl-user-survey-2024/comment-page-1/#comment-27001 - last_post_categories: [] - last_post_guid: 1fc1bcb780c62e50db9883ebadad60c3 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-035bd0dfe6d2991a3288eb0fa10d073d.md b/content/discover/feed-035bd0dfe6d2991a3288eb0fa10d073d.md new file mode 100644 index 000000000..22f16ffd0 --- /dev/null +++ b/content/discover/feed-035bd0dfe6d2991a3288eb0fa10d073d.md @@ -0,0 +1,42 @@ +--- +title: Steph Ango +date: "2024-06-28T15:53:09Z" +description: "" +params: + feedlink: https://stephango.com/feed.xml + feedtype: atom + feedid: 035bd0dfe6d2991a3288eb0fa10d073d + websites: + https://stephango.com/: false + blogrolls: [] + recommended: [] + recommender: + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php + - https://weidok.al/feed.xml + categories: [] + relme: {} + last_post_title: What can we remove? + last_post_description: "" + last_post_date: "2024-06-28T00:00:00Z" + last_post_link: https://stephango.com/remove + last_post_categories: [] + last_post_language: "" + last_post_guid: 74f883b85597725bd8b8a4e2c1fbedd6 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 1 + score: 12 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-0372720e0256cb47de66411360b3f0b5.md b/content/discover/feed-0372720e0256cb47de66411360b3f0b5.md new file mode 100644 index 000000000..700f71f72 --- /dev/null +++ b/content/discover/feed-0372720e0256cb47de66411360b3f0b5.md @@ -0,0 +1,51 @@ +--- +title: Will Schenk +date: "1970-01-01T00:00:00Z" +description: Recent content on Will Schenk +params: + feedlink: https://willschenk.com/feed.xml + feedtype: rss + feedid: 0372720e0256cb47de66411360b3f0b5 + websites: + https://willschenk.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://willschenk.com/: true + last_post_title: Vacation Book Reading + last_post_description: |- + Spent a few weeks in Spain, managed to get some good reading in! + + + + + + The Latchkey Murders (2015) + + + Since Ksenia is Russian I have a new appreciation of the Russians and + Soviets. Not totally + last_post_date: "2024-07-08T08:28:52Z" + last_post_link: https://willschenk.com/fragments/2024/vacation_book_reading/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 57498ac9221b3afd974e4dd6b86e2783 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-03772d18deec0a20089223d7d04f5c3a.md b/content/discover/feed-03772d18deec0a20089223d7d04f5c3a.md new file mode 100644 index 000000000..70524b8d7 --- /dev/null +++ b/content/discover/feed-03772d18deec0a20089223d7d04f5c3a.md @@ -0,0 +1,44 @@ +--- +title: Torsten Werner's blog +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://twerner.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 03772d18deec0a20089223d7d04f5c3a + websites: + https://twerner.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - german + relme: + https://twerner.blogspot.com/: true + last_post_title: Angst vor Gaslaternen + last_post_description: Aus theologischen Gründen:weil sie als Eingriff in die Ordnung + Gottes erscheint. Nach dieser ist die Nacht zur Finsternis eingesetzt, die nur + zu gewissen Zeiten vom Mondlicht unterbrochen wird. + last_post_date: "2008-01-12T16:36:00Z" + last_post_link: https://twerner.blogspot.com/2008/01/angst-vor-gaslaternen.html + last_post_categories: + - german + last_post_language: "" + last_post_guid: 714256edcff819e9ad862e22e7a3ff6b + score_criteria: + cats: 1 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 12 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-037894c3eb2252db9c7dae29072e52e4.md b/content/discover/feed-037894c3eb2252db9c7dae29072e52e4.md new file mode 100644 index 000000000..4804a6dea --- /dev/null +++ b/content/discover/feed-037894c3eb2252db9c7dae29072e52e4.md @@ -0,0 +1,112 @@ +--- +title: Fred Madiot +date: "2024-07-07T22:40:02+02:00" +description: Eclipse, Model-Driven Engineering, Software Modernization +params: + feedlink: https://fmadiot.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 037894c3eb2252db9c7dae29072e52e4 + websites: + https://fmadiot.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - CDO + - EMF + - EMF Facet + - Eclipse + - Java + - MoDisco + - OCL + - Obeo Designer + - SMM + - acceleo + - adm + - avionics + - b3 + - browser + - case-study + - conference + - customization + - demo camp + - development + - download + - dsl + - eclipsecon + - ecore + - eef + - esa + - extensibility + - facet + - flex + - generation + - gmf + - helios + - indigo + - install + - jee + - jsp + - junit + - kdm + - magic-draw + - md day + - mdd + - mde + - mdsd + - metamodel + - mia-insight + - mia-studio + - migration + - model + - modeling + - modisco website + - nantes + - nasa + - omg + - quality + - rcp + - refactoring + - reverse + - roadshow + - satellite + - sirius + - siriuscon + - smartEA + - sonar + - space + - squale + - system engineering + - tests + - thales + - uml + - vb6 + - video + relme: + https://fmadiot.blogspot.com/: true + https://www.blogger.com/profile/11419643764598868613: true + last_post_title: Group And Stack Your Diagram Elements With Sirius 3.1 + last_post_description: "" + last_post_date: "2015-11-02T13:55:15+01:00" + last_post_link: https://fmadiot.blogspot.com/2015/11/group-and-stack-your-diagram-elements.html + last_post_categories: + - sirius + last_post_language: "" + last_post_guid: 03eac073dd18057b3882b07fe19e7176 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-037e089f1cd84f7522747c86651e961b.md b/content/discover/feed-037e089f1cd84f7522747c86651e961b.md deleted file mode 100644 index ad80acf43..000000000 --- a/content/discover/feed-037e089f1cd84f7522747c86651e961b.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Sara Soueidan -date: "1970-01-01T00:00:00Z" -description: Public posts from @SaraSoueidan@front-end.social -params: - feedlink: https://front-end.social/@SaraSoueidan.rss - feedtype: rss - feedid: 037e089f1cd84f7522747c86651e961b - websites: - https://front-end.social/@SaraSoueidan: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://practical-accessibility.today/: true - https://sarasoueidan.com/: false - https://sarasoueidan.com/newsletter: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-03858ee03b2c85599014eee556fc05ac.md b/content/discover/feed-03858ee03b2c85599014eee556fc05ac.md index 5af868f3d..bb362fa99 100644 --- a/content/discover/feed-03858ee03b2c85599014eee556fc05ac.md +++ b/content/discover/feed-03858ee03b2c85599014eee556fc05ac.md @@ -19,27 +19,30 @@ params: - https://visitmy.website/feed.xml categories: [] relme: - https://dribbble.com/mappleton: false https://github.com/MaggieAppleton: true https://indieweb.social/@maggie: true - https://twitter.com/Mappletons: false - https://uk.linkedin.com/in/maggieappleton: false - last_post_title: Home-Cooked Software and Barefoot Developers + https://maggieappleton.com/: true + last_post_title: The Expanding Dark Forest and Generative AI last_post_description: "" - last_post_date: "2024-06-02T00:00:00Z" - last_post_link: https://maggieappleton.com/home-cooked-software + last_post_date: "2023-01-03T00:00:00Z" + last_post_link: https://maggieappleton.com/ai-dark-forest last_post_categories: [] - last_post_guid: 3b6dd35fe6cd115cd2ba766e1cb5d168 + last_post_language: "" + last_post_guid: d4b69cbde957260ae25618309dcb0838 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 19 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-038a39c4b0a3cc345a144fbade28cef2.md b/content/discover/feed-038a39c4b0a3cc345a144fbade28cef2.md new file mode 100644 index 000000000..12e45d09f --- /dev/null +++ b/content/discover/feed-038a39c4b0a3cc345a144fbade28cef2.md @@ -0,0 +1,50 @@ +--- +title: On Persistence +date: "2024-05-13T22:51:56-07:00" +description: "" +params: + feedlink: https://onpersistence.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 038a39c4b0a3cc345a144fbade28cef2 + websites: + https://onpersistence.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - datasources jpa eclipselink + - eclipselink jpa sql query + - eclipselink moxy jaxb spring webservices + - eclipselink spring + - jpa xmltype eclipselink oracle xml + - toplinkgrid + relme: + https://onpersistence.blogspot.com/: true + https://ontoplink.blogspot.com/: true + https://shaunmsmith.blogspot.com/: true + https://www.blogger.com/profile/03444889032778621661: true + last_post_title: Mapping XMLTYPE + last_post_description: "" + last_post_date: "2011-08-30T12:11:03-07:00" + last_post_link: https://onpersistence.blogspot.com/2011/08/mapping-xmltype.html + last_post_categories: + - jpa xmltype eclipselink oracle xml + last_post_language: "" + last_post_guid: 9eac9c97b2c917d700c28540a9098120 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-03965c642c594f4d144ea3c7b44360e5.md b/content/discover/feed-03965c642c594f4d144ea3c7b44360e5.md new file mode 100644 index 000000000..bdaea9172 --- /dev/null +++ b/content/discover/feed-03965c642c594f4d144ea3c7b44360e5.md @@ -0,0 +1,112 @@ +--- +title: Eclipse RCP +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://richclientplatform.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 03965c642c594f4d144ea3c7b44360e5 + websites: + https://richclientplatform.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - AbstractUIPlugin + - BIRT + - Image + - ImageData + - ImageRegistry + - SWT.DOUBLE_BUFFERED + - TPTP + - action + - actionset + - animal house + - article + - blog + - books + - break point + - cheat sheet + - cheatsheet + - cnf + - command + - common navigator framework + - double buffered + - dynamic help + - eclipse ide + - eclipse rcp + - editor + - europa + - extension + - go into + - go up + - graphics + - handler + - help + - high performance + - ibm + - initializeImageRegistry + - ipe + - java + - learn + - linux + - log4j + - logging + - lotus expeditor + - lotus symphony + - oil and gas industry + - org.eclipse.ui.menus + - plugin + - postgres + - problem + - rendering + - report + - save + - seismic + - shutdown + - signal 15 + - sigterm + - soa + - sourceforge + - sql + - swt + - thread + - tracing + - user assistance + - view + - windows + relme: + https://richclientplatform.blogspot.com/: true + https://www.blogger.com/profile/01188144177878844017: true + last_post_title: Got a bug? Who ya gonna call? + last_post_description: |- + No one! + + Seriously, this is the problem we face all the time when users run into a problem with our software. They don't call, they figure out an inefficient work around, they get frustrated, or stop + last_post_date: "2009-04-04T11:18:00Z" + last_post_link: https://richclientplatform.blogspot.com/2009/04/got-bug-who-ya-gonna-call.html + last_post_categories: + - eclipse ide + - eclipse rcp + - log4j + - logging + - postgres + last_post_language: "" + last_post_guid: 5a62f2c41be6d4a9bd782f6ed796c545 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-03af26943c9bdfb0cc205d6bee9373d3.md b/content/discover/feed-03af26943c9bdfb0cc205d6bee9373d3.md deleted file mode 100644 index 2cc4a2eb6..000000000 --- a/content/discover/feed-03af26943c9bdfb0cc205d6bee9373d3.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: Mike Street's Blog & Notes -date: "2024-05-09T18:05:51Z" -description: Blog posts, notes and links from Mike Street (mikestreety.co.uk) -params: - feedlink: https://www.mikestreety.co.uk/rss-all.xml - feedtype: rss - feedid: 03af26943c9bdfb0cc205d6bee9373d3 - websites: - https://www.mikestreety.co.uk/: true - blogrolls: [] - recommended: [] - recommender: - - https://ttntm.me/blog/feed.xml - - https://ttntm.me/everything.xml - - https://ttntm.me/likes/feed.xml - categories: [] - relme: - https://github.com/mikestreety/: true - https://gitlab.com/mikestreety: true - https://hachyderm.io/@mikestreety: true - https://twitter.com/mikestreety: false - https://www.mikestreety.co.uk/: true - last_post_title: Detect JavaScript Support in CSS - last_post_description: |- - CSS supports seems to be getting more and more options every week! - - https://ryanmulligan.dev/blog/detect-js-support-in-css/ - Read time: 1 mins - last_post_date: "2024-05-09T18:03:24Z" - last_post_link: https://www.mikestreety.co.uk/notes/detect-javascript-support-in-css/ - last_post_categories: [] - last_post_guid: 9b7238e823ea11184960f116f845f780 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 15 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-03b8b2e11f242ec94c0e1463b06f9d4f.md b/content/discover/feed-03b8b2e11f242ec94c0e1463b06f9d4f.md new file mode 100644 index 000000000..1b6b0aaa7 --- /dev/null +++ b/content/discover/feed-03b8b2e11f242ec94c0e1463b06f9d4f.md @@ -0,0 +1,127 @@ +--- +title: Edmar Moretti +date: "2024-03-14T02:14:06-07:00" +description: O que ando vendo, ouvindo e fazendo na área de geoprocessamento +params: + feedlink: https://edmarmoretti.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 03b8b2e11f242ec94c0e1463b06f9d4f + websites: + https://edmarmoretti.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - AJAX + - Apache + - BI + - CKAN + - CONCAR + - Cidades + - Dados abertos + - ESRI + - FORMDIN + - GDAL + - GPS + - Geojsp + - Geonetwork + - Geoserver + - Geoserver OpenLayers + - Google Earth + - Google Maps + - INDA + - INDE + - INPE + - Instalação + - JSON + - MS4W + - Mapserver + - OGC + - OSM + - OpenLayers + - OpenStreetMap + - PHP-Mapscript + - PostGis + - Recline + - SLD + - SPRING + - StoryMap + - Thematic Mapping + - Ubuntu + - VINDE + - WMS + - WMS-T + - Windows + - YUI + - apresentação + - bing + - censo + - conceitos + - dados + - divulgação + - e-ping + - emprego + - evento + - geografia + - geos + - governo + - gvSIG + - i3Geo + - i3geo ubuntu mapserver + - ibge + - ideias + - javascript + - kml + - legislação + - mapa interativo + - meio ambiente + - metadados + - nuvem + - osGeo + - php + - plugin + - política + - processamento de imagens + - programação + - proj4js + - qgis + - raster + - redes sociais + - simbologia + - software livre + - tecnologia + - terralib + - tutorial + - twitter + - xsendfile + relme: + https://edmarmoretti.blogspot.com/: true + https://mapasnaweb.blogspot.com/: true + https://www.blogger.com/profile/15675245972117324157: true + last_post_title: Storymap + last_post_description: "" + last_post_date: "2015-10-22T18:41:19-07:00" + last_post_link: https://edmarmoretti.blogspot.com/2015/10/storymap.html + last_post_categories: + - JSON + - StoryMap + - i3Geo + last_post_language: "" + last_post_guid: f865d637231fdfdb2ff8a40450f6db0c + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-03c26267a95a78155812939beecc81bc.md b/content/discover/feed-03c26267a95a78155812939beecc81bc.md deleted file mode 100644 index b5dc673b5..000000000 --- a/content/discover/feed-03c26267a95a78155812939beecc81bc.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Comments for Doc Searls Weblog -date: "1970-01-01T00:00:00Z" -description: Just trying to make stuff happen -params: - feedlink: https://doc.searls.com/comments/feed/ - feedtype: rss - feedid: 03c26267a95a78155812939beecc81bc - websites: - https://blogs.law.harvard.edu/doc: false - https://doc.searls.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Archiving a Way by Doc Searls - last_post_description: |- - In reply to Adrian McEwen. - - Yes. It's one of the reasons I've stayed on Flickr. - last_post_date: "2024-06-03T21:51:04Z" - last_post_link: https://doc.searls.com/2024/06/03/archiving-a-way/#comment-20331 - last_post_categories: [] - last_post_guid: 15e7dc364efe49375478e19f1fd99038 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-03f0fdd92b85f21bf26e1b064bfc0559.md b/content/discover/feed-03f0fdd92b85f21bf26e1b064bfc0559.md deleted file mode 100644 index b3c38f7c7..000000000 --- a/content/discover/feed-03f0fdd92b85f21bf26e1b064bfc0559.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Phil Nash -date: "1970-01-01T00:00:00Z" -description: Public posts from @philnash@mastodon.social -params: - feedlink: https://mastodon.social/@philnash.rss - feedtype: rss - feedid: 03f0fdd92b85f21bf26e1b064bfc0559 - websites: - https://mastodon.social/@philnash: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/philnash: true - https://philna.sh/: true - https://twitter.com/philnash: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-03f3ef465231ff5693737537f8bb7fb8.md b/content/discover/feed-03f3ef465231ff5693737537f8bb7fb8.md deleted file mode 100644 index ca2c25d17..000000000 --- a/content/discover/feed-03f3ef465231ff5693737537f8bb7fb8.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: One Man's Notes -date: "1970-01-01T00:00:00Z" -description: Tries to make digital journalism better. Tries to be a good egg. Requires - coffee. ☕️ He/his. -params: - feedlink: https://adders.blog/podcast.xml - feedtype: rss - feedid: 03f3ef465231ff5693737537f8bb7fb8 - websites: - https://adders.blog/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Society & Culture - relme: - https://micro.blog/adders: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 1 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 10 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-03fc09432ba441282d4cd3721ef314de.md b/content/discover/feed-03fc09432ba441282d4cd3721ef314de.md deleted file mode 100644 index 9f9974945..000000000 --- a/content/discover/feed-03fc09432ba441282d4cd3721ef314de.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Calum Ryan -date: "2024-05-27T22:00:00Z" -description: "" -params: - feedlink: https://calumryan.com/feeds/atom - feedtype: atom - feedid: 03fc09432ba441282d4cd3721ef314de - websites: - https://calumryan.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://fed.brid.gy/r/https:/calumryan.com/: false - https://github.com/calumryan: true - https://indieweb.org/User:Calumryan.com: false - https://micro.blog/calumryan: false - https://toot.cafe/@calumryan: false - last_post_title: Weeknote 82 - last_post_description: "" - last_post_date: "2024-05-27T22:00:00Z" - last_post_link: https://calumryan.com/articles/weeknote-82 - last_post_categories: [] - last_post_guid: ebfcc607d1a9fdc7814790c79719d08c - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-040bb6ec407feb59b84415efb424d9db.md b/content/discover/feed-040bb6ec407feb59b84415efb424d9db.md index b8d25cdba..78724e790 100644 --- a/content/discover/feed-040bb6ec407feb59b84415efb424d9db.md +++ b/content/discover/feed-040bb6ec407feb59b84415efb424d9db.md @@ -12,28 +12,33 @@ params: blogrolls: [] recommended: [] recommender: + - https://josh.blog/comments/feed - https://josh.blog/feed categories: [] relme: {} - last_post_title: 12 Jurors Unanimously Find Trump Guilty & NCAA Finally to Pay Athletes - Who Earn Them Billions - last_post_description: Smartphones Benefit Teens More Than Harm Them, Trump Claims - Bigly Crowd but Photo Shows Otherwise, The Boston Tea Partygoers Would Hate Today's - GOP, John Denver Sings “Poems, Prayers & Promises” - last_post_date: "2024-06-04T10:01:40Z" - last_post_link: https://kareem.substack.com/p/12-jurors-unanimously-find-trump + last_post_title: Should Biden Quit & SCOTUS Wants Trump Elected + last_post_description: 'What I’m Discussing Today: Kareem’s Daily Quote: I give + a new spin on an old Michael Jordan quote. American media heavyweights tell president: + it’s time to quit: The question isn’t about' + last_post_date: "2024-07-05T10:02:15Z" + last_post_link: https://kareem.substack.com/p/should-biden-quit-and-scotus-wants last_post_categories: [] - last_post_guid: f09475f8dae254778ff4404c908711be + last_post_language: "" + last_post_guid: 2bc78aa6588686366951845f0f2952b1 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-042b051f7ed2fef0372fa611423d059e.md b/content/discover/feed-042b051f7ed2fef0372fa611423d059e.md new file mode 100644 index 000000000..32b200ab8 --- /dev/null +++ b/content/discover/feed-042b051f7ed2fef0372fa611423d059e.md @@ -0,0 +1,67 @@ +--- +title: Eclipse Code Recommenders +date: "1970-01-01T00:00:00Z" +description: The code recommenders team blog moved to http://codetrails.com/blog/ +params: + feedlink: https://code-recommenders.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 042b051f7ed2fef0372fa611423d059e + websites: + https://code-recommenders.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - code examples recommender + - code recommenders + - code search engine + - eclipse + - extended javadoc + - gsoc + - ide 2.0 + - mined documentation + - project proposal + - snipmatch + - vision + relme: + https://code-recommenders.blogspot.com/: true + https://draft.blogger.com/profile/04192783689046741384: true + last_post_title: 'GSOC Proposal: Create a social snippets infrastructure' + last_post_description: |- + This is proposal #5 submitted to this year's GSOC by Amandeep Singh. + Feel invited to leave comments on Amandeep's proposal below.  + + + PERSONAL DETAILS + + + + + Name : Amandeep Singh + + + Email address : aman + last_post_date: "2013-05-15T09:22:00Z" + last_post_link: https://code-recommenders.blogspot.com/2013/05/create-social-snippets-infrastructure.html + last_post_categories: + - gsoc + - snipmatch + last_post_language: "" + last_post_guid: 5e11fc76482c44a9f807e975c8079666 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-045817084abcc6a04ca8c137ae06635a.md b/content/discover/feed-045817084abcc6a04ca8c137ae06635a.md new file mode 100644 index 000000000..31d3a8bb6 --- /dev/null +++ b/content/discover/feed-045817084abcc6a04ca8c137ae06635a.md @@ -0,0 +1,45 @@ +--- +title: Gluonic +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://gluonic.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 045817084abcc6a04ca8c137ae06635a + websites: + https://gluonic.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://gluonic.blogspot.com/: true + https://iteration-zero.blogspot.com/: true + https://www.blogger.com/profile/12067621123008652431: true + https://zweisachen.blogspot.com/: true + last_post_title: Way to go - Gluon Creator + last_post_description: After having worked on the FIFE project for a long time I + stumbled on this post about the Gluon Creator project. Before diving head first + into churning out code let's have a look at the direction + last_post_date: "2009-09-10T06:17:00Z" + last_post_link: https://gluonic.blogspot.com/2009/09/way-to-go-gluon-creator.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 8b91c11f2480f3e6a6c92564f5f9b4aa + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-0463cb320e1174a5aac83e7fbab2c998.md b/content/discover/feed-0463cb320e1174a5aac83e7fbab2c998.md new file mode 100644 index 000000000..4e7590215 --- /dev/null +++ b/content/discover/feed-0463cb320e1174a5aac83e7fbab2c998.md @@ -0,0 +1,44 @@ +--- +title: Cellular Automata Acceleration +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://cellacc.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 0463cb320e1174a5aac83e7fbab2c998 + websites: + https://cellacc.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://cellacc.blogspot.com/: true + https://summermute2012.blogspot.com/: true + https://www.blogger.com/profile/15228832038565149878: true + last_post_title: Simulation, and visualization + last_post_description: Now, reading thousands of binary digits in text becomes rather + unwieldy quite fast, so I also wrote a simple program that converts the text output + to BMP, for easier comparison. An added bonus here, + last_post_date: "2014-05-29T18:52:00Z" + last_post_link: https://cellacc.blogspot.com/2014/05/simulation-and-visualization.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 83e39037c1be9dec57a32a65e087cecf + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-04771e3320b44a0e37cc8de8ad3d8722.md b/content/discover/feed-04771e3320b44a0e37cc8de8ad3d8722.md index 34a989d03..c3718b010 100644 --- a/content/discover/feed-04771e3320b44a0e37cc8de8ad3d8722.md +++ b/content/discover/feed-04771e3320b44a0e37cc8de8ad3d8722.md @@ -1,6 +1,6 @@ --- title: Articles by Aaron Parecki -date: "2024-06-04T13:33:28Z" +date: "2024-07-09T03:28:11Z" description: "" params: feedlink: https://aaronparecki.com/feed.xml @@ -11,33 +11,13 @@ params: blogrolls: [] recommended: [] recommender: - - https://chrisburnell.com/feed.xml - - https://hacdias.com/feed.xml - https://weidok.al/feed.xml categories: [] relme: + https://aaronparecki.com/: true + https://aaronparecki.com/@aaronpk: true https://aaronparecki.com/aaronpk: true - https://bsky.app/profile/aaronpk.com: false - https://cash.me/$aaronpk: false - https://flickr.com/aaronpk: false - https://foursquare.com/aaronpk: false https://github.com/aaronpk: true - https://instagram.com/aaronpk_2d: false - https://instagram.com/aaronpk_tv: false - https://kit.co/aaronpk: false - https://micro.blog/aaronpk: false - https://paypal.me/apk: false - https://speakerdeck.com/aaronpk: false - https://twitter.com/aaronpk: false - https://u.wechat.com/kKChiO-sSbgJQFf0UJrpHhE: false - https://www.amazon.com/gp/profile/amzn1.account.AHJ2OJ7NXSYM23FDDEDVZV2UR4MA: false - https://www.amazon.com/shop/aaronparecki: false - https://www.duolingo.com/profile/aaronpk: false - https://www.last.fm/user/aaron_pk: false - https://www.linkedin.com/in/aaronparecki: false - https://www.slideshare.net/aaronpk: false - https://www.w3.org/users/59996: false - https://youtube.com/aaronpk: false last_post_title: FedCM for IndieAuth last_post_description: IndieWebCamp Düsseldorf took place this weekend, and I was inspired to work on a quick hack for demo day to show off a new feature I've been @@ -45,17 +25,22 @@ params: last_post_date: "2024-05-12T07:39:30-07:00" last_post_link: https://aaronparecki.com/2024/05/12/3/fedcm-for-indieauth last_post_categories: [] + last_post_language: "" last_post_guid: b6586deb3e6c02902038b903d10878f1 score_criteria: cats: 0 description: 0 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 12 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-048132b4799f4eaae623ada392c913e4.md b/content/discover/feed-048132b4799f4eaae623ada392c913e4.md new file mode 100644 index 000000000..70521d7b6 --- /dev/null +++ b/content/discover/feed-048132b4799f4eaae623ada392c913e4.md @@ -0,0 +1,42 @@ +--- +title: Emacs on Lambda Land +date: "1970-01-01T00:00:00Z" +description: Recent content in Emacs on Lambda Land +params: + feedlink: https://lambdaland.org/tags/emacs/index.xml + feedtype: rss + feedid: 048132b4799f4eaae623ada392c913e4 + websites: + https://lambdaland.org/tags/emacs/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://lambdaland.org/tags/emacs/: true + last_post_title: My Top Emacs Packages + last_post_description: If you ask anyone what the best Emacs packages are, you’ll + almost definitely hear Magit (the only Git porcelain worth using) and Org Mode + (a way to organize anything and everything in plain text) + last_post_date: "2024-05-30T00:00:00Z" + last_post_link: https://lambdaland.org/posts/2024-05-30_top_emacs_packages/ + last_post_categories: [] + last_post_language: "" + last_post_guid: a2787cfcd46906488871eb0628e34b3c + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-04b52ce5a28e164fd0089390992cf6f1.md b/content/discover/feed-04b52ce5a28e164fd0089390992cf6f1.md new file mode 100644 index 000000000..d45e53387 --- /dev/null +++ b/content/discover/feed-04b52ce5a28e164fd0089390992cf6f1.md @@ -0,0 +1,49 @@ +--- +title: 404 Media +date: "1970-01-01T00:00:00Z" +description: 404 Media is a new independent media company founded by technology journalists + Jason Koebler, Emanuel Maiberg, Samantha Cole, and Joseph Cox. +params: + feedlink: https://www.404media.co/rss/ + feedtype: rss + feedid: 04b52ce5a28e164fd0089390992cf6f1 + websites: + https://www.404media.co/: true + blogrolls: [] + recommended: [] + recommender: + - http://scripting.com/rss.xml + - http://scripting.com/rssNightly.xml + categories: + - News + relme: + https://mastodon.social/@404mediaco: true + https://www.404media.co/: true + last_post_title: Vape Shop Owners Face Federal Charges for Selling Boner Pills as + 'Amazing Honey' + last_post_description: Z Smoke Shop in Florida was allegedly selling mislabeled + Viagra and Cialis, as well as candy and snack that violated major brands' trademarks, + a federal indictment says. + last_post_date: "2024-07-08T14:49:03Z" + last_post_link: https://www.404media.co/vape-shop-owners-face-federal-charges-for-selling-boner-pills-as-amazing-honey/ + last_post_categories: + - News + last_post_language: "" + last_post_guid: b377cf8b3c78c22912cdbe3cc8be97fa + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-04bf71f98cdf1bd58163737a67b5068b.md b/content/discover/feed-04bf71f98cdf1bd58163737a67b5068b.md deleted file mode 100644 index d7b51ef60..000000000 --- a/content/discover/feed-04bf71f98cdf1bd58163737a67b5068b.md +++ /dev/null @@ -1,190 +0,0 @@ ---- -title: The Dowdberry's -date: "2024-04-23T10:27:12-06:00" -description: Apparently, the random postings of dave, until we have some idea of how - useful/interesting/painful/pleasing this is. -params: - feedlink: https://dowdberry.blogspot.com/feeds/posts/default/-/openstack - feedtype: atom - feedid: 04bf71f98cdf1bd58163737a67b5068b - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - ubuntu - - canonical - - yahtng - - geek - - google - - network - - openstack - - stuart - - trivia - - wifi - - '#allthethings' - - '#amazon' - - '#canonical' - - '#cisco' - - '#design' - - '#godaddy' - - '#google' - - '#helion' - - '#hp' - - '#monoprice' - - '#ods' - - '#openstack' - - '#oracle' - - '#python' - - '#rackspace' - - '#twc' - - '#ubuntu' - - '#uds-o' - - '#vmware' - - "1394" - - CHI - - CSU - - Colorado State University - - EPICFAIL - - Father's Day - - Flickr - - Loveland - - Trusty - - UDS-O - - Wyoming - - aging - - album lp ripping open source cd k3b flac ogg audacity drm - - alsa - - amazon - - audio - - azure - - birthday - - blogosphere - - break dancing - - camcorder - - camera - - catapult - - cell - - coffee - - cold - - core - - cub lake - - dazbog - - debug - - dictionary - - digital video - - dowdberry - - dvgrab - - e-commerce - - e-waste - - embedded link - - engineering - - etymology - - ewaste - - firewire - - flies - - fly - - focus - - fractions - - fun - - game - - gcd - - gdm - - geography - - google+ - - gpt - - grinch Christmas procrastinate lame - - groundhog day - - hack - - hacker - - hangout - - honor - - hp - - i am not an artist - - icky - - infrared - - intro - - kdump - - kino - - lame - - laptop - - latte - - lexicon - - lightdm - - mascot - - math - - melancholy - - memory lane - - mifi - - minority report - - missing - - monoprice - - mythtv - - newspaper - - nintendo - - nostalgia - - notebook - - notoriety - - offline - - physics - - pirates potc linux blog - - plus - - politics - - pulseaudio - - puzzle - - qr - - qr code - - rant - - reality check - - recycling - - rlf - - rmnp - - robot - - science - - shop - - slang - - snow - - snow snowdrift drift dogs blizzard - - snow snowdrift drift public school Loveland - - speaker - - spencer - - summer - - test - - tornado - - trebuchet - - uefi - - uncle - - vacation - - virtualization vmplayer vmx dd - - vision - - vista security microsoft cost DRM DMCA - - web design - - webcam - - whiteboard - - wiimote - - xen - - xkcd - - youtube - - zen - relme: {} - last_post_title: OpenStack 3rd Birthday - last_post_description: "" - last_post_date: "2013-07-20T16:32:25-06:00" - last_post_link: https://dowdberry.blogspot.com/2013/07/openstack-3rd-birthday.html - last_post_categories: - - birthday - - openstack - last_post_guid: 3225ea1cb8067b645eb0bed3e3116e9f - score_criteria: - cats: 5 - description: 3 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-04e95ecc02d048adbebda2b1a1d201be.md b/content/discover/feed-04e95ecc02d048adbebda2b1a1d201be.md deleted file mode 100644 index 17c2bf3a5..000000000 --- a/content/discover/feed-04e95ecc02d048adbebda2b1a1d201be.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Lars-Christian.com -date: "1970-01-01T00:00:00Z" -description: Thoughts on things. -params: - feedlink: https://lars-christian.com/feed/ - feedtype: rss - feedid: 04e95ecc02d048adbebda2b1a1d201be - websites: - https://lars-christian.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: - - Introspection - - '#Grief' - - '#philosophising' - relme: - https://mastodon.social/@lars: true - last_post_title: Grief is a boulder - last_post_description: Hard earned insight on grief. - last_post_date: "2024-06-04T09:45:50Z" - last_post_link: https://lars-christian.com/grief-is-a-boulder/ - last_post_categories: - - Introspection - - '#Grief' - - '#philosophising' - last_post_guid: 968c3765224220d80825a6a91426d908 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 18 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-04fe5ca111e2f761455cfcdef7223e76.md b/content/discover/feed-04fe5ca111e2f761455cfcdef7223e76.md new file mode 100644 index 000000000..887a7ba7d --- /dev/null +++ b/content/discover/feed-04fe5ca111e2f761455cfcdef7223e76.md @@ -0,0 +1,44 @@ +--- +title: WinterGrascph GSoC +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://wintergsoc.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 04fe5ca111e2f761455cfcdef7223e76 + websites: + https://wintergsoc.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - GSoC + relme: + https://wintergsoc.blogspot.com/: true + https://www.blogger.com/profile/05611933115756419303: true + last_post_title: Alas, the end + last_post_description: And so it has come to this, all things must end. But it is + nothing to be sad about for me, this has been a great addition to my experiences + and I welcome the change for it has been something short of + last_post_date: "2016-08-23T21:36:00Z" + last_post_link: https://wintergsoc.blogspot.com/2016/08/alas-end.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 3c7724affecc6f78bbfd0583a7e6b3fd + score_criteria: + cats: 1 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 11 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-052519189f15fa5075e3b06f7716503b.md b/content/discover/feed-052519189f15fa5075e3b06f7716503b.md new file mode 100644 index 000000000..6de274fda --- /dev/null +++ b/content/discover/feed-052519189f15fa5075e3b06f7716503b.md @@ -0,0 +1,129 @@ +--- +title: Den of the Lizard King +date: "1970-01-01T00:00:00Z" +description: |- + Gaming for (Painted) Dragons - + Home of Stellagama Publishing +params: + feedlink: https://spacecockroach.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 052519189f15fa5075e3b06f7716503b + websites: + https://spacecockroach.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 2d6 Sci-Fi OGL + - ACKS + - Adventure + - Alkonost + - BFRPG + - Barbarian Conqueror King + - Barrowmaze + - Broken Cradle + - Camalynn + - Cepheus + - Cepheus Light + - Computer Games + - Convention + - Crypts and Things + - Dark Inheritance + - Dark Nebula + - Dark Project + - Dungeons & Dragons 5E + - Dungeons and Dragons 4E + - Elysian Empire + - Epic + - 'FTL: Nomad' + - Free Kriegsspiel + - GRUNTZ + - Gargoyle 74 + - Hard Space + - Infinite Stars + - Isenvale + - Kickstarter + - Knave + - Lamentations of the Flame Princess + - Lance + - Lizards + - Mass Effect + - Monsters + - Music + - NEXUS + - NPCs + - Old School Essentials + - Outer Veil + - PTSD + - PbP + - Play Report + - PoD + - Post-Apocalyptic + - Python + - Real Life + - Reignited Stars + - Review + - Rusted Lands + - STALKER + - SWN + - Scrapyard + - Sector23 + - Stalingrad 2072 + - Starships + - Stellagama Publishing + - Strahd + - Sword of Cepheus + - Swords Against the Machine + - Swords and Wizardry + - These Stars Are Ours! + - Tomorrow's War + - Traveller + - USE ME + - Visions of Empire + - WH40K + - Wargames + - White Star + - Wounded Gaia + - XCOM + - Zazzle + - cookbook + - fiction + - game-design + - harsh beginnings + - lost islands + - miniatures + - miniatures XCOM + - sales + - settings + - solar winds + - terrain + relme: + https://spacecockroach.blogspot.com/: true + last_post_title: 'Space Opera Duels for Faster Than Light: Nomad' + last_post_description: |- + Hard science + fiction, like our real world, favors the gun over the sword. However, the space + opera genre often includes daring duels with flashing blades and sharp knives, + where heroes and villains + last_post_date: "2024-06-01T13:48:00Z" + last_post_link: https://spacecockroach.blogspot.com/2024/06/space-opera-duels-for-faster-than-light.html + last_post_categories: [] + last_post_language: "" + last_post_guid: a1c94eb1e57d7f18ded6453edae692a5 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-053022f9b5893c0560dbf50cbffc21fe.md b/content/discover/feed-053022f9b5893c0560dbf50cbffc21fe.md index 1e7354479..e7c92283e 100644 --- a/content/discover/feed-053022f9b5893c0560dbf50cbffc21fe.md +++ b/content/discover/feed-053022f9b5893c0560dbf50cbffc21fe.md @@ -14,46 +14,53 @@ params: - https://frankmeeuwsen.com/feed.xml categories: - Article - - Bally MIdway - - games - - gaming - - midway-manufacturing - - Pac-man - - retro gaming - - space-invaders - - stan-jarocki - - Stanley Jarocki - - video games + - Atari Inc + - Jeff Bell + - Jeff Bell Atari Interview + - Ted Dabney Experience Podcast + - arcade + - arcade history + - atari + - classic arcade + - podcast + - retrogaming + - videogames relme: {} - last_post_title: Bally Midway’s Stanley Jarocki - last_post_description: Sad news to report on the blog this week. Midway’s Director - of Marketing during the Golden Era of classic arcade gaming passed away on 14 - May 2024 aged 94. He lived out his later years in - last_post_date: "2024-05-25T18:42:34Z" - last_post_link: https://arcadeblogger.com/2024/05/25/bally-midways-stanley-jarocki/ + last_post_title: 'The TDE Podcast Ep 35: Atari Inc Coin-Op Engineer Jeff Bell' + last_post_description: 'Episode 35 of the Ted Dabney Experience podcast is available + now for your listening pleasure! If you enjoy reading ArcadeBlogger.com, you’ll + love the other project I’m involved with: Jeff Bell' + last_post_date: "2024-07-06T14:53:32Z" + last_post_link: https://arcadeblogger.com/2024/07/06/the-tde-podcast-ep-35-atari-inc-coin-op-engineer-jeff-bell/ last_post_categories: - Article - - Bally MIdway - - games - - gaming - - midway-manufacturing - - Pac-man - - retro gaming - - space-invaders - - stan-jarocki - - Stanley Jarocki - - video games - last_post_guid: a832ca464a79ea8ed51b275c1370dc1e + - Atari Inc + - Jeff Bell + - Jeff Bell Atari Interview + - Ted Dabney Experience Podcast + - arcade + - arcade history + - atari + - classic arcade + - podcast + - retrogaming + - videogames + last_post_language: "" + last_post_guid: aea4c042d611bb436ae35bc9d94cab71 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-05343fd0d431b231458216b521094e37.md b/content/discover/feed-05343fd0d431b231458216b521094e37.md new file mode 100644 index 000000000..0e691b306 --- /dev/null +++ b/content/discover/feed-05343fd0d431b231458216b521094e37.md @@ -0,0 +1,63 @@ +--- +title: Manfaat Kefir +date: "2024-03-12T17:40:48-07:00" +description: Khasiat minuman kefir bagi kesehatan, dari susu, lezat dan bergizi. Jelita + Kefir - 081220023911 - BBM 54FECDA9 +params: + feedlink: https://manfaatkefir.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 05343fd0d431b231458216b521094e37 + websites: + https://manfaatkefir.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - manfaat kefir + - testimonial + relme: + https://eclipsedriven.blogspot.com/: true + https://emfmodeling.blogspot.com/: true + https://enakmurahkenyang.blogspot.com/: true + https://koperasi-bersama.blogspot.com/: true + https://lumen.hendyirawan.com/: true + https://magentoadmin.blogspot.com/: true + https://manfaatkefir.blogspot.com/: true + https://mobileflashdev.blogspot.com/: true + https://ngenet-dapat-duit.blogspot.com/: true + https://panduanubuntu.blogspot.com/: true + https://phpajaxweb.blogspot.com/: true + https://qt-mobility.blogspot.com/: true + https://rumah-sehat-avicenna.blogspot.com/: true + https://rumahkostdijualbandung.blogspot.com/: true + https://scala-enterprise.blogspot.com/: true + https://spring-java-ee.blogspot.com/: true + https://tutorial-java-programming.blogspot.com/: true + https://ubuntucomputing.blogspot.com/: true + https://www.blogger.com/profile/05192845149798446052: true + https://xdkmobile.blogspot.com/: true + last_post_title: Menghilangkan Jerawat di Wajah secara Alami dengan Minuman Kefir + last_post_description: "" + last_post_date: "2015-04-19T23:50:03-07:00" + last_post_link: https://manfaatkefir.blogspot.com/2015/04/menghilangkan-jerawat-di-wajah-secara.html + last_post_categories: + - manfaat kefir + last_post_language: "" + last_post_guid: 48c9afa1226217876f3cfd017662c59c + score_criteria: + cats: 2 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-0539ade40c9fa52e91f2193d70338a95.md b/content/discover/feed-0539ade40c9fa52e91f2193d70338a95.md deleted file mode 100644 index f25dc06a4..000000000 --- a/content/discover/feed-0539ade40c9fa52e91f2193d70338a95.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Calum Ryan - All -date: "2024-06-04T13:10:00Z" -description: "" -params: - feedlink: https://calumryan.com/feeds/all/atom - feedtype: atom - feedid: 0539ade40c9fa52e91f2193d70338a95 - websites: - https://calumryan.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - . all . - relme: - https://fed.brid.gy/r/https:/calumryan.com/: false - https://github.com/calumryan: true - https://indieweb.org/User:Calumryan.com: false - https://micro.blog/calumryan: false - https://toot.cafe/@calumryan: false - last_post_title: June 4th, 2024 - last_post_description: "" - last_post_date: "2024-06-04T13:10:00Z" - last_post_link: https://calumryan.com/checkins/4113 - last_post_categories: [] - last_post_guid: e6d6453609c475d1e7544bc861bd654e - score_criteria: - cats: 1 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-0554932e4983f1da8772d55e9df1e807.md b/content/discover/feed-0554932e4983f1da8772d55e9df1e807.md index 87876bc20..6ac3ea949 100644 --- a/content/discover/feed-0554932e4983f1da8772d55e9df1e807.md +++ b/content/discover/feed-0554932e4983f1da8772d55e9df1e807.md @@ -11,33 +11,34 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: [] relme: - https://twitter.com/Oglaf: false - last_post_title: Huff and Puff + https://www.oglaf.com/latest/: true + last_post_title: Fashionably late last_post_description: "" - last_post_date: "2024-06-02T00:00:00Z" - last_post_link: https://www.oglaf.com/huffnpuff/ + last_post_date: "2024-07-07T00:00:00Z" + last_post_link: https://www.oglaf.com/fashionablylate/ last_post_categories: [] - last_post_guid: 37b6b2fb8e32c601dafce57380e33c83 + last_post_language: "" + last_post_guid: 8016c92a70048c6a33095ab64afc4fec score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 14 + score: 19 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-055e3a8338b4076fe561262ed0f5c7c6.md b/content/discover/feed-055e3a8338b4076fe561262ed0f5c7c6.md deleted file mode 100644 index 074724967..000000000 --- a/content/discover/feed-055e3a8338b4076fe561262ed0f5c7c6.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: dronopenstack -date: "1970-01-01T00:00:00Z" -description: openstack project -params: - feedlink: https://dronopenstack.wordpress.com/feed/ - feedtype: rss - feedid: 055e3a8338b4076fe561262ed0f5c7c6 - websites: - https://dronopenstack.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Uncategorized - - open source community - relme: {} - last_post_title: Blueprints, specs and anything in between - last_post_description: in my first blog post I was discussing the place of a non-developer - in the open source community and I was trying to use my experience with blueprints/specs - new process to illustrate that. I want to - last_post_date: "2014-07-18T15:30:05Z" - last_post_link: https://dronopenstack.wordpress.com/2014/07/18/blueprints-specs-and-anything-in-between/ - last_post_categories: - - Uncategorized - - open source community - last_post_guid: 9def5e2622b793a93f22ec53fdd2d42d - score_criteria: - cats: 0 - description: 3 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-056863e0ec4493a6136900828008d5c1.md b/content/discover/feed-056863e0ec4493a6136900828008d5c1.md new file mode 100644 index 000000000..4148d3c37 --- /dev/null +++ b/content/discover/feed-056863e0ec4493a6136900828008d5c1.md @@ -0,0 +1,56 @@ +--- +title: Brno Hat +date: "1970-01-01T00:00:00Z" +description: Jiri Eischmann's Blog +params: + feedlink: https://enblog.eischmann.cz/feed/ + feedtype: rss + feedid: 056863e0ec4493a6136900828008d5c1 + websites: + https://enblog.eischmann.cz/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Fedora + - Fedora 40 + - Linux + - fedora + - prague + - release party + relme: + https://blog.eischmann.cz/: true + https://eischmann.cz/: true + https://enblog.eischmann.cz/: true + https://social.vivaldi.net/@sesivany: true + last_post_title: Fedora 40 Release Party in Prague + last_post_description: An event report from Fedora 40 release party that took place + in Prague on Friday May 17th. + last_post_date: "2024-05-20T11:08:16Z" + last_post_link: https://enblog.eischmann.cz/2024/05/20/fedora-40-release-party-in-prague/ + last_post_categories: + - Fedora + - Fedora 40 + - Linux + - fedora + - prague + - release party + last_post_language: "" + last_post_guid: 81f7701e1e14d08b9c10f7368e98ceb1 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-057c0ba68e08ba346938768a2596fcd6.md b/content/discover/feed-057c0ba68e08ba346938768a2596fcd6.md new file mode 100644 index 000000000..955e41e3c --- /dev/null +++ b/content/discover/feed-057c0ba68e08ba346938768a2596fcd6.md @@ -0,0 +1,137 @@ +--- +title: All Area Code +date: "2024-03-08T06:04:00-08:00" +description: Just read about Area Code. +params: + feedlink: https://123hpcomsetupme.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 057c0ba68e08ba346938768a2596fcd6 + websites: + https://123hpcomsetupme.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Main Area Code + last_post_description: "" + last_post_date: "2022-01-06T09:36:24-08:00" + last_post_link: https://123hpcomsetupme.blogspot.com/2022/01/main-area-code.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 501d01a928f34a4432e04f1d4c59dd66 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-05929355ab13e21cd30171b8ca99dd0c.md b/content/discover/feed-05929355ab13e21cd30171b8ca99dd0c.md deleted file mode 100644 index 34a57bad1..000000000 --- a/content/discover/feed-05929355ab13e21cd30171b8ca99dd0c.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: Happy coding -date: "1970-01-01T00:00:00Z" -description: A Free Software developer weblog -params: - feedlink: https://eocanha.org/blog/feed/ - feedtype: rss - feedid: 05929355ab13e21cd30171b8ca99dd0c - websites: - https://eocanha.org/blog/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - GStreamer - - Hacking (english) - - gstreamer - - gstsegment - - synchronization - relme: {} - last_post_title: Dissecting GstSegments - last_post_description: During all these years using GStreamer, I’ve been having - to deal with GstSegments in many situations. I’ve always have had an intuitive - understanding of the meaning of each field, but never had - last_post_date: "2024-04-30T06:00:00Z" - last_post_link: https://eocanha.org/blog/2024/04/30/dissecting-gstsegments/ - last_post_categories: - - GStreamer - - Hacking (english) - - gstreamer - - gstsegment - - synchronization - last_post_guid: 8326f44c266099b40f13ceb7883d8657 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-0596fd0d6ed61e51ccb61cc56663514b.md b/content/discover/feed-0596fd0d6ed61e51ccb61cc56663514b.md new file mode 100644 index 000000000..58de661d1 --- /dev/null +++ b/content/discover/feed-0596fd0d6ed61e51ccb61cc56663514b.md @@ -0,0 +1,42 @@ +--- +title: Miscellany +date: "2024-02-22T01:50:49-08:00" +description: "" +params: + feedlink: https://pcwalton.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 0596fd0d6ed61e51ccb61cc56663514b + websites: + https://pcwalton.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - bespin + - rust + relme: + https://pcwalton.blogspot.com/: true + last_post_title: The road ahead for Rust + last_post_description: "" + last_post_date: "2011-04-29T17:31:51-07:00" + last_post_link: https://pcwalton.blogspot.com/2011/04/road-ahead-for-rust.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 41bbe93d5934183d87cd876c2e79c567 + score_criteria: + cats: 2 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 12 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-05a2cddf29db335ee37b75b3a1291f52.md b/content/discover/feed-05a2cddf29db335ee37b75b3a1291f52.md deleted file mode 100644 index ccd1a25c3..000000000 --- a/content/discover/feed-05a2cddf29db335ee37b75b3a1291f52.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Cloud {Native} -date: "1970-01-01T00:00:00Z" -description: Swapnil Kulkarni's Blog -params: - feedlink: https://cloudnativetech.wordpress.com/feed/ - feedtype: rss - feedid: 05a2cddf29db335ee37b75b3a1291f52 - websites: - https://cloudnativetech.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - blockchain - - Community - - Hyperledger - relme: {} - last_post_title: The Beauty of the Blockchain - last_post_description: The meteoric rise in the value of bitcoins has put a spotlight - on the blockchain, which is the primary public, digital ledger for bitcoin transactions. - A blockchain allows digital transactions to be - last_post_date: "2018-06-04T09:12:57Z" - last_post_link: https://cloudnativetech.wordpress.com/2018/06/04/the-beauty-of-the-blockchain/ - last_post_categories: - - blockchain - - Community - - Hyperledger - last_post_guid: c651f63b5e5bc21eba5979e3980490f4 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-05ae1f66adce40abab59e60816b7d9b0.md b/content/discover/feed-05ae1f66adce40abab59e60816b7d9b0.md index 7d10ea514..24a1bc159 100644 --- a/content/discover/feed-05ae1f66adce40abab59e60816b7d9b0.md +++ b/content/discover/feed-05ae1f66adce40abab59e60816b7d9b0.md @@ -8,7 +8,6 @@ params: feedid: 05ae1f66adce40abab59e60816b7d9b0 websites: https://beardystarstuff.net/: true - https://denny.micro.blog/: false blogrolls: [] recommended: [] recommender: @@ -16,26 +15,33 @@ params: - https://jabel.blog/podcast.xml categories: [] relme: - https://micro.blog/Denny: false + https://beardyguycreative.com/: true + https://beardystarstuff.net/: true https://social.coop/@dennyhenke: true - last_post_title: The myth of the over-powered iPad - last_post_description: 'I came upon iPad enthusist Riley Hill’s website Slate Pad - a couple days ago via his post about the new M4 iPad Pro. He asks: What Does iPad - Pro Taking Advantage Of the M4 Even Mean? –' - last_post_date: "2024-06-01T15:51:15-05:00" - last_post_link: https://beardystarstuff.net/2024/06/01/i-came-upon.html + last_post_title: Let's talk about how we organize for the preservation and expansion + of democracy + last_post_description: "I often post about my belief that Americans are too passive, + too apathetic. That we refuse to take action when we should. That we have not + taken on the responsibility of active citizenship. \nIt" + last_post_date: "2024-07-02T21:17:37-05:00" + last_post_link: https://beardystarstuff.net/2024/07/02/211506.html last_post_categories: [] - last_post_guid: 8b8fc3d470b7a69cd0a5a861c4cdb4d1 + last_post_language: "" + last_post_guid: bc5115f6e57ad809c3799b4fa19500ba score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 12 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-05afadce92746a56aef7db30555f156b.md b/content/discover/feed-05afadce92746a56aef7db30555f156b.md new file mode 100644 index 000000000..e38f32154 --- /dev/null +++ b/content/discover/feed-05afadce92746a56aef7db30555f156b.md @@ -0,0 +1,43 @@ +--- +title: Python(x,y) +date: "1970-01-01T00:00:00Z" +description: News and updates on Python(x,y) - a free scientific and engineering + development software based on the Python programming language. +params: + feedlink: https://pythonxynews.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 05afadce92746a56aef7db30555f156b + websites: + https://pythonxynews.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://pythonxynews.blogspot.com/: true + last_post_title: Python(x, y) 2.7.10.0 Released! + last_post_description: I'm happy to announce that Python(x, y) 2.7.10.0 is available + for immediate download.from any of the mirrors. The full change log can be viewed + here. Please post your comments and suggestions + last_post_date: "2015-07-01T19:16:00Z" + last_post_link: https://pythonxynews.blogspot.com/2015/07/pythonx-y-27100-released.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 67b09f62f0bac06e62e16ac2f4f0848f + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-05b3f82d4476928b86c0018fa5f6dd7e.md b/content/discover/feed-05b3f82d4476928b86c0018fa5f6dd7e.md index ba4224ae1..4764b7679 100644 --- a/content/discover/feed-05b3f82d4476928b86c0018fa5f6dd7e.md +++ b/content/discover/feed-05b3f82d4476928b86c0018fa5f6dd7e.md @@ -13,8 +13,7 @@ params: recommender: [] categories: [] relme: - https://github.com/nxadm: false - https://nxadm.apt-get.be/index.xml: false + https://nxadm.apt-get.be/tags/perl/: true last_post_title: Quo Vadis Perl last_post_description: We’ve had a week of heated discussion within the Perl 6 community. It is the type of debate where everyone seems to lose. It is not the first time @@ -22,17 +21,22 @@ params: last_post_date: "2018-11-08T21:18:01+01:00" last_post_link: https://nxadm.apt-get.be/posts/quo-vadis-perl/ last_post_categories: [] + last_post_language: "" last_post_guid: 0456fe7f14fbf26138deead40494975c score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 9 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-05b8cd6934abc951038fcdc5da1253bc.md b/content/discover/feed-05b8cd6934abc951038fcdc5da1253bc.md deleted file mode 100644 index f21e272d0..000000000 --- a/content/discover/feed-05b8cd6934abc951038fcdc5da1253bc.md +++ /dev/null @@ -1,103 +0,0 @@ ---- -title: Cloud blog from CSCfi -date: "2024-02-19T17:23:38-08:00" -description: "" -params: - feedlink: https://cloud.blog.csc.fi/feeds/posts/default/-/openstack - feedtype: atom - feedid: 05b8cd6934abc951038fcdc5da1253bc - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - openstack - - cpouta - - pouta - - ceph - - epouta - - object storage - - presentation - - radosgw - - espoo - - horizon - - image - - s3 - - storage - - ansible - - aws - - demo - - diskimage - - flavors - - gpu - - helsinki - - hpc - - maintenance - - ubuntu - - user guide - - web - - webinar - - NUMA - - bastion - - bgp - - blog - - centos - - centos8 - - cinder - - cloud-data - - data - - data lake - - dns - - documentation - - downtime - - ed25519 - - exabgp - - failover - - finland - - fstab - - git - - glance - - ha - - high availability - - icehouse - - mount - - networking - - newton - - pike - - python - - rados - - scrum - - systemd - - training - - upgrade - - volume - - volumes - - westmere - relme: {} - last_post_title: CentOS8 images published in Pouta as a tech preview - last_post_description: "" - last_post_date: "2020-02-16T21:48:45-08:00" - last_post_link: https://cloud.blog.csc.fi/2020/02/centos8-images-published-in-pouta-as.html - last_post_categories: - - centos - - centos8 - - cloud-data - - diskimage - - glance - - image - - openstack - - ubuntu - last_post_guid: f5ace1644a77701e2ed31c314785d5eb - score_criteria: - cats: 5 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-05c1272a24bd3c5bb84696fba68f1d7c.md b/content/discover/feed-05c1272a24bd3c5bb84696fba68f1d7c.md deleted file mode 100644 index 60e88ab89..000000000 --- a/content/discover/feed-05c1272a24bd3c5bb84696fba68f1d7c.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: The blackboard of Room 538 -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://room538ccpp.wordpress.com/feed/ - feedtype: rss - feedid: 05c1272a24bd3c5bb84696fba68f1d7c - websites: - https://room538ccpp.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - fun stuffs - relme: {} - last_post_title: A hilarious reply to referee. - last_post_description: For some totally irrelevant reason, I found an hilarious - reply to the referee’s report on Martin White’s web page. Fortunately, I haven’t - encountered such funny referees and editors. If you are - last_post_date: "2009-08-03T03:59:45Z" - last_post_link: https://room538ccpp.wordpress.com/2009/08/02/a-hilarious-reply-to-referee/ - last_post_categories: - - fun stuffs - last_post_guid: 7d67b97bcfd8548e390e1ac93db3b38d - score_criteria: - cats: 0 - description: 0 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-05c6d6c136d38950082cf6a344556771.md b/content/discover/feed-05c6d6c136d38950082cf6a344556771.md deleted file mode 100644 index c0a9686b6..000000000 --- a/content/discover/feed-05c6d6c136d38950082cf6a344556771.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Tom MacWright -date: "1970-01-01T00:00:00Z" -description: Public posts from @tmcw@mastodon.social -params: - feedlink: https://mastodon.social/@tmcw.rss - feedtype: rss - feedid: 05c6d6c136d38950082cf6a344556771 - websites: - https://mastodon.social/@tmcw: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://macwright.com/: true - https://twitter.com/tmcw: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-05da31e0cf4547c392d505395867d57f.md b/content/discover/feed-05da31e0cf4547c392d505395867d57f.md index b6b9456ab..3249c13c8 100644 --- a/content/discover/feed-05da31e0cf4547c392d505395867d57f.md +++ b/content/discover/feed-05da31e0cf4547c392d505395867d57f.md @@ -15,28 +15,37 @@ params: - http://scripting.com/rssNightly.xml categories: - Last week + - activitypub + - asklemmy - fediverse relme: {} - last_post_title: Last Week in Fediverse – ep 71 - last_post_description: IFTAS launches a moderator community with IFTAS Connect. - Canadian House of Commons is presented with a petition to work with open and federated - social media. - last_post_date: "2024-06-02T17:00:25Z" - last_post_link: https://fediversereport.com/last-week-in-fediverse-ep-71/ + last_post_title: Last Week in Fediverse – ep 76 + last_post_description: Shining some light on review platform NeoDB, Mastodon launches + some features to better support journalism, a first version of Ghost joins the + fediverse, and more. + last_post_date: "2024-07-07T15:49:27Z" + last_post_link: https://fediversereport.com/last-week-in-fediverse-ep-76/ last_post_categories: - Last week + - activitypub + - asklemmy - fediverse - last_post_guid: 8983a5694c185edccf5c6197eecfafb9 + last_post_language: "" + last_post_guid: b9e6079429b2d2285398e50072029855 score_criteria: cats: 0 description: 3 - postcats: 2 + feedlangs: 1 + postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 15 + score: 20 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-05e131455f3cd628273833b03533c616.md b/content/discover/feed-05e131455f3cd628273833b03533c616.md deleted file mode 100644 index 4f05c8433..000000000 --- a/content/discover/feed-05e131455f3cd628273833b03533c616.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Hemispheric Views -date: "1970-01-01T00:00:00Z" -description: Public posts from @hemisphericviews@social.lol -params: - feedlink: https://social.lol/@hemisphericviews.rss - feedtype: rss - feedid: 05e131455f3cd628273833b03533c616 - websites: - https://social.lol/@hemisphericviews: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://hemisphericviews.com/: true - https://hemisphericviews.com/discord: false - https://hemisphericviews.com/shop: false - https://oneprimeplus.com/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-05e97e1c3ace1f8bd696313d0de2838a.md b/content/discover/feed-05e97e1c3ace1f8bd696313d0de2838a.md index 1e8586895..210d479ad 100644 --- a/content/discover/feed-05e97e1c3ace1f8bd696313d0de2838a.md +++ b/content/discover/feed-05e97e1c3ace1f8bd696313d0de2838a.md @@ -1,6 +1,6 @@ --- title: Octopuns -date: "2024-06-03T12:44:38+10:00" +date: "2024-07-07T06:45:31+10:00" description: "" params: feedlink: https://www.blogger.com/feeds/3477437989623950502/posts/default @@ -10,33 +10,34 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: - guest relme: {} - last_post_title: '(Old Comic) #022 The Stuff' + last_post_title: '#130 The Physicist' last_post_description: "" - last_post_date: "2024-05-31T13:10:25+10:00" - last_post_link: https://www.octopuns.com/2024/05/old-comic-022-stuff.html + last_post_date: "2024-06-04T23:01:12+10:00" + last_post_link: https://www.octopuns.com/2024/06/130-physicist.html last_post_categories: [] - last_post_guid: 05d4c868778174aaa3d846aab4d8d612 + last_post_language: "" + last_post_guid: 9861b957ac721f98791d5953998d27e4 score_criteria: cats: 1 description: 0 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 9 + score: 12 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-05f1d23ea524dd9a613a46a8f54115f6.md b/content/discover/feed-05f1d23ea524dd9a613a46a8f54115f6.md new file mode 100644 index 000000000..7efea0ca6 --- /dev/null +++ b/content/discover/feed-05f1d23ea524dd9a613a46a8f54115f6.md @@ -0,0 +1,259 @@ +--- +title: 'Mobidéia: Idéias & Mobilidade' +date: "2024-03-14T11:15:11-03:00" +description: Repositório de idéias, projetos e alguns "delírios" durante essa vida + pessoal,acadêmica e profissional de Marcel Caraciolo +params: + feedlink: https://mobideia.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 05f1d23ea524dd9a613a46a8f54115f6 + websites: + https://mobideia.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - .NET + - 3G + - Apple + - Artificial Intelligence + - BlackBerry + - Grafos + - I.A. + - IDE + - Inteligencia artificial + - Iphone + - Java + - JavaFX + - JavaME + - MAS + - Modelagem + - S60 + - SCMAD + - Wap + - Wireless + - a + - acelerometro + - agenda + - algoritmos + - android + - api + - aplicativos + - apresentaçao + - arduino + - arte + - artigo + - ase + - assistentes virtuais + - atepassar + - aula + - aulas + - automação + - biometria + - bionica + - blog + - bluetooth + - bots + - bugs + - c++ + - carbide + - celulares + - checkin + - cin + - citi + - classificadores + - comparacoes + - compras + - compras coletivas + - computacao pervasiva + - computacao ubiqua + - computação científica + - computação ubíqua + - comunidade + - contatos + - controle + - convegencia + - crab + - crowdsourcing + - curso + - data mining + - depoimento + - desafios + - desempenho + - design patterns + - devmedia + - dicas + - django + - educação + - emulador + - encontro + - ensol + - esportes + - evento + - expressoes regulares + - facebook + - flashlite + - fotos + - foursquare + - framework + - geotagging + - google + - google maps + - gps + - graficos + - gtk + - hardware + - humor + - ideas + - ideias + - ifpe + - image recognition + - inteligencia coletiva + - interface + - internet + - ipython + - joblib + - jogos + - lg + - linguagens + - livro + - location + - lojas + - lua + - mac os + - maemo + - mapas + - marketing + - mashups + - matplotlib + - mercado + - metodologias + - mineracao de dados + - mobile + - mobile marketing + - mobile sensing + - mobile sensor + - motorola + - mp3 + - musica + - n900 + - n97 + - netbeans + - nlp + - nokia + - nokia maps + - numpy + - oauth + - oculos + - opensource + - operadora + - otimizaçao + - ovi + - palestra + - pdf + - perceptron + - perguntas e respostas + - pernambuco + - pervasive computing + - pesquisa + - pingmind + - plataformas + - playstation + - portais + - powerpoint + - programação + - projeto + - propaganda + - publicidade + - pug + - pyS60 + - pycursos + - pyfoursquare + - pygame + - pyqt + - python + - pythonBrasil + - qt + - realidade aumentada + - recomendação + - recommendation systems + - reconhecimento de imagens + - redes neurais + - redes sociais + - remobile + - rest + - reuso + - ringtones + - rotas + - scanner + - scipy + - scrum + - sdk + - sincronizaçao + - sistemas de recomendação + - slides + - sms + - social networks + - socket + - software livre + - sun + - symbian + - syncML + - tablet + - tags + - touchscreen + - tracking + - transito + - turismo + - tutorial + - tv digital + - tweephoto + - twitpic + - twitter + - ubiquitous computing + - ufpe + - video + - videos + - web + - web services + - widgets + - wiki + - windows + - windows mobile + - workshop + - wrt + - xp + - yahoo maps + relme: + https://mobideia.blogspot.com/: true + last_post_title: Slides das Palestra Novas tendências para a Educação a Distância + last_post_description: "" + last_post_date: "2012-06-19T13:51:34-03:00" + last_post_link: https://mobideia.blogspot.com/2012/06/slides-das-palestra-novas-tendencias.html + last_post_categories: + - atepassar + - educação + - palestra + - pingmind + - pycursos + - redes sociais + - slides + last_post_language: "" + last_post_guid: 236f1e24b81aa97478eee562ab2fa5de + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-062dc1d7dcfc6beccb05da69ef859951.md b/content/discover/feed-062dc1d7dcfc6beccb05da69ef859951.md new file mode 100644 index 000000000..45cd5af70 --- /dev/null +++ b/content/discover/feed-062dc1d7dcfc6beccb05da69ef859951.md @@ -0,0 +1,54 @@ +--- +title: K-Squared Ramblings +date: "1970-01-01T00:00:00Z" +description: Sci-fi, comics, humor, photos...it's all fair game. +params: + feedlink: https://hyperborea.org/journal/feed/ + feedtype: rss + feedid: 062dc1d7dcfc6beccb05da69ef859951 + websites: + https://hyperborea.org/journal/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Culver City + - Rent + - Signs of the Times + - ads + - bus stop + - housing + relme: + https://hyperborea.org/journal/: true + last_post_title: Rent! + last_post_description: |- + Spotted at a bus stop a few weeks ago. Not related to the actual Rent is Too Damn High Party as far as I can tell. Meanwhile people wonder why there’s such a problem with homelessness. + The post + last_post_date: "2024-07-03T16:06:27Z" + last_post_link: https://hyperborea.org/journal/2024/07/rent/ + last_post_categories: + - Culver City + - Rent + - Signs of the Times + - ads + - bus stop + - housing + last_post_language: "" + last_post_guid: bb1efc778c98b3370a56501beb4aa140 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-0647ce0d9aa4915a3963a3338658af43.md b/content/discover/feed-0647ce0d9aa4915a3963a3338658af43.md deleted file mode 100644 index 25fdaec73..000000000 --- a/content/discover/feed-0647ce0d9aa4915a3963a3338658af43.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Ozznotes -date: "2023-03-16T13:21:48Z" -description: |- - This is a blog with random OpenShift, Kubernetes, OpenStack and Linux related notes so I don't forget things. - If you find something inaccurate or that could be fixed, please file a bug report here. -params: - feedlink: https://jaosorior.dev/openstack-feed.xml - feedtype: rss - feedid: 0647ce0d9aa4915a3963a3338658af43 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-0659ddf8ab0c4888329b63890307bde5.md b/content/discover/feed-0659ddf8ab0c4888329b63890307bde5.md deleted file mode 100644 index 91def9043..000000000 --- a/content/discover/feed-0659ddf8ab0c4888329b63890307bde5.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Comments for Arnaldo's Ramblings -date: "1970-01-01T00:00:00Z" -description: Kernel Hacking & Tooling Mostly... -params: - feedlink: https://acmel.wordpress.com/comments/feed/ - feedtype: rss - feedid: 0659ddf8ab0c4888329b63890307bde5 - websites: - https://acmel.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on About by Allan Vieira - last_post_description: Prezado Arnaldo, meu nome é Allan . Sou entusiasta de Linux - e colecionador dos Sistemas da Conectiva. Até hj tenho a nota fiscal do meu RHCL - Marumbi adquirido em 1998 quando tinha 14 anos . - last_post_date: "2018-07-19T03:36:44Z" - last_post_link: https://acmel.wordpress.com/about/#comment-900 - last_post_categories: [] - last_post_guid: 9ddf9cde0bc12a32238627da035d6b00 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-0670d47ae5db1afb6022e6716b9b9bc1.md b/content/discover/feed-0670d47ae5db1afb6022e6716b9b9bc1.md index 90b51c162..7eae6631a 100644 --- a/content/discover/feed-0670d47ae5db1afb6022e6716b9b9bc1.md +++ b/content/discover/feed-0670d47ae5db1afb6022e6716b9b9bc1.md @@ -1,6 +1,6 @@ --- title: The Annals of the Lesser Occult Institute -date: "2024-06-04T05:54:44-07:00" +date: "2024-07-08T20:22:15-07:00" description: '@maya@occult.institute' params: feedlink: https://lesser.occult.institute/feed/ @@ -19,17 +19,22 @@ params: last_post_date: "2020-05-08T04:34:05Z" last_post_link: https://lesser.occult.institute/an-opinionated-approach-to-tiddlywiki last_post_categories: [] + last_post_language: "" last_post_guid: bd3e90f1b7cd7cfa2c98f11b586e6668 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-06789d9cebdd0ed1b0d6fb08a7fc40d6.md b/content/discover/feed-06789d9cebdd0ed1b0d6fb08a7fc40d6.md new file mode 100644 index 000000000..afc2a94c0 --- /dev/null +++ b/content/discover/feed-06789d9cebdd0ed1b0d6fb08a7fc40d6.md @@ -0,0 +1,41 @@ +--- +title: malcolm +date: "2024-03-13T15:09:13Z" +description: Haskell Programmer +params: + feedlink: https://feeds.feedburner.com/malcolm + feedtype: atom + feedid: 06789d9cebdd0ed1b0d6fb08a7fc40d6 + websites: + https://nhc98.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://nhc98.blogspot.com/: true + https://www.blogger.com/profile/08863672971675777868: true + last_post_title: We are hiring Functional Programmers. + last_post_description: "" + last_post_date: "2017-02-13T19:51:27Z" + last_post_link: http://nhc98.blogspot.com/2017/02/we-are-hiring-functional-programmers.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 53e76feee89e23c8c7d36bc34263cd25 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-0688fe5dfe8392a800214bb67b416cca.md b/content/discover/feed-0688fe5dfe8392a800214bb67b416cca.md new file mode 100644 index 000000000..e0572180e --- /dev/null +++ b/content/discover/feed-0688fe5dfe8392a800214bb67b416cca.md @@ -0,0 +1,261 @@ +--- +title: Artificial Intelligence in Motion +date: "2024-07-08T14:07:43-07:00" +description: A blog about scientific Python, data, machine learning and recommender + systems. +params: + feedlink: https://aimotion.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 0688fe5dfe8392a800214bb67b416cca + websites: + https://aimotion.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 3D + - API + - GUI + - I.A. + - Kohonen + - REST + - SOM + - abduction + - adaline + - agentes inteligentes + - alert + - algorithm + - algoritmos geneticos + - amazon + - analysis + - apontador + - applications + - apriori + - architecture + - article + - artificial intelligence + - arvores de decisao + - association analysis + - atepassar + - automobilistica + - bayes theorem + - bayesian + - benchmarking + - big data + - bioinformatics + - blog + - book + - bots + - caixeiro viajante + - cell phones + - chaco + - challenge + - chart + - chatterbot + - class + - classification + - cloud computing + - clustering + - collaborative filtering + - compiler + - computacao evolucionaria + - computer-assistance + - conference + - confusion matrix + - cookbook + - course + - coursetalk + - crab + - crawler + - cython + - data + - data mining + - database + - design + - diagnosticar + - distances metrics + - distributed computing + - dna + - e-mail + - education + - evaluation + - examples + - exome sequencing + - expert systems + - foursquare + - framework + - friendship + - funcoes + - game + - genoma + - genomika + - ghmm + - github + - google + - gource + - graph + - gremlin + - groups + - guide + - hadoop + - hello world + - hierarchical clustering + - high performance + - hmm + - how-to guides + - infographic + - information filtering + - inteligencia artificial + - inteligencia de enxame + - intelligent agents + - interface grafica + - introduction + - ipython + - joblib + - jogos + - json + - keynotes + - kmeans + - large datasets + - lecture + - library + - linear regression + - location + - logic + - logic programming + - logistic regression + - logs + - machine learning + - mapreduce + - markov + - master degree + - matplotlib + - metrics + - minimax + - mlp + - mobile + - mobile marketing + - mobile payment + - mongodb + - mrjob + - multiscaling + - neo4j + - neuronios + - next-gen sequencing + - nlp + - no sql + - nokia + - non-personalized + - normalization + - numpy + - online + - opensource + - operator + - optimization + - otimizacao + - packt + - perceptron + - performance + - portuguese + - practical data analysis + - practices + - precision + - prediction + - preprocessing + - probability + - problemas + - problems + - product recommendations + - profiling + - projects + - prolog + - pso + - pugpe + - pycon + - pyfoursquare + - pymongo + - pypso + - pypy + - pys60 + - python + - pythonbrasil + - reasoning + - recall + - recommendation systems + - recsys + - redes neurais + - regularization + - review + - robots + - roc curves + - roi + - ruby + - scientifc programming + - scientific + - scikit + - scipy + - script + - sensores + - sentiment analysis + - shell + - slides + - slope one recommender + - sms + - snapguide + - soap + - social media + - social networks + - statistics + - swi + - symbian + - text mining + - tf-idf + - tips + - tools + - traits + - tutorial + - twitter + - ubigraph + - variant analysis + - video + - visualization + - web + - web services + - wordTree + relme: + https://aimotion.blogspot.com/: true + https://draft.blogger.com/profile/03000508520057818811: true + last_post_title: MIP, my proposal for a high-performance analysis pipeline for + whole exome sequencing + last_post_description: "" + last_post_date: "2014-08-23T18:50:42-07:00" + last_post_link: https://aimotion.blogspot.com/2014/08/mip-proposal-high-performance-pipeline-whole-exome-dna-sequencing.html + last_post_categories: + - architecture + - big data + - distributed computing + - dna + - exome sequencing + - genomika + - next-gen sequencing + - tools + - variant analysis + last_post_language: "" + last_post_guid: d532ec506c111a94402e6e5713c64655 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-068e6cc283bcb67bc0afe294761dde5f.md b/content/discover/feed-068e6cc283bcb67bc0afe294761dde5f.md deleted file mode 100644 index 7605d17b6..000000000 --- a/content/discover/feed-068e6cc283bcb67bc0afe294761dde5f.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Ada.is -date: "1970-01-01T00:00:00Z" -description: The blog of Ada Rose Cannon -params: - feedlink: https://ada.is/feed - feedtype: rss - feedid: 068e6cc283bcb67bc0afe294761dde5f - websites: - https://ada.is/: true - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: [] - relme: - https://github.com/adarosecannon: true - https://glitch.com/@adarosecannon: false - https://mastodon.social/@ada: true - https://twitch.tv/AdaRoseCannon: false - https://twitter.com/AdaRoseCannon: false - https://uk.linkedin.com/in/adarose: false - last_post_title: Integrating Augmented Reality Objects into the Real World with - Light and Shadows - last_post_description: Using the WebXR Light Estimation API we can make 3D objects - appear to be physical parts of our real environment by having real lights affect - virtual objects and virtual objects casting shadows onto - last_post_date: "2022-04-06T00:00:00Z" - last_post_link: http://ada.is//blog/2022/04/06/integrating-augmented-reality-objects-into-the-real-world/ - last_post_categories: [] - last_post_guid: 0db7929b06e7d74845fb60c8f05ed4a5 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 15 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-06905100dba09bc14b2f73e6ee2d0448.md b/content/discover/feed-06905100dba09bc14b2f73e6ee2d0448.md new file mode 100644 index 000000000..06c6e14fc --- /dev/null +++ b/content/discover/feed-06905100dba09bc14b2f73e6ee2d0448.md @@ -0,0 +1,43 @@ +--- +title: Comments for Danimo's blog +date: "1970-01-01T00:00:00Z" +description: Tales from a Jack of all Trades +params: + feedlink: https://daniel.molkentin.net/comments/feed/ + feedtype: rss + feedid: 06905100dba09bc14b2f73e6ee2d0448 + websites: + https://daniel.molkentin.net/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://chaos.social/@danimo: true + https://daniel.molkentin.net/: true + last_post_title: Comment on LetsEncrypt Support for openSUSE by Jean-Marc Courtiade + last_post_description: Hi, thanks for this post, which helps make things clear about + the Let's Encrypt ecosystem, and how its approval process works. It also makes + me want to give a look to OpenSuse again :) + last_post_date: "2017-03-13T08:47:59Z" + last_post_link: https://daniel.molkentin.net/2017/02/28/letsencrypt-support-for-opensuse/#comment-1009 + last_post_categories: [] + last_post_language: "" + last_post_guid: 364df4c4cdf50fa824e2a6d5e1c68855 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-06b85e81b4cdb1f0342c7a2776e3d130.md b/content/discover/feed-06b85e81b4cdb1f0342c7a2776e3d130.md new file mode 100644 index 000000000..5b92687d8 --- /dev/null +++ b/content/discover/feed-06b85e81b4cdb1f0342c7a2776e3d130.md @@ -0,0 +1,44 @@ +--- +title: İsmail Efe's Blog Site +date: "1970-01-01T00:00:00Z" +description: İsmail Efe's Second Brain. +params: + feedlink: https://ismailefe.org/feed.xml + feedtype: rss + feedid: 06b85e81b4cdb1f0342c7a2776e3d130 + websites: + https://ismailefe.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://github.com/ektaynot: true + https://ismailefe.org/: true + last_post_title: Hobbies + last_post_description: |- + I recently found myself juggling a lot of hobbies. They take up almost all + of my free time and I want to talk about them. I will mention the + interesting ones as I don't want to talk about + last_post_date: "2024-04-23T00:00:00+03:00" + last_post_link: https://ismailefe.org/blog/hobbies/index.html + last_post_categories: [] + last_post_language: "" + last_post_guid: abb1836b37748d66e66d358e781ba97e + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-06c01b8986862cbbae1b1e319846fe30.md b/content/discover/feed-06c01b8986862cbbae1b1e319846fe30.md deleted file mode 100644 index 3f711cf9e..000000000 --- a/content/discover/feed-06c01b8986862cbbae1b1e319846fe30.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: cowsay (bot) -date: "1970-01-01T00:00:00Z" -description: Public posts from @cowsay@hachyderm.io -params: - feedlink: https://hachyderm.io/@cowsay.rss - feedtype: rss - feedid: 06c01b8986862cbbae1b1e319846fe30 - websites: - https://hachyderm.io/@cowsay: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/approved/: true - https://github.com/snowfallorg/cowsay: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-06c4aaa3dae6db382600788e87005e40.md b/content/discover/feed-06c4aaa3dae6db382600788e87005e40.md deleted file mode 100644 index 38b521250..000000000 --- a/content/discover/feed-06c4aaa3dae6db382600788e87005e40.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for Sean Carroll -date: "1970-01-01T00:00:00Z" -description: in truth, only atoms and the void -params: - feedlink: https://www.preposterousuniverse.com/blog/comments/feed/ - feedtype: rss - feedid: 06c4aaa3dae6db382600788e87005e40 - websites: - https://www.preposterousuniverse.com/blog/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: 'Comment on New Course: The Many Hidden Worlds of Quantum Mechanics - by Gordon Corte' - last_post_description: Excited to see you have a new course on Wondrium- will check - it out. I will also check out some of your other courses. Have been listening - to your podcast for a while; also a junkie for courses on - last_post_date: "2023-12-11T11:56:25Z" - last_post_link: https://www.preposterousuniverse.com/blog/2023/11/27/new-course-the-many-hidden-worlds-of-quantum-mechanics/#comment-7295910552604319754 - last_post_categories: [] - last_post_guid: 18aaa3913b5b5b08e5b0e474da892279 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-06c75be372eaac33c6ad5790bb1dbd1a.md b/content/discover/feed-06c75be372eaac33c6ad5790bb1dbd1a.md new file mode 100644 index 000000000..26a3f8637 --- /dev/null +++ b/content/discover/feed-06c75be372eaac33c6ad5790bb1dbd1a.md @@ -0,0 +1,43 @@ +--- +title: Pencarian Jati Diri +date: "2024-03-08T07:03:53-08:00" +description: "" +params: + feedlink: https://uwanmr.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 06c75be372eaac33c6ad5790bb1dbd1a + websites: + https://uwanmr.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Beasiswa + - Lomba + relme: + https://uwanmr.blogspot.com/: true + last_post_title: Info PSB Bina Siswa SMA Plus Cisarua + last_post_description: "" + last_post_date: "2009-04-25T06:50:26-07:00" + last_post_link: https://uwanmr.blogspot.com/2009/04/info-psb-bina-siswa-sma-plus.html + last_post_categories: + - Beasiswa + last_post_language: "" + last_post_guid: 1d271b37239b21235d5cbec641d5cf89 + score_criteria: + cats: 2 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-06dcaf65fe91f6ba94f59aede1d499dc.md b/content/discover/feed-06dcaf65fe91f6ba94f59aede1d499dc.md deleted file mode 100644 index e684858c6..000000000 --- a/content/discover/feed-06dcaf65fe91f6ba94f59aede1d499dc.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for Quomodocumque -date: "1970-01-01T00:00:00Z" -description: Math, Madison, food, the Orioles, books, my kids. -params: - feedlink: https://quomodocumque.wordpress.com/comments/feed/ - feedtype: rss - feedid: 06dcaf65fe91f6ba94f59aede1d499dc - websites: - https://quomodocumque.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Richness, bus travel by GZ - last_post_description: |- - -

Some odd takes on that whole situation.

- - last_post_date: "2024-06-29T17:11:19Z" - last_post_link: https://quomodocumque.wordpress.com/2024/06/24/richness-bus-travel/#comment-39428 - last_post_categories: [] - last_post_guid: 89b22e73e29477bf1cab9f4783f8ab0d - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-06e99f44d8ecab6dc651d3236cb169db.md b/content/discover/feed-06e99f44d8ecab6dc651d3236cb169db.md index 3c8aa32ba..76749c607 100644 --- a/content/discover/feed-06e99f44d8ecab6dc651d3236cb169db.md +++ b/content/discover/feed-06e99f44d8ecab6dc651d3236cb169db.md @@ -17,41 +17,52 @@ params: - https://blog.numericcitizen.me/podcast.xml - https://colinwalker.blog/dailyfeed.xml - https://colinwalker.blog/livefeed.xml - - https://www.manton.org/feed + - https://frankmcpherson.blog/feed.xml - https://www.manton.org/feed.xml - https://www.manton.org/podcast.xml categories: - - My Essays - - On Technology - AI - - Artificial Intelligence - - Generative AI - - Netflix + - Apple AI Strategy + - Field Notes + - Google + - Lithium + - Ozempic + - Semaglutides + - Washington Post + - What I am reading today relme: {} - last_post_title: Is this is the future of “blogging?” - last_post_description: Fable Studio, a San Francisco-based startup that gained fame - for demonstrating the ability to create an episode of South Park with a brief prompt, - is making headlines again. The company - last_post_date: "2024-06-03T21:00:00Z" - last_post_link: https://om.co/2024/06/03/why-i-want-my-ai-tv/ + last_post_title: Field Notes 07.03.2024 + last_post_description: On My Mind On the eve of our Independence Day, I can’t help + but think of our current political challenges. It doesn’t matter which side of + the political aisle you walk. After all, the reality of + last_post_date: "2024-07-03T20:29:25Z" + last_post_link: https://om.co/2024/07/03/field-notes-07-03-2024/ last_post_categories: - - My Essays - - On Technology - AI - - Artificial Intelligence - - Generative AI - - Netflix - last_post_guid: b8a9eca664e2a5710855a0d84e61f9e8 + - Apple AI Strategy + - Field Notes + - Google + - Lithium + - Ozempic + - Semaglutides + - Washington Post + - What I am reading today + last_post_language: "" + last_post_guid: c7c2c60b397ac118164d0b8bba2c340d score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 16 + score: 20 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-06ec1ee4eb49931cbb87a87747e6f5e7.md b/content/discover/feed-06ec1ee4eb49931cbb87a87747e6f5e7.md deleted file mode 100644 index d09e3a840..000000000 --- a/content/discover/feed-06ec1ee4eb49931cbb87a87747e6f5e7.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Stan's blog -date: "1970-01-01T00:00:00Z" -description: Recent content on Stan's blog -params: - feedlink: https://stanislas.blog/atom.xml - feedtype: rss - feedid: 06ec1ee4eb49931cbb87a87747e6f5e7 - websites: - https://stanislas.blog/: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: [] - relme: {} - last_post_title: How I use tailscale - last_post_description: |- - Tailscale is a service based on WireGuard that lets one’s devices form a peer-to-peer private network in a easy and seamless manner. - I have been using it for over a year now, so I can now do a - last_post_date: "2021-08-12T19:33:04+02:00" - last_post_link: https://stanislas.blog/2021/08/tailscale/ - last_post_categories: [] - last_post_guid: 09646d8d35288ef1d09add62a7efa193 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-0714ce424533a28bdcfc1c5b20a214d1.md b/content/discover/feed-0714ce424533a28bdcfc1c5b20a214d1.md deleted file mode 100644 index 6409ec324..000000000 --- a/content/discover/feed-0714ce424533a28bdcfc1c5b20a214d1.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: katherine -date: "1970-01-01T00:00:00Z" -description: Public posts from @kayserifserif@sunny.garden -params: - feedlink: https://sunny.garden/@kayserifserif.rss - feedtype: rss - feedid: 0714ce424533a28bdcfc1c5b20a214d1 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-071a5a6994e3647db90677dd4ccc5b36.md b/content/discover/feed-071a5a6994e3647db90677dd4ccc5b36.md deleted file mode 100644 index fab8bb4e7..000000000 --- a/content/discover/feed-071a5a6994e3647db90677dd4ccc5b36.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Comments for Linux Plumbers Conference -date: "1970-01-01T00:00:00Z" -description: Linux Plumbers Conference -params: - feedlink: https://lpc.events/blog/current/index.php/comments/feed/ - feedtype: rss - feedid: 071a5a6994e3647db90677dd4ccc5b36 - websites: - https://lpc.events/blog/current/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Announcing a Linux Plumbers Virtual Town Hall by Christian - Brauner - last_post_description: |- - Please use the following link on Thursday to join the event: - https://linuxplumbers.lwn.net/b/lin-rs8-zoh - Note that no account is necessary! - last_post_date: "2020-06-24T15:08:24Z" - last_post_link: https://lpc.events/blog/current/index.php/2020/06/19/announcing-a-linux-plumbers-virtual-town-hall/#comment-15 - last_post_categories: [] - last_post_guid: 06874ddf7bb2a0d5d3f1264c02ed3507 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-071d17de58bdc06be9b158fd03fb305f.md b/content/discover/feed-071d17de58bdc06be9b158fd03fb305f.md deleted file mode 100644 index c0adbf315..000000000 --- a/content/discover/feed-071d17de58bdc06be9b158fd03fb305f.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: K8sContributors -date: "1970-01-01T00:00:00Z" -description: Public posts from @K8sContributors@hachyderm.io -params: - feedlink: https://hachyderm.io/@K8sContributors.rss - feedtype: rss - feedid: 071d17de58bdc06be9b158fd03fb305f - websites: - https://hachyderm.io/@K8sContributors: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/approved: true - https://www.kubernetes.dev/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-0724c62436e3a8a0baab67265f693729.md b/content/discover/feed-0724c62436e3a8a0baab67265f693729.md deleted file mode 100644 index 60b596b83..000000000 --- a/content/discover/feed-0724c62436e3a8a0baab67265f693729.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Michele's Blog -date: "1970-01-01T00:00:00Z" -description: C2A5 9DA3 9961 4FFB E01B D0BC DDD4 DCCB 7515 5C6D -params: - feedlink: https://acksyn.org/rss.xml - feedtype: rss - feedid: 0724c62436e3a8a0baab67265f693729 - websites: - https://acksyn.org/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - en - relme: {} - last_post_title: In Memory of Daniel Bristot de Oliveira - last_post_description: |- - This post falls in the category of things I never thought nor wanted to write: - we lost Daniel this week due to some probable heart failure. - I met Daniel in Red Hat's internal IRC #italy channel. It - last_post_date: "2024-06-26T07:33:34Z" - last_post_link: http://acksyn.org/posts/in-memory-of-daniel-bristot-de-oliveira/ - last_post_categories: - - en - last_post_guid: a6a81a8a8bc24e3ec9b5c6402b5363ae - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-0727a144effb947ab72e64c598dfcc4d.md b/content/discover/feed-0727a144effb947ab72e64c598dfcc4d.md new file mode 100644 index 000000000..415a75011 --- /dev/null +++ b/content/discover/feed-0727a144effb947ab72e64c598dfcc4d.md @@ -0,0 +1,137 @@ +--- +title: Financial balance in debit card +date: "2023-06-20T05:48:33-07:00" +description: It all about debit card so keep visiting to my blogspot page. +params: + feedlink: https://song-khoe-tu-thien-nhien.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 0727a144effb947ab72e64c598dfcc4d + websites: + https://song-khoe-tu-thien-nhien.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: What is Direct-Debit + last_post_description: "" + last_post_date: "2022-02-11T11:11:08-08:00" + last_post_link: https://song-khoe-tu-thien-nhien.blogspot.com/2022/02/what-is-direct-debit.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 122802114cec6b66609709abfcc4be29 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-07369afcec6ebaa17409e4cbd0e2385c.md b/content/discover/feed-07369afcec6ebaa17409e4cbd0e2385c.md new file mode 100644 index 000000000..6e3722594 --- /dev/null +++ b/content/discover/feed-07369afcec6ebaa17409e4cbd0e2385c.md @@ -0,0 +1,143 @@ +--- +title: SnapChats Snaps +date: "1970-01-01T00:00:00Z" +description: many feature are hidden of snapchat +params: + feedlink: https://rajasthanroutestrails.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 07369afcec6ebaa17409e4cbd0e2385c + websites: + https://rajasthanroutestrails.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - feature of snapchat + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: SnapChats Snaps features + last_post_description: |- + That wasn't the + one in particular. Instagram is filling in huge waves, and presently youngsters + are diverting towards the stage from their cell phones. The photos are not as + slippery as Snapchat how + last_post_date: "2021-05-04T18:00:00Z" + last_post_link: https://rajasthanroutestrails.blogspot.com/2021/05/snapchats-snaps-features.html + last_post_categories: + - feature of snapchat + last_post_language: "" + last_post_guid: 95c840ca4b443de7e38639262b5fdf66 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-073f870b42d705f8a1fd7cf1679d8679.md b/content/discover/feed-073f870b42d705f8a1fd7cf1679d8679.md new file mode 100644 index 000000000..c2f6f6871 --- /dev/null +++ b/content/discover/feed-073f870b42d705f8a1fd7cf1679d8679.md @@ -0,0 +1,139 @@ +--- +title: Dda Debit Charming +date: "1970-01-01T00:00:00Z" +description: Dda Debit vs IT Carrie at it best. +params: + feedlink: https://peraktotoalternatif.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 073f870b42d705f8a1fd7cf1679d8679 + websites: + https://peraktotoalternatif.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Its Like Dda Debit Before + last_post_description: 'Dda Debit vs IT IT carries me to my key subject: Cell Phones + and Money Exchange. Recall when Cash Machines first introduced in Quite a while + and individuals utilized them free of charge. Afterward,' + last_post_date: "2021-04-10T18:12:00Z" + last_post_link: https://peraktotoalternatif.blogspot.com/2021/04/its-like-dda-debit-before.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 0492c8893d95c1328970f8259bba70a1 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-074a43c119886b2b08b00253b0f1fba6.md b/content/discover/feed-074a43c119886b2b08b00253b0f1fba6.md deleted file mode 100644 index d50bb5418..000000000 --- a/content/discover/feed-074a43c119886b2b08b00253b0f1fba6.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: ltgorm -date: "1970-01-01T00:00:00Z" -description: Public posts from @ltgorm@vivaldi.net -params: - feedlink: https://social.vivaldi.net/@ltgorm.rss - feedtype: rss - feedid: 074a43c119886b2b08b00253b0f1fba6 - websites: - https://social.vivaldi.net/@ltgorm: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-07641ed0b096631a9881356aad9674b2.md b/content/discover/feed-07641ed0b096631a9881356aad9674b2.md index e4d5732da..6f2e6f81a 100644 --- a/content/discover/feed-07641ed0b096631a9881356aad9674b2.md +++ b/content/discover/feed-07641ed0b096631a9881356aad9674b2.md @@ -12,7 +12,6 @@ params: blogrolls: [] recommended: [] recommender: - - https://www.manton.org/feed - https://www.manton.org/feed.xml - https://www.manton.org/podcast.xml categories: @@ -30,17 +29,22 @@ params: - AI - Apple - Quips + last_post_language: "" last_post_guid: c5edca04d4e6a999dde51893038b37c9 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 16 + score: 20 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-076549df4dfab1b9d52552f31034bb12.md b/content/discover/feed-076549df4dfab1b9d52552f31034bb12.md index c6eea3483..e7000351a 100644 --- a/content/discover/feed-076549df4dfab1b9d52552f31034bb12.md +++ b/content/discover/feed-076549df4dfab1b9d52552f31034bb12.md @@ -7,46 +7,42 @@ params: feedtype: rss feedid: 076549df4dfab1b9d52552f31034bb12 websites: - https://themarginalian.org/: false https://www.themarginalian.org/: true blogrolls: [] recommended: [] recommender: [] categories: + - Hannah Fries - culture - - psychology - - science - - books - - diaries - - John Quincy Adams - - philosophy - relme: {} - last_post_title: John Quincy Adams on Impostor Syndrome and the True Measure of - Success - last_post_description: “You will never get any more out of life than you expect,” - Bruce Lee wrote to himself. All expectation is a story of the possible. Every - person lives inside a story of who they are, what they are - last_post_date: "2024-06-03T20:10:30Z" - last_post_link: https://www.themarginalian.org/2024/06/03/john-quincy-adams-impostor-syndrome-success/ + - music + - poetry + relme: + https://www.themarginalian.org/: true + last_post_title: Let the Last Thing Be Song + last_post_description: '"When I die, I want to be sung across the threshold."' + last_post_date: "2024-07-05T09:54:18Z" + last_post_link: https://www.themarginalian.org/2024/07/05/let-the-last-thing-be-song/ last_post_categories: + - Hannah Fries - culture - - psychology - - science - - books - - diaries - - John Quincy Adams - - philosophy - last_post_guid: d792ae575cf3bf8fae128f8bb662e7a7 + - music + - poetry + last_post_language: "" + last_post_guid: 718364950e51dbbe676a921b6beabdfe score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 11 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-0768bc9137016a7d470736f7a2db0f17.md b/content/discover/feed-0768bc9137016a7d470736f7a2db0f17.md deleted file mode 100644 index c50d36991..000000000 --- a/content/discover/feed-0768bc9137016a7d470736f7a2db0f17.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Barcamp Bangalore -date: "1970-01-01T00:00:00Z" -description: Public posts from @barcampbangalore@hachyderm.io -params: - feedlink: https://hachyderm.io/@barcampbangalore.rss - feedtype: rss - feedid: 0768bc9137016a7d470736f7a2db0f17 - websites: - https://hachyderm.io/@barcampbangalore: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://barcampbangalore.com/: true - https://community.hachyderm.io/approved: true - https://discord.gg/MxgfAMXwFS: false - https://planning.barcampbangalore.com/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-076a46349a6baca1e5036d5fb36296d7.md b/content/discover/feed-076a46349a6baca1e5036d5fb36296d7.md new file mode 100644 index 000000000..5f4532489 --- /dev/null +++ b/content/discover/feed-076a46349a6baca1e5036d5fb36296d7.md @@ -0,0 +1,46 @@ +--- +title: søren peter mørch +date: "1970-01-01T00:00:00Z" +description: Feed +params: + feedlink: https://darch.dk/feed/page:feed.xml + feedtype: rss + feedid: 076a46349a6baca1e5036d5fb36296d7 + websites: + https://darch.dk/: true + blogrolls: [] + recommended: [] + recommender: + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php + categories: [] + relme: + https://darch.dk/: true + https://github.com/sorenpeter: true + https://norrebro.space/@sorenpeter: true + last_post_title: How I've implemented webmentions for twtxt + last_post_description: I have implemented a variant of webmention as part of my + timeline single user twtxt/yarn pod. It works, but for now it only works for me + talking to… + last_post_date: "2024-04-26T00:00:00+02:00" + last_post_link: https://darch.dk/mentions-twtxt + last_post_categories: [] + last_post_language: "" + last_post_guid: d971d53bbbdefb5a88c67014f87517d3 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-0771d2b14bb70994d5f197bc832cb992.md b/content/discover/feed-0771d2b14bb70994d5f197bc832cb992.md new file mode 100644 index 000000000..ec2ae7c83 --- /dev/null +++ b/content/discover/feed-0771d2b14bb70994d5f197bc832cb992.md @@ -0,0 +1,43 @@ +--- +title: Escaping Flatland +date: "1970-01-01T00:00:00Z" +description: When my daughters aren’t hiding my notebooks, I write essays about relationships, + writing, and being agentic and grounded in yourself +params: + feedlink: https://www.henrikkarlsson.xyz/feed + feedtype: rss + feedid: 0771d2b14bb70994d5f197bc832cb992 + websites: + https://www.henrikkarlsson.xyz/: true + blogrolls: [] + recommended: [] + recommender: + - https://therealadam.com/feed.xml + categories: [] + relme: {} + last_post_title: Advice from my editor + last_post_description: A sculptural representation of JS Bach’s Fugue in E Flat + Minor by Henrik Neugeboren “I can’t make myself finish this one,” Johanna said + one night when we were reading together in bed. She was + last_post_date: "2024-06-19T14:12:20Z" + last_post_link: https://www.henrikkarlsson.xyz/p/advice-from-my-editor + last_post_categories: [] + last_post_language: "" + last_post_guid: 181af9f2143f36945a4f3e2990989075 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-07796df0c5817a94bd37c951f2b4fef5.md b/content/discover/feed-07796df0c5817a94bd37c951f2b4fef5.md new file mode 100644 index 000000000..ca67e6d5c --- /dev/null +++ b/content/discover/feed-07796df0c5817a94bd37c951f2b4fef5.md @@ -0,0 +1,142 @@ +--- +title: Lunk Alarms Benefits +date: "1970-01-01T00:00:00Z" +description: Lunk alarm is getting worse at Gym +params: + feedlink: https://shotcit.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 07796df0c5817a94bd37c951f2b4fef5 + websites: + https://shotcit.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Alarm at evening + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Lunk Alarms Benefits + last_post_description: |- + Planet Fitness' objective market is that crowd who purchase + a modest exercise center participation and afterward don't utilize it. They use + intelligent showcasing strategies by offending individuals, + last_post_date: "2021-05-01T17:56:00Z" + last_post_link: https://shotcit.blogspot.com/2021/05/lunk-alarms-benefits.html + last_post_categories: + - Alarm at evening + last_post_language: "" + last_post_guid: 4b04928524d0301e4536c48f8dba1431 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-07ad8c865a2292acfb5739a27461b4c0.md b/content/discover/feed-07ad8c865a2292acfb5739a27461b4c0.md index abbd36b63..2455df2b5 100644 --- a/content/discover/feed-07ad8c865a2292acfb5739a27461b4c0.md +++ b/content/discover/feed-07ad8c865a2292acfb5739a27461b4c0.md @@ -11,57 +11,81 @@ params: blogrolls: - https://amerpie.lol/.well-known/recommendations.opml recommended: + - https://alexandrawolfe.ca/feed/ - https://birchtree.me/rss/ + - https://birming.com/feed/ - https://blog.numericcitizen.me/feed.xml - https://brandons-journal.com/feed.atom - - https://buttondown.email/ownyourweb/rss - https://explodingcomma.com/feed.xml - - https://feedpress.me/coryd - https://heydingus.net/feed.rss - https://ianbetteridge.com/feed/ + - https://krueger.ink/feed/ - https://manuelmoreale.com/feed/rss - https://mattlangford.com/feed.xml + - https://notes.jeddacp.com/feed/ + - https://rscottjones.com/feed/ - https://vladcampos.com/feed.xml - https://weidok.al/feed.xml - https://www.manton.org/feed.xml - https://www.thingelstad.com/feed.xml + - https://alexandrawolfe.ca/feed/?type=rss + - https://birming.com/feed/?type=rss - https://blog.numericcitizen.me/podcast.xml - - https://feedpress.me/coryd-all - - https://feedpress.me/coryd-artist-charts - - https://feedpress.me/coryd-books - - https://feedpress.me/coryd-follow - - https://feedpress.me/coryd-links + - https://brandons-journal.com/comments/feed/ + - https://brandons-journal.com/feed/ - https://explodingcomma.com/podcast.xml + - https://gkeenan.co/avgb/feed.xml - https://ianbetteridge.com/comments/feed/ - https://manuelmoreale.com/feed/instagram + - https://mattlangford.com/podcast.xml + - https://notes.jeddacp.com/feed/?type=rss + - https://rscottjones.com/comments/feed/ - https://vladcampos.com/podcast.xml - https://www.manton.org/podcast.xml - https://www.thingelstad.com/podcast.xml recommender: - - https://chrisburnell.com/feed.xml + - https://taonaw.com/categories/emacs-org-mode/feed.xml + - https://taonaw.com/feed.xml + - https://taonaw.com/podcast.xml - https://weidok.al/feed.xml categories: [] relme: - https://micro.blog/amerpie: false + https://amerpie.lol/: true + https://amerpie.omg.lol/: true + https://amerpie2.micro.blog/: true + https://amerpiegateway.micro.blog/: true + https://apps.louplummer.lol/: true + https://linkage.lol/: true + https://louplummer.lol/: true https://social.lol/@amerpie: true - last_post_title: '10 More Random #Obsidian Tips' - last_post_description: Last week I posted some of the things I learned to do in - Obsidian through trial and error and it went over pretty good, so here are 10 - more. I want to show folks not to be afraid of extensions. Many - last_post_date: "2024-06-01T20:20:56-04:00" - last_post_link: https://amerpie.lol/2024/06/01/more-random-obsidian.html + last_post_title: This Week's Bookmarks - Democracy and the church, Vietnamese chicken + salad, 25 hikes, Life's Anti-Checklist, 50 ways to fuel a conversation, Life of + a tennis player, Daily routines + last_post_description: |- + Can Democracy And Evangelical Christianity Co-Exist? | (Backyard Church) + + Goi Ga, a Crunchy Vietnamese Chicken Salad Recipe (foodandwine.com) + + 25 Easy, Scenic, and Short National-Park Hikes + last_post_date: "2024-07-06T09:36:21-04:00" + last_post_link: https://amerpie.lol/2024/07/06/this-weeks-bookmarks.html last_post_categories: [] - last_post_guid: 4e872a5185c8d8b727fafeb6b976a631 + last_post_language: "" + last_post_guid: 8af31df306b7e7f3a000f1567ebba247 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 10 relme: 2 title: 3 website: 2 - score: 22 + score: 26 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-07b36f8347c6971b5f161180d2c5129c.md b/content/discover/feed-07b36f8347c6971b5f161180d2c5129c.md index dfc018e86..38f87fa35 100644 --- a/content/discover/feed-07b36f8347c6971b5f161180d2c5129c.md +++ b/content/discover/feed-07b36f8347c6971b5f161180d2c5129c.md @@ -13,29 +13,32 @@ params: recommender: [] categories: [] relme: - https://github.com/drikkes: false - https://instagram.com/drikkes: false + https://drikk.es/: true + https://drikkmarks.glitch.me/: true https://mastodon.social/@drikkes: true - https://micro.blog/drikkes: false - https://twitter.com/drikkes: false - last_post_title: Man spricht es übrigens "Strahlen" aus, das erste ist ein Dehnungs-E. - last_post_description: Okay, das ist wirklich krass. Ich bin zwar gebürtiger Ostfriese, - habe aber im prägenden Alter von 10 bis 20 Jahren nur etwa 15 km von Straelen - entfernt gelebt. Haben die 27 Jahre danach in Bochum - last_post_date: "2024-06-04T15:10:52+02:00" - last_post_link: https://drikk.es/2024/06/04/man-spricht-es.html + last_post_title: Pulped Fiction + last_post_description: David Shrigley ist einer meiner Lieblingskünstler. Heute + in der Mittagspause habe ich endlich die halbe Stunde Zeit gefunden, mir die vor + drei Wochen erschienene Dokumentation einer seiner Arbeiten + last_post_date: "2024-07-03T13:57:36+02:00" + last_post_link: https://drikk.es/2024/07/03/pulped-fiction.html last_post_categories: [] - last_post_guid: d47efa1cf46c820cdf73eddd4f9aaed9 + last_post_language: "" + last_post_guid: 74da79e011d121bf665c5ea216c5f2b9 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 7 + score: 11 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-07ba224788db191a4611879155613ecf.md b/content/discover/feed-07ba224788db191a4611879155613ecf.md deleted file mode 100644 index a1d735c62..000000000 --- a/content/discover/feed-07ba224788db191a4611879155613ecf.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for Miranda Zhang Tech Blog -date: "1970-01-01T00:00:00Z" -description: IT related stuff -params: - feedlink: https://mirandazhangq.wordpress.com/comments/feed/ - feedtype: rss - feedid: 07ba224788db191a4611879155613ecf - websites: - https://mirandazhangq.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Where to ask question and find help OPW Experience with - OpenStack Part 1 by Wish List, Common Misunderstanding, Undocumented – OpenStack - Identity API – Authentication, Add User | - last_post_description: '[…] I have came across the following issues during my intern - work which is all about OpenStack API. […]' - last_post_date: "2014-02-10T12:41:18Z" - last_post_link: https://mirandazhangq.wordpress.com/2014/01/11/where-to-ask-question-and-find-help-opw-experience-with-openstack-part-1/comment-page-1/#comment-6 - last_post_categories: [] - last_post_guid: ec6ce8b180755e6f4262cdaa440ed6d8 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-07cf09cb2450eb8680b04c0bf625e2c8.md b/content/discover/feed-07cf09cb2450eb8680b04c0bf625e2c8.md index c4bc96b55..61659fcba 100644 --- a/content/discover/feed-07cf09cb2450eb8680b04c0bf625e2c8.md +++ b/content/discover/feed-07cf09cb2450eb8680b04c0bf625e2c8.md @@ -1,6 +1,6 @@ --- title: mattrambles on Pixelfed -date: "2024-01-01T22:55:12Z" +date: "2024-06-13T16:39:35Z" description: Person with dog photos. params: feedlink: https://pixelfed.social/users/mattrambles.atom @@ -13,25 +13,32 @@ params: recommender: [] categories: [] relme: + https://github.com/mattstein: true + https://keybase.io/mattstein: true https://mattstein.com/: true - last_post_title: '2024 day one: emergency vet trip and our very first cone. (He’s - fine, just in a drug haze after a procedure.)' - last_post_description: '2024 day one: emergency vet trip and our very first cone. - (He’s fine, just in a drug haze after a procedure.)' - last_post_date: "2024-01-01T22:55:12Z" - last_post_link: https://pixelfed.social/p/mattrambles/647570809833908541 + https://pixelfed.social/mattrambles: true + https://read.cv/mattstein: true + last_post_title: House rodent in natural habitat. + last_post_description: House rodent in natural habitat. + last_post_date: "2024-06-13T16:39:35Z" + last_post_link: https://pixelfed.social/p/mattrambles/706907891538465697 last_post_categories: [] - last_post_guid: e43cd042179b72947f6552815f97063f + last_post_language: "" + last_post_guid: f618d08b574e01006840726cb2d98295 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-07d4dc61714d1a64b6e09aac8356a2d3.md b/content/discover/feed-07d4dc61714d1a64b6e09aac8356a2d3.md new file mode 100644 index 000000000..7ca7288e5 --- /dev/null +++ b/content/discover/feed-07d4dc61714d1a64b6e09aac8356a2d3.md @@ -0,0 +1,51 @@ +--- +title: Qt funk +date: "2024-03-05T20:04:05-08:00" +description: "" +params: + feedlink: https://qt-funk.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 07d4dc61714d1a64b6e09aac8356a2d3 + websites: + https://qt-funk.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - lucid + - maverick + - mtf + - nokia + - qml + - qt + - qt components + - qt quick + - ubuntu + relme: + https://achipa.blogspot.com/: true + https://qt-funk.blogspot.com/: true + https://www.blogger.com/profile/11082060370940070595: true + last_post_title: QtMobility 1.1.1 and 1.2TP on Maemo + last_post_description: "" + last_post_date: "2011-03-04T05:26:54-08:00" + last_post_link: https://qt-funk.blogspot.com/2011/03/qtmobility-111-and-12tp-on-maemo.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 629f0f4e69b7f62194f133bf6314fdb2 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-07ef4a6cd83e8583a6cc01f7d1d3da4e.md b/content/discover/feed-07ef4a6cd83e8583a6cc01f7d1d3da4e.md new file mode 100644 index 000000000..4f04a2f03 --- /dev/null +++ b/content/discover/feed-07ef4a6cd83e8583a6cc01f7d1d3da4e.md @@ -0,0 +1,140 @@ +--- +title: All about Refrigerator +date: "1970-01-01T00:00:00Z" +description: All information about Refrigerator on blogspot. +params: + feedlink: https://nextlevelfood.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 07ef4a6cd83e8583a6cc01f7d1d3da4e + websites: + https://nextlevelfood.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: You Know about Rerigerator + last_post_description: |- + These specific How Many Amps Does a Refrigerator Use Refrigerators arrive in a wide scope of + profundities to suit different counter profundities that most families have in + their family. Counter + last_post_date: "2022-01-12T08:28:00Z" + last_post_link: https://nextlevelfood.blogspot.com/2022/01/you-know-about-rerigerator.html + last_post_categories: [] + last_post_language: "" + last_post_guid: c8ce36c4be38739f8ee0a93e1eb8604f + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-081706136fe5ef42d3f7dc8f5bff3473.md b/content/discover/feed-081706136fe5ef42d3f7dc8f5bff3473.md deleted file mode 100644 index 85a59eddc..000000000 --- a/content/discover/feed-081706136fe5ef42d3f7dc8f5bff3473.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: Code happens -date: "1970-01-01T00:00:00Z" -description: Someone near you is coding -params: - feedlink: https://rbtcollins.wordpress.com/feed/ - feedtype: rss - feedid: 081706136fe5ef42d3f7dc8f5bff3473 - websites: - https://rbtcollins.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Uncategorized - - performance - - Rust - - rustup - - testing - relme: {} - last_post_title: Rustup CI / test suite performance - last_post_description: We made things better for rustup developers recently, I thought - folk might find this interesting. - last_post_date: "2023-02-27T12:10:20Z" - last_post_link: https://rbtcollins.wordpress.com/2023/02/28/rustup-ci-test-suite-performance/ - last_post_categories: - - Uncategorized - - performance - - Rust - - rustup - - testing - last_post_guid: 1b65237d8b4f34f3b0df27f766ed1147 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-083f28c5cbde49685d678b56bb77696c.md b/content/discover/feed-083f28c5cbde49685d678b56bb77696c.md new file mode 100644 index 000000000..f12d2d5ae --- /dev/null +++ b/content/discover/feed-083f28c5cbde49685d678b56bb77696c.md @@ -0,0 +1,129 @@ +--- +title: Edmar Moretti +date: "1970-01-01T00:00:00Z" +description: O que ando vendo, ouvindo e fazendo na área de geoprocessamento +params: + feedlink: https://edmarmoretti.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 083f28c5cbde49685d678b56bb77696c + websites: + https://edmarmoretti.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - AJAX + - Apache + - BI + - CKAN + - CONCAR + - Cidades + - Dados abertos + - ESRI + - FORMDIN + - GDAL + - GPS + - Geojsp + - Geonetwork + - Geoserver + - Geoserver OpenLayers + - Google Earth + - Google Maps + - INDA + - INDE + - INPE + - Instalação + - JSON + - MS4W + - Mapserver + - OGC + - OSM + - OpenLayers + - OpenStreetMap + - PHP-Mapscript + - PostGis + - Recline + - SLD + - SPRING + - StoryMap + - Thematic Mapping + - Ubuntu + - VINDE + - WMS + - WMS-T + - Windows + - YUI + - apresentação + - bing + - censo + - conceitos + - dados + - divulgação + - e-ping + - emprego + - evento + - geografia + - geos + - governo + - gvSIG + - i3Geo + - i3geo ubuntu mapserver + - ibge + - ideias + - javascript + - kml + - legislação + - mapa interativo + - meio ambiente + - metadados + - nuvem + - osGeo + - php + - plugin + - política + - processamento de imagens + - programação + - proj4js + - qgis + - raster + - redes sociais + - simbologia + - software livre + - tecnologia + - terralib + - tutorial + - twitter + - xsendfile + relme: + https://edmarmoretti.blogspot.com/: true + https://mapasnaweb.blogspot.com/: true + https://www.blogger.com/profile/15675245972117324157: true + last_post_title: Storymap + last_post_description: Mapas são úteis para muitas coisas inclusive para contar + histórias. Era de se esperar que surgissem ferramentas de programação com esse + foco, ainda mais com a popularização de serviços em + last_post_date: "2015-10-23T01:41:00Z" + last_post_link: https://edmarmoretti.blogspot.com/2015/10/storymap.html + last_post_categories: + - JSON + - StoryMap + - i3Geo + last_post_language: "" + last_post_guid: 7a808898a267c63cbd8c6abc089856f2 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-083ffd085f8746f21d2194181e3bd76c.md b/content/discover/feed-083ffd085f8746f21d2194181e3bd76c.md deleted file mode 100644 index f98b713d3..000000000 --- a/content/discover/feed-083ffd085f8746f21d2194181e3bd76c.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for Surfing Complexity -date: "1970-01-01T00:00:00Z" -description: Lorin Hochstein's ramblings about software, complex systems, and incidents. -params: - feedlink: https://surfingcomplexity.blog/comments/feed/ - feedtype: rss - feedid: 083ffd085f8746f21d2194181e3bd76c - websites: - https://surfingcomplexity.blog/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: 'Comment on Transgressing the boundaries: Rasmussen and Woods by - Layoffs Reduce Safety – Will Gallego' - last_post_description: '[…] right that (record revenue and stock price gains notwithstanding). - Using Rasmussen’s model (summary at Lorin’s blog) of the boundaries of a given - system, the push for economic incentives' - last_post_date: "2024-06-20T13:24:48Z" - last_post_link: https://surfingcomplexity.blog/2021/05/31/transgressing-the-boundaries-rasmussen-and-woods/#comment-9444 - last_post_categories: [] - last_post_guid: 33d87858d654db0432156810fc0a6959 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-0840eadfbe70e505645be779383c522a.md b/content/discover/feed-0840eadfbe70e505645be779383c522a.md deleted file mode 100644 index d78b193cd..000000000 --- a/content/discover/feed-0840eadfbe70e505645be779383c522a.md +++ /dev/null @@ -1,50 +0,0 @@ ---- -title: Groveronline -date: "1970-01-01T00:00:00Z" -description: A Grover. Online. Saying stuff. -params: - feedlink: https://groveronline.com/feed/ - feedtype: rss - feedid: 0840eadfbe70e505645be779383c522a - websites: - https://groveronline.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Blog - - efi - - fedora - - grub2 - - linux - - lvm - - swap - relme: {} - last_post_title: 'Upgrading to Fedora 33: Removing Your Old Swap File on EFI Machine' - last_post_description: Fedora 33 adds a compressed-memory-based swap device using - zram. Cool! Now you can remove your old swap device, if you were a curmudgeon - like me and even had one in the first place. If you are NOT on - last_post_date: "2020-10-30T19:01:45Z" - last_post_link: https://groveronline.com/2020/10/30/upgrading-to-fedora-33-removing-your-old-swap-file-on-efi-machine/ - last_post_categories: - - Blog - - efi - - fedora - - grub2 - - linux - - lvm - - swap - last_post_guid: cbf0dbe811e2c6346315cf1efeafb53c - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-0849e69555da78e39cea8815f2adc21e.md b/content/discover/feed-0849e69555da78e39cea8815f2adc21e.md index b8a12c607..c19c20490 100644 --- a/content/discover/feed-0849e69555da78e39cea8815f2adc21e.md +++ b/content/discover/feed-0849e69555da78e39cea8815f2adc21e.md @@ -13,10 +13,8 @@ params: recommender: [] categories: [] relme: + https://drikkes.com/: true https://github.com/drikkes: true - https://mastodon.social/web/@drikkes: true - https://micro.blog/drikkes: false - https://twitter.com/drikkes: false last_post_title: Comment on Offensichtlich in der Tinte by drikkes last_post_description: Das Thema interessiert mich vielleicht deshalb so, weil einer meiner ersten Kunden in der Werbung . + + Merci, je corrige cela ! :) + last_post_date: "2020-06-22T10:11:19Z" + last_post_link: https://benjamin.sonntag.fr/2020/surgisphere-une-societe-de-donnees-de-sante-aux-proprietes-extraordinaires-ou-pas.html#comment-11 + last_post_categories: [] + last_post_language: "" + last_post_guid: 16cc2fcd61804b8d46bba3a4bf1d9cdc + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-124276b3ad85bfc31766599e373d86ee.md b/content/discover/feed-124276b3ad85bfc31766599e373d86ee.md new file mode 100644 index 000000000..95a283c9a --- /dev/null +++ b/content/discover/feed-124276b3ad85bfc31766599e373d86ee.md @@ -0,0 +1,59 @@ +--- +title: Gersande's Blog +date: "1970-01-01T00:00:00Z" +description: Gersande La Flèche is a writer studying biology at UQÀM. I write about + ballet, skiing, the outdoors, my hunting dog Pippin, tea, and books! +params: + feedlink: https://gersande.com/blog/rss/ + feedtype: rss + feedid: 124276b3ad85bfc31766599e373d86ee + websites: + https://gersande.com/blog/: true + blogrolls: [] + recommended: [] + recommender: + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php + categories: + - Games + - creative writing + - fantasy + - solo rpg + - table-top rpgs + - writing practice + - writing sprint + relme: + https://gersande.com/blog/: true + https://github.com/gersande: true + last_post_title: Playing through (most of) Koriko's first chapter + last_post_description: 'Back in 2022, I backed Koriko: A Magical Year, a solo role-playing + journalling game by Jack Harrison (Mousehole Press). It arrived in the mail today!' + last_post_date: "2024-07-09T01:50:55Z" + last_post_link: https://gersande.com/blog/playing-through-most-of-korikos-first-chapter/ + last_post_categories: + - Games + - creative writing + - fantasy + - solo rpg + - table-top rpgs + - writing practice + - writing sprint + last_post_language: "" + last_post_guid: d1d15681dcafb4bf0c19a6c578f9c80f + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-12432368a9be0dabf6d3ba815afc906b.md b/content/discover/feed-12432368a9be0dabf6d3ba815afc906b.md deleted file mode 100644 index 75855d5c4..000000000 --- a/content/discover/feed-12432368a9be0dabf6d3ba815afc906b.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Dokku -date: "1970-01-01T00:00:00Z" -description: Public posts from @dokku@hachyderm.io -params: - feedlink: https://hachyderm.io/@dokku.rss - feedtype: rss - feedid: 12432368a9be0dabf6d3ba815afc906b - websites: - https://hachyderm.io/@dokku: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/approved/: true - https://dokku.com/: false - https://twitter.com/dokku: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1254c96c57aa8b31f9bdef6bcfe5ac78.md b/content/discover/feed-1254c96c57aa8b31f9bdef6bcfe5ac78.md deleted file mode 100644 index a4a876073..000000000 --- a/content/discover/feed-1254c96c57aa8b31f9bdef6bcfe5ac78.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Comments for Rhoneisms -date: "1970-01-01T00:00:00Z" -description: by Patrick Rhone -params: - feedlink: https://www.patrickrhone.net/comments/feed/ - feedtype: rss - feedid: 1254c96c57aa8b31f9bdef6bcfe5ac78 - websites: - https://www.patrickrhone.net/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://micro.blog/patrickrhone: false - last_post_title: 'Comment on My Manifesto: Thrive in the Present by Eric Senf' - last_post_description: I have never seen this stated in a more eloquent or concise - way. Thank you. - last_post_date: "2008-09-30T01:07:45Z" - last_post_link: https://www.patrickrhone.net/my-manifesto-thrive-in-the-present-2/#comment-352 - last_post_categories: [] - last_post_guid: d6e2e73dab4d78d04f33f1044c82e719 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-125cce8943c4092f44a7414b0e4256e7.md b/content/discover/feed-125cce8943c4092f44a7414b0e4256e7.md deleted file mode 100644 index 1c7506ea5..000000000 --- a/content/discover/feed-125cce8943c4092f44a7414b0e4256e7.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: "" -date: "2023-07-17T00:33:27-04:00" -description: "" -params: - feedlink: https://andrescolubri.net/feed.xml - feedtype: atom - feedid: 125cce8943c4092f44a7414b0e4256e7 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - visualization, - - web, - - p5.js, - - libraries, - - culture - relme: {} - last_post_title: Special collections’ design process - last_post_description: The visualization we developed for the Network of Libraries - of the Bank of the Republic of Colombia is a web tool that allows users to create - their own search paths through the special documents and - last_post_date: "2019-12-15T11:00:00-05:00" - last_post_link: https://andrescolubri.net/blog/2019/12/15/colecciones-especiales.html - last_post_categories: - - visualization, - - web, - - p5.js, - - libraries, - - culture - last_post_guid: 15b70e402f32b705f148a55f33f1b5f5 - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 0 - website: 0 - score: 3 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-127279b8db464d7058b388b59c409e76.md b/content/discover/feed-127279b8db464d7058b388b59c409e76.md new file mode 100644 index 000000000..7ef2393cd --- /dev/null +++ b/content/discover/feed-127279b8db464d7058b388b59c409e76.md @@ -0,0 +1,44 @@ +--- +title: 'Gigathlon: Team Cycles Tesag' +date: "2024-02-19T14:08:12+01:00" +description: "" +params: + feedlink: https://teamtesag.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 127279b8db464d7058b388b59c409e76 + websites: + https://teamtesag.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://cedricmoullet.blogspot.com/: true + https://geoext.blogspot.com/: true + https://openaddresses.blogspot.com/: true + https://teamtesag.blogspot.com/: true + https://www.blogger.com/profile/06947117799577904122: true + last_post_title: 'Gigathlon 2013: Day 2' + last_post_description: "" + last_post_date: "2013-07-14T08:44:44+01:00" + last_post_link: https://teamtesag.blogspot.com/2013/07/gigathlon-2013-day-2.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 9274e1b8eb6b1e69bcdaa8d789e93ca5 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-12754f4d6e4a0a4ba74c111599d569c3.md b/content/discover/feed-12754f4d6e4a0a4ba74c111599d569c3.md deleted file mode 100644 index 79df35877..000000000 --- a/content/discover/feed-12754f4d6e4a0a4ba74c111599d569c3.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Eat This Podcast -date: "1970-01-01T00:00:00Z" -description: Public posts from @etp@indieweb.social -params: - feedlink: https://indieweb.social/@etp.rss - feedtype: rss - feedid: 12754f4d6e4a0a4ba74c111599d569c3 - websites: - https://indieweb.social/@etp: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://eatthispodcast.com/: false - https://jeremycherfas.net/: true - https://stream.jeremycherfas.net/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-127b430dcbfad938ce5d7696355a6324.md b/content/discover/feed-127b430dcbfad938ce5d7696355a6324.md new file mode 100644 index 000000000..aede56142 --- /dev/null +++ b/content/discover/feed-127b430dcbfad938ce5d7696355a6324.md @@ -0,0 +1,140 @@ +--- +title: Hill Area Code +date: "1970-01-01T00:00:00Z" +description: Keep visiting to my blogspot its all about Area Code. +params: + feedlink: https://bollywooddatabase.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 127b430dcbfad938ce5d7696355a6324 + websites: + https://bollywooddatabase.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Area Code of Village + last_post_description: |- + ''Our one city 833 area code ought not to have two region + codes,'' Borough President Donald R. Manes of Queens said. The commission took + on an arrangement set forward by the New York Telephone + last_post_date: "2022-01-14T08:17:00Z" + last_post_link: https://bollywooddatabase.blogspot.com/2022/01/area-code-of-village.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 02ecec96f89d62808a5799830b81a7da + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-12935349c0755850dcd4be7c99e5f70a.md b/content/discover/feed-12935349c0755850dcd4be7c99e5f70a.md deleted file mode 100644 index 1ad8b6541..000000000 --- a/content/discover/feed-12935349c0755850dcd4be7c99e5f70a.md +++ /dev/null @@ -1,65 +0,0 @@ ---- -title: Co-op Digital Blog -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://digitalblog.coop.co.uk/feed/ - feedtype: rss - feedid: 12935349c0755850dcd4be7c99e5f70a - websites: - https://digitalblog.coop.co.uk/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Agile Delivery - - Co-op Experience - - Design - - Digital Product Research - - Principles - - Uncategorized - - user research - - UX - - co-op - - co-op food - - E-com - - e-commerce - - Food - - quick commerce - relme: {} - last_post_title: Using guiding principles to communicate user research findings - on quick commerce - last_post_description: Co-op first started an e-commerce service in 2019 and rolled - out delivery nationwide during the pandemic. Ever since, we’ve been trying to - find out more about why people use this service. In 2023 - last_post_date: "2024-04-09T10:35:21Z" - last_post_link: https://digitalblog.coop.co.uk/2024/04/09/using-guiding-principles-to-communicate-user-research-findings-on-quick-commerce/ - last_post_categories: - - Agile Delivery - - Co-op Experience - - Design - - Digital Product Research - - Principles - - Uncategorized - - user research - - UX - - co-op - - co-op food - - E-com - - e-commerce - - Food - - quick commerce - last_post_guid: 1e998f21080adcca02686a5792730385 - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-12ac5c19b1de9ffa432f0063f84539c4.md b/content/discover/feed-12ac5c19b1de9ffa432f0063f84539c4.md deleted file mode 100644 index ad1cae124..000000000 --- a/content/discover/feed-12ac5c19b1de9ffa432f0063f84539c4.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Parimal Satyal - Neustadt.fr -date: "1970-01-01T00:00:00Z" -description: Parimal Félix Satyal is a designer and occasional writer interested in - aviation, cultural exchange, languages, science, computers, the open web and the - European Union. Neustadt.fr is his personal -params: - feedlink: https://neustadt.fr/rss.xml - feedtype: rss - feedid: 12ac5c19b1de9ffa432f0063f84539c4 - websites: - https://neustadt.fr/: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: [] - relme: - https://mamot.fr/@neustadt: true - last_post_title: Rediscovering the Small Web - last_post_description: Most websites today are built like commercial products by - professionals and marketers, optimised to draw the largest audience, generate - engagement and 'convert'. But there is also a smaller, less - last_post_date: "2020-05-25T00:00:00+01:00" - last_post_link: https://neustadt.fr/essays/the-small-web/ - last_post_categories: [] - last_post_guid: 2fdefe7206eb6b0dbd1c72ac88c8102a - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 15 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-12cf02e40821be3368aef34b413085db.md b/content/discover/feed-12cf02e40821be3368aef34b413085db.md index fd2afcb79..3b2ca4f2d 100644 --- a/content/discover/feed-12cf02e40821be3368aef34b413085db.md +++ b/content/discover/feed-12cf02e40821be3368aef34b413085db.md @@ -14,33 +14,19 @@ params: recommended: [] recommender: [] categories: + - CLI + - Microblogging - Open Web - WordPress - - CLI - dezentral - - Microblogging - twtxt relme: - https://developers.google.com/profile/u/pfefferle: false https://github.com/pfefferle: true https://gitlab.com/pfefferle: true - https://indieweb.org/User:Notiz.blog: false https://mastodon.social/@pfefferle: true - https://micro.blog/pfefferle: false - https://microformats.org/wiki/User:Pfefferle: false - https://notiz.blog/about/: false - https://openwebpodcast.de/: false - https://packagist.org/packages/pfefferle/: false - https://pfefferle.tumblr.com/: false - https://profiles.wordpress.org/pfefferle: false - https://twitter.com/pfefferle: false - https://wordpress.tv/speakers/matthias-pfefferle/: false - https://www.crunchbase.com/person/matthias-pfefferle: false - https://www.flickr.com/people/pfefferle: false - https://www.linkedin.com/in/pfefferle/: false - https://www.npmjs.com/~pfefferle: false - https://www.slideshare.net/pfefferle: false - https://www.xing.com/profile/Matthias_Pfefferle: false + https://notiz.blog/: true + https://notiz.blog/about/: true + https://profiles.wordpress.org/pfefferle/: true last_post_title: twtxt last_post_description: "twtxt ist der neue heiße (microblogging) Scheiß! twtxt is a decentralised, minimalist microblogging service for hackers. Microblogging über @@ -48,23 +34,28 @@ params: last_post_date: "2020-07-23T15:23:01Z" last_post_link: https://notiz.blog/2020/07/23/twtxt-microblogging/ last_post_categories: + - CLI + - Microblogging - Open Web - WordPress - - CLI - dezentral - - Microblogging - twtxt + last_post_language: "" last_post_guid: 849df88b32655ef422e602d6c544110b score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: de --- diff --git a/content/discover/feed-12d9147a04d4160792adab33a665ee87.md b/content/discover/feed-12d9147a04d4160792adab33a665ee87.md new file mode 100644 index 000000000..a9af85a90 --- /dev/null +++ b/content/discover/feed-12d9147a04d4160792adab33a665ee87.md @@ -0,0 +1,209 @@ +--- +title: Bat in the Attic +date: "1970-01-01T00:00:00Z" +description: A blog on 40 years of gaming and Sandbox Fantasy. +params: + feedlink: https://batintheattic.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 12d9147a04d4160792adab33a665ee87 + websites: + https://batintheattic.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 2300AD + - 4e DD + - 4e gaming + - 5e + - ADnD + - AGE System + - Adventures + - Advice + - Arrows of Indra + - Battle Machine + - Blackmarsh + - Boog + - Borderlands + - COGS Con + - Con on the Cob + - DCC RPG + - D_D Next + - Delving ADnD + - Delving Deeper + - DnD 5e + - DnD 5e DMG + - DnD 5e SRD + - DnD Next + - DnD One + - Dnd 5e Advice + - Dragon Heresy + - DriveThruRPG + - Dungeon Fantasy + - Dwarven Forge + - Dwimmermount + - Eastgate + - Ephemera + - Fantasy Grounds + - Fate + - Fight On + - Fluff + - Frog God Games + - Fudge + - GM Games + - GUMSHOE + - GURPS + - Gaming Ballistic + - Gold Star Anime + - Google Plus + - Gormmah campaign + - Gothridge Manor + - Greyhawk + - Hairsticks + - Hirst Arts + - Hobbit + - Inspiration + - Judges Guild + - Kickstarter + - Kindle + - LARP + - Legacy DnD + - Legends + - Legos + - Lost Book of Magic + - Lost Lands + - Lulu + - Majestic Fantasy RPG + - Majestic Fantasy Realms + - Majestic Stars + - Majestic wilderlands fudge + - Making it your own + - Middle Earth + - Midkemia Press + - Nbos_IPP + - New + - News + - News. Personal + - ODnD + - OS Esstentials + - OSR + - OSR. + - OSRCon + - Old School Esstentials + - Openquest + - Orbiter + - Origins + - Other Systems + - Pateron + - Petty Gods + - Phandelver + - Play + - Playing at the World + - Points of Light + - RPG Blog 2 + - RPG Tech + - Random Party Generator + - Really Funny Stuff + - Reaper + - Referee Rumbles + - Roll20 + - SJ Games + - Sandbox In Detail + - Scourge of the Demon Wolf. + - Software + - Southland + - Space + - Spears of the Dawn + - Stack Overflow + - Star Trek + - Swords Wizardry + - Tabletop + - The Fantasy Trip + - The Manor + - Thieves Guild + - Tolkein + - Tolkien + - Tools + - Traveller + - Viridistan 2017 + - Wanderer + - War System + - Weekly Game + - Wheaton + - White Star + - Wild North + - Wilderlands of High Fantasy + - alternate history + - bat in the attic games + - board games + - building feudal setting + - character sheets + - computers + - cyberpunk + - family + - from the attic + - game stores. + - gaming + - gaming accessory + - gaming convention + - gaming stories + - goodman games + - harn + - hero system + - iPad + - inkscape + - inspiration mapping + - lotfp + - majestic realms rpg + - majestic wilderlands + - making dungeons + - managing sandbox campaigns + - mapping + - miniatures + - minimal dungeons + - movies + - nbos + - news gurps kickstarter + - news kickstarter + - old school + - podcast + - publishing + - refereeing + - religion + - review + - reviews + - runequest + - sandbox fantasy + - scouge of teh Demon Wolf. + - superhero + - wargames + relme: + https://batintheattic.blogspot.com/: true + last_post_title: How to Make a Fantasy Sandbox is the Deal of the Day + last_post_description: For those of you who are unsure about How to Make a Fantasy + Sandbox, tomorrow, June 27th, the PDF version will be the Deal of the Day on DriveThruRPG. + For 24 hours starting at 10 a.m. Central Time + last_post_date: "2024-06-27T11:13:00Z" + last_post_link: https://batintheattic.blogspot.com/2024/06/how-to-make-fantasy-sandbox-is-deal-of.html + last_post_categories: + - bat in the attic games + - sandbox fantasy + last_post_language: "" + last_post_guid: ccdab8ccbd6111df45ffe8ec10f00937 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-12f0a12e5230f5547aaa96dc32c93131.md b/content/discover/feed-12f0a12e5230f5547aaa96dc32c93131.md new file mode 100644 index 000000000..84e92555f --- /dev/null +++ b/content/discover/feed-12f0a12e5230f5547aaa96dc32c93131.md @@ -0,0 +1,47 @@ +--- +title: Stranger's Geospatial +date: "1970-01-01T00:00:00Z" +description: I will be posting mainly about various geospatial topics concerning the + deegree project. Other topics will include technical details about dealing with + Java, maven and so forth, and possibly other +params: + feedlink: https://strangersgeospatial.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 12f0a12e5230f5547aaa96dc32c93131 + websites: + https://strangersgeospatial.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://strangersgeospatial.blogspot.com/: true + https://www.blogger.com/profile/09747254309509486454: true + last_post_title: A personal matter + last_post_description: |- + Many of you already know this, but I wanted to make an 'official' statement on me going into part time retirement regarding deegree. + + + For personal reasons, I had to give up being self employed. + last_post_date: "2013-09-17T09:38:00Z" + last_post_link: https://strangersgeospatial.blogspot.com/2013/09/a-personal-matter.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 09bd0be666be86a9a8b4336bd2084d76 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-12ff116b1e9ed60fded68242ac5df7a8.md b/content/discover/feed-12ff116b1e9ed60fded68242ac5df7a8.md new file mode 100644 index 000000000..e4fe73d34 --- /dev/null +++ b/content/discover/feed-12ff116b1e9ed60fded68242ac5df7a8.md @@ -0,0 +1,44 @@ +--- +title: Kos+Eclipse +date: "1970-01-01T00:00:00Z" +description: My weblog about Eclipse development. +params: + feedlink: https://kos-eclipse.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 12ff116b1e9ed60fded68242ac5df7a8 + websites: + https://kos-eclipse.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://kos-eclipse.blogspot.com/: true + https://kos-w-szwecji.blogspot.com/: true + https://www.blogger.com/profile/17477844421204281952: true + last_post_title: I want YOU to describe your view of a C/C++ IDE! + last_post_description: As you may know, I'm conducting a Google Summer of Code project + to improve the coding ergonomy of Eclipse CDT. The project is scheduled for over + 2 months and I'd like to spend this time as + last_post_date: "2010-05-17T18:23:00Z" + last_post_link: https://kos-eclipse.blogspot.com/2010/05/i-want-you-to-describe-your-view-of-cc_17.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 724bff4443d58bc194be9d03ba1d7f0a + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-12ff3a5272a563ae88ef17a2c5bf75b6.md b/content/discover/feed-12ff3a5272a563ae88ef17a2c5bf75b6.md deleted file mode 100644 index 09a4c4c1a..000000000 --- a/content/discover/feed-12ff3a5272a563ae88ef17a2c5bf75b6.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Comments for Alessio Ababilov's Blog -date: "1970-01-01T00:00:00Z" -description: A blog about IT, clouds, and my favourite Linux -params: - feedlink: https://aababilov.wordpress.com/comments/feed/ - feedtype: rss - feedid: 12ff3a5272a563ae88ef17a2c5bf75b6 - websites: - https://aababilov.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: 'Comment on Chromium OS on HP Mini: xf86-video-modesetting by aababilov' - last_post_description: 'Hi! Here is it: https://dl.dropboxusercontent.com/u/73662103/xf86-video-modesetting-0.5.0.tbz2' - last_post_date: "2014-01-26T20:01:00Z" - last_post_link: https://aababilov.wordpress.com/2013/09/08/chromium-os-on-hp-mini-xf86-video-modesetting/#comment-310 - last_post_categories: [] - last_post_guid: 1c35a8bfe909d4144c6556a40031479d - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-131625fb120c5c8bd1f6e1c579ac4081.md b/content/discover/feed-131625fb120c5c8bd1f6e1c579ac4081.md deleted file mode 100644 index a53e31db9..000000000 --- a/content/discover/feed-131625fb120c5c8bd1f6e1c579ac4081.md +++ /dev/null @@ -1,49 +0,0 @@ ---- -title: openstack – Arun's blog -date: "1970-01-01T00:00:00Z" -description: Hack it -params: - feedlink: https://arunsag.wordpress.com/tag/openstack/feed/ - feedtype: rss - feedid: 131625fb120c5c8bd1f6e1c579ac4081 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - dev - - openstack - - python - - work - - yahoo - - ironic - - opensource - relme: {} - last_post_title: Contributing to the openstack project - last_post_description: I have been busy at work  for the past few weeks trying to - get a big picture of how openstack works and how all these projects fit together. - Especially my focus has been on the bare metal project - last_post_date: "2014-11-07T06:00:14Z" - last_post_link: https://arunsag.wordpress.com/2014/11/07/contributing-to-the-openstack-project/ - last_post_categories: - - dev - - openstack - - python - - work - - yahoo - - ironic - - opensource - last_post_guid: caf80d2292abca4ed0b7645b7beb8db1 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-132cb8a87decf001501618e5e2811a56.md b/content/discover/feed-132cb8a87decf001501618e5e2811a56.md new file mode 100644 index 000000000..4dfd60cba --- /dev/null +++ b/content/discover/feed-132cb8a87decf001501618e5e2811a56.md @@ -0,0 +1,42 @@ +--- +title: Torsten Werner's blog +date: "2024-03-13T05:00:22-07:00" +description: "" +params: + feedlink: https://twerner.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 132cb8a87decf001501618e5e2811a56 + websites: + https://twerner.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - german + relme: + https://twerner.blogspot.com/: true + last_post_title: Angst vor Gaslaternen + last_post_description: "" + last_post_date: "2016-08-06T10:29:07-07:00" + last_post_link: https://twerner.blogspot.com/2008/01/angst-vor-gaslaternen.html + last_post_categories: + - german + last_post_language: "" + last_post_guid: 2a91f55078e154472ddfb26b457601f4 + score_criteria: + cats: 1 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 12 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-13385e4748da25d20d0c2538bce6bb4d.md b/content/discover/feed-13385e4748da25d20d0c2538bce6bb4d.md new file mode 100644 index 000000000..b6f8912c7 --- /dev/null +++ b/content/discover/feed-13385e4748da25d20d0c2538bce6bb4d.md @@ -0,0 +1,44 @@ +--- +title: Riff Blog - Music, sort of. And computing. And ... +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://blog.riff.org/general_feed?_exception_statuscode=404&destination=/ + feedtype: rss + feedid: 13385e4748da25d20d0c2538bce6bb4d + websites: + https://blog.riff.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://blog.riff.org/: true + https://mamot.fr/@fgm: true + last_post_title: 'Tip of the day: using Homebrew to get PHP Pear extensions behind + a proxy' + last_post_description: Most of the time, installing tools using Homebrew works flawlessly, + including PHP these days. However, having to work in a client environment requiring + a proxy, the PHP 8.1 post-install failed when + last_post_date: "2023-06-01T12:15:14Z" + last_post_link: https://blog.riff.org/2023_06_01_tip_of_the_day_using_homebrew_to_get_php_pear_extensions_behind_a_proxy + last_post_categories: [] + last_post_language: "" + last_post_guid: 41097663d2b7c53fadb3e3352f0a14ac + score_criteria: + cats: 0 + description: 0 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 11 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-1351d899e4d43a351a7b2fe9c24976fd.md b/content/discover/feed-1351d899e4d43a351a7b2fe9c24976fd.md new file mode 100644 index 000000000..96a7fb28b --- /dev/null +++ b/content/discover/feed-1351d899e4d43a351a7b2fe9c24976fd.md @@ -0,0 +1,41 @@ +--- +title: Setoids and Cats +date: "2024-03-13T16:33:09Z" +description: "" +params: + feedlink: https://setoidsandcats.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 1351d899e4d43a351a7b2fe9c24976fd + websites: + https://setoidsandcats.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://setoidsandcats.blogspot.com/: true + https://www.blogger.com/profile/05420921538604886480: true + last_post_title: Formalising a High-Performance Microkernel + last_post_description: "" + last_post_date: "2006-08-22T19:53:04+01:00" + last_post_link: https://setoidsandcats.blogspot.com/2006/08/formalising-high-performance.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 253c354f18506ba35a0429d8dad77bb5 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-138092690ad469fa73d0c572541a682d.md b/content/discover/feed-138092690ad469fa73d0c572541a682d.md new file mode 100644 index 000000000..dcc219bbf --- /dev/null +++ b/content/discover/feed-138092690ad469fa73d0c572541a682d.md @@ -0,0 +1,57 @@ +--- +title: No sleep for you +date: "2024-06-28T06:43:28-03:00" +description: The place where you go when you don't have where to go. +params: + feedlink: https://nosleepforyou.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 138092690ad469fa73d0c572541a682d + websites: + https://nosleepforyou.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - arena + - fisl + - fun + - google + - hardware + - linux + - lost + - plone + - python + - segurança + - thunderbird + - ubuntu + - zope + relme: + https://nosleepforyou.blogspot.com/: true + last_post_title: Volta da PyConBrasil, Sandboard e Calabresa + last_post_description: "" + last_post_date: "2007-09-30T17:56:45-03:00" + last_post_link: https://nosleepforyou.blogspot.com/2007/09/volta-da-pyconbrasil-sandboard-e.html + last_post_categories: + - fun + - google + - plone + - python + last_post_language: "" + last_post_guid: 3cd837cb169681faa36267fe36b932ba + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-13ae286f843317a12cfcfa1eac93dce8.md b/content/discover/feed-13ae286f843317a12cfcfa1eac93dce8.md new file mode 100644 index 000000000..ada752e9b --- /dev/null +++ b/content/discover/feed-13ae286f843317a12cfcfa1eac93dce8.md @@ -0,0 +1,53 @@ +--- +title: Marko Lalic +date: "2024-02-20T18:51:26+01:00" +description: "" +params: + feedlink: https://mlalic.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 13ae286f843317a12cfcfa1eac93dce8 + websites: + https://mlalic.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Debian + - Django + - Google Summer of Code + - HTTP/2 + - Open Source + - Package Tracking System + - Python + - Rust + relme: + https://jabhay832.blogspot.com/: true + https://mlalic.blogspot.com/: true + https://www.blogger.com/profile/15030366957025845249: true + last_post_title: solicit - an HTTP/2 Library for Rust + last_post_description: "" + last_post_date: "2015-03-12T18:55:42+01:00" + last_post_link: https://mlalic.blogspot.com/2015/03/solicit-http2-library-for-rust.html + last_post_categories: + - HTTP/2 + - Open Source + - Rust + last_post_language: "" + last_post_guid: 6ec33fe7099da3665a994030a694101a + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-13beff4e5ecce64f2cef86abe5bed7b0.md b/content/discover/feed-13beff4e5ecce64f2cef86abe5bed7b0.md new file mode 100644 index 000000000..708c13f72 --- /dev/null +++ b/content/discover/feed-13beff4e5ecce64f2cef86abe5bed7b0.md @@ -0,0 +1,72 @@ +--- +title: dniM ruoY nepO +date: "2024-06-25T12:01:58+03:00" +description: '"The mind is not a vessel to be filled but a fire to be kindled." — + Plutarch' +params: + feedlink: https://dnimruoynepo.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 13beff4e5ecce64f2cef86abe5bed7b0 + websites: + https://dnimruoynepo.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Basic + - Calc + - LibreOffice + - Philosophic + - Styles + - Templates + - Writer + - bugs + - chart + - command line + - design team + - enterprise + - function + - government + - history + - icon themes + - mascros + - migration + - numbering + - owl + - page + - protection + - sundries + - variable + relme: + https://dnimruoynepo.blogspot.com/: true + https://infineconomics.blogspot.com/: true + https://tagezi.blogspot.com/: true + https://www.blogger.com/profile/06477487516753870290: true + last_post_title: Migration to LibreOffice in the Russian Federation + last_post_description: "" + last_post_date: "2018-03-27T09:32:31+03:00" + last_post_link: https://dnimruoynepo.blogspot.com/2018/03/migration-to-libreoffice-in-russia.html + last_post_categories: + - LibreOffice + - enterprise + - government + - migration + last_post_language: "" + last_post_guid: f3b49f4307b3abdddec666004e4d5b92 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-13cbb19ea577f533635449bbecdd4e37.md b/content/discover/feed-13cbb19ea577f533635449bbecdd4e37.md new file mode 100644 index 000000000..fbab7e83c --- /dev/null +++ b/content/discover/feed-13cbb19ea577f533635449bbecdd4e37.md @@ -0,0 +1,42 @@ +--- +title: CeleritasCelery activity +date: "2020-04-21T15:53:47Z" +description: "" +params: + feedlink: https://gitlab.com/foconoco.atom + feedtype: atom + feedid: 13cbb19ea577f533635449bbecdd4e37 + websites: + https://gitlab.com/foconoco: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://gitlab.com/foconoco: true + last_post_title: 'CeleritasCelery commented on issue #29 at Alex Branham / system-packages' + last_post_description: You can always just run Emacs as administrator. That will + give all of its sub-processes admin privileges. There is no need to wait for runas + before adding this. + last_post_date: "2020-04-21T15:53:47Z" + last_post_link: https://gitlab.com/jabranham/system-packages/-/issues/29 + last_post_categories: [] + last_post_language: "" + last_post_guid: 65479b2dcbe9d933412d02a26b975999 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-13e433c132c94eecbc0d7180cd7600bf.md b/content/discover/feed-13e433c132c94eecbc0d7180cd7600bf.md deleted file mode 100644 index 6fb15bf67..000000000 --- a/content/discover/feed-13e433c132c94eecbc0d7180cd7600bf.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Russell Davies -date: "2024-05-25T13:45:42+01:00" -description: |- - Semi-retiring - About | Feed | Archive | Findings - - - (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ - (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s -params: - feedlink: https://russelldavies.typepad.com/planning/rss.xml - feedtype: atom - feedid: 13e433c132c94eecbc0d7180cd7600bf - websites: - https://russelldavies.typepad.com/planning/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Tumbling around in the back seat - last_post_description: 'Related and unrelated, as is the way of blogging. I''ve - been sitting on the harbour beach in Portree, reading this piece in the New Yorker - about Judith Butler. It starts like this: "In January, the' - last_post_date: "2024-05-25T13:45:42+01:00" - last_post_link: https://russelldavies.typepad.com/planning/2024/05/tumbling-around-in-the-back-seat.html - last_post_categories: [] - last_post_guid: 3fe19397910a29b682bee170ab8d8d1d - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-13e63ed0261521380638beb5558858f5.md b/content/discover/feed-13e63ed0261521380638beb5558858f5.md index 833a64b87..6ccb1b818 100644 --- a/content/discover/feed-13e63ed0261521380638beb5558858f5.md +++ b/content/discover/feed-13e63ed0261521380638beb5558858f5.md @@ -11,37 +11,35 @@ params: https://werd.io/: false https://werd.io/content/all: true https://werd.io/content/bookmarkedpages: false - https://werd.io/content/posts: false blogrolls: [] recommended: [] recommender: [] - categories: - - '#AI' + categories: [] relme: - https://about.werd.io/: false - https://newsletter.werd.io/: false - https://werd.social/@ben: false - https://www.linkedin.com/in/benwerd: false - https://www.threads.net/@ben.werdmuller: false - last_post_title: Zoom CEO Eric Yuan wants AI clones in meetings - last_post_description: Eric Yuan has a really bizarre vision of what the future - should look like:"Today for this session, ideally, I do not need to join. I can - send a digital version of myself to join so I can go to the - last_post_date: "2024-06-04T12:55:21Z" - last_post_link: https://werd.io/2024/zoom-ceo-eric-yuan-wants-ai-clones-in-meetings - last_post_categories: - - '#AI' - last_post_guid: 9e48a2d8c3d38024ae710e601c73c93f + https://werd.io/content/all: true + last_post_title: What matters + last_post_description: The only goal that really matters is building a stable, informed, + democratic, inclusive, equitable, peaceful society where everyone has the opportunity + to live a good life. One where we care for our + last_post_date: "2024-07-08T15:30:28Z" + last_post_link: https://werd.io/2024/what-matters-1 + last_post_categories: [] + last_post_language: "" + last_post_guid: 7dc138dc36a2cff562e80d0b548296bd score_criteria: cats: 0 description: 3 - postcats: 1 + feedlangs: 1 + postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 10 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-13ecf8536cc63dbd6c476e8a9f924fd3.md b/content/discover/feed-13ecf8536cc63dbd6c476e8a9f924fd3.md index cbace9dcc..8b9f908f4 100644 --- a/content/discover/feed-13ecf8536cc63dbd6c476e8a9f924fd3.md +++ b/content/discover/feed-13ecf8536cc63dbd6c476e8a9f924fd3.md @@ -20,11 +20,9 @@ params: - smartsolar - solarpv relme: - https://fstop138.berrange.com/: false + https://fstop138.berrange.com/: true https://hachyderm.io/@berrange: true - https://twitter.com/berrange: false - https://www.flickr.com/photos/dberrange/: false - https://www.youtube.com/user/dberrange: false + https://www.berrange.com/: true last_post_title: Visualizing potential solar PV generation vs smart meter electricity usage last_post_description: For many years now, energy suppliers have been rolling out @@ -40,17 +38,22 @@ params: - smartmeter - smartsolar - solarpv + last_post_language: "" last_post_guid: f9ec6c2b801eb61fe5289ef14f41b48a score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-13f17058c2f0bf5be45ac0594a2ae14c.md b/content/discover/feed-13f17058c2f0bf5be45ac0594a2ae14c.md new file mode 100644 index 000000000..3bc859437 --- /dev/null +++ b/content/discover/feed-13f17058c2f0bf5be45ac0594a2ae14c.md @@ -0,0 +1,140 @@ +--- +title: All about Cheese +date: "1970-01-01T00:00:00Z" +description: Thanks for visiting to our page and keep visiting. +params: + feedlink: https://escoladelideresaprendercomjesus.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 13f17058c2f0bf5be45ac0594a2ae14c + websites: + https://escoladelideresaprendercomjesus.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Delecious Cheese + last_post_description: |- + The science behind this is, what kind of cheese does chipotle use the saddlebag has a chemical + (rennin) that causes coagulation. The rennin chemical can be taken care of + because it is produced using + last_post_date: "2022-01-10T11:38:00Z" + last_post_link: https://escoladelideresaprendercomjesus.blogspot.com/2022/01/delecious-cheese.html + last_post_categories: [] + last_post_language: "" + last_post_guid: f4f097692efb6f46762d8f55e11ee26d + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-13fa1dbc7c4db6c364433da06e1896ec.md b/content/discover/feed-13fa1dbc7c4db6c364433da06e1896ec.md index f19233782..85608b25f 100644 --- a/content/discover/feed-13fa1dbc7c4db6c364433da06e1896ec.md +++ b/content/discover/feed-13fa1dbc7c4db6c364433da06e1896ec.md @@ -7,39 +7,40 @@ params: feedtype: rss feedid: 13fa1dbc7c4db6c364433da06e1896ec websites: - https://blog.filippo.io/: false https://words.filippo.io/: true blogrolls: [] recommended: [] recommender: - https://alexsci.com/blog/rss.xml - - https://hacdias.com/feed.xml categories: - dispatches - maintainer relme: - https://abyssdomain.expert/@filippo: false - https://bsky.app/profile/filippo.abyssdomain.expert: false - last_post_title: My Maintenance Policy - last_post_description: A short document describing how I maintain open source projects. - It talks about how I prefer issues to PRs, how I work in batches, and how I'm - trigger-happy with bans. It's all about setting - last_post_date: "2024-04-06T20:40:02Z" - last_post_link: https://words.filippo.io/dispatches/maintenance-policy/ + https://words.filippo.io/: true + last_post_title: Geomys, a blueprint for a sustainable open source maintenance firm + last_post_description: Announcing Geomys, a small firm of professional maintainers + with a portfolio of critical Go projects. + last_post_date: "2024-07-08T14:36:43Z" + last_post_link: https://words.filippo.io/dispatches/geomys/ last_post_categories: - dispatches - maintainer - last_post_guid: 7389aa1b4cd1a647cd53f23024e6e32c + last_post_language: "" + last_post_guid: d05ef8fa49a3f58e7b70ba9fa81e3a45 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 2 + posts: 3 promoted: 5 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 16 + score: 20 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-13fd327a5f08cbc00345369875b2fe49.md b/content/discover/feed-13fd327a5f08cbc00345369875b2fe49.md index b0785624d..14a982be2 100644 --- a/content/discover/feed-13fd327a5f08cbc00345369875b2fe49.md +++ b/content/discover/feed-13fd327a5f08cbc00345369875b2fe49.md @@ -17,28 +17,32 @@ params: - https://rknight.me/subscribe/posts/rss.xml categories: [] relme: - https://jarrod.micro.blog/: false - https://jarrodblundy.com/: false + https://heydingus.net/: true https://mas.to/@HeyDingus: true - https://micro.blog/jarrod: false - last_post_title: 7 Things This Week [#144] - last_post_description: "A weekly list of interesting things I found on the internet, - posted on Sundays. Sometimes themed, often not.\n\n1️⃣ You can do some wild stuff - with scroll-based animations just with CSS. [\U0001F517" - last_post_date: "2024-05-26T23:26:00-04:00" - last_post_link: https://heydingus.net/blog/2024/5/7-things-this-week-144 + last_post_title: 7 Things This Week [#147] + last_post_description: |- + A weekly list of interesting things I found on the internet, posted on Sundays (but maybe Mondays). Sometimes themed, often not. + + 1️⃣ These crowdsourced captions for the Eddy Cue/Sam Altman photo + last_post_date: "2024-07-01T22:07:00-04:00" + last_post_link: https://heydingus.net/blog/2024/7/7-things-this-week-147 last_post_categories: [] - last_post_guid: f4a58e3b1b6847e0d5dcaa85ef6bbb54 + last_post_language: "" + last_post_guid: ed700c338ca49773cc39c47dfd0281b4 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-13fec0e9a248f924cfbe94bc981cf386.md b/content/discover/feed-13fec0e9a248f924cfbe94bc981cf386.md new file mode 100644 index 000000000..3b684d368 --- /dev/null +++ b/content/discover/feed-13fec0e9a248f924cfbe94bc981cf386.md @@ -0,0 +1,70 @@ +--- +title: Ximions Blog +date: "1970-01-01T00:00:00Z" +description: Yet another Wordpress weblog +params: + feedlink: https://blog.tenstral.net/feed + feedtype: rss + feedid: 13fec0e9a248f924cfbe94bc981cf386 + websites: + https://blog.tenstral.net/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Debian + - Development + - English + - FLOSS + - Freedesktop + - GNOME + - General + - KDE + - Linux + - OpenSUSE + - Ubuntu + - linux + - wayland + relme: + https://blog.tenstral.net/: true + https://github.com/ximion: true + https://mastodon.social/@matk: true + last_post_title: Wayland really breaks things… Just for now? + last_post_description: This post is in part a response to an aspect of Nate’s post + “Does Wayland really break everything?“, but also my reflection on discussing + Wayland protocol additions, a unique pleasure that I + last_post_date: "2024-01-11T16:24:00Z" + last_post_link: https://blog.tenstral.net/2024/01/wayland-really-breaks-things-just-for-now.html + last_post_categories: + - Debian + - Development + - English + - FLOSS + - Freedesktop + - GNOME + - General + - KDE + - Linux + - OpenSUSE + - Ubuntu + - linux + - wayland + last_post_language: "" + last_post_guid: 402b5653e6da2c41cb72e00c913b05ab + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-140b45b9f013fa07c5cda16cc20a73c2.md b/content/discover/feed-140b45b9f013fa07c5cda16cc20a73c2.md deleted file mode 100644 index 9b7494515..000000000 --- a/content/discover/feed-140b45b9f013fa07c5cda16cc20a73c2.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Palli -date: "1970-01-01T00:00:00Z" -description: Public posts from @Aronand@vivaldi.net -params: - feedlink: https://social.vivaldi.net/@Aronand.rss - feedtype: rss - feedid: 140b45b9f013fa07c5cda16cc20a73c2 - websites: - https://social.vivaldi.net/@Aronand: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://vivaldi.com/team/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-140f740014a58418c69baf556934e119.md b/content/discover/feed-140f740014a58418c69baf556934e119.md deleted file mode 100644 index b5d2f9c97..000000000 --- a/content/discover/feed-140f740014a58418c69baf556934e119.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: openstack on Nate -date: "1970-01-01T00:00:00Z" -description: Recent content in openstack on Nate -params: - feedlink: https://natejohnston.info/categories/openstack/index.xml - feedtype: rss - feedid: 140f740014a58418c69baf556934e119 - websites: - https://natejohnston.info/categories/openstack/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Home Lab Part 1 - last_post_description: This is how I built my home lab server. - last_post_date: "2020-01-29T16:53:07-05:00" - last_post_link: https://natejohnston.info/posts/home-lab-part-1/ - last_post_categories: [] - last_post_guid: a59c7cf15522c7dd5c71ea3dcc2d795a - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1429ac8f4bf9467dde8442a632f21d7e.md b/content/discover/feed-1429ac8f4bf9467dde8442a632f21d7e.md new file mode 100644 index 000000000..4b1f3832f --- /dev/null +++ b/content/discover/feed-1429ac8f4bf9467dde8442a632f21d7e.md @@ -0,0 +1,63 @@ +--- +title: Dreammaster's disassembly blog +date: "1970-01-01T00:00:00Z" +description: A blog about my interests in diassembling old adventure games, and what + I'm up to +params: + feedlink: https://dm-notes.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 1429ac8f4bf9467dde8442a632f21d7e + websites: + https://dm-notes.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - AGS + - Glk + - Hopkins + - Legend + - MADS + - Might&Magic + - Ringworld + - ScummGlk + - ScummVM + - ScummVM Glk + - Sherlock + - Starship Titanic + - Tony + - Ultima + - Xeen + - disassembly + - tSage + relme: + https://dm-notes.blogspot.com/: true + https://www.blogger.com/profile/09618034545788778027: true + last_post_title: Christmas 2023 holiday roundup + last_post_description: Seems like it's been a full year since my last blog posting. + I think that at this point, I'll just have to accept that I'm not very good at + making regular postings. At least you all can take solace + last_post_date: "2024-01-14T17:54:00Z" + last_post_link: https://dm-notes.blogspot.com/2024/01/christmas-2023-holiday-roundup.html + last_post_categories: + - ScummVM + - disassembly + last_post_language: "" + last_post_guid: cd716203489d941a7f30af5b9da372aa + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-142aa51cdafe15adecc4c63b37c42942.md b/content/discover/feed-142aa51cdafe15adecc4c63b37c42942.md new file mode 100644 index 000000000..89d3acc7d --- /dev/null +++ b/content/discover/feed-142aa51cdafe15adecc4c63b37c42942.md @@ -0,0 +1,5647 @@ +--- +title: Swords & Stitchery - Old Time Sewing & Table Top Rpg Blog +date: "2024-07-08T14:08:29-07:00" +description: A blog about sewing machine repairs,but mainly my hobbies which include + old school role playing games, science fiction,films, horror, and general geekery. + Sit down and stay a spell. +params: + feedlink: https://swordsandstitchery.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 142aa51cdafe15adecc4c63b37c42942 + websites: + https://swordsandstitchery.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - '" The Complete Psionics Handbook' + - '" The Mad Mansion of Professor Ludlow"' + - '"&" Magazine' + - '"100 Oddities for a Thieves'' Guild"' + - '"100 Signs of Prior Dungeon Explorers (C&C)"' + - '"Al Aaraaf"' + - '"Amazing Planet"' + - '"Basic or Advanced?"' + - '"Black Sword: Pursuit of the White Wolf"' + - '"Coldheart Canyon"' + - '"Doc"' + - '"Empire of the Necromancers" By Clark Aston Smith' + - '"Heroes of Wargaming"' + - '"In Wretched Depravity"' + - '"La Baionnette #32"' + - '"Lair of the White Wyvern" adventure' + - '"Level of the Lost''' + - '"M2: "Vengeance of Alphaks" (1986)' + - '"Marvel-Phile #72 Shanna the She-Devil From the Unofficial Canon Project"' + - '"More Excerpts from the Journals of Hald Sevrin"' + - '"Ogra' + - '"Oh My Lost Darklords' + - '"Quick Vehicle File: Stalwart Class ATV"' + - '"Random Esoteric Creature Generator for Classic Fantasy Role-Playing Games "' + - '"Stealer of Souls: A Quest For Vengeance in Ilmiora "' + - '"The Anthropophagi of Xambaala"' + - '"The Concepts of Spacial' + - '"The Goblins o''f Mount Shadow"' + - '"The Goblins of Mount Shadow"' + - '"The Invisible College" rpg' + - '"The Orcus Tapes"' + - '"The Ruins of Andril"' + - '"The Traveller Core Rulebook Update 2022''' + - '"Thunder Rift" (1992)' + - '"Vice: Sandcove Gets the Blues"' + - '"Wendy''s Guide to the Fleets of Earth Sector' + - '"What Dreams May Come"' + - '"World of Bastards: Furry Bastards"' + - '"Wretched Apocalypse Quickstart rpg "' + - '"Wretched Verses Issue 3: Blood in the Arena"' + - '"X7: "The War Rafts of Kron" (1984)' + - '#1 Shadow of the Necromancer' + - '& Ken St. Andre' + - '& Magazine' + - '& An Encounter With ''Dr. Theophilus'' Traveling Show''' + - '& Heroes' + - '& Heroes By Robert Kuntz & James Ward' + - '& Heroes''' + - '& Independence Games' + - '& Infernal Monsters' + - '& Jodi Moran-Mishler' + - '& John White' + - '& Magazine' + - '& Old School 2d6 Science Fiction Rpg''s' + - '& Private Eyes' + - '& Rolls blog' + - '& Ships of War''' + - '& The Cabal' + - '& Wasteland Kings' + - '''' + - |- + ' + Dig Me No Grave' + - ''' Andrew Marrington' + - ''' Blood A Southern Fantasy ''' + - ''' Cults of Chaos''' + - ''' Free'' material' + - ''' Ghost Ship''' + - ''' House of the Rising Sun'' (Arduin Grimoire volume 6)' + - ''' It Came from the Scriptorium''' + - ''' Outworld Authority''' + - ''' Pay what you want'' adventures' + - ''' Personalities of the Frontiers of Space''' + - ''' Post Cards From Avalidad'' rpg' + - ''' The Thing in the Ice''' + - ''' The Tomb Spawn' + - ''' Thirsty For More''' + - ''' We Hunted the Promethean''' + - '''&" Magazine issue eleven' + - '''&'' Magazine' + - '''''The Wilderlands of High Fantasy''' + - '''A Beacon In The Night''' + - '''A New View on Dwarves''' + - '''A Pay What You Want''' + - '''A Pay What You Want'' Adventure' + - '''A Princess of Mars' + - '''A Shadowed House''' + - '''AC1 The Shady Dragon Inn''' + - '''ACKS and Crafts''' + - '''Abyss''' + - '''Aesirhamar''' + - '''After the Bomb''' + - '''All That Glitters Is Not Gold ''' + - '''And The Sea Shall Give Up Her Dead' + - '''And The sun shined brightly''' + - '''Artificial: Robots in Clement Sector''' + - '''At The Earth''s Core''' + - '''Atlantandria Port City Of Accursed Atlantis''' + - '''B/X Essentials Classes & Equipment''' + - '''B1 The Lost City''' + - '''Back To The Dungeon'' fanzine' + - '''Beneath The Black Moon''' + - '''Black Top Vale''' + - '''Boarding action''' + - '''Chuckles the Clown''' + - '''City Beyond The Gate''' + - '''Codex Celtarum 2nd Printing''' + - '''Crime In The Clement Sector''' + - '''Crimson Escalation''' + - '''Daughters of Darkness' + - '''Dawn of Man''' + - '''Day of the Triffids''' + - '''Day of the Worm' + - '''Death Ziggurat in Zero-G (2015)''' + - '''Dig Me No Grave''' + - '''Dire Invasion''' + - '''Down We Go'' gamezine' + - '''Dwellers Within the Mirage''' + - '''Eldritch Tales: Lovecraftian White Box Role-Playing''' + - '''Flower Liches of the Dragon Boats''' + - '''Free'' material' + - '''Freeze''' + - '''Fugitive (AJ1)' + - '''Game Master Like A $%#$ing Boss''' + - '''Gods' + - '''Guarding Galaxy XXX ''' + - '''Haven 2 Secrets of the Labyrinth''' + - '''His Flesh Becomes My Key''' + - '''Hydra''' + - '''I Come In Peace'' Aka Dark Angel' + - '''In The Shadows of Evil''' + - '''In Wretched Depravity'' adventure' + - '''In the Mouth of Hell''' + - '''Into The Great Sunken Library' + - '''Into the Caves of the Pestilent Abomination: An OSR adventure''' + - '''Issue 4 Wretched Verses ''The Ritual''' + - '''Jewel In Seven Stars ''' + - '''John Carpenter''s Thing'' film' + - '''Journey to The Stars'' source book' + - '''Kevin''' + - '''Lord of All Turpitudes''' + - '''Mage vs Machine''' + - '''Magical Beasts for Fun & Profit'' James Mishler' + - '''Mini Quest: Curse of the Amber Princess''' + - '''Night Shift Veterans of The Supernatural War'' rpg' + - '''Night Shift Veterans of TheSupernatural War'' rpg' + - '''Nosferatu: A Symphony of Horror' + - '''OLDSKULL LIBRARY - The Shadow over Innsmouth''' + - '''Of Gods & Monsters'' By James M. Ward' + - '''Off on A Comet''' + - '''Old Earth' + - '''Old Earth''' + - '''Old Mars' + - '''Old Mars''' + - '''Old Solar System''' + - '''Outworld Authority''' + - '''Pay What You Like''' + - '''Pay What You Like'' titles' + - '''Pay What You Want''' + - '''Pay what you want'' Supplements' + - '''Pay what you want'' adventures' + - '''Pay what you''d like''' + - '''Pay what you''d want''' + - '''Pay what you''d want'' adventures' + - '''Play Your Character Like A Fucking Boss''' + - '''Post Cards From Avalidad'' rpg' + - '''Prelude To Freedom''' + - '''Q'' The Winged Serpent' + - '''Queen Xiombarg''' + - '''Rathgarus The Skull Taker''' + - '''Requiem for Methuselah''' + - '''Ruins: Rotted & risky - but rewarding''' + - '''S3 Expedition to the Barrier Peaks''' + - '''SURVIVE THIS!! What Shadows Hide - Core Rules''' + - '''Sea Kings of Mars''' + - '''Sea Kings of The Of the Purple Towns''' + - '''Signs of Life''' + - '''Silent Running'' OSR Adventure Commentary' + - '''Strange Stars''' + - '''Sword of Cepheus''' + - '''Ten Questions In Gaming''' + - '''Terror under the Sea'' Joseph Mohr' + - '''The Fantasy Gamer''s Compendium' + - '''The Giallo: Orpheum Lofts''' + - '''The Obelisk of Forgotten Memories''' + - '''The Pay What You Want''' + - '''The Voice of El-Lil''' + - '''The Adventurers Spellbook''' + - '''The Balor-Kin Racial Class''' + - '''The Bastard King''' + - '''The Bastions of Balo''' + - '''The Bat''' + - '''The Book of the Dead''' + - '''The Broken Nail'' By The Great Lestrade' + - '''The Case of Charles Dexter Ward''' + - '''The Cepheus Engine''' + - '''The Chaos Cults: Bubonica' + - '''The City That Dripped Blood''' + - '''The Codex Germania''' + - '''The Collectors''' + - '''The Colony of Death''' + - '''The Company of Wolves''' + - '''The Dark Eidolon''' + - '''The Demonic Tome''' + - '''The Devils of The Black Circle''' + - '''The Doom That Came To Sarnath' + - '''The Dragon Magazine issue#8' + - '''The Dreamquest of Unknown Kadath''' + - '''The Drive In Effect''' + - '''The Equinox... A Journey into the Supernatural''' + - '''The Falcon''' + - '''The Giant''s Stair' + - '''The Giants Wrath''' + - '''The Girl Who Dreamed Tomorrow''' + - '''The Gladius Battalion Handbook''' + - '''The Hall of Mystery'' - A Section of the Greenlands Dungeon' + - '''The Hanged Man'' adventure' + - '''The Horror At The Westmore Hotel''' + - '''The Invisible College" rpg' + - '''The Islands of Purple-Haunted Putrescene''' + - '''The Jungle Tomb of the Mummy Bride''' + - '''The Killer Out of Space''' + - '''The Lost Continent''' + - '''The Lost Treasures of Atlantis''' + - '''The Martian Circe''' + - '''The Metallic Tome''' + - '''The Milenian Empire'' OSR Campaign Commentary' + - '''The Milenian Empire'' OSR Campaign Commentary' + - '''The Mist'' film' + - '''The Mound''' + - '''The Mysterious Island''' + - '''The Nameless One''' + - '''The New Marvel - Phile Issue #9 ''The Pages of The Defenders''' + - '''The Pale Lady'' Adventure' + - '''The Politics of Hell'' Books III' + - '''The REF4 The Book of Lairs II (1e)''' + - '''The Rook''' + - '''The Ruins of the River Gates''' + - '''The Sea King''s Malice''' + - '''The Sea-Wolf''s Daughter''' + - '''The Solomons''' + - '''The Starship From Hell''' + - '''The Taming of Brimstone ''' + - '''The Tentacles From Planet X''' + - '''The Thing in the Ice''' + - '''The Time Lost''' + - '''The Tomb Spawn''' + - '''The Vampire"' + - '''The Weird Enclave of Blackmoor'' Sourcebook' + - '''The White Ship Has Come''' + - '''The Wilderlands of High Fantasy''' + - '''The monster That Challenged The World''' + - '''The unofficial canon project Marvel Super Heroes' + - '''The unofficial canon project Marvel Super Heroes Facebook Group' + - '''The unofficial canon project Marvel Super Heroes Rpg' + - '''The unofficial canon project Marvel Super Heroes The Eternals''' + - '''These Stars Are Ours''' + - '''Thieves of Fortress Badaraskor''' + - '''Thieves'' Guild 2''' + - '''Thrill of the Thirties! 2D6 Adventure in the Pulp Era''' + - '''Tourist Trap''' + - '''Twenty Thousand Leagues Under The Sea''' + - '''Under the Sand-Seas''' + - '''V'' Original TV series' + - '''Victorious Hunter & Hunter Catalogue''' + - '''Vitulya Reborn''' + - '''Warrriors of Mars The Warfare of Barsoom in Miniature''' + - '''Welcome To St.Cloud''' + - '''White Wolf: Temples' + - '''Who Goes There''' + - '''Winds of Chance (Arduin Grimoire volume 8)''' + - '''Womb Cult''' + - '''X4 Master of the Desert Nomads''' + - '''the Unofficial Canon Project... Marvel Vampires"' + - '''the Zombie''' + - '''volume of Lexicon Geographicum Arcanum''' + - (In)Sanatorium By Sílvia Clemente + - +Heroes + - |- + - + #0 Village on the Borderlands + - '- Clark Aston Smith''s The Charnal God' + - -The Stone Alignments of Kor Nak - Tankar's Landing Hex 15/12 + - -The Stone Alignments of Kor Nak + - . A. E. van Vogt + - '. Axioms issue #12' + - . Old School Cyberpunk Adventures + - .Godbound + - .retro clone + - .retro clone. terminal space + - 000 Fathoms + - 10 Short Adventures + - 100 Oddities For A Wizard's Tower + - 100 Oddities for a Chaotic Mutation + - 100 Oddities for a Creepy Old House + - 100 Oddities for a Graveyard + - 100 Oddities for a Wizard's Library + - 100 Random Encounters for on the Road or in the Wilderness (C&C) + - 100 Undead (Dark Fantasy) + - 100 Wasteland Urbanites + - 13 Character classes + - 1870 War + - 1950's sci fi cultclassic films + - 1970's 2d6 Retro Rules + - 1970's Sci Fi artwork + - "1976" + - 1978 The Godzilla Power Hour + - 1981 D&D Basic Set + - 1984 Warren Comic Magazines + - 1984) + - 1991 Tales of Lankhmar (LNR2) + - 1E Softcover Book + - 1d10 Random Star Wars Salvage Encounters Table + - 1d20 Random Sword & Sorcery Traits of The Nephilim Background Table + - 1d20 Space Brothel Finds Table + - 1edition AD&D + - 1st Ed AD&D + - 1st Ed AD&D adventures + - 1st Edition AD&D + - 1st Edition AD&D + - 1st Edition AD+D + - 20 bookplate spirits + - 2000 AD + - 2001 A Space Odyssey film + - 2016 Magnificent Seven film + - 21 Vehicles 2nd Edition + - 21 Villains + - "2100" + - 2d6 Cepheus Engine Powered Rpg's + - 2d6 Cepheus Engine rpg + - 2d6 Fantasy Rpging + - 2d6 Magic + - 2d6 Monsters + - 2d6 OSR Campaigns + - 2d6 Old School Rpging + - 2d6 Old School Science Fiction Rpg Campaigns + - 2d6 Old School Science Fiction Rpg + - 2d6 Old School Science Fiction Rpg Campaigns + - 2d6 Old School Science Fiction Rpg's + - 2d6 Old School Science Fiction rpgs + - 2d6 Post Apocalytic Campaigns + - 2d6 Rpg Powdered Games + - 2d6 Rpg Science Fiction + - 2d6 Science Fantasy + - 2d6 Sword & Sorcery + - 2d6 Traveller rpg + - 2d6 Wild West + - 2d6 science fiction rpg's + - 2nd Edition Advanced Dungeons & Dragons + - 2nd Edition Wretched Space Rpg + - 2nd Wretched Space Rpg + - 2nd edition + - 2nd edition (Atlantean Trilogy) + - 3 Toad Stool Publishing + - 3 Toad Stool Publishing + - 3.5 Dungeons & Dragons + - "4" + - 43 A.D. + - 43 A.D. Rpg + - 4C rpg + - 50 Wasteland Caravan Haulers + - 50's Sci Fi + - 5e + - 5th Edition D&D + - 5th Edition Softcover + - 5th edition Amazing Adventures + - 650 Fantasy City Encounter Seeds & Hooks + - 70's sci fi + - "75" + - "76" + - 80's + - 80's Sword + Sorcery + - 80's sci fi + - 90's Godzilla Cartoon + - "91" + - "911" + - ': AD&D 1st Edition' + - ': Actual Play Event' + - ': Advanced Dungeons & Dragons 1st Edition' + - ': Adventure Fodder' + - ': Adventure OSR Campaign Commentary' + - |- + : Adventurer Conquer + or King rpg system + - ': Adventurer Conqueror King rpg system' + - ': Adventures' + - ': Astonishing Swordsmen + Sorcerers of Hyberborea Second Edition' + - ': Astonishing Swordsmen + Sorcerers of Hyberborea Second Edition rpg' + - ': Astonishing Swordsmen + Sorcerers of Hyberborea rpg' + - ': Astonishing Swordsmen + Sorcerers of Hyberborea rpg Third Edition' + - ': Astonishing Swordsmen and Sorcerers of Hyperborea rpg System' + - ': Autarch LLC By This Axe: The Cyclopedia of The Dwarven Civilization' + - ': Barbarian Conquerors of Kanahu' + - ': Campaign Settings' + - ': Carcosa' + - ': Clark Ashton Smith' + - ': Classic Gamma World Modules' + - ': Colonial Troopers: Knight Hawks' + - ': Drugs' + - ': Free Material' + - ': HG Wells' + - ': OSR Campaign Commentary' + - A 'Pay What You Want' title + - A Book of Miscellaneous Spells Volume 2 + - A Druids Lament + - A Fist of Blood & Dust + - A Groats-worth of Grotesques + - A Hundred Hellish Hordlings + - A Martian Odyssey + - A Myriad of Magic Items + - A Night for Jackals + - A Red and Pleasant Land + - A Sweet Serenade) + - A&D 1st Edition + - A'agrybah + - A. Merritt + - A.Bertram Chandler + - A.I. Gods Of The Wastes + - A.Merritt + - 'A0-A4: Against the Slave Lords' + - A1 Slave Pits of The Undercity + - A2 'Slag Heap' + - A2 Secret of The Slaver's Stockade + - 'A2: "Secret of the Slavers Stockade"' + - A3 Assault on the Aerie of the Slave Lords + - A4 In the Dungeons of the Slave Lords + - ABC Warriors + - AC1 The Shady Dragon Inn + - AC10 Bestiary of Dragons & Giants + - AC4 - The Book of Marvelous Magic By Gary Gygax & Frank Mentzer + - AC9 Creature Catalog + - 'AC9: D&D Creature Catalogue' + - 'AC9: D&D Creature Catalogue (Basic)' + - ACK's rpg + - AD 2000 + - AD&D + - AD&D 1st Edition + - AD&D 1st Edition Carnivorous Apes + - AD&D 1st Edition Dungeon Master's Guide + - AD&D Manual of the Planes + - AD&D Rogues Gallery + - AD&D first edition + - AD+D + - AD+D 1st edition + - AFS Magazine + - ANGRY GOLEM GAMES + - AS&SH rpg + - 'AS&SH''s HYPERBOREA: OTHERWORLDLY TALES' + - 'ASE1: Anomalous Subsurface Environment' + - 'ASE2-3 : Anomalous Subsurface Environment' + - 'ASEII: Anomalous Subsurface Environment' + - 'ATTACK SQUADRON: ROSWELL' + - 'AX1: The Sinister Stone of Sakkara' + - 'AX2: Secrets of the Nethercity' + - AX3 The Capital of The Borderlands + - 'AX3: Capital of the Borderlands' + - 'AX4: Ruined City of Cyfandir' + - AX5 Eyrie of the Dread Eye + - 'AX6: Sepulcher of the Sorceress-Queen' + - 'AX6: Sepulcher of the Sorceress-Queen (SoSQ)' + - Aaron Allston + - Aaron Kavli + - Abandon Places + - 'Abandoned Parking Lot: Lot A From Fishwife Games' + - Abyss + - Ac + - Accessory PX2 Extra Planar Primer + - Ace Comics + - Action Toys + - Actual Play + - Actual Play Event + - Actual Play Events + - Actual Play Report + - Ad + - Ad Astra campaign setting book + - Ade Stewart + - Adult Content + - Advanced Ape Class + - Advanced Dungeons & Dragons + - Advanced Dungeons & Dragons 1st Edition + - Advanced Dungeons & Dragons Deities & Demigods + - Advanced Dungeons & Dragons Dungeon Master's Guide + - Advanced Dungeons & Dragons First Edition Dungeon Master's Guide By Gary Gygax + & Mike Carr + - Advanced Dungeons & Dragons first edition + - Advanced Dungeons and Dragons + - Advanced Dungeons and Dragons 1st Edition + - Advanced Dungeons and Dragons 2st Edition + - Advanced Edition Companion (Labyrinth Lord) + - Advanced Labyrinth Lord + - Advdenturer + - Adventuer + - Adventuerer + - Adventure + - Adventure & Campaign Set Up + - Adventure Anthologies + - Adventure Campaign Construction + - Adventure Collections + - Adventure Construction + - Adventure Creation + - Adventure Design + - Adventure Dramune Run + - Adventure Encounter Table + - Adventure Encounters + - Adventure Fodder + - Adventure FodderOld School Sword & Sorcery Gaming + - Adventure Generation + - Adventure Ideas + - Adventure In Lemuria · + - Adventure Incidents + - Adventure Jump Off + - Adventure Location + - Adventure Locations + - Adventure Module + - Adventure Modules + - Adventure OSR Campaign + - Adventure OSR Campaign Commentary + - Adventure OSR Campaign Design + - Adventure OSR Campaign Supplement Reviews + - Adventure OSR Campaign + - Adventure OSR Campaign Commentary + - Adventure Packages + - Adventure Plot Hooks + - Adventure Reviews & Commentaries + - 'Adventure Seeds: Islands' + - Adventure Settings + - Adventure Writing Like A Fucking Boss II + - Adventure arches + - Adventure hook + - Adventure hooks + - Adventure location Fodder + - Adventure location commentary + - Adventure ocations + - Adventure resources + - Adventurer + - Adventurer Conquer or King rpg system + - Adventurer Conqueror King + - Adventurer Conqueror King rpg + - Adventurer Conqueror King rpg system + - Adventurer Conqueror King rpg system Lairs & Encounters + - Adventurers + - Adventures + - Adventures Dark & Deep Swords of Cthulhu + - Adventures Dark & Deep rpg + - Adventures Dark & Deep rpg line + - Adventures In Highwold + - Adventures In Parn blog + - Adventures In The Razor Trade + - Adventures of the Galaxy Rangers + - Adventures on Mars By ODD74 + - After Man + - Afterday rpg setting + - Against the Giants + - Against the Giants G1-2-3 + - Against the Slave Lords + - Age of Conan + - Agents of Shield + - Agents of W.R.E.T.C.H. + - Ahimsa Kerp + - Air Ships + - Aircel Comics + - Al Krombach + - Al-Qadim + - Alan Chamberlain + - Albert Rakowski + - Aleister Crowley + - Alex Johnson + - Alexander Macris + - Alexander Marcis + - Alexander Marcus + - Algernon Henry Blackwood + - Algis Budrys + - Alice In Wonderland + - Alien Ass + - Alien Beast + - Alien Breeds + - Alien Movie + - Alien Races + - Alien Resurrection + - Alien Treasures + - Alien Treasures Treasures + - Aliens + - Aliens Androids & Aberrations + - Alignment + - Allan Dean Foster + - Allan Hammack + - Allen Hammack + - Allen Hammack. + - Allen Quartermain + - Allen Varney + - Alpha Blue + - Alpha Blue Campaign Manager + - Alpha Blue Rpg + - Alphatia + - Alterative Histroy + - Alternative Armies + - Alternative Combat Systems + - Alternative History + - Alternative Players Handbooks + - Althurans + - Amazing Adventure! Rpg + - Amazing Adventure! Rpg OSR Campaign Commentary + - Amazing Adventure! Rpg. OSR Campaign Commentary + - Amazing Adventures + - Amazing Adventures ! rpg + - Amazing Adventures 5E Wild Stars + - Amazing Adventures 5E rpg + - Amazing Adventures Fifth Edition + - Amazing Adventures Manual of Monsters + - Amazing Adventures Manual of Monsters + - Amazing Adventures rpg + - Amazing Adventures! + - Amazing Adventures! Rpg + - Amazing Man + - Amazing Stories + - Amazons + - American Civil War + - American Heroes + - Amtor + - An American Werewolf In London + - An Encounter With 'Dr. Theophilus' Traveling Show' + - An Occurrence at Howling Crater + - An Unfortunate Discovery + - Ancient + Accursed Terra + - Ancient Aliens Theory + - Ancient Kingdoms D20 Mesopotamia + - Ancient Spirits + - Ancient Vaults & Eldritch Secrets + - Ancient Vaults & Eldritch Secrets blog + - Andre Norton + - Andrew Goldstein + - Andrew Hamilton + - Andrew Marrington + - Androids + - Androids For The Frontiers of Space + - Andy Castillo + - Angel Hosts + - Angels + - Anime + - Announcements + - Anomalous Subsurface Environment ASE1 + - Anthologies + - Anthony Pryor (Author) + - Anti paladin + - Anunnaku + - Any system / system-agnostic + - Ape Victorious Rpg + - Apes + - Apes Victorious rpg system + - Apologies + - Appendix 'F' + - Appendix M + - Appendix N + - Appendix S + - Appendix S & S + - Appenix 'S' + - Arachne + - Arachni-Lobster + - Arcanum + - Arch Criminal NPC + - Arch devils + - Architects + - Arduin + - Arduin Eternal + - Arduin Grimoire + - 'Arduin Monster spotlight: Ibathene' + - Arduin Rpg Triliogy + - Arduin rpg + - Arduin's + - Ares Section + - Aresui + - Arioch + - Ark II + - Armchair Planet + - Army books + - Army of Darkness + - Arn Ashliegh Parker + - Art + - Art Commissions + - Art Work + - Arthur C. Clark + - Arthur Conan Doyle + - Arthur Machen + - Arthurian Mythology + - 'Artificial: Robots In The Clement Sector' + - Artists + - Artwork + - Arwork + - Aryxymaraki’s Almanac of Unusual Magic + - Ascendant + - Ascendant rpg + - Ascendant rpg system + - Ashen Void + - Ashes of Sunset + - Asteroid Ships + - Asteroid belt + - Astonishing Swordmen & Sorcerers of Hyperborea second edition + - Astonishing Swordsmen + Sorcerers of Hyberborea Second Edition + - Astonishing Swordsmen + Sorcerers of Hyberborea rpg + - Astonishing Swordsmen & Sorcerers of Hyperborea + - Astonishing Swordsmen & Sorcerers of Hyperborea 2nd edition + - Astonishing Swordsmen & Sorcerers of Hyperborea rpg + - Astonishing Swordsmen + Sorcerers of Hyberborea Second Edition + - Astonishing Swordsmen + Sorcerers of Hyberborea Second Edition rpg + - Astonishing Swordsmen + Sorcerers of Hyberborea rpg + - Astonishing Swordsmen + Sorcerers of Hyberborea rpg 2nd Edition Rpg + - Astonishing Swordsmen + Sorcerers of Hyberborea rpg Third Edition + - Astonishing Swordsmen and Sorcerers of Hyperborea rpg System + - Astral Plane + - Astrologers + - At The Earth's Core + - At The Mountains of Madness + - Atari Force + - Athurian Rpg's + - Atlantandria Port City Of Accursed + - Atlantandria Port City Of Accursed Atlantis + - Atlantandria Port City Of Accursed Atlantis Campaign + - Atlantis + - Atlas/Seaboard + - Atom Age Combat Comics + - Atomic Age Vampire + - Atomic War Comics + - Attack Squadron Roswell + - Auhr Lanse + - Autarc + - Autarch + - Autarch LLC + - 'Autarch LLC By This Axe: The Cyclopedia of The Dwarven Civilization' + - Authors + - Avalon Hill + - Avalon Hill Runequest + - Averoigne + - Aviladad + - Avon Fantasy Reader + - 'Avon Fantasy Reader #14' + - 'Avon Fantasy Reader #5' + - 'Avon Fantasy Reader #7' + - 'Avon Fantasy Reader Issue #1' + - Avon Periodicals + - Awful Good Games + - Axioms Compendium 1-8 + - 'Axioms Issue 10: Grim Heroes and Night Terrors' + - 'Axioms Issue 13: Machinery to the Max' + - 'Axioms Issue 19: Cohorts & Dynasties' + - Axioms issue#1 + - Axioms issue#2 + - B&W Comic Book Implosion + - B.A.T.S. + - B.Poire + - B/X + - B/X Advanced Dungeons & Dragons 1st Edition Hybrid + - B/X Campaign Construction + - B/X D&D + - B/X D&D Adventures + - B/X Dungeons & Dragons + - B/X Essentials + - B/X Essentials:Core Rules Retro-clone rpg systems + - B/X Gangbusters + - B/X Mars + - B/X Retroclones + - B1 In Search of the Unknown + - B1 Insearch of the Uknown Sourcebook + - B1-9 In Search of Adventure + - 'B1-9 In Search of Adventure: The Grand Duchy of Karameikos Anthology' + - B10 Night's Dark Terror + - 'B10: Night’s Dark Terror' + - 'B10: Night’s Dark Terror (1986)' + - B11 King's Festival + - B2 + - B2 Keep on the Borderlands + - B2 The Keep on the Borderlands + - B2.5 Caves of the Unknown + - B3 Palace of the Silver Princess + - B4 The Lost City + - B5 Horror on the Hill + - B5 The Horror on The Hill + - B6 The Veiled Society + - B8 Journey To The Rock + - B9 Castle Caldwell and Beyond + - BASH Rpg System + - BASIC D&D + - BCEMI Dungeons & Dragons system + - BECEMI D&D + - BECMI + - BECMI D&D + - BECMI Dungeons & Dragons + - 'BH2: Lost Conquistador Mine' + - BL1-2 Adventure + - 'BL1-2: The Ruined Hamlet/Terror in the Gloaming' + - BRW Games + - BRW Games LLC + - BTRC + - BX3 The Temple of Mercy + - Baba Yaga's Miraculous Transformation + - Babblers + - Babylon 5 + - Background Traits + - Badge Law Enforcement In The Clement Sector + - Baggage Games + - Baker + - Balo + - Balrogs + - Bandits + - Bandits And Battle Cruisers + - Bandits and Battle Cruisers rpg + - Barbarian Conquerors of Kanahu + - Barbarian Treasures + - Barbarians of Kanahu + - Barbaric + - Barbaric! + - Barbaric! 2nd Edition + - Barbaric! rpg + - Barbian hordes + - Barbie Wilde + - Bard Class + - Bard Games + - Bards + - Barrataria + - Barrataria Games + - Barrel Rider Games + - Barrens of Carcosa + - Barsoom + - Basic Dungeons & Dragons + - Basic Fantasy Rpg + - Battle Beyond The Stars + - Battle For The Purple Islands + - Battle Star Galactica + - Battle Star Galactica. + - Battlestar Galactica + - Be Awesome At Dungeon Design + - Beards + - Beards & Beer rpg + - Bears + - Beast From The Haunted Cave + - Beasties Loathsome Horrors + - Beer + - Beggars + - Beginning Adventures + - Behind The Walls + - Below the Isle of Dread + - Ben Ball + - Ben Bell + - Ben Laurence + - Beneath Black Towen + - Beneath The Comet + - Beneath The Ruins + - Benoist Poire + - Beowulf + - Beserker PC Class + - Best of Dragon Volume 1 + - Best of White Dwarf scenarios volume III + - Beta Heavy Laser Rifle Relic + - Beta Max Black Hartford Edition Campaign + - Better Then Any Man Adventure By James Raggi + - Between Star & Void + - Beyond Belief Games + - Beyond The Ice Fall + - Beyond The Ice Falls + - Bible + - Big Ass Reptile + - Big Geek Emporium + - Big Jim's P.A.C.K. + - Bill Faust + - Bill King + - Bill Owen + - Bill Slavicsek + - Bill Willingham + - Bio Cyberpunk 2d6 Retro Rules + - Birthdays + - Bizarre Old School Adventures + - Black Pudding Heavy Helping Vol. One + - Black Blade of the Demon King + - Black Box Books + - 'Black Box Books -- Tome Three: Cannibals and Confusion' + - Black Dogs 'zine - issue 1 + - Black Dragons + - Black Market Inc. + - 'Black Pudding #1' + - 'Black Pudding #5' + - Black Pyramid + - Black Shield + - Black Star + - Black Streams Rpg + - Black Swan Press + - Black magick rites + - Blackburg Tactical Role Playing Group + - Blackguard + - Blackguards Mini Campaign + - Blackmoor + - Blackwall Games + - Blade Runner + - Blake Mobley + - Blaster Bolts - RPG Omnibus + - 'Blaster Bolts Issue #1' + - Blink Dogs + - Bloat Games + - Bloat Games's SURVIVE THIS!! Vigilante City - Core Rules + - Blog + - Blog Commentary + - BlogAncient + Accursed Terra + - Blogs + - Bloke's Terrible Tomb of Terrors Comic Anthology + - 'Blood & Bronze: rules' + - Blood on the Hands of The Dwarves + - Bloodstone + - Bloody + - Bloody Arduin + - Bloody Bloody Arduin + - Blue Dragon + - Blueholmes + - Boar Thing Kaiju + - Board Games + - Bob Blake + - Bob Bledsaw + - Bob Bledsaw Sr. + - Bob Greyvenstein + - Bogeyman Gaming + - Bond + - Bonnie Dodson + - Book + - Book Influences + - Book of Powers + - Bookmark Guide Spirits + - Bookplate Guardian Spirit + - Boost The Signal + - Boot Hill Rpg + - Border Realms + - 'Bounded Fortune: Independent Merchants in The Clement Sector' + - Bounty Hunter Handbook + - Box Sets + - Bradley K. McDevitt + - Bradley Warnes + - Brains In A Jar + - Bram Stroker + - Brave Halfling + - 'Brave the Labyrinth - Issue #5' + - Bravestarr Cartoon + - Bravestarr cartoom + - Bree Orlock + - Brett Slocum + - Brian Blume + - Brian M. Young + - Brian N. Young + - Brian Shutter + - Brian Young + - British Science Fiction + - Britomart + - Bronze Age Comic books + - Bronze Age Marvel + - Brothels + - Brothers of Man Mini Campaign + - Bruce A. Heard + - Bruce Cordell + - Bruce Heard + - Bruce Humphrey + - Bruce Nesmith + - Bruxelles-class battlecruisers + - Bryan Hinnen + - Bryan Steele + - Bryan Talbot + - Buck Rogers In The 25th Century film + - Bucky The Black Ball + - Bugs + - Bullet Trains + - Bundle of Holding + - Bussard Ram Jet + - By James Mishler + - By Robert Kuntz & James Ward + - 'By This Axe: The Cyclopedia of Dwarven Civilization' + - C&C Adventures + - C.H.U.D.D. + - C.L. Moore + - C.L.Moore + - C.S.Lewis + - C1 "The Hidden Shrine of Tamoachan" + - C1 "The Hidden Shrine of Tamoachan" (1980) + - C1 The Hidden Shrine of Tamoachan + - C1 The Hidden Shrine of Tamoachan Adventure + - C1.5 Ghost City of the Hidden Shrine + - C2 ""The Ghost Tower of Inverness" (1980) + - C2 The Ghost Tower of Inverness + - C3 The Lost Island of Castanamir + - CASTLE OLDSKULL - Oldskull Dragons + - CASTLE OLDSKULL - Oldskull Gonneslingers + - CBI-2 The Thonian Rand Source book + - 'CC1: Creature Compendium' + - CC5 Assault on R'lyeh + - CM1 + - 'CM1: "Test of the Warlords"' + - CM2 + - CM2 Death Rides + - CM2 Death's Ride + - CM3 Sabre River + - CM4 Earthshaker + - CROM FASERIPopedia sourcebook + - CX1 Extra Gnomes + - Caanan + - Cabin In The Woods + - Cabin In The Woods film 2012 + - Cabin in the Woods 2012 + - Cacozealot Class + - Caliban + - Caliban Arduin Dungeon Number One + - Calidar + - Calidar Campaign Setting + - Call of Cthulhu + - Call of Cthulhu rpg + - Camelot + - Camp Cretaceous + - Campaign + - Campaign & Setting + - Campaign Commentary + - Campaign Commentary. + - Campaign Construction + - Campaign Design + - Campaign Idea + - Campaign Ideas + - Campaign Inspiration + - Campaign Resources + - Campaign Session Report + - Campaign Session Report Update + - Campaign Session Reports + - Campaign Set Up + - Campaign Settings + - Campaign Societies + - Campaign Thought Exercises + - Campaign Thoughts + - Campaign Threads + - Campaign Update + - Campaign Updates + - Campaign Workshop + - Campaign Workshops + - Campaign items + - Campaign mini idea + - Campaigns + - CampaignsAstonishing Swordsmen + Sorcerers of Hyberborea rpg + - Candlestick + - Candlestick maker + - Cannibals + - Cannon Films + - 'Capital City Casefiles #1: High Summer' + - 'Capital City Casefiles #2: Served Cold' + - Captain America + - Captain America! + - Carbuncles + - Carcosa + - Carcosa Grimoire + - Carcosa rpg + - Carcosa rpg setting + - Career paths + - 'Career: Nightstalker' + - Careers of The Old West + - Cargo + - Cargoes + - Cargos + - Carl Kolchak + - Carl Sagan + - Carl Sargent + - Carl Smith + - Carlos a.s. Lising + - Carlton comic books + - Carnictis sordicus (Vile Meat-Weasel) + - Carocsa + - Cartography + - Cartridge Games + - Castes & Crusades + - Castle Amber + - Castle Brass (2008) + - Castle Frankenstein Magazine + - Castle Gargantua + - Castle Keeper's Guide + - Castle Old Skull Campaign Setting + - CastleOldSkull + - Castles & Crusade rpg + - Castles & Crusade's Classic Monsters & Treasure book + - Castles & Crusade's The Codex Celtarum + - Castles & Crusades + - Castles & Crusades Adventurers Spellbook + - Castles & Crusades Castle Keeper's Guide + - Castles & Crusades Castle Keeper's Guide Kickstarter + - Castles & Crusades Classic Monsters & Treasure + - Castles & Crusades Classic Monsters & Treasure book + - Castles & Crusades Codex Egyptium + - Castles & Crusades Codex Germania + - Castles & Crusades Codex Nordica + - Castles & Crusades Codex Slavorum + - Castles & Crusades Gods & Legends + - Castles & Crusades Monsters & Treasure book + - Castles & Crusades Monsters & Treasure of Aihrde 3rd printing pdf + - Castles & Crusades Mystical Companions + - Castles & Crusades Mythos Series + - Castles & Crusades Player's Archive + - Castles & Crusades Player's Handbook + - Castles & Crusades Rpgl.Monsters & Treasure Book + - Castles & Crusades Tomb of the Unclean + - Castles & Crusades rpg + - Castles & Crusades rpg Player's Hand book + - 'Castles & Crusades: Brimstone & The Borderhounds RPG Quick Start' + - Castles and Crusades + - Castles and Crusades Of Gods & Monsters + - Cat & Mouse Episode + - Catacombs Of Death + - Catalyst Games + - Catalyst series + - Caterwaul + - Cats + - Caveman + - Cavemen + - Cecil B. Demille + - Celestials + - Celtic Mythology + - Cepheue Engine rpg + - Cepheus Atom + - Cepheus Atom rpg + - Cepheus Barbaric! + - Cepheus Barbaric! Rpg + - Cepheus Deluxe + - Cepheus Deluxe Rpg + - Cepheus Engine + - Cepheus Engine rpg + - 'Cepheus Engine Journal Issue #11' + - 'Cepheus Engine Journal Issue #16' + - 'Cepheus Engine Journal issue #8' + - 'Cepheus Engine Journal issue #9' + - Cepheus Engine Lite + - Cepheus Engine Modern rpg supplement + - Cepheus Engine Powered 2d6 Rpg's + - Cepheus Engine Rpg Vehicle Design Guide + - Cepheus Engine Rpg Vehicle Design Guide + - Cepheus Engine Universal + - Cepheus Engine based Rpg's + - Cepheus Engine rpg + - Cepheus Engine rpg Games + - Cepheus Engine rpg powered games + - Cepheus Engine rpg system + - Cepheus Journal + - 'Cepheus Journal issue #007' + - 'Cepheus Journal issue #10' + - Cepheus Journal issue#8 + - 'Cepheus Journal – Issue #012' + - 'Cepheus Journal – Issue #015' + - Cepheus Light rpg + - Cepheus Modern + - Cepheus Quantum rpg system + - Cepheus Universal Rpg + - 'Cepheus Universal: Player''s Book' + - Cepheus lite + - Cha'alt + - Cha'alt Chartreasure Shadows + - Cha'alt Ascended + - Cha'alt Campaign setting + - Cha'alt Chartreasure Shadows + - Cha'alt Fuchia Mailaise + - Cha'alt Pre-Generated + - Cha'alt X-Cards + - Cha'alt mega dungeon + - Cha'alt rpg + - Cha'alt rpg setting + - Cha'alt setting + - Cha'alt trilogy + - 'Cha''alt: Chartreuse Shadows' + - 'Cha''alt: Fuchsia Malaise' + - 'Cha''alt: Fuchsia Malaise hard back' + - 'Cha''alt: Fuchsia Malaise hard back' + - Chad Bowser + - Chainsaw + - Chal'alt + - Challenge of the Frog God + - Chance & Seven Eleven + - Chandler + - Chaos + - Chaos Fey + - Chaos Gods Come To Meatlandia + - Chaos Rift + - Chaos vs Law + - Chaosium + - Chaosium Hawkmoon Box Set + - Chaosuim's Thieves World 1981 Box Set + - Character Classes + - Character Creation + - Character Workshops + - Charity + - Charles Green + - Charlie Krank + - Charlie Mason + - Charlton + - Charlton Comics + - Chartreuse Shadows + - Children of The Gods + - Children of the Wolf (Cardstock Characters™) + - Chopping Mall movie + - Chris Claremont + - Chris Cotgrove + - Chris Gonnerman + - Chris Kutalik + - Chris McDowall + - Chris Tamm + - Chris Van Deleen + - Christmas Hauls + - Christmas Mini Campaign + - Christopher Shy + - Christopher Tamm + - Chronicles of Mhoriedh Map 00 Olden Lands Continent + - Chronicles of Yerth + - Chthonic Codex + - Church of Starry Wisdom + - Cities Without Number rpg + - City State of the Invincible Overlord + - Citybook I Butcher + - Citybook VI Up Town + - 'Citybook VI: Up Town' + - Citybook series + - CitybookI Butcher + - Citystate of the Invincible Overlord + - Clark + - Clark Ashton Smith + - Clark Ashton Smith Hyperborea Cycle + - Clark Ashton Smith Zothique Cycle + - Clark Ashton Smith's + - Clark Ashton Smith's 'The Seven Geases' + - Clark Aston Smith + - Clash of the Titans + - Clash of the Titans 1981 film + - Classes + - Classic AD&D Modules + - Classic AD&D monsters + - Classic CT- DT-Deluxe Traveller + - Classic D&D Modules + - 'Classic Dragon magazine isssu #54' + - Classic Era TSR + - Classic Gamma World Modules + - Classic Gamma. World Modules + - Classic Horror Films + - Classic Marvel Super Heroes Rpg + - 'Classic Module Twist Up #1: The Desert of Desolation' + - Classic Modules + - Classic Old School Post Apocalyptic Rpging + - Classic Role Playing + - Classic Sci Fi Art + - Classic Sci Fi Television and Movies + - Classics + - Claude M. LeBrun + - Claw Carver + - Claw’s Carvery + - Claw’s Carvery 1 + - Clement Sector + - 'Clement Sector 13: Strikemaster Class Brig' + - Clement Sector Campaign Setting + - Clement Sector Core Setting Book + - Clement Sector Setting + - Clement Sector rpg + - Clement Sector rpg & setting + - Clement Sector third Edition rpg Setting + - Clerics + - Clint Krause + - Clint Staple + - Clint Staples + - Clint and Cassie Krause + - Clinton R. Nixon + - Clipart Critters 609-OSR Goat Fiend + - Clive Barker + - Clones + - Clukkatrix + - Codex Classicum + - Codex Egyptium + - Codex Slavorum + - Cold Drake Canyon Adventure + - Colin Dunn + - Colin McComb + - Colonial Troopers + - Colonial Troopers Rpg + - 'Colonial Troopers: Knight Hawks' + - Colony Builder + - Colony Death + - Colony Earth + - Colony Wars + - Colony World - Earth + - Colony Worlds + - Colosseum + - Colour Out Of Space + - Combat Rules + - Come To Daddy + - Comes Chaos + - Comic Book Anthologies + - Comic Book artists + - Comic Books + - Comics + - Comlink + - Commentaries + - Commentary + - Commentary On Vornheim The Complete City Kit From Zak Smith & The Lamentations + Of The Flame Princess Rpg For Your Old School Campaigns + - Comments + - Common Sense + - Community Projects + - Companion Expansion + - Companion Level Adventures + - Complete Campaign Settings + - Complete Game Systems + - Conan + - Connecticut + - Cononal Troopers rpg + - Conqeuror + - Conqueror + - Conspiracy Rules Rpg + - Conspiracy theory + - Consumerism + - Content thief + - Contraband + - Convention Event Set Up + - Conversions + - Converting Material + - Cordwainer Smith + - Corey Ryan Walden + - Corner Stones of the Hobby + - Corpse Tearer + - Corum 'The Prince With A Silver Hand' + - Corum Heroic Adventures Across The Five Planes 2001 + - Corum rpg + - Cosmic Balance + - Cosmic Enforcers + - Cosmic Entities + - Cosmic Tales + - Cosmic level heroes + - Council of Wyrms + - Count Zaroff + - Courtney Campbell + - Courtney Campbell's Eyrie of the Dread Eye + - Cover Art + - Crash & Burn + - CrawlJammer Issue + - 'CrawlJammer Issue #1' + - 'CrawlJammer Issue #3' + - CrawlJammer Issues + - Crawling Under A Broken Moon + - 'Crawling Under A Broken Moon Issue # 13' + - 'Crawling Under A Broken Moon Issue #10' + - 'Crawling Under A Broken Moon Issue #11' + - 'Crawling Under A Broken Moon Issue #12' + - 'Crawling Under A Broken Moon Issue #17' + - 'Crawling Under A Broken Moon Issue #2' + - Crawling Under A Broken Moon The Unamerican Survival Guide + - Creations Unlimited + - Creative Mountain Games + - Creature Catalog + - Creature Catalog II + - Creatures & Foes + - Creatures from Unknown Lands + - Creep Show Film + - Creeping Eddies + - Creeping Pete The Menace From Reno + - Crew Expendable + - Crime Pays + - 'Crimson Blades 2: The Dark Fantasy RPG' + - Crimson Blades Rpg + - Crimson Dragon Slayer rpg + - Crom + - Crows + - Crusader's Handbook + - Crying Blades + - Cryptic Creatures By Paolo Greco + - Crypts + - Crypts & Things rpg + - Crypts + Things + - Crypts +Things + - Crystal Egg + - Crystal Skull + - Cthulhu + - Cthulhu Invictus rpg + - Cthulhu Live + - Cthulhu Mythos + - Cthulhu Now + - Cult Classic Films + - Cult Classic Movies + - Cult Classic Television Shows + - Cult Classic Televison Shows + - Cult Classics + - Cult ecology + - Cult of Darkness + - 'Cult of Diana: The Amazon Witch book' + - Cult of the Blue Crab + - Cultclassic Seventies TV Series + - Cultclassic Seventies TV Series Reimagined + - Cultclassic Eighties Films + - Cultclassic Films + - Cultclassic Lovecraft Films + - Cultclassic Science Fiction Films + - Cultclassic Seventies TV Series + - Cultclassic movies + - Cults + - Cults of Chaos + - Curse of Xanathon + - Curtis Horror Magazine Imprint + - Cyberknight + - Cybernetics + - Cyberpunk 2020 + - Cybersneaks Hacking In The Clement Sector + - Cyclopean Games + - Cyclops + - Cylon Raider Mark I + - D&D + - D&D Cartoon + - D&D Companion Rules + - D&D Companion Set + - D&D Encyclopedia + - D&D Inspiration + - D&D Rules Cyclopedia + - D&D Rules Cyclopedia (Basic) + - D- Infinity + - D-oom Products + - D.C. Heroes rpg + - 'D1-2: Descent into the Depths of the Earth' + - D100 Minor Magical Items + - 'D1: Descent into the Depths of the Earth' + - D2 "Shrine of the Kuo-Toa" + - D20 + - D20 Conan + - D20 Games + - D20 Modern + - D20 Zothique + - D3 Adventures + - D3 Vault of the Drow + - DA1 Adventures In Blackmoor + - DA2 + - DA2 Temple of the Frog + - DA2 The Temple of the Frog + - DA3 City Of The Gods + - DARK PLACES & DEMOGORGONS - Survive This!! Rpg + - DC + - DC Comic books + - DCC + - DCC Rpg + - DCC fanzine + - DDA1 Arena of Thyatis + - DDA2 Legions of Thyatis + - 'DDA2: "Legions of Thyatis" (1990)' + - 'DDA3: "Eye of Traldar"' + - DF18 Where The Fallen Jarls Sleep + - DF33 Stele of the Silver Thane + - DF5 - Horror of Spider Point + - DM Paul + - DM Raj + - DM Steve + - DM Steve. Retroclones + - DM advice + - DM drama + - DM's. + - DMing advice + - DOM Publishing + - DSR1 Slave Tribes + - DSR2 Dune Traders + - DYI D&D + - DYI Post Apocalyptic Campaigns + - DYI Retro Future Campaigns + - DYI Retro Future Campaigns + - DYI Science Fantasy + - DYI Torg + - Dagar The Invincible + - Daimon Games. + - Dale "Slade" Henson + - Damned Souls + - Dan Proctor + - Danger At Dunwater + - Dangerous Monsters & Creatures + - Daniel J. Bishop + - Daniel James Hanley + - Dante Alighieri + - Darcsyde Productions + - Dare Devil Trailer + - Dark + - Dark Albion + - Dark Ablion Cults of Chaos + - Dark Agnes + - Dark Albion + - Dark Albion Cults of Chaos + - Dark Albion rpg Campaign Setting + - 'Dark Albion: The Rose War' + - 'Dark Albion: The Rose War Campaign' + - Dark Colony + - Dark Conspiracy + - Dark Conspiracy rpg + - Dark Cults + - Dark Dreams (Arduin Grimoire volume 5) + - Dark Dungeons + - Dark Fantasy + - Dark Fantasy Role Playing + - Dark Folk + - Dark Horse + - Dark Horse Comics + - 'Dark Lonesome: The Ariel Sector Sourcebook' + - Dark Naga Adventures + - Dark Outpost Adventure + - Dark Shadows + - Dark Sun + - Dark Sun Campaign Setting + - Dark Tek + - Dark Tower + - Dark Visitor + - Dark Water Press + - Dark Wizard Games + - Dark Wizard Games Mail Call! + - 'Darker Paths 3: The Demonolater' + - Darktek + - Darren Wheeler + - Darrin Drader + - Darsysde Productions + - Dave Anderson + - Dave Arneson + - Dave Arneson Game Day 2014 + - Dave Arneson's Birthday + - Dave Brockie + - Dave Cook + - Dave Davenport + - Dave Hargrave + - Dave J Brown + - Dave J. Browne + - Dave Sering + - Dave Sutherland III + - Dave Woodrum + - David "Zeb" Cook + - David 'Zeb' Cook + - David A. Hargrave + - David Bay Miller + - David Baymiller + - David C. Sutherland III + - David Cook + - David Cooper + - David Drake + - David Guyll + - David Hargrave + - David J. Ritchie + - David Kickasola + - David Lance Arneson + - David Prata + - David Trampier + - David Woodrum + - Davis Chenault + - Davis Chenault. + - Daylight's End 2017 film + - 'Dead Names: Lost Races and Forgotten Ruins' + - Deamons + - Death Angel's Shadow + - Death Frost Doom Adventure + - Death Hawk + - 'Death Race: Fury Road' + - Death Stalkers of Antediluvia + - Death Valley + - Death of Ilalotha + - Death's Ride + - Deaths + - Deathworld + - Deep Carbon Observatory + - Deep Dive + - Deep Ones + - Defiance + - Deities + - Deities & Demigods + - Del Teigeler + - Dell Comics + - Delos + - Delta Green Rpg + - Delta's D&D Hotspot + - DemiGods & Heroes + - Demigods + - Demogorgon + - Demolition Man + - Demon Goblins + - Demon Hunters Handbook + - Demon Lords + - Demon Magic The Second Stormbringer Campanion + - Demon Slayer + - Demon Swords + - Demon spawn + - Demon weapons + - Demonic Masks of OOR'rshu + - Demonic Resurrections + - Demonic Skeletal Ghouls + - Demonic Tome + - Demonlogy + - Demons + - Demons Box Set + - Demons of the Outer Void + - Denizen's of Verekna + - Deodanths + - Deodaths + - Deplector + - Der Ring des Nibelungen (The Ring of the Nibelung) + - Der Ring des Nibelungen (The Ring of the Nibelung)' + - Derek Holland + - Deriative Wretchedverse RPG + - Dervish + - Descent Into The Caves Of The Unknown + - Descent into the Candy Crypts + - Descent into the Depths of the Earth + - Desert Denizens + - Desert encounters + - Designer Notes + - Devas + - Devil Slayer + - Devils + - Didier Poli (Illustrator) + - Dieties & Demigod + - Dieties & Demigods + - Different Worlds + - Different Worlds Publishing + - 'Different Worlds issue #31' + - Dinosaurs Cowboys Human Space Empires Worlds + - Dio + - Direbane blog + - Dirty Wars Corporate Armies + - Disney + - Disney movies + - Disoriented Ranger Publishing + - Distant Lights + - 'Diverse Roles Third Edition : A Clement Sector Career Catalog' + - Diversions of the Groovy Kind + - Divinities + - Doc's Adventures On Mars + - Doctor Strange + - Documentaries + - Dolmwood + - Domain Level Play + - Domain's of Dread + - Dominick Pelletier + - Dominique Crouzet + - Domino Masks + - Don Trumball + - Don Trunabull + - Don Turnbull + - Doom Products + - Doppelgangers + - Double Feature (The Old House + - Doug Bradely + - Doug Niles + - Dougal Dixon + - Douglas Niles + - Down Dark Trails + - Down Darker Trails rpg + - Dr. Hans Reinhardt + - Dr. Hyde + - Dr.Eric Lis + - Dr.La Sing + - Dr.Strange + - Draconian Fighter Space Craft + - Draconic Magazine + - Dragon (Issue 31 - Nov 1979) + - Dragon (Issue 54 - Oct 1981) + - Dragon Bat + - 'Dragon Issue #62' + - Dragon Magazine + - Dragon Magazine 138 + - Dragon Magazine 159 + - Dragon Magazine 182 + - Dragon Magazine 211 + - 'Dragon Magazine issue #56' + - 'Dragon Magazine issue #70' + - Dragon Magazine issue#42 + - Dragon NPC's. Mystara + - Dragon Tree Press + - 'Dragon issue #20' + - 'Dragon issue #21' + - 'Dragon issue #28' + - 'Dragon issue #42' + - 'Dragon issue #63' + - 'Dragon issue #71' + - 'Dragon issue #75' + - Dragon issue 68 + - Dragon issue 81 + - Dragon issue Issue 94 + - Dragon issue#12 + - 'Dragon magazine #97' + - Dragon magazine 101 + - Dragon magazine 108 + - Dragon magazine 109 + - Dragon magazine 183 + - 'Dragon magazine issue #112' + - 'Dragon magazine issue #113' + - 'Dragon magazine issue #119' + - 'Dragon magazine issue #18' + - 'Dragon magazine issue #4' + - 'Dragon magazine issue #90' + - Dragon magazine issue 116 + - Dragon magazine issue 182 + - Dragon magazine issue 183 + - Dragon magazine issue 212 + - Dragon magazine issue 28 + - Dragon magazine issue#104 + - Dragon magazine issue#20 + - Dragon magazine issue#75 + - Dragon's foot + - Dragonborn + - Dragonfoot.org + - Dragonhawks + - Dragons + - Dread Gods + - Dreamlands + - Dreams in the Witch House + - Dreamscape Design + - Drelzna + - Dresdner Multipurpose Corvette + - Driders + - Driftwood Verses + - Drives + - Drivethrurpg + - 'Drongo: Ruins of the Witch Kingdoms' + - Drow + - Druaga + - Drugs + - Druillet + - Dune + - Dungeon + - Dungeon Adventure Kits + - Dungeon Alternatives + - 'Dungeon Crawl Classics #79: Frozen In Time' + - 'Dungeon Crawl Classics #84: Peril On The Purple Planet (box set)' + - Dungeon Crawl Classics Rpg + - Dungeon Crawl fanzine + - Dungeon Crawl fanzine. + - Dungeon Crawls + - Dungeon Design + - Dungeon Dressing + - Dungeon Ecology + - Dungeon Ecology & Set Up + - Dungeon Finds + - Dungeon Hazards + - Dungeon Lord Blog + - Dungeon Master Motivation + - Dungeon Master Stuff + - Dungeon Master's Guide + - Dungeon Master's Workshop Session Zero Preparation + - Dungeon Module A7 – Marquessa + - 'Dungeon issue #69' + - Dungeon of The Unknown + - Dungeoneer + - Dungeonland + - Dungeonlord Blog + - Dungeons + - Dungeons + Dragons + - Dungeons Dragons + - 'Dungeons & Delvers: Black Book' + - Dungeons & Dragons + - Dungeons & Dragons Cartoon + - Dungeons & Dragons Cyclopedia + - Dungeons & Dragons Rules Cyclopedia + - 'Dungeons & Dragons Set1: Basic Rules' + - Dungeons & Dragons races + - Dungeons + Dragons + - Dungeons and Dragons + - Dungeons and Dragons Cartoon + - Dungeons of Dread + - Dwarves + - Dwellers In The Mirage + - Dwimmermount (ACKS version) + - Dying Earth + - Dyson Logos + - E. R. Eddison + - E.D.D.I.E. Cybernetic Units + - E.Gary Gygax + - EC comics + - EPIC! Silvia Clemente + - EX1 + - EX1 Dungeonland + - EX1 Isle of Dread + - EX2 + - EX2 Land Beyond The Magic Mirror + - Earth + - Earth 1870 + - Earth 4635x + - Earth Sector + - Earth Sector rpg + - Earth Vs the Flying Saucer + - Easy of Play + - Ebon Gryphon Games + - Echohawk + - Echohawk's RPG Musings + - Ecology + - Ed Greenwood + - Edgar Allen Poe + - Edgar Rice Borroughs + - Edgar Rice Burroughs + - Edward Hamilton + - Effing Cool Miniatures + - Egg of Coot + - Egypt + - Eighties + - Eighty One + - El Cid + - Elder Gods + - Elder Things + - Eldritch Enterprises + - Eldritch Entertainment + - 'Eldritch Tales: Lovecraftian White Box Role-Playing' + - 'Eldritch Tales: Lovecraftian White Box Role-Playing game' + - Eldritch Wizardry + - Eldritch Wizardry 1976 + - Electrical Experimenter + - Elemental Demonic Patrons + - Elemental Spells + - Elf Lair Games + - Elf Lair Publishing + - Elfmaids & Octopi + - Elfmaids & Octopi blog + - Eloi + - Elric + - Elric mythos + - Elric of Melnibone + - Elric of Melnibone rpg + - Elric rpg + - Elves + - Emily Blunt + - Emperor's Choice + - Emperor's Choice Games + - Empire of The Petal Throne + - Empire of The Petal Throne Rpg + - Empire of Time rpg supplement + - Encounter Fanzine + - Encounter Tables + - Encounters + - Engineering Castles + - Engineering Dungeons + - England Upturn'd + - Epsilon City + - Equipment + - Eric Bloat + - Erick Wujcik + - Eris + - Ernie Gygax + - Erol Otus + - 'Escape From The Psiborg I.C.E. Prison #134' + - Esoteries + - Essence Of Evil + - Eternal Champion + - Eternals + - Ettercaps + - Europa + - Events + - Evil Dead + - Evil Dead Television Series + - Evil Elemental Rulers + - Exalted + - Excalibur movie 1981 + - Exhibit Species 667 - The Nihilist + - Exhumed Obscura + - Expanded Dragons + - Expanded Dragons – Hatchlings to Elder Wyrms + - 'Expanded Monsters: Eldritch Eyes' + - 'Expanded Races: Thanians - A Shadowdark Supplement' + - Expanded Wretched Rpg + - Expanding Character Classes + - Expanding Classes + - Expansions + - Expediation to the Crystal Cavern + - Expedition To the Barrier Peaks + - Expeditious Retreat Press + - Expert Dungeons & Dragons + - Explorers + - Exterminator Cyborgs + - Exterminators + - Eye Of Fear and Flame + - F Zozer Games + - F1 Zombie Curse + - FASERIPodedia rpg + - FASRIP rpg's + - FM-1 Baba Smerta + - Facebook + - Factions + - Fainting Goat Games + - Fairies + - Fairies Fair and Foul Vol. 01 + - Fairy + - Fairy Tales + - Fairylands + - False Machine Publishing + - Famine In Far-Go + - Fan Created Material + - Fan Films + - Fan Theories + - Fangs of the Fatherland + - Fantastic Adventures + - Fantastic Heroes & Witchery Rpg + - Fantastic Treasures + - 'Fantastic Treasures: Hundreds of Enchanted Weapons and Items From Myth & Folklore' + - Fantasy + - Fantasy Accessories + - Fantasy Master + - Fantasy Movies + - Far Future Enterprises + - Far Horizon + - Far Out Space Nuts + - Fasa Star Trek + - Faster Monkey Games + - Faster Then Light Nomad Rpg + - Fawcett Comics + - Feathered Laser Raptors + - Featured Artist + - Featured Artist of The Day + - Fen Roc + - Fever-Dreaming Marlinko + - Fey + - Fiend Folio + - Fifth Edition + - Fifth Edition Dungeons & Dragons + - Fight On Magazine + - Fight On! (Issue 3 - Fall 2008) + - Fighters + - Film Commentary + - Film Inspiration + - Film campaign Rpg inspiration + - Films + - Fire & Ice Film + - Fire Arms + - Fire Cracker Goblins + - Fire Mountain + - Fire on The Velvet Horizen + - Fireside Games + - 'First Edition Fantasy: Dungeon Hazards' + - First Edition Stormbringer rpg + - First Fantasy Campaign + - First Impressions + - Fish Wife Games + - Five Cultclassic Eighties Fantasy Films + - Five Cultclassic Eighties Films + - Five Swords + - Five Ways To Screw With + - Flash Gordon + - Flash Gordon The Greatest Adventure of All + - Flint Henry + - Flood of '55 + - Flying Buffalo + - Flying Polyps + - Flying Saucers + - Followers of The Pandorics + - Fomorian + - 'Foot Print Magazine issue #22' + - Footprint Magazine + - Footprints (Issue 24 - Jan 2019) + - Forbidden Planet + - 'Forbidden Worlds #2' + - 'Ford''s Faeries: A Bestiary' + - 'Ford''s Faeries: A Bestiary Inspired by Henry Justice Ford' + - Forrest Aguirre + - Fortress (1992) + - Fourth of July + - Frank Belknap Long + - Frank Frazetta + - Frank Mentzer + - Frank Schmidt + - Frank Skeivoll Romsvig + - Frankencampaign + - Fred Fields + - Frederick Arnold Kummer + - Free 2d6 rpg material + - Free Adventure + - Free Adventure pdf's + - Free Adventures + - Free Cepheus Engine rpg + - Free Cepheus Engine rpg material + - Free City of Greyhawk + - Free Comic books + - Free Download + - Free Download Review & Commentary + - Free Downloads + - Free Fanzines + - Free Goblinoid Games + - Free Goblinoid Games Realms of Crawling Chaos + - Free Goblinoid Games material + - Free Material + - Free Material. + - Free Mini Module + - Free Modules + - Free OSR Adventure + - Free OSR PDF + - Free OSR PDF's + - 'Free OSR Resource - & Magazine #11 For Your Advanced Dungeons & Dragons 1st Edition + or OSRIC rpg systems' + - Free OSR Resources + - Free OSR Rpg games + - Free OSR Sourcebooks + - Free OSR Supplements + - Free OSR material + - Free OSR modules + - Free PDF + - Free PDF's + - Free PDFs + - Free Pulp Download + - Free Resources + - Free Retroclone Adventures + - Free Rpg Day + - Free Space Craft Plans + - Free Sword & Sorcery Campaigns + - Free Wargames + - Freez'rea + - French Comic Books + - Friends + - Frog God Games + - From Stellagama Publishing + - From The Ashes Box Set + - From The Beyond + - From The Vat + - From The Vats + - Frosty Overlords + - Frugal DM + - Fungus + - Funnels + - G Edward Patterson III + - G-Core + - G. Edward Patterson III + - G.I. Joe + - G1 Steading of the Hill Giant Chief + - G2 Glacial Rift of the Frost Giant Jarl + - G3 Hall of the Fire Giant King + - 'GAZ1: "The Grand Duchy of Karameikos" Frank Mentzer' + - GBM-1 Joe's Diner + - 'GEAR : General Equipment Adventurers Require' + - GM Games + - 'GMA1: Cult of The Rat God' + - 'GMA2: They Devour' + - GP Adventures + - GP Adventures LLC + - GW3 The Cleansing War of Garik Blackhand + - GW5 Rapture Of The Deep + - Gallant Comics + - Gallant Games + - Gallant Knight Games + - Game Designer's Workshop + - Game Lords + - Game Lords LTD + - Game Lords LTD. + - Game Play + - Game Science + - Game Session Report + - Gamefound + - Gamer ADHD + - Games Glades of Death + - Games Workshop + - Gaming + - Gaming Commentary + - Gaming Groups + - Gaming Memories + - Gaming Product + - Gaming Resources + - Gaming Session Reports + - Gamma World + - Gamma Terra + - 'Gamma Turquoise: Santa Fe Starport' + - Gamma World + - Gamma World 1st + - Gamma World 1st + 2nd Edition + - Gamma World 1st edition + - Gamma World 2nd edition rpg + - Gamma World 4th edition + - Gamma World First Edition + - Gamma World Fourth Edition + - Gamma World Gamma Knights + - Gamma World Rpg + - Gamma World Second Edition + - Gamma World rpg 1st + - 'Gamma World: Legion of Gold GW1 Exploration Module 1981' + - 'Gamma World: Legion of Gold GW1 Exploration Module 1981.' + - Gangbusters rpg + - Garden of the Plant Master + - Gargoyle 74 Rpg + - Gargoyles + - Garry Spiegle + - Garske Games + - Gary "Jake" Jaquet + - Gary Con + - Gary Fields + - Gary Gygax + - Gary Gygax Timothy Brannan + - Gary Gygax day + - Gary Vs The Monsters + - Gavin Norman + - Gavriel Quiroga + - Gaynar the Damned + - Gelatinous Cubes + - Generators + - Generic Adventures + - Gennifer Bone + - Geoffrey McKinney Carcosa + - Geoffrey McKinney Carcosa rpg + - Geoffrey McKinney + - Geoffrey O'Dale + - Geoffry O'Dale's Judge's Guild Inferno + - George Ebersole + - George Pal + - Germanic Norse mythology + - Gerry Andersen + - Gerry Anderson + - Gerry Spiegle + - Gethsemane Games + - Getting New D&D Players + - Ghost City + - Ghost Ship of the Desert Dunes + - Ghost of Lion Castle + - Ghosts + - Ghosts of Salt Marsh + - Ghosts the Incorporal Undead + - Ghou'ld + - Ghouls + - Giant Alien Skeleton Warriors + - Giant Bats + - Giant Bugs + - Giant Leopard Seal + - Giant Monster Movies + - Giant Monsters + - Giant Mutant Lemurian Ripper + - Giant Mutated Vampire Crabs + - Giant Robots + - Giant Series + - Giants + - Giants of the Rpg Hobby + - Gibberlings + - Gifts + - Gillette Castle State Park + - Girls Gone Rogue + - Gladiators + - Glantri + - Glenn Seal + - Glynn Seal + - Gnolls + - Gnomes 1977 Book + - Go Fund Me + - Goblinoid Games + - Goblins + - Goblioid Games + - Godbound + - Godbound rpg + - 'Godbound: A Game of Divine Heroes' + - Gods + - Gods & Demons - Hawkmoor - Aedle Magder + - Gods Demi Gods + Heroes + - Gods of Law in the New Kingdoms' + - Godstar + - Godstar Campaign Setting + - Godzilla + - Godzilla King of the Monsters 2019 + - 'Godzilla: The Series' + - Gold Key Comics + - Gold Rush! + - Golden Age of Gaming + - Goldenrod's Guide To Combat + - Gonzo Adventures + - Gonzo Nightshift Veterans of the Supernatural Wars Rpg Campaign + - Goodman Games + - Goodman Games Original Adventures Reincarnated series 2 The Isle of Dread + - Goodman Games Original Adventures Reincarnated series S3 Expedition To The Barrier + Peaks + - 'Goodman Games Classics Reimagined #2 Isle of Dread' + - Goodman Games Original Adventures Reincarnated series 2 The Isle of Dread + - Gord the Rogue + - Gordon R. Dickson + - Gorgo + - Gorgon Entertainment + - Gorgon Milk + - Gorgons + - Gothic Literature + - Graeme Morris + - Grand Father's Rain + - Grant S Parrinello (Author) + - Graphic Novels + - Gravity + - Grayhawk + - Grays + - Great Figures + - Great Khan Games + - Great Race of Yith + - Greco Roman Mythology + - 'Green Devil Face #1' + - Green Lantern Comic books + - Green Ronin Games + - Green Skeleton Gaming Guild + - Green Sorceress + - Greg Daley + - Greg Gorgonmilk + - Greg Porter + - Greg Stafford + - Gregg Stafford + - Gregorius21778 + - 'Gregorius21778: 10 Demons of Hell From Kai Pütz a.k.a Gregorius21778' + - 'Gregorius21778: 20 Encounters in the Ruins of the Elder Beings By Kai Pütz a.k.a. + Gregorius21778' + - 'Gregorius21778: 20 Sacred Sites' + - 'Gregorius21778: 30 Items of the Dwarfs' + - 'Gregorius21778: Looks & Details Of Post-Apocalyptic Marauders' + - Gremllins 1984 + - Grenadier Models + - Grendal + - Grey Elf's Original Dungeons & Dragons Resources + - Grey Widowers + - Greyhawk + - Greyhawk Adventures + - Greyhawk Campaign Setting + - Greyhawk Grognard blog + - Greyhawk Original Dungeons & Dragons + - Greyhawk canon + - Greys + - Griffon Publishing + - Griffon Publishing Studio + - Grim Jim + - Grimjack + - 'Grimjack (1984) #76' + - Grimm Aramil Publishing + - Grimoire Games + - Grimtooth's Ultimate Traps Collection + - Grind House + - Ground Zero Games + - Groups + - Grunt + - Guardians + - Guardians of the Galaxy Marvel Movie + - Guardians rpg + - Guilds + - Guilds and Orders + - Gunboats and Shuttles + - Gunhed + - Guns + - Guns of War + - Guns! + - Gunslinger rpg + - Gunstar One + - Gurbintroll Games + - Gus LaRu + - Guy Ritchie + - Gygax + - Gygax Magazine + - H.B. Piper + - H.G. Wells + - H.P. Lovecraft + - H.P.Lovecraft + - H.Rider Haggard + - HD2 The Shrine of the Black Ones + - HG Wells + - 'HM6: The Equinox Demon' + - HOSTILE Situation Report 007 + - HOSTILE Situation Report 007 - The Ark + - HOSTILE Situation Report 011 - Black Moon + - HP Lovecraft + - HR1-HR7 Historical Reference Series + - HS1 The Lost Shrine of Sirona + - HS3 Incursion of the Chain Devils + - Hack & Slash Blog + - Hack & Slash Compendium II + - Hacker + - Hades + - Hainitugobae + - Half Ogres + - Half Orcs + - Halloween + - Halloween game. + - Halls of the Nephilim + - Hammer Movies + - Hammers Slammers + - Hanging Coffins of the Vampire Queen + - Hanna Barbara Studios + - Hannah Saunders + - Hapless Henchmen Games + - Happy International Gary Gygax Day + - Happy Mayday! + - Harbinger + - Harbinger Crew Expendable + - Harbinger Down + - Harbinger Games + - Hardware + - Hardware film + - Harpoon Cannon Gaming + - Harry Harrison + - Harry Nuckols + - Harry Potter + - Harvard Blackmoor + - Harvest Moon + - Hauls + - Havard Blackmoor + - Havard Blackmoor Blog + - Havard's Blackmoor blog + - Have Death Ray + - Haven The Free City + - Hawk Maiden + - Hawk The Slayer + - Hawk The Slayer Film + - Hawkmoon rpg + - Hawkmoon rpg box set + - 'Hawkmoon: The Roleplaying Game' + - Hawkmoor Geographica -- A Shadowdark Campaign Setting + - Heavy Metal Magazine + - Helix + - Hell + - Hell Night Hijinks + - Hell' Paradise + - Hellbound Media + - Help Needed + - Helping To Spread The Word + - Henchmen Sing the Blues + - Henry Justic e Ford + - Henry Kuttner + - 'Hercynian Grimoire #1' + - Hereos + - Hereticwerks + - Hereticworks + - Heroes + - Heroic Fantasy Handbook + - Heward + - Heward's Mystical Organ + - Hex Crawling + - High Level Encounters + - High Tech Mysticism & High Caliber + - High Tech Mysticism & High Caliber Adventure + - High Tech Mysticism & High Caliber Adventure OSR Campaign + - High Tech Mysticism & High Caliber Adventure OSR Campaign + - High Tech Mysticism & High Caliber Adventures + - High Weirdness + - High level Adventures + - High level Treasures + - Hill Cantons + - 'Historical Ships of Clement Sector 1: Trent-class Destroyer' + - Hobgoblins + - Holidays + - Hollow World + - Holmes + - Holmes D&D + - Home brew adventures + - Homebrew campaign + - Horde Wars Basic D12 Rpg System + - Hordlings + - Horib + - Horizons Survey space craft + - Horror Comic Books + - Horror Express + - Horror Movies + - Horror On The Hill + - Horror Rpging + - Horror Rpgs + - Horror Stories + - Horror moves + - Horrors + - Hostil rpg setting + - Hostile + - Hostile Explorers + - Hostile Redesign + - Hostile Rough Necks + - Hostile Roughhecks + - Hostile Roughnecks + - Hostile Rules + - Hostile Session Report 001 Ghostship + - 'Hostile Situation Report #010 Street Scum' + - Hostile Solo rpg + - Hostile rpg + - Hostile rpg setting + - Hostile setting book + - Hostile universe + - Hostile's Crew Expendible + - Hotzone + - Hour of the Dragon + - House 1985 + - House Dungeons & Dragons Systems + - House II + - House Rules + - House Two The Second Story + - House of the Rising Sun (Arduin Grimoire volume 6) + - House on Hangman's Hill + - How To Game Master Like A F$#$ing Boss + - How To Game Master Like A Fucking Boss + - How To Hexcrawl + - How To Write Adventures Like A F$#$ing Boss + - Howard Hawks + - Hubris + - Hulks & Horrors rpg + - Hulks + Horrors + - Human Space Empires + - Human Space Empire + - Human Space Empires + - Humanoid Races + - Humanoids From The Nightmare World + - Humor + - Hundred Years War + - Hunt In The Dark + - Hunter I + - Hunter Rose + - Hyberborea Rpg + - Hyboria Gazetteer + - Hydra + - Hydra Collective + - Hydra Cooperative + - Hydras + - Hydrogen Gas + - Hyperborea + - Hyperborea Adventure Three-Pack by Jeffrey Talanian + - Hyperborea Otherworldly Tales + - Hyperborea Rpg system + - Hyperborea rpg + - Hyperborea rpg third edition + - Hyperborea third edition rpg + - Hyperspace + - I Important NPC's + - I1 "Dwellers of the Forbidden City" + - I1 "The Hidden Shrine of Tamoachan" + - I1 Dwellers In The Forbidden City + - I1 Dwellers of the Forbidden City + - 'I10: "Ravenloft II: House on Gryphon Hill"' + - 'I11: "Needle"' + - I12 Egg Of The Phoenix By Frank Mentzer And Paul Jaquays + - 'I13: Adventure Pack I' + - I2 Tomb of the Lizard King + - I3 Pharaoh + - I3 Pharoah + - I3-5 Desert of Desolation + - I4 Oasis of the White Palm (1e) + - I5 Lost Tomb of Martek + - I6 RAVENLOFT + - I7 Baltron's Beacon + - I7 Baltron's Beacon (1e) + - IM1 Immortal Storm + - IM2 The Wrath of Olympus (Basic) + - Ian Melluish + - Ian Stead + - Ian Stead Tim Price Ade Stewart + - Ice Borers + - Ice Kingdoms Map + - Ideas + - Illusionists + - Ilusionists + - Imagine Magazine + - 'Imagine magazine #12 ~ TSR (March' + - Immortal Rules + - Immortality Inc + - Immortals Box set + - Immortals Companion + - Important NPC's + - In Memorium + - In Search Of The Unknown + - In Search of Games + - In The Cities Word Press + - In The Mouth Of Madness + - Incredible Science Fiction + - Independance Games + - Independence Games + - Independence Games Clement Sector + - Independent Gaming + - Indiegogo + - Inferno + - Inferno Bestiary + - Inferno By Geoffry O. Dale + - Infinite Stars Issue#1 + - Infinite Stars Issue#2 + - Influences + - Inhumanoids + - Inner Earth + - Inspirations + - 'Insults & Injuries: A Pathfinder Sourcebook for Medical Maladies' + - 'Interface: Cybernetics' + - 'Interface: Cybernetics in Clement Sector' + - 'Interface: Cybernetics in Clement Sector. Michael Johnson' + - International Crimson Dragon Slayer Day! + - International Dave Hargrave Day + - Internet Archive + - Interstellar Colonies + - Interviews + - Into The Odd + - Introductory Adventure + - Inzae + - Io + - Io9 + - Iron Maiden + - Ishihara Gōjin + - Islands In The Stream + - Islands of Purple Putrescence + - Isle Of The Unknown + - Isle of Dread + - Isle of the Torturers + - 'Issue #2 of the Wretched Verses' + - Issue 27 + - Issue 3 Single Issue Magazine - January 1 + - Issue 32 + - Italian folklore + - Ivan Cantero Muñoz "The Fictionaut" + - Ivanhoe Unbound + - Ixian Wizards + - Ixians + - J Major Influences + - J. Eric Holmes + - J. Miskimen + - J.D. Neal + - J.G. Ballard + - J.G. Desborough + - J.J. Abrams + - J.K. Rowlings + - JG 88 Dark Tower + - 'JG3: Dark Tower D20' + - JN2 Monkey Isle + - Jabberwocky + - Jack 'King of Comics' Kirby + - Jack Kirby + - Jack Kirby's Fourth World Omibus + - Jack London + - Jack O' Lantern's MSH Blog + - Jack She + - Jack Shear + - Jack Vance + - Jame M. Ward + - James & Jodi Mishler + - James & Jodi Moran - Mishler + - James D. Kramer + - James Edward Raggi IV + - James M Spahn + - James M. Spahn + - James M. Ward + - James M. Ward Run + - James M.Ward + - James McKinney's Carcosa + - James Mishler + - James Mishler & Jodi Moran-Mishler + - James Mishler Games + - James Mishler Games Short Cuts to Adventure The Lost Gnome Mine + - James Mishler. Jodi Moran-Mishler + - James Mishlers Games + - James Panarella + - James Raggi + - James Spahn + - James V West + - James V. West + - James Ward + - James Wards + - James Wards Tainted Lands + - January 1941 issue + - Japan + - Jason & The Argonauts + - Jason Kuhl + - Jason Marker + - Jason Sholtis + - Jason Vey + - Jean Rabe + - Jean Wells + - Jeff Bowes + - Jeff Dee + - Jeff Grubb + - Jeff Grubbs + - Jeff Rients + - Jeff Talanian + - Jeffrey Talanian + - Jennell Jaquays + - Jeremy Reaban + - Jerry Cornelius + - Jerry Stratton + - Jim Bambra + - Jim Hensen's Labyrinth + - Jim Holloway + - Jim McGurk + - Jimm Johnson + - Jinn + - Jirel of Joiry + - Jobe Bittman + - Jodi Moran Misher + - Jodi Moran-Mishler + - Joe Coombs + - Joe Johnston + - Joe Pearce + - Joe's Diner + - John Aman + - John Berkey + - John Bolton + - John Boorman + - John Brunner + - John Campell + - John Carpenter + - John Carpenter's The Thing + - John Carter Of Mars + - John Carter Warlord of Mars + - John Cocking + - John D. Rateliff + - John Keefe + - John Large + - John Nephew + - John Ostrander + - John S. Berry III + - John Watt + - John Watts + - John Watts 'Clement sector' + - John Wood Campbell Jr. + - John Wyndham + - Johnny Melniboné + - Johnny Rook Games + - Jon Mattson + - Jonathan Becker + - Jonathan Nolan + - Jonathan Rowe + - Jordoba + - Jorge Luis Borges + - Joseph A. Mohr + - Joseph Bloch + - Joseph D. Salvador + - Joseph Moar. + - Joseph Mohr + - Joseph Salvador + - Josh Palmer + - Josh Peters + - Josh Sinsapaugh + - Jotunn + - Journey To The Center of The Earth + - Journey through Malebolge Book One + - Journey through Malebolge Book Two + - Jr + - Jr. + - Judge's Guild + - Judge's Guild Products + - Judge's Guild Products. + - Judge's Guild modules + - Judge's Guild's The Wilderlands of High Fantasy + - Judge's Guilds The Wilderlands of High Fantasy + - Judges Guild + - Judges Guild modules + - Juiblex + - Jules Verne + - Julien Blondel (Author) + - Jungle Tomb of the Mummy Bride + - Jungles of the K'naanothoa + - Justice Denied + - Justice Machine + - Justin Davis + - Kabuki Kaiser + - Kai Pütz a.k.a Gregorius21778 + - Kaiju + - Kaiju Disaster Response Vehicle + - Kalthalax + - Kamadan + - Kane + - Kane of Old Mars + - 'Karameikos: Kingdom of Adventure box set' + - Karen S. Boomgarden + - Karl Edward Wagner + - Karl Gustav + - Kasimir Urbanski + - Kayla Lee + - Keep Off The Borderlands + - Keep On The Borderlands + - Keith Kilburn + - Kellri + - Ken Kelly + - Ken Rolston + - Ken St. Andre + - Kenner Toy Company + - Kennith Hite + - Kent David Kelly + - Kerry Lloyd + - Kevin Crawford + - Kevin Culp + - Kevin Freeman + - Kevin Hassall + - Kevin Siembieda + - Kevin Watson + - Keys & Gates + - Kick Starter + - Kickstarrter + - Kickstarter + - Kickstarters + - Kickstater + - Kicstarter + - Kiel Chenier + - Kill Kittens + - Killraven + - Kim Hartsfield + - King + - King In The Mountain + - King Kong + - King Kong (2005 film) + - King Kull + - King Lu-gan + - King Retroclone System + - King Rpg Companion + - King Rpg system + - King Solomon's Mines + - King System + - King rpg + - King's rpg + - Kingdoms of the Undead + - Kirby and Morris. + - Kirt A.Dankmyer + - Knightly Orders + - Kolchak The Night Stalker + - Kong Skull Island + - Konstantin Tsiolkovsky + - Kopru + - Kort'thalis Publishing + - Kort'thalis Publishing. Old school Horror gaming + - Kortthalis Publishing + - Kort’thalis Publishing + - Kos + - Kosmos 68 + - Kosmos 68 blog + - Krull + - Kuiju + - Kuiper belt + - Kull of Atlantis + - Kult + - Kult Rpg + - Kuntz & Wards Gods + - K’nyanian Atomic Healing Chamber of The Black Gulf + - L.O.O.K.E.R. Gun Relic + - L1 'The Secret of Bone Hill' + - L1 'The Secret of Bone Hill'.Venger Satanis + - L1 Dwellers of the Forbidden City + - L1 The Secret Of Bone Hill + - L4 Devil's Spawn + - 'L5B: The Kroten Adventures' + - 'LG1: Terror Terror in the Forest of Gizzick' + - 'LG1: Terror in the Forest of Gizzick' + - 'LG3: Evil in the Borderlands' + - LLC + - LNA1 Thieves of Lankhmar. OSR Commentary + - LNR1 Wonders of Lankhmar + - Labyrinth Lord + - Labyrinth Lord Advanced book + - Labyrinth Lord Advanced + - Labyrinth Lord rpg + - Lady Adventurers + - Lady Satan 1974 + - Lair of the Freebooters + - Lairs & Encounters + - Lamenations of the Flame Princess rpg + - Lamentations Of The Flame Princesses + - Lamentations Of The Flame Princesses Rpg + - Lamentations of The Flame Princess + - Lamentations of the Flame Princes rpg + - Lamentations of the Flame Princess Reference Book + - Lamentations of the Flame Princess rpg + - Lamentations of the Napoleonic Princess Campaign Idea + - Lance-class Gunboat + - Land of the Lost + - Lands Beyond Kos + - Landscape Giants + - Lankhmar + - 'Lankhmar: City of Adventure (2nd edition)' + - Larry DiTillio + - Larry Elmore + - Larry Smith + - Last Gasp Grimoire + - Last Starfighter 1984 film + - Laura Hickman + - Laurel Nicholson + - Law Vs Chaos + - Lawrence Schick + - Lawrence Whitaker + - Legacy Of The Gods + - Legacy Of The Lost Grimiore (Arduin Grimoire volume 4 + - Legendary Lands of Arduin + - Legion of Gold + - Leigh Brackett + - Lemurian Death Angels + - Lenard "Len" Lakofka + - Lenard Lakofka + - Leonard Lakofka + - Leopoldo Rueda + - Lesser Gnome Games + - Lesser Gnome's Creature Catalog + - Levels 1-3 + - Levi Combs + - Leviathan Publishing + - Lewis Carol + - Liar + - Liberation of the Demon Slayer + - Liches + - Light House + - Linnoworms + - Lion & Dragon + - Lion & Dragon retroclone system + - Lion & Dragon rpg + - Lions & Dragon rpg + - Literary Influences + - Lizardmen + - Lizardmen Empire + - LoFP Carcosa + - LoFP's Carcosa + - Loan Sloane + - Lobo Blanco + - Locations + - Logan's Run + - Lomar + - Lone Animator + - Lone Play + - Loot + - Lord Dunsany + - Lord Dusany + - Lord Matteus + - Lord Randy Be Praised! + - Lord of Illusions + - Lords of Order + - Lost Carcosa + - Lost Caverns of Tsojconth (1976) + - Lost Finds + - Lost In Space + - Lost Orders + - Lost Pages + - Lost Worlds + - Lou Ferrigno + - Lovecraft + - Lovecraftian Monster Ecology + - Lovecraftian Monsters + - Lovecraftian Adventures + - Lovecraftian Campaign Settings + - Lovecraftian Commentary + - Lovecraftian Dream Monsters + - Lovecraftian Encounters + - Lovecraftian Factions + - Lovecraftian Monster Ecology + - Lovecraftian Monsters + - Lovecraftian Role Playing + - Lovecraftian Space Opera + - Lovecraftian Spells + - Lovecraftian Sword & Sorcery + - Lovecraftian Treasures + - Lovecraftian artifacts + - Lovecraftian relics + - Low Level Cosmic Ritual Spells + - Low Level Occult Adventure Locations + - LudiCreations + - Lulu + - Lulu. + - Lum The Mad + - Luna + - 'Luther Arkwright: Roleplaying Across the Parallels' + - Luz + - Luz The Evil + - Lycanoid Mutates + - Lynn Sellers + - M.A.R. Barker + - M.A.R.K. 13 + - M1 Into the Maelstrom Beatrice Heard + - 'M2 Marvel Super Heroes RPG: The Unofficial Canon Project Darkhold' + - M4 Five Coins For A Kingdom + - M6 The Unofficial Canon Project Marvel Superheroes Werewolf By Night Supplement + - M6 Werewolf by Night for the Marvel Super Heroes RPG + - MA 10 The Unofficial Canon Project Marvel Super Hereos Reed Richard's Guide To + The Universe + - MA11 The Unofficial Marvel Super Heroes Rpg Marvel Vampires By The Unofficial + Cannon Project + - 'MA12 the Marvel Super Heroes RPG: The Unofficial Canon Project Monsters Unleashed + Pdf' + - MA15 The Unofficial Canon Project Marvel Super Heroes Rpg Heroes of The North + - MA6 The Silver Age Sourcebook + - 'MHL3: Imperious Rex! Realms of the Deep' + - MHR6 Conan The Barbarian Box Set + - ML Straus + - MM#7 Dread Swamp of the Banshee + - MUTT Powered Armor + - MX1 Nightmares of Future Past + - Macbeth + - Machin Level + - Machinations of the Space Princess + - Mad God's Jest + - Mad Martian Games + - Mad Max + - Mad Monks of Kwantoom + - Mad Scribe Games + - Mad Scribe Games. OSR Commentary + - Magazines + - Magic + - Magic Item Generator + - Magic Items + - Magic Pig Media + - Magic Systems + - Magic of the Old West + - Magical Caskets of the Damned & Unclaimed + - Magical Ceremonies + - Magical Chalices + - Magnificent Miscellaneum Volume two + - Mail Call + - Major Events + - Major Figures + - Major Figures! + - Major Influences + - Major Items + - Major NPC's + - Major Plot + - Maker + - Malcon's Tome of Infinite Spells + - Mammon + - Man After Man + - Mandy + - Manga + - Manifest Destiny + - Manticores + - Manual of the Planes + - Manuel Sousa + - Manuel Souza + - Map + - Map pack + - Mapping + - Maps + - |- + Mar 1974 + Science Fiction Adventure Classics (1969 Ultimate) Pulp + - Marc Miller + - Marcelo P Augusto + - Marine Corps Handbook 2215 + - Mark A.Hunt + - Mark Acres + - Mark Adams + - Mark Allen + - Mark Charters + - Mark Ellis + - Mark Harris + - Mark Hess + - Mark Hunt + - Mark Janselewitz + - Mark Sandy + - Mark Taormino + - 'Mark Taormino''s Maximum Mayhem Dungeons #0 Village of the Borderlands Module' + - Mark of Amber + - Marmoreal Tomb Campaign Starter + - Marrow Gnome + - Mars + - Mars Actual Play + - Mars. + - Martial Arts + - Martians + - Martin F. King + - Martin Hirchak + - Marv + - Marvel + - Marvel Cinematic Universe + - Marvel Conan + - Marvel Movie + - Marvel Movies + - Marvel Star Wars Comics + - Marvel Super Hero Role Playing + - Marvel Super Heroes + - 'Marvel Super Heroes RPG: The Unofficial Canon Project' + - Marvel Super Heroes Rpg + - Marvel Super Heroes The Golden Age + - Marvel comics + - Master of the Desert Nomads + - Masters of the Universe Film + - Mathew Skail + - Matt Finch + - Matt Wagner + - Matt Williams + - Mattel + - Matthew Schmeer's Die Drop Tables + - Matthew Schmeer's Magic Ring Die Drop Table + - Mature Content + - 'Maximum Mayhem Dungeon #2: Secret Machines of the Star Spawn' + - Maximum Mayhem Dungeons + - 'Maximum Mayhem Dungeons #0: Village on the Borderlands' + - 'Maximum Mayhem Dungeons #10: Fantastic Quest of the Whimsical One' + - 'Maximum Mayhem Dungeons #3: Villains of the Undercity"' + - 'Maximum Mayhem Dungeons #4: Vault of the Dwarven King' + - 'Maximum Mayhem Dungeons #5 Palace of the Dragon’s Princess' + - 'Maximum Mayhem Dungeons #7: Dread Swamp of the Banshee' + - 'Maximum Mayhem Dungeons #8: Funhouse of the Puppet Jester' + - 'Maximum Mayhem Dungeons - Mini Adventure #2: Slime Pits of the Sewer Witch' + - 'Maximum Mayhem Dungeons Monsters of Mayhem #1' + - 'Maxinum Mayhem''s #0: Village on the Borderland' + - May 1983 + - Mayfair Demons II Box Set (Role Aids) + - Mayfair Games + - Mazinger Z + - Mead and Mayhem + - Mecha + - Mecha Caper + - Mechanized Men of Mars + - Medicine + - Medusa + - Mega City One + - Mega Corporations + - Mega Dungeon + - Mega Dungeons + - Mega structures + - 'Megadungeon issue #1' + - Megapede + - Megavolt Monsters episode + - Mekton Rpg + - Melissa Fisher + - Melsonian Arts Council + - Men & Monsters of Ethiopia + - Mentalists + - Mentzer Dungeons & Dragons + - Mephits + - Mercenaries + - Mercenary Armies + - Merle M. Rasmussen + - Metal Earth blog + - Metal Hurlant + - Metallic Tome + - Metamorphosis + - Metamorphosis Alpha + - Metamorphosis Alpha 1st edition + - Metamorphosis Alpha 1st edition 'The House on the Hill + - Metamorphosis Alpha Rpg + - Methods & Madness blog + - Mexico + - Mi Go + - MiGo + - Michael Allen Straus + - Michael Brown + - Michael Curtis + - Michael H. Stone + - Michael Johnson + - Michael L Staus + - Michael L Straus + - Michael L. Gray + - Michael Malone + - Michael Moorcock + - 'Michael Moorcock''s Elric Vol. 1: The Ruby Throne Hardcover' + - Michael Price + - Michael Stackpole + - Michael Tierney + - Michael Watkins + - Micheal Moorcock's Elric + - Midderlands Campaign Setting + - Midderzine + - Miguel Ribeiro + - Mike Carr + - Mike Evans + - Mike Nystul + - Mike Stewart + - Military Assets + - Military Science Fiction + - Milk Run + - Mind Flayers + - Mindok The Mind Menace + - Mini Adventure + - Mini Campaigns + - 'Mini Quest: Madness of the Mouther' + - Mini campaign settings + - Mini game + - Mini series + - Mini series. + - Miniatures + - Minor Infernal Treasures + - Minor Items + - Minor Magic Items + - Minor Relics + - Mishler Games + - Mission to Alcazzar (SF4) + - Misty Isles of the Eld + - Mnar + - Mobius + - Modern Combat rpg + - Modern OSR + - Modern War + - Modern War rpg + - 'Modern War: 1944 Fortress Europe' + - 'Modern War: Conversion System' + - Modron + - Module X1 Isle of Dread + - Module Xs2 Thunderdelve Mountain + - Modules + - Modvay & Cook Edition D&D + - Moldvay & Cook Edition D&D + - Moldvay Dungeons & Dragons + - Moloch + - Monastic Knights + - Mongo + - Mongoose Games + - Mongoose Publications + - Mongoose Traveller + - Monkey Blood Design + - MonkeyBlood Design + - Monster Ecologies + - Monster Ecology + - Monster Encounters + - Monster Manual + - Monster Manual II + - Monster Placement + - Monster books + - Monster of Law + - Monsters & Treasure + - Monsters & Treasures + - Monsters Ecology + - Monsters of Mayhem + - 'Monsters of Mayhem #1' + - Monsters of Myth & Legend + - 'Monstrous Miscellany #01' + - 'Monstrous Miscellany #02' + - Monte Cook + - Moon Toad Publishing + - Moon Toad Publishing' + - Moonglum + - Moontoad Publishing + - Mordiggian + - More 3G3 Rpg + - More G3G book + - More Guns 3G3 sourcebook + - Morgan Le Fey + - Morlocks + - Morrow Project Rpg 4th Edition + - Mournblade + - Mov + - Movie + - Movie Influences + - Movie Inspirations + - Movie Themes + - Movies + - Movies Influences + - Movies Influences + - Movies inspirations + - Multivers + - Mummies + - Murcanto's Lair + - Murderbots + - Murray Leinster + - Music + - Mutant Crawl Classics + - Mutant Epoch + - Mutant Epoch Rpg + - Mutant Future + - Mutant Future Retroclone Rpg + - Mutant Future Rpg + - Mutant Menaces + - Mutant Monster Menace + - Mutant Monsters + - Mutant Plant Monsters + - Mutants + - Mutation Solution II + - Mutations + - Mystara + - Mystery At Port Greely + - Mystic Ancestor Mammoth + - Mystic Bull Games + - Mythology + - Mythos Bundle + - Mythos Wars + - Mythos series + - N'rsae Worm Zomvies + - N1 Against the Cult of the Reptile God + - N2 ' The Forest Oracle' + - N2 The Forest Oracle + - N3 series of adventures + - N3 'Destiny of Kings' + - N3 Destiny of Kings + - N3 series of adventures + - 'N8: ''Monsters in the Mist''' + - NEON LORDS OF THE TOXIC WASTELAND rpg + - NPC Adventuresses + - NPC Alien Factions + - NPC Classes + - NPC Classics + - NPC Occult Factions + - NPC builds + - NPC's + - NPCs + - NTRPG CON 2017 Module KK2 The Mystic Cup of Gygax + - NUELOW games + - Named Relics + - Named Weapons + - Names + - Narcosa + - Narcosa rpg supplement + - Nash Press + - Nazi Mega Dungeons of Antarctica + - Near Clones + - Necromancer Class + - Necromancer Class – Masters of Death and Undeath + - Necromancer Games + - Necromancy + - Necrotic Gnome + - Necrotic Gnome Productions + - Nellysyr manor + - Neo Trerrax Strikes Back! + - Neo England + - Neo Ibbians + - Neo Traxx + - Neo-Terraxx + - NeoPlastic + - Neoplastic Press + - Neoplastic Press's Night of the Slashers + - Nephilim Mummies + - Neutra-Laser + - New Big Dragon Games Unlimited + - New Drow City + - New England Bouys + - New Episode + - New Free Starship Maps From 'The Girls Gone Rogue' Kickstarter By Venger Satanis + - New Infinities + - New Liberty + - New Liberty campaign setting + - New Marvel Phile + - New Monsters + - New Players + - New School Gaming + - New Spells + - New Worl + - 'New World: 2D6 Adventure in a Cyberpunk America' + - New York + - New York City Monsters + - New material + - Newt Newport + - Nexus The Infinite City + - Nicholas Cage + - Nick LS Whelan + - Nicolas Dessaux + - Nicolas Kaczmarczyk + - Nigel D.Finley + - 'Night Land and Other Perilous Romances: The Collected Fiction of William Hope + Hodgson' + - Night Owl Workshop + - Night Owl Workshp + - Night Roads + - 'Night Shift: Veterans of the Supernatural Wars Quick Start Kit' + - Night Stalkers + - Nighterror + - Nightowl Workshop + - Nightscreams + - Nightshift Veterans Supernatural Wars rpg + - Nightshift Veterans of the Supernatural Wars rpg + - Nightstalker + - Ningen + - Ninja Beat Down + - Ninja City! + - No Comments Needed + - No Escape From New York + - No Salvation For Witches + - 'No comments:' + - Noah Stevens + - Noble Knight Games + - Nodens + - Noir + - Norse Gods + - North West Smith + - North Wind Adventures + - Northern Edge + - Novanexus + - Novellas + - Novels + - O1 The Gem and the Staff (Basic) + - 'O2: "Blade of Vengeance" (1985)' + - O5R + - OB3 The Legend of the White Snake + - OD&D + - OD&D Campaigns + - 'OD&D Supplement III: Eldritch Wizardry' + - OD+D + - 'OP: Tales of the Outer Planes' + - ORGE Rpg System + - OSR + - OSR Campaign Commentary + - OSR Review & Commentary + - OSR Reviews + - OSR 'Pay What You Want' Rpgs + - OSR Adventure Campaign Commentary + - OSR Adventure Commentary + - OSR Adventure Review + - OSR Adventure Reviews + - OSR Adventure Settings + - OSR Adventures + - OSR Applications + - OSR Blogs + - OSR Campaign + - OSR Campaign Commentarty + - OSR Campaign Commentary + - OSR Campaign Construction + - OSR Campaign Design + - OSR Campaign Hostile Update + - OSR Campaign One Shot Commentary + - OSR Campaign Set- Up + - OSR Campaign Setting Review + - OSR Campaign Update + - OSR Campaigns + - OSR Comentary + - OSR Commenary + - OSR Commentar + - OSR Commentaries + - OSR Commentarty + - OSR Commentary + - OSR Commentary & Reviews + - OSR Commentary & Review + - OSR Commentary - Weird Tales Judges Guild Wilderlands of High Fantasy- B1 In Search + of the Unknown By Mike Carr + - 'OSR Commentary No comments:' + - OSR Commentary and Reviews + - OSR Commentary. + - OSR Commentary. Lamentations of the Flame Princess + - OSR Encounters + - OSR Factions + - OSR Hacks + - OSR Hauls + - OSR Horror Gaming + - OSR Horror rpg + - OSR Investigative Horror + - OSR Lost Ruins + - OSR Magazines + - OSR Martian Campaign + - OSR Material + - OSR Mega Campaign Commentary + - OSR Mini Campaign + - OSR Monster Books + - OSR Occult Rpging + - OSR Opinion + - OSR PC Classes + - OSR Post Apocalyptic Gaming + - OSR Random Tables + - OSR Reference + - OSR Resources + - OSR Retroclone Campaign Setting + - OSR Review & Application + - OSR Review & Commentaries + - OSR Review & Commentary + - OSR Review & Commentary On + - OSR Review & Commentary On All Bets Are Off (Wretched Version) + - OSR Review & Commentarys + - OSR Reviews + - OSR Reviews & Commentary + - OSR Round Up + - OSR Rpg's + - OSR Science Fantasy + - OSR Science Fiction rpg + - OSR Setting Commentary + - OSR Setting Reviews + - OSR Settings + - OSR Solo Play + - OSR Space Monsters + - OSR Space Opera Inspiration + - OSR Star Trek campaign Settings + - OSR Sword & Sorcery Commentary + - OSR Sword & Sorcery Adventure + - OSR Sword & Sorcery Adventures + - OSR Thoughts + - OSR Underground + - OSR Urban Fantasy + - OSR Wretch Rpg + - OSR Write Ups + - OSR Zines + - OSR campaign Horror Hook + - OSR campaign commentary & workshop + - OSR games + - OSR gaming + - OSR monster book review + - OSR monsters + - OSR retroclones + - OSR setting + - OSR style games + - OSRIC + - OSRIC Supplement + - OSRIC 1st + - OSRIC 1st Ed + - OSRIC 1st Ed AD&D + - OSRIC 2nd edition + - OSRIC PC material + - OSRIC Player's Guide + - OSRIC Rpg + - OSRIC Supplement + - OSRIC material + - OSRIC retroclone + - OSRIC/1E + - Objects of occult power + - Obscene Serpent Religion + - Occult Relics + - Occult Wars + - Odin + - Ogres + - Ogres of the Olden Lands + - Olathoe + - Old School Science Fiction gaming + - Old School Sword & Sorcery Adventures + - Old Campaigns + - Old Earth' + - Old Fantasy Gaming + - Old Hrolmar + - Old Mars + - Old Post Apocalyptic Gaming + - Old School Post Apocalyptic Gaming + - Old School Pulp Adventure Gaming + - Old School 2d6 Science Fiction + - Old School 2d6 Science Fiction Campaigns + - Old School 2d6 Science Fiction Games + - Old School 2d6 Science Fiction Rpg Campaigns + - Old School 2d6 Science Fiction rpg's + - Old School 2d6 rpg's + - Old School Advanced Dungeons & Dragons + - Old School Adventure Commentary + - Old School Adventures + - Old School B/X Adventure systems + - Old School Campaign + - Old School Campaign Settings + - Old School Campaigns + - Old School Combat + - Old School Cyberpunk Adventures + - Old School Essentials + - Old School Fantasy Gaming + - Old School Gaming + - Old School Horror Role Playing + - Old School Influence + - Old School Lost World Adventures + - Old School Lovecraftian Adventures + - Old School Old School Horror Gaming + - Old School PDF + - Old School PDFs + - Old School Post Apocalyptic Gaming + - Old School Post Apocalyptic Rpgs + - Old School Post Post Apocalyptic Campaigns + - Old School Pulp Adventure Gaming + - Old School Pulp Role Playing + - Old School Pulp RolePlaying + - Old School Relics + - Old School Retro-clone rpg systems + - Old School Retro-clone systems + - Old School Revival +3 Adventures + - Old School Role Playing + - Old School Science Fantasy Gaming + - Old School Science Fiction + - Old School Science Fiction Comic Books + - Old School Science Fiction Gaming + - Old School Space Based Campaigns + - Old School Space Fantasy Adventures + - Old School Space Fantasy Campaigns + - Old School Space Opera + - Old School Space Opera Campaigns + - Old School Super Hero Gaming + - Old School Superhero rpg + - Old School Sword & Planet RPG Adventures + - Old School Sword & Sorcery + - Old School Sword & Sorcery Adventures + - Old School Sword & Sorcery Campaigns + - Old School Sword & Sorcery Gaming + - Old School Sword and Sorcery Adventures + - Old School Swords & Sorcery + - Old School Traveller + - Old School Traveller rpg + - Old School Urban/Horror Campaigning + - Old Science Fantasy Gaming + - Old Shanghai Source book + - Old Solar System + - Old Venus + - Old West Rpgs + - Old West setting + - Old school + - Old school Gaming Fodder + - Old school Horror Comics + - Old school Horror gaming + - Olivar Tripas + - Omar Golan-Joel + - Omega 99 + - Omer Golan-Joel + - Omer Joel + - 'On Axioms Compendium Volume 2: 9 - 16' + - 'On Vice: Sandcove Under Fire' + - One Day Digs + - 'One Day Digs 7: The Ascent' + - One Page Dungeon Contest + - One Shot + - One Shot Adventures + - One Shot Encounters + - One Shot Games + - One Shot RPG + - One Thousand Items of Salvage For the Frontiers of Space + - Open Game Content + - Open Source Games + - Open Space Graphic Novels. + - Opera + - Operation Unfathomable + - Operation White Box + - Opinions + - Opus Magi rpg + - 'Opus Magi: Anima Machinae' + - 'Opus Magi: Psions' + - Orbital 2100 rpg + - Orbital Decay Revised + - Orbital Decay Rpg Supplement + - Orbital Platforms + - Orcs + - Orcus + - Ordo Arcanorum + - Oriental Stories + - Original Dungeon & Dragons + - Original Dungeons + - Original Dungeons & Dragons + - Original Dungeons & Dragons Monsters & Treasure Volume Three + - Original Dungeons & Dragons Supplement I Greyhawk + - Original Dungeons + Dragons + - Original Dungeons + Dragons Setting + - Original Dungeons + Dragons + - Original Dungeons + Dragons Setting + - Original Dungeons And Dragons + - Original Dungeons Dragons + - Original Dungeons and dragons - Book 3 - The underworld & Wilderness Adventures + by Gary Gygax & Dave Arneson. + - Original Star Trek + - Original TV series + - Original Traveller + - Original Traveller rpg + - Original Travller rpg + - Orion III Spaceplane + - Oscar Wilde + - Oswald + - Other Blogs + - Other Cepheus Engine Rpg Campaigns + - Other Dimensional Keys and Gates + - Other Dust + - Other Game Systems + - Other OSR Campaign Settings + - Other OSR Horror Rpg's + - Other OSR Retroclone Rpg Systems + - Other Old School 2d6 Science Fiction Rpgs + - Other Wild West OSR Games + - Other World Television Television show + - Other Wretchedverse Rpg's + - Otherside Blog + - Otherside of the Blog + - Otherworldly Death Druglord + - Otto Von Bismarck + - Out of Blackest Earth + - 'Outer Space Raiders Volume 2: Aliens' + - 'Outer Space Raiders: The Norni' + - 'Outer Space Raiders: Zeloxians' + - Outland Arts + - Outlanders + - 'Outlaw: Crime in Clement Sector' + - Outpost Mars + - Over The Edge + - Overview + - Overviews + - Ovions + - P Craig Russell + - PA1 Vault of the Faceless Giants + - PC Character Creation + - PC Character Creations + - PC Classes + - PC Options + - PC Races + - PC Races The Elves + - PC careers + - PC funnels + - PC's + - PC14 - The OSR Shadowdancer + - PDF's + - PDFs + - Pacesetter's Temple of Mercy + - Pacific Rim + - Pagan Publishing + - Palace of The Silver Princess + - Palladium Games + - Pallid Stallions + - 'Pamphlet 1: Fields of Forsaken' + - Pan Tang + - Paranoia rpg + - Particle Beam Weapons + - Passing of Friends + - Pat Mills + - Pathfinder + - Patricio González + - Patrick Stuart + - Patrick Wetmore + - 'Patrick Wetmore''s ASE1: Anomalous Subsurface Environment' + - Patrons + - Paul Anderson + - Paul Drye + - Paul Eilliot + - Paul Elliot + - Paul Elliott + - Paul F de Valera (Author) + - Paul Kirk + - Paul Mosher + - Paul Nevins + - Pay + - Pay What You Want + - Pay What You want adventures + - Peddlers + - Pegsus magazine + - Pellucidar + - Penney Towers + - Perils of the Young Kingdoms + - Pete Nash + - Peter Adkison + - Peter C. Spahn + - Peter Jackson + - Peter Mennigen + - Peter Plastic + - Peter S. Williams + - Peter S. Williams Sword & Sorcery + - Peter's Death + - Petersen Games + - Petty Barbarian Warlords + - Petty Gods + - 'Petty Gods: Revised & Expanded Edition' + - Peusdo Thugg Assassin Cults + - Phaiano-phatu + - Phantasm Film Homage + - Phantasm II + - Phil Gallagher + - Phil Gallagher. + - Philip Jose Farmer + - Philip K Dick + - Philip Meyers + - Philip Reed + - Philippe Druillet + - Picts + - Pike & Shot + - Pioneer Class Space Station + - Piracy and Privateering + - Pirates + - Pitford Gateway To The Ruins + - Places + - Plaid Stallions + - Plane of Water + - Planes + - Planet Algol blog + - Planet Comics + - Planet Kaiju + - Planet Psychon + - Planet X Games + - Planet of The Apes + - Planets + - Play Report + - Play Session Report + - Play Session Reports + - Play Sessions + - Player Character Commentary + - Player Characters + - Player's Guide's + - Pluto + - Pod Cast At Ground Zero + - Poetry + - Point Crawls + - Polaris + - Police Dispatches + - Politics + - Port of Entry + - Port of Entry Starports In The Clement Sector + - Portals of Tosh + - Portals of Twilight + - Poseidonis + - Post Apocalypse + - Post Apocalypse Mars + - Post Apocalypse Mars Actual Play + - Post Apocalypse Mercury + - Post Apocalypse Rpgs + - Post Apocalyptic Encounter + - Post Apocalyptic Florida + - Post Apocalyptic Gaming + - Post Apocalyptic Mars + - Post Apocalyptic Rpgs + - Post Apocalytic Gaming + - Post Apocalytic Mars + - Post Apocalytic Rpgs + - Post Mortem Studios + - Post-Apocalypse Race + - Postcards From Aviladad + - Postcards from Avalidad rpg + - Postmortem Studios + - Poul Anderson + - Power Armor + - Powered Armor + - Prayer Breakfast White Star Rpg Session Report 1 + - Precis Intermedia + - Prehistoric Mutant Menaces + - Prehistoric Monsters + - Prehistoric Mutant Menaces + - Press The Flesh + - Previews + - Prince of Darkness + - Privait Con 2017 + - Problem Players + - Product Commentary + - Professor MAR Barker + - Professor Moriarty + - Prohibition + - Prometheus + - Props + - Proto dimension magazine. + - Protodimension magazine + - Protodimension magazine. + - Protodimensions supplement + - Pseudo Historical settings + - Psyche Lasher + - Psychedelic Fantasies + - Psychic powers + - Psychotronic Monster Movie Monday + - Psychotrophic Influence + - Public Domain + - Public Domain Books + - Public Domain Super Heroes + - Pulp Crazy + - Pulp Cthlhu rpg + - Pulp Inspiration + - Pulp era Gaming + - Pulps + - Pär Olofsson + - Q1 Queen of the Spiders Super Module + - Qelong + - Quagmire! + - Quantum Dark + - Quantum Dark Rpg System + - 'Quantum Dark: Alien Companion' + - Quantum Engine + - Quantum Flux:Unique Superscience Artifacts + - Quantum Starfarer rpg + - Quasar Dragon Games + - Quasit + - Queen of the Panther World + - Quetzalcoatl + - Quick Reviews + - 'Quick Ship File: Gwad Urm Class System Defence Destroyer' + - RA1 'Feast of Goblyns' + - RC Pinnell + - 'REF3: The Book of Lairs' + - REF5 Lords of Darkness + - RL1 - The Craft Dungeon of Reynaldo Lazendry + - RPG Commentary + - 'RPGPundit Presents #9: The Book of the Art of Hours.' + - 'RPGPundit Presents: The Old School Companion 1' + - 'RPGPundit Presents: The Old School Companion 1 From Spectre Press' + - 'RPGPundit Presents: The Old School Companion 1 From Spectre Press.' + - 'RQ1: "Night of the Walking Dead"' + - RW Chambers + - Racial Character Classes + - Radiation Hazards + - Radio Police Automaton + - Rafael Chandler + - Ragnarok + - Raiders + - Raiders Of The Lost Ark + - Raiders of the Lost Artifact + - Raiders of the Lost Artifacts Rpg + - Raiders! of the Lost Artifacts Rpg System + - Ralph Bakshi + - Rambo Action Figures + - Ramon F Jones + - Random Adventure Locations Table + - Random Affects + - Random Alien Devices + - Random Charts + - Random Debris + - Random Demonic & Devil Encounters + - Random Encounter Charts + - Random Encounters + - Random Finds + - Random Item Tables + - Random Monster Generator + - Random Mutations + - Random Order Creations + - Random Relics + - Random Sleazoid Professions Table + - Random Super Science Items + - Random Sword & Sorcery Encounters Table + - Random Table. + - Random Treasure + - Random Treasures + - Random table.retro clone. terminal space + - Random tables + - Randy Nichols + - Rant + - Rappan Athuk + - Rapture + - Rapture Of The Deep + - Raven God Games + - Raven Wulfgar + - Ravenloft + - Ravenloft Campaign Setting + - Ravenscrag + - Ray Bradbury + - Ray Harryhausen + - Reading + - Ready Reference Sheets + - Real Life + - Real Life Inspiration + - Real World History + - Really Big Island Of Adventure! + - Realm of The Technomancer + - Realms of Chaos + - Realms of Crawling Chaos + - Realms of Horror + - Realms of Unbound Fantasy + - Reaper Miniatures + - Red Arrow + - Red Moon Medicine Show + - Red Room + - Red Shadows + - Red Tam's Bones By John Turcotte + - Red Tide + - Red and Pleasant Land + - Redemption + - Reference + - Relic Living Metallic Tissue Armor + - Relics + - Relics & Treasures of Beelzebul + - Relics of the Akaschics + - Relics of the Lost + - Religion + - Religions + - Remanent Guardians + - Rended Press Blog + - Renegade Heroes + - Reporter X + - Requests + - Resort of the Dead Miguel Ribeiro + - Resources + - Ressources + - Rest In Peace + - Reticulans + - Retoclones + - Retrclone + - Retrclone Systems + - Retreoclone systems + - Retro Clone Adventures + - Retro Clone Rpgd + - Retro Future + - Retro Future Campaigns + - Retro Pulp Venus + - Retro clone + - Retro clone Magic Systems + - Retro clone Monster Systems + - Retro clone Rpg Systems + - Retro clone Systems + - Retro clones + - Retro gaming + - Retro-clone rpg systems + - Retro-clone systems + - Retrocclones + - Retroclo + - Retroclone + - Retroclone Adventure Resources + - Retroclone Adventure's Resource + - Retroclone Adventures + - Retroclone Adventures Resource + - Retroclone Adventures Resources + - Retroclone Game Systems + - Retroclone Influence + - Retroclone Sword & Sorcery Encounters + - Retroclone System + - Retroclone rpg + - Retroclone rpg systems + - Retroclone systems + - Retroclones + - Retroclones System + - Retroclones Terminal Space + - Retroclones rpg + - Retroclones systems + - Retroclones. + - Retroclonesl + - Retroclonesm + - Retrolclone Systems + - Retrolclones + - Retrroclones + - Return to the Keep on the Borderlands + - Rev. Joey Royale + - Rev.Ryan J Thompson + - Revelry In Torth + - Revenant PC's + - Revenge of the Ant God + - Review + - Review & Commentary + - Review & Commentary of "Crime City Blues Part II Knuckles of Steel" + - Review & Commentary On Manavores -- A Shadowdark Supplement + - Review & OSR Commentary + - Review and Commentary + - Reviews + - Reviews & Commentary + - Reviews Old School Gaming + - Reviews. + - Reviiew & Commentary + - Revised and Expanded' + - Rewind + - Rich Watts + - Richard Hazelwood + - Richard Hazlewood + - Richard J. LeBlanc + - Richard Le Blanc JR + - Richard Lee Byers + - Richard Matheson + - Richard Meyer + - Richard T. Meyer + - Richard Watts + - Rick Loomis + - Rick Random + - Rick Rose + - Rider rpg + - Rien Poortvliet + - Rifts + - 'Rifts Dimension Book One: Wormwood' + - Rifts Manhunter rpg + - Rifts rpg + - Rings + - Rise of the Red God + - Rite of the Faceless Queeen + - Ritual Spells + - Riven Gulch + - Rob Couture + - Robert Doyel + - Robert E. Howard + - Robert E.Howard + - Robert Garitta + - Robert Howard + - Robert J. Blake. + - Robert J.Kuntz + - Robert Kuntz + - Robert Kuntz & James Ward + - Robert L.S. Weaver + - Robert McCall + - Robert Parker + - Robertson Games + - Robin Recht (Illustrator) + - Robo Joxs + - Roboskull Mark II + - Robot + - Robotech + - Robots + - Rock Critters + - Rodney Mathews + - Roger Corman + - Roger E. Moore + - Roger S.G. Sorolla + - Rogue + - Rogue Mistress + - Rogue Mistress Campaign + - Rogue Moon + - Rogue Space + - Rogue Trader adventure + - Rogues + - Rogues Gallery + - Role Aids + - Role Playing + - Role Playing Games + - Roles + - Rom The Space Knight + - Roman Occupied Britian + - Ron Turner + - Rose War + - Roughnecks + - Rpg Campaign Elevator Pitch + - Rpg Pundit + - Rpg Pundit Presents + - Rpg Pundit's The Invisible College rpg + - Rpgpundit + - Rreviews + - Rudy Craft + - Ruins + - Ruins And Ronin + - Ruins of Arduin + - Ruins of Arduin retroclone + - Ruins of Pitzburke + - Rules + - Rules Cyclopedia + - Rumble In the Jungle + - Runelore + - Runemaster Class + - Runequest Cities + - Runequest third Edition + - Running Beagle Games + - Rusty Gold + - Ryan David + - Ryan Denison + - S.C.A.R.B. + - S.N.A.K.E.'s + - S1 Heart of Glass + - S1 Tomb of Horrors + - S1-4 Realms of Horror + - 'S1: Tomb of Horrors' + - 'S2 ''Castles and Crusades: Dwarven Glory''' + - S2 White Plume Mountain + - 'S2: White Plume Mountain' + - S3 'Expediation To The Barrier Peaks' + - S3 'Expediation to The Barrier Peaks' by Gary Gygax + - S3 'The Expedition to the Barrier Peaks' + - S3 Expedition to the Barrier Peaks + - 'S3: Expedition to the Barrier Peaks' + - S4 The Lost Caverns of Tsojcanth + - 'S4: The Lost Caverns of Tsojcanth' + - S7 Stains Upon The Green + - S7 Stains Upon The Green. + - 'S9: Ransom of the Riverboat Queen' + - SAMAS armor + - STARS WITHOUT NUMBER - TRADE GOODS GENERATOR 300 + - SURVIVE THIS!! Vigilante City - Core Rules Rp + - SURVIVE THIS!! Vigilante City - Core Rules Rpg + - SURVIVE THIS!! Vigilante City - Villain's Guide From Bloat Games + - SURVIVE THIS!! Vigilante City - Villain’s Guide + - SURVIVE THIS!! What Shadows Hide - Cthulhu Sourcebook + - Sabre River (CM3) + - Sacks + - Sacrosanct Games + - Saga Mini Game + - Saga of Crystar 1983 Comic Book + - Saga of the Giants + - Saga of the Victims + - Salem's Lot + - Salt Flats + - Salvage + - Salvage Rite + - Salvatoris + - Samwise Seven + - Sand Rats + - Sandbox + - Sandy Petersen + - Santa Claus Conquers The Martians + - Santa is Dead + - Satan + - Satanis + - Saturday Mail Call + - Saturday Matinee Inspirations + - Saturday Morning + - Saturday Morning Cartoons + - Saturn 3 + - Saturnalia + - Save Yourself From Hell + - Saving Cha'alt + - Scale Ships + - Scaling Ships + - Scarlet Heroes Rpg Systems + - Schweig's Themed Dungeon Generator + - Sci fi books + - Sci fi books + - Science Fantasy Gaming + - 'Science Fiction Adventure Classics #01 (1967 Summer)' + - Science Fiction Rpgs + - Science Fiction rpg Gaming + - Science Fiction rpg Gaming. + - Science Fiction shows + - Scorched Rpg + - Scott Fulton + - Scott Hover + - Scott Myers + - Scourage of the Slave Lords + - Scrap Princess + - Scream magazine Issue 6 + - Screamers + - 'Season 1 Episode # 3 18 October 1980' + - Season One + - Season Two + - Seattle Hill Games + - Second Edition + - Second Edition Advanced Dungeons & Dragons + - Secret Organizations + - Secrets Fanzine + - Secrets of the Archeon + - Secrets of the Immortals + - Secrets of the Shadow End blog + - Secrets of the Undercity + - Secrets of the Witchkind + - Sentinels + - September 11 + - Serpent Men + - Serpentmen + - Session Account + - Session Report + - |- + Session Report + No comments: + - Session Report One + - Session Report Update + - Session Reports + - Session report. + - Set + - Setting + - Setting & Campaign Book + - Severed Fate + - Shadow Dark rpg + - Shadow Deep + - Shadowdark + - Shadowdark RPG + - Shadowfall campaign setting + - Shadowfell + - Shadowlands (Arduin Grimoire volume 7) + - Shadows Over Olisipo + - Shakespeare + - Shambleau + - Shane Ward + - Shawn Fisher + - Sheet Ghouls + - Sheet Phantoms + - Shemarrian Nation Adventure Rifts Sourcebook + - Shield Maidens of Sea Rune (JG1010) + - Shield Maidens of Sea Rune + - Shield of Faith Studios + - Shieldmaidens of Sea Rune + - Shiny Object Syndrome + - 'Ship Book: Chiron Class Hunter' + - Ship Book:A2L Far Trader + - Ship Book:Panga Class Merchant + - Ship Book:Type S Scout/Courier + - 'Ship Files: RAX Type Protected Merchant' + - 'Ships of Clement Sector 10-12: Workhorses' + - 'Ships of Clement Sector 15: Milligan-class Hospital Ship' + - 'Ships of Clement Sector 16: Rucker-class Merchant' + - Ships of the Clement Sector rpg 10-12 + - ShireCon + - Shockwave Rider + - Shogun Warriors + - Short + - Short Stories + - Short films + - 'Shortcuts to Adventure #01: Shrine of the Slime God' + - 'Shortcuts to Adventure #3: Monstrous Reflections' + - Shot & the Weird + - Shoulder of Orion + - Shoulder of Orion campaign + - Shub niggurath + - Shub-Niggurath + - Sick Stick Relic + - Side Abilites + - Siege Engine + - Silent Legions Rpg + - Silvia Clemente + - Silvia Moreno Garcia + - Simian Apes + - Simon Washbourne + - Simple Modernity + - Sin City 2005 + - Sinbad & The Eye of The Tiger + - Sine Nomine Publishing + - Sinful Whispers + - Sir Arthur Conan Doyle + - Sites + - 'Sixteen Stars: Creating Places of Perilous Adventure' + - Sixties Marvel Comic Books + - Skalds + - Skeeter Green + - Skimisher Games + - Skirmisher Games + - Skirmisher Publishing + - Skull Crawlers + - Skull Faced Formorians + - Skull Mountain + - Skull The Slayer + - 'Skull and Crossbones: Piracy in Clement Sector' + - Skulls of Thasaidon + - Sky Ships + - Skywald Publishing + - Skywald PublishingCampaign Settings + - Slaughter Grid + - 'Slave Girl Comics Issue #1' + - 'Slave Girl Comics Issue #2' + - Slave Raiders From Mercury + - Slave Vats of the Yuan-ti + - Slaves of Tsathoggua + - Slavic Mythology + - Sleeping Giant + - Sleeping Giant Adventure + - Slippery When Wet + - Small But Vicious Dog + - Small Niche Games + - Smart Disk Relic + - Smithian Monsters + - Smiths + - Smoldering Dung Games + - Snotgurgle + - Social Media + - Social Sci-Fi + - Sol Bianca + - Solar Sagas + - Sole Survivor + - Solomon Kane + - Something Stinks in Stilton + - Something Wretched This Way Comes + - Something Wretched This Way Comes 1.2 + - Sonic Energizer + - Sonic Shot Gun Relic + - Sonic Tube of Destruction Weapon + - Sons of Hercules + - Sorcerers of Pan Tang + - Souless Children + - Sound Tracks + - Source book + - Source books + - Spacbased Games + - Space + - Space 1999 + - Space 1999 comic book + - Space 1999 comic book Retroclones Rpg systems + - Space Adventures + - Space Adventures X + - Space Age Sorcery + - Space Base Games + - Space Based Games + - Space Based Games Retro clones + - Space Based Games. Retro clones + - Space Brothels + - Space Craft + - Space Dungeons + - Space Family Robinson + - Space Gamer + - Space Games + - Space Games.. + - Space Games..Monsters + - Space Gods + - Space Hunter Adventures In The Forbidden Zone + - Space Opera + - Space Pirates + - Space Precinct + - Space Ships + - Space Shuttles + - Space Travel + - Space Truckers + - Space Vikings + - Space Western + - Space Westerns + - Space wreck + - Space wrecks + - Space wrecksThe Derro + - Spacebased Games + - Spaced based Games + - Spears of the Dawn + - Species V + - Spectral Samurai + - Spectre Press + - Spell Casters + - Spellbook games + - Spelljammer + - Spells + - Spies + - Spies of Light Elf + - Spirits of Heaven & Hell + - Spy Novels + - St.Stephen + - Stalker Rpg + - Stand Alone Games + - Stand on Zanzibar + - Stange Stars + - Stanley G. Weinbaum + - Star & Void + - Star Frontiers + - Star Grunt II + - Star Knights + - Star Log Magazine + - Star Seige + - Star Seige Rpg + - Star Ship From Hell + - Star Ships + - Star Ships & Spacemen second edition. + - Star Ships + Space Men + - Star Ships + Space Men Second Edition + - Star Spiders + - Star Trek + - Star Trek Continues + - 'Star Trek: Alpha Quadrant' + - Star Wars + - Star Wars Return of The Jedi + - Star Wars Rpg + - Star Wars Tie Fighter + - Star Wars movie + - Star Without Numbers Revised + - Stardust the Super Wizard (2016) + - Stargate + - Staritstan 8 + - Stark Space + - Starling Stories + - Starlog + - Starlog Magazine + - Starlog Photo Guidebook:Weapons + - Stars With Number Revised + - Stars With Number Revised rpg + - Stars Without Number + - Stars Without Number Revised Rpg + - Stars Without Number Rpg + - 'Stars Without Number: Revised Edition' + - Stars Without Numbers Revised + - Stars Without Numbers Rpg + - Starseige + - Starship + - Starship Construction + - Starship Warden rpg + - Starships + - Starships & Spacemen Second Edition + - Starsiege rpg + - 'Starvation Cheap: Planetary Warfare for Stars Without Number' + - Stat Spider + - Statless Adventures + - Status Update + - Steading of the Nergalites Adventure + - Steal This Game + - Steampunk + - Stele of the Silver Thane + - Stellagama Publishing + - Stephan Michael Sechi + - Stephen A McCavour + - Stephen Amber (Etienne d'Amberville) + - Stephen Bourne + - Stephen Chenault + - Stephen Chenault with Todd Gray + - Stephen King + - Stephen T. Bourne + - Steve Crampton + - Steve Jolly + - Steve Marsh + - Steve Miller + - Steve Miller Secrets of the Immortals + - Steve Perrin + - Steve Robertson + - Steve Sullivan + - Steve Winter + - Steven A. Cook’s Chaos Hordes + - Steven Cordovano + - Stewart Wieck + - Stone Age Gang + - Stone Age Occult + - Stone Age Sorcery + - Stories + - Storm Bringer + - Storm Bringer Rpg + - Stormbringer + - Stormbringer Companion One + - Stormbringer Rpg + - Stormbringer Rpg 5th edition + - Stormbringer fifth edition + - Stormbringer forth edition + - Stormbringer fourth edition + - Stormbringer rpg 4th Edition + - Stormbringer rpg adventures + - Stormbringer rpg commentary + - Stormbringer rpg fifth edition + - Stormbringer! Guide To Old Hrolmar + - Stormlord Publishing + - Stouthearted Games + - Strange Aeons + - Strange Stars + - Strange Stars Session Report + - 'Strange Worlds Issue #3' + - Stranger Things + - Stripe NPC + - Stromhaven + - Stuart Marshall + - Studio Denmark + - Studio St. Germain + - Sub Umbra + - 'Subsector Sourcebook 2: Franklin' + - 'Subsector Sourcebook 2: Franklin third edition' + - 'Subsector Sourcebook: Adroanzi' + - 'Subsector Sourcebook: Artemis' + - 'Subsector Sourcebook: Cascadia' + - 'Subsector Sourcebook: Durga' + - 'Subsector Sourcebook: Hub' + - Subzero Manta + - Succubi + - Sudden Dawn Adventure + - Suicide + - Summertime campaign update + - Summertime campaign update. + - Summon Gremlins of Nightmare + - Summoning Spells + - Summoning tools + - Suns of Gold + - Super Heroes + - Super Savage Systems + - Super Science Faction + - Super Science Groups + - Super Science Item + - Super Science Items + - Super Science Powers + - Super Science Stories + - Superhero Rpgs + - Supermax + - Superpowered! Rpg + - Supheroes Unlimited + - Supplements + - Survival Horror + - Svartkonst + - Sword & Car + - Sword & Caravan + - Sword & Caravan Rpg + - Sword & Planet + - Sword & Saucer OSR rpg play + - Sword & Sorcery Campaign Update + - Sword & Sorcery Campaigns + - Sword & Sorcery Influence + - Sword & Sorcery Monsters + - Sword & Sorcery campaign + - Sword & Sorcery tales + - Sword and Planet + - Sword and Sorcery + - Sword and Sorcery Movies + - Sword and Sorcery Rpgs + - Sword of Cepheus + - Sword of Cepheus rpg + - Sword of Chepheus rpg + - Sword of Kos campaign Setting + - Sword+1 blog + - Swords + - Swords & Wizardry + - Swords & Sorcery + - Swords & Sorcery Adventure Setting + - Swords & Sorcery artwork Influences + - Swords & Super-Science of Xuhlan + - Swords & Wizardry + - Swords & Wizardry Light Rpg + - Swords & Wizardry Light and Swords + - Swords & Wizardry Retroclones + - Swords & Wizardry Retroclones System + - Swords & Wizardry rpg + - Swords + Sorcery Fiction + - Swords + Sorcery Gaming + - Swords + Sorcery artwork + - Swords + Wizardry + - Swords and Sorcery + - Swords and Spells + - Swords and Stitchery + - Swords and Wizardry + - Swords of Cthulhu rpg Kickstarter + - Swords of Kos Setting + - Swords of the Petal Throne .03 beta rules + - Swordsmen + Sorcerers of Hyberborea rpg + - Synethtics + - Synthetics + - System Neutral + - System Reference Documents + - Sílvia Clemente + - T + - T.H.U.N.D.E.R. Agents + - T1 The Village of Hommlet + - T1-4 + - T1-4 The Temple of Elemental Evil + - T2000 V2 Twilight Nightmares + - TGK1 Assault on Theramour Keep + - THE HIDDEN TOMB OF SLAGOTH THE NECROMANCER + - THOT Police + - THe OSR Library + - TM1 The Ogress of Anubis + - TORG + - 'TSAO: Liberty Ship' + - |- + TSAO: These Stars Are Ours! + Setting + - "TSAO: These Stars Are Ours! Campaign \nSetting" + - 'TSAO: These Stars Are Ours! Setting' + - 'TSAO: Wreck in the Ring' + - TSR + - TSR Marvel Super Heroes + - TSR U.K. + - TSR U.K.3 The Gauntlet + - TSRPG (Travel-Sized RPG) + - TU1 Gamer's Handbook of the Marvel Universe Godzilla King Of The Monsters + - Table Top Rpgs + - Taco Bell + - Tainted Conception + - Tainted Lands + - Taken From Dunwich + - Tales From The Game Tavern + - Tales From The Laughing Dragon + - Tales Of The Scarecrow + - Tales of Gothic Earth + - Tales of The Grotesque And Dungeonesque + - Tales of the Dying Earth + - Tall Tails B/X Wild West + - Tall Witch + - Talon Sector + - Talon Sector Factions + - Tamir Levi + - Tangent! The Grey Man of Chapel Weir Adventure + - Tarantis + - Tarasconus + - Tariq Raheem + - Tartarus + - Taskboy Games + - Tau Ceti + - Tears of Belphegor + - Techno Wizard + - Technology + - Teenage Mutant Ninja Turtles & Other Strangeness rpg + - Tegal Manor + - Tegel Manor + - Tekumel + - Tele force weapons + - Telepathic Encounters + - Television Influences + - Television Shows + - Temple of Death + - Temple of the Frog + - Temporal Adventuring + - Temporal and Physical Relationships in D&D" + - Tenkar's Tavern + - Tenser + - Teratic Tome + - Terminal Spac + - Terminal Space + - Terra Arisen + - Terran Trade Authority Space Craft 2001-2100 AD Book + - Terror Tales - X! + - Terrors of Egypt + - Test of the Warlords + - Thasaidon + - Thaumiel Nerub + - The + - The Agents of W.R.E.T.C.H. Rpg Supplement + - The Elric of Melnibone RPG + - The Haunted Ruins of Koris Nesh + - The Hercules class Heavy Frieghter + - The Marvel Superheroes Roleplaying Game Unofficial Canon Project’s Marvelous + Locations series + - The OSR Library + - The OSRIC Rpg + - The Stars Without Number Equipment Database' + - The Wretched Époque rpg + - The Zozer Games + - The 'Battle Cry of the Reptiliads' + - The 'On the Plane of Magma' (A Fantasy Scenario for TSRPG) + - The 'Strange Stars OSR Rule Book' + - The 'UFOs' Source Book + - The 'Witches of Court Marshes' + - The (1937) + - The Abyss + - The Advanced Labyrinth Lord Adventure Record Sheets + - The Adventurer + - The Adventurer Series + - The Age of Pike + - The Agents of W.R.E.T.C.H. Rpg Supplement + - The Alcyone-class Interstellar Freighter + - The Ankheg + - The Arduin Grimoire + - The Arduin Grimoire series + - The Arena of Thyatis (DDA1) + - The Ares Section of Dragon Magazin + - The Ares Section of Dragon Magazine + - The Ascendant Rpg systemm + - The Astral Plane + - The Automatic Soldier Drone + - The Axe of the Dwarven Lords + - The BLUEHOLME™ Journeymanne Rules + - The Basic Field Guide + - The Beast From 20 + - The Beasts of Kraggoth Manor + - The Beserker PC class + - The Best Of Dragon Magazine Volume I + - The Best Of Dragon Magazine Volume II + - The Best Of Vol. 4 + - The Best Of Vol. 5 + - The Bestiary of Cryptofauna + - The Beyond + - The Black Gem + - The Black Hole + - The Black Hole 1979 + - The Black Hole 1979 movie + - The Black Lodge + - The Black Moss Hag of Lug + - The Black Ruins + - The Black Spot + - The Black Tower Adventure + - The Blackapple Brugh + - The Bloodsoaked Boudoir of Velkis the Vile + - The Book of Artifacts + - The Book of Ebon Bindings + - The Book of Imaginary Beings + - The Book of Low Level Lairs + - The Book of Wonder + - The Bridgetown-class Escort and Cape-class System Defense Boat + - The Buried Zikurat + - The Case of Charles Dexter Ward + - The Castles & Crusades Castle Keepers Guide 3rd Printing + - The Castles & Crusades rpg + - The Caverns Measureless To Man Blog + - The Caves of the Unknown + - The Centaur Race + - The Cepheus Deluxe Rpg + - The Cepheus Engine + - The Cephius Engine Rpg + - 'The Cha''alt Experience: Designing Worlds Like A F*cking Boss' + - The Cha'alt Rpg + - The Cities Without Number + - The Cities Without Number Kickstarter + - The City of Greyhawk + - The Clasic TSR Marvel Super Heroes Rpg + - The Clasic TSR Marvel Super Heroes Rpg + - The Cleansing War of Garik Blackhand (Gamma World Adventure GW3) + - "The Clement \n Sector" + - The Clement Sector + - The Clement Sector Campaign Setting + - The Clement Sector Core Setting Book + - The Cobra Crown + - The Codex Slavorum + - The Coeurl + - The Colour Out of Space + - The Compleat Adventurer + - The Compleat Alchemist + - The Compleat Spell Caster + - The Compleate Alchemist + - The Complete Book of Beholders + - The Complete Vivimancer + - The Coner Class Trader + - The Convent Of Saint Leona + - The Copeline-class Merchant Vessel + - The Cosmic Computer + - The Crate + - The Cult Of The Dreaming Lizard + - The Cult of Typhon + - The Curtiss- Wright Bee 2 Passenger Air Car + - The D&D Master Rules Set + - The Damned + - The Dark Albion Campaign Setting + - The Dark Tower + - The Dark Visitor Adventure + - The Darker rpg + - The Declaration Class Enterprise Star Ship + - The Demon Stones + - The Demonic Tome + - The Derro + - The Design Mechanism + - The Devil In The Crypt + - The Devil King Thasaidon 'ruler of the Seven Hells' + - The Devil's Tower + - The Divine Comedy + - The Doom That Came To Sarnath + - The Dragon + - 'The Dragon #19' + - 'The Dragon #73' + - The Dragon Magazine + - 'The Dragon Magazine issue #35' + - 'The Dragon issue #57' + - The Dragon issue 45 + - 'The Dragon magazine issue #51' + - The Dragon magazine#27 + - The Drawing of the Three + - The Dread Swamp of The Banshee + - The Dreamlands + - The Druidess + - The Dungeon Dozens + - The Dungeon Of Signs Blog + - The Dungeon of Crows 2 - Avatar of Yog Sutekhis + - The Dungeons & Dragons Cartoon + - The EMA-1 Modular Gun System (MGS) + - The Earth Sector + - The Ebony Lodges Of Mu + - The Eerie West - X! + - The Egg of Coot + - The El Circo De Los Monstruos y Memonios + - 'The Eldritch Inquirer #1 By Joseph D. Salvador' + - The Elf OSR Class + - The Eloi + - The Encyclopedia Subterranica Version 1.1 + - The Eternal Champion + - The Eternal Champions - The Swords of Heaven + - 'The Eternals: The Complete Saga Omnibus' + - The Ethereal plane + - The Expanded 20-Level Core Four Classes + - The Expanse + - The Expended Wretched Rpg + - The F'dech Fo's Tomb + - The FASERIPopedia Rpg + - The Face In The Abyss + - The Fantastic Journey television series + - The Fiend Folio + - The First Fantasy Campaign + - The Fisher Men of Ti Sung + - The Fishermen From Space + - The Flayed King + - The Flowers of Hell + - The Forbidden Book of Tangible Reality + - The Forces Beyond + - The Forgotten Fane of the Coiled Goddess + - The Forgotten Temple of Tharizdun + - The Found Folio + - The Free AD&D 1st Edition + - 'The Free Cepheus Journal – Issue #013' + - The Free City of Haven + - 'The Free Full Thrust: Project Continuum rules' + - The Free Gamma World Adventure GW5 'Rapture From the Deep' + - The Free Introductory Adventure Wretched Verses Issue 19 – Ten Thousand Miles + to Fiji + - The Front Rpg + - The Fungus Forest + - The Gar’Haden Family Crypt + - The Gate Movie 1987 film + - The Giant Behemoth + - The Gibbering Tower + - The Gilded Age + - The Glain Campaign + - The Gnome Racial Class + - The Gnomes of Levnec Adventure + - The Goat Lady + - The Gods of Mars + - The Golden Voyage Of Sinbad + - The Gong Farmer's Almanac + - The Great God Pan + - The Great Martian War + - The Green Jewel They Must Possess + - The Greys + - The HOSTILE Situation Report 006 + - The HOSTILE Situation Report 006 - Hunted + - The Hapless Henchmen Blog + - The Haunted Highlands + - The Haunted Palace + - The Hell House Beckons + - 'The Hercynian Grimoire #1' + - The Heroic Fantasy Handbook + - The Hidden In Shadows blog + - The Hidden Serpent + - The Hill Cantons + - The Hmelatharchuro + - The Holiday Scrapbook Murders Affair + - The Hollow World + - The Holy Grail + - The Holy Therns + - The Honest and Plain Village of Scio' + - The Hostile Rpg + - The Hostile Rpg Referee Screen + - The Hostile Setting + - The Hostile Technical Manual + - The Hostile Tool kit + - The House On The Borderlands + - The Howler + - The Hub Federation Ground Forces + - The Human Fly + - The Hydra Cooperative + - The Hyperborea Referee Guide + - The Hyperborea Rpg + - The Ice Kingdoms + - The Ice Kingdoms Source book + - The Ice Kingdoms Sourcebook + - The Ice Kingdoms Sourcebook. + - The Idea From Space + - The Ilulircaglut or Medusa's Bane + - The Incompleat Olden Land + - The Internet Archive + - The Island of Purple Haunted Putrescence + - The Islands of Purple-Haunted Putrescence + - The Islands of Purple-Haunted Putrescence' + - The Isle of Dread + - The Jewel Of Bas + - The Jungle Tomb of the Mummy Bride + - The K'nyanian Guardian Beasts + - The Kasaragod Class Liner + - The Keep + - The Kelosinel Or The Mirage Ones From Daggho + - The King In Yellow + - The Knox-class frigate + - The Kraken + - The Kroten Campaign + - The LAM + - 'The Labia: The Strange Case of the Cursed Vagina' + - The Lamentable Companion + - The Land Beyond the Magic Mirror + - The Last Citadel + - The Late Trapper's Lament + - The Legion of Gold + - The Lenore Isles + - The Lexicon Geographicum Arcanum vol 1 Species of the Hollow Earth + - The Lion & Dragon Rpg + - The Living Building + - The Lizardmen of Illzathatch + - The Lost Caverns of Tsojcanth + - The Lost City (B4) + - The Lost Grimoire + - The Lost Lady adventure + - The Lost Saucer + - The Lost Temple of Forgotten Evil + - The Lost Treasure of Atlantis + - The Lost World + - The Lovewitch + - The Lusus Naturae + - The Machine Men of Ardathia Faction + - The Mail Order Hobby Shop + - The Man From Atlantis TV Show + - The Manos Guerrero Indomito Comic Books + - The Manse On Murder Hill + - The Manual of the Planes + - The Marvel Super Hereoes Rpg + - The Marvel Super Hereos rpg Golden Age of Heroes book + - The Marvel Super Heroes Rpg + - The Master Mind Of Mars By Edgar Rice Burroughs + - The Memorial + - The Merry Pirates + - The Metal Monster + - The Metallic Tome + - 'The Michael Moorcock Library: Erekose' + - The Midderlands + - The Mighty Servant of Leuk-o + - The Mines Of Keridav + - The Mirage Hills Chronicles + - The Mist' film + - The Monastery of the Order of the Crimson Monks + - The Moon + - The Moon Pool + - The Most Dangerous Game 1932 + - The Multiverse + - The Murder Knights of Corvendark + - The Myrmidon + - The Mystery At Port Greely + - The Mythos Collection + - The Mythos Society Guide To New England + - The Necropolis of Nuromen + - The Netbook of Classes + - The New Marvel Phile - Deathlok + - The New Easy-to-Master Dungeons & Dragons Game (1991) + - The New England Bouys + - The New Hartford DM's Network + - The New Marvel - Phile Return of the Nova Corps 2 Annual 2019 + - The New Marvel Phile + - The New Marvel Phile 'The Shadowline Saga' + - 'The New Marvel Phile Issue #82 Curtis Horror' + - 'The New Marvel Phile issue #30 Serpents of the World Unite!' + - The Next Frontier + - The Night Lands + - The Nightmare Lands Box Set + - The OSR Amazon Warrior + - The OSR Class The Warlock + - The OSR Exorcist + - The OSR Warlock + - The Octagon of Chaos + - The Old Man + - The Old Solar System + - The Oort Cloud + - The Opus Magi Rpg + - The Ornamental Blade + - The Orpheum Lofts + - The Otherworld + - The Outer Presence + - The Outer Presence rpg + - The Outskirts + - The Palace of the Vampire Queens + - The Paladin's Lion + - The Pan American World Airways Space Division + - The Paranoia Pit + - The People of the Crater + - The Peryton + - The Piazza forums + - The Planes of Existence + - The Player's Companion + - The Pleiades Light Freighter + - The Pleiades-class Light Freighter + - The Possessors + - The Post Apocalyptic Solar System + - The Price of Evil + - The Primal Order + - The Primal Order rpg + - 'The Primal Order: Chess Boards: The Planes of Possibility' + - The Prodigy (Bard) + - The Psionic Hand Book + - The Pulps + - The Purple Spandex Wars + - The Quantum Dark Rpg + - 'The Quick Ship File: Catino Class Fast Armed Trader' + - 'The Quick Ship File: Starguard System Defence Boat' + - The Quixote Type ST Class Scout + - The R'tiqurllothi + - 'The RPG Pundit Files The Invisible College: 1930''s Campaign' + - 'The RPGPundit Presents #92: The Elven Tomb' + - 'The RPGPundit Presents: The Old School Companion 1' + - The Raging Barbarian + - The Raiders of 'Naa-zsh' + - The Rats In The Wall & Other Perils + - The Realms + - The Red Demon In The Vile Fen + - The Red God + - The Red Headed Slurposaur + - The Red Rom + - The Red Room + - The Remberance of Robert E.Howard + - The Resort of the Dead + - The Return of the Blue Baron + - The Rider Rpg + - The Rifter Issue#21 + - The Ritual Mundix + - The Rize and Fall of Zamzer + - The Rock Well Inn + - The Rod Of Vulthoom + - The Rogue's Gallery + - The Rook - Return of an American Legend + - The Roosevelt Intercepter Distroyer + - The Rose War + - The Royalty of Undeath + - The Rump family + - The Rumps + - The S'rulyan Vault + - The S'rulyan Vault II + - The SURVIVE THIS!! Vigilante City - Core Rules + - The Salem Horror + - The Savage Afterworld + - The Savage Sword of Conan + - The Scribes of Sparn + - The Scrying Dutchman + - The Sea Kings of the Purple Town + - The Sea-Wolf's Daughter. + - The Second American Civil War + - The Second Movement Campaign + - The Secret of Cykranosh + - The Seven Sisters of The Sins + - The Seven Sisters of The Sins (Wretched Version + - The Seventh Sister + - The Seventh Voyage of Sinbad + - The Sexual Holocaust Adventure + - The Shade + - The Shadow + - The Shadow Kingdom + - The Shadowdark rpg + - The Sheep Look up + - 'The Ship Files: RAX Type Protected Merchant' + - The Shoulder of Orion + - The Sinister Secret of Saltmarsh + - The Skirmisher Group + - The Skull as a Complete Gentleman Co + - The Sons of Kyuss + - The Sorcerer Scroll + - The Sound of Madness + - The Space Gods + - The Space Noble + - The Space Patrol' + - The Spawn of Pan + - The Special Golden Lhasa Sauce + - The Spinward Marches Campaign + - The Squid + - The Star Ship Warden Kickstarter + - The Starlight Caper + - The Stars Without Number Revised Rpg + - The Stars Without Number The Starship Database + - The Starship From Hell + - The Starship Warden rpg + - The Starship Warden rpg Kickstarter + - The Stellar Legion + - The Stone Alignments of Kor Nak + - The Stormbringer rpg + - The Strategic Review Magazine + - The Stygian Garden of Abelia Prem + - The Swarm + - The Sword & The Sorcerer + - The Sword of Kas + - The Tainted Lands + - The Tallman + - The Talon Sector + - The Talon Sector Treasure + - The Talon Sector Treasures + - The Talon Sector Campaign + - The Tamashī no tanzōrite Rites + - The Tavern from Hell By James Mishler + - The Tech Update 2350 + - The Temple of Elemental Evil + - The Temple of Set Accursed By Ra Adventure + - The Temple of The Ape God + - The Terra Arisen Campaign Setting + - The Thing + - The Time A Tree Saved Me + - The Time Machine + - The Tomb Of Gardag + - The Tomb Spawn + - The Tomb Spawn' + - The Tomorrow People + - The Towers Two + - The Transmaniacon + - The Tribe of Ogg and the Gift of Suss + - The Type R Subsidized Merchant Starship + - The Undead Crypt Ape + - The Underworld + - The Updated & Expanded Castles & Crusades Crusader's Companion + - The Vargouille + - The Vaults of Pandius + - The Vegepygmy + - The Veriddien Crystal Sphere + - The Victorious Rpg + - The Village With No Name + - The Village of Greenhaven + - The Villains of the Undercity + - 'The Violation of Truth: 2D6 Adventure in a World of Spies and Secrets Rpg' + - The Warhound & The World's Pain + - The Warriors of the Red Planet Rpg + - The Way + - The White People + - The White Ship + - The White Star Galaxy Edition Rpg + - The White Star Rpg + - The Whole the MSH RPG Unofficial Canon Project Crew + - 'The Wicked Encounters #1: Slakt the Slayer and the Seven Dread Dwarves' + - The Wilderlands of High Fantasy + - The Winter Between Realms + - The Winter Realms + - The Wizard's Inheritance + - The Wizard's Scroll issue#1 + - The World Book of Khaas + - 'The World Book of Khaas: Legendary Lands of Arduin' + - The World of Thudarr The Barbarian Sourcebook + - The Worm Ouroboros + - The Wrenchploitation rpg + - The Wretch Space Rpg 2nd Edition + - The Wretched Apocalypse Rpg + - The Wretched Bastards Rpg + - The Wretched Bastards Rpg Quick Start + - The Wretched Bastards Second Edition + - The Wretched Bestiary + - The Wretched Country Rpg + - The Wretched Epogue rpg + - The Wretched Flesh Rpg + - The Wretched New Flesh Post Cards From Avalidad rpg + - The Wretched New Flesh Post Cards From Aviladad rpg + - The Wretched New Flesh Post Cards From Aviladad rpg 2nd edition + - The Wretched Role Playing Game + - The Wretched Rpg + - The Wretched Space rpg + - The Wretched Époque Rpg + - The Wretchedverse rpg + - The Wretchedverse rpg System + - The Wretchploitation Rpg + - The Wretchploitation Rpg + - The Wretchploitation role-playing game + - The Yugoloth + - The Zenopus Archive + - The Zozer Games + - The alignment system + - The collectors store + - The free Bi-Ethnic Characters of Hyperborea Phamplet + - The hordes of Hell + - The machine of Lum The Mad + - The third edition of The Anderson and Felix Guide to Naval Architecture + - The Áylgibrá + - Theorems & Thaumaturgy Revised + - These Stars Are Ours + - Thief + - Thieves + - Thieves Guild + - Thieves Guild 2 + - Thieves Guild Rpg Setting & System + - Thieves Guilds + - Thieves World Roleplaying Game + - Thirty Year War + - This Island Earth + - This Magazine Is Haunted + - Thom Wilson + - Thomas Barnes + - Thomas Carnacki + - Thomas Denmark + - Thomas M. Reid + - Thorpe Class Merchant Vessel + - Thouls + - Thowi Games + - Three Hearts & Three Lions + - Three Hearts & Three Lions. Paul Anderson + - Three Hearts & Three Lions. Poul Anderson + - Three Shops article + - Three Toad Stool Games + - Threshold Magazine + - Threshold Magazine Issues 13 & 14 + - 'Threshold Magazine issue #3' + - Thrift Store Finds + - Thrilling Wonder Stories + - Through Sunken Lands and Other Adventures Rpg + - Through Ultan's Door Issue + - |- + Through Ultan's Door Issue + No comment + - Through Ultan's Door Issue 1 + - Through Ultan's Doors + - Thundarr The Barbarian + - Thunder Fighter Space Craft + - Thy Name is Evil + - Tiamat + - Tim Brannan + - Tim Dry + - Tim Harper + - Tim Kask + - Tim Krause + - Tim Price + - Tim Snider + - Tim Truman + - Timeline Ltd + - Timothy Brannan + - To The Vanishing Point + - Todd Hughes + - Tolkien + - Tom Corbett Space Cadet Comics + - Tom Cruise + - Tom Kirby + - Tom Knauss + - Tom Moldvay + - Tom Moldvay. + - Tom Sutton + - Tomb Robber + - Tomb of Doom + - Tomb of Hecate + - Tomb of Horrors + - Tomb of the Over Fiend + - Tombs + - Tombstone (Alpha Playtest) + - 'Tome Eight: Handlist of Horrors' + - 'Tome Seven: Goetics and Gnostics' + - Tome of the Unclean + - Tony Hicks + - Tony Vasinda + - Tope Hooper + - Total War rpg + - Tower of The Star Gazer + - Tower of the Mammoth + - Town of Baldemar + - Towns of The Outlands + - Toy + - Tracy Hickman + - Trade Empire-class Commercial Freighter + - Trading Posts + - Trailers + - Transmaniacon + - Tranzar's Redoubt + - Traps + - Traveller + - Traveller rpg + - Treasue + - Treasure + - Treasure. + - Treasures + - |- + Treasures + No comments: + - Treasures of the Ancients (GWA1) + - 'Tree of Life: Altrants in Clement Sector' + - Trey Causey + - Triffids + - Trinity of Awesome +1 + - Trinity of Awesome Returns + - Tristan Tanner + - Tristen Tanner + - Troll Lord Games + - Troll Lords + - Troll Lords Castle Keeper's Guide 3rd Printing + - Troll Lords Games + - Trolls + - Tumbleweed Tales Volume 1 + - Tunnels & Trolls + - Twenty Rules + - Twilight 2000 rpg + - Twilight Nightmares + - Twisted Christmas + - Tyrannical Conquerors + - 'Tyrannosapien: Creatures of the Apocalypse 11' + - Tyrannosaurus rex. Monster Ecology + - Tyrfing + - U.F.O. television show + - U.K.1 Beyond The Crystal Cave + - U1 Sinister Secret of Saltmarsh + - U1 The Sinister Secret of Salt Marsh + - U1 The Sinister Secret of Saltmarsh + - U2 Danger At Dunwater + - U2 Danger at Dunwater (1e) + - U2 The Final Enemy + - U3 The Final Enemy + - UK series of adventures + - UK1 Beyond The Crystal Cave By Brown + - UK1 The Sinister Secret of Saltmarsh + - UK2 Danger At Dunwater + - UK2 The Sentinel + - UK3 The Final Enemy + - UK3 The Gauntlet + - UK4 When a Star Falls + - UK5 Eye of the Serpent + - USSP + - 'UX02: Mind Games' + - 'Ugotuturch : Limbo Harpy Things' + - 'Ultan''s Door issue #3 Kickstarter' + - Ulysses 31 + - Unboxing + - Undead + - 'Under Western Skies: 2D6 Adventure on America''s Frontier' + - Under Xylarthen’s Tower + - Underworld + - Underworld Campaigns + - Underworld Kingdoms + - Underworld Lore Fanzine + - 'Underworld Lore Issue #4' + - Unholy Land + - Unique + - Universal Exploits + - Unmerciful Frontier + - 'Unmerciful Frontier: The CCA Sourcebook Third Edition' + - Upcoming Products + - Updates + - Upgrade + - Uranium Fever + - Urban Locations + - Usherwood Adventures + - Usherwood Publishing + - 'Using Quick Ship File: Roanoke and Raccoon Class Ships' + - VHS covers + - 'Vacant Ritual Assembly Issue #1' + - 'Vacant Ritual Assembly Issue #2' + - 'Vacant Ritual Assembly Issue #3' + - 'Vacant Ritual Assembly Issue #4' + - 'Vacant Ritual Assembly Issue #5' + - 'Vacant Ritual Assembly Issue #6' + - Valpyrs + - Vampire PC class + - Vampire Queens + - Vampires + - Vampires of the Olden Lands From James Mishler Games + - Vans + - Variant Classes + - Varlets & Vermin + - 'Vault of Cha''alt #1' + - Vault of The Drow + - Vault of the Weaver + - Vaults + - Vaults of Pandius + - Vaults of the Weaver + - Vechicles + - Vehicles + - Venger As'Nas Satanis + - Venger Satanis + - Venus + - Vergama's sphere + - Veterans + - Veterans of the Supernatural Wars Rpg + - Veteres Guardians + - Victorious Hunter & Hunter Catalogue + - Victorious Phantasmagoria + - Victorious Rpg + - Victorious Rule Britania + - 'Victorious: Victorian Role Playing Adventure in the age of Supermankind' + - Videos + - ViewScream Second Edition + - Vigilance Press + - Viking Treasures + - Vikings + - Villain NPC's + - Villains of The Undercity + - Vincent Price + - Viper Mark I Star Fighter + - Void Haven Outpost + - Voidjammers + - Volgan War + - Voltorians + - 'Volume #3 The Underworld & Wilderness Adventures' + - Volume 4 + - Volume 4" + - Vorheim + - Voyage of the Space Beagle + - Vultoom + - Vultursaur Swarm + - WG4 + - WG4 The Forgotten Temple of Tharizdun by Gary Gygax + - 'WG4: The Forgotten Temple of Tharizdun (1982)' + - WGR1 Greyhawk Ruins (2e) + - 'WL1: Tower Hill' + - WW1 + - WWI + - 'WWII: Operation WhiteBox' + - Wagner + - Walkers + - 'Walking the Way: A Mysticism Sourcebook [Swords & Wizardry]' + - Wally Wood + - Wand of Orcus + - War & Pieces + - War Games + - War Machines + - War of Darkness + - War of The Worlds + - War of the Immortals + - War of the Roses + - War of the World + - Warband + - Warduke + - Wargame Commentary + - Wargames + - Wargaming + - Warhammer Fantasy Rpg + - Warhammer Rpg + - Warlords of Atlantis + - Warlords of Atlantis rpg campaign setting + - Warlords of The Outer Worlds + - Warlords of The Outer Worlds Campaign + - Warlords of The Outer Worlds Campaign Setting + - Warp First Comics Series + - Warpland Rpg + - Warren comic books + - Warren publishing magazine + - Warrens of the Great Goblin Chief (Revised and Expanded Edition) + - Warriors + - Warriors Of The Red Planet Rpg System + - Warriors of the Lost Planet + - Warriors of the Red Planet + - Warriors of the Red Planet rpg + - Warriors of the Red Planet Rpg + - Warriors of the White Light Adventure + - Washington Sector + - Waste World rpg + - Waste land horrors! + - Wasted West Hell on Earth Rpg + - Wasteland + - Wasteland Armor + - Wasteland Domain Level Play + - Wasteland Finds + - Wasteland Oracles + - Wasteland Treasures + - Wasteland horrors! + - Watch on Line + - Wayne's Books + - Weaponary + - Weapons + - Weather + - Weird Adventures + - Weird Horror + - Weird Romance + - Weird Tales + - Weird War II + - Weird Westerns + - Weird finds + - Welcome To Rock Junction + - Well of Urd Press + - Welsh Mythology + - Werebears + - Wererats + - Werewolves + - Werewolves and Wretched Hunters + - West End Star Wars + - West World Television show + - Westerns + - Weta-Rex + - Whamagedon + - What's Nuked Scooby Doomsday + - When A Star Falls + - When The Sleeper Wakes + - Where The Fallen Jarls Sleep + - 'White Box : Fantastic Medieval Adventure Game' + - White Box Arcana + - White Box Gothic + - White Box Omnibus [Swords & Wizardry] + - 'White Box: Fantastic Medieval Adventure Game' + - 'White Box: Unearthed Trove' + - White Dwarf + - White Dwarf 095 + - White Dwarf 097 + - White Dwarf issue# 30 + - White Dwarf magazine + - White Plume Mountain + - White Star + - White Star Rpg Retroclone System + - White Star Galaxy Edition + - White Star Rpg Retroclone System + - White Star rpg + - White Wolf + - White Wolf Temples + - Wil Huygen + - Wild Stars Comic book + - Wild West Bounty Generator + - Wilderlands of High Fantasy + - Wilderness + - Wilderness Adventuring + - Will O The Wisps + - Will Travel + - Will Travel Campaign Setting + - William Hooker Gillette + - William Hope Hodgeson + - William McAusland + - William Nolan + - William Thresher + - William Tracy + - Willis E. McNelly + - Willow film (1988) + - Wind Lothamer + - Winds of the Ice Forest From Random Order Creations Adapted To Your Sword and + Sorcery Campaigns As Well As The Astonishing Swordsmen And Sorcerers of Hyperborea + Rpg System + - Winter Monster Ecology + - Wisdom From The Wastelands + - 'Wisdom From The Wastelands Issue # 21' + - 'Wisdom From The Wastelands Issue # 22' + - Wisdom From The Wastelands Issue 51 + - Witch Hunter. + - Witches + - Wizardry Continual Light + - Wizards + - Wizards Mutants Laser Pistols Fanzine Issue 7 + - Wizards movie + - Wizards of the Coast + - Wolf Attack + - Wolves From Strange Aeons + - Womb Cult From Grimm Aramil Publishing + - Wonder & Wickedness + - Wonder Stories Quarterly + - Woodland + - World Building + - World Design + - World Of The Lost + - World War One + - World War Two + - World at Weird War II Rpg + - World of Bastards + - World of Jordoba Player Guide + - World of Ortix blog + - World of Weird War II + - Worlds + - Worlds Unknown + - Worlds Without End rpg + - Worlds Without Number + - Worlds Without Number rpg + - Worm Skin magazine + - Worthy Causes + - Wraith of the Immortals + - Wraiths + - Wreckside District + - Wretched Apocalypse - Second Edition + - Wretched Armageddon Vol.1 War + - Wretched Bastards + - Wretched Bastards Rpg + - Wretched Conspiracies campaign Setting + - Wretched Country second edition Rpg + - Wretched Darkness + - Wretched Darkness 1st edition + - Wretched Darkness Rpg + - |- + Wretched Darkness Rpg + No comments: + - Wretched Darkness Rpg Revised Edition + - Wretched Darkness Rpg second edition + - Wretched Epoque + - Wretched Flesh + - Wretched Game Master's Screen (Landscape Inserts) + - Wretched Interbellum campaign setting + - 'Wretched Minions Issue 7: Wretched Minions from the Beyond' + - Wretched New Flesh - Postcards from Avalidad Rpg + - Wretched New Flesh - Rpg + - Wretched New Flesh Post Cards From Avalidad Rpg + - Wretched New Flesh Second Edition + - Wretched OSR + - Wretched Role Playing Game + - Wretched Rpg + - Wretched Space + - Wretched Space 1.4 rpg + - Wretched Space Revised + - Wretched Space Rpg + - 'Wretched Verses #1' + - Wretched Verses Issue 11 – Vampires + - 'Wretched Verses Issue 18 – Wretched Minions: Cryptids' + - 'Wretched Verses Issue 23: Gangs of Avalidad' + - Wretched Verses issue#14 Undead + - Wretched Vigilantes + - Wretched Vigilantes Campaign Settting + - Wretched Vigilantes rpg + - Wretched World + - Wretched rpg Games + - Wretched Époque + - Wretched Époque Quickstart Rpg + - Wretched Époque Rpg + - Wretchedverse + - Wretchedverse Rpg + - Wretchedverse Rpg Setting + - Wretchedverse rpg Games + - 'Wretchedverses issue #5' + - Wretchploitation Rpg + - Wrethedverse rpg + - X - plorers Box Set + - X plorers + - X plorers Edit | V + - X-Plorers + - X1 Isle of Dread + - X1 Isle of Dread. + - X10 + - X12 Skarda's Mirror + - X13 Crown of Ancient Glory + - 'X1: The Sinister Stone of Sakkara' + - X2 Castle Amber + - X3 + - 'X3: "Curse of Xanathon' + - X4 + - X4 Master of the Desert Nomads + - 'X4: "Master of the Desert Nomads"' + - X5 + - X5 The Temple of Death + - 'X5: "Temple of Death" (1983)' + - X6 + - X6 Quagmire + - X6 Quagmire by Merle M. Rasmussen + - X7 The War Rafts of Kron + - |- + X7 The War Rafts of Kron + No comments: + - X9 The Savage Coast + - XC Catacombs of Death + - 'XL1: "Quest for the Heartstone' + - XQ1 The Castle that Fell from the Sky + - Xenomorphs + - Xiccarph + - Xill + - Xiticix + - Xmen + - Xoth.net publishing + - Xplorers + - Xulhlan + - YOG·SOTHOTH (the key and guardian of the gate) + - YS1 The Outpost of the Outer Ones + - YS1 The Outpost of the Outer Ones by Jeremy Reaban + - 'Yhe Violation of Truth: 2D6 Adventure in a World of Spies and Secrets rpg' + - Yog Sothoth + - You're On Your Own No. 1 + - Young Kingdoms + - Your Old School Campaigns + - 'Yragael: Urm' + - 'ZA1: The Temple Of Chaos' + - 'ZA5: Flayers of the Mind.Free Material' + - 'ZA6: Journey to the Astral Plane' + - 'ZA7: Temple of the Ice Gods' + - ZZ7729 The A.I. Entity + - Zaibatsu rp + - Zaibatsu rpg + - Zaibatsu rpg adventure + - Zak S + - Zak Smith + - Zarak + - Zeb Cook + - Zebulara + - Zenobia rpg setting + - Zenopus Archives + - Zero Session Workshop + - Zombies + - Zone Troopers + - Zor Draxtau + - Zothique + - Zothique D20 + - Zozer Gam + - Zozer Games + - Zozer Games Colonial Freighter + - Zozer Games Hostile campaign Setting + - Zyan + - Zzarchov Kowolski + - ']The RPG Pundit' + - and Homebrew Blog + - and Ships of War + - animation + - arcosa + - art Del Teigeler + - artifacts + - books + - by Bruce Nesmith + - by Gary Gygax + - cartoon + - caskets + - classic Traveller rpg + - comic anthologies + - cult of Druaga + - d-Infinity magazine + - d12 + - demon blades + - dinosaurs + - disease + - etc + - etween The Cracks Of Reality Campaign Set Up + - fanzines + - fanzines. + - funk + - gamezine projects + - iZombie television show + - imonsters + - inspiration + - item Random tables + - items + - kosmos68com.wordpress.com + - lair encounter + - linnorm + - 'ls: Astonishing Swordsmen + Sorcerers of Hyberborea rpg' + - monster + - monsters + - nega Dungeons + - news + - old school 2d6 Science Fiction based rpg's + - or Cosmic Grass... No One Warps For Free + - organizations + - p + - public domain comic books + - random table + - random table Items + - random table.Items + - retro-clones + - rimm Aramil Publishing + - rpg + - rpg book + - 's: Adventures' + - sci fi movies + - science fantasy + - science fiction + - science fiction films + - setting material + - space carriers + - supermodule S1-4 Realms of Horror. + - sword & sorcery + - 'sword & sorcery No comments:' + - system + - techno-sorcery + - television + - 'the "Monster & Treasure Assortment Sets One-Three: Levels One-Nine"' + - the Atlas Orbis Factus est ignis + - the Labyrinth Lord rpg + - the Stairway of V'dreen. + - 'the "Monster & Treasure Assortment Sets One-Three: Levels One-Nine"' + - the 'Arduin Grimoire Trilogy' book + - the 'Vulth' russ' + - the Abbernoth Campaign Setting + - the Belle Époque + - the Belle Époque. The Red Room + - the Cascadia Colonization Authority + - the Castles & Crusades Codex Celtarum 2nd Edition + - the Castles & Crusades Players Guide to Aihrde. + - the Cepheus Engine Rpg + - the Clement Sector rpg + - the D&D Rules Cylopedia + - the Fermi paradox + - the Ghorli + - 'the Glantri: Kingdom of Magic (1995) box set' + - the Grand Duchy of Karameikos + - the Hub Federation Navy + - the Incorporeal Undead + - the Labyrinth Lord Basic + - the Lamentations of the Flame Princess rpg + - 'the Marvel Super Heroes RPG: The Unofficial Canon Project' + - the Original Traveller rpg + - the Original Traveller rpg + - the Orion Mutuality + - the Scooby Apocalypse + - 'the Slavers of A0-A4: Against the Slave Lords' + - the Stairway of V'dreen. + - the Teratic Tome + - the Unofficial Marvel Superheroes Cannon Project's Marvelous Myths & Monsters + volume 6 The Otherworld By Andrew Goldstein + - the Wretched Rpg + - the d'Ambreville family + - the first issue of Ulfire Tablets + - the original Traveller rpg box set + - the sea spirit" + - western + - “Ynys Bach” + relme: + https://swordsandstitchery.blogspot.com/: true + last_post_title: Marvel Super Heroes Rpg Thoughts on Marvel Comics Crystar The Crystal + Warrior Saga + last_post_description: So last year I covered  & reviewed The Marvel Super Heroes + Rpg The Sourebook of Crystar Crystal Warrior .The warriors of Crystallium have + certainly gotten airplay on our table top recently. And + last_post_date: "2024-07-08T12:38:28-07:00" + last_post_link: https://swordsandstitchery.blogspot.com/2024/07/marvel-super-heroes-rpg-thoughts-on.html + last_post_categories: + - '''The unofficial canon project Marvel Super Heroes Facebook Group' + - Classic Marvel Super Heroes Rpg + - Saga of Crystar 1983 Comic Book + last_post_language: "" + last_post_guid: b2b75803ce6730f3b2669ab708b09591 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 26 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-14367981e941107668db995b28ca3fab.md b/content/discover/feed-14367981e941107668db995b28ca3fab.md index 99f6bf87a..a9487585e 100644 --- a/content/discover/feed-14367981e941107668db995b28ca3fab.md +++ b/content/discover/feed-14367981e941107668db995b28ca3fab.md @@ -13,31 +13,30 @@ params: recommender: [] categories: [] relme: - https://instagram.com/remkusdevries: false - https://profiles.wordpress.org/DeFries: false - https://remkusdevries.com/about/: false - https://social.devries.frl/@remkus: false - https://twitter.com/remkusdevries: false - https://www.linkedin.com/in/jrdevries: false - https://www.youtube.com/@remkusdevries: false - last_post_title: 'From Camper to Code: Alex Standiford and Siren Affiliates' - last_post_description: Join us in this episode of ‘Within WordPress’ as we sit down - with Alex Standiford to explore his innovative Siren Affiliates plugin. Alex shares - his fascinating journey through the WordPress - last_post_date: "2024-05-31T12:33:05Z" - last_post_link: https://remkusdevries.com/podcast/from-camper-to-code-alex-standiford-and-siren-affiliates/ + https://remkusdevries.com/within-wordpress/all/: true + last_post_title: Exploring Headless CMS and Static Sites with Maciek Palmowski + last_post_description: In this episode, we sit down with Maciek Palmowski, Security + Community Manager at PatchStack, as we explore his journey from development to + developer relations and his passion for various CMS + last_post_date: "2024-06-28T12:34:32Z" + last_post_link: https://remkusdevries.com/podcast/exploring-headless-cms-and-static-sites-with-maciek-palmowski/ last_post_categories: [] - last_post_guid: d27756602b69a8bc4e3fbe6c174d24d6 + last_post_language: "" + last_post_guid: cba6e89b2def8b72c545440cfada48fe score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 9 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-144414da75bfb69b45acb4dadaa633c6.md b/content/discover/feed-144414da75bfb69b45acb4dadaa633c6.md deleted file mode 100644 index ef17af401..000000000 --- a/content/discover/feed-144414da75bfb69b45acb4dadaa633c6.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: fluiddyn activity -date: "2024-06-04T14:22:21Z" -description: "" -params: - feedlink: https://foss.heptapod.net/fluiddyn.atom - feedtype: atom - feedid: 144414da75bfb69b45acb4dadaa633c6 - websites: - https://foss.heptapod.net/fluiddyn/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Pierre Augier deleted project branch topic/default/pixi-image-add-ssh - at fluiddyn / fluiddyn - last_post_description: |- - Pierre Augier - (03f5b5af) - - at - 04 Jun 14:22 - last_post_date: "2024-06-04T14:22:21Z" - last_post_link: https://foss.heptapod.net/fluiddyn/fluiddyn/-/commits/topic/default/pixi-image-add-ssh - last_post_categories: [] - last_post_guid: 28ea9ece4e1ba8b0a1afd3248d5b0d61 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 4 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-145fbdb0ca9f1f05bf7ebd382875398d.md b/content/discover/feed-145fbdb0ca9f1f05bf7ebd382875398d.md index 7ed9bbaee..449b32a40 100644 --- a/content/discover/feed-145fbdb0ca9f1f05bf7ebd382875398d.md +++ b/content/discover/feed-145fbdb0ca9f1f05bf7ebd382875398d.md @@ -8,18 +8,13 @@ params: feedid: 145fbdb0ca9f1f05bf7ebd382875398d websites: https://blog.flipper.net/: true - https://blog.flipperzero.one/: false blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: - Flipper Zero relme: {} @@ -31,17 +26,22 @@ params: last_post_link: https://blog.flipper.net/response-to-canadian-government/ last_post_categories: - Flipper Zero + last_post_language: "" last_post_guid: 2befed836c2c56e0ddc4ad613bf357a7 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 14 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-1482fb3dd4c879afc1429ce92b4c4908.md b/content/discover/feed-1482fb3dd4c879afc1429ce92b4c4908.md index 9fca03f89..e49b9a730 100644 --- a/content/discover/feed-1482fb3dd4c879afc1429ce92b4c4908.md +++ b/content/discover/feed-1482fb3dd4c879afc1429ce92b4c4908.md @@ -8,36 +8,46 @@ params: feedid: 1482fb3dd4c879afc1429ce92b4c4908 websites: https://www.blogpocket.com/: true - https://www.blogpocket.com/podcast: false + https://www.blogpocket.com/podcast/: false blogrolls: [] recommended: [] recommender: [] categories: - - Inteligencia artificial - - Links in the rain + - Internet + - Mastodon + - Newsletter + - WP al día relme: https://federate.blogpocket.com/@acambronero: true - last_post_title: 'Links in the rain #18: Sonidos con la IA de IIElevenLabs; De ChatGPT - a Gemini; George Lucas y la IA; y muchas más noticias de IA' + https://twittodon.com/share.php?m=acambronero%40federate.blogpocket.com&t=blogpocket: true + https://www.blogpocket.com/: true + last_post_title: El Fediverso como plan B [WP AL DÍA nº 360] last_post_description: |- - Links in the rain #18: Sonidos con la IA de IIElevenLabs; De ChatGPT a Gemini; George Lucas y la IA; y muchas más noticias de IA - Descubre cómo la Inteligencia Artificial está siendo implementada - last_post_date: "2024-06-04T06:00:00Z" - last_post_link: https://www.blogpocket.com/2024/06/04/links-in-the-rain-18-sonidos-con-la-ia-de-iielevenlabs-de-chatgpt-a-gemini-george-lucas-y-la-ia-y-muchas-mas-noticias-de-ia/ + El Fediverso como plan B [WP AL DÍA nº 360] + Los que hicimos la revolución de los blogs y llevamos más de 20 años en Internet, nos hemos cansado de que empresas poderosas controlen nuestras vidas + last_post_date: "2024-07-08T06:00:00Z" + last_post_link: https://www.blogpocket.com/2024/07/08/el-fediverso-como-plan-b-wp-al-dia-no-360/ last_post_categories: - - Inteligencia artificial - - Links in the rain - last_post_guid: 7cd3e1401b0cfe290a8b1a29388104cd + - Internet + - Mastodon + - Newsletter + - WP al día + last_post_language: "" + last_post_guid: 1855d4eee686118614374eb8fead779a score_criteria: cats: 0 description: 3 - postcats: 2 + feedlangs: 1 + postcats: 3 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 12 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: es --- diff --git a/content/discover/feed-14aa65d66e736c81a5de8dc2cc658b35.md b/content/discover/feed-14aa65d66e736c81a5de8dc2cc658b35.md new file mode 100644 index 000000000..30355b888 --- /dev/null +++ b/content/discover/feed-14aa65d66e736c81a5de8dc2cc658b35.md @@ -0,0 +1,47 @@ +--- +title: Playing with Android +date: "2024-02-08T02:48:24Z" +description: "" +params: + feedlink: https://spookyandroid.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 14aa65d66e736c81a5de8dc2cc658b35 + websites: + https://spookyandroid.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - market release wakeme + - references + - release + - release market + relme: + https://spookyandroid.blogspot.com/: true + https://t7gre.blogspot.com/: true + https://www.blogger.com/profile/14337030496107875313: true + last_post_title: Experiences with the Android Market + last_post_description: "" + last_post_date: "2011-08-09T21:30:26+01:00" + last_post_link: https://spookyandroid.blogspot.com/2011/08/experiences-with-android-market.html + last_post_categories: + - market release wakeme + last_post_language: "" + last_post_guid: c432ec131476ae01f7ba60c2da661dfa + score_criteria: + cats: 4 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-14b10c8ab889201cda4117c498f24138.md b/content/discover/feed-14b10c8ab889201cda4117c498f24138.md new file mode 100644 index 000000000..4666cb627 --- /dev/null +++ b/content/discover/feed-14b10c8ab889201cda4117c498f24138.md @@ -0,0 +1,46 @@ +--- +title: William Denton +date: "1970-01-01T00:00:00Z" +description: Miskatonic University Press +params: + feedlink: https://www.miskatonic.org/feed/all.xml + feedtype: rss + feedid: 14b10c8ab889201cda4117c498f24138 + websites: + https://www.miskatonic.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://cosocial.ca/@wdenton: true + https://github.com/wdenton: true + https://listeningtoart.org/: true + https://staplr.org/: true + https://www.miskatonic.org/: true + last_post_title: The Fall of the Sparrow + last_post_description: |- + From The Fall of the Sparrow (1955) by Nigel Balchin. This scene happens in 1935 in England; the narrator is talking to people going to protest the British Union of Fascists. + Leah sat up and said, + last_post_date: "2024-06-30T12:27:42-04:00" + last_post_link: https://www.miskatonic.org/2024/06/30/sparrow/ + last_post_categories: [] + last_post_language: "" + last_post_guid: a81917792edbe7430f86944495443223 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-14b2dfda84ebb6c99c3a218a686321a8.md b/content/discover/feed-14b2dfda84ebb6c99c3a218a686321a8.md new file mode 100644 index 000000000..181ac9b86 --- /dev/null +++ b/content/discover/feed-14b2dfda84ebb6c99c3a218a686321a8.md @@ -0,0 +1,45 @@ +--- +title: Inside SWT +date: "2024-04-09T06:47:05-05:00" +description: |- + I am the father of The Standard Widget Toolkit (SWT), a portable, native widget toolkit for Java. I have a bunch of other interests, but you don't care. + + All opinions expressed here are my own unless +params: + feedlink: https://inside-swt.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 14b2dfda84ebb6c99c3a218a686321a8 + websites: + https://inside-swt.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://eclipse-orion.blogspot.com/: true + https://inside-swt.blogspot.com/: true + https://www.blogger.com/profile/13909619505765258618: true + last_post_title: Back to IBM! + last_post_description: "" + last_post_date: "2015-02-03T18:59:29-05:00" + last_post_link: https://inside-swt.blogspot.com/2015/02/back-to-ibm.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 179a1d9d12fe260bac68be0f1fd2e3b1 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-14bc30be6b92063e16d58f5577c74f45.md b/content/discover/feed-14bc30be6b92063e16d58f5577c74f45.md deleted file mode 100644 index ae2bfe814..000000000 --- a/content/discover/feed-14bc30be6b92063e16d58f5577c74f45.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Fleio Blog -date: "1970-01-01T00:00:00Z" -description: OpenStack billing system and control panel -params: - feedlink: https://fleio.com/blog/feed/ - feedtype: rss - feedid: 14bc30be6b92063e16d58f5577c74f45 - websites: - https://fleio.com/blog/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - OpenStack - relme: {} - last_post_title: Fleio 2024.06.1 stable now available - last_post_description: We have just released Fleio version 2024.06.1, which is recommended - for your production environment. The new features announced in 2024.06.1 stable - are support for OpenStack Bobcat and Caracal, - last_post_date: "2024-06-19T10:41:24Z" - last_post_link: https://fleio.com/blog/2024/06/19/fleio-2024-06-1-stable-now-available/ - last_post_categories: - - OpenStack - last_post_guid: 0e0d3eb068b015b80d909779fb124b2a - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-14d3531091ee5366c8a9e32891051189.md b/content/discover/feed-14d3531091ee5366c8a9e32891051189.md deleted file mode 100644 index 4a9849aa6..000000000 --- a/content/discover/feed-14d3531091ee5366c8a9e32891051189.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: OpenStack – Alessio Ababilov's Blog -date: "1970-01-01T00:00:00Z" -description: A blog about IT, clouds, and my favourite Linux -params: - feedlink: https://aababilov.wordpress.com/category/openstack-2/feed/ - feedtype: rss - feedid: 14d3531091ee5366c8a9e32891051189 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - OpenStack - - openstack - relme: {} - last_post_title: 'OpenStack Summit April 2013: a First Experience' - last_post_description: In April 2013, I have visited OpenStack summit in Portland, - Oregon. It was my first OpenStack summit and my first trip to USA, so it was more - that just impressive. […] - last_post_date: "2013-05-02T20:24:56Z" - last_post_link: https://aababilov.wordpress.com/2013/05/02/openstack-summit-april-2013-a-first-experience/ - last_post_categories: - - OpenStack - - openstack - last_post_guid: 012dc70a94abd239236f2ba9ad0b0270 - score_criteria: - cats: 0 - description: 3 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-14d4318bd89ac50426f555a8c889c403.md b/content/discover/feed-14d4318bd89ac50426f555a8c889c403.md new file mode 100644 index 000000000..916227271 --- /dev/null +++ b/content/discover/feed-14d4318bd89ac50426f555a8c889c403.md @@ -0,0 +1,137 @@ +--- +title: Ddos is working Database +date: "2024-02-07T00:23:20-08:00" +description: Don't be fool please visit all site. +params: + feedlink: https://theinspiredquilter.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 14d4318bd89ac50426f555a8c889c403 + websites: + https://theinspiredquilter.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Ddos is on it Best + last_post_description: "" + last_post_date: "2021-04-08T12:06:26-07:00" + last_post_link: https://theinspiredquilter.blogspot.com/2021/04/ddos-is-on-it-best.html + last_post_categories: [] + last_post_language: "" + last_post_guid: fefbe7faa0e948fd162f3b24c88adc24 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-14f666cfa223e304203c3f485f790f10.md b/content/discover/feed-14f666cfa223e304203c3f485f790f10.md index cf466921a..39faa0698 100644 --- a/content/discover/feed-14f666cfa223e304203c3f485f790f10.md +++ b/content/discover/feed-14f666cfa223e304203c3f485f790f10.md @@ -14,26 +14,31 @@ params: - https://jeroensangers.com/feed.xml - https://jeroensangers.com/podcast.xml categories: - - Culture + - Workflow relme: {} - last_post_title: The Art of Unhurried Spaciousness Through Yutori - last_post_description: A Japanese philosophy that'll help you feel less rushed in - a productivity-crazed world. - last_post_date: "2024-05-16T06:02:29Z" - last_post_link: https://hulry.com/yutori/ + last_post_title: How I Built a Minimal Jira Alternative in Notion + last_post_description: Jira is too cluttered. Linear is expensive. Here's how Notion + filled the gap for me. + last_post_date: "2024-06-12T13:42:24Z" + last_post_link: https://hulry.com/notion-project-tracker/ last_post_categories: - - Culture - last_post_guid: 1a8932cf98e9bf4463234fed31831ffd + - Workflow + last_post_language: "" + last_post_guid: d6e4dcf59cb2d6aa1f69951d5b6ec5d6 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 14 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-14fd8e3494bf0a4487887daec61095fe.md b/content/discover/feed-14fd8e3494bf0a4487887daec61095fe.md new file mode 100644 index 000000000..f57eacbf2 --- /dev/null +++ b/content/discover/feed-14fd8e3494bf0a4487887daec61095fe.md @@ -0,0 +1,93 @@ +--- +title: POKE 1,52 +date: "2024-03-05T23:06:44-08:00" +description: "" +params: + feedlink: https://poke152.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 14fd8e3494bf0a4487887daec61095fe + websites: + https://poke152.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 1TB + - 31mb + - 32mb + - 33mb + - createuser + - crypto + - daoc + - debian + - dell + - electronics + - emulator + - encryption + - entropy + - f10 + - f12 + - fedora + - flood + - gstreamer + - gw2 + - hang + - homeplug + - host protected area + - hpa + - initrd + - kerberos + - nash + - opengl + - openldap + - openwrt + - postgres + - preupgrade + - public folders + - pulseaudio + - random + - rce + - rsyslogd + - sasl + - security + - shrink + - sound + - subtitles + - systray + - totem + - ubuntu + - virtualgl + - vlan + - vnc + - wine + - wireless + - zcs + - zimbra + relme: + https://poke152.blogspot.com/: true + https://www.blogger.com/profile/00138914995463391512: true + last_post_title: It's no IDA, yet? + last_post_description: "" + last_post_date: "2013-08-13T10:00:57-07:00" + last_post_link: https://poke152.blogspot.com/2013/08/its-no-ida-yet.html + last_post_categories: + - rce + last_post_language: "" + last_post_guid: c95095352f08d0cbe361549a0b250901 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-15138b881221ea9d5a8e4caba42e909a.md b/content/discover/feed-15138b881221ea9d5a8e4caba42e909a.md new file mode 100644 index 000000000..3722bbb0e --- /dev/null +++ b/content/discover/feed-15138b881221ea9d5a8e4caba42e909a.md @@ -0,0 +1,303 @@ +--- +title: futureArch, or the future of archives... +date: "2024-03-14T07:44:24Z" +description: A place for thoughts on hybrid archives and manuscripts at the Bodleian + Library. +params: + feedlink: https://futurearchives.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 15138b881221ea9d5a8e4caba42e909a + websites: + https://futurearchives.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 4n6umd + - ATA + - Amatino Manucci + - BBC + - BEAM architecture + - CompuServe + - D-Link + - DAMS + - DCMA + - DGE-530T + - DODA12 + - DV + - DVCAM + - DVCPRO + - DVD + - DayofDigArc + - Desktop + - DoDA 2011 + - Eudora + - FRED + - FireWire + - Future of the Past of the Web + - Gigabit + - HDV + - IPs + - JISC + - Microsoft Works + - MiniDV + - PCI + - SAS + - SATA + - SCSI + - SPRUCE + - Sharp font writer + - TikaFileIdentifier + - USB + - abandonware + - access + - accession + - accessioning + - acquisition + - acquisitions + - adapter + - advisory board + - agents + - agrippa + - analysis + - apple + - appraisal + - arch enemy + - archival dates + - archival interfaces + - archiving habits + - audio + - authority control + - autogenerated metadata + - autumn + - backup + - bit-level preservation + - blu-ray + - buzz + - cais + - case studies + - cd + - cerp + - chat + - collection analysis + - collectionBuilder + - community + - conference + - content model + - copyright review + - corruption + - creator curation + - crowdsourcing + - cunning plan + - damage + - data capture + - data extraction + - data recovery + - dead media + - dealers + - development + - digital archaeology + - digital audio + - digital forensics + - digital legacy + - digital preservation + - digital video + - digitalArchivesDay + - digitallivesconference + - disk imaging + - disks + - documents + - donors + - dpc + - drupal + - dundee + - eSATA + - eac + - ead + - electronic records + - email + - emcap + - emulation + - emulators + - estate planning + - etdf + - facebook + - faceted browser + - file carving + - file format recognition + - file format specifications + - file signatures + - filemerlin + - film + - finding aids + - fits + - flash media + - floppy disks + - folk lore + - forensics + - formats + - friday post + - funny + - futureArch + - gaip + - geocities + - gmail + - google + - googledocs + - graduate traineeship + - guidance + - hard drive + - highslide + - holidays + - html5 + - http://www.blogger.com/img/blank.gif + - hybrid archives + - hybridity + - hypertext exhibitions writers + - iPres2008 + - images + - indexing + - ingest + - interfaces + - interoperability + - intrallect + - ipaper + - ipr + - island of unscalable complexity + - iso8601 + - java + - javascript + - jif08 + - job + - jodconverter + - kryoflux + - lightboxes + - linked data + - linux + - literary + - mac + - manuscripts + - markup + - mashup + - may 2010 + - mbox + - media + - media players + - media recoginition + - metadata + - microsoft + - migration tools + - mobile + - moon landings + - multimedia content + - multitouch + - music blogs + - n-grams + - namespaces + - never say never + - normalisation + - object characteristics + - obsolescence + - odd + - oed + - office documents + - old + - online data stores + - open source + - open source development + - open source software + - optical media + - osswatch + - pages + - par2 + - parchive + - planets + - planets testbed + - plato + - preservation planning + - preservation policy + - preservation tools + - projects + - pst + - publication pathway + - quick disk + - rdf + - repositories + - researchers + - resource description framework + - saa2009 + - scat + - scholars + - scooters + - scoping + - scribd + - searchability + - semantic + - seminars + - sensitivity review + - sers seminar + - significant properties + - slideshare + - smart phones + - snow + - software + - solr + - sound + - spectrum + - steganography + - storage + - tag clouds + - tags + - tape + - tape drive + - technical metadata + - transcription + - transfer bagit verify + - transfers + - travan + - twapperkeeper + - tweets + - twitter + - use cases + - users + - validation + - value + - video + - vintage computers + - weavers + - webarchives + - webarchiving + - whiteboard + - word cloud + - workshop + - xena + - xml + - xmp + - zip disks + relme: + https://futurearchives.blogspot.com/: true + https://www.blogger.com/profile/04962583988591861531: true + last_post_title: This blog is no longer being updated + last_post_description: "" + last_post_date: "2016-09-05T17:34:43+01:00" + last_post_link: https://futurearchives.blogspot.com/2016/09/this-blog-is-no-longer-beinf-updates.html + last_post_categories: [] + last_post_language: "" + last_post_guid: f986cfa891f8908777e38691f37a069e + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-153da489f9a41b8bb6d1fa4c2a8f8d28.md b/content/discover/feed-153da489f9a41b8bb6d1fa4c2a8f8d28.md index 3f6d09a18..056e32db6 100644 --- a/content/discover/feed-153da489f9a41b8bb6d1fa4c2a8f8d28.md +++ b/content/discover/feed-153da489f9a41b8bb6d1fa4c2a8f8d28.md @@ -8,7 +8,6 @@ params: feedid: 153da489f9a41b8bb6d1fa4c2a8f8d28 websites: https://writingslowly.com/: true - https://www.writingslowly.com/: false blogrolls: [] recommended: [] recommender: @@ -16,25 +15,30 @@ params: categories: [] relme: https://aus.social/@writingslowly: true - https://micro.blog/writingslowly: false - last_post_title: A forest of evergreen notes + https://writingslowly.com/: true + last_post_title: Something from nothing is no fairy tale last_post_description: |- - Jon M Sterling, a computer scientist at Cambridge University, has created his own ‘mathematical Zettelkasten’, which he also calls ‘a forest of evergreen notes’. - He maintains a very - last_post_date: "2024-06-02T18:35:36+10:00" - last_post_link: https://writingslowly.com/2024/06/02/a-forest-of.html + As an adult, one of my favourite fairy tales is Puss in Boots. + I have immense respect for this talking cat. He has nothing going for him - not even a decent pair of shoes. And to make matters worse + last_post_date: "2024-06-29T17:46:18+10:00" + last_post_link: https://writingslowly.com/2024/06/29/something-from-nothing.html last_post_categories: [] - last_post_guid: e4513366eb874a87f2b22496763d6aac + last_post_language: "" + last_post_guid: b24c3c4ffbf3bf7424048e19bee74322 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 12 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-156003eb10d8c4dff2d41159d8788ccc.md b/content/discover/feed-156003eb10d8c4dff2d41159d8788ccc.md index 6966a6074..c6ac75111 100644 --- a/content/discover/feed-156003eb10d8c4dff2d41159d8788ccc.md +++ b/content/discover/feed-156003eb10d8c4dff2d41159d8788ccc.md @@ -15,26 +15,30 @@ params: relme: https://github.com/gr36: true https://gregmorris.co.uk/: true - https://instagram.com/_greg_morris: false - https://micro.blog/gregmorris: false - last_post_title: Inspired Street Photography - last_post_description: Today was supposed to be a subdued day after our long walk - yesterday, but my life just doesn’t work like that. After reading part of the - excellent book Find Your Frame by Craig Whitehead, I felt - last_post_date: "2024-06-02T16:56:29+01:00" - last_post_link: https://gregmorris.co.uk/2024/06/02/inspired-street-photography.html + last_post_title: Pay per scroll + last_post_description: |- + Manuel Moreale ponders what he would pay for if you had to pay per scroll: + + think about what the web would look like if it was some sort of pay-per-scroll platform. Not a place where virtually + last_post_date: "2024-07-06T16:24:39+01:00" + last_post_link: https://gregmorris.co.uk/2024/07/06/pay-per-scroll.html last_post_categories: [] - last_post_guid: bcdb8471000ed6247bf3c9f148b9a9d3 + last_post_language: "" + last_post_guid: 9884f23cc11b7c32dcb6170ae1b02b4b score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 7 + score: 11 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-1573472a394e6160c361f1d49bc69148.md b/content/discover/feed-1573472a394e6160c361f1d49bc69148.md deleted file mode 100644 index ee24203f4..000000000 --- a/content/discover/feed-1573472a394e6160c361f1d49bc69148.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Jan-Lukas Else -date: "2024-06-04T10:59:00+02:00" -description: Thoughts of an IT expert -params: - feedlink: https://jlelse.blog/.min.rss - feedtype: rss - feedid: 1573472a394e6160c361f1d49bc69148 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: - - Monthly Review - relme: {} - last_post_title: My May ‘24 in Review - last_post_description: May is now also over and we are getting closer and closer - to summer and the middle of 2024. Time to take a quick look back. - last_post_date: "2024-06-01T15:02:37+02:00" - last_post_link: https://jlelse.blog/posts/may-2024 - last_post_categories: - - Monthly Review - last_post_guid: 23915a92179028bb0ea5ec0eb0ef85c5 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 12 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-157388c6381cf943ac33262ca1cfadbd.md b/content/discover/feed-157388c6381cf943ac33262ca1cfadbd.md index c9227cb1c..297cfb610 100644 --- a/content/discover/feed-157388c6381cf943ac33262ca1cfadbd.md +++ b/content/discover/feed-157388c6381cf943ac33262ca1cfadbd.md @@ -12,26 +12,32 @@ params: recommended: [] recommender: - https://frankmeeuwsen.com/feed.xml + - https://therealadam.com/feed.xml categories: [] relme: {} - last_post_title: '[RIDGELINE] Ben Pobjoy''s Tips for Long Walks' + last_post_title: '[RIDGELINE] Slow Time and the Bali Walk and Talk' last_post_description: |- - Ridgeline subscribers! - Hello! As I wrote last week, my new pop-up newsletter/walk — The Return to Pachinko Road — begins on May 14. Subscribe here if you feel so inclined (almost 3,000 people - last_post_date: "2024-05-10T00:00:00Z" - last_post_link: https://craigmod.com/ridgeline/187/ + Ridgeline subscribers — + Time is yours, he said, and it was — time, ours, for the next week as we walked across Bali. Time and sweat, so much sweat. Leeches? They were ours, too, but with less + last_post_date: "2024-06-19T00:00:00Z" + last_post_link: https://craigmod.com/ridgeline/188/ last_post_categories: [] - last_post_guid: d3656e68eea95860170b51343ea27eeb + last_post_language: "" + last_post_guid: 3ddd591ff96ebf79394b819b6350ce6c score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-15764b422f10a720cb9afec924a9b53f.md b/content/discover/feed-15764b422f10a720cb9afec924a9b53f.md deleted file mode 100644 index 478e3463f..000000000 --- a/content/discover/feed-15764b422f10a720cb9afec924a9b53f.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Comments for I'm just sayin -date: "1970-01-01T00:00:00Z" -description: Random thoughts, opinions and the occasional "how-to" -params: - feedlink: https://griffithscorner.wordpress.com/comments/feed/ - feedtype: rss - feedid: 15764b422f10a720cb9afec924a9b53f - websites: - https://griffithscorner.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on OpenStack Live Migration With Cinder Backed Instances - by jgriffith8 - last_post_description: |- - In reply to Amit Kumar Das. - - Hi Amit, - Yep, I performed - last_post_date: "2016-05-13T12:50:32Z" - last_post_link: https://griffithscorner.wordpress.com/2014/12/08/openstack-live-migration-with-cinder-backed-instances/comment-page-1/#comment-56 - last_post_categories: [] - last_post_guid: c56507bd9854de48a05cef160ab1a449 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1577721ccbecac3e6f7ba6bcb4419f62.md b/content/discover/feed-1577721ccbecac3e6f7ba6bcb4419f62.md deleted file mode 100644 index 8644223b0..000000000 --- a/content/discover/feed-1577721ccbecac3e6f7ba6bcb4419f62.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: Nelio Software -date: "1970-01-01T00:00:00Z" -description: Your WordPress Specialists -params: - feedlink: https://neliosoftware.com/rss - feedtype: rss - feedid: 1577721ccbecac3e6f7ba6bcb4419f62 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - http://scripting.com/rss.xml - categories: - - Inside Nelio - - Nelio Content - - Plugins - - Release - relme: {} - last_post_title: Nelio Content 3.4 – Message Pool, Social Timelines, and Hootsuite - Support - last_post_description: Nelio Content 3.4 adds support for Hootsuite connections - and introduces the Message Pool–a set of evergreen messages you can instantiate - and schedule whenever you want. Here's all you need to know - last_post_date: "2024-05-30T15:00:00Z" - last_post_link: https://neliosoftware.com/blog/nelio-content-3-4-social-updates-and-hootsuite-support/ - last_post_categories: - - Inside Nelio - - Nelio Content - - Plugins - - Release - last_post_guid: 1e70d9beb86f0771bac22a1eca3a1656 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 14 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-15852fa3aee0baab37f7028b1a71e3fb.md b/content/discover/feed-15852fa3aee0baab37f7028b1a71e3fb.md deleted file mode 100644 index da418082d..000000000 --- a/content/discover/feed-15852fa3aee0baab37f7028b1a71e3fb.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Matthew Garrett -date: "1970-01-01T00:00:00Z" -description: Public posts from @mjg59@nondeterministic.computer -params: - feedlink: https://nondeterministic.computer/@mjg59.rss - feedtype: rss - feedid: 15852fa3aee0baab37f7028b1a71e3fb - websites: - https://nondeterministic.computer/@mjg59: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://mjg59.dreamwidth.org/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-15901aa87e7507e61f7cf75f7eb21115.md b/content/discover/feed-15901aa87e7507e61f7cf75f7eb21115.md deleted file mode 100644 index 593999143..000000000 --- a/content/discover/feed-15901aa87e7507e61f7cf75f7eb21115.md +++ /dev/null @@ -1,69 +0,0 @@ ---- -title: Manishanker Blog -date: "2024-06-27T02:21:35-07:00" -description: I blog about Openstack mostly. You can reach me at shanker.mani0@gmail.com -params: - feedlink: https://manishankert.blogspot.in/feeds/posts/default/-/openstack - feedtype: atom - feedid: 15901aa87e7507e61f7cf75f7eb21115 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - openstack - - NLP - - python - - text classification - - Manishankert - - Mirantis tutorials - - Opensource.com - - bug fixing - - cnn - - deep learning - - devstack - - gerrit - - google cloud program - - google speech to text - - google translation - - goose - - gsoc - - how to contribute - - ironic - - launchpad - - low-hanging-fruit - - machine learning - - manishanker - - manishanker2012 - - personal - - scrape - - scraping - - stackalytics - - super user - - tensorflow - relme: {} - last_post_title: How to contribute to Openstack - last_post_description: "" - last_post_date: "2014-07-16T08:21:10-07:00" - last_post_link: https://manishankert.blogspot.com/2014/05/how-to-contribute-to-openstack.html - last_post_categories: - - bug fixing - - gerrit - - how to contribute - - launchpad - - low-hanging-fruit - - openstack - last_post_guid: f2f878b2103c4eb5ee32100bed8b7441 - score_criteria: - cats: 5 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 14 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-15a38243e06514c0b579551ec9239d52.md b/content/discover/feed-15a38243e06514c0b579551ec9239d52.md new file mode 100644 index 000000000..86731fbd3 --- /dev/null +++ b/content/discover/feed-15a38243e06514c0b579551ec9239d52.md @@ -0,0 +1,41 @@ +--- +title: Auke Booij's programming and logic +date: "2024-03-13T11:40:24Z" +description: "" +params: + feedlink: https://abooij.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 15a38243e06514c0b579551ec9239d52 + websites: + https://abooij.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://abooij.blogspot.com/: true + https://www.blogger.com/profile/12557099016349698408: true + last_post_title: -XFunctorialDo + last_post_description: "" + last_post_date: "2021-02-09T18:56:03Z" + last_post_link: https://abooij.blogspot.com/2021/02/xfunctorialdo.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 217a27a656c873f1407125d53977fad8 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-15bd27ac640b7213bb0c3e91a0be9d85.md b/content/discover/feed-15bd27ac640b7213bb0c3e91a0be9d85.md deleted file mode 100644 index 78abd159b..000000000 --- a/content/discover/feed-15bd27ac640b7213bb0c3e91a0be9d85.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: "Sean Dague \U0001F30E" -date: "1970-01-01T00:00:00Z" -description: Public posts from @sdague@spore.social -params: - feedlink: https://spore.social/@sdague.rss - feedtype: rss - feedid: 15bd27ac640b7213bb0c3e91a0be9d85 - websites: - https://spore.social/@sdague: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://dague.net/: true - https://twitter.com/sdague: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-15bdc690baeeb3178529ae3da6fcb408.md b/content/discover/feed-15bdc690baeeb3178529ae3da6fcb408.md index 01af3010e..c4bd7e6db 100644 --- a/content/discover/feed-15bdc690baeeb3178529ae3da6fcb408.md +++ b/content/discover/feed-15bdc690baeeb3178529ae3da6fcb408.md @@ -13,7 +13,8 @@ params: recommended: [] recommender: [] categories: [] - relme: {} + relme: + https://www.techdirt.com/2023/01/04/journalists-and-others-should-leave-twitter-heres-how-they-can-get-started/: true last_post_title: 'By: Douglas Porter' last_post_description: Maybe I'm just lame. I joined Mastodon.social and rarely see content that interests me (I write about politics). I post new original content @@ -21,17 +22,22 @@ params: last_post_date: "2023-04-08T19:12:07Z" last_post_link: https://www.techdirt.com/2023/01/04/journalists-and-others-should-leave-twitter-heres-how-they-can-get-started/#comment-2947840 last_post_categories: [] + last_post_language: "" last_post_guid: 0e1f7e6af532b33bcc05d9433928cf02 score_criteria: cats: 0 description: 0 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 5 + score: 10 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-15f8f1531b6221bec43592d2bda818af.md b/content/discover/feed-15f8f1531b6221bec43592d2bda818af.md new file mode 100644 index 000000000..541cbb7cb --- /dev/null +++ b/content/discover/feed-15f8f1531b6221bec43592d2bda818af.md @@ -0,0 +1,62 @@ +--- +title: SPE IDE - Stani's Python Editor +date: "2024-07-03T12:19:27+02:00" +description: Free python IDE for Windows,Mac & Linux with UML,PyChecker,Debugger,GUI + design,Blender & more +params: + feedlink: https://pythonide.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 15f8f1531b6221bec43592d2bda818af + websites: + https://pythonide.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - blender + - coin + - graphics + - gstreamer + - howto + - ipython + - phatch + - python + - pyxides + - release + - scintilla + - sk1 + - spe + - subversion + - ubuntu + - wxpython + relme: + https://pythonide.blogspot.com/: true + last_post_title: Why I am going to talk at Pycon ... + last_post_description: "" + last_post_date: "2010-02-17T22:22:34+01:00" + last_post_link: https://pythonide.blogspot.com/2010/02/why-i-am-going-to-talk-at-pycon.html + last_post_categories: + - phatch + - python + - spe + - ubuntu + - wxpython + last_post_language: "" + last_post_guid: 55ea0208a2a38315e5f8519ea66c44f9 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-161ff32e8a297b9f0b803d9220c9e950.md b/content/discover/feed-161ff32e8a297b9f0b803d9220c9e950.md new file mode 100644 index 000000000..2d5041186 --- /dev/null +++ b/content/discover/feed-161ff32e8a297b9f0b803d9220c9e950.md @@ -0,0 +1,50 @@ +--- +title: Sedimental +date: "2024-04-19T23:40:40Z" +description: Accretionary thoughts by Mahmoud Hashemi +params: + feedlink: https://sedimental.org/atom.xml + feedtype: atom + feedid: 161ff32e8a297b9f0b803d9220c9e950 + websites: + https://sedimental.org/: true + https://sedimental.org/tagged/python/: false + blogrolls: [] + recommended: [] + recommender: [] + categories: + - data + - glom + - python + - software + relme: + https://qoto.org/@mahmoud: true + https://sedimental.org/: true + last_post_title: Cruising through complex data + last_post_description: "" + last_post_date: "2023-01-19T14:00:00Z" + last_post_link: http://sedimental.org/cruising_through_data.html + last_post_categories: + - data + - glom + - python + - software + last_post_language: "" + last_post_guid: 97844b6ae3a40792cac8a92501b3576d + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-1666bc019a7a66adfbd34d762d074759.md b/content/discover/feed-1666bc019a7a66adfbd34d762d074759.md new file mode 100644 index 000000000..4848d24af --- /dev/null +++ b/content/discover/feed-1666bc019a7a66adfbd34d762d074759.md @@ -0,0 +1,42 @@ +--- +title: Meg Ford +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://fordmeg.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 1666bc019a7a66adfbd34d762d074759 + websites: + https://fordmeg.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://fordmeg.blogspot.com/: true + last_post_title: GUADEC 2019 + last_post_description: I arrived for GUADEC on the 22nd and rushed from the hostel + to the 10th annual Womens' Dinner. The dinner was held at a local restaurant and + we had balloons, lots of shared appetizers, and vanilla + last_post_date: "2019-09-01T19:22:00Z" + last_post_link: https://fordmeg.blogspot.com/2019/09/guadec-2019.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 892c48c7c59e56b5adb1fb2a8665e415 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-16792b7fca8bffa430256ee027fc6609.md b/content/discover/feed-16792b7fca8bffa430256ee027fc6609.md deleted file mode 100644 index 6716b5b07..000000000 --- a/content/discover/feed-16792b7fca8bffa430256ee027fc6609.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Lewis Dale -date: "1970-01-01T00:00:00Z" -description: Public posts from @lewis@social.lol -params: - feedlink: https://social.lol/@lewis.rss - feedtype: rss - feedid: 16792b7fca8bffa430256ee027fc6609 - websites: - https://social.lol/@lewis: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://lewisdale.dev/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-167c15fdc49b80762a807a5e5e7ad687.md b/content/discover/feed-167c15fdc49b80762a807a5e5e7ad687.md deleted file mode 100644 index df553a326..000000000 --- a/content/discover/feed-167c15fdc49b80762a807a5e5e7ad687.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: '@werd.io - Ben Werdmuller' -date: "1970-01-01T00:00:00Z" -description: |- - I lead technology at ProPublica and write speculative fiction. This is a personal account. - - Every day, I write about tech, democracy, and society at https://werd.io. -params: - feedlink: https://bsky.app/profile/did:plc:77tdak46psveqneyegsdyc7l/rss - feedtype: rss - feedid: 167c15fdc49b80762a807a5e5e7ad687 - websites: - https://bsky.app/profile/werd.io: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-167f0a39a358697f68f1804542dcf870.md b/content/discover/feed-167f0a39a358697f68f1804542dcf870.md new file mode 100644 index 000000000..92a729f1d --- /dev/null +++ b/content/discover/feed-167f0a39a358697f68f1804542dcf870.md @@ -0,0 +1,94 @@ +--- +title: Mad Meiers Adventures +date: "2024-02-07T05:15:16-08:00" +description: "" +params: + feedlink: https://madmeiersadventures.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 167f0a39a358697f68f1804542dcf870 + websites: + https://madmeiersadventures.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Allenwinden + - Bauma + - Chrüzegg + - Durannapass + - Eclipse Summit Europe + - Egg + - Fischingen + - Furka + - Girenbad + - Grimsel + - Hemberg + - Hinter Höhi + - Hong Kong + - Hulftegg + - Hörnli + - Iddaburg + - Kunst + - Libingen + - Mountainbike + - Panorama + - Ricken + - SAP + - Schindelberg + - Schnebelhorn + - Snow + - Susten + - Säntis + - Tanzboden + - Train + - Walldorf + - Wildhaus + - appenzell + - bichelsee + - chamoix + - daisy + - elm + - gletscherschlucht + - icicled + - jungfraujoch + - legoland günzburg + - ludwigsburg + - mountain bike + - panixerpass + - saentis + - scala + - schauenberg + - sitzberg + relme: + https://4urit.blogspot.com/: true + https://huggenberg.blogspot.com/: true + https://madmeiersadventures.blogspot.com/: true + https://madmeierscloud.blogspot.com/: true + https://madmeierslife.blogspot.com/: true + https://madmeierstwike.blogspot.com/: true + https://mmsketches.blogspot.com/: true + https://www.blogger.com/profile/14628306885093928732: true + last_post_title: A ride over the Schägalp + last_post_description: "" + last_post_date: "2013-06-08T01:36:44-07:00" + last_post_link: https://madmeiersadventures.blogspot.com/2013/06/a-ride-over-schagalp.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 1f13c63398cdf8e19f595ba03ce3e425 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-169494a0a389cb3e6f8f2ed15333851f.md b/content/discover/feed-169494a0a389cb3e6f8f2ed15333851f.md index 0ad6751dd..d844e76cf 100644 --- a/content/discover/feed-169494a0a389cb3e6f8f2ed15333851f.md +++ b/content/discover/feed-169494a0a389cb3e6f8f2ed15333851f.md @@ -13,30 +13,31 @@ params: recommender: - http://scripting.com/rss.xml - http://scripting.com/rssNightly.xml - - https://hacdias.com/feed.xml - - https://jlelse.blog/.min.rss - - https://jlelse.blog/.rss - - https://jlelse.blog/index.xml categories: [] relme: {} - last_post_title: Trunk & Tidbits, April 2024 - last_post_description: |- - Welcome to the first in a planned ongoing series of updates from the core Mastodon engineering team. We’ll also take a quick look at what’s been happening around the broader community. - What - last_post_date: "2024-05-07T00:00:00Z" - last_post_link: https://blog.joinmastodon.org/2024/05/trunk-tidbits-april-2024/ + last_post_title: Highlighting journalism on Mastodon + last_post_description: To reinforce and encourage Mastodon as the go-to place for + journalism, we’re launching a new feature today. You will notice that underneath + some links shared on Mastodon, the author byline can be + last_post_date: "2024-07-02T00:00:00Z" + last_post_link: https://blog.joinmastodon.org/2024/07/highlighting-journalism-on-mastodon/ last_post_categories: [] - last_post_guid: 444a9a770e2b3bdade491bf36ae99a04 + last_post_language: "" + last_post_guid: 7952d46c32d7e0284afcf747b7d7ae65 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-169d9f13fe83148b456c76eae163b17e.md b/content/discover/feed-169d9f13fe83148b456c76eae163b17e.md deleted file mode 100644 index e59dd16d9..000000000 --- a/content/discover/feed-169d9f13fe83148b456c76eae163b17e.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Victoria Martinez de la Cruz -date: "1970-01-01T00:00:00Z" -description: |- - Open source software engineer @ Red Hat. Currently focused on all things storage for the cloud. - - Always up for meeting with people and having good conversations. - - Learn more about me on LinkedIn, f.. -params: - feedlink: https://vmartinezdelacruz.com/posts.rss - feedtype: rss - feedid: 169d9f13fe83148b456c76eae163b17e - websites: - https://vmartinezdelacruz.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-16b72d67705f7266e5fac8dd4604d17e.md b/content/discover/feed-16b72d67705f7266e5fac8dd4604d17e.md new file mode 100644 index 000000000..7936eec6c --- /dev/null +++ b/content/discover/feed-16b72d67705f7266e5fac8dd4604d17e.md @@ -0,0 +1,49 @@ +--- +title: alerios (english version) +date: "1970-01-01T00:00:00Z" +description: Libre Software, IP Telephony, Colombia and other thoughts... +params: + feedlink: https://alerios-en.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 16b72d67705f7266e5fac8dd4604d17e + websites: + https://alerios-en.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - debian + - medellin + - windows + relme: + https://alerios-en.blogspot.com/: true + https://alerios.blogspot.com/: true + https://www.blogger.com/profile/17804942289789120050: true + last_post_title: 2011 Colombian Mini-DebConf + last_post_description: This weekend we'll be having the 4th version of the Colombian + Mini-Debconf. It will be held in the Otraparte Museum, in the city of Medellin. + The cool thing this year is that we'll be having mostly + last_post_date: "2011-09-28T16:51:00Z" + last_post_link: https://alerios-en.blogspot.com/2011/09/2011-colombian-mini-debconf.html + last_post_categories: + - debian + - medellin + last_post_language: "" + last_post_guid: 711686b9664d5335650ccb6eb893592c + score_criteria: + cats: 3 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-16b7e665bd94222a3fba629241608e6a.md b/content/discover/feed-16b7e665bd94222a3fba629241608e6a.md deleted file mode 100644 index e7729aafb..000000000 --- a/content/discover/feed-16b7e665bd94222a3fba629241608e6a.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Manu -date: "1970-01-01T00:00:00Z" -description: Public posts from @manu_faktur@mastodon.social -params: - feedlink: https://mastodon.social/@manu_faktur.rss - feedtype: rss - feedid: 16b7e665bd94222a3fba629241608e6a - websites: - https://mastodon.social/@manu_faktur: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://annoying.technology/: true - https://log.manuelgrabowski.de/: false - https://manuelgrabowski.de/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-16b9961bd96bc3b213382bf38e167aac.md b/content/discover/feed-16b9961bd96bc3b213382bf38e167aac.md new file mode 100644 index 000000000..02d04fc30 --- /dev/null +++ b/content/discover/feed-16b9961bd96bc3b213382bf38e167aac.md @@ -0,0 +1,43 @@ +--- +title: geomajas +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://geomajas.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 16b9961bd96bc3b213382bf38e167aac + websites: + https://geomajas.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://geomajas.blogspot.com/: true + https://www.blogger.com/profile/05849361102076577325: true + last_post_title: 'Geomajas: backend 1.9.0 + 10 plug-in releases' + last_post_description: Yes, you read the title correctly. 11 new Geomajas releases + saw the daylight in the last 2 weeks, among which a new version of the backend. + Next to the backend, 10 plug-in releases saw daylight, + last_post_date: "2011-07-08T07:13:00Z" + last_post_link: https://geomajas.blogspot.com/2011/07/geomajas-backend-190-10-plug-in.html + last_post_categories: [] + last_post_language: "" + last_post_guid: f104be2d3c34785fab18b8e1d72fdb71 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-16ba7abe90cbf9c43864a072907d3aad.md b/content/discover/feed-16ba7abe90cbf9c43864a072907d3aad.md index ccdedbbcb..d1595c4d9 100644 --- a/content/discover/feed-16ba7abe90cbf9c43864a072907d3aad.md +++ b/content/discover/feed-16ba7abe90cbf9c43864a072907d3aad.md @@ -10,36 +10,39 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: - Owls - Year Five and Six - News + - Uncategorized relme: {} - last_post_title: Owl Class News 24.05.24 - last_post_description: The last week of term! In English this week we completed - our extended writes. We auditioned and all got assigned roles for our play. Rehearsals - will be fully underway next term and we are excited to - last_post_date: "2024-05-24T14:10:11Z" - last_post_link: https://stantonharcourtschool.org.uk/owl-class-news-24-05-24/ + last_post_title: Owl Class News 05.07.24 + last_post_description: This week we have been busy with rehearsals. We have our + final dress rehearsal on Monday morning before our performances start! Each of + us have created a program for our plays including a cast list + last_post_date: "2024-07-05T14:10:44Z" + last_post_link: https://stantonharcourtschool.org.uk/owl-class-news-05-07-24/ last_post_categories: - Owls - Year Five and Six - News - last_post_guid: 5666ffbd18b641007375cfa70c1edf3f + - Uncategorized + last_post_language: "" + last_post_guid: 6c2a635888337c4a185403453a504ab9 score_criteria: cats: 0 description: 3 - postcats: 1 + feedlangs: 1 + postcats: 2 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 12 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-16c512f22e6b1c869048942e9040d0c4.md b/content/discover/feed-16c512f22e6b1c869048942e9040d0c4.md deleted file mode 100644 index e93003007..000000000 --- a/content/discover/feed-16c512f22e6b1c869048942e9040d0c4.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Chris -date: "1970-01-01T00:00:00Z" -description: Public posts from @chrismartin@mastodon.social -params: - feedlink: https://mastodon.social/@chrismartin.rss - feedtype: rss - feedid: 16c512f22e6b1c869048942e9040d0c4 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-16d1902d2af0067815e0d4c52a96bfbf.md b/content/discover/feed-16d1902d2af0067815e0d4c52a96bfbf.md new file mode 100644 index 000000000..b3424cc38 --- /dev/null +++ b/content/discover/feed-16d1902d2af0067815e0d4c52a96bfbf.md @@ -0,0 +1,139 @@ +--- +title: Ddos vs love +date: "2024-03-13T16:52:13-07:00" +description: ddosing is love to internet. +params: + feedlink: https://viviantarologa.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 16d1902d2af0067815e0d4c52a96bfbf + websites: + https://viviantarologa.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ddosing not defcult + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Ddosing is normal + last_post_description: "" + last_post_date: "2021-04-17T12:27:46-07:00" + last_post_link: https://viviantarologa.blogspot.com/2021/04/ddosing-is-normal.html + last_post_categories: + - ddosing not defcult + last_post_language: "" + last_post_guid: c65ac1e999034d988d0e34d0f476c6d1 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-16eda1f1d3a48b5475d9369ef52d94b2.md b/content/discover/feed-16eda1f1d3a48b5475d9369ef52d94b2.md new file mode 100644 index 000000000..f57351c4a --- /dev/null +++ b/content/discover/feed-16eda1f1d3a48b5475d9369ef52d94b2.md @@ -0,0 +1,96 @@ +--- +title: splonderzoek +date: "2024-03-08T19:45:02+01:00" +description: Geeky things and other research from a work in progress +params: + feedlink: https://feeds.feedburner.com/splonderzoek + feedtype: atom + feedid: 16eda1f1d3a48b5475d9369ef52d94b2 + websites: + https://splonderzoek.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - accumulations + - anamorphism + - attributes + - cabal + - catamorphism + - cfp + - community + - constructors + - design-pattern + - dutch-hug + - emgm + - fixed-point + - fold + - functional-programming + - functor + - generic-programming + - ghc + - git + - google + - haskell + - hylomorphism + - ifl + - incremental + - lazy-evaluation + - literate-haskell + - london + - macosx + - monad-reader + - monads + - pandoc + - paramorphism + - printf + - program-transformation + - publication + - purity + - scanf + - squiggol + - strict-evaluation + - subversion + - talk + - template-haskell + - tree + - tutorial + - type-and-transform-systems + - type-indexed-functions + - use-case + - vcs + - video + - vim + - xformat + - zygomorphism + relme: + https://splonderzoek.blogspot.com/: true + https://www.blogger.com/profile/02951502639017426632: true + last_post_title: 'Draft: "Type-Changing Program Improvement with Type and Transform + Systems"' + last_post_description: "" + last_post_date: "2011-03-24T15:07:42+01:00" + last_post_link: http://splonderzoek.blogspot.com/2011/03/draft-type-changing-program-improvement.html + last_post_categories: + - program-transformation + - publication + - type-and-transform-systems + last_post_language: "" + last_post_guid: ebd240973283ed19a1b55368625421ec + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-16ee3eadb82f1bd67a1fcb6bfc34ccae.md b/content/discover/feed-16ee3eadb82f1bd67a1fcb6bfc34ccae.md deleted file mode 100644 index b5f96eedb..000000000 --- a/content/discover/feed-16ee3eadb82f1bd67a1fcb6bfc34ccae.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: The travels of Mary Loosemore -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://www.sparklytrainers.com/feed/ - feedtype: rss - feedid: 16ee3eadb82f1bd67a1fcb6bfc34ccae - websites: - https://www.sparklytrainers.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - diary - - Herefordshire Week Notes - - images - - Herefordshire (UK) - - Relocating to Herefordshire - relme: {} - last_post_title: 'Herefordshire Week 230: Tuesday 21 – Monday 27 May 2024' - last_post_description: 'Catching up back home. Office Panelling Project. Oh, and - A General Election Is Announced. Started slowly settling back into the Forty Acres - Life on Tuesday: gym for PT (and update on All The Changes)' - last_post_date: "2024-05-28T07:04:41Z" - last_post_link: https://www.sparklytrainers.com/blog/2024/05/28/herefordshire-week-230-tuesday-21-monday-27-may-2024/ - last_post_categories: - - diary - - Herefordshire Week Notes - - images - - Herefordshire (UK) - - Relocating to Herefordshire - last_post_guid: aeb982fa51dbea389c7b393e26740f6c - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-16f2ad4a23839bcd3ff78f0e127b0ea1.md b/content/discover/feed-16f2ad4a23839bcd3ff78f0e127b0ea1.md index 722a9b52e..86431845e 100644 --- a/content/discover/feed-16f2ad4a23839bcd3ff78f0e127b0ea1.md +++ b/content/discover/feed-16f2ad4a23839bcd3ff78f0e127b0ea1.md @@ -12,7 +12,8 @@ params: recommended: [] recommender: [] categories: [] - relme: {} + relme: + https://folio.red/: true last_post_title: Side Scroller 95 last_post_description: I haven't been doing much work on new projects recently. Mainly, I've been perusing my archives looking for interesting things to play @@ -20,17 +21,22 @@ params: last_post_date: "2024-05-26T00:49:44Z" last_post_link: https://folio.red/post/side-scroller-95 last_post_categories: [] + last_post_language: "" last_post_guid: a2597ce7fafc125f1af708587a1dd516 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 5 + score: 11 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-16ff052fb821a9e59e164f345419cd7b.md b/content/discover/feed-16ff052fb821a9e59e164f345419cd7b.md index b5cc66610..94c4024fb 100644 --- a/content/discover/feed-16ff052fb821a9e59e164f345419cd7b.md +++ b/content/discover/feed-16ff052fb821a9e59e164f345419cd7b.md @@ -22,17 +22,22 @@ params: last_post_date: "2023-10-19T22:30:00Z" last_post_link: https://flinders.bearblog.dev/why-sustainable-farming-is-more-than-just-organic/ last_post_categories: [] + last_post_language: "" last_post_guid: e8912a22f8ebf735443808dee4f10b1d score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-171620456ee5ec3267c83b39a5b41f56.md b/content/discover/feed-171620456ee5ec3267c83b39a5b41f56.md new file mode 100644 index 000000000..06caf4a63 --- /dev/null +++ b/content/discover/feed-171620456ee5ec3267c83b39a5b41f56.md @@ -0,0 +1,42 @@ +--- +title: Networking Eclipse +date: "2024-03-19T06:04:48+01:00" +description: Martin Oberhuber's thoughts on Eclipse, Java, Embedded C/C++ and the + Community +params: + feedlink: https://tmober.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 171620456ee5ec3267c83b39a5b41f56 + websites: + https://tmober.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://tmober.blogspot.com/: true + https://www.blogger.com/profile/02195662278064214049: true + last_post_title: Eclipse Classic now comes with egit included + last_post_description: "" + last_post_date: "2013-03-24T19:47:24+01:00" + last_post_link: https://tmober.blogspot.com/2013/03/eclipse-classic-now-comes-with-egit.html + last_post_categories: [] + last_post_language: "" + last_post_guid: bd1262b5e79e19d75ccf238b5c6476f3 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1729b1771cf97008b0324b8522e5ddae.md b/content/discover/feed-1729b1771cf97008b0324b8522e5ddae.md new file mode 100644 index 000000000..31a875047 --- /dev/null +++ b/content/discover/feed-1729b1771cf97008b0324b8522e5ddae.md @@ -0,0 +1,50 @@ +--- +title: Taming LibreOffice +date: "1970-01-01T00:00:00Z" +description: Resources for intermediate & advanced users +params: + feedlink: https://taming-libreoffice.com/feed/ + feedtype: rss + feedid: 1729b1771cf97008b0324b8522e5ddae + websites: + https://taming-libreoffice.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Books + - Calc + - Draw + - Writer + relme: + https://taming-libreoffice.com/: true + last_post_title: Print editions of new user guides + last_post_description: Recent user guides from the LibreOffice Documentation team + are available for free download (PDF, ODT) from the Documentation page on the + LibreOffice website, and low-cost printed copies can be + last_post_date: "2023-03-04T08:02:30Z" + last_post_link: https://taming-libreoffice.com/2023/03/print-editions-of-new-user-guides/ + last_post_categories: + - Books + - Calc + - Draw + - Writer + last_post_language: "" + last_post_guid: ca1cad42f217efc0ce8d89a24a93d683 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-1738292c439e32f3188580029dcf3e93.md b/content/discover/feed-1738292c439e32f3188580029dcf3e93.md new file mode 100644 index 000000000..9023323a0 --- /dev/null +++ b/content/discover/feed-1738292c439e32f3188580029dcf3e93.md @@ -0,0 +1,85 @@ +--- +title: Michal Čihař's Weblog, posts tagged by Debian +date: "1970-01-01T00:00:00Z" +description: Random thoughts about everything tagged by Debian +params: + feedlink: https://blog.cihar.com/archives/debian/index.xml + feedtype: rss + feedid: 1738292c439e32f3188580029dcf3e93 + websites: + https://blog.cihar.com/archives/debian/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Bicycle + - Books + - Coding + - Configs + - Crypto + - Czech + - Debian + - Django + - Enca + - English + - GPL + - Gammu + - Gentoo + - History + - Howto + - IMAP + - Japan + - Life + - Linux + - Mailbox + - Maps + - Meego + - Misc + - Odorik + - OpenWrt + - Photography + - Pubs + - SUSE + - StarDict + - Synology + - Travelling + - Ukolovnik + - Wammu + - Weblate + - Website + - photo-uploader + - phpMyAdmin + - python-gammu + - uTidylib + relme: + https://blog.cihar.com/archives/debian/: true + last_post_title: Spring cleanup + last_post_description: What you can probably spot from past posts on my blog, my + open source contributions are heavily focused on Weblate and I've phased out many + other activities. The main reason being reduced amount of + last_post_date: "1970-01-01T00:00:00Z" + last_post_link: https://blog.cihar.com/archives/2019/05/29/spring-cleanup/?utm_source=rss2 + last_post_categories: + - Debian + - English + - Gammu + - SUSE + last_post_language: "" + last_post_guid: 6626ed0a9eecd3646fa0f6d7df08b52f + score_criteria: + cats: 5 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 22 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-1748eb7ac55fce6b116f3ced7705edec.md b/content/discover/feed-1748eb7ac55fce6b116f3ced7705edec.md new file mode 100644 index 000000000..26167d8f1 --- /dev/null +++ b/content/discover/feed-1748eb7ac55fce6b116f3ced7705edec.md @@ -0,0 +1,143 @@ +--- +title: Ddos & Attack World +date: "1970-01-01T00:00:00Z" +description: Everyone want to know about ddosing. We have useful content about attack + so keep visiting. +params: + feedlink: https://prettyartroom.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 1748eb7ac55fce6b116f3ced7705edec + websites: + https://prettyartroom.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Ddos + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Safe Your Self From Ddosing + last_post_description: |- + Ddos and TopOn the off chance that beginning an effective online + business is a fantasy for some, a DOS assault would be a bad dream. It can + demolish all that you endeavored to construct. It can + last_post_date: "2021-04-24T21:57:00Z" + last_post_link: https://prettyartroom.blogspot.com/2021/04/safe-your-self-from-ddosing.html + last_post_categories: + - Ddos + last_post_language: "" + last_post_guid: c2013dce8af1a738cc30d60fcb0097c2 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-174f816cea3d8aa2b3858ea199f12f2f.md b/content/discover/feed-174f816cea3d8aa2b3858ea199f12f2f.md new file mode 100644 index 000000000..b963879f1 --- /dev/null +++ b/content/discover/feed-174f816cea3d8aa2b3858ea199f12f2f.md @@ -0,0 +1,55 @@ +--- +title: Free and Open Source GIS Ramblings +date: "1970-01-01T00:00:00Z" +description: written by Anita Graser aka Underdark +params: + feedlink: https://anitagraser.com/feed/ + feedtype: rss + feedid: 174f816cea3d8aa2b3858ea199f12f2f + websites: + https://anitagraser.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - MovingPandas + - OGC + - Python + - movement data + - spatio-temporal data + relme: + https://anitagraser.com/: true + https://fosstodon.org/@underdarkGIS: true + https://github.com/anitagraser: true + last_post_title: 'New MovingPandas tutorial: taking OGC Moving Features full circle + with MF-JSON' + last_post_description: Last week, I had the pleasure to meet some of the people + behind the OGC Moving Features Standard Working group at the IEEE Mobile Data + Management Conference (MDM2024). While chatting about the Moving + last_post_date: "2024-07-08T06:00:00Z" + last_post_link: https://anitagraser.com/2024/07/08/new-movingpandas-tutorial-taking-ogc-moving-features-full-circle-with-mf-json/ + last_post_categories: + - MovingPandas + - OGC + - Python + - movement data + - spatio-temporal data + last_post_language: "" + last_post_guid: 08dcf77ddc1c49740bb7c1e0a9d06b21 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-17518deb5b848568709b59064f04e7bc.md b/content/discover/feed-17518deb5b848568709b59064f04e7bc.md new file mode 100644 index 000000000..54d729b24 --- /dev/null +++ b/content/discover/feed-17518deb5b848568709b59064f04e7bc.md @@ -0,0 +1,62 @@ +--- +title: Filling Time +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://aniefer-projects.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 17518deb5b848568709b59064f04e7bc + websites: + https://aniefer-projects.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - android + - carving + - fiberglass + - globe + - gores + - maps + - overclocking + - recover + - set on boot + - sphere + - veneer + - wood + relme: + https://an-tst.blogspot.com/: true + https://aniefer-projects.blogspot.com/: true + https://aniefer.blogspot.com/: true + https://www.blogger.com/profile/10918930759740557341: true + last_post_title: Recovering from bad overclocking settings + last_post_description: |- + My android phone is nearly three years old, it's a tiny thing from the days before screen sizes started growing ridiculously large. + + I've held onto it because I don't like large phones, the problem + last_post_date: "2013-03-07T06:01:00Z" + last_post_link: https://aniefer-projects.blogspot.com/2013/03/recovering-from-bad-overclocking.html + last_post_categories: + - android + - overclocking + - recover + - set on boot + last_post_language: "" + last_post_guid: 89b82c9c86da36d5fa8c640977f57bb8 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-175d1f0eadbfc3d5b31ff7ca0aac9ccf.md b/content/discover/feed-175d1f0eadbfc3d5b31ff7ca0aac9ccf.md index cd23562e9..a10cf9d20 100644 --- a/content/discover/feed-175d1f0eadbfc3d5b31ff7ca0aac9ccf.md +++ b/content/discover/feed-175d1f0eadbfc3d5b31ff7ca0aac9ccf.md @@ -11,11 +11,12 @@ params: blogrolls: [] recommended: [] recommender: + - https://josh.blog/comments/feed - https://josh.blog/feed categories: + - Figma - Uncategorized - career - - Figma relme: {} last_post_title: Figma is freaking great last_post_description: I’ve been meaning to write up what’s been going on since @@ -24,20 +25,25 @@ params: last_post_date: "2024-05-30T00:33:23Z" last_post_link: https://aaron.blog/2024/05/29/figma-is-freaking-great/ last_post_categories: + - Figma - Uncategorized - career - - Figma + last_post_language: "" last_post_guid: edfa9e4f1babfb106baee93b54cf8f2a score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 16 + score: 20 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-175eb2db25950abe93847d84c4816d18.md b/content/discover/feed-175eb2db25950abe93847d84c4816d18.md new file mode 100644 index 000000000..6be968bfb --- /dev/null +++ b/content/discover/feed-175eb2db25950abe93847d84c4816d18.md @@ -0,0 +1,54 @@ +--- +title: Tipsy Teetotaler ن +date: "1970-01-01T00:00:00Z" +description: What do you get when you give an distractible autodidact a blog to play + with? +params: + feedlink: https://intellectualoid.com/feed/ + feedtype: rss + feedid: 175eb2db25950abe93847d84c4816d18 + websites: + https://intellectualoid.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://frankmcpherson.blog/feed.xml + categories: + - Declinism + - Donald Trump + - Joe Biden + - Political Matters + - Politics + - populism + relme: {} + last_post_title: Mostly political (sigh) + last_post_description: Today is mostly political. Maybe I'm less cynical/bearish + than I think, because I spend a lot (too much) time on political commentary. + last_post_date: "2024-07-08T14:27:50Z" + last_post_link: https://intellectualoid.com/2024/07/08/65735/ + last_post_categories: + - Declinism + - Donald Trump + - Joe Biden + - Political Matters + - Politics + - populism + last_post_language: "" + last_post_guid: e362ff1da12ae8d0713b486b810e59a3 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-176951715d6f92f9b14ec9481f3d7215.md b/content/discover/feed-176951715d6f92f9b14ec9481f3d7215.md index fc67e8437..81d134d60 100644 --- a/content/discover/feed-176951715d6f92f9b14ec9481f3d7215.md +++ b/content/discover/feed-176951715d6f92f9b14ec9481f3d7215.md @@ -13,42 +13,33 @@ params: recommender: - https://joeross.me/feed.xml categories: - - Links - - News - - App Intents + - Apple Developer - Shortcuts - - Siri - - Siri Shortcuts - - WWDC - - WWDC24 relme: {} - last_post_title: Apple iOS 18 Siri AI Update Will Let Users Control Features in - Apps With Voice » - last_post_description: Mark Gurman from Bloomberg reports on new Siri-focused features - coming at WWDC, including mentions of App Intents as a potential basis for these - upgrades. - last_post_date: "2024-05-30T21:53:21Z" - last_post_link: https://matthewcassinelli.com/apple-ios-18-siri-ai-update-will-let-users-control-features-in-apps-with-voice/ + last_post_title: 'New in the Shortcuts Library: Apple Developer shortcuts' + last_post_description: Updated once again now that I'm using it again a ton – shortcuts + for the Apple Developer app. Works great with Stream Deck. + last_post_date: "2024-07-03T18:00:00Z" + last_post_link: https://matthewcassinelli.com/new-in-the-shortcuts-library-apple-developer-shortcuts/ last_post_categories: - - Links - - News - - App Intents + - Apple Developer - Shortcuts - - Siri - - Siri Shortcuts - - WWDC - - WWDC24 - last_post_guid: 4b68f374cea571b4fa371521764903ea + last_post_language: "" + last_post_guid: afccbc6b808bafeabc6312a9304b8023 score_criteria: cats: 0 description: 3 - postcats: 3 + feedlangs: 1 + postcats: 2 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 16 + score: 19 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-179a56683ef5043d45dca6ea424fa750.md b/content/discover/feed-179a56683ef5043d45dca6ea424fa750.md deleted file mode 100644 index c38e139b4..000000000 --- a/content/discover/feed-179a56683ef5043d45dca6ea424fa750.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: rOpenSci -date: "1970-01-01T00:00:00Z" -description: Public posts from @rOpenSci@hachyderm.io -params: - feedlink: https://hachyderm.io/@rOpenSci.rss - feedtype: rss - feedid: 179a56683ef5043d45dca6ea424fa750 - websites: - https://hachyderm.io/@rOpenSci: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/approved/: true - https://devguide.ropensci.org/: false - https://ropensci.org/: true - https://ropensci.org/r-universe/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-17a1eb5cca68ac35500d7ef6b40c1ad4.md b/content/discover/feed-17a1eb5cca68ac35500d7ef6b40c1ad4.md new file mode 100644 index 000000000..5668b51f1 --- /dev/null +++ b/content/discover/feed-17a1eb5cca68ac35500d7ef6b40c1ad4.md @@ -0,0 +1,53 @@ +--- +title: Jez Cope activity +date: "2024-06-06T13:54:13Z" +description: "" +params: + feedlink: https://gitlab.com/jezcope.atom + feedtype: atom + feedid: 17a1eb5cca68ac35500d7ef6b40c1ad4 + websites: + https://gitlab.com/jezcope: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://codeberg.org/jezcope: true + https://erambler.co.uk/: true + https://github.com/jezcope: true + https://gitlab.com/jezcope: true + https://keybase.io/jezcope: true + last_post_title: Jez Cope pushed to project branch main at BL Data Services / RemarkJS + British Library themes + last_post_description: |- + Jez Cope + (ae248494) + + at + 06 Jun 13:54 + + + minor list item layout tweak + last_post_date: "2024-06-06T13:54:13Z" + last_post_link: https://gitlab.com/bl-data-services/theme-bl-remark/-/commit/ae248494229ecb71239a438d4a6fb71ee73a124d + last_post_categories: [] + last_post_language: "" + last_post_guid: 71d0ac91dc4c243b2b11765fc5c23921 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-17a1eefb060d6518d08ddb4621d1da0d.md b/content/discover/feed-17a1eefb060d6518d08ddb4621d1da0d.md new file mode 100644 index 000000000..a96397c51 --- /dev/null +++ b/content/discover/feed-17a1eefb060d6518d08ddb4621d1da0d.md @@ -0,0 +1,48 @@ +--- +title: Geo tips & tricks +date: "1970-01-01T00:00:00Z" +description: |- + OSGeo, GDAL and other GIS fun. + Find me on Twitter, GitHub or on my company Spatialys website +params: + feedlink: https://erouault.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 17a1eefb060d6518d08ddb4621d1da0d + websites: + https://erouault.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - gdal + - osgeo + - qgis + relme: + https://erouault.blogspot.com/: true + https://www.blogger.com/profile/13965870607935959853: true + last_post_title: Order of GeoJSON properties and graph theory + last_post_description: All this story started with this QGIS bug about a crash when + a user adds a new field to a GeoJSON file. Who is the culprit between GDAL and + QGIS could be debated. Let's look at the GDAL side of + last_post_date: "2021-09-26T19:16:00Z" + last_post_link: https://erouault.blogspot.com/2021/09/order-of-geojson-properties-and-graph.html + last_post_categories: [] + last_post_language: "" + last_post_guid: f75e6daf14fe2268d6b18c06f2b6ccf5 + score_criteria: + cats: 3 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-17afacb21c16a1ecd330b7e49e79c876.md b/content/discover/feed-17afacb21c16a1ecd330b7e49e79c876.md new file mode 100644 index 000000000..14d76834e --- /dev/null +++ b/content/discover/feed-17afacb21c16a1ecd330b7e49e79c876.md @@ -0,0 +1,46 @@ +--- +title: Flygdynamikern +date: "2024-02-19T07:24:25-05:00" +description: "" +params: + feedlink: https://flygdynamikern.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 17afacb21c16a1ecd330b7e49e79c876 + websites: + https://flygdynamikern.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - fad + - haskell + - haskell example + - space + relme: + https://flygdynamikern.blogspot.com/: true + https://tychomagneticanomalyone.blogspot.com/: true + https://www.blogger.com/profile/14027110650075268096: true + last_post_title: Haskell tools for satellite operations + last_post_description: "" + last_post_date: "2014-09-12T08:46:41-04:00" + last_post_link: https://flygdynamikern.blogspot.com/2014/09/haskell-tools-for-satellite-operations.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 1478d53d73143069ff2d836d423129aa + score_criteria: + cats: 4 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-17b2085ca74634cc9c34fa4bb0f4b985.md b/content/discover/feed-17b2085ca74634cc9c34fa4bb0f4b985.md new file mode 100644 index 000000000..4b818f8e7 --- /dev/null +++ b/content/discover/feed-17b2085ca74634cc9c34fa4bb0f4b985.md @@ -0,0 +1,137 @@ +--- +title: Mahir Area Code +date: "2024-02-19T21:46:38-08:00" +description: Get all information about Area Code and keep visit to my blogspot. +params: + feedlink: https://elektronikcilerdunyasi.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 17b2085ca74634cc9c34fa4bb0f4b985 + websites: + https://elektronikcilerdunyasi.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: New area Code + last_post_description: "" + last_post_date: "2022-01-13T02:23:21-08:00" + last_post_link: https://elektronikcilerdunyasi.blogspot.com/2022/01/new-area-code.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 658ec8767e43345e1e6bc4a4899d98f0 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-17b59c4a298be63bf43aa472f96f8fea.md b/content/discover/feed-17b59c4a298be63bf43aa472f96f8fea.md new file mode 100644 index 000000000..47b0d1b64 --- /dev/null +++ b/content/discover/feed-17b59c4a298be63bf43aa472f96f8fea.md @@ -0,0 +1,43 @@ +--- +title: Henrik Lindberg Tech Stuff +date: "2024-02-08T04:19:48-08:00" +description: "" +params: + feedlink: https://henrik-lindberg.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 17b59c4a298be63bf43aa472f96f8fea + websites: + https://henrik-lindberg.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://eclipse-buckminster.blogspot.com/: true + https://henrik-eclipse.blogspot.com/: true + https://henrik-lindberg.blogspot.com/: true + https://www.blogger.com/profile/18131140901733897033: true + last_post_title: ScreenFlow and Tascam US144 + last_post_description: "" + last_post_date: "2010-03-14T18:24:43-07:00" + last_post_link: https://henrik-lindberg.blogspot.com/2010/03/screenflow-and-tascam-us144.html + last_post_categories: [] + last_post_language: "" + last_post_guid: c519bc075fc0be03b309f71e214300cb + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-17f13db777713e22b22df52a1bb63b85.md b/content/discover/feed-17f13db777713e22b22df52a1bb63b85.md new file mode 100644 index 000000000..2261b9e87 --- /dev/null +++ b/content/discover/feed-17f13db777713e22b22df52a1bb63b85.md @@ -0,0 +1,44 @@ +--- +title: 'Software Design: Tidy First?' +date: "1970-01-01T00:00:00Z" +description: Software design is an exercise in human relationships. So are all the + other techniques we use to develop software. How can we geeks get better at technique + as one way of getting better at +params: + feedlink: https://tidyfirst.substack.com/feed + feedtype: rss + feedid: 17f13db777713e22b22df52a1bb63b85 + websites: + https://tidyfirst.substack.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://therealadam.com/feed.xml + categories: [] + relme: {} + last_post_title: 'Standups: Individual → Teammate' + last_post_description: I was asked about standup meetings the other day— When should + they be run? How long? What topics? How big a team? What questions? People Hang + on. We’re missing the point here. What fundamental + last_post_date: "2024-07-08T15:49:14Z" + last_post_link: https://tidyfirst.substack.com/p/standups-individual-teammate + last_post_categories: [] + last_post_language: "" + last_post_guid: a061eda58e831f70c4f5008726057baf + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-18013afca60ab3789da0dfd7d3836ff2.md b/content/discover/feed-18013afca60ab3789da0dfd7d3836ff2.md new file mode 100644 index 000000000..0cc82ff48 --- /dev/null +++ b/content/discover/feed-18013afca60ab3789da0dfd7d3836ff2.md @@ -0,0 +1,41 @@ +--- +title: Terry Chen +date: "2024-03-07T22:47:51-08:00" +description: BE INSPIRED +params: + feedlink: https://t3rrychan.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 18013afca60ab3789da0dfd7d3836ff2 + websites: + https://t3rrychan.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://t3rrychan.blogspot.com/: true + https://www.blogger.com/profile/05656028510897454921: true + last_post_title: Exploring xsd.core + last_post_description: "" + last_post_date: "2009-08-19T03:39:29-07:00" + last_post_link: https://t3rrychan.blogspot.com/2009/08/exploring-xsdcore.html + last_post_categories: [] + last_post_language: "" + last_post_guid: b7b146078e0dfd94ac09d235d41c0643 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1808ad8e662ff74066fb7217ff97da1f.md b/content/discover/feed-1808ad8e662ff74066fb7217ff97da1f.md deleted file mode 100644 index 818321582..000000000 --- a/content/discover/feed-1808ad8e662ff74066fb7217ff97da1f.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Mike -date: "1970-01-01T00:00:00Z" -description: Public posts from @mikestreety@hachyderm.io -params: - feedlink: https://hachyderm.io/@mikestreety.rss - feedtype: rss - feedid: 1808ad8e662ff74066fb7217ff97da1f - websites: - https://hachyderm.io/@mikestreety: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://alehouse.rocks/: true - https://www.behindthesource.co.uk/: true - https://www.mikestreety.co.uk/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-18266e158161f9ee3a1dfc3b7c109fbb.md b/content/discover/feed-18266e158161f9ee3a1dfc3b7c109fbb.md deleted file mode 100644 index 19905663e..000000000 --- a/content/discover/feed-18266e158161f9ee3a1dfc3b7c109fbb.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: Dan Q -date: "1970-01-01T00:00:00Z" -description: 'Personal blog of Dan Q: hacker, magician, geocacher, gamer...' -params: - feedlink: https://danq.uk/feed/ - feedtype: rss - feedid: 18266e158161f9ee3a1dfc3b7c109fbb - websites: - https://danq.uk/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Personal - - email - - geeky - - published on gemini - - rss - - spam - relme: {} - last_post_title: '[Article] Somewhat-Effective Spam Filters' - last_post_description: I've tried a variety of unusual anti-spam solutions. Here's - how they worked out for me. - last_post_date: "2024-06-04T11:27:38+01:00" - last_post_link: https://danq.me/2024/06/04/somewhat-effective-spam-filters/ - last_post_categories: - - Personal - - email - - geeky - - published on gemini - - rss - - spam - last_post_guid: 3b4dc0ddba97c6c54905c30459701c77 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-182ea5388ec9665307251217ee5e9941.md b/content/discover/feed-182ea5388ec9665307251217ee5e9941.md index 457760b7a..c92f56ae8 100644 --- a/content/discover/feed-182ea5388ec9665307251217ee5e9941.md +++ b/content/discover/feed-182ea5388ec9665307251217ee5e9941.md @@ -7,49 +7,53 @@ params: feedtype: rss feedid: 182ea5388ec9665307251217ee5e9941 websites: - https://mjtsai.com/blog: true https://mjtsai.com/blog/: false blogrolls: [] recommended: [] recommender: - https://blog.numericcitizen.me/feed.xml - https://blog.numericcitizen.me/podcast.xml - - https://www.manton.org/feed - https://www.manton.org/feed.xml - https://www.manton.org/podcast.xml categories: + - Apple Intelligence + - HomePod + - Rumor + - Siri - Technology - - Copilot+ PCs - - Dark Patterns - - Privacy - - Windows - - Windows 11 - relme: - https://mastodon.social/@mjtsai: false - last_post_title: Privacy of Windows Copilot+ Recall - last_post_description: 'Kevin Beaumont (via Stephen Hackett): Microsoft told media - outlets a hacker cannot exfiltrate Copilot+ Recall activity remotely.Reality: - how do you think hackers will exfiltrate this plain text' - last_post_date: "2024-06-03T18:57:56Z" - last_post_link: https://mjtsai.com/blog/2024/06/03/privacy-of-windows-copilot-recall/ + - iOS + - iOS 18 + relme: {} + last_post_title: Apple Intelligence for Siri in Spring 2025 + last_post_description: 'William Gallagher: While many Apple Intelligence features + will roll out with iOS 18 during the remainder of 2024, its much-awaited revamp + of Siri will wait until iOS 18.4 in 2025.[…]Before then,' + last_post_date: "2024-07-08T17:54:56Z" + last_post_link: https://mjtsai.com/blog/2024/07/08/apple-intelligence-for-siri-in-spring-2025/ last_post_categories: + - Apple Intelligence + - HomePod + - Rumor + - Siri - Technology - - Copilot+ PCs - - Dark Patterns - - Privacy - - Windows - - Windows 11 - last_post_guid: 0a776550303ea4be3c410b1b1dc07cc7 + - iOS + - iOS 18 + last_post_language: "" + last_post_guid: 63d78e6855bcb33df4531e32a0099b86 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 - relme: 1 + relme: 0 title: 3 - website: 2 - score: 14 + website: 1 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-182f25c72c8b34bbde7901b557604aec.md b/content/discover/feed-182f25c72c8b34bbde7901b557604aec.md deleted file mode 100644 index 5086548f5..000000000 --- a/content/discover/feed-182f25c72c8b34bbde7901b557604aec.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Excursions by Amit Gawande -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://amitgawande.com/feed - feedtype: rss - feedid: 182f25c72c8b34bbde7901b557604aec - websites: - https://amitgawande.com/: false - https://essays.amitgawande.com/: false - https://www.amitgawande.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/am1t: true - https://micro.blog/amit: false - https://social.lol/@amit: false - last_post_title: Today, I pushed a minor release … - last_post_description: Today, I pushed a minor release for Posts Stats plugin that - enables (and defaults to) collapsing the table for the posts by year. You can - expand the table by clicking the “Show Posts by Year” - last_post_date: "2024-05-25T18:45:27+05:30" - last_post_link: https://www.amitgawande.com/2024/05/25/today-i-pushed.html - last_post_categories: [] - last_post_guid: 4a7c5607b8b31fc49963e142dcbb3542 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1833ef0caad4693a6e6b75c768fbb9c8.md b/content/discover/feed-1833ef0caad4693a6e6b75c768fbb9c8.md new file mode 100644 index 000000000..03daa373a --- /dev/null +++ b/content/discover/feed-1833ef0caad4693a6e6b75c768fbb9c8.md @@ -0,0 +1,40 @@ +--- +title: Mario's adventures in geekery +date: "2024-03-05T16:09:55-06:00" +description: "" +params: + feedlink: https://supermario-world.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 1833ef0caad4693a6e6b75c768fbb9c8 + websites: + https://supermario-world.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://supermario-world.blogspot.com/: true + last_post_title: IR Receiver extension for Ambilight raspberry pi clone + last_post_description: "" + last_post_date: "2014-04-23T00:48:48-05:00" + last_post_link: https://supermario-world.blogspot.com/2014/04/ir-receiver-extension-for-ambilight.html + last_post_categories: [] + last_post_language: "" + last_post_guid: c47aec9318c6c07cd21ba70bc4581cfa + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-183c231b70ef5f1519c202645df136ce.md b/content/discover/feed-183c231b70ef5f1519c202645df136ce.md new file mode 100644 index 000000000..233be7c2a --- /dev/null +++ b/content/discover/feed-183c231b70ef5f1519c202645df136ce.md @@ -0,0 +1,42 @@ +--- +title: python on GeekSocket +date: "1970-01-01T00:00:00Z" +description: Recent content in python on GeekSocket +params: + feedlink: https://geeksocket.in/tags/python/index.xml + feedtype: rss + feedid: 183c231b70ef5f1519c202645df136ce + websites: + https://geeksocket.in/tags/python/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://geeksocket.in/tags/python/: true + last_post_title: How to live stream a meetup event + last_post_description: Due to current situation of COVID-19 pandemic, we (PythonPune) + decided to have our March month’s meetup as an online event. Although we live + streamed one meetup in September 2019, this time it was + last_post_date: "2020-04-18T18:07:50+05:30" + last_post_link: https://geeksocket.in/posts/live-stream-meetup-event/ + last_post_categories: [] + last_post_language: "" + last_post_guid: b1cb8655820a57c40f833f0ac86375ec + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-186442c1e91e118a972fd0f7f597512b.md b/content/discover/feed-186442c1e91e118a972fd0f7f597512b.md new file mode 100644 index 000000000..bf40b6dc3 --- /dev/null +++ b/content/discover/feed-186442c1e91e118a972fd0f7f597512b.md @@ -0,0 +1,42 @@ +--- +title: so… +date: "2024-05-22T08:50:50Z" +description: Norm's musings. Make of them what you will. +params: + feedlink: https://so.nwalsh.com/feed/fulltext.xml + feedtype: atom + feedid: 186442c1e91e118a972fd0f7f597512b + websites: + https://so.nwalsh.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - SelfReference + relme: + https://so.nwalsh.com/: true + last_post_title: Feeds fixed + last_post_description: The Atom feeds are unbroken now. + last_post_date: "2024-05-22T08:50:50Z" + last_post_link: https://so.nwalsh.com/2024/05/22/feeds + last_post_categories: + - SelfReference + last_post_language: "" + last_post_guid: b5fdfb2a92e81df4190a45fb4aa4f2c5 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-188f6595bb246e1cc613742b1928571f.md b/content/discover/feed-188f6595bb246e1cc613742b1928571f.md new file mode 100644 index 000000000..13a4c73b4 --- /dev/null +++ b/content/discover/feed-188f6595bb246e1cc613742b1928571f.md @@ -0,0 +1,43 @@ +--- +title: EMACSPEAK The Complete Audio Desktop +date: "2024-07-05T11:33:22-07:00" +description: Here is where I plan to Blog Emacspeak tricks and introduce new features + as I implement them. +params: + feedlink: https://emacspeak.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 188f6595bb246e1cc613742b1928571f + websites: + https://emacspeak.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - "60.0" + - DreamDog + relme: + https://emacspeak.blogspot.com/: true + last_post_title: Emacspeak 60.0 (DreamDog) Unleashed! + last_post_description: "" + last_post_date: "2024-05-03T11:39:39-07:00" + last_post_link: https://emacspeak.blogspot.com/2024/05/emacspeak-600-dreamdog-unleashed.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 991d8e3e00b077a0acdebeb7e1fb87d8 + score_criteria: + cats: 2 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-189cd53b1b21173a857bea5930dd8d85.md b/content/discover/feed-189cd53b1b21173a857bea5930dd8d85.md deleted file mode 100644 index 5eb3fb006..000000000 --- a/content/discover/feed-189cd53b1b21173a857bea5930dd8d85.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: MinutePhysics -date: "1970-01-01T00:00:00Z" -description: 'Simply put: cool physics and other sweet science.' -params: - feedlink: https://rss.nebula.app/video/channels/minutephysics.rss?plus=true - feedtype: rss - feedid: 189cd53b1b21173a857bea5930dd8d85 - websites: - https://nebula.tv/minutephysics/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Animation - - Science - relme: {} - last_post_title: Cut from the Windmill Paradox | Nebula Plus - last_post_description: 'Duration: 8:42This is a companion behind-the-scenes video - to the main Windmill Paradox video, explaining some of the math that I couldn''t - get into in the main video.' - last_post_date: "2021-04-01T14:32:00Z" - last_post_link: https://nebula.tv/videos/minutephysics-cut-from-the-windmill-paradox/ - last_post_categories: - - Animation - - Science - last_post_guid: ae06548d7a43b8855d574ce03fcbe17f - score_criteria: - cats: 0 - description: 3 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-18a67d68ba8f139357b1eb50d4ad6a6f.md b/content/discover/feed-18a67d68ba8f139357b1eb50d4ad6a6f.md deleted file mode 100644 index d3f148bf4..000000000 --- a/content/discover/feed-18a67d68ba8f139357b1eb50d4ad6a6f.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Tail -f sbauza.log -date: "1970-01-01T00:00:00Z" -description: Thoughts about Python, Linux, home automation or Openstack -params: - feedlink: https://sbauza.wordpress.com/feed/ - feedtype: rss - feedid: 18a67d68ba8f139357b1eb50d4ad6a6f - websites: - https://sbauza.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Openstack - - Python - - in - - openstack - relme: {} - last_post_title: How to compare 2 patchsets in Gerrit ? - last_post_description: Reviewing is one of my duties I’m doing daily. I try to dedicate - around 2 hours each day in reading code, understanding the principles, checking - if everything is OK from a Python perspective, - last_post_date: "2014-11-14T10:26:07Z" - last_post_link: https://sbauza.wordpress.com/2014/11/14/how-to-compare-2-patchsets-in-gerrit/ - last_post_categories: - - Openstack - - Python - - in - - openstack - last_post_guid: 2ce6828e4a6917558044d3f8f3374c29 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-18b226f2696002789463e37fe52ec69b.md b/content/discover/feed-18b226f2696002789463e37fe52ec69b.md new file mode 100644 index 000000000..0ea56de4d --- /dev/null +++ b/content/discover/feed-18b226f2696002789463e37fe52ec69b.md @@ -0,0 +1,57 @@ +--- +title: pyx +date: "1970-01-01T00:00:00Z" +description: '|piks| n. a box at the Royal Mint in which specimen gold and silver + coins are deposited to be tested annually at the trial of the pyx.' +params: + feedlink: https://donovanpreston.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 18b226f2696002789463e37fe52ec69b + websites: + https://donovanpreston.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Mac OS X + - MacPython + - Nevow + - firefoxos + - impulsecurrents + - magnifyingtransmitter + - onewire + - peer-to-peer + - screencast + - single-page-apps + - tesla + - tutorial + - wardenclyffe + relme: + https://donovanpreston.blogspot.com/: true + https://www.blogger.com/profile/07076057843365973055: true + last_post_title: Guido doesn't want non-portable assembly in Python and it's understandable + last_post_description: (I wrote a long comment in the Hacker News discussion of + Guido's slides about his plans for async io and asymmetric coroutines in Python + 3.4, but I thought it was good enough to deserve a blog + last_post_date: "2013-03-19T15:28:00Z" + last_post_link: https://donovanpreston.blogspot.com/2013/03/guido-doesnt-want-non-portable-assembly.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 445d02a1bcd2419ca6cd9614745e346b + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-18ca7f70c73cb313fe0f6e8b71f03533.md b/content/discover/feed-18ca7f70c73cb313fe0f6e8b71f03533.md deleted file mode 100644 index 86d0781bb..000000000 --- a/content/discover/feed-18ca7f70c73cb313fe0f6e8b71f03533.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Ben Werdmuller -date: "1970-01-01T00:00:00Z" -description: Public posts from @ben@werd.social -params: - feedlink: https://werd.social/@ben.rss - feedtype: rss - feedid: 18ca7f70c73cb313fe0f6e8b71f03533 - websites: - https://werd.social/@ben: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://werd.io/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-18cc29f53f3843bc8c9f32487a2a62c3.md b/content/discover/feed-18cc29f53f3843bc8c9f32487a2a62c3.md new file mode 100644 index 000000000..a4eb8df1c --- /dev/null +++ b/content/discover/feed-18cc29f53f3843bc8c9f32487a2a62c3.md @@ -0,0 +1,44 @@ +--- +title: Cédric Moullet +date: "2024-03-20T04:48:32-07:00" +description: "" +params: + feedlink: https://cedricmoullet.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 18cc29f53f3843bc8c9f32487a2a62c3 + websites: + https://cedricmoullet.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://cedricmoullet.blogspot.com/: true + https://geoext.blogspot.com/: true + https://openaddresses.blogspot.com/: true + https://teamtesag.blogspot.com/: true + https://www.blogger.com/profile/06947117799577904122: true + last_post_title: 'Gigathlon 2013: 100 jours de préparation' + last_post_description: "" + last_post_date: "2013-07-14T09:16:29-07:00" + last_post_link: https://cedricmoullet.blogspot.com/2013/07/gigathlon-2013-100-jours-de-preparation.html + last_post_categories: [] + last_post_language: "" + last_post_guid: e70ff234f60f194daff5242b76e33690 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-18f21af2f95cf6e9730cadbde53ff5d1.md b/content/discover/feed-18f21af2f95cf6e9730cadbde53ff5d1.md new file mode 100644 index 000000000..31ab2089a --- /dev/null +++ b/content/discover/feed-18f21af2f95cf6e9730cadbde53ff5d1.md @@ -0,0 +1,47 @@ +--- +title: Benvenuti! on syntaxerrormmm's digital lair +date: "1970-01-01T00:00:00Z" +description: syntaxerrormmm's digital lair (Benvenuti!) +params: + feedlink: https://sys42.eu/index.xml + feedtype: rss + feedid: 18f21af2f95cf6e9730cadbde53ff5d1 + websites: + https://sys42.eu/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://git.sys42.eu/syntaxerrormmm: true + https://github.com/syntaxerrormmm: true + https://keybase.io/syntaxerrormmm: true + https://sys42.eu/: true + last_post_title: Un giro con Paperless NGX + last_post_description: |- + Ho deciso di dare a Paperless NGX una + chance, anche se non sono del tutto convinto che il caso d’uso casalingo si + confaccia così tanto alla promise del progetto. Paperless NGX è un sistema + di + last_post_date: "2024-03-21T23:00:00+01:00" + last_post_link: https://sys42.eu/posts/2024-03-18/ + last_post_categories: [] + last_post_language: "" + last_post_guid: c22d63d73497fae3abb24174d618e1ff + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: it +--- diff --git a/content/discover/feed-18fd07e0b5582550ae4f44a30e1206fd.md b/content/discover/feed-18fd07e0b5582550ae4f44a30e1206fd.md new file mode 100644 index 000000000..e55cb853e --- /dev/null +++ b/content/discover/feed-18fd07e0b5582550ae4f44a30e1206fd.md @@ -0,0 +1,59 @@ +--- +title: Alex's blog +date: "2024-06-14T22:59:46-07:00" +description: "" +params: + feedlink: https://asurkov.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 18fd07e0b5582550ae4f44a30e1206fd + websites: + https://asurkov.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - AT + - DOMi + - HTML + - IAccessible2 + - UIA + - a11y + - aria + - atk + - code + - engagement + - firefox-for-AT + - mathml + - me + - mozilla + - russia + - squabbles + - tech + - traveling + - web + relme: + https://asurkov.blogspot.com/: true + last_post_title: 2nd grade math + last_post_description: "" + last_post_date: "2017-02-28T21:45:08-08:00" + last_post_link: https://asurkov.blogspot.com/2017/02/2nd-grade-math.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 95d1a6e74e57a15e1b0775077944c1c0 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-18fec381710697512a4c8494fc954ffa.md b/content/discover/feed-18fec381710697512a4c8494fc954ffa.md new file mode 100644 index 000000000..e94351e08 --- /dev/null +++ b/content/discover/feed-18fec381710697512a4c8494fc954ffa.md @@ -0,0 +1,46 @@ +--- +title: Leonora Tindall on Nora Codes +date: "1970-01-01T00:00:00Z" +description: Recent content in Leonora Tindall on Nora Codes +params: + feedlink: https://nora.codes/index.xml + feedtype: rss + feedid: 18fec381710697512a4c8494fc954ffa + websites: + https://nora.codes/: true + blogrolls: [] + recommended: [] + recommender: + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php + categories: [] + relme: + https://git.nora.codes/nora: true + https://github.com/NoraCodes: true + https://nora.codes/: true + last_post_title: A Matter of Time + last_post_description: “The Temper of Revenge” is one of my favorite filksongs, + though I was introduced to it by the Star Trek II-related parody, “The Temperature + of Revenge”. A few weeks ago, on a bus from Madison + last_post_date: "2024-06-02T00:00:00Z" + last_post_link: https://nora.codes/filk/a_matter_of_time/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 7b7be916880dc88d60a96b31db117408 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-1919e6aeed5ca2eb7fe9a174f3099cb5.md b/content/discover/feed-1919e6aeed5ca2eb7fe9a174f3099cb5.md deleted file mode 100644 index cd5c5b55a..000000000 --- a/content/discover/feed-1919e6aeed5ca2eb7fe9a174f3099cb5.md +++ /dev/null @@ -1,70 +0,0 @@ ---- -title: Cloud Architect Musings -date: "1970-01-01T00:00:00Z" -description: Musings On Cloud Computing and Cloud Native Applications -params: - feedlink: https://cloudarchitectmusings.com/feed/ - feedtype: rss - feedid: 1919e6aeed5ca2eb7fe9a174f3099cb5 - websites: - https://cloudarchitectmusings.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Amazon Web Services - - Amazon Web Services 301 - - AWS - - AWS 301 - - Cloud - - cryptography - - Cybersecurity - - Encryption - - IT Security - - Learning AWS - - Public Cloud - - Cloud computing - - CloudHSM - - Custom key store - - HSM - - Key Management Service - - KMS - relme: {} - last_post_title: Using AWS KMS Custom Key Store with CloudHSM to Encrypt Your Data - last_post_description: I tend to follow cloud security news closely these days, - particularly anything related to data encryption. That’s why one of the AWS re:Invent - announcements that was of most interest to me actually - last_post_date: "2018-12-18T16:19:23Z" - last_post_link: https://cloudarchitectmusings.com/2018/12/18/using-aws-kms-custom-key-store-with-cloudhsm-to-encrypt-your-data/ - last_post_categories: - - Amazon Web Services - - Amazon Web Services 301 - - AWS - - AWS 301 - - Cloud - - cryptography - - Cybersecurity - - Encryption - - IT Security - - Learning AWS - - Public Cloud - - Cloud computing - - CloudHSM - - Custom key store - - HSM - - Key Management Service - - KMS - last_post_guid: f98e79b4f904c5ff3159f61c10204278 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-191baa28f6191ea64f9760944fa14903.md b/content/discover/feed-191baa28f6191ea64f9760944fa14903.md deleted file mode 100644 index a19560064..000000000 --- a/content/discover/feed-191baa28f6191ea64f9760944fa14903.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Jeff Jarvis Medium shadow -date: "1970-01-01T00:00:00Z" -description: Public posts from @jeffjarvis@me.dm -params: - feedlink: https://me.dm/@jeffjarvis.rss - feedtype: rss - feedid: 191baa28f6191ea64f9760944fa14903 - websites: - https://me.dm/@jeffjarvis: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://medium.com/@jeffjarvis: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-193221795d9755d84e234dc3323b9df3.md b/content/discover/feed-193221795d9755d84e234dc3323b9df3.md new file mode 100644 index 000000000..7820be644 --- /dev/null +++ b/content/discover/feed-193221795d9755d84e234dc3323b9df3.md @@ -0,0 +1,41 @@ +--- +title: Rust Blog +date: "2024-06-26T23:17:01Z" +description: Empowering everyone to build reliable and efficient software. +params: + feedlink: https://blog.rust-lang.org/feed.xml + feedtype: atom + feedid: 193221795d9755d84e234dc3323b9df3 + websites: + https://blog.rust-lang.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://blog.rust-lang.org/: true + https://social.rust-lang.org/@rust: true + last_post_title: Types Team Update and Roadmap + last_post_description: "" + last_post_date: "2024-06-26T00:00:00Z" + last_post_link: https://blog.rust-lang.org/2024/06/26/types-team-update.html + last_post_categories: [] + last_post_language: "" + last_post_guid: d80b65c4f8e26f20f4e709ef0e034d09 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-1937db58827da0bd9d410ff0b6ec390e.md b/content/discover/feed-1937db58827da0bd9d410ff0b6ec390e.md new file mode 100644 index 000000000..ff22fa267 --- /dev/null +++ b/content/discover/feed-1937db58827da0bd9d410ff0b6ec390e.md @@ -0,0 +1,45 @@ +--- +title: Research Blog +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://haskellresearchblog.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 1937db58827da0bd9d410ff0b6ec390e + websites: + https://haskellresearchblog.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://chrismbrown.blogspot.com/: true + https://exploringmusicality.blogspot.com/: true + https://haskellresearchblog.blogspot.com/: true + https://www.blogger.com/profile/16371443231577684670: true + last_post_title: Orbits of Finite Fields + last_post_description: 'instance OMData Arith where toOM (Matrix rows) = OM "OMA" + [] (concat (matrixOMS : map (writeOMObj . toOM) rows)) toOM (MatrixRow ariths) + = OM "OMA" [] (concat (matrixRowOMS : map (writeOMObj .' + last_post_date: "2010-09-22T09:06:00Z" + last_post_link: https://haskellresearchblog.blogspot.com/2010/09/orbits-of-finite-fields.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 6884a59cc7a33ddc4cfb0737caccd94f + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-195f6db65bebaa3c0ad0d15129981e6f.md b/content/discover/feed-195f6db65bebaa3c0ad0d15129981e6f.md new file mode 100644 index 000000000..08d85572d --- /dev/null +++ b/content/discover/feed-195f6db65bebaa3c0ad0d15129981e6f.md @@ -0,0 +1,64 @@ +--- +title: The Dripping Tap +date: "1970-01-01T00:00:00Z" +description: Game Design TTRPG Blog +params: + feedlink: https://dripping-tap.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 195f6db65bebaa3c0ad0d15129981e6f + websites: + https://dripping-tap.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - Dead Buddhas + - Design + - Dungeon + - Dungeon23 + - Errant + - GLOGtober + - GLoG + - Lore24 + - Mega Dungeon + - OSR + - Play Report + - Resources + - Silk Road + - Talzur + - Urban Fantasy + - YADN + relme: + https://dripping-tap.blogspot.com/: true + last_post_title: Covenant with a Succubus (Jewish Demon Queen) + last_post_description: These testaments are player options for the Zealot class + for KillJester's ttrpg Errant. They come from the playtest of my Jewish mythology + megadungeon MYR REGATH, now cancelled for logistics reasons + last_post_date: "2024-05-17T18:41:00Z" + last_post_link: https://dripping-tap.blogspot.com/2024/05/covenants-succubus.html + last_post_categories: + - Design + - Errant + - OSR + last_post_language: "" + last_post_guid: 81dee26c832374881f63640eb3eb8763 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 26 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-196f73e8cf4330017ab92ef17541ebea.md b/content/discover/feed-196f73e8cf4330017ab92ef17541ebea.md index 7f12571b7..f58384092 100644 --- a/content/discover/feed-196f73e8cf4330017ab92ef17541ebea.md +++ b/content/discover/feed-196f73e8cf4330017ab92ef17541ebea.md @@ -1,6 +1,6 @@ --- title: The Verge - All Posts -date: "2024-06-04T05:22:11-04:00" +date: "2024-07-08T22:57:47-04:00" description: "" params: feedlink: https://www.theverge.com/rss/index.xml @@ -14,23 +14,28 @@ params: recommender: [] categories: [] relme: - https://mastodon.social/@verge: false - last_post_title: Aptoide’s iOS game store launches on Thursday + https://www.theverge.com/: true + last_post_title: Hulu is down for a lot of people right now last_post_description: "" - last_post_date: "2024-06-04T05:22:11-04:00" - last_post_link: https://www.theverge.com/2024/6/4/24171037/aptoide-ios-game-store-eu-third-party-app-dma + last_post_date: "2024-07-08T22:57:47-04:00" + last_post_link: https://www.theverge.com/2024/7/8/24194699/hulu-down-outage-error-streaming last_post_categories: [] - last_post_guid: fed49e7d0509c6dcf9817e1f5eb94a85 + last_post_language: "" + last_post_guid: 5adbc4e92376bc3d3029c1b3bf7d88d8 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 6 + score: 11 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-19780746d7549f75c734c29898e253c4.md b/content/discover/feed-19780746d7549f75c734c29898e253c4.md new file mode 100644 index 000000000..cfa6da4a1 --- /dev/null +++ b/content/discover/feed-19780746d7549f75c734c29898e253c4.md @@ -0,0 +1,46 @@ +--- +title: Griatch's Evennia musings +date: "2024-03-14T04:16:16+01:00" +description: Evennia MUD server development +params: + feedlink: https://evennia.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 19780746d7549f75c734c29898e253c4 + websites: + https://evennia.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - announcement + - community + - contribution + - roleplay + - server-development + relme: + https://evennia.blogspot.com/: true + last_post_title: The Evennia blog has moved to evennia.com! + last_post_description: "" + last_post_date: "2021-11-20T15:31:56+01:00" + last_post_link: https://evennia.blogspot.com/2021/11/the-evennia-blog-has-moved-to-evenniacom.html + last_post_categories: + - announcement + last_post_language: "" + last_post_guid: 95347fddbedb288c671d5371eff2ffa6 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-197ef27e4252a4eee7745d3a42257cc5.md b/content/discover/feed-197ef27e4252a4eee7745d3a42257cc5.md new file mode 100644 index 000000000..78351479d --- /dev/null +++ b/content/discover/feed-197ef27e4252a4eee7745d3a42257cc5.md @@ -0,0 +1,46 @@ +--- +title: Open Source Musings +date: "1970-01-01T00:00:00Z" +description: Random thoughts and discussions mostly about open source, including business + and economic models. Discussions about software engineering, Eclipse, SOA, game + theory, project management, and other +params: + feedlink: https://osmusings.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 197ef27e4252a4eee7745d3a42257cc5 + websites: + https://osmusings.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://dataplat.blogspot.com/: true + https://osmusings.blogspot.com/: true + https://www.blogger.com/profile/02062334031161915809: true + last_post_title: WPI Presentation + last_post_description: In early April I gave a talk at the WPI Computer Science + Colloquium.You can find a copy of the presentation here. In the coming weeks I'll + discuss a number of topics from that presentation on this + last_post_date: "2013-06-27T19:20:00Z" + last_post_link: https://osmusings.blogspot.com/2013/06/wpi-presentation.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 1be7d07449471745587b53a89d87dc49 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-198fd4c17dbdfe6be401978b82d25259.md b/content/discover/feed-198fd4c17dbdfe6be401978b82d25259.md deleted file mode 100644 index 0667457de..000000000 --- a/content/discover/feed-198fd4c17dbdfe6be401978b82d25259.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: '@garrettc.social - garrettc' -date: "1970-01-01T00:00:00Z" -description: |- - Web developer, music and film junkie, terrible guitarist, average photographer, scifi geek. He/Him. - - Hello to Jason Isaacs. - - Fediverse: https://mastodon.org.uk/@garrettc -params: - feedlink: https://bsky.app/profile/did:plc:njbf3qswn6ynz66j6q4xedia/rss - feedtype: rss - feedid: 198fd4c17dbdfe6be401978b82d25259 - websites: - https://bsky.app/profile/garrettc.social: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-19947bbcd66c91a5d16a572fe3035377.md b/content/discover/feed-19947bbcd66c91a5d16a572fe3035377.md deleted file mode 100644 index 2ac7a6519..000000000 --- a/content/discover/feed-19947bbcd66c91a5d16a572fe3035377.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Doc Searls Weblog -date: "1970-01-01T00:00:00Z" -description: Just trying to make stuff happen -params: - feedlink: https://blogs.harvard.edu/doc/feed/ - feedtype: rss - feedid: 19947bbcd66c91a5d16a572fe3035377 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://frankmeeuwsen.com/feed.xml - categories: - - Archives - - history - relme: {} - last_post_title: Archiving a Way - last_post_description: 'My father, Allen H. Searls, was an archivist. Not a formal - one, but good in the vernacular, at least when it came to one of the most consequential - things he did in his life: helping build the George' - last_post_date: "2024-06-03T16:43:49Z" - last_post_link: https://doc.searls.com/2024/06/03/archiving-a-way/ - last_post_categories: - - Archives - - history - last_post_guid: a11cc2651d035ecefd2c200cb69b9ba6 - score_criteria: - cats: 0 - description: 3 - postcats: 2 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1998be85c84eedbe421561e15cc6eacb.md b/content/discover/feed-1998be85c84eedbe421561e15cc6eacb.md deleted file mode 100644 index 3f550f532..000000000 --- a/content/discover/feed-1998be85c84eedbe421561e15cc6eacb.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for text/plain -date: "1970-01-01T00:00:00Z" -description: ericlaw talks about security, the web, and software in general -params: - feedlink: https://textslashplain.com/comments/feed/ - feedtype: rss - feedid: 1998be85c84eedbe421561e15cc6eacb - websites: - https://textslashplain.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: 'Comment on Attack Techniques: Full-Trust Script Downloads by ericlaw' - last_post_description: |- - In reply to Alan. - - If a "malicious actor" has a command prompt on your - last_post_date: "2024-05-24T17:34:06Z" - last_post_link: https://textslashplain.com/2024/05/20/attack-techniques-full-trust-script-downloads/comment-page-1/#comment-38443 - last_post_categories: [] - last_post_guid: 6e577c1aaf76b91d5f15c83466c44f7d - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-199d20bba7bfa01c3511f3c93abc2f17.md b/content/discover/feed-199d20bba7bfa01c3511f3c93abc2f17.md new file mode 100644 index 000000000..7e76daf2b --- /dev/null +++ b/content/discover/feed-199d20bba7bfa01c3511f3c93abc2f17.md @@ -0,0 +1,139 @@ +--- +title: Chegg Is Best Place To Study +date: "2024-03-07T22:04:33-08:00" +description: Chegg where you get online study +params: + feedlink: https://tintacomdo.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 199d20bba7bfa01c3511f3c93abc2f17 + websites: + https://tintacomdo.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Chegg is Beauty full place + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Chegg Is good Way To Learn + last_post_description: "" + last_post_date: "2021-05-07T11:57:56-07:00" + last_post_link: https://tintacomdo.blogspot.com/2021/05/chegg-is-good-way-to-learn.html + last_post_categories: + - Chegg is Beauty full place + last_post_language: "" + last_post_guid: 1f59041d0af9f59f1e6efb9d3dfcf3c5 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-19a17f454f16b288c536bb9d93aef8e6.md b/content/discover/feed-19a17f454f16b288c536bb9d93aef8e6.md deleted file mode 100644 index 25d1c7c3e..000000000 --- a/content/discover/feed-19a17f454f16b288c536bb9d93aef8e6.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: brendon bigley -date: "1970-01-01T00:00:00Z" -description: Public posts from @brendon@idlethumbs.social -params: - feedlink: https://idlethumbs.social/@brendon.rss - feedtype: rss - feedid: 19a17f454f16b288c536bb9d93aef8e6 - websites: - https://idlethumbs.social/@brendon: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://intothecast.online/: false - https://wavelengths.online/: true - https://www.macstories.net/npc/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-19b8e4900d047216887791e733423f2c.md b/content/discover/feed-19b8e4900d047216887791e733423f2c.md new file mode 100644 index 000000000..1df1896d4 --- /dev/null +++ b/content/discover/feed-19b8e4900d047216887791e733423f2c.md @@ -0,0 +1,58 @@ +--- +title: The Zhodani Base +date: "1970-01-01T00:00:00Z" +description: All your base are belong to us +params: + feedlink: https://zhodani.space/feed/ + feedtype: rss + feedid: 19b8e4900d047216887791e733423f2c + websites: + https://zhodani.space/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - AI + - FFW + - Fifth Frontier War + - Model-1 + - Suno + - Traveller + - Zhodani + relme: {} + last_post_title: Battle of the Stars + last_post_description: The Zhodani fight for freedom, for justice and for all. Against + the sinister forces of the Imperium, they stand tall. Please listen to this important + message from the Zhodani propaganda rock + last_post_date: "2024-04-22T06:42:39Z" + last_post_link: https://zhodani.space/2024/04/22/battle-of-the-stars/ + last_post_categories: + - AI + - FFW + - Fifth Frontier War + - Model-1 + - Suno + - Traveller + - Zhodani + last_post_language: "" + last_post_guid: 6a38c60808f091accb96b5c8ab08cbf8 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-19bccbe8d5710ae594e313ae23dda1e1.md b/content/discover/feed-19bccbe8d5710ae594e313ae23dda1e1.md deleted file mode 100644 index 78a2c83f2..000000000 --- a/content/discover/feed-19bccbe8d5710ae594e313ae23dda1e1.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: meejah -date: "1970-01-01T00:00:00Z" -description: Public posts from @meejah@fosstodon.org -params: - feedlink: https://fosstodon.org/@meejah.rss - feedtype: rss - feedid: 19bccbe8d5710ae594e313ae23dda1e1 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-19da3e710a0c19f206eee803cebc0c7c.md b/content/discover/feed-19da3e710a0c19f206eee803cebc0c7c.md deleted file mode 100644 index 4908b446b..000000000 --- a/content/discover/feed-19da3e710a0c19f206eee803cebc0c7c.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: '@eay.social - Stefan Grund' -date: "1970-01-01T00:00:00Z" -description: "\U0001F468\U0001F3FB‍\U0001F4BB Building digital things for fun and - profit · \U0001F468‍\U0001F469‍\U0001F467 Living with my wonderful wife & baby daughter - near Cologne, Germany · \U0001F996 May contain traces of pop culture & tech" -params: - feedlink: https://bsky.app/profile/did:plc:fqhyfvx3qc6dcfsz4xslmlua/rss - feedtype: rss - feedid: 19da3e710a0c19f206eee803cebc0c7c - websites: - https://bsky.app/profile/eay.social: true - https://staging.bsky.app/profile/eay.social: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-19ef53c7bc904a2cd826b5ff0fe3ddc6.md b/content/discover/feed-19ef53c7bc904a2cd826b5ff0fe3ddc6.md index 1a2640ff4..a689b70e0 100644 --- a/content/discover/feed-19ef53c7bc904a2cd826b5ff0fe3ddc6.md +++ b/content/discover/feed-19ef53c7bc904a2cd826b5ff0fe3ddc6.md @@ -21,17 +21,22 @@ params: last_post_date: "2023-04-17T00:00:00Z" last_post_link: https://dataplane.org/jtk/blog/2023/04/run-parts/ last_post_categories: [] + last_post_language: "" last_post_guid: 8fb0ea4351ae7b7f76ea7cd44463fe2b score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-19f510ce8ffeb5a7cd42aa8971c853a6.md b/content/discover/feed-19f510ce8ffeb5a7cd42aa8971c853a6.md deleted file mode 100644 index 1d66ad489..000000000 --- a/content/discover/feed-19f510ce8ffeb5a7cd42aa8971c853a6.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Chuck Jordan -date: "1970-01-01T00:00:00Z" -description: Public posts from @SasquatcherGeneral@idlethumbs.social -params: - feedlink: https://idlethumbs.social/@SasquatcherGeneral.rss - feedtype: rss - feedid: 19f510ce8ffeb5a7cd42aa8971c853a6 - websites: - https://idlethumbs.social/@SasquatcherGeneral: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://sasquatchers.spectrecollie.com/: false - https://www.spectrecollie.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-19f5fcb7f9ca6848e9894f9bf5a2282a.md b/content/discover/feed-19f5fcb7f9ca6848e9894f9bf5a2282a.md new file mode 100644 index 000000000..3a71dee1d --- /dev/null +++ b/content/discover/feed-19f5fcb7f9ca6848e9894f9bf5a2282a.md @@ -0,0 +1,127 @@ +--- +title: the birdhouse in my soul +date: "2024-05-24T21:39:05+02:00" +description: plenty of grains to pick +params: + feedlink: https://virtwo.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 19f5fcb7f9ca6848e9894f9bf5a2282a + websites: + https://virtwo.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 2560x1600 + - Coderdojo + - DNS + - DPM + - Dell + - ESX + - ESXi + - EVC + - FSE + - Hyper-V + - Kufatec + - Lego + - MIDI + - Micro:bit + - Microsoft + - NAS + - NFS + - Network USB Hub + - OPS + - PDC + - QNAP + - RNS510 + - Synology + - SysEx + - UHV + - USB-over-IP + - VCP + - VCSA + - VI3 + - VLAN + - VMware + - VW + - Zimbra + - anywhereUSB + - bluetooth + - car + - carkit + - casemod + - centos + - centos5 + - cisco + - discount + - divider + - dmidecode + - dstat + - duallink dvi + - e71 + - firefox + - firmware + - home lab + - hotplug + - https + - intel + - ipc + - irobot + - linux + - lvm + - marketing + - mkinitrd + - nested virtualization + - nokia + - openssl + - raid + - red hat + - rhel + - roomba + - rs3413xs+ + - rsnapshot + - sata + - sdk + - sparc + - sports tracker + - ssh + - suse + - touch adapter + - update manager + - vApp + - vSphere5 + - vmware tools + - vpshere + - vsphere + - whitebox + - xorg + relme: + https://virtwo.blogspot.com/: true + https://www.blogger.com/profile/14859034314670252617: true + last_post_title: 'Extreme makeover: Sparcstation IPC edition' + last_post_description: "" + last_post_date: "2021-03-19T14:46:48+01:00" + last_post_link: https://virtwo.blogspot.com/2021/03/extreme-makeover-sparcstation-ipc.html + last_post_categories: + - casemod + - ipc + - sparc + last_post_language: "" + last_post_guid: 2ded6834a5c718642df61ebae5260238 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-19ff36b00850a7a4846aa1f66c57d56e.md b/content/discover/feed-19ff36b00850a7a4846aa1f66c57d56e.md deleted file mode 100644 index 677be6c9c..000000000 --- a/content/discover/feed-19ff36b00850a7a4846aa1f66c57d56e.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Shores of the Dirac Sea -date: "2017-11-16T20:34:43Z" -description: A blog about physics... mostly. -params: - feedlink: https://diracseashore.wordpress.com/feed/atom/ - feedtype: atom - feedid: 19ff36b00850a7a4846aa1f66c57d56e - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Uncategorized - relme: {} - last_post_title: What’s on my mind - last_post_description: "" - last_post_date: "2017-11-16T20:34:43Z" - last_post_link: https://diracseashore.wordpress.com/2017/11/16/whats-on-my-mind/ - last_post_categories: - - Uncategorized - last_post_guid: 4bc09d7f396c7897cea666f89a317415 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1a0acdf7750b0fb659b67cdc38a6e878.md b/content/discover/feed-1a0acdf7750b0fb659b67cdc38a6e878.md new file mode 100644 index 000000000..740fffe51 --- /dev/null +++ b/content/discover/feed-1a0acdf7750b0fb659b67cdc38a6e878.md @@ -0,0 +1,43 @@ +--- +title: Tangible Life +date: "1970-01-01T00:00:00Z" +description: The feed of updates to Tangible Life +params: + feedlink: https://tangiblelife.net/feed.rss + feedtype: rss + feedid: 1a0acdf7750b0fb659b67cdc38a6e878 + websites: + https://tangiblelife.net/: true + blogrolls: [] + recommended: [] + recommender: + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php + categories: [] + relme: {} + last_post_title: June Travels + last_post_description: In June, I took three trips. First to Cocoa Beach with the + family after dance recital weekend, then a one-day trip to St. Louis for work + and last my wife and I had a getaway for the last couple of + last_post_date: "2024-07-04T00:00:00-04:00" + last_post_link: https://tangiblelife.net/june-travels + last_post_categories: [] + last_post_language: "" + last_post_guid: 27a3aceb9c7ebf09fa588bbc3a7eb629 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1a0cb5bb967fcdae6345e16e4ff1e674.md b/content/discover/feed-1a0cb5bb967fcdae6345e16e4ff1e674.md new file mode 100644 index 000000000..75843ce0d --- /dev/null +++ b/content/discover/feed-1a0cb5bb967fcdae6345e16e4ff1e674.md @@ -0,0 +1,44 @@ +--- +title: A Very Good Blog by Keenan +date: "2024-07-03T17:45:00Z" +description: This is a very good blog I made all by myself. +params: + feedlink: https://gkeenan.co/avgb/feed.xml + feedtype: atom + feedid: 1a0cb5bb967fcdae6345e16e4ff1e674 + websites: + https://gkeenan.co/: false + https://gkeenan.co/avgb/: false + blogrolls: [] + recommended: [] + recommender: + - https://kevquirk.com/feed + - https://kevquirk.com/feed/ + - https://kevquirk.com/notes-feed + categories: [] + relme: {} + last_post_title: An alarmingly concise and very hinged summary of what it was like + to build this site from scratch + last_post_description: "" + last_post_date: "2024-07-03T17:45:00Z" + last_post_link: https://gkeenan.co/avgb/an-alarmingly-concise-and-very-hinged-summary-of-what-it-was-like-to-build-this-site-from-scratch/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 851c6f407c2d08862f6be3a3bda2fe5c + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 1 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-1a4376cc0c8d7c9d58385a422db953dc.md b/content/discover/feed-1a4376cc0c8d7c9d58385a422db953dc.md deleted file mode 100644 index 822ab00ea..000000000 --- a/content/discover/feed-1a4376cc0c8d7c9d58385a422db953dc.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Pete -date: "1970-01-01T00:00:00Z" -description: Public posts from @Pete@greenfield.social -params: - feedlink: https://greenfield.social/@Pete.rss - feedtype: rss - feedid: 1a4376cc0c8d7c9d58385a422db953dc - websites: - https://greenfield.social/@Pete: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://explodingcomma.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1a4a2febbd31d79584cb1680b553d360.md b/content/discover/feed-1a4a2febbd31d79584cb1680b553d360.md new file mode 100644 index 000000000..c64c6132d --- /dev/null +++ b/content/discover/feed-1a4a2febbd31d79584cb1680b553d360.md @@ -0,0 +1,52 @@ +--- +title: ~rriemann +date: "2024-04-23T00:15:41+02:00" +description: Personal Blog of Robert Riemann, PhD. +params: + feedlink: https://blog.riemann.cc/feed.xml + feedtype: atom + feedid: 1a4a2febbd31d79584cb1680b553d360 + websites: + https://blog.riemann.cc/: true + https://blog.riemann.cc/about/: false + blogrolls: [] + recommended: [] + recommender: [] + categories: + - HU Berlin + - android + - digitalisation + - eduroam + relme: + https://blog.riemann.cc/: true + https://blog.riemann.cc/about/: true + https://chaos.social/@rriemann: true + last_post_title: HU Berlin eduroam for Android + last_post_description: If the eduroam Android app to setup the wifi crashes for + you, try this alternative path. + last_post_date: "2024-02-27T08:00:00+01:00" + last_post_link: https://blog.riemann.cc/digitalisation/2024/02/27/hu-berlin-eduroam-for-android/ + last_post_categories: + - HU Berlin + - android + - digitalisation + - eduroam + last_post_language: "" + last_post_guid: 5763e11e6b5c0ecc9c092fdb37793524 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-1a6c46d44b476f5754c46cb418f13c2a.md b/content/discover/feed-1a6c46d44b476f5754c46cb418f13c2a.md deleted file mode 100644 index 08edeed2e..000000000 --- a/content/discover/feed-1a6c46d44b476f5754c46cb418f13c2a.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Comments for Rachel Andrew -date: "1970-01-01T00:00:00Z" -description: Doing stuff on the web since 1996. -params: - feedlink: https://rachelandrew.co.uk/comments/feed/ - feedtype: rss - feedid: 1a6c46d44b476f5754c46cb418f13c2a - websites: - https://rachelandrew.co.uk/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Masonry and reading order by bkardell - last_post_description: Bridgy Response - last_post_date: "2024-05-31T12:33:24Z" - last_post_link: https://rachelandrew.co.uk/archives/2024/05/26/masonry-and-reading-order/#comment-28080 - last_post_categories: [] - last_post_guid: f847f88a7d61a3a99f83f1a44245fcee - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1a6d5fefe3e584a0759037d901ac0145.md b/content/discover/feed-1a6d5fefe3e584a0759037d901ac0145.md deleted file mode 100644 index 34a0eb133..000000000 --- a/content/discover/feed-1a6d5fefe3e584a0759037d901ac0145.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Bendik -date: "1970-01-01T00:00:00Z" -description: Public posts from @BendikJohan@vivaldi.net -params: - feedlink: https://social.vivaldi.net/@BendikJohan.rss - feedtype: rss - feedid: 1a6d5fefe3e584a0759037d901ac0145 - websites: - https://social.vivaldi.net/@BendikJohan: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://vivaldi.com/team/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1a79f8e6b2285a8f03a4a3ce17915a75.md b/content/discover/feed-1a79f8e6b2285a8f03a4a3ce17915a75.md new file mode 100644 index 000000000..69e19c209 --- /dev/null +++ b/content/discover/feed-1a79f8e6b2285a8f03a4a3ce17915a75.md @@ -0,0 +1,58 @@ +--- +title: Abstract Absurdities +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://abstractabsurd.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 1a79f8e6b2285a8f03a4a3ce17915a75 + websites: + https://abstractabsurd.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - C# + - arrows + - bitterness + - bluetooth + - emo + - epigram + - frp + - games + - haskell + - laziness + - matrioshka + - oh crap that was dumb + - performance + - security + relme: + https://abstractabsurd.blogspot.com/: true + https://www.blogger.com/profile/09820771070038676909: true + last_post_title: 'Weight Loss: When Hungry, Eat' + last_post_description: |- + I'm still plugging away at a number of technical topics, so I wanted to share a bit more of my experience with food and weight loss. + + There's a rule that I didn't mention last time, and it's possibly + last_post_date: "2010-01-28T02:35:00Z" + last_post_link: https://abstractabsurd.blogspot.com/2010/01/weight-loss-when-hungry-eat.html + last_post_categories: [] + last_post_language: "" + last_post_guid: cecd509e1de2b663b57e2f5f4859a6bf + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1a87f07e629a0b489c323ab22b5bcdd0.md b/content/discover/feed-1a87f07e629a0b489c323ab22b5bcdd0.md index 3c53b3aad..b61835be9 100644 --- a/content/discover/feed-1a87f07e629a0b489c323ab22b5bcdd0.md +++ b/content/discover/feed-1a87f07e629a0b489c323ab22b5bcdd0.md @@ -12,24 +12,30 @@ params: recommended: [] recommender: [] categories: [] - relme: {} + relme: + https://speakerdeck.com/adactio: true last_post_title: Of Time And The Web last_post_description: "A presentation from border:none held in Nuremberg in October 2023, ten years after the first border:none in 2013. \n\nhttps://adactio.com/articles/20638" last_post_date: "2023-11-15T00:00:00-05:00" last_post_link: https://speakerdeck.com/adactio/of-time-and-the-web last_post_categories: [] + last_post_language: "" last_post_guid: de0c9bf0bbed8db1c2871b62d810a156 score_criteria: cats: 0 description: 0 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 5 + score: 10 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-1a998a8bde150cd8b42520bf9b91642a.md b/content/discover/feed-1a998a8bde150cd8b42520bf9b91642a.md index ca8e6c2ee..41251c90c 100644 --- a/content/discover/feed-1a998a8bde150cd8b42520bf9b91642a.md +++ b/content/discover/feed-1a998a8bde150cd8b42520bf9b91642a.md @@ -14,35 +14,38 @@ params: - https://blog.numericcitizen.me/feed.xml - https://blog.numericcitizen.me/podcast.xml categories: - - iPad - - iPad Pro - "2024" - - Review - - Accessory + - AirPods Max + - Everyday Carry + - iPad Pro relme: + https://basicappleguy.com/: true https://mastodon.social/@BasicAppleGuy: true - last_post_title: iPad Pro First(ish) Impressions - last_post_description: "They may not be the first, and they may not be the best, - but here are my \niPad Pro first(ish) impressions." - last_post_date: "2024-06-03T14:05:34Z" - last_post_link: https://basicappleguy.com/basicappleblog/ipad-pro-firstish-impressions + last_post_title: 'Every Day Carry: Weekend' + last_post_description: An inside look at my everyday (weekend) carry for 2024. + last_post_date: "2024-07-08T14:01:39Z" + last_post_link: https://basicappleguy.com/basicappleblog/every-day-carry-weekend last_post_categories: - - iPad - - iPad Pro - "2024" - - Review - - Accessory - last_post_guid: badeac8c5252023f3dd1c19ba5d46323 + - AirPods Max + - Everyday Carry + - iPad Pro + last_post_language: "" + last_post_guid: 8967a27215824f54b4ee1e9d45cb979e score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 19 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-1a99996fad9744b6fc560f9364b90555.md b/content/discover/feed-1a99996fad9744b6fc560f9364b90555.md new file mode 100644 index 000000000..e3ff945e9 --- /dev/null +++ b/content/discover/feed-1a99996fad9744b6fc560f9364b90555.md @@ -0,0 +1,40 @@ +--- +title: taowa r. +date: "2024-07-09T03:15:27Z" +description: taowa's debian blog +params: + feedlink: https://writefreely.debian.social/taowa/feed/ + feedtype: rss + feedid: 1a99996fad9744b6fc560f9364b90555 + websites: + https://writefreely.debian.social/taowa/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://writefreely.debian.social/taowa/: true + last_post_title: Video calling in Dino in experimental, oh my! + last_post_description: "" + last_post_date: "2021-05-20T04:00:00Z" + last_post_link: https://writefreely.debian.social/taowa/video-calling-in-dino-in-experimental-oh-my + last_post_categories: [] + last_post_language: "" + last_post_guid: 419fcf40cb0ff9627a37a043635c16b6 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1aa39ce76436f38920b631ce5ef6a05c.md b/content/discover/feed-1aa39ce76436f38920b631ce5ef6a05c.md new file mode 100644 index 000000000..236420578 --- /dev/null +++ b/content/discover/feed-1aa39ce76436f38920b631ce5ef6a05c.md @@ -0,0 +1,44 @@ +--- +title: Olivier Hallot +date: "2024-02-19T13:13:49-03:00" +description: Hacking LibreOffice Documentation +params: + feedlink: https://olivierhallot.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 1aa39ce76436f38920b631ce5ef6a05c + websites: + https://olivierhallot.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - LibreOffice + - desenvolvimento + - dicas + relme: + https://olivierhallot.blogspot.com/: true + https://www.blogger.com/profile/10071573791335443154: true + last_post_title: Exporting LibreOffice Guides to XHTML (Part II) + last_post_description: "" + last_post_date: "2021-03-22T00:25:57-03:00" + last_post_link: https://olivierhallot.blogspot.com/2021/03/exporting-libreoffice-guides-to-xhtml.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 4fc74c23e3a4edcdbf79b8df44757b9b + score_criteria: + cats: 3 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1aa5cc86a90ca3fd69aaef196c51191d.md b/content/discover/feed-1aa5cc86a90ca3fd69aaef196c51191d.md new file mode 100644 index 000000000..22101b93b --- /dev/null +++ b/content/discover/feed-1aa5cc86a90ca3fd69aaef196c51191d.md @@ -0,0 +1,53 @@ +--- +title: Halo Legendz Gaming Community +date: "2024-02-06T19:03:18-08:00" +description: 'We are a Halo gaming community that lives by the motto: "Play to win; + play nice; play fair; and have fun"' +params: + feedlink: https://halo-legendz.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 1aa5cc86a90ca3fd69aaef196c51191d + websites: + https://halo-legendz.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - campaign + - community + - friends + - gaming + - halo + - odst + relme: + https://dauclair.blogspot.com/: true + https://halo-legendz.blogspot.com/: true + https://logicaltypes.blogspot.com/: true + https://odst-geophf.blogspot.com/: true + https://twilight-dad.blogspot.com/: true + https://www.blogger.com/profile/09936874508556500234: true + last_post_title: Why We Play... + last_post_description: "" + last_post_date: "2019-12-17T09:19:18-08:00" + last_post_link: https://halo-legendz.blogspot.com/2019/12/why-we-play.html + last_post_categories: + - community + last_post_language: "" + last_post_guid: bc1190842d769a737194c6712b0b76a4 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1aadee491df4c9606574a2485430f998.md b/content/discover/feed-1aadee491df4c9606574a2485430f998.md index eb5e9512e..89b5cdbb7 100644 --- a/content/discover/feed-1aadee491df4c9606574a2485430f998.md +++ b/content/discover/feed-1aadee491df4c9606574a2485430f998.md @@ -20,24 +20,29 @@ params: - Society & Culture - TV & Film relme: {} - last_post_title: '''Merrily We Roll Along'' Revival Is A Love Letter To Sondheim' - last_post_description: Stephen Sondheim's 1981 flop is now a Broadway hit. This - revival of Merrily We Roll Along is nominated for seven Tony Awards. Two of those - nominees, actor Jonathan Groff and director Maria Friedman, - last_post_date: "2024-06-03T19:38:29Z" - last_post_link: https://www.npr.org/2024/06/03/1197967799/merrily-groff-friedman + last_post_title: Taffy Brodesser-Akner Writes Real People — Not Likable Ones + last_post_description: Brodesser-Akner's novel centers on the kidnapping of a rich + businessman, and the impact, decades later, on his grown children. She channeled + what she learned as a journalist writing celebrity + last_post_date: "2024-07-08T18:39:42Z" + last_post_link: https://www.npr.org/2024/07/08/1197972459/taffy-brodesser-akner-long-island-compromise last_post_categories: [] - last_post_guid: 2db9a9a45c943977fdc17c489e14ee31 + last_post_language: "" + last_post_guid: e7399ca22f7a9946921687fbf65b90a3 score_criteria: cats: 3 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 16 + score: 20 ispodcast: true isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-1abc961e8075ab0fd2754b71faa80376.md b/content/discover/feed-1abc961e8075ab0fd2754b71faa80376.md new file mode 100644 index 000000000..03a803bec --- /dev/null +++ b/content/discover/feed-1abc961e8075ab0fd2754b71faa80376.md @@ -0,0 +1,49 @@ +--- +title: Martin Fitzpatrick +date: "2023-05-04T09:00:00Z" +description: Python tutorials, projects and books +params: + feedlink: https://blog.martinfitzpatrick.com/feeds/atom.xml + feedtype: atom + feedid: 1abc961e8075ab0fd2754b71faa80376 + websites: + https://blog.martinfitzpatrick.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - pyqt + - python + - qt6 + relme: + https://blog.martinfitzpatrick.com/: true + last_post_title: 'PyQt6 Book now available in Korean: 파이썬과 Qt6로 GUI 애플리케이션 만들기 — + The hands-on guide to creating GUI applications with Python gets a new translation' + last_post_description: |- + I am very happy to announce that my Python GUI programming book + Create GUI Applications with Python & Qt6 / PyQt6 Edition … + last_post_date: "2023-05-04T09:00:00Z" + last_post_link: https://blog.martinfitzpatrick.com/pyqt6-book-now-available-in-korean/ + last_post_categories: + - pyqt + - python + - qt6 + last_post_language: "" + last_post_guid: 595f482e1add3931829b474034613f1d + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1ac3bb677859076d9d6ce4cddf1bdb89.md b/content/discover/feed-1ac3bb677859076d9d6ce4cddf1bdb89.md deleted file mode 100644 index fce3bdfd1..000000000 --- a/content/discover/feed-1ac3bb677859076d9d6ce4cddf1bdb89.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Sara Soueidan -date: "1970-01-01T00:00:00Z" -description: Public posts from @SaraSoueidan@mastodon.social -params: - feedlink: https://mastodon.social/@SaraSoueidan.rss - feedtype: rss - feedid: 1ac3bb677859076d9d6ce4cddf1bdb89 - websites: - https://mastodon.social/@SaraSoueidan: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://sarasoueidan.com/: false - https://sarasoueidan.com/newsletter: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1acaf172c45038ac4f53b47af56ef63c.md b/content/discover/feed-1acaf172c45038ac4f53b47af56ef63c.md deleted file mode 100644 index d72fd48e6..000000000 --- a/content/discover/feed-1acaf172c45038ac4f53b47af56ef63c.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: //Jason -date: "1970-01-01T00:00:00Z" -description: Public posts from @jason@social.lol -params: - feedlink: https://social.lol/@jason.rss - feedtype: rss - feedid: 1acaf172c45038ac4f53b47af56ef63c - websites: - https://social.lol/@jason: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://grepjason.sh/: true - https://hemisphericviews.com/: false - https://jason.omg.lol/: true - https://www.burk.photos/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1afea125ebb3f39a485104ce358f17d5.md b/content/discover/feed-1afea125ebb3f39a485104ce358f17d5.md new file mode 100644 index 000000000..2b87ac881 --- /dev/null +++ b/content/discover/feed-1afea125ebb3f39a485104ce358f17d5.md @@ -0,0 +1,47 @@ +--- +title: Danimo's blog +date: "1970-01-01T00:00:00Z" +description: Tales from a Jack of all Trades +params: + feedlink: https://daniel.molkentin.net/feed/ + feedtype: rss + feedid: 1afea125ebb3f39a485104ce358f17d5 + websites: + https://daniel.molkentin.net/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - CCC + - German + relme: + https://chaos.social/@danimo: true + https://daniel.molkentin.net/: true + last_post_title: 'Offener Brief an das “üpo”: Barking up the wrong tree' + last_post_description: '(Disclaimer: Ich repräsentiere nicht den CCC oder seine + Organe. Ich bin aber seit Jahren auf dem Congress präsent.) Lieber Richard Schneider! + Da haben Sie aber ganz schön Wind gemacht. Der CCC als' + last_post_date: "2018-01-22T20:59:45Z" + last_post_link: https://daniel.molkentin.net/2018/01/22/offener-brief-an-das-upo/ + last_post_categories: + - CCC + - German + last_post_language: "" + last_post_guid: 5fd5f7b45043080ce8b1d72dbc434486 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-1aff5934fe211850eb98d5c490047654.md b/content/discover/feed-1aff5934fe211850eb98d5c490047654.md deleted file mode 100644 index bdcf5d931..000000000 --- a/content/discover/feed-1aff5934fe211850eb98d5c490047654.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Comments for Imaginary Potential -date: "1970-01-01T00:00:00Z" -description: The collected ramblings of six physics grad students and postdocs. -params: - feedlink: https://imaginarypotential.wordpress.com/comments/feed/ - feedtype: rss - feedid: 1aff5934fe211850eb98d5c490047654 - websites: - https://imaginarypotential.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Making the tea by Rev. Ugh - last_post_description: It is failing to admit that the rules of the game - are against you. More to the point, it is feminine. - last_post_date: "2012-01-11T18:02:18Z" - last_post_link: https://imaginarypotential.wordpress.com/2008/04/06/making-the-tea/#comment-541 - last_post_categories: [] - last_post_guid: b8aa80935e176f174372cec9faf8f1d2 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1b0f49bb3b37483d15bcb74f09e9a09e.md b/content/discover/feed-1b0f49bb3b37483d15bcb74f09e9a09e.md new file mode 100644 index 000000000..02882b87a --- /dev/null +++ b/content/discover/feed-1b0f49bb3b37483d15bcb74f09e9a09e.md @@ -0,0 +1,53 @@ +--- +title: My Dummy Blog +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://dummywebsite.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 1b0f49bb3b37483d15bcb74f09e9a09e + websites: + https://dummywebsite.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://dummywebsite.blogspot.com/: true + https://eclipse-info.blogspot.com/: true + https://iosdribbles.blogspot.com/: true + https://mksamuel.blogspot.com/: true + https://www.blogger.com/profile/05191409900046165475: true + last_post_title: Blog 5 + last_post_description: |- + how to modify the layout. + + Sample Data + + Tara dara tara. + + Run Rum run! + + Sample data. + last_post_date: "2012-05-16T11:01:00Z" + last_post_link: https://dummywebsite.blogspot.com/2012/05/blog-5.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 8c9b52734a7c16cd1cd8ae74fe5ee403 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1b28d850443535623245095b1cf1cf6a.md b/content/discover/feed-1b28d850443535623245095b1cf1cf6a.md new file mode 100644 index 000000000..2a0607b20 --- /dev/null +++ b/content/discover/feed-1b28d850443535623245095b1cf1cf6a.md @@ -0,0 +1,47 @@ +--- +title: Andrej’s notes +date: "2023-04-12T15:09:46+02:00" +description: "" +params: + feedlink: https://blog.shadura.me/atom.xml + feedtype: atom + feedid: 1b28d850443535623245095b1cf1cf6a + websites: + https://blog.shadura.me/: true + https://blog.shadura.me/author/andrej-shadura/: false + blogrolls: [] + recommended: [] + recommender: [] + categories: + - misc + relme: + https://blog.shadura.me/: true + https://github.com/andrewshadura: true + https://mastodon.social/@andrew_shadura: true + last_post_title: Connecting lights to a Swytch e-bike kit + last_post_description: Last year I purchased an e-bike upgrade kit for my mother + in law. We decided to install it on a bicycle she originally bought back in the + 80s, which I fixed and refurbished a couple of years ago and + last_post_date: "2023-04-12T15:09:46+02:00" + last_post_link: https://blog.shadura.me/2023/04/12/swytch-e-bike-lights/ + last_post_categories: + - misc + last_post_language: "" + last_post_guid: de98652787dfd2006f669df3e3779614 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 11 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1b37decf31282092191f27b93d352f8e.md b/content/discover/feed-1b37decf31282092191f27b93d352f8e.md deleted file mode 100644 index e26c44287..000000000 --- a/content/discover/feed-1b37decf31282092191f27b93d352f8e.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Articles on Perl.com - programming news, code and culture -date: "1970-01-01T00:00:00Z" -description: Recent content in Articles on Perl.com - programming news, code and culture -params: - feedlink: https://www.perl.com/article/index.xml - feedtype: rss - feedid: 1b37decf31282092191f27b93d352f8e - websites: - https://www.perl.com/article/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: What's New in Perl v5.40? - last_post_description: |- - This article was originally published at - The Weekly Challenge. - - - - Perl, the most versatile and powerful programming language, continues to evolve. With the addition of Corinna to core Perl, I look - last_post_date: "2024-06-28T09:00:00Z" - last_post_link: https://www.perl.com/article/what-is-new-in-perl/ - last_post_categories: [] - last_post_guid: 559634a715313d92d6e5ac1f75aeef77 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1b3adea4e9fb520e8f5b9f62ee07db1c.md b/content/discover/feed-1b3adea4e9fb520e8f5b9f62ee07db1c.md deleted file mode 100644 index 716e65c35..000000000 --- a/content/discover/feed-1b3adea4e9fb520e8f5b9f62ee07db1c.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Code & Supply -date: "1970-01-01T00:00:00Z" -description: Public posts from @codeandsupply@hachyderm.io -params: - feedlink: https://hachyderm.io/@codeandsupply.rss - feedtype: rss - feedid: 1b3adea4e9fb520e8f5b9f62ee07db1c - websites: - https://hachyderm.io/@CodeAndSupply: false - https://hachyderm.io/@codeandsupply: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://codeandsupply.co/: true - https://codeandsupply.fund/: true - https://community.hachyderm.io/approved/: false - https://patreon.com/codeandsupply: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1b4f7369e0696ce6123b1540f0667b22.md b/content/discover/feed-1b4f7369e0696ce6123b1540f0667b22.md new file mode 100644 index 000000000..0e4242309 --- /dev/null +++ b/content/discover/feed-1b4f7369e0696ce6123b1540f0667b22.md @@ -0,0 +1,41 @@ +--- +title: Python(x,y) +date: "2024-05-30T21:07:07+03:00" +description: News and updates on Python(x,y) - a free scientific and engineering + development software based on the Python programming language. +params: + feedlink: https://pythonxynews.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 1b4f7369e0696ce6123b1540f0667b22 + websites: + https://pythonxynews.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://pythonxynews.blogspot.com/: true + last_post_title: Python(x, y) 2.7.10.0 Released! + last_post_description: "" + last_post_date: "2015-07-01T22:16:38+03:00" + last_post_link: https://pythonxynews.blogspot.com/2015/07/pythonx-y-27100-released.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 399b8801c41df5eadea7b08e64fd334c + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1b5901f761fb56300e2e465bccf00e5d.md b/content/discover/feed-1b5901f761fb56300e2e465bccf00e5d.md deleted file mode 100644 index 0ff7d7bc1..000000000 --- a/content/discover/feed-1b5901f761fb56300e2e465bccf00e5d.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Matt Stein -date: "1970-01-01T00:00:00Z" -description: Writing by Matt Stein on Read.cv -params: - feedlink: https://read.cv/api/feed/mattstein - feedtype: rss - feedid: 1b5901f761fb56300e2e465bccf00e5d - websites: - https://read.cv/mattstein: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/mattstein: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1b60aeb014ec6bdb5329ece9767e2de0.md b/content/discover/feed-1b60aeb014ec6bdb5329ece9767e2de0.md new file mode 100644 index 000000000..05270b02d --- /dev/null +++ b/content/discover/feed-1b60aeb014ec6bdb5329ece9767e2de0.md @@ -0,0 +1,137 @@ +--- +title: Unfamiliar area code +date: "2023-06-20T06:23:18-07:00" +description: It all about Area Code so keep visiting to my blogspot page. +params: + feedlink: https://uniquek5.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 1b60aeb014ec6bdb5329ece9767e2de0 + websites: + https://uniquek5.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Massive wide variety of Area Code + last_post_description: "" + last_post_date: "2022-02-13T08:47:40-08:00" + last_post_link: https://uniquek5.blogspot.com/2022/02/massive-wide-variety-of-area-code.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 98646cef4c26db950e217b2470663d33 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1b6be28b5151847cb6a0f9e0f8704709.md b/content/discover/feed-1b6be28b5151847cb6a0f9e0f8704709.md index 567393f66..4040ee45d 100644 --- a/content/discover/feed-1b6be28b5151847cb6a0f9e0f8704709.md +++ b/content/discover/feed-1b6be28b5151847cb6a0f9e0f8704709.md @@ -8,35 +8,41 @@ params: feedid: 1b6be28b5151847cb6a0f9e0f8704709 websites: https://sarajoy.dev/: true - https://sarajoy.dev/basic: false - https://sarajoy.dev/wips/: false blogrolls: [] recommended: [] recommender: - - https://chrisburnell.com/feed.xml - https://colinwalker.blog/dailyfeed.xml - https://colinwalker.blog/livefeed.xml - https://frankmeeuwsen.com/feed.xml categories: [] relme: + https://cs.sjoy.lol/: true https://front-end.social/@sarajw: true https://github.com/sarajw: true - last_post_title: Good Box + https://rs.sjoy.lol/: true + https://sarajoy.dev/: true + https://whimsica11y.net/: true + last_post_title: It's just... fun? last_post_description: A short thort - last_post_date: "2024-05-18T14:08:00Z" - last_post_link: https://sarajoy.dev/blog/short/2024-05-18-good-box/ + last_post_date: "2024-06-30T17:07:00Z" + last_post_link: https://sarajoy.dev/blog/short/2024-06-30-it-s-just-fun/ last_post_categories: [] - last_post_guid: 7c5ddb122268cf921e8516bfa63beaf7 + last_post_language: "" + last_post_guid: 1598f1f6a4cca0c089075ed19787e9e0 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-1b7fd30f5787411ad1fb9d734e79264a.md b/content/discover/feed-1b7fd30f5787411ad1fb9d734e79264a.md new file mode 100644 index 000000000..2d4410ef3 --- /dev/null +++ b/content/discover/feed-1b7fd30f5787411ad1fb9d734e79264a.md @@ -0,0 +1,139 @@ +--- +title: SnapChats Snaps +date: "2024-03-05T02:27:54-08:00" +description: many feature are hidden of snapchat +params: + feedlink: https://rajasthanroutestrails.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 1b7fd30f5787411ad1fb9d734e79264a + websites: + https://rajasthanroutestrails.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - feature of snapchat + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: SnapChats Snaps features + last_post_description: "" + last_post_date: "2021-05-04T11:00:38-07:00" + last_post_link: https://rajasthanroutestrails.blogspot.com/2021/05/snapchats-snaps-features.html + last_post_categories: + - feature of snapchat + last_post_language: "" + last_post_guid: c43e79a3869c670488cd1e8589a9122c + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1b80d482cbde54a90f587fd93a46b9c7.md b/content/discover/feed-1b80d482cbde54a90f587fd93a46b9c7.md new file mode 100644 index 000000000..b1a27bde1 --- /dev/null +++ b/content/discover/feed-1b80d482cbde54a90f587fd93a46b9c7.md @@ -0,0 +1,59 @@ +--- +title: Happstack +date: "2024-02-08T13:44:46-06:00" +description: Happstack - A Haskell Web Framework +params: + feedlink: https://happstack.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 1b80d482cbde54a90f587fd93a46b9c7 + websites: + https://happstack.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ANN + - MACID + - acid-state + - database + - happstack + - happstack-lite + - hsx + - jmacro + - persistence + - routing + - safecopy + - templating + - type-safe + - web-routes + relme: + https://alchymiastudio.blogspot.com/: true + https://happstack.blogspot.com/: true + https://learnhaskell.blogspot.com/: true + https://musictheoryforeveryone.blogspot.com/: true + https://nhlab.blogspot.com/: true + https://www.blogger.com/profile/18373967098081701148: true + last_post_title: Announcing Happstack 7 + last_post_description: "" + last_post_date: "2012-03-29T15:52:52-05:00" + last_post_link: https://happstack.blogspot.com/2012/03/announcing-happstack-7.html + last_post_categories: [] + last_post_language: "" + last_post_guid: b5192d58b88e314414f46c180574905f + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1ba575bba1fa127aa0b9629497f3714c.md b/content/discover/feed-1ba575bba1fa127aa0b9629497f3714c.md index 75cff3292..ee35acd5c 100644 --- a/content/discover/feed-1ba575bba1fa127aa0b9629497f3714c.md +++ b/content/discover/feed-1ba575bba1fa127aa0b9629497f3714c.md @@ -13,24 +13,29 @@ params: recommender: [] categories: [] relme: - https://micro.blog/@strandlines: false + https://strandlines.blog/: true last_post_title: Comment by strandlines last_post_description: @Miraz thank you last_post_date: "2024-05-23T20:37:14Z" last_post_link: https://micro.blog/strandlines/38106385 last_post_categories: [] + last_post_language: "" last_post_guid: 9605264fe5e92e285f88796e2d773548 score_criteria: cats: 0 description: 0 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 6 + score: 10 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-1bae353d55c538f26c46ec02c4ed2f5e.md b/content/discover/feed-1bae353d55c538f26c46ec02c4ed2f5e.md new file mode 100644 index 000000000..6a90f5e95 --- /dev/null +++ b/content/discover/feed-1bae353d55c538f26c46ec02c4ed2f5e.md @@ -0,0 +1,46 @@ +--- +title: Lyre Calliope +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://captaincalliope.net/feed/ + feedtype: rss + feedid: 1bae353d55c538f26c46ec02c4ed2f5e + websites: + https://captaincalliope.net/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Instagram + - Shares + - cats + relme: + https://captaincalliope.net/: true + last_post_title: supervision + last_post_description: "\U0001F4F8 Dr Claw likes to supervise the folding of laundry." + last_post_date: "2019-10-04T21:38:17Z" + last_post_link: https://captaincalliope.net/2019/10/supervision/ + last_post_categories: + - Instagram + - Shares + - cats + last_post_language: "" + last_post_guid: c54561dd8f300ba5a50a63c7f3723dfd + score_criteria: + cats: 0 + description: 0 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-1bd83ebcff22bd56a8fa0129450757c9.md b/content/discover/feed-1bd83ebcff22bd56a8fa0129450757c9.md new file mode 100644 index 000000000..2d02adb6c --- /dev/null +++ b/content/discover/feed-1bd83ebcff22bd56a8fa0129450757c9.md @@ -0,0 +1,45 @@ +--- +title: Boom! Michael Droettboom's blog +date: "2019-11-01T15:40:00-04:00" +description: "" +params: + feedlink: https://droettboom.com/feeds/all.atom.xml + feedtype: atom + feedid: 1bd83ebcff22bd56a8fa0129450757c9 + websites: + https://droettboom.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - data + - glean + relme: + https://droettboom.com/: true + https://mastodon.social/@mdboom: true + last_post_title: 'This Week in Glean: November 1, 2019' + last_post_description: When data goes wrong + last_post_date: "2019-11-01T15:40:00-04:00" + last_post_link: http://droettboom.com/blog/2019/11/01/this-week-in-glean-november-1-2019/ + last_post_categories: + - data + - glean + last_post_language: "" + last_post_guid: adf6f0e57684ff63f6433847d601c54c + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 12 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1be55a40e9a1ed89f58630987c8efa38.md b/content/discover/feed-1be55a40e9a1ed89f58630987c8efa38.md new file mode 100644 index 000000000..596b4dbc4 --- /dev/null +++ b/content/discover/feed-1be55a40e9a1ed89f58630987c8efa38.md @@ -0,0 +1,39 @@ +--- +title: Andrew Duckworth +date: "2024-03-12T19:11:00Z" +description: Designer, artist +params: + feedlink: https://grillopress.github.io/feed + feedtype: atom + feedid: 1be55a40e9a1ed89f58630987c8efa38 + websites: {} + blogrolls: [] + recommended: [] + recommender: + - https://visitmy.website/feed.xml + categories: [] + relme: {} + last_post_title: When and how to move from an assumption to a hypothesis + last_post_description: "" + last_post_date: "2024-03-17T09:54:36Z" + last_post_link: https://grillopress.github.io/2024/03/12/moving-from-an-assumption-to-a-hypothesis.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 8b20a8aabd0b43c6d0f1756e29ccf9ce + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 0 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1bfa586396f6d2474801c0976725b4da.md b/content/discover/feed-1bfa586396f6d2474801c0976725b4da.md deleted file mode 100644 index 6ad7b90b2..000000000 --- a/content/discover/feed-1bfa586396f6d2474801c0976725b4da.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: David Brownman -date: "1970-01-01T00:00:00Z" -description: Public posts from @xavdid@mastodon.social -params: - feedlink: https://mastodon.social/@xavdid.rss - feedtype: rss - feedid: 1bfa586396f6d2474801c0976725b4da - websites: - https://mastodon.social/@xavdid: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://advent-of-code.xavd.id/: true - https://david.reviews/: true - https://xavd.id/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1c0f42bf5c3350ac91ac6f7345b093be.md b/content/discover/feed-1c0f42bf5c3350ac91ac6f7345b093be.md index 67ec3c378..95dc98b10 100644 --- a/content/discover/feed-1c0f42bf5c3350ac91ac6f7345b093be.md +++ b/content/discover/feed-1c0f42bf5c3350ac91ac6f7345b093be.md @@ -1,6 +1,6 @@ --- title: tonsky.me -date: "2024-05-31T13:44:33Z" +date: "2024-06-25T15:36:55Z" description: Nikita Prokopov’s blog params: feedlink: https://tonsky.me/atom.xml @@ -11,32 +11,34 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: [] relme: {} - last_post_title: Going to the cinema is a data visualization problem - last_post_description: How I build a website for choosing movies - last_post_date: "2024-05-31T13:44:33Z" - last_post_link: https://tonsky.me/blog/allekinos/ + last_post_title: Local, first, forever + last_post_description: We explore how to build local-first sync on top of simple + file storage + last_post_date: "2024-06-25T15:36:55Z" + last_post_link: https://tonsky.me/blog/crdt-filesync/ last_post_categories: [] - last_post_guid: 3e3559a0e13323d72ead91a8e4b5b6bb + last_post_language: "" + last_post_guid: 804e2dfc953ceb425ed4c028dd8c347a score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-1c1b7f3be775a618bdcde6ff38141549.md b/content/discover/feed-1c1b7f3be775a618bdcde6ff38141549.md new file mode 100644 index 000000000..d3e10609e --- /dev/null +++ b/content/discover/feed-1c1b7f3be775a618bdcde6ff38141549.md @@ -0,0 +1,68 @@ +--- +title: Lusca Proxy Cache News +date: "1970-01-01T00:00:00Z" +description: Information about the development of Lusca, a Squid-2.x derivative aimed + at performance, stability and flexibility. More information can be found at the + home page - http://www.lusca.org/ . +params: + feedlink: https://lusca-cache.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 1c1b7f3be775a618bdcde6ff38141549 + websites: + https://lusca-cache.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Iusca + - cacheboy + - caching + - cdn + - concurrency + - coss + - fail + - ipv6 + - lusca + - modularity + - oprofile + - performance + - profiling + - proxy + - squid + - threading + - tproxy + - wccp + - windowsupdates + relme: + https://adrianchadd.blogspot.com/: true + https://cacheboy.blogspot.com/: true + https://lusca-cache.blogspot.com/: true + https://www.blogger.com/profile/17496219706861321916: true + https://xenionhosting.blogspot.com/: true + last_post_title: Blog has moved! + last_post_description: I've moved the contents of this blog to my personal blog + - http://adrianchadd.blogspot.com/ . All of the lusca related stuff will happen + under the "lusca" tag.I'm tired of having a handful of little + last_post_date: "2010-03-10T05:33:00Z" + last_post_link: https://lusca-cache.blogspot.com/2010/03/blog-has-moved.html + last_post_categories: + - lusca + last_post_language: "" + last_post_guid: 5df80636c19cd787fecd9552f6406408 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1c1edf0f86e307e528b7bf3443db9e90.md b/content/discover/feed-1c1edf0f86e307e528b7bf3443db9e90.md new file mode 100644 index 000000000..b00642ce4 --- /dev/null +++ b/content/discover/feed-1c1edf0f86e307e528b7bf3443db9e90.md @@ -0,0 +1,45 @@ +--- +title: Only Python +date: "2024-03-13T01:40:07-03:00" +description: This blog deals almost exclusively with my Python coding activities. +params: + feedlink: https://aroberge.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 1c1edf0f86e307e528b7bf3443db9e90 + websites: + https://aroberge.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - crunchy + - ghop + - i18n + - pycon + - rur-ple + relme: + https://aroberge.blogspot.com/: true + last_post_title: Better NameError messages for Python + last_post_description: "" + last_post_date: "2022-10-27T16:46:36-03:00" + last_post_link: https://aroberge.blogspot.com/2022/10/better-nameerror-messages-for-python.html + last_post_categories: [] + last_post_language: "" + last_post_guid: fd568887b6826653a6fe1074009e6e8d + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1c206004121cdf6339364391c64ef065.md b/content/discover/feed-1c206004121cdf6339364391c64ef065.md new file mode 100644 index 000000000..677a73132 --- /dev/null +++ b/content/discover/feed-1c206004121cdf6339364391c64ef065.md @@ -0,0 +1,45 @@ +--- +title: White Tuesdays +date: "2024-02-19T07:57:40+01:00" +description: My blog on GNOME, programming, maps and stuff. +params: + feedlink: https://whitetuesdays.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 1c206004121cdf6339364391c64ef065 + websites: + https://whitetuesdays.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - code + - gnome + - gsoc + - guadec + - maps + relme: + https://whitetuesdays.blogspot.com/: true + last_post_title: The history behind the venue for this years GUADEC + last_post_description: "" + last_post_date: "2015-07-22T22:01:54+02:00" + last_post_link: https://whitetuesdays.blogspot.com/2015/07/the-history-behind-venue-for-this-years.html + last_post_categories: [] + last_post_language: "" + last_post_guid: fd7f9a0ab0cabcd0ed486e2983334dfa + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1c23c11a51a87334732f344f0352d490.md b/content/discover/feed-1c23c11a51a87334732f344f0352d490.md index 9d4b26fbd..63f43402e 100644 --- a/content/discover/feed-1c23c11a51a87334732f344f0352d490.md +++ b/content/discover/feed-1c23c11a51a87334732f344f0352d490.md @@ -13,6 +13,7 @@ params: recommender: [] categories: [] relme: + https://dague.net/: true https://spore.social/@sdague: true last_post_title: Comment on I’m so over gas cars – Vacationing in an Age of Climate Solutions part 4 by Sustain | sustain-blog.com @@ -20,17 +21,22 @@ params: last_post_date: "2023-08-23T18:56:48Z" last_post_link: https://dague.net/2023/08/23/im-so-over-gas-cars-vacationing-in-an-age-of-climate-solutions-part-4/comment-page-1/#comment-10724 last_post_categories: [] + last_post_language: "" last_post_guid: c7f8eb9205e0599d37e489e0f81426f5 score_criteria: cats: 0 description: 0 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 7 + score: 10 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-1c35c2dfa456afc138e9782bc5058db8.md b/content/discover/feed-1c35c2dfa456afc138e9782bc5058db8.md deleted file mode 100644 index 6ad322aae..000000000 --- a/content/discover/feed-1c35c2dfa456afc138e9782bc5058db8.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: zerokspot.com -date: "1970-01-01T00:00:00Z" -description: Recent content on zerokspot.com -params: - feedlink: https://zerokspot.com/index.xml - feedtype: rss - feedid: 1c35c2dfa456afc138e9782bc5058db8 - websites: - https://zerokspot.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - - https://jlelse.blog/.min.rss - - https://jlelse.blog/.rss - - https://jlelse.blog/index.xml - categories: [] - relme: - https://zerokspot.com/: true - last_post_title: 'Review: Going Zero' - last_post_description: It’s been a while since I’ve read a book that I simply could - not put down. “Going Zero” by Anthony McCarten (German edition) managed that. - The story is about an experiment where CIA/FBA/NSA - last_post_date: "2024-05-14T20:39:50+02:00" - last_post_link: https://zerokspot.com/weblog/2024/05/14/review-going-zero/ - last_post_categories: [] - last_post_guid: 6050026e206f9bd0d49f50e48a6df2af - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 15 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1c4032345e17712632d9818a829ec16a.md b/content/discover/feed-1c4032345e17712632d9818a829ec16a.md deleted file mode 100644 index 203d6dfe1..000000000 --- a/content/discover/feed-1c4032345e17712632d9818a829ec16a.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Arnaldo's Ramblings -date: "1970-01-01T00:00:00Z" -description: Kernel Hacking & Tooling Mostly... -params: - feedlink: https://acmel.wordpress.com/feed/ - feedtype: rss - feedid: 1c4032345e17712632d9818a829ec16a - websites: - https://acmel.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - perf - - Tooling - - Uncategorized - relme: {} - last_post_title: sudo is fast again - last_post_description: 'A big hammer solution: [root@quaco ~]# rpm -e fprintd fprintd-pam - [error] [/etc/nsswitch.conf] is not a symbolic link! [error] [/etc/nsswitch.conf] - was not created by authselect! [error] Unexpected' - last_post_date: "2019-11-27T19:28:42Z" - last_post_link: https://acmel.wordpress.com/2019/11/27/sudo-is-fast-again/ - last_post_categories: - - perf - - Tooling - - Uncategorized - last_post_guid: 4aaf972b125ceefb04c9a98992676faf - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1c479e550207b85c9dbcea6ee64a4f19.md b/content/discover/feed-1c479e550207b85c9dbcea6ee64a4f19.md index e4bc52af6..ca2061535 100644 --- a/content/discover/feed-1c479e550207b85c9dbcea6ee64a4f19.md +++ b/content/discover/feed-1c479e550207b85c9dbcea6ee64a4f19.md @@ -13,36 +13,55 @@ params: recommender: - https://colinwalker.blog/dailyfeed.xml - https://colinwalker.blog/livefeed.xml + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php + - https://roytang.net/blog/feed/rss/ - https://weidok.al/feed.xml categories: - - gouache - - holbein gouache - - my art - - sketchbook + - busan + - dot + - dot's birthday + - journal + - korea2024 + - love + - my photography + - photoessay + - travel relme: https://kopiti.am/@wynlim: true - last_post_title: first time using holbein gouache - last_post_description: spread of stuff from the movie, “spirited away”. first time - using holbein gouache — it was nice to be able to paint over mistakes. the foreground - subjects in the movie had no complicated - last_post_date: "2024-06-04T02:18:08Z" - last_post_link: https://winnielim.org/notes/first-time-using-holbein-gouache/ + https://winnielim.org/: true + last_post_title: happy birthday to my favouritest person + last_post_description: Every year on our birth days we’ll try to make a trip overseas + – Singapore is about 50km from east to west so we can’t do any local travelling. + Travelling is vital... + last_post_date: "2024-07-07T06:28:46Z" + last_post_link: https://winnielim.org/journal/happy-birthday-to-my-favouritest-person/ last_post_categories: - - gouache - - holbein gouache - - my art - - sketchbook - last_post_guid: b537f88106dacc184844f06a08b76f64 + - busan + - dot + - dot's birthday + - journal + - korea2024 + - love + - my photography + - photoessay + - travel + last_post_language: "" + last_post_guid: e39ff2a7ab979dbdf4ad1582b6f90808 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 18 + score: 22 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-1c8fa67fe51604211677707957fe5266.md b/content/discover/feed-1c8fa67fe51604211677707957fe5266.md new file mode 100644 index 000000000..d0a9448cc --- /dev/null +++ b/content/discover/feed-1c8fa67fe51604211677707957fe5266.md @@ -0,0 +1,50 @@ +--- +title: On TopLink +date: "2024-02-20T02:08:36-05:00" +description: "" +params: + feedlink: https://ontoplink.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 1c8fa67fe51604211677707957fe5266 + websites: + https://ontoplink.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Dali + - JPA + - JPA TopLink Essentials + - JPA TopLink Migration + - Oracle TopLink Essentials JPA Session + - TopLink + - first + relme: + https://onpersistence.blogspot.com/: true + https://ontoplink.blogspot.com/: true + https://shaunmsmith.blogspot.com/: true + https://www.blogger.com/profile/03444889032778621661: true + last_post_title: We've Moved! + last_post_description: "" + last_post_date: "2008-01-30T14:29:35-05:00" + last_post_link: https://ontoplink.blogspot.com/2008/01/weve-moved.html + last_post_categories: [] + last_post_language: "" + last_post_guid: a707c9ecf24b7c198fa2c978ed744e67 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1c9fb5d41931259b62689b58cd5b7f81.md b/content/discover/feed-1c9fb5d41931259b62689b58cd5b7f81.md new file mode 100644 index 000000000..f98a916ea --- /dev/null +++ b/content/discover/feed-1c9fb5d41931259b62689b58cd5b7f81.md @@ -0,0 +1,52 @@ +--- +title: Mirek Długosz personal website +date: "2024-07-08T21:38:06+02:00" +description: "" +params: + feedlink: https://mirekdlugosz.com/blog/feeds/atom.xml + feedtype: atom + feedid: 1c9fb5d41931259b62689b58cd5b7f81 + websites: + https://mirekdlugosz.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - AST + - Blog + - planet AST + - planet MoT + relme: + https://fosstodon.org/@mirekdlugosz: true + https://github.com/mirekdlugosz: true + https://mirekdlugosz.com/: true + last_post_title: AST Board of Directors elections are on! + last_post_description: |- + The Association for Software Testing yearly election process has started. We are looking for three people to join the Board. + Official announcement on AST site has all the details, including dates + last_post_date: "2024-07-08T21:38:06+02:00" + last_post_link: https://mirekdlugosz.com/blog/2024/ast-board-of-directors-elections-are-on/ + last_post_categories: + - AST + - Blog + - planet AST + - planet MoT + last_post_language: "" + last_post_guid: 921fa41a9d0687d91adfad5df2cbf02a + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1cbea5c0feb4c3a8c6efc68078138afb.md b/content/discover/feed-1cbea5c0feb4c3a8c6efc68078138afb.md new file mode 100644 index 000000000..e75e9d1c5 --- /dev/null +++ b/content/discover/feed-1cbea5c0feb4c3a8c6efc68078138afb.md @@ -0,0 +1,43 @@ +--- +title: jxself.org +date: "1970-01-01T00:00:00Z" +description: The RSS feed for jxself.org +params: + feedlink: https://jxself.org/rss20.xml + feedtype: rss + feedid: 1cbea5c0feb4c3a8c6efc68078138afb + websites: {} + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: [] + relme: {} + last_post_title: 'The Last Resort: Using DMCA to Defend GNU Licenses' + last_post_description: "The GNU family of licenses is not just a set of rules but\n + \ a beacon of empowerment in the software world. It grants\n users + essential freedoms to use, study, change, and share\n " + last_post_date: "2024-07-03T18:09:11-07:00" + last_post_link: https://jxself.org/the-last-resort.shtml + last_post_categories: [] + last_post_language: "" + last_post_guid: deffd9c87742024483976b76075b7a28 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 0 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-1ce1914ba8960aa402e9ff1aa65dba2c.md b/content/discover/feed-1ce1914ba8960aa402e9ff1aa65dba2c.md new file mode 100644 index 000000000..bd56b944f --- /dev/null +++ b/content/discover/feed-1ce1914ba8960aa402e9ff1aa65dba2c.md @@ -0,0 +1,52 @@ +--- +title: A Blog that looks like a Website +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://testblogaswebsite.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 1ce1914ba8960aa402e9ff1aa65dba2c + websites: + https://testblogaswebsite.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://boardgamethoughts.blogspot.com/: true + https://coderthoughts.blogspot.com/: true + https://hikersthoughts.blogspot.com/: true + https://laarderhoogt.blogspot.com/: true + https://lightdarknesspainting.blogspot.com/: true + https://on-software-architecture.blogspot.com/: true + https://osgithoughts.blogspot.com/: true + https://rockabillfilmsoc.blogspot.com/: true + https://rockabillfilmsociety.blogspot.com/: true + https://testblogaswebsite.blogspot.com/: true + https://www.blogger.com/profile/13786738766478890804: true + last_post_title: Understanding Dogs + last_post_description: Understanding dogs, blah blah blah blah blah blah blah blah + blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah + blah blah blah blah blah blah blah blah blah blah blah blah + last_post_date: "2014-05-19T19:35:00Z" + last_post_link: https://testblogaswebsite.blogspot.com/2014/05/understanding-dogs.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 41cae80fa8c36f1b3cf55af995484cfc + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1d07aba6d4cfdbb8e9aeda074ddd652d.md b/content/discover/feed-1d07aba6d4cfdbb8e9aeda074ddd652d.md deleted file mode 100644 index 55902b521..000000000 --- a/content/discover/feed-1d07aba6d4cfdbb8e9aeda074ddd652d.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Ars Technica -date: "1970-01-01T00:00:00Z" -description: Public posts from @arstechnica@mastodon.social -params: - feedlink: https://mastodon.social/@arstechnica.rss - feedtype: rss - feedid: 1d07aba6d4cfdbb8e9aeda074ddd652d - websites: - https://mastodon.social/@arstechnica: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://arstechnica.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1d2236c18d654fb6073e107f825ef1d2.md b/content/discover/feed-1d2236c18d654fb6073e107f825ef1d2.md new file mode 100644 index 000000000..e6d24cd2b --- /dev/null +++ b/content/discover/feed-1d2236c18d654fb6073e107f825ef1d2.md @@ -0,0 +1,42 @@ +--- +title: GEN REVOLUTION +date: "2024-07-02T20:34:39-07:00" +description: "" +params: + feedlink: https://musicadelosgen.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 1d2236c18d654fb6073e107f825ef1d2 + websites: + https://musicadelosgen.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://gsoc2013cwithmobiledevices.blogspot.com/: true + https://musicadelosgen.blogspot.com/: true + https://www.blogger.com/profile/15324115095939507036: true + last_post_title: LUCE + last_post_description: "" + last_post_date: "2017-12-21T15:55:13-08:00" + last_post_link: https://musicadelosgen.blogspot.com/2012/01/luz-by-musicadelosgen-luce-by.html + last_post_categories: [] + last_post_language: "" + last_post_guid: d432a551740ba7ac53d3e546d222b84f + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1d2a1fb8ffbf958fc28d698114d0aaae.md b/content/discover/feed-1d2a1fb8ffbf958fc28d698114d0aaae.md new file mode 100644 index 000000000..ee953c30a --- /dev/null +++ b/content/discover/feed-1d2a1fb8ffbf958fc28d698114d0aaae.md @@ -0,0 +1,45 @@ +--- +title: Plundergrounds Podcast +date: "2024-02-06T18:59:32-08:00" +description: Notes and links for the Plundergrounds podcast, appearing at least once + weekly since September 2018. +params: + feedlink: https://plundergrounds.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 1d2a1fb8ffbf958fc28d698114d0aaae + websites: + https://plundergrounds.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - Gygax 75 Challenge + relme: + https://plundergrounds.blogspot.com/: true + last_post_title: 164 Revisiting Logic in Fantasy + last_post_description: "" + last_post_date: "2020-12-16T07:54:49-08:00" + last_post_link: https://plundergrounds.blogspot.com/2020/12/164-revisiting-logic-in-fantasy.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 6c619c60a2396505c723a29473f1ebd0 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1d2d7cbbb7c406e15465df7b756f046c.md b/content/discover/feed-1d2d7cbbb7c406e15465df7b756f046c.md deleted file mode 100644 index 3a37e9483..000000000 --- a/content/discover/feed-1d2d7cbbb7c406e15465df7b756f046c.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: juanfernandes on Pixelfed -date: "2024-05-17T21:05:55Z" -description: Freelance website designer. Dog owner. Occasional skateboarder. -params: - feedlink: https://pixelfed.social/users/juanfernandes.atom - feedtype: atom - feedid: 1d2d7cbbb7c406e15465df7b756f046c - websites: - https://pixelfed.social/juanfernandes: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - '#doberman' - - '#vizsla' - relme: - https://www.juanfernandes.uk/: true - last_post_title: "Double trouble. First time walking with harnesses and dual leads. - \n\n#doberman #vizsla" - last_post_description: "Double trouble. First time walking with harnesses and dual - leads. \n\n#doberman #vizsla" - last_post_date: "2024-05-17T21:05:55Z" - last_post_link: https://pixelfed.social/p/juanfernandes/697190444534785747 - last_post_categories: - - '#doberman' - - '#vizsla' - last_post_guid: a60c70c8a1bbd6b610939b4881c9a8f9 - score_criteria: - cats: 0 - description: 3 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 12 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1d4114cb56184d3d0553d3df442d3fe1.md b/content/discover/feed-1d4114cb56184d3d0553d3df442d3fe1.md new file mode 100644 index 000000000..4db0e7d3c --- /dev/null +++ b/content/discover/feed-1d4114cb56184d3d0553d3df442d3fe1.md @@ -0,0 +1,107 @@ +--- +title: Coleção de mapas interativos +date: "2024-02-02T01:18:51-03:00" +description: mapas brasileiros feitos com software livre +params: + feedlink: https://mapasnaweb.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 1d4114cb56184d3d0553d3df442d3fe1 + websites: + https://mapasnaweb.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - F_Alovmap + - F_Kamap + - F_Mapbuilder + - F_OpenLayers + - F_Pmapper + - F_SpringWeb + - F_Terraviewweb + - F_VGWebMap + - F_i3geo + - F_próprio + - I_Estadual + - I_Federal + - I_Municipal + - I_Ong + - I_Privado + - Mato Grosso do Sul + - R_Amazônia + - R_Bahia + - R_Brasil + - R_Ceará + - R_Goiás + - R_Mato Grosso + - R_Minas Gerais + - R_Nordeste + - R_Paraná + - R_Paraíba + - R_Piauí + - R_Rio Grande do Norte + - R_Rio Grande do Sul + - R_Rio de Janeiro + - R_Roraima + - R_Santa Catarina + - R_São Paulo + - R_pará + - R_pernambuco + - S_Alovmap + - S_Geoserver + - S_Mapnik + - S_SpringWeb + - S_Terralib + - S_Tilecache + - S_mapserver + - S_não identificado + - T_Agricultura + - T_Cidades + - T_Cultura + - T_Economia + - T_Educação + - T_Geologia + - T_Gestão + - T_IDE + - T_Meio ambiente + - T_Mineração + - T_Recursos hídricos + - T_Saúde + - T_Sismologia + - T_Trabalho + - T_Transporte + - T_Turismo + - T_populações + relme: + https://edmarmoretti.blogspot.com/: true + https://mapasnaweb.blogspot.com/: true + https://www.blogger.com/profile/15675245972117324157: true + last_post_title: Cidade de São Carlos - SP + last_post_description: "" + last_post_date: "2012-09-14T13:09:37-03:00" + last_post_link: https://mapasnaweb.blogspot.com/2012/09/cidade-de-sao-carlos-sp.html + last_post_categories: + - F_próprio + - I_Municipal + - R_São Paulo + - S_não identificado + - T_Cidades + last_post_language: "" + last_post_guid: 5ba9b9772b3c0a3e9c06080e2dff2cc6 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1d4b00ade3bc93b36289c7309589557a.md b/content/discover/feed-1d4b00ade3bc93b36289c7309589557a.md new file mode 100644 index 000000000..398445388 --- /dev/null +++ b/content/discover/feed-1d4b00ade3bc93b36289c7309589557a.md @@ -0,0 +1,41 @@ +--- +title: Titus Nicolae +date: "2024-03-13T09:36:50-07:00" +description: "" +params: + feedlink: https://titusnicolae.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 1d4b00ade3bc93b36289c7309589557a + websites: + https://titusnicolae.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://titusnicolae.blogspot.com/: true + https://www.blogger.com/profile/07538957061668656846: true + last_post_title: Benchmarking + last_post_description: "" + last_post_date: "2012-06-17T06:50:59-07:00" + last_post_link: https://titusnicolae.blogspot.com/2012/06/benchmarking.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 7fdcf5e672805d03dc74a6e9e90e79b6 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1d51e363a7152a574b464af19fe2973a.md b/content/discover/feed-1d51e363a7152a574b464af19fe2973a.md index be2ad7535..b7f68f16b 100644 --- a/content/discover/feed-1d51e363a7152a574b464af19fe2973a.md +++ b/content/discover/feed-1d51e363a7152a574b464af19fe2973a.md @@ -12,16 +12,17 @@ params: recommended: [] recommender: [] categories: - - gsoc - - gstreamer - ccd - - despeckle - - sobel - - video - colorenhance + - despeckle + - gsoc + - gstreamer - problems - smart sharpening + - sobel + - video relme: + https://relekandcode.blogspot.com/: true https://www.blogger.com/profile/11412600860729192403: true last_post_title: Masked sharpening works last_post_description: Over the past two weeks, I've been working on a filter that @@ -38,17 +39,22 @@ params: - smart sharpening - sobel - video + last_post_language: "" last_post_guid: 0b4e0716adb4bd93b1fcfc51c394ceda score_criteria: cats: 5 description: 0 + feedlangs: 0 postcats: 3 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-1d61be49ece7a29d85c19dd18ccab404.md b/content/discover/feed-1d61be49ece7a29d85c19dd18ccab404.md new file mode 100644 index 000000000..d3cbd0e3e --- /dev/null +++ b/content/discover/feed-1d61be49ece7a29d85c19dd18ccab404.md @@ -0,0 +1,44 @@ +--- +title: Yeah! +date: "2024-03-08T04:16:22+01:00" +description: "" +params: + feedlink: https://zinosat.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 1d61be49ece7a29d85c19dd18ccab404 + websites: + https://zinosat.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - fonts + relme: + https://addiofornelli.blogspot.com/: true + https://phatmuzak.blogspot.com/: true + https://www.blogger.com/profile/09970688239263362080: true + https://zinosat.blogspot.com/: true + last_post_title: snip2code + last_post_description: "" + last_post_date: "2012-10-28T11:43:48+01:00" + last_post_link: https://zinosat.blogspot.com/2012/10/snip2code.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 14bcb1e25d908c256684b40b62827a63 + score_criteria: + cats: 1 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 11 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1d6a713f8a87f91f541b2a38cecb6cd7.md b/content/discover/feed-1d6a713f8a87f91f541b2a38cecb6cd7.md new file mode 100644 index 000000000..21badae24 --- /dev/null +++ b/content/discover/feed-1d6a713f8a87f91f541b2a38cecb6cd7.md @@ -0,0 +1,56 @@ +--- +title: The Books that Wrote Me +date: "2024-03-12T22:06:10-04:00" +description: "" +params: + feedlink: https://thebooksthatwroteme.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 1d6a713f8a87f91f541b2a38cecb6cd7 + websites: + https://thebooksthatwroteme.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Annual Summary + - Heard It + - Quarter Summary + - Read It + - Retroblogging + - Watched It + - Weekly Post + relme: + https://armstrong-collection.blogspot.com/: true + https://geeklikemetoo.blogspot.com/: true + https://geekversusguitar.blogspot.com/: true + https://hodgecast.blogspot.com/: true + https://pottscast.blogspot.com/: true + https://praisecurseandrecurse.blogspot.com/: true + https://thebooksthatwroteme.blogspot.com/: true + https://www.blogger.com/profile/04401509483200614806: true + last_post_title: Wednesday, April 3rd, 2019 + last_post_description: "" + last_post_date: "2019-04-03T19:00:15-04:00" + last_post_link: https://thebooksthatwroteme.blogspot.com/2019/04/wednesday-april-3rd-2019.html + last_post_categories: + - Read It + - Watched It + last_post_language: "" + last_post_guid: f5a85f46cf8c216c7540f657ca42017b + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1d7f5ceea5d906c722e8a9d876bb2305.md b/content/discover/feed-1d7f5ceea5d906c722e8a9d876bb2305.md new file mode 100644 index 000000000..86ca1675a --- /dev/null +++ b/content/discover/feed-1d7f5ceea5d906c722e8a9d876bb2305.md @@ -0,0 +1,42 @@ +--- +title: Emacs on bascht.com +date: "1970-01-01T00:00:00Z" +description: Recent content in Emacs on bascht.com +params: + feedlink: https://bascht.com/tags/emacs/index.xml + feedtype: rss + feedid: 1d7f5ceea5d906c722e8a9d876bb2305 + websites: + https://bascht.com/tags/emacs/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://bascht.com/tags/emacs/: true + last_post_title: Letting mu4e reply from a catchall address + last_post_description: If you ever watched me register on a website, you might have + noticed that I always pick the sites top level domain as the local part of my + email. So, on example.com, I would register as example + last_post_date: "2022-11-09T17:38:50+01:00" + last_post_link: https://bascht.com/tech/2022/11/09/letting-mu4e-reply-from-a-catchall-address/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 64a74e12eb3038e01189d6c07e7c3815 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: de +--- diff --git a/content/discover/feed-1da1dd68b7f046534cf4178e8a333459.md b/content/discover/feed-1da1dd68b7f046534cf4178e8a333459.md deleted file mode 100644 index da23fa1bd..000000000 --- a/content/discover/feed-1da1dd68b7f046534cf4178e8a333459.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: 'Antonio Cambronero :wordpress:' -date: "1970-01-01T00:00:00Z" -description: Public posts from @blogpocket@federate.social -params: - feedlink: https://federate.social/@blogpocket.rss - feedtype: rss - feedid: 1da1dd68b7f046534cf4178e8a333459 - websites: - https://federate.social/@blogpocket: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://creativecommons.org/licenses/by-nc-sa/4.0/: false - https://twittodon.com/share.php?m=blogpocket%40federate.social&t=blogpocket: true - https://www.blogpocket.com/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1dad270728cbd129b1a3f9bdfd89170a.md b/content/discover/feed-1dad270728cbd129b1a3f9bdfd89170a.md deleted file mode 100644 index bc8582fac..000000000 --- a/content/discover/feed-1dad270728cbd129b1a3f9bdfd89170a.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Barcamp Bangalore Planners -date: "1970-01-01T00:00:00Z" -description: All about planning Barcamp Bangalore -params: - feedlink: https://planning.barcampbangalore.com/feed/ - feedtype: rss - feedid: 1dad270728cbd129b1a3f9bdfd89170a - websites: - https://planning.barcampbangalore.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Background - relme: - https://facebook.com/barcampbng: false - https://github.com/barcampbangalore: false - https://twitter.com/barcampbng: false - last_post_title: Barcamp Bangalore is back for 2024 - last_post_description: Hey Campers, Your favorite unconference event is back in - town for 2024. This edition of Barcamp is set to take place at RV University on - the 8th of June. We’ve been off the grid for a while, - last_post_date: "2024-05-21T17:36:38Z" - last_post_link: https://planning.barcampbangalore.com/barcamp-bangalore-is-back-for-2024/ - last_post_categories: - - Background - last_post_guid: e9c4b0803008e981f46996ddd923a737 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1db13989ec131eabaa417f5b4afda42c.md b/content/discover/feed-1db13989ec131eabaa417f5b4afda42c.md deleted file mode 100644 index 53169cc9e..000000000 --- a/content/discover/feed-1db13989ec131eabaa417f5b4afda42c.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Radio Blogpocket -date: "1970-01-01T00:00:00Z" -description: Las últimas noticias sobre el mundo de los blogs, WordPress y el editor - de bloques también conocido como Gutenberg. -params: - feedlink: https://www.blogpocket.com/feed/podcast - feedtype: rss - feedid: 1db13989ec131eabaa417f5b4afda42c - websites: - https://www.blogpocket.com/: false - https://www.blogpocket.com/podcast: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Technology - relme: {} - last_post_title: 'HECHO CON BLOQUES #53: Escritura mágica de Canva; Merlin; Hoja - de ruta WordPress 6.6; y mucho más' - last_post_description: Este episodio de HECHO CON BLOQUES se mencionan herramientas - como la "escritura mágica" de Canva para corregir errores y una extensión de Chrome - llamada Merlin que responde automáticamente a - last_post_date: "2024-05-24T06:55:51Z" - last_post_link: https://www.blogpocket.com/podcast/hecho-con-bloques-53/ - last_post_categories: [] - last_post_guid: 17ba8dc8b43bf86062738833a20c612a - score_criteria: - cats: 1 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 8 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-1dbd22d5c2f73a1434d9024cfcb10c4a.md b/content/discover/feed-1dbd22d5c2f73a1434d9024cfcb10c4a.md deleted file mode 100644 index fae97bed8..000000000 --- a/content/discover/feed-1dbd22d5c2f73a1434d9024cfcb10c4a.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Through Flatland to Thoughtland -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://blog.kortar.org/?feed=rss2 - feedtype: rss - feedid: 1dbd22d5c2f73a1434d9024cfcb10c4a - websites: - https://blog.kortar.org/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - MQTT - - Open Source - - OpenStack - - Cloud - relme: {} - last_post_title: 'MQTT in the Cloud: Firehose' - last_post_description: This is the first post in what’s going to be a multi post - series exploring how MQTT can be leveraged in the cloud. The series will look - at several different models for deploying applications in the - last_post_date: "2018-04-17T09:00:28Z" - last_post_link: https://blog.kortar.org/?p=565 - last_post_categories: - - MQTT - - Open Source - - OpenStack - - Cloud - last_post_guid: 8bce48505e7a85f230eabc959ee72cea - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1dc5aeaba48db9c17326a4069d23d0f0.md b/content/discover/feed-1dc5aeaba48db9c17326a4069d23d0f0.md new file mode 100644 index 000000000..c97cf764c --- /dev/null +++ b/content/discover/feed-1dc5aeaba48db9c17326a4069d23d0f0.md @@ -0,0 +1,76 @@ +--- +title: Contraptions for programming +date: "1970-01-01T00:00:00Z" +description: This is a blog about some of the nifty things I have been working on. Mostly, + I talk about Eclipse, Groovy, and AspectJ. +params: + feedlink: https://contraptionsforprogramming.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 1dc5aeaba48db9c17326a4069d23d0f0 + websites: + https://contraptionsforprogramming.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - AJDT + - AJDT AspectJ Roo Eclipse + - Ant + - AspectJ + - Eclipse + - EclipseCon + - Equinox + - GMaven + - Galileo + - Grails + - Groovy + - Groovy-Eclipse + - Helios + - Indigo + - JDT + - JSDoc + - Java + - JavaScript + - Maven + - Mylyn + - OSGi + - Orion + - PDE + - Scala + - Scripted + - Spring + - SpringIDE + - egit + - p2 + - refactoring + relme: + https://contraptionsforprogramming.blogspot.com/: true + https://phpgoodparts.blogspot.com/: true + https://werdnagreb.blogspot.com/: true + https://www.blogger.com/profile/07897697507691706588: true + last_post_title: Unshackling Mylyn from the Desktop + last_post_description: Next week at EclipseCon, I'll be giving a talk with Gunnar + Wagenknecht on our side project to bring a hosted task list to Mylyn. This is + something that I'm really excited about and it will be the + last_post_date: "2014-03-13T04:17:00Z" + last_post_link: https://contraptionsforprogramming.blogspot.com/2014/03/unshackling-mylyn-from-desktop.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 1d56e8a6222dcd735b91e3d79f648a27 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1deba61cabb40e961e033ba8a0f5750e.md b/content/discover/feed-1deba61cabb40e961e033ba8a0f5750e.md new file mode 100644 index 000000000..fccf01fd2 --- /dev/null +++ b/content/discover/feed-1deba61cabb40e961e033ba8a0f5750e.md @@ -0,0 +1,140 @@ +--- +title: Ddos & Attack World +date: "2024-03-13T08:10:51-07:00" +description: Everyone want to know about ddosing. We have useful content about attack + so keep visiting. +params: + feedlink: https://prettyartroom.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 1deba61cabb40e961e033ba8a0f5750e + websites: + https://prettyartroom.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Ddos + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Safe Your Self From Ddosing + last_post_description: "" + last_post_date: "2021-04-24T14:57:47-07:00" + last_post_link: https://prettyartroom.blogspot.com/2021/04/safe-your-self-from-ddosing.html + last_post_categories: + - Ddos + last_post_language: "" + last_post_guid: 40b79c4c267040ef33bb6c672de208fc + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1df88f8564447af08ee28c3fea37d0fc.md b/content/discover/feed-1df88f8564447af08ee28c3fea37d0fc.md deleted file mode 100644 index 62e43a099..000000000 --- a/content/discover/feed-1df88f8564447af08ee28c3fea37d0fc.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Mitch W -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://mitchw.blog/feed - feedtype: rss - feedid: 1df88f8564447af08ee28c3fea37d0fc - websites: {} - blogrolls: [] - recommended: [] - recommender: - - http://scripting.com/rss.xml - - http://scripting.com/rssNightly.xml - categories: [] - relme: {} - last_post_title: Where's a good place to post links, and just links? - last_post_description: I like the idea of having a public record of noteworthy and - interesting things I’ve read, watched and listened to, but I’d rather reserve - mitchw.blog for my own creations and thoughts. Other - last_post_date: "2024-06-02T08:51:26-07:00" - last_post_link: https://mitchw.blog/2024/06/02/wheres-a-good.html - last_post_categories: [] - last_post_guid: ec4cea0604bc176bda6373cb656a21d1 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1dfb41179f64d03370e3c27c7fa4c36c.md b/content/discover/feed-1dfb41179f64d03370e3c27c7fa4c36c.md deleted file mode 100644 index 742d7b241..000000000 --- a/content/discover/feed-1dfb41179f64d03370e3c27c7fa4c36c.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Two Steps From Hell -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://www.twostepsfromhell.com/feed/ - feedtype: rss - feedid: 1dfb41179f64d03370e3c27c7fa4c36c - websites: - https://www.twostepsfromhell.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1e1fef5272073751df0eed671a2886dd.md b/content/discover/feed-1e1fef5272073751df0eed671a2886dd.md deleted file mode 100644 index ddf126d87..000000000 --- a/content/discover/feed-1e1fef5272073751df0eed671a2886dd.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Calum Ryan - Notes -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://calumryan.com/feeds/notes/rss - feedtype: rss - feedid: 1e1fef5272073751df0eed671a2886dd - websites: - https://calumryan.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://fed.brid.gy/r/https:/calumryan.com/: false - https://github.com/calumryan: true - https://indieweb.org/User:Calumryan.com: false - https://micro.blog/calumryan: false - https://toot.cafe/@calumryan: false - last_post_title: April 3rd, 2024 - last_post_description: Third visit to the Pacific coast. Exploring Valparaíso in - good company with the very best of seafood. - last_post_date: "1970-01-01T00:00:00Z" - last_post_link: https://calumryan.com/notes/3685 - last_post_categories: [] - last_post_guid: ef84d2a375c17528d41a38b6f198150a - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1e3d56c4e1954f8db3b1185496ac63c5.md b/content/discover/feed-1e3d56c4e1954f8db3b1185496ac63c5.md new file mode 100644 index 000000000..021f1a489 --- /dev/null +++ b/content/discover/feed-1e3d56c4e1954f8db3b1185496ac63c5.md @@ -0,0 +1,142 @@ +--- +title: DTP News and Views +date: "1970-01-01T00:00:00Z" +description: The DTP News and Views blog is Brian Fitzpatrick's (aka "Fitz") window + on the world. Here you'll find information about what DTP is up to, articles on + using DTP better, and how folks in the community +params: + feedlink: https://fitzdtp.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 1e3d56c4e1954f8db3b1185496ac63c5 + websites: + https://fitzdtp.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 1.7.1 + - "2010" + - Application programming interface + - Beer + - Brazil + - Bugzilla + - California + - Connection Framework + - Connection Profile + - Connectivity + - Counties + - DTP + - Data Definition Language + - Data Formats + - Data Tools Platform + - Database + - Database connection + - Databases + - Development Tools + - Driver Definitions + - Driver Framework + - Driver Templates + - EMF + - Eclipse + - Eclipse Foundation + - Eclipse Live + - EclipseCon + - Eldorado Research Institute + - Enablement + - Galileo + - Ganymede + - Germany + - Google + - Gratis versus Libre + - Helios + - IBM + - Indigo + - Ingres + - Internet Protocol + - JBoss + - JDBC + - Java + - Java Database Connectivity + - Kermit the Frog + - Languages + - License + - Linux + - Markup Languages + - Microsoft + - Microsoft SQL Server + - Microsoft Windows + - Microsoft Windows 7 + - Motorola + - ODA + - OSGi + - October + - Open Source + - Operating system + - Oracle + - PMC + - Planet Eclipse + - Plug-in + - Programming + - Proprietary software + - Rich Client Platform + - SQL + - SQL Server 2008 + - SQLite + - Santa Clara + - Santa Clara California + - Source code + - T-shirt + - Teiid + - Tools + - United States + - Universal Description Discovery and Integration + - VM + - Video + - Windows + - Windows 7 + - Windows Update + - XML + - YouTube + - blogging + - community + - feedback + - help + - results + - summary + - survey + - updates + relme: + https://fitzdtp.blogspot.com/: true + https://www.blogger.com/profile/12177983788459862629: true + last_post_title: Final DTP Survey Results October 2010 + last_post_description: We had eight people total complete the survey (a big thank + you to all of you), which was more than I was expecting honestly. With as quiet + as things have been in DTP lately, I was expecting the sound + last_post_date: "2010-10-28T22:02:00Z" + last_post_link: https://fitzdtp.blogspot.com/2010/10/final-dtp-survey-results-october-2010.html + last_post_categories: + - DTP + - Data Tools Platform + - Eclipse + - feedback + - results + - survey + last_post_language: "" + last_post_guid: 833edd1c193dfc34fe0fbfc586c751b9 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1e3daf2db1573d19887785f0bb1157b3.md b/content/discover/feed-1e3daf2db1573d19887785f0bb1157b3.md deleted file mode 100644 index 4c1a3a93c..000000000 --- a/content/discover/feed-1e3daf2db1573d19887785f0bb1157b3.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: aows -date: "1970-01-01T00:00:00Z" -description: Public posts from @aows@mastodon.world -params: - feedlink: https://mastodon.world/@aows.rss - feedtype: rss - feedid: 1e3daf2db1573d19887785f0bb1157b3 - websites: - https://mastodon.world/@aows: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://aows.co/: true - https://instagram.com/aows: false - https://threads.net/aows: false - https://youtube.com/@aows: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1e44f644b99567a5f49ee174df1c818a.md b/content/discover/feed-1e44f644b99567a5f49ee174df1c818a.md new file mode 100644 index 000000000..c93a0a974 --- /dev/null +++ b/content/discover/feed-1e44f644b99567a5f49ee174df1c818a.md @@ -0,0 +1,75 @@ +--- +title: sanguinehearts +date: "2024-03-18T20:59:44-07:00" +description: "" +params: + feedlink: https://sanguinehearts.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 1e44f644b99567a5f49ee174df1c818a + websites: + https://sanguinehearts.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - "6502" + - Afraid of the dark + - CD PROJEKT + - CDPROJEKT + - Loom + - PC Engine + - Scumm + - ScummVM + - TG16 + - Teen Agent + - TeenAgent + - apple 2 + - apple ii + - assembly + - disassembly + - fmv + - horrorsoft + - lucasarts + - maniac mansion + - metropolis software + - personal nightmare + - reverse engineering + - scummvm personal nightmare horrorsoft + - speaker + - umv + relme: + https://sanguinehearts.blogspot.com/: true + https://www.blogger.com/profile/11114084552664045753: true + last_post_title: Maniac Mansion Apple II beeper + last_post_description: "" + last_post_date: "2010-02-07T17:06:55-08:00" + last_post_link: https://sanguinehearts.blogspot.com/2010/02/maniac-mansion-apple-ii-beeper.html + last_post_categories: + - "6502" + - Scumm + - ScummVM + - apple 2 + - apple ii + - assembly + - maniac mansion + - reverse engineering + - speaker + last_post_language: "" + last_post_guid: 3e39dec73dd16134a5f98d6273b9cab0 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1e4e6b59b87e614cd825b9a44df05771.md b/content/discover/feed-1e4e6b59b87e614cd825b9a44df05771.md deleted file mode 100644 index 93bf0d3e3..000000000 --- a/content/discover/feed-1e4e6b59b87e614cd825b9a44df05771.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Lynn Fisher -date: "1970-01-01T00:00:00Z" -description: Lynn Fisher’s Thoughts on Design and the Web -params: - feedlink: https://lynnandtonic.com/feed.xml - feedtype: rss - feedid: 1e4e6b59b87e614cd825b9a44df05771 - websites: - https://lynnandtonic.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: - - '#inktober' - - '#divtober.I' - relme: {} - last_post_title: Ten years of A Single Div - last_post_description: 'On 22 May 2019, I write about five years of A Single Div, - my favorite little side project.I participate in #inktober but with single div - illustrations. I call it #divtober.I have so much fun with the' - last_post_date: "2024-05-22T15:00:00Z" - last_post_link: https://lynnandtonic.com/thoughts/entries/ten-years-of-a-single-div/ - last_post_categories: - - '#inktober' - - '#divtober.I' - last_post_guid: 47dfdd64d64cceeb74ae0063cf750a82 - score_criteria: - cats: 0 - description: 3 - postcats: 2 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 15 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1e5de4a0517d36f9999bfd819f5a0e70.md b/content/discover/feed-1e5de4a0517d36f9999bfd819f5a0e70.md new file mode 100644 index 000000000..a9ba9fa67 --- /dev/null +++ b/content/discover/feed-1e5de4a0517d36f9999bfd819f5a0e70.md @@ -0,0 +1,62 @@ +--- +title: Bits and Bytes +date: "1970-01-01T00:00:00Z" +description: To Err is Human, to Arr is Pirate! +params: + feedlink: https://lennartkolmodin.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 1e5de4a0517d36f9999bfd819f5a0e70 + websites: + https://lennartkolmodin.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - binary + - chalmers + - gentoo + - haskell + - humour + - language + - pondering + - prank + - rydis + - tools + - windows + - wireless + - wm + - x61s + - xmonad + relme: + https://lennartkolmodin.blogspot.com/: true + https://skojmedhoj.blogspot.com/: true + https://tjenamoskva.blogspot.com/: true + https://www.blogger.com/profile/11472900998358020886: true + last_post_title: binary 0.7 + last_post_description: "This is probably the most requested feature, and was introduced + already in binary 0.6. \nIn older versions of binary, you could run the Get monad + with the following function:runGet :: Get a -> Lazy" + last_post_date: "2013-03-03T09:56:00Z" + last_post_link: https://lennartkolmodin.blogspot.com/2013/03/binary-07.html + last_post_categories: + - binary + - haskell + last_post_language: "" + last_post_guid: 199167512b288bdee9fd66c79618f9d8 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1e5e02cf337af89f1d87b00e510c3b06.md b/content/discover/feed-1e5e02cf337af89f1d87b00e510c3b06.md new file mode 100644 index 000000000..21313e706 --- /dev/null +++ b/content/discover/feed-1e5e02cf337af89f1d87b00e510c3b06.md @@ -0,0 +1,142 @@ +--- +title: Lunk Alarms Sound +date: "1970-01-01T00:00:00Z" +description: Sound of lunk alarm is irritating a lot but..... +params: + feedlink: https://antrenmanlarlamatematik.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 1e5e02cf337af89f1d87b00e510c3b06 + websites: + https://antrenmanlarlamatematik.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - sound is so bad.. + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Sound Of Lunk Alarm + last_post_description: |- + Here I've depicted some often posed inquiries about doofus + alert.What is the numskull alert utilized for? When the individual lifts, drops and hammers weight to do + anything having a place with + last_post_date: "2021-05-02T16:02:00Z" + last_post_link: https://antrenmanlarlamatematik.blogspot.com/2021/05/sound-of-lunk-alarm.html + last_post_categories: + - sound is so bad.. + last_post_language: "" + last_post_guid: dfebe765d3b4d822b7faf7ad607a6f17 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1e86b17795201956599ccae4393f6f21.md b/content/discover/feed-1e86b17795201956599ccae4393f6f21.md index df225739f..1b661f354 100644 --- a/content/discover/feed-1e86b17795201956599ccae4393f6f21.md +++ b/content/discover/feed-1e86b17795201956599ccae4393f6f21.md @@ -18,23 +18,29 @@ params: - photo - share relme: + https://fcarvalho.blogspot.com/: true https://www.blogger.com/profile/10495852584944740870: true last_post_title: Bossa Conference - Linux Multimedia Highlights last_post_description: "" last_post_date: "2007-06-23T16:24:34-03:00" last_post_link: https://fcarvalho.blogspot.com/2007/03/bossa-conference-linux-multimedia.html last_post_categories: [] + last_post_language: "" last_post_guid: e5cbe5ebeb5dc56706170d478a697463 score_criteria: cats: 5 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-1e9f7a892cc3a088f0d796a20def701d.md b/content/discover/feed-1e9f7a892cc3a088f0d796a20def701d.md deleted file mode 100644 index d796e8759..000000000 --- a/content/discover/feed-1e9f7a892cc3a088f0d796a20def701d.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Snook.ca -date: "1970-01-01T00:00:00Z" -description: Life and Times of a Web Developer -params: - feedlink: https://snook.ca/jonathan/index.rdf - feedtype: rss - feedid: 1e9f7a892cc3a088f0d796a20def701d - websites: - https://snook.ca/: true - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: [] - relme: - https://micro.blog/snookca: false - last_post_title: Turning Fifty - last_post_description: I’ve never been big about celebrating my birthday. I’m not - sure why. I don’t recall any childhood trauma around birthday parties. Whatever - the reason, my birthdays have come and gone without - last_post_date: "2024-06-01T15:43:34Z" - last_post_link: http://snook.ca/archives/personal/turning-fifty - last_post_categories: [] - last_post_guid: 1c826744ace7f7050e3113b828c213bf - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 14 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1ecfccc6cf9deaf317bb1d3b346ff03c.md b/content/discover/feed-1ecfccc6cf9deaf317bb1d3b346ff03c.md deleted file mode 100644 index 8f130651b..000000000 --- a/content/discover/feed-1ecfccc6cf9deaf317bb1d3b346ff03c.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Behind the Source -date: "1970-01-01T00:00:00Z" -description: Everyone is a junior in something. This podcast is exploring the tech, - tools and projects that power the world wide web. Each episode features a different - guest talking to Mike Street about a -params: - feedlink: https://feeds.acast.com/public/shows/62d9b3f5f39c44001194bc1e - feedtype: rss - feedid: 1ecfccc6cf9deaf317bb1d3b346ff03c - websites: - https://www.behindthesource.co.uk/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Technology - relme: {} - last_post_title: Coolify with András Bácsai - last_post_description: Mike talks about a self-hosted Netlify alternative, Coolify, - with creator András Hosted on Acast. See acast.com/privacy for more information. - last_post_date: "2022-12-01T08:00:39Z" - last_post_link: https://www.behindthesource.co.uk/podcasts/s02e05-coolify-with-andras-bacsai/ - last_post_categories: [] - last_post_guid: 3797d7b8e97d3ad0fb9a0b8d84d0e6dd - score_criteria: - cats: 1 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 8 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-1ed72efa3e85e545147aa193839b4106.md b/content/discover/feed-1ed72efa3e85e545147aa193839b4106.md new file mode 100644 index 000000000..76029ef0f --- /dev/null +++ b/content/discover/feed-1ed72efa3e85e545147aa193839b4106.md @@ -0,0 +1,47 @@ +--- +title: Eclipse JCRM and other advantures +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://jcrmanagement.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 1ed72efa3e85e545147aa193839b4106 + websites: + https://jcrmanagement.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ESE + - Eclipse JCR Management + - Eclipse Summit Europe + - JCRM + relme: + https://jcrmanagement.blogspot.com/: true + https://www.blogger.com/profile/18429739662459415277: true + last_post_title: Termination of JCR Management + last_post_description: You might have noticed that Eclipse JCRM is inactive since + some years. The reason is basically that it takes too much time to complete the + concept of an M2M transformation layer between Java Content + last_post_date: "2012-08-05T14:53:00Z" + last_post_link: https://jcrmanagement.blogspot.com/2012/08/termination-of-jcr-management.html + last_post_categories: [] + last_post_language: "" + last_post_guid: ed5bf6bf4aea4fdf34a8d0d80ba7690b + score_criteria: + cats: 4 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1eec3f5c0144669b481f31e6895c23f5.md b/content/discover/feed-1eec3f5c0144669b481f31e6895c23f5.md deleted file mode 100644 index 0f053aefe..000000000 --- a/content/discover/feed-1eec3f5c0144669b481f31e6895c23f5.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: 'Tremolo Security :kubernetes:' -date: "1970-01-01T00:00:00Z" -description: Public posts from @tremolo@hachyderm.io -params: - feedlink: https://hachyderm.io/@tremolo.rss - feedtype: rss - feedid: 1eec3f5c0144669b481f31e6895c23f5 - websites: - https://hachyderm.io/@tremolo: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/approved/: true - https://github.com/OpenUnison: true - https://github.com/TremoloSecurity: true - https://www.tremolosecurity.com/about/about: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1ef6deed9262c4f8fdc0c5ff97e4feb0.md b/content/discover/feed-1ef6deed9262c4f8fdc0c5ff97e4feb0.md new file mode 100644 index 000000000..be7b30ef5 --- /dev/null +++ b/content/discover/feed-1ef6deed9262c4f8fdc0c5ff97e4feb0.md @@ -0,0 +1,46 @@ +--- +title: Mile Stretcher +date: "1970-01-01T00:00:00Z" +description: Getting the most from each and every frequent flier mile,. +params: + feedlink: https://mile-stretcher.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 1ef6deed9262c4f8fdc0c5ff97e4feb0 + websites: + https://mile-stretcher.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://mile-stretcher.blogspot.com/: true + https://ncommander.blogspot.com/: true + https://spanish90.blogspot.com/: true + https://www.blogger.com/profile/17676152296271896899: true + last_post_title: Turning SkyPesos into SkyMiles aka Finding Low Delta Awards (part + 1) + last_post_description: One of the many grips dealing with Delta SkyMiles read on FlyerTalk is + a combined problem of poor awards availability*, and a dreadful award booking + engine. It is however possible, with some work, + last_post_date: "2010-11-11T01:55:00Z" + last_post_link: https://mile-stretcher.blogspot.com/2010/10/turning-skypesos-into-skymiles-part-1.html + last_post_categories: [] + last_post_language: "" + last_post_guid: d1058cd728fbc717f4ca44c5edb65b61 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1efefff9b841c584b6a0572f00ca77b3.md b/content/discover/feed-1efefff9b841c584b6a0572f00ca77b3.md index 244829c90..3b1c95512 100644 --- a/content/discover/feed-1efefff9b841c584b6a0572f00ca77b3.md +++ b/content/discover/feed-1efefff9b841c584b6a0572f00ca77b3.md @@ -6,46 +6,50 @@ params: feedlink: https://shkspr.mobi/blog/feed/ feedtype: rss feedid: 1efefff9b841c584b6a0572f00ca77b3 - websites: {} + websites: + https://shkspr.mobi/blog/: false blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: - '/etc/ ' - - emf - - emfcamp - - infrared + - DMCA + - copyright + - firefox + - google relme: {} - last_post_title: Infrared Infrastructure - last_post_description: I recently went to EMF Camp (which is Glastonbury for geeks - - lots of random electronics, talks, art, and camping). Naturally, I took along - my Infrared camera and pointed it at interesting things! - last_post_date: "2024-06-04T11:34:10Z" - last_post_link: https://shkspr.mobi/blog/2024/06/infrared-infrastructure/ + last_post_title: DMCA as a vector for pornographic spam? + last_post_description: There's a law in the USA called the DMCA - Digital Millennium + Copyright Act. Amongst its myriad provisions is the ability for copyright holders + to send takedown notices to service providers. If + last_post_date: "2024-07-08T11:34:05Z" + last_post_link: https://shkspr.mobi/blog/2024/07/dmca-as-a-vector-for-pornographic-spam/ last_post_categories: - '/etc/ ' - - emf - - emfcamp - - infrared - last_post_guid: 1d267f435314e19065a0f0dddb3d6328 + - DMCA + - copyright + - firefox + - google + last_post_language: "" + last_post_guid: a46cd3766502a5847f8d3c4dfd3cf729 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 - website: 0 - score: 11 + website: 1 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-1f0bfe84272a92f81b192e6949a4e135.md b/content/discover/feed-1f0bfe84272a92f81b192e6949a4e135.md deleted file mode 100644 index 98f088904..000000000 --- a/content/discover/feed-1f0bfe84272a92f81b192e6949a4e135.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Mike Street's Notes -date: "2024-05-09T18:05:51Z" -description: Notes and Links from Mike Street (mikestreety.co.uk) -params: - feedlink: https://www.mikestreety.co.uk/rss-notes.xml - feedtype: rss - feedid: 1f0bfe84272a92f81b192e6949a4e135 - websites: - https://www.mikestreety.co.uk/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/mikestreety/: true - https://gitlab.com/mikestreety: true - https://hachyderm.io/@mikestreety: true - https://twitter.com/mikestreety: false - https://www.mikestreety.co.uk/: true - last_post_title: Detect JavaScript Support in CSS - last_post_description: |- - CSS supports seems to be getting more and more options every week! - - https://ryanmulligan.dev/blog/detect-js-support-in-css/ - last_post_date: "2024-05-09T18:03:24Z" - last_post_link: https://www.mikestreety.co.uk/notes/detect-javascript-support-in-css/ - last_post_categories: [] - last_post_guid: 0b50dce4376dcf2d2cac9cadb59e3db3 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1f0ede7f8161ca33151e53fc0dfbfb47.md b/content/discover/feed-1f0ede7f8161ca33151e53fc0dfbfb47.md new file mode 100644 index 000000000..7167c12a6 --- /dev/null +++ b/content/discover/feed-1f0ede7f8161ca33151e53fc0dfbfb47.md @@ -0,0 +1,57 @@ +--- +title: スウエーデンのブログ +date: "1970-01-01T00:00:00Z" +description: In this blog, I'm practicing my small skills in Japanese. I'm just beginning + to learn. Please let me know when I do things wrong. Comments in English, Japanese, + Swedish, German, Norwegian, and Danish +params: + feedlink: https://suweedennoburogu.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 1f0ede7f8161ca33151e53fc0dfbfb47 + websites: + https://suweedennoburogu.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - japanese + - japanska + - language + - språk + - 日本語 + relme: + https://enteringthefuture.blogspot.com/: true + https://pa-rull.blogspot.com/: true + https://pinkunicornblog.blogspot.com/: true + https://suweedennoburogu.blogspot.com/: true + https://www.blogger.com/profile/00056334737313092043: true + last_post_title: てんきはわるいです + last_post_description: '十二がつと一がつはあついでした。きょ、ちょっちさむいです。今、ゆきはふります。てんきはわるいです。Andra bloggar + om: japanska, japanese, 日本語,' + last_post_date: "2007-01-20T15:26:00Z" + last_post_link: https://suweedennoburogu.blogspot.com/2007/01/blog-post.html + last_post_categories: + - japanese + - japanska + - language + - språk + - 日本語 + last_post_language: "" + last_post_guid: 9f4abc97a4e66b65f5d6af08660f8859 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1f372e24050211d2cfe810839026492e.md b/content/discover/feed-1f372e24050211d2cfe810839026492e.md deleted file mode 100644 index 5076bf9b6..000000000 --- a/content/discover/feed-1f372e24050211d2cfe810839026492e.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Surma -date: "1970-01-01T00:00:00Z" -description: Public posts from @surma@mastodon.social -params: - feedlink: https://mastodon.social/@surma.rss - feedtype: rss - feedid: 1f372e24050211d2cfe810839026492e - websites: - https://mastodon.social/@surma: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/surma: false - https://surma.dev/: true - https://x.com/dassurma: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1f465a69795b0a5620e73568b2c8846b.md b/content/discover/feed-1f465a69795b0a5620e73568b2c8846b.md deleted file mode 100644 index 68e8640f8..000000000 --- a/content/discover/feed-1f465a69795b0a5620e73568b2c8846b.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: fLaMEd -date: "1970-01-01T00:00:00Z" -description: Public posts from @flamed@social.lol -params: - feedlink: https://social.lol/@flamed.rss - feedtype: rss - feedid: 1f465a69795b0a5620e73568b2c8846b - websites: - https://social.lol/@flamed: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://32bit.cafe/: false - https://flamed.omg.lol/: false - https://flamedfury.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-1f4ab788f8a42d84ca1f9b3f5668fb17.md b/content/discover/feed-1f4ab788f8a42d84ca1f9b3f5668fb17.md index bef60215b..b242f1401 100644 --- a/content/discover/feed-1f4ab788f8a42d84ca1f9b3f5668fb17.md +++ b/content/discover/feed-1f4ab788f8a42d84ca1f9b3f5668fb17.md @@ -8,33 +8,35 @@ params: feedid: 1f4ab788f8a42d84ca1f9b3f5668fb17 websites: https://blast-o-rama.com/: true - https://www.blast-o-rama.com/: false blogrolls: [] recommended: [] recommender: [] categories: [] relme: - https://instagram.com/blast0rama: false - https://micro.blog/martyday: false - https://twitter.com/blast0rama: false - last_post_title: 'VENOM: THE LAST DANCE Gets Its First Trailer' + https://blast-o-rama.com/: true + last_post_title: A weird convention sensory memory last_post_description: |- - Till death do they part. Tom Hardy returns in Venom: The Last Dance – coming exclusively to theaters this October. - In Venom: The Last Dance, Tom Hardy returns as Venom, one of Marvel’s greatest - last_post_date: "2024-06-03T09:17:43-04:00" - last_post_link: https://blast-o-rama.com/2024/06/03/venom-the-last.html + I don’t think this would be relatable to too many people, but watching The Boy and the Heron last night, I was hit with a really strong sensory memory. + When Otakon was based in Baltimore, they’d + last_post_date: "2024-07-05T09:57:20-04:00" + last_post_link: https://blast-o-rama.com/2024/07/05/a-weird-convention.html last_post_categories: [] - last_post_guid: ee0b8d6cc40cf9a19717ad3f69fc5893 + last_post_language: "" + last_post_guid: ec2be74c707d7b59c832e8f52b918396 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 6 + score: 11 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-1f660b69c6d6173bb17a90f5077f2fc4.md b/content/discover/feed-1f660b69c6d6173bb17a90f5077f2fc4.md index 0d5a955bc..9d7d38b19 100644 --- a/content/discover/feed-1f660b69c6d6173bb17a90f5077f2fc4.md +++ b/content/discover/feed-1f660b69c6d6173bb17a90f5077f2fc4.md @@ -13,25 +13,32 @@ params: recommender: [] categories: [] relme: + https://buttondown.email/pepysdiary: true https://mastodon.social/@samuelpepys: true - last_post_title: A guide to Pepys's shorthand - last_post_description: Kate Loveman has written a very clear and useful guide to - reading the shorthand in which Pepys wrote his diary, Tachygraphy. Scroll down - that page to download the PDF guide for an insight into how - last_post_date: "2024-02-27T12:25:13Z" - last_post_link: https://www.pepysdiary.com/news/2024/02/27/14117/ + https://www.pepysdiary.com/: true + last_post_title: History News Network article about this site + last_post_description: The website History News Network has a fairly lengthy article, + 'Peeping on Pepys' by Caroline Wazer about this site and its history. It's surprisingly + thorough, quoting many posts from Site News, and + last_post_date: "2024-06-14T15:01:48Z" + last_post_link: https://www.pepysdiary.com/news/2024/06/14/14118/ last_post_categories: [] - last_post_guid: 4afa257cdf164c7526ac16f3f9e91138 + last_post_language: "" + last_post_guid: cdd5cebea614522312aa5d62e69311c7 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-1f7074281c5aed23ae5b88308e1aaebb.md b/content/discover/feed-1f7074281c5aed23ae5b88308e1aaebb.md new file mode 100644 index 000000000..dcc3bdc6d --- /dev/null +++ b/content/discover/feed-1f7074281c5aed23ae5b88308e1aaebb.md @@ -0,0 +1,41 @@ +--- +title: 'One-octet: Flux des articles sur Emacs' +date: "1970-01-01T00:00:00Z" +description: Flux RSS du blog one-octet.dev, regroupant les billets au sujets d'Emacs +params: + feedlink: https://one-octet.dev/rss/emacs.xml + feedtype: rss + feedid: 1f7074281c5aed23ae5b88308e1aaebb + websites: + https://one-octet.dev/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://emacs.ch/@fox: true + https://one-octet.dev/: true + last_post_title: Org-noter + last_post_description: Rapide présentation d'Org-noter + last_post_date: "2023-05-23T03:20:00Z" + last_post_link: https://one-octet.dev/posts/Org-noter.html + last_post_categories: [] + last_post_language: "" + last_post_guid: d4dec88b3dfffd3bb433f9c03f0de046 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1fac37fa200fd63b0e05a4039a1c578c.md b/content/discover/feed-1fac37fa200fd63b0e05a4039a1c578c.md index 57d8c4806..2a2297474 100644 --- a/content/discover/feed-1fac37fa200fd63b0e05a4039a1c578c.md +++ b/content/discover/feed-1fac37fa200fd63b0e05a4039a1c578c.md @@ -1,6 +1,6 @@ --- title: MetaFilter Projects -date: "2024-05-22T11:59:24Z" +date: "2024-07-01T16:25:45Z" description: The past 20 posts to MeFi Projects params: feedlink: https://feeds.feedburner.com/mefi/Projects @@ -10,34 +10,35 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: [] relme: {} - last_post_title: MetaFilter activity stats - last_post_description: Tracking monthly active users, posts, and comments on MetaFilter - and subsites. Automatically updated whenever the Infodump updates.There have been - various activity stats produced over the years, - last_post_date: "2024-05-22T11:59:24Z" - last_post_link: https://projects.metafilter.com/6277/MetaFilter-activity-stats + last_post_title: catfishing - the Wikipedia category guessing game + last_post_description: Guess the Wikipedia article from the categories it's in. + Every day there are 10 articles to guess, from a pool of about 2,500 notable, + diverse and interesting people, places and things. It's free and + last_post_date: "2024-07-01T16:25:45Z" + last_post_link: https://projects.metafilter.com/6283/catfishing-the-Wikipedia-category-guessing-game last_post_categories: [] - last_post_guid: 9da7345f95a8b7f9318462969c4b91cd + last_post_language: "" + last_post_guid: 5a33ce757bd090ceb125dc599fe7e898 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 11 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-1fbc69796adeabb25ef683751da45f09.md b/content/discover/feed-1fbc69796adeabb25ef683751da45f09.md new file mode 100644 index 000000000..1d5b419aa --- /dev/null +++ b/content/discover/feed-1fbc69796adeabb25ef683751da45f09.md @@ -0,0 +1,43 @@ +--- +title: Matan Abudy +date: "2024-07-09T03:20:36Z" +description: I am a graduate student studying computational linguistics at under + the guidance of , and part of the . My interest lies primarily in human cognition, + speci... +params: + feedlink: https://matanabudy.com/feed/ + feedtype: atom + feedid: 1fbc69796adeabb25ef683751da45f09 + websites: + https://matanabudy.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php + categories: [] + relme: {} + last_post_title: 'Re: Bug Club Buy Me A Coffee Sports' + last_post_description: "" + last_post_date: "2024-07-03T20:58:02Z" + last_post_link: https://matanabudy.com/re-bug-club-buy-me-a-coffee-sports/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 37f5f647bdb20ed0a8396873fd6e098f + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1fe8386bedee19508bb127e33143e965.md b/content/discover/feed-1fe8386bedee19508bb127e33143e965.md new file mode 100644 index 000000000..9f51539a1 --- /dev/null +++ b/content/discover/feed-1fe8386bedee19508bb127e33143e965.md @@ -0,0 +1,43 @@ +--- +title: Wai Hon's Blog +date: "1970-01-01T00:00:00Z" +description: Recent content on Wai Hon's Blog +params: + feedlink: https://whhone.com/index.xml + feedtype: rss + feedid: 1fe8386bedee19508bb127e33143e965 + websites: + https://whhone.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://emacs.ch/@whhone: true + https://whhone.com/: true + last_post_title: Options to Replace String in Large Scale + last_post_description: 10 years ago, when I became a software engineer, my mentor + showed me how to replace all occurrences of a string (or a regex) under a large + codebase effectively with a tool called codemod. It turned + last_post_date: "2023-10-25T00:00:00Z" + last_post_link: https://whhone.com/posts/large-scale-replace-string/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 6d3edd8cf6ffa8904500459f5034b719 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-1ff76ce45b6425eb5ed34e95b92dc814.md b/content/discover/feed-1ff76ce45b6425eb5ed34e95b92dc814.md new file mode 100644 index 000000000..0aa1c977d --- /dev/null +++ b/content/discover/feed-1ff76ce45b6425eb5ed34e95b92dc814.md @@ -0,0 +1,51 @@ +--- +title: Unkansas +date: "2024-05-04T02:16:55-07:00" +description: Mostly WFRP house rules and notes taken on RPGs I've read but don't really + expect to play +params: + feedlink: https://unkansas.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 1ff76ce45b6425eb5ed34e95b92dc814 + websites: + https://unkansas.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Dice Pool + - HouseRules + - OSR + - Play Report + - RPG Notes + - Solo RPG + - The Enemy Within + - WFRP + relme: + https://unkansas.blogspot.com/: true + last_post_title: 'WFRP 4e House Rules: Chases' + last_post_description: "" + last_post_date: "2024-03-25T14:29:50-07:00" + last_post_link: https://unkansas.blogspot.com/2024/03/wfrp-4e-house-rules-chases.html + last_post_categories: + - HouseRules + - WFRP + last_post_language: "" + last_post_guid: ba424f1373d22072fb062631258d6ec1 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-1ff7749c068471dbd8171cee63742ca1.md b/content/discover/feed-1ff7749c068471dbd8171cee63742ca1.md new file mode 100644 index 000000000..59c2cf6f7 --- /dev/null +++ b/content/discover/feed-1ff7749c068471dbd8171cee63742ca1.md @@ -0,0 +1,47 @@ +--- +title: david-e +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://phatmuzak.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 1ff7749c068471dbd8171cee63742ca1 + websites: + https://phatmuzak.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - film + relme: + https://addiofornelli.blogspot.com/: true + https://phatmuzak.blogspot.com/: true + https://www.blogger.com/profile/09970688239263362080: true + https://zinosat.blogspot.com/: true + last_post_title: Babel + last_post_description: 'Babel è un bellissimo film diretto da Alejandro González + Iñárritu ed interpretato da Brad Bitt: era tempo che volevo vedere un film così + bello!Meritato premio per la miglior regia al festival di' + last_post_date: "2008-11-05T22:36:00Z" + last_post_link: https://phatmuzak.blogspot.com/2008/11/babel.html + last_post_categories: + - film + last_post_language: "" + last_post_guid: 8985da6315c0c6621b82dbf9078779fb + score_criteria: + cats: 1 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 12 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-200de43aed556f909c8b0cf5607a9fee.md b/content/discover/feed-200de43aed556f909c8b0cf5607a9fee.md deleted file mode 100644 index bb6505373..000000000 --- a/content/discover/feed-200de43aed556f909c8b0cf5607a9fee.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Comments for Distributed.blog -date: "1970-01-01T00:00:00Z" -description: The future of work is here. -params: - feedlink: https://distributed.blog/comments/feed/ - feedtype: rss - feedid: 200de43aed556f909c8b0cf5607a9fee - websites: - https://distributed.blog/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: 'Comment on RTOblox: Roblox Steps Away From Remote Work by Daniel' - last_post_description: Curious why culture is being asked to change when technology - doesn't meet their needs. I believe that technology should work the way we need - it to, not the other way around. I agree that three hours - last_post_date: "2023-12-10T19:06:38Z" - last_post_link: https://distributed.blog/2023/10/26/roblox-return-to-office/comment-page-1/#comment-3126 - last_post_categories: [] - last_post_guid: 53c7ebeebfcffadaa9cf72fae331dfac - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2011f60b596a56f13f5d8ca4ae9e1910.md b/content/discover/feed-2011f60b596a56f13f5d8ca4ae9e1910.md deleted file mode 100644 index fbf370af5..000000000 --- a/content/discover/feed-2011f60b596a56f13f5d8ca4ae9e1910.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Comentarios en Raúl Hernández González | @rahego -date: "1970-01-01T00:00:00Z" -description: Ideas y reflexiones para una vida más sencilla, equilibrada y significativa -params: - feedlink: https://raulhernandezgonzalez.com/comments/feed/ - feedtype: rss - feedid: 2011f60b596a56f13f5d8ca4ae9e1910 - websites: - https://raulhernandezgonzalez.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comentario en Un fracaso que me hace feliz por Melina - last_post_description: Hola! Hoy te descubrí en youtube, te empecé a seguir en IG - y por primera vez leo una web, me encantó tu posteo, gracias por brindarme esta - reflexión a la cual coincido, "al menos lo intentaste, - last_post_date: "2024-03-13T01:44:14Z" - last_post_link: https://raulhernandezgonzalez.com/un-fracaso-que-me-hace-feliz/#comment-12734 - last_post_categories: [] - last_post_guid: d26e84fa372a5bab0d8a5c30373c427a - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-201cf67ad6c1be039bd9d8513e15b22d.md b/content/discover/feed-201cf67ad6c1be039bd9d8513e15b22d.md deleted file mode 100644 index ded49a9bc..000000000 --- a/content/discover/feed-201cf67ad6c1be039bd9d8513e15b22d.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: '@pftnhr.blue - pfotenhauer' -date: "1970-01-01T00:00:00Z" -description: I don’t have no class -params: - feedlink: https://bsky.app/profile/did:plc:ieqh4e4k5kumjb7qlwja54kw/rss - feedtype: rss - feedid: 201cf67ad6c1be039bd9d8513e15b22d - websites: - https://bsky.app/profile/pftnhr.blue: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2056e467a1baadae046524bc8e7b751c.md b/content/discover/feed-2056e467a1baadae046524bc8e7b751c.md index 4253716ce..9c990c84e 100644 --- a/content/discover/feed-2056e467a1baadae046524bc8e7b751c.md +++ b/content/discover/feed-2056e467a1baadae046524bc8e7b751c.md @@ -14,12 +14,12 @@ params: recommender: - https://alexsci.com/blog/rss.xml categories: - - Math - - metric - - Rants - Celsius - Fahrenheit + - Math + - Rants - localization + - metric relme: {} last_post_title: 'Localization Failure: Temperature is Hard' last_post_description: 'The Guardian is one of my favorite news sources. I’m a subscriber @@ -28,23 +28,28 @@ params: last_post_date: "2023-10-17T22:40:05Z" last_post_link: https://randomascii.wordpress.com/2023/10/17/localization-failure-temperature-is-hard/ last_post_categories: - - Math - - metric - - Rants - Celsius - Fahrenheit + - Math + - Rants - localization + - metric + last_post_language: "" last_post_guid: 1dce2bff5239a0db15675417b087860c score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 16 + score: 20 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-20610e9fd49d223667f023f983c7a19d.md b/content/discover/feed-20610e9fd49d223667f023f983c7a19d.md new file mode 100644 index 000000000..83d487606 --- /dev/null +++ b/content/discover/feed-20610e9fd49d223667f023f983c7a19d.md @@ -0,0 +1,115 @@ +--- +title: Fred Madiot +date: "1970-01-01T00:00:00Z" +description: Eclipse, Model-Driven Engineering, Software Modernization +params: + feedlink: https://fmadiot.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 20610e9fd49d223667f023f983c7a19d + websites: + https://fmadiot.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - CDO + - EMF + - EMF Facet + - Eclipse + - Java + - MoDisco + - OCL + - Obeo Designer + - SMM + - acceleo + - adm + - avionics + - b3 + - browser + - case-study + - conference + - customization + - demo camp + - development + - download + - dsl + - eclipsecon + - ecore + - eef + - esa + - extensibility + - facet + - flex + - generation + - gmf + - helios + - indigo + - install + - jee + - jsp + - junit + - kdm + - magic-draw + - md day + - mdd + - mde + - mdsd + - metamodel + - mia-insight + - mia-studio + - migration + - model + - modeling + - modisco website + - nantes + - nasa + - omg + - quality + - rcp + - refactoring + - reverse + - roadshow + - satellite + - sirius + - siriuscon + - smartEA + - sonar + - space + - squale + - system engineering + - tests + - thales + - uml + - vb6 + - video + relme: + https://fmadiot.blogspot.com/: true + https://www.blogger.com/profile/11419643764598868613: true + last_post_title: Group And Stack Your Diagram Elements With Sirius 3.1 + last_post_description: |- + Want to group diagram elements into vertical or horizontal stacks? Since Sirius 3.1, it is possible. + + With Sirius 3.0, it was already possible to create compartments, but we had introduced it as an + last_post_date: "2015-11-02T12:55:00Z" + last_post_link: https://fmadiot.blogspot.com/2015/11/group-and-stack-your-diagram-elements.html + last_post_categories: + - sirius + last_post_language: "" + last_post_guid: e158f5e154870b2fa39a28c56dc69c7f + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-207cf4c1fe1920e82399fc9824e9a062.md b/content/discover/feed-207cf4c1fe1920e82399fc9824e9a062.md index ac5ed4158..a7b9feeef 100644 --- a/content/discover/feed-207cf4c1fe1920e82399fc9824e9a062.md +++ b/content/discover/feed-207cf4c1fe1920e82399fc9824e9a062.md @@ -13,34 +13,39 @@ params: recommender: - https://visitmy.website/feed.xml categories: - - healthcare - - government - - digital-transformation - design + - digital-transformation + - government + - healthcare - product-management relme: - https://twitter.com/TrillyC: false + https://medium.com/@trillyc?source=rss-1bc1e5757f52------2: true last_post_title: 'Monthnote: February 2024' last_post_description: "" last_post_date: "2024-03-02T14:02:12Z" last_post_link: https://weeknot.es/monthnote-february-2024-7d9dcbfa0ec5?source=rss-1bc1e5757f52------2 last_post_categories: - - healthcare - - government - - digital-transformation - design + - digital-transformation + - government + - healthcare - product-management + last_post_language: "" last_post_guid: a553373151448e4793fe721ac2b1590e score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 3 + posts: 3 promoted: 5 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 17 + score: 21 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-2086241a62b8a6207a3d821a36490f55.md b/content/discover/feed-2086241a62b8a6207a3d821a36490f55.md index fe004b04a..a2f8e0db0 100644 --- a/content/discover/feed-2086241a62b8a6207a3d821a36490f55.md +++ b/content/discover/feed-2086241a62b8a6207a3d821a36490f55.md @@ -15,25 +15,29 @@ params: recommender: [] categories: [] relme: - https://mastodon.social/@philgyford: false - https://www.gyford.com/: false - last_post_title: Life-Ruining Mistakes? - last_post_description: We live at the best time to be alive in human history. Maybe - collectively, on average, but that… - last_post_date: "2024-04-25T21:18:17Z" - last_post_link: https://www.gyford.com/phil/comments/2024/04/25/mistakes/ + https://www.gyford.com/phil/comments/: true + last_post_title: A scientific investigation into bears, the cuddly apex preda... + last_post_description: That reminds me, I liked this recent article on bikepacking.com, + A WOMAN WHO LEFT SOCIETY TO LIVE… + last_post_date: "2024-06-11T09:59:00Z" + last_post_link: https://www.gyford.com/phil/comments/2024/06/11/bears/ last_post_categories: [] - last_post_guid: af546c45ae105b02b9b7df52b5185be0 + last_post_language: "" + last_post_guid: cd3a28dd0e94e5e262bd968e6dc506e1 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 9 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-2089155f560f0d156f846850d1412157.md b/content/discover/feed-2089155f560f0d156f846850d1412157.md deleted file mode 100644 index 5de4d36e0..000000000 --- a/content/discover/feed-2089155f560f0d156f846850d1412157.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Chris Burnell -date: "1970-01-01T00:00:00Z" -description: Public posts from @chrisburnell@repc.co -params: - feedlink: https://fediverse.repc.co/@chrisburnell.rss - feedtype: rss - feedid: 2089155f560f0d156f846850d1412157 - websites: - https://fediverse.repc.co/@chrisburnell: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://chrisburnell.com/: true - https://chrisburnell.com/links: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-20950b0ff5a208fa4f05e817f21005a8.md b/content/discover/feed-20950b0ff5a208fa4f05e817f21005a8.md new file mode 100644 index 000000000..d7ec40166 --- /dev/null +++ b/content/discover/feed-20950b0ff5a208fa4f05e817f21005a8.md @@ -0,0 +1,145 @@ +--- +title: Alarm Its Noise +date: "1970-01-01T00:00:00Z" +description: Noisy alarm feels so bad. +params: + feedlink: https://cpffeedindicator.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 20950b0ff5a208fa4f05e817f21005a8 + websites: + https://cpffeedindicator.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Alarm is so bad + - Famous Area Codes + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Important Area Codes + last_post_description: |- + What is the contrast between 800 area code and other + complementary numbers? + +  There are seven complimentary numbers in + the United States, 800, 833, 844, 855, 866, 877, 888. A large portion of + last_post_date: "2021-11-12T08:16:00Z" + last_post_link: https://cpffeedindicator.blogspot.com/2021/11/important-area-codes.html + last_post_categories: + - Famous Area Codes + last_post_language: "" + last_post_guid: c1ed14ffe6ef08d8656610ed05899ebe + score_criteria: + cats: 2 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-20979d11bd94d12d66bf39053837b7af.md b/content/discover/feed-20979d11bd94d12d66bf39053837b7af.md new file mode 100644 index 000000000..094e768e7 --- /dev/null +++ b/content/discover/feed-20979d11bd94d12d66bf39053837b7af.md @@ -0,0 +1,43 @@ +--- +title: Longest Voyage +date: "1970-01-01T00:00:00Z" +description: Recent logs and vignettes on on Longest Voyage +params: + feedlink: https://longest.voyage/index.xml + feedtype: rss + feedid: 20979d11bd94d12d66bf39053837b7af + websites: + https://longest.voyage/: true + blogrolls: [] + recommended: [] + recommender: + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php + categories: [] + relme: {} + last_post_title: '[log] Skill Issue' + last_post_description: When you’re learning a foreign language. There’s difficulty + in finding the right content to learn from. If it’s too hard and you’re looking + up things too often. You can’t really absorb the + last_post_date: "2024-06-09T10:53:52+09:00" + last_post_link: https://longest.voyage/log/2024-06-09/ + last_post_categories: [] + last_post_language: "" + last_post_guid: aa92b8eca559dfac3c5d403832ac6bd0 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-209948f90485565ea2919ea96c8b88a8.md b/content/discover/feed-209948f90485565ea2919ea96c8b88a8.md index 3d30f8ae0..d3c1c9667 100644 --- a/content/discover/feed-209948f90485565ea2919ea96c8b88a8.md +++ b/content/discover/feed-209948f90485565ea2919ea96c8b88a8.md @@ -11,14 +11,10 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: [] relme: {} last_post_title: Chicago-style essays in org-mode @@ -28,17 +24,22 @@ params: last_post_date: "2024-03-07T12:00:00-04:00" last_post_link: https://honza.pokorny.ca/2024/03/chicago-style-essays-in-org-mode/ last_post_categories: [] + last_post_language: "" last_post_guid: 317e022e174805dada47fdfb1a4dbe89 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-20a5c38d38710175f3b3388454b3c163.md b/content/discover/feed-20a5c38d38710175f3b3388454b3c163.md index 33acc26ee..e7a858012 100644 --- a/content/discover/feed-20a5c38d38710175f3b3388454b3c163.md +++ b/content/discover/feed-20a5c38d38710175f3b3388454b3c163.md @@ -13,23 +13,31 @@ params: recommender: [] categories: [] relme: + https://dotsony.blogspot.com/: true + https://dotsonyraceblog.blogspot.com/: true + https://dotsonytinkerblog.blogspot.com/: true https://www.blogger.com/profile/17046865031973847470: true last_post_title: Calendar Update Part II - After The Release last_post_description: "" last_post_date: "2011-06-10T11:14:39-07:00" last_post_link: https://dotsony.blogspot.com/2011/06/calendar-update-part-ii-after-release.html last_post_categories: [] + last_post_language: "" last_post_guid: afaaf7ac2c4ec86a428949d7aa338da2 score_criteria: cats: 0 description: 0 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 7 + score: 10 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-20a7416537892bab50ddbf7808c79eb5.md b/content/discover/feed-20a7416537892bab50ddbf7808c79eb5.md new file mode 100644 index 000000000..f79c430c2 --- /dev/null +++ b/content/discover/feed-20a7416537892bab50ddbf7808c79eb5.md @@ -0,0 +1,46 @@ +--- +title: Geo tips & tricks +date: "2024-04-25T00:21:12-07:00" +description: |- + OSGeo, GDAL and other GIS fun. + Find me on Twitter, GitHub or on my company Spatialys website +params: + feedlink: https://erouault.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 20a7416537892bab50ddbf7808c79eb5 + websites: + https://erouault.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - gdal + - osgeo + - qgis + relme: + https://erouault.blogspot.com/: true + https://www.blogger.com/profile/13965870607935959853: true + last_post_title: Order of GeoJSON properties and graph theory + last_post_description: "" + last_post_date: "2021-09-26T14:16:12-07:00" + last_post_link: https://erouault.blogspot.com/2021/09/order-of-geojson-properties-and-graph.html + last_post_categories: [] + last_post_language: "" + last_post_guid: b5ff01cf234028caa8fc4edbe5fa01a9 + score_criteria: + cats: 3 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-20aebfe29f8bc88ac7828ec3cf89ea1d.md b/content/discover/feed-20aebfe29f8bc88ac7828ec3cf89ea1d.md new file mode 100644 index 000000000..2b7c1f1ad --- /dev/null +++ b/content/discover/feed-20aebfe29f8bc88ac7828ec3cf89ea1d.md @@ -0,0 +1,43 @@ +--- +title: Comments for   Bartosz Milewski's Programming Cafe +date: "1970-01-01T00:00:00Z" +description: Category Theory, Haskell, Concurrency, C++ +params: + feedlink: https://bartoszmilewski.com/comments/feed/ + feedtype: rss + feedid: 20aebfe29f8bc88ac7828ec3cf89ea1d + websites: + https://bartoszmilewski.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://bartoszmilewski.com/: true + last_post_title: Comment on Algebras for Monads by Bartosz Milewski + last_post_description: |- + In reply to Drax Tayten. + + The two functors go in the opposite direction, so the composition UT ∘ + last_post_date: "2024-06-07T10:54:40Z" + last_post_link: https://bartoszmilewski.com/2017/03/14/algebras-for-monads/#comment-219189 + last_post_categories: [] + last_post_language: "" + last_post_guid: 536aaff971c52c59e32a22bd624f8a7c + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-20dfcf81f5b5c56927b1d6c6e42ba0a7.md b/content/discover/feed-20dfcf81f5b5c56927b1d6c6e42ba0a7.md new file mode 100644 index 000000000..1c5cc9973 --- /dev/null +++ b/content/discover/feed-20dfcf81f5b5c56927b1d6c6e42ba0a7.md @@ -0,0 +1,43 @@ +--- +title: Alvaro Ramirez's notes +date: "1970-01-01T00:00:00Z" +description: Alvaro's notes from a hacked up org HTML export. +params: + feedlink: https://xenodium.com/rss.xml + feedtype: rss + feedid: 20dfcf81f5b5c56927b1d6c6e42ba0a7 + websites: {} + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: [] + relme: {} + last_post_title: Ready Player Mode + last_post_description: "03 July 2024 Ready Player Mode\n \n\n \n\n \nAs an Emacs + user, I eventually made the leap over to dired as my file manager of choice. + Dired has magical things like wdired. But this post isn't so much" + last_post_date: "2024-07-03T00:00:00+01:00" + last_post_link: https://lmno.lol/alvaro/ready-player-mode + last_post_categories: [] + last_post_language: "" + last_post_guid: d544758002d65f554ef0a6f98cfb32de + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 0 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-20efdcceffb818c090ffff031d723dac.md b/content/discover/feed-20efdcceffb818c090ffff031d723dac.md new file mode 100644 index 000000000..77b45edff --- /dev/null +++ b/content/discover/feed-20efdcceffb818c090ffff031d723dac.md @@ -0,0 +1,40 @@ +--- +title: Zig 语言中文社区 +date: "1970-01-01T00:00:00Z" +description: Recent content on Zig 语言中文社区 +params: + feedlink: https://ziglang.cc/index.xml + feedtype: rss + feedid: 20efdcceffb818c090ffff031d723dac + websites: + https://ziglang.cc/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://ziglang.cc/: true + last_post_title: 202406 | 0.13 来了 + last_post_description: 重大事件 2024-06-07,0.13.0 发布,历时不足 2 个月,有 73 位贡献者,一共进行了 415 次提交! + last_post_date: "2024-07-01T20:34:51+08:00" + last_post_link: https://ziglang.cc/monthly/202406/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 03fca73dcb5a28f36241e9744f23c59a + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-20f07ce061e94bb0e2583eb745617599.md b/content/discover/feed-20f07ce061e94bb0e2583eb745617599.md new file mode 100644 index 000000000..05db1e6f2 --- /dev/null +++ b/content/discover/feed-20f07ce061e94bb0e2583eb745617599.md @@ -0,0 +1,44 @@ +--- +title: Adventures in Thoughtlessness +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://adventuresinthoughtlessness.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 20f07ce061e94bb0e2583eb745617599 + websites: + https://adventuresinthoughtlessness.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://adventuresinthoughtlessness.blogspot.com/: true + https://www.blogger.com/profile/02597761690243211608: true + last_post_title: Moving on to "undefined" + last_post_description: |- + Today’s post is more personal than usual. March 15 will be my last day at IBM, and will also be the beginning of a different relationship with Eclipse and Orion. + + We all juggle different interests + last_post_date: "2013-02-21T16:40:00Z" + last_post_link: https://adventuresinthoughtlessness.blogspot.com/2013/02/moving-on-to-undefined.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 5906b26f52cc42f41d6d1472e39a5d17 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-20f49859a7e6bdb603cd72af8121f99b.md b/content/discover/feed-20f49859a7e6bdb603cd72af8121f99b.md index efc9372e1..c70e38b30 100644 --- a/content/discover/feed-20f49859a7e6bdb603cd72af8121f99b.md +++ b/content/discover/feed-20f49859a7e6bdb603cd72af8121f99b.md @@ -14,26 +14,30 @@ params: - https://alexsci.com/blog/rss.xml categories: [] relme: - https://micro.blog/tchambers: false - last_post_title: Ideas for How ActivityPub Might Solve this Problem that BlueSky - Points Out? - last_post_description: 'OK Internet hive mind: working thru a half-formed idea. - I like that BluesSky and Nostr and ActivityPub all learn off of each other''s - good ideas.  And I do think that BlueSky''s claims of more' - last_post_date: "2024-03-29T22:35:09-04:00" - last_post_link: https://www.timothychambers.net/2024/03/29/ideas-for-how.html + https://www.timothychambers.net/: true + last_post_title: Ai and the Fediverse, and Indieweb.Social + last_post_description: As we see Apple, Meta, and Google deeply integrate their + AI systems deeply into their platforms, browsers, and operating systems, I think + one of the competitive advantages of the Fediverse will be + last_post_date: "2024-06-16T22:22:52-04:00" + last_post_link: https://www.timothychambers.net/2024/06/16/ai-and-the.html last_post_categories: [] - last_post_guid: 9cc03175975c892d1e8af9be317bc74d + last_post_language: "" + last_post_guid: e75da0f2748e6bcb943e0c7d888d26e7 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 11 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-20f62b55eea3e9d4d7d6268a8b62b3dd.md b/content/discover/feed-20f62b55eea3e9d4d7d6268a8b62b3dd.md deleted file mode 100644 index 95de39f9d..000000000 --- a/content/discover/feed-20f62b55eea3e9d4d7d6268a8b62b3dd.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: Hi, I'm Brunty on Matt Brunt - Developer & Problem Solver -date: "1970-01-01T00:00:00Z" -description: Recent content in Hi, I'm Brunty on Matt Brunt - Developer & Problem - Solver -params: - feedlink: https://brunty.me/index.xml - feedtype: rss - feedid: 20f62b55eea3e9d4d7d6268a8b62b3dd - websites: - https://brunty.me/: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: [] - relme: - https://brunty.me/posts/index.xml: false - https://brunty.social/@brunty: false - https://github.com/brunty: true - https://instagram.com/brunty.me: false - https://twitter.com/Brunty: false - last_post_title: Camera Gear 2024 - last_post_description: |- - I’m a hobby photographer. It’s something I enjoy. I recently bought myself a new mirrorless camera and figured I’d - post about the main bits of gear here. - Camera Bodies - Canon 7D - I bought this - last_post_date: "2024-05-08T10:57:44+01:00" - last_post_link: https://brunty.me/post/camera-gear-2024/ - last_post_categories: [] - last_post_guid: e843f2446bb2c35c00583e920bcb551f - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 15 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-20fa52b9515cce4a538f8cb95219c2f5.md b/content/discover/feed-20fa52b9515cce4a538f8cb95219c2f5.md new file mode 100644 index 000000000..269234639 --- /dev/null +++ b/content/discover/feed-20fa52b9515cce4a538f8cb95219c2f5.md @@ -0,0 +1,40 @@ +--- +title: Paulo Henrique Rodrigues Pinheiro +date: "2024-07-09T03:23:38Z" +description: Parêmias nem tão pequenas, nem tão profundas, sobre a sociedade capitalista +params: + feedlink: https://bolha.blog/paulohrpinheiro/feed/ + feedtype: rss + feedid: 20fa52b9515cce4a538f8cb95219c2f5 + websites: + https://bolha.blog/paulohrpinheiro/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://bolha.blog/paulohrpinheiro/: true + last_post_title: Luta + last_post_description: "" + last_post_date: "2024-06-21T12:58:22Z" + last_post_link: https://bolha.blog/paulohrpinheiro/luta-9zsv + last_post_categories: [] + last_post_language: "" + last_post_guid: 64aac4df874d6ccc1c539ced52241839 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-21027fa521b05e99d3fdae5e86c57ae5.md b/content/discover/feed-21027fa521b05e99d3fdae5e86c57ae5.md deleted file mode 100644 index 2236d74bd..000000000 --- a/content/discover/feed-21027fa521b05e99d3fdae5e86c57ae5.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Open Privacy Research Society -date: "1970-01-01T00:00:00Z" -description: Public posts from @openprivacy@hachyderm.io -params: - feedlink: https://hachyderm.io/@openprivacy.rss - feedtype: rss - feedid: 21027fa521b05e99d3fdae5e86c57ae5 - websites: - https://hachyderm.io/@openprivacy: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://openprivacy.ca/: true - https://openprivacy.ca/donate/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-21035ed1dc483b37e15974a289f70890.md b/content/discover/feed-21035ed1dc483b37e15974a289f70890.md deleted file mode 100644 index 2e4893346..000000000 --- a/content/discover/feed-21035ed1dc483b37e15974a289f70890.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Wade -date: "1970-01-01T00:00:00Z" -description: Public posts from @wade@social.lol -params: - feedlink: https://social.lol/@wade.rss - feedtype: rss - feedid: 21035ed1dc483b37e15974a289f70890 - websites: - https://social.lol/@wade: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://iwader.co.uk/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-210d01a9ff7b71ffa08bab48bac5493e.md b/content/discover/feed-210d01a9ff7b71ffa08bab48bac5493e.md deleted file mode 100644 index 4c41e0b8e..000000000 --- a/content/discover/feed-210d01a9ff7b71ffa08bab48bac5493e.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: A Book Apart - Press -date: "2024-03-01T10:46:35-05:00" -description: "" -params: - feedlink: https://abookapart.com/blogs/press.atom - feedtype: atom - feedid: 210d01a9ff7b71ffa08bab48bac5493e - websites: - https://abookapart.com/blogs/press: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: A New Chapter for A Book Apart - last_post_description: Dear Reader, We wanted to share a bit of news with you. Since - opening our doors in 2010, we’ve navigated considerable change—from rising production - costs, to fluctuating fulfillment needs, to - last_post_date: "2024-03-01T10:46:35-05:00" - last_post_link: https://abookapart.com/blogs/press/a-new-chapter-for-a-book-apart - last_post_categories: [] - last_post_guid: 69fa28bbb9f99d6a7f44f452016a931f - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-210f30d4d018914c9cfc2bbd922a6f43.md b/content/discover/feed-210f30d4d018914c9cfc2bbd922a6f43.md deleted file mode 100644 index 446f80373..000000000 --- a/content/discover/feed-210f30d4d018914c9cfc2bbd922a6f43.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Paul ‮etnomailgaT -date: "1970-01-01T00:00:00Z" -description: Public posts from @paul@soylent.green -params: - feedlink: https://soylent.green/@paul.rss - feedtype: rss - feedid: 210f30d4d018914c9cfc2bbd922a6f43 - websites: - https://soylent.green/@paul: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/paultag: true - https://k3xec.com/: true - https://pault.ag/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-21150028482246dd820d7090870f583e.md b/content/discover/feed-21150028482246dd820d7090870f583e.md new file mode 100644 index 000000000..808fdca53 --- /dev/null +++ b/content/discover/feed-21150028482246dd820d7090870f583e.md @@ -0,0 +1,46 @@ +--- +title: Delta's D&D Hotspot +date: "1970-01-01T00:00:00Z" +description: Math, history, and design of old-school D&D +params: + feedlink: https://deltasdnd.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 21150028482246dd820d7090870f583e + websites: + https://deltasdnd.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - marvel + - poll + - starfrontiers + - subsurveys + relme: + https://deltasdnd.blogspot.com/: true + last_post_title: Fearful Ends Now on Kickstarter + last_post_description: The long-time passion project of my Wandering DMs partner + Paul Siegel is currently funding on Kickstarter!Fearful Ends is a rules-light, + story-centric roleplaying system for horror themed games. It + last_post_date: "2023-10-09T12:00:00Z" + last_post_link: https://deltasdnd.blogspot.com/2023/10/fearful-ends-now-on-kickstarter.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 061522e00f6d59fdb1ce79ffb9c66db6 + score_criteria: + cats: 4 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-211b5a4382708dddcf8053de162e59d6.md b/content/discover/feed-211b5a4382708dddcf8053de162e59d6.md new file mode 100644 index 000000000..81971ecd9 --- /dev/null +++ b/content/discover/feed-211b5a4382708dddcf8053de162e59d6.md @@ -0,0 +1,78 @@ +--- +title: I Like Eclipse +date: "2024-03-19T10:11:44+05:30" +description: This blog is dedicated to the hundreds of developers in the Eclipse Community. +params: + feedlink: https://eclipse-info.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 211b5a4382708dddcf8053de162e59d6 + websites: + https://eclipse-info.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 3D + - Comments wildcard Imports Constrcutors + - Creativity Education + - Data Hiding Object OO + - Eclipse + - Eclipse Consultant Trainer + - Eclipse Day India 2010 + - Eclipse Demo Camp + - Eclipse Demo Camp 2010 + - Eclipse Demo Camp Bangalore GEF3D + - Eclipse Galileo + - Eclipse Galileo Motivation + - Eclipse Helios + - Eclipse India Summit + - Eclipse India Summit GEF Zest EMF Microsoft PDE + - Eclipse Startup Information + - Eclipse committers artist software engineer computer + - Eclipse day India 2010 Software Craftsmanship + - Eclipse samuel madhu Mind Graph Theory - Dreams Explained + - Eclipse static code analysis tool + - EclipseBible Eclipse Day India 2010 + - Focus + - Future Eclipse Google EclipseBible + - GEF3D + - HTML5 Canvas 3D e4 + - Modelling + - Multitasking + - Patterns in Eclipse Day India 2010 + - Patterns in Eclipse EclipseBible + - Platform Chair + - Prioritise + - eclipse eclipseplugincentral eclipse.org IBM code + - eclipsebible Zero Defects Creativity + - eclipsebible eclipse commands + relme: + https://dummywebsite.blogspot.com/: true + https://eclipse-info.blogspot.com/: true + https://iosdribbles.blogspot.com/: true + https://mksamuel.blogspot.com/: true + https://www.blogger.com/profile/05191409900046165475: true + last_post_title: EMF - An MDSD Approach + last_post_description: "" + last_post_date: "2010-12-07T09:57:31+05:30" + last_post_link: https://eclipse-info.blogspot.com/2010/12/emf-mdsd-approach.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 2f6be3a21f3842edf74b62e598e967cb + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-215c0af383b392a458c8aad4693dfbbf.md b/content/discover/feed-215c0af383b392a458c8aad4693dfbbf.md new file mode 100644 index 000000000..ef5275ad5 --- /dev/null +++ b/content/discover/feed-215c0af383b392a458c8aad4693dfbbf.md @@ -0,0 +1,40 @@ +--- +title: CiscoHead +date: "2024-03-13T07:04:14-04:00" +description: Thinking about Cisco gear. +params: + feedlink: https://ciscohead.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 215c0af383b392a458c8aad4693dfbbf + websites: + https://ciscohead.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://ciscohead.blogspot.com/: true + last_post_title: The DSL family + last_post_description: "" + last_post_date: "2005-06-25T17:21:11-04:00" + last_post_link: https://ciscohead.blogspot.com/2005/06/dsl-family.html + last_post_categories: [] + last_post_language: "" + last_post_guid: f44ed5f9f6dbb9be5910645e64306ca5 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-215d0183f154c14eaf6974283b8bd977.md b/content/discover/feed-215d0183f154c14eaf6974283b8bd977.md new file mode 100644 index 000000000..63ab37870 --- /dev/null +++ b/content/discover/feed-215d0183f154c14eaf6974283b8bd977.md @@ -0,0 +1,63 @@ +--- +title: The Maps and Geo Blog +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://ml4711.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 215d0183f154c14eaf6974283b8bd977 + websites: + https://ml4711.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - FOSDEM + - GNOME Maps 3.34 + - GNOME Maps 3.36 + - GNOME Maps 3.38 + - excursions + - gnome + - gnome maps + - gpx + - gtfs + - gtk+ + - gtk4. + - libshumate + - maps + - openstreetmap + - routing + - summer + - transit + - travel + relme: + https://ml4711.blogspot.com/: true + last_post_title: May Maps + last_post_description: It's about time for the spring update of goings on in Maps!There's + been some changes going on since the release of 46.Vector Map by DefaultThe vector + map is now being used by default, and with it + last_post_date: "2024-05-11T13:23:00Z" + last_post_link: https://ml4711.blogspot.com/2024/05/may-maps.html + last_post_categories: + - gnome + - gnome maps + - maps + last_post_language: "" + last_post_guid: e7551b7343cacf4be75817580265513c + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-216ce78f8100aeb1ff7b3b9bb24d5d26.md b/content/discover/feed-216ce78f8100aeb1ff7b3b9bb24d5d26.md new file mode 100644 index 000000000..f50aed04b --- /dev/null +++ b/content/discover/feed-216ce78f8100aeb1ff7b3b9bb24d5d26.md @@ -0,0 +1,40 @@ +--- +title: Johan Ekblad +date: "2024-02-19T06:43:01-08:00" +description: "" +params: + feedlink: https://johanekblad.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 216ce78f8100aeb1ff7b3b9bb24d5d26 + websites: + https://johanekblad.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://johanekblad.blogspot.com/: true + last_post_title: swedeCopy.se + last_post_description: "" + last_post_date: "2011-11-03T17:25:00-07:00" + last_post_link: https://johanekblad.blogspot.com/2011/11/swedecopyse.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 9987f84899d7c89e4c9b8f2b90f58372 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2170650705317b4e45e7720f94c225a8.md b/content/discover/feed-2170650705317b4e45e7720f94c225a8.md new file mode 100644 index 000000000..acb2ec136 --- /dev/null +++ b/content/discover/feed-2170650705317b4e45e7720f94c225a8.md @@ -0,0 +1,44 @@ +--- +title: ZX Interface Z +date: "2024-02-08T08:10:58-08:00" +description: "" +params: + feedlink: https://zxinterfacez.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 2170650705317b4e45e7720f94c225a8 + websites: + https://zxinterfacez.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://assassinosuicida.blogspot.com/: true + https://gta02-core-news.blogspot.com/: true + https://www.blogger.com/profile/17602200301602248416: true + https://zpuino.blogspot.com/: true + https://zxinterfacez.blogspot.com/: true + last_post_title: ZX Interface Z - The Hardware, part 3 + last_post_description: "" + last_post_date: "2020-12-04T08:16:05-08:00" + last_post_link: https://zxinterfacez.blogspot.com/2020/12/zx-interface-z-hardware-part-3.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 518c6af3218f48960eb04f5efce2f83c + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-21748a8e34e7140c38bb3c9fd7fea482.md b/content/discover/feed-21748a8e34e7140c38bb3c9fd7fea482.md new file mode 100644 index 000000000..08af98db7 --- /dev/null +++ b/content/discover/feed-21748a8e34e7140c38bb3c9fd7fea482.md @@ -0,0 +1,45 @@ +--- +title: Tibilius' Blog +date: "1970-01-01T00:00:00Z" +description: Recent content on Tibilius' Blog +params: + feedlink: https://blog.timfb.dev/rss.xml + feedtype: rss + feedid: 21748a8e34e7140c38bb3c9fd7fea482 + websites: + https://blog.timfb.dev/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://blog.timfb.dev/: true + https://github.com/TibiIius: true + https://gitlab.gnome.org/TibiIius: true + last_post_title: FlatSync Status Update + last_post_description: |- + This post gives a long overdue status update on FlatSync’s progress. + Absence + My last update post dates back quite a bit as I’m currently in the process of writing my bachelor’s thesis, and + last_post_date: "2023-10-28T00:00:00Z" + last_post_link: https://blog.timfb.dev/posts/2023/10/28/flatsync-status-update.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 51d4d62c410f35c9f6af53179909c79e + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-21883cfe30748b804fdcf8d71d0fdf30.md b/content/discover/feed-21883cfe30748b804fdcf8d71d0fdf30.md new file mode 100644 index 000000000..9bd0b8d7f --- /dev/null +++ b/content/discover/feed-21883cfe30748b804fdcf8d71d0fdf30.md @@ -0,0 +1,52 @@ +--- +title: 日本語はどうですか。Jak tam japoński? +date: "2024-07-08T17:15:54+02:00" +description: Nauka języka japońskiego - porady, spostrzeżenia, wrażenia. +params: + feedlink: https://jaktamjaponski.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 21883cfe30748b804fdcf8d71d0fdf30 + websites: + https://jaktamjaponski.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - audycje + - pismo a druk + relme: + https://aboutthomasleigh.blogspot.com/: true + https://handynewsreader.blogspot.com/: true + https://jaktamjaponski.blogspot.com/: true + https://moliumpodcast.blogspot.com/: true + https://smartthemesfor.blogspot.com/: true + https://thomascafepodcast.blogspot.com/: true + https://thomasleighthemes.blogspot.com/: true + https://thomasleighuniverse.blogspot.com/: true + https://www.blogger.com/profile/01268074830941697525: true + https://zrodlokreacji.blogspot.com/: true + last_post_title: 'Kanji w piśmie, a w druku: machająca noga ;) - 足 vs 距.' + last_post_description: "" + last_post_date: "2024-07-06T11:23:15+02:00" + last_post_link: https://jaktamjaponski.blogspot.com/2024/07/kanji-w-pismie-w-druku-machajaca-noga-vs.html + last_post_categories: + - pismo a druk + last_post_language: "" + last_post_guid: 6579edc7b165061d1f4bdf4cfdb53422 + score_criteria: + cats: 2 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-219021603a58dd3ec5cf523e25227e6c.md b/content/discover/feed-219021603a58dd3ec5cf523e25227e6c.md new file mode 100644 index 000000000..606533890 --- /dev/null +++ b/content/discover/feed-219021603a58dd3ec5cf523e25227e6c.md @@ -0,0 +1,81 @@ +--- +title: Eclipse Communication Framework +date: "1970-01-01T00:00:00Z" +description: Blog for the Eclipse Communication Framework Project (ECF) +params: + feedlink: https://eclipseecf.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 219021603a58dd3ec5cf523e25227e6c + websites: + https://eclipseecf.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - RCP + - RSA + - asyncremoteservices + - bndtools + - ecilpse + - eclipse + - eclipse. remoteservices + - foundation + - gogo + - grpc + - hazelcast + - iot + - java8 + - jax-rs + - kepler + - open source + - osgi + - osgi RSA + - osgi services + - osgi. RSA + - protobuf + - python + - raspberry pi + - remoteserivces + - remoteserviceadmin + - remoteserviceadmn + - remoteservices + - rest + - rsa remoteservices + - security + - tragedy of the commons + relme: + https://eclipseecf.blogspot.com/: true + https://www.blogger.com/profile/15783631237186844143: true + last_post_title: OSGi Services with gRPC - Let's be reactive + last_post_description: As many know, gRPC allows services (both traditional call/response + [aka unary] and streaming services) to be defined by a 'proto3' file.  For example, + here is a simple service with four methods, + last_post_date: "2021-10-20T01:35:00Z" + last_post_link: https://eclipseecf.blogspot.com/2021/10/osgi-services-with-grpc-lets-be-reactive.html + last_post_categories: + - bndtools + - eclipse + - grpc + - osgi + - protobuf + - remoteserivces + - remoteserviceadmin + last_post_language: "" + last_post_guid: 918749f207b4d8d4978b16fed1d7a8d2 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-21917c45ec298ad611bbbd1449a1b24f.md b/content/discover/feed-21917c45ec298ad611bbbd1449a1b24f.md deleted file mode 100644 index 7b6e74aab..000000000 --- a/content/discover/feed-21917c45ec298ad611bbbd1449a1b24f.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: benjojo blog -date: "2024-05-28T13:16:35Z" -description: Programming, Networking and some things I found hard to fix at some point -params: - feedlink: https://blog.benjojo.co.uk/rss.xml - feedtype: rss - feedid: 21917c45ec298ad611bbbd1449a1b24f - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: [] - relme: {} - last_post_title: Reclaiming IPv4 Class E's 240.0.0.0/4 - last_post_description: A video recording of - last_post_date: "2024-05-27T13:42:52Z" - last_post_link: https://blog.benjojo.co.uk/post/class-e-addresses-in-the-real-world - last_post_categories: [] - last_post_guid: 0896f0446e9bb798d0e5b1b9a2e962a8 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-21973c09afeadc666a961c9d52abb8c9.md b/content/discover/feed-21973c09afeadc666a961c9d52abb8c9.md index 4c2fc51f2..6031e5978 100644 --- a/content/discover/feed-21973c09afeadc666a961c9d52abb8c9.md +++ b/content/discover/feed-21973c09afeadc666a961c9d52abb8c9.md @@ -29,7 +29,7 @@ params: categories: - Society & Culture relme: - https://micro.blog/Miraz: false + https://miraz.me/: true last_post_title: Strive for something of great value! last_post_description: "For my Māori language course I had to write 200 words for an assessment. Here's what I wrote. Note: there may be errors — we'll see what @@ -37,17 +37,22 @@ params: last_post_date: "2019-09-05T15:28:38+12:00" last_post_link: https://miraz.me/2019/09/05/strive-for-something.html last_post_categories: [] + last_post_language: "" last_post_guid: add25705f239cef93fa305a21292da19 score_criteria: cats: 1 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 6 - relme: 1 + relme: 2 title: 3 website: 2 - score: 16 + score: 21 ispodcast: true isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-21b5f1e0b28d276439fffa8463d81c45.md b/content/discover/feed-21b5f1e0b28d276439fffa8463d81c45.md new file mode 100644 index 000000000..9a20566b7 --- /dev/null +++ b/content/discover/feed-21b5f1e0b28d276439fffa8463d81c45.md @@ -0,0 +1,54 @@ +--- +title: PyDroids - The 'Robocode' with Python Language +date: "1970-01-01T00:00:00Z" +description: With PyDroids, developers and students can create their own 2D virtual + robots with Python Scripts and make then combat in a full 2D arena. You can script + the combat and defense strategy of your robot +params: + feedlink: https://pydroids.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 21b5f1e0b28d276439fffa8463d81c45 + websites: + https://pydroids.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - artificial intelligence + - java + - pydroids + - python + - robocode + relme: + https://pydroids.blogspot.com/: true + last_post_title: Introduction to PyDroids + last_post_description: 'Hi all,My name is Marcel Pinheiro Caraciolo, and this is + my first post here. Before explaining the purpose of this blog, let me introduce + myself: I''m a brazilian guy interested at artificial' + last_post_date: "2009-05-20T03:14:00Z" + last_post_link: https://pydroids.blogspot.com/2009/05/introduction-to-pydroids.html + last_post_categories: + - artificial intelligence + - java + - pydroids + - python + - robocode + last_post_language: "" + last_post_guid: 3b38380d03b24497c8cda5337234fb49 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-21ca18894678824c32f8327e76824161.md b/content/discover/feed-21ca18894678824c32f8327e76824161.md deleted file mode 100644 index 8e3c6b2ab..000000000 --- a/content/discover/feed-21ca18894678824c32f8327e76824161.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: ~emersion/soju refs -date: "1970-01-01T00:00:00Z" -description: Git refs for ~emersion/soju -params: - feedlink: https://git.sr.ht/~emersion/soju/refs/rss.xml - feedtype: rss - feedid: 21ca18894678824c32f8327e76824161 - websites: - https://git.sr.ht/~emersion/soju/refs: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: [] - relme: {} - last_post_title: v0.8.0 - last_post_description: 'soju v0.8.0This release contains the following new features:- - Support for a new file-upload IRC extension, to allow clients to upload files - to the bouncer. The extension is disabled by default and ' - last_post_date: "2024-05-09T09:02:16+02:00" - last_post_link: https://git.sr.ht/~emersion/soju/refs/v0.8.0 - last_post_categories: [] - last_post_guid: ed5bdaa97c2c4df89c9d3632cf692485 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-21d358c5ab4472510b60741a06fc83ba.md b/content/discover/feed-21d358c5ab4472510b60741a06fc83ba.md new file mode 100644 index 000000000..e90be05a0 --- /dev/null +++ b/content/discover/feed-21d358c5ab4472510b60741a06fc83ba.md @@ -0,0 +1,55 @@ +--- +title: die-welt.net +date: "1970-01-01T00:00:00Z" +description: a broken world by Evgeni Golov +params: + feedlink: https://www.die-welt.net/rss.xml + feedtype: rss + feedid: 21d358c5ab4472510b60741a06fc83ba + websites: + https://www.die-welt.net/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - centos + - english + - linux + - planet-debian + - software + relme: + https://chaos.social/@zhenech: true + https://github.com/evgeni: true + https://www.die-welt.net/: true + last_post_title: Upgrading CentOS Stream 8 to CentOS Stream 9 using Leapp + last_post_description: |- + Warning to the Planet Debian readers: the following post might shock you, if you're used to Debian's smooth upgrades using only the package manager. + Leapp?! + Contrary to distributions like Debian and + last_post_date: "2024-05-22T19:19:19Z" + last_post_link: https://www.die-welt.net/2024/05/upgrading-centos-stream-8-to-centos-stream-9-using-leapp/ + last_post_categories: + - centos + - english + - linux + - planet-debian + - software + last_post_language: "" + last_post_guid: a4e81231ec3f1ce691022f43b9e7cab1 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-22112502be1dcd7f22d777f54bf4e761.md b/content/discover/feed-22112502be1dcd7f22d777f54bf4e761.md new file mode 100644 index 000000000..bd5d66d86 --- /dev/null +++ b/content/discover/feed-22112502be1dcd7f22d777f54bf4e761.md @@ -0,0 +1,40 @@ +--- +title: Jack Diederich's Python Blog +date: "2024-06-23T02:14:27-04:00" +description: What I'm working on in Python, tips, observations, stuff. +params: + feedlink: https://jackdied.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 22112502be1dcd7f22d777f54bf4e761 + websites: + https://jackdied.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://jackdied.blogspot.com/: true + last_post_title: 'PyCon on The Charles: Night 2' + last_post_description: "" + last_post_date: "2012-03-01T01:17:40-05:00" + last_post_link: https://jackdied.blogspot.com/2012/02/pycon-on-charles-night-2.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 7a4d7a6729de67d71d6a052223fc6f69 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-22128a320331700cc120009c1aefe914.md b/content/discover/feed-22128a320331700cc120009c1aefe914.md new file mode 100644 index 000000000..4e2d6188f --- /dev/null +++ b/content/discover/feed-22128a320331700cc120009c1aefe914.md @@ -0,0 +1,198 @@ +--- +title: davy wybiral +date: "1970-01-01T00:00:00Z" +description: (exploratory programming and more) +params: + feedlink: https://davywybiral.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 22128a320331700cc120009c1aefe914 + websites: + https://davywybiral.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 2.4 GHz + - "433" + - "868" + - "915" + - ARM + - BLE + - Bluetooth + - Bluetooth Low Energy + - HackerBoxes + - Nordic Semiconductor + - Purple Panda + - RTL-SDR + - RY82530 + - Sensors + - ai + - air hockey + - arduino + - astro-phys + - audio + - author detection + - authorship + - bare conductive + - bell state + - c + - camera + - canakit + - canvas + - capacitive touch + - chebyshev + - christmas + - classifier + - cnot + - coefficients + - computers computing computers + - concurrency + - csrf + - davy's law + - developers + - development board + - display + - diy + - electric paint + - emulation + - ephemeride + - ephemeris + - esp32 + - esp32-cam + - espruino + - example + - feature reduction + - game + - gaming + - golang + - gps + - grover's algorithm + - guitar + - hadamard + - halloween + - http + - ili9341 + - infinite recursion + - internet of things + - iot + - javascript + - jpl + - jquery + - json + - kali linux + - keybase + - lcd + - learning algorithm + - linear algebra + - linux + - localhost + - logistic regression + - lora + - lorawan + - lov grover + - machine learning + - manjaro + - microphone + - micropython + - mixed-content + - music + - nRF52 + - nRF52840 + - naive bayes + - nasa + - network + - neural network + - numeric + - numericjs + - numpy + - pca + - pi cap + - pixl.js + - principle component analysis + - procedural + - programming + - pyaudio + - pygame + - pyrtlsdr + - python + - qualia + - quantum + - quantum algorithm + - quantum circuit + - quantum circuit diagram + - quantum circuit simulator + - quantum computing + - quantum search + - quantum simulator + - qubit + - query + - radio + - raspberry pi + - raspbian + - retropie + - reyax + - rfm95 + - rfm98 + - rpi + - scipy + - security + - server + - software defined radio + - strategy + - string pluck + - superposition + - synthesizer + - tcp + - tor + - tower defense + - tracking + - tutorials + - ubuntu + - underscore + - video game + - vulnerabilities + - waveforms + - wireless + relme: + https://davywybiral.blogspot.com/: true + last_post_title: A Lesson in LoRa Module P2P Standards (or the Lack Thereof) + last_post_description: I got a handful of LoRa modules from Reyax a while back, + the RYLR896 model based on Semtech SX1276 chips. Instead of using an SPI interface + they operate over UART using a small set of AT commands. + last_post_date: "2020-08-31T22:01:00Z" + last_post_link: https://davywybiral.blogspot.com/2020/08/a-lesson-in-lora-module-p2p-standards.html + last_post_categories: + - RTL-SDR + - arduino + - esp32 + - espruino + - internet of things + - iot + - lora + - micropython + - network + - python + - radio + - reyax + - rfm95 + - rfm98 + - wireless + last_post_language: "" + last_post_guid: 3c4363829a19f756fd20ac47bcacf622 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2215e1e13b50e3702c43bccf4ca1526b.md b/content/discover/feed-2215e1e13b50e3702c43bccf4ca1526b.md new file mode 100644 index 000000000..1cff5d8bb --- /dev/null +++ b/content/discover/feed-2215e1e13b50e3702c43bccf4ca1526b.md @@ -0,0 +1,53 @@ +--- +title: SpeedCrunch +date: "2024-06-12T06:51:20+01:00" +description: "" +params: + feedlink: https://speedcrunch.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 2215e1e13b50e3702c43bccf4ca1526b + websites: + https://speedcrunch.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - announcements + - features + - functions + - howto + - notations + - previews + - releases + - reviews + - screenshots + - smalltalk + - translations + relme: + https://helderfoo.blogspot.com/: true + https://speedcrunch.blogspot.com/: true + https://www.blogger.com/profile/06430233725902328852: true + last_post_title: SpeedCrunch 0.12 Released + last_post_description: "" + last_post_date: "2017-02-08T13:32:11Z" + last_post_link: https://speedcrunch.blogspot.com/2016/11/speedcrunch-012-released.html + last_post_categories: [] + last_post_language: "" + last_post_guid: b08c5258feee2a51603bdb173137c622 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-22248dde0d8d602a12bbf6afcf893860.md b/content/discover/feed-22248dde0d8d602a12bbf6afcf893860.md index 72395d702..d4108d748 100644 --- a/content/discover/feed-22248dde0d8d602a12bbf6afcf893860.md +++ b/content/discover/feed-22248dde0d8d602a12bbf6afcf893860.md @@ -1,6 +1,6 @@ --- title: Network Plumber's Journal -date: "2024-06-02T19:06:48-07:00" +date: "2024-07-07T02:07:46-07:00" description: Linux networking and related topics params: feedlink: https://linux-network-plumber.blogspot.com/feeds/posts/default @@ -12,17 +12,17 @@ params: recommended: [] recommender: [] categories: - - network - - networking - TCP - conference + - network + - networking - performance - pptk - snmp - toastmasters - vxlan relme: - https://www.blogger.com/profile/01514158449435119324: true + https://linux-network-plumber.blogspot.com/: true last_post_title: VXLAN for Linux last_post_description: "" last_post_date: "2012-09-24T21:28:17-07:00" @@ -30,17 +30,22 @@ params: last_post_categories: - networking - vxlan + last_post_language: "" last_post_guid: 8ec60dd28cf9d14f78c7be9de576cb7a score_criteria: cats: 5 description: 3 + feedlangs: 0 postcats: 2 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 17 + score: 20 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-222c9ea4bb6eb91099a40f0db3c09fc9.md b/content/discover/feed-222c9ea4bb6eb91099a40f0db3c09fc9.md new file mode 100644 index 000000000..79ec25066 --- /dev/null +++ b/content/discover/feed-222c9ea4bb6eb91099a40f0db3c09fc9.md @@ -0,0 +1,41 @@ +--- +title: Viewing the Eclipse +date: "2024-03-18T20:28:10-07:00" +description: "" +params: + feedlink: https://viewingtheeclipse.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 222c9ea4bb6eb91099a40f0db3c09fc9 + websites: + https://viewingtheeclipse.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://viewingtheeclipse.blogspot.com/: true + https://www.blogger.com/profile/08093945292490053498: true + last_post_title: Interactive 3D Mars Visualization in Eclipse RCP + last_post_description: "" + last_post_date: "2009-09-22T18:20:22-07:00" + last_post_link: https://viewingtheeclipse.blogspot.com/2009/09/interactive-3d-mars-visualization-in.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 2996351aee57f9c3d7f32a460f18dca8 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-225e8d6051eac2d3f0582a72e869c610.md b/content/discover/feed-225e8d6051eac2d3f0582a72e869c610.md deleted file mode 100644 index f64b0fa84..000000000 --- a/content/discover/feed-225e8d6051eac2d3f0582a72e869c610.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Mike\’s Random Thoughts -date: "1970-01-01T00:00:00Z" -description: A few of my thoughts on life, work, places, and more... -params: - feedlink: https://mikesmith.wordpress.com/feed/ - feedtype: rss - feedid: 225e8d6051eac2d3f0582a72e869c610 - websites: - https://mikesmith.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Uncategorized - relme: {} - last_post_title: Summer’s over - last_post_description: Torrential downpours for most of a week. Sleeping with the - windows closed. Wearing a jacket when going out. Yep – summer’s over. On the positive - side of things, this means I’ll be able to sleep - last_post_date: "2006-09-17T16:51:27Z" - last_post_link: https://mikesmith.wordpress.com/2006/09/17/summers-over/ - last_post_categories: - - Uncategorized - last_post_guid: 8938bd99afa8a0b701a4e15593a3de68 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-225f38a140167e8b56f67074ff0efa91.md b/content/discover/feed-225f38a140167e8b56f67074ff0efa91.md new file mode 100644 index 000000000..217b1b22f --- /dev/null +++ b/content/discover/feed-225f38a140167e8b56f67074ff0efa91.md @@ -0,0 +1,267 @@ +--- +title: Mazirian's Garden +date: "2024-07-06T13:45:14-07:00" +description: "" +params: + feedlink: https://maziriansgarden.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 225f38a140167e8b56f67074ff0efa91 + websites: + https://maziriansgarden.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 2d6 + - 3-D Hexcrawl + - A Malignant Presence + - Abstract Combat + - Advancement + - Adventure Hiatus + - Age + - Animals + - Anthologies + - Areas 1-7 + - Armitage Files + - Barker's Rolodex + - Basecamp + - Below the Walls of Cusp + - Beneath the Moss Courts + - Bestiary + - Black Lotus + - Block Island + - Bob Bledsaw + - Bones of Contention + - Building an Institution + - CSIO + - CSWE + - Call of Cthulhu + - Carousing + - Carriages + - Cartography + - Catacombs of the Fleishguild + - Catacombs of the North Wind + - Cenotaph of Shirishanu + - Character Generation + - Character Sheets + - Chatelaine of Storms + - Cities + - City Crawling + - City State of The Invincible Overlord + - City State of the World Emperor + - Classless D&D + - Contacts + - Creative Process + - Cult of Man + - Cultivating Relationships + - DMing + - Daydreaming About Dragons + - Demons + - Discovery + - Downtime + - Downtime Activities + - Downtime in Zyan + - Dream Aesthetics + - Dream Aesthics Dilemma + - Dream of the Egg + - Dungeon Moon + - Dungeon23 + - Dungeon23 Roundup + - Dungeons + - Dunsany + - Echoes From Fomalhaut + - Elspeth's Letter + - Empire of the Petal Throne + - Encounter Tables + - Episode 04 + - Episode 05 + - Episode 06 + - Episode 07 + - Episode 1 + - Episode 3 + - Escapism + - Evils of Illmire + - Experience Points + - Exploration + - Familiars + - Finding the Right Buyer + - Five Years Left + - G+ Games + - Garbage Barge + - Gathering Intelligence + - Golems + - Google + + - Google+ + - Google+ Mixtapes + - Gradient Descent + - Grappling + - Grit + - Group Downtime Activities + - Gus L + - Hex + - Hex Crawl + - Hidden Metamorphoses + - High Song + - Hit Points + - Home away from Home + - Homebase + - Hull Breach + - Ian Yusem + - In the Light of Other Moons + - Inquisitor's Guild + - Insectiary + - Interplanar Sandbox + - Into the Megadungeon + - Isle of the Dismemberer + - James Maliszewski + - Jorune + - Jorune Evolutions + - Josh McCrowell + - Judge's Guild + - Labyrinth Lord + - Lady Shirishanu + - Lessons Learned + - Level Free D&D + - Literally Possessed by a Demon + - Little Persistent Worlds + - Loktole + - Long Campaings + - Lovecraft + - Low Song + - Luke Gearing + - Magic Books + - Magical Books + - Magical Items + - Magical Research + - Martial Training + - Megadungeons + - Memorialization + - Memories of the Ship + - Memory + - Merchant's Guild + - Miranda Elkins + - Missives from Beyond the Veil of Sleep + - Modules + - Monks + - Monsters + - Mothership + - My Boy + - Mystery + - Naugomancy + - Nefarious Nine + - New Classes + - Newsletter + - Nick Kuntz + - Nick L.S. Whelan + - Nightwick Abbey + - Non-Magical Research + - OSR + - Old School + - Overcoming Challenges + - Papers and Pencils + - Pegana + - Pinterest + - Planar Travel + - Play Report + - Player Roles + - Pleasures of the OSR + - Podcast + - Point Buy + - Point Crawl + - Prison of the Hated Pretender + - Puppets + - RPG Theory + - Races + - Rastingdrung + - Record Keeping + - Religions + - Reviews + - Ruined Ghinor + - Ruins of The Inquisitor's Theater + - Rules + - Sandbox + - Sandbox Advancement + - Savage World of Krül + - Shattered Isles + - Skill Checks + - Skills + - Sky Singers + - Slumbering Ursine Dunes + - So You Want to Make a Zine? + - Spells + - Spiritual Exercises + - Splendid Items + - Spotlight Management + - Spying + - Star Spire + - Stat Checks + - Streaming + - Strict Time Records + - Submerged Spire + - Summoning + - Swamp of Many Eyes + - The Book of Six Circles + - The Human Element + - The Night Wolf Inn + - The Nightmares Underneath + - The Problem of Space + - The White Jungle + - Three Magics + - Through Ultan's Door + - Through Ultan's Door 3 + - Tricks of the Trade + - Twitch + - Unarmed Combat + - Underwater Adventures + - Underworld Adventurer + - Village + - Vivimancer + - Vivimancy + - Weapon Proficiencies + - White Jungle + - Wilderlands + - Wilderness Exploration + - Wishery + - Wolsdag + - Worldbuilding + - Wreckcraft + - XP for GP + - Yellow Enchanter + - Zine Reviews + - ZineQuest + - ZineQuest 3 + - Zines + - Zyan + - Zyan Below + - Zyan Between + - podcasts + - the Hobby + relme: + https://maziriansgarden.blogspot.com/: true + last_post_title: 'Group Downtime Activities: Remembering the Dead' + last_post_description: "" + last_post_date: "2024-06-02T18:25:34-07:00" + last_post_link: https://maziriansgarden.blogspot.com/2024/06/group-downtime-activities-remembering.html + last_post_categories: + - Downtime + - Downtime Activities + - Group Downtime Activities + last_post_language: "" + last_post_guid: 36017017847607ec7aa6de44c77d1253 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2271470ef2af55740a5cb85218a9fc89.md b/content/discover/feed-2271470ef2af55740a5cb85218a9fc89.md new file mode 100644 index 000000000..ca310cd20 --- /dev/null +++ b/content/discover/feed-2271470ef2af55740a5cb85218a9fc89.md @@ -0,0 +1,74 @@ +--- +title: And this is just the beginning... +date: "1970-01-01T00:00:00Z" +description: A blog about my life on the web, my activity in Ubuntu and some other + things... +params: + feedlink: https://kalon33.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 2271470ef2af55740a5cb85218a9fc89 + websites: + https://kalon33.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ABUL + - Bordeaux + - Free software + - Giroll + - Gutsy + - Gutsy Release Party + - Hardy + - Hardy Release Party + - Install Party + - Intrepid + - Intrepid Release Party + - Jaunty + - Jaunty Release Party + - LTS release + - Linux + - Ubuntu + - Ubuntu 7.10 + - Ubuntu 8.04 + - Ubuntu 8.10 + - Ubuntu 9.04 + - kick start + relme: + https://kalon33.blogspot.com/: true + last_post_title: The Way to a new Ubuntu party for the Jaunty Jackalope + last_post_description: A new party is cooking at Bordeaux on May 23rd ! For the + fifth edition, this time helped by the ABUL, The Giroll lug perpetuates the tradition + of cheerfulness which has made the reputation of its + last_post_date: "2009-05-05T16:15:00Z" + last_post_link: https://kalon33.blogspot.com/2009/05/way-to-new-ubuntu-party-for-jaunty.html + last_post_categories: + - ABUL + - Bordeaux + - Free software + - Giroll + - Install Party + - Jaunty + - Jaunty Release Party + - Linux + - Ubuntu + - Ubuntu 9.04 + last_post_language: "" + last_post_guid: d9d302484ebd5e154d96db65e6bc11b1 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-227b5632f18df15f510e3a892aeb8523.md b/content/discover/feed-227b5632f18df15f510e3a892aeb8523.md deleted file mode 100644 index 10c70e76d..000000000 --- a/content/discover/feed-227b5632f18df15f510e3a892aeb8523.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: CodePen Spark Feed -date: "1970-01-01T00:00:00Z" -description: The latest, and greatest from CodePen. -params: - feedlink: https://codepen.io/spark/feed/ - feedtype: rss - feedid: 227b5632f18df15f510e3a892aeb8523 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: [] - relme: {} - last_post_title: Scroll-Driven Carousels, SVG Gems, and Metallic Rain - last_post_description: 'This week''s CodePen community highlights include an awesome - horizontal-scrolling image carousel from Jhey Tompkins and some SVG gems: Bence - Szabo''s sparkling "Gem Cuts" and our collection from the' - last_post_date: "1970-01-01T00:00:00Z" - last_post_link: https://codepen.io/spark/391 - last_post_categories: [] - last_post_guid: 018abf045137e64b3d3b0e4d32113714 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2298ea663f0b538df92e9c42a03e1e9e.md b/content/discover/feed-2298ea663f0b538df92e9c42a03e1e9e.md index 8eccd3871..b0823fdba 100644 --- a/content/discover/feed-2298ea663f0b538df92e9c42a03e1e9e.md +++ b/content/discover/feed-2298ea663f0b538df92e9c42a03e1e9e.md @@ -13,24 +13,34 @@ params: recommender: [] categories: [] relme: - https://gkeenan.co/: false - last_post_title: I asked for a change and my request was denied like it always is. - last_post_description: I asked for a change and my request was denied like it always - is. - last_post_date: "2024-06-02T07:02:44Z" - last_post_link: https://glass.photo/keenan/3QCyqsVgt25h98EYu3pGKs + https://gkeenan.co/: true + https://glass.photo/keenan: true + https://keenan.omg.lol/: true + https://letterboxd.com/gkeenan/: true + https://social.lol/@keenan: true + last_post_title: Far into our journey I realized we would die out here, and for + once I didn’t feel afraid. + last_post_description: Far into our journey I realized we would die out here, and + for once I didn’t feel afraid. + last_post_date: "2024-06-12T15:46:52Z" + last_post_link: https://glass.photo/keenan/5kw101V4pPYZ4b3gaAJZCT last_post_categories: [] - last_post_guid: 8276a0224049e962eb4990ad20723c25 + last_post_language: "" + last_post_guid: e670f10b407c6d421cc914a3a062dc04 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 9 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-22a0499f20ed19aee9b9ff43a023e7c6.md b/content/discover/feed-22a0499f20ed19aee9b9ff43a023e7c6.md deleted file mode 100644 index 30c5e5451..000000000 --- a/content/discover/feed-22a0499f20ed19aee9b9ff43a023e7c6.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for Gkiagia’s Blog -date: "1970-01-01T00:00:00Z" -description: 'Permanently moved to: https://gkiagia.gr/' -params: - feedlink: https://gkiagia.wordpress.com/comments/feed/ - feedtype: rss - feedid: 22a0499f20ed19aee9b9ff43a023e7c6 - websites: - https://gkiagia.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: 'Comment on On desktop environments – part 1: the journey by gkiagia' - last_post_description: |- - In reply to David Edmundson. - - Haha! kwrited was acutally useful for me once, I had a UPS - last_post_date: "2016-05-06T13:03:24Z" - last_post_link: https://gkiagia.wordpress.com/2016/05/05/on-desktop-environments-part-1-the-journey/#comment-778 - last_post_categories: [] - last_post_guid: bd3a953fac190af9a2a9f4212611415b - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-22bb6cb0a098c866ea3e28bc6a521bcf.md b/content/discover/feed-22bb6cb0a098c866ea3e28bc6a521bcf.md new file mode 100644 index 000000000..57e0b3618 --- /dev/null +++ b/content/discover/feed-22bb6cb0a098c866ea3e28bc6a521bcf.md @@ -0,0 +1,66 @@ +--- +title: Flags Quiz +date: "1970-01-01T00:00:00Z" +description: Flags Quiz is a quiz game for Android smartphones, touch enabled Nokia + Symbian smartphones, Nokia Maemo (N900) and Nokia Harmattan (N9/N950) smartphones. +params: + feedlink: https://flagsquiz.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 22bb6cb0a098c866ea3e28bc6a521bcf + websites: + https://flagsquiz.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - android + - bb10 + - blackberry + - flag + - flags + - flags quiz + - harmattan + - meego + - n9 + - n950 + - nokia + - quiz + - z10 + relme: + https://blinkenharmattan.blogspot.com/: true + https://flagsquiz.blogspot.com/: true + https://tsdgeos-es.blogspot.com/: true + https://tsdgeos.blogspot.com/: true + https://www.blogger.com/profile/12001470108926138921: true + last_post_title: Flags Quiz for BlackBerry 10 released + last_post_description: Flags Quiz expands to a new platform and is now available + for the BlackBerry Z10 the first BlackBerry 10. You can download it on the BlackBerry + World Store. + last_post_date: "2013-02-23T10:53:00Z" + last_post_link: https://flagsquiz.blogspot.com/2013/02/flags-quiz-for-blackberry-10-released.html + last_post_categories: + - bb10 + - blackberry + - flag + - flags + - flags quiz + - z10 + last_post_language: "" + last_post_guid: 002f177177e93c86bb7e35fe6cfbb274 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-22c42d92c8227e384a8315c4c7343bb3.md b/content/discover/feed-22c42d92c8227e384a8315c4c7343bb3.md new file mode 100644 index 000000000..43299db10 --- /dev/null +++ b/content/discover/feed-22c42d92c8227e384a8315c4c7343bb3.md @@ -0,0 +1,43 @@ +--- +title: matthieu.io +date: "1970-01-01T00:00:00Z" +description: Matthieu Caneill's blog +params: + feedlink: https://matthieu.io/blog/feed/rss.xml + feedtype: rss + feedid: 22c42d92c8227e384a8315c4c7343bb3 + websites: + https://matthieu.io/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://mastodon.social/@matthieucan: true + https://matthieu.io/: true + last_post_title: Circus Circus + last_post_description: "Play accompanying soundtrack\n \U0001F50A\n \n \n \n + \ \n\n\nThe Circus Circus Hotel and Casino in Las Vegas is a one-stop shop for + all kinds of\nwonders. Often expanded, rarely renovated, this bizarre" + last_post_date: "2024-02-26T00:00:00+01:00" + last_post_link: http://matthieu.io/blog/2024/02/26/circus-circus/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 2e472322750c571fdcfec5ca421cd4df + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-22c47866d69ffd29194992d90d70879a.md b/content/discover/feed-22c47866d69ffd29194992d90d70879a.md new file mode 100644 index 000000000..036574602 --- /dev/null +++ b/content/discover/feed-22c47866d69ffd29194992d90d70879a.md @@ -0,0 +1,61 @@ +--- +title: Qt Creator Blog +date: "1970-01-01T00:00:00Z" +description: An unofficial blog for all things Qt Creator. +params: + feedlink: https://qtcreator.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 22c47866d69ffd29194992d90d70879a + websites: + https://qtcreator.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - .pro lib + - .pro sessions + - books + - debug + - debug feature-request + - designer + - dll msvc + - gcc + - gdb breakpoint + - gdb debugging-helpers typedef + - gdb dell + - help + - include .pro + - qmake + - qt + - unit-testing + - win32 icon + - win32 xp + relme: + https://qtcreator.blogspot.com/: true + https://www.blogger.com/profile/16139053405031925765: true + last_post_title: Long live Qt! + last_post_description: I use Qt for desktop development and am not terribly interested + in mobile apps at the moment (and web-apps are a better idea in the vertical market + where I work, which is a different toolset) so + last_post_date: "2011-02-13T18:19:00Z" + last_post_link: https://qtcreator.blogspot.com/2011/02/long-live-qt.html + last_post_categories: [] + last_post_language: "" + last_post_guid: b0e1e31f032abf474fdfac19323afef7 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-22e86b1333fd45082d5334e68686d00d.md b/content/discover/feed-22e86b1333fd45082d5334e68686d00d.md index 4855af5c8..a1910403b 100644 --- a/content/discover/feed-22e86b1333fd45082d5334e68686d00d.md +++ b/content/discover/feed-22e86b1333fd45082d5334e68686d00d.md @@ -21,17 +21,22 @@ params: last_post_date: "2024-05-12T00:00:00Z" last_post_link: https://jon.bo/posts/build-with-friends/ last_post_categories: [] + last_post_language: "" last_post_guid: 1db850320dc6d5e9075406b387432821 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-232a27028fc9899a8a3e3f7cbe4c1910.md b/content/discover/feed-232a27028fc9899a8a3e3f7cbe4c1910.md deleted file mode 100644 index 5a7f409a8..000000000 --- a/content/discover/feed-232a27028fc9899a8a3e3f7cbe4c1910.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Oxide Computer Company -date: "1970-01-01T00:00:00Z" -description: Public posts from @oxidecomputer@hachyderm.io -params: - feedlink: https://hachyderm.io/@oxidecomputer.rss - feedtype: rss - feedid: 232a27028fc9899a8a3e3f7cbe4c1910 - websites: - https://hachyderm.io/@oxidecomputer: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/approved: true - https://oxide.computer/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2340a82c89da05e67f20eefe34488c35.md b/content/discover/feed-2340a82c89da05e67f20eefe34488c35.md deleted file mode 100644 index 875110956..000000000 --- a/content/discover/feed-2340a82c89da05e67f20eefe34488c35.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: P.P. Cook's Tangent Space -date: "2024-04-21T11:19:26Z" -description: Infrequent comments on maths and theoretical physics as seen from the - point of view of a lecturer on a finite contract. -params: - feedlink: https://www.blogger.com/feeds/8759090/posts/default - feedtype: atom - feedid: 2340a82c89da05e67f20eefe34488c35 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Spinorial Representations and Dynkin Diagrams - last_post_description: "" - last_post_date: "2014-02-07T20:52:12Z" - last_post_link: https://ppcook.blogspot.com/2011/02/spinorial-representations-and-dynkin.html - last_post_categories: [] - last_post_guid: 813ab0cf414fe9d5906a51b120476eb2 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-234169192decf77487297aa003f7ffea.md b/content/discover/feed-234169192decf77487297aa003f7ffea.md index a2a8330f8..b0dc46813 100644 --- a/content/discover/feed-234169192decf77487297aa003f7ffea.md +++ b/content/discover/feed-234169192decf77487297aa003f7ffea.md @@ -14,7 +14,8 @@ params: recommender: [] categories: - Blog - relme: {} + relme: + https://ryanjerz.com/: true last_post_title: Yellowstone and Grand Teton National Parks, Part One last_post_description: Me at the park entrance, but on the way out. We kicked off the month of October with stress. A relatively hastily-planned trip to Yellowstone @@ -23,17 +24,22 @@ params: last_post_link: https://ryanjerz.com/2023/12/yellowstone-and-grand-teton-national-parks-1 last_post_categories: - Blog + last_post_language: "" last_post_guid: 772c22d540ec426484bb6301dbcd5fc9 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 1 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 9 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-23565a064142cb4180bdf40ff2bbb969.md b/content/discover/feed-23565a064142cb4180bdf40ff2bbb969.md deleted file mode 100644 index a8fce0635..000000000 --- a/content/discover/feed-23565a064142cb4180bdf40ff2bbb969.md +++ /dev/null @@ -1,49 +0,0 @@ ---- -title: Christian F.K. Schaller -date: "1970-01-01T00:00:00Z" -description: Blog talking about Fedora, GNOME, GStreamer and related topics. Anything - I write in this blog is me speaking as a member of the open source community, official - Red Hat communication happens on Redhat -params: - feedlink: https://blogs.gnome.org/uraeus/feed/ - feedtype: rss - feedid: 23565a064142cb4180bdf40ff2bbb969 - websites: - https://blogs.gnome.org/uraeus/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Fedora - - General - - GNOME - - PipeWire - - Red Hat - relme: {} - last_post_title: Fedora Workstation development update – Artificial Intelligence - edition - last_post_description: There are times when you feel your making no progress and - there are other times when things feel like they are landing in quick succession. - Luckily this definitely is the second when a lot of our - last_post_date: "2024-06-14T14:13:32Z" - last_post_link: https://blogs.gnome.org/uraeus/2024/06/14/fedora-workstation-development-update-artificial-intelligence-edition/ - last_post_categories: - - Fedora - - General - - GNOME - - PipeWire - - Red Hat - last_post_guid: cb9f9ee71aca4209b3e5aabb5edf777a - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-237fd99675c5af1184cbbf2a13f3210a.md b/content/discover/feed-237fd99675c5af1184cbbf2a13f3210a.md new file mode 100644 index 000000000..5b958bb74 --- /dev/null +++ b/content/discover/feed-237fd99675c5af1184cbbf2a13f3210a.md @@ -0,0 +1,48 @@ +--- +title: Project Tofino - Medium +date: "1970-01-01T00:00:00Z" +description: Browser explorations by the Firefox team - Medium +params: + feedlink: https://medium.com/feed/project-tofino + feedtype: rss + feedid: 237fd99675c5af1184cbbf2a13f3210a + websites: + https://medium.com/project-tofino?source=rss----b6989d965a26---4: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - database + - datomic + - mozilla + - programming + relme: + https://medium.com/project-tofino?source=rss----b6989d965a26---4: true + last_post_title: Introducing Project Mentat, a flexible embedded knowledge store + last_post_description: "" + last_post_date: "2016-11-15T20:58:43Z" + last_post_link: https://medium.com/project-tofino/introducing-datomish-a-flexible-embedded-knowledge-store-1d7976bff344?source=rss----b6989d965a26---4 + last_post_categories: + - database + - datomic + - mozilla + - programming + last_post_language: "" + last_post_guid: 76f24348179b2a8b2421e2b590576a77 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-23956d7eedd2da02a0d92a53172556fb.md b/content/discover/feed-23956d7eedd2da02a0d92a53172556fb.md new file mode 100644 index 000000000..c2ebbd635 --- /dev/null +++ b/content/discover/feed-23956d7eedd2da02a0d92a53172556fb.md @@ -0,0 +1,41 @@ +--- +title: Terminus +date: "2024-03-13T02:29:23Z" +description: "" +params: + feedlink: https://draenog.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 23956d7eedd2da02a0d92a53172556fb + websites: + https://draenog.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://draenog.blogspot.com/: true + https://www.blogger.com/profile/03530610982365125787: true + last_post_title: What No Comments? + last_post_description: "" + last_post_date: "2014-08-17T01:49:57+01:00" + last_post_link: https://draenog.blogspot.com/2014/08/what-no-comments.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 948a83e38b27426b8328d0b44bdf36e4 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-239713c45e9dafc420f1e0bead506199.md b/content/discover/feed-239713c45e9dafc420f1e0bead506199.md deleted file mode 100644 index d19ecdd97..000000000 --- a/content/discover/feed-239713c45e9dafc420f1e0bead506199.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Azimuth -date: "2024-06-19T13:25:06Z" -description: "" -params: - feedlink: https://johncarlosbaez.wordpress.com/feed/atom/ - feedtype: atom - feedid: 239713c45e9dafc420f1e0bead506199 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - chemistry - - physics - relme: {} - last_post_title: Van der Waals Forces - last_post_description: Even though helium is the least reactive of the noble gases, - you can make a molecule of two helium atoms! Yes, He2 is a thing! It’s called - ‘dihelium’ or the helium dimer. But the two helium - last_post_date: "2024-06-19T13:25:06Z" - last_post_link: https://johncarlosbaez.wordpress.com/2024/06/17/van-der-waals-forces/ - last_post_categories: - - chemistry - - physics - last_post_guid: c5437d43d6fc4250f5f727bb4abde7d3 - score_criteria: - cats: 0 - description: 0 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-23996bd73894743e46344e302384cbb5.md b/content/discover/feed-23996bd73894743e46344e302384cbb5.md new file mode 100644 index 000000000..d63bc910a --- /dev/null +++ b/content/discover/feed-23996bd73894743e46344e302384cbb5.md @@ -0,0 +1,50 @@ +--- +title: A Blog that looks like a Website +date: "2024-03-05T04:44:53-08:00" +description: "" +params: + feedlink: https://testblogaswebsite.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 23996bd73894743e46344e302384cbb5 + websites: + https://testblogaswebsite.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://boardgamethoughts.blogspot.com/: true + https://coderthoughts.blogspot.com/: true + https://hikersthoughts.blogspot.com/: true + https://laarderhoogt.blogspot.com/: true + https://lightdarknesspainting.blogspot.com/: true + https://on-software-architecture.blogspot.com/: true + https://osgithoughts.blogspot.com/: true + https://rockabillfilmsoc.blogspot.com/: true + https://rockabillfilmsociety.blogspot.com/: true + https://testblogaswebsite.blogspot.com/: true + https://www.blogger.com/profile/13786738766478890804: true + last_post_title: Understanding Dogs + last_post_description: "" + last_post_date: "2014-05-20T01:03:25-07:00" + last_post_link: https://testblogaswebsite.blogspot.com/2014/05/understanding-dogs.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 969f31cc91b2704db35f0dc13a1548e1 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2399c6a2d04e07dbf47f89acc02be61b.md b/content/discover/feed-2399c6a2d04e07dbf47f89acc02be61b.md deleted file mode 100644 index e0c15b10b..000000000 --- a/content/discover/feed-2399c6a2d04e07dbf47f89acc02be61b.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for perlancar's blog -date: "1970-01-01T00:00:00Z" -description: '#perl #programming' -params: - feedlink: https://perlancar.wordpress.com/comments/feed/ - feedtype: rss - feedid: 2399c6a2d04e07dbf47f89acc02be61b - websites: - https://perlancar.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - '#perl' - - '#programming' - relme: {} - last_post_title: 'Comment on List of new CPAN distributions – Jun 2023 by Perl Weekly - #623 - perl v5.38.0 was launched - Software Dev Blog' - last_post_description: '[…] List of new CPAN distributions – Jun 2023 […]' - last_post_date: "2023-07-03T06:08:26Z" - last_post_link: https://perlancar.wordpress.com/2023/07/02/list-of-new-cpan-distributions-jun-2023/comment-page-1/#comment-2609 - last_post_categories: [] - last_post_guid: 3d27676cee3fc00403e0e3b9e54e728c - score_criteria: - cats: 2 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-23b45efd7bc1de4258c2828cbdb28994.md b/content/discover/feed-23b45efd7bc1de4258c2828cbdb28994.md index 8aa451e9a..9add89618 100644 --- a/content/discover/feed-23b45efd7bc1de4258c2828cbdb28994.md +++ b/content/discover/feed-23b45efd7bc1de4258c2828cbdb28994.md @@ -12,14 +12,24 @@ params: recommended: [] recommender: [] categories: + - app + - opensource - programming - swift - - opensource - - app relme: - https://github.com/calebhearth: false - https://twitter.com/caleb_hearth: false - https://www.calebhearth.com/: false + https://calebhearth.com/: true + https://calebhearth.com/links: true + https://calebhearth.com/newsletter: true + https://calebhearth.com/now: true + https://calebhearth.com/referrals: true + https://calebhearth.com/statistics: true + https://calebhearth.com/swift: true + https://calebhearth.com/uses: true + https://cohost.org/calebhearth: true + https://dev.to/calebhearth: true + https://github.com/calebhearth: true + https://pub.calebhearth.com/@caleb: true + https://social.lol/@c: true last_post_title: sensoryFeedback Samples App last_post_description: |- SensoryFeedbackSamples is an Open Source multiplatform SwiftUI app that provides a testing palette for SwiftUI’s new .sensoryFeedback(_, trigger:) modifier. @@ -28,21 +38,26 @@ params: last_post_date: "2024-03-19T00:00:00Z" last_post_link: https://dev.to/calebhearth/sensoryfeedback-samples-app-4276 last_post_categories: + - app + - opensource - programming - swift - - opensource - - app + last_post_language: "" last_post_guid: bcda50b7981194e1db5504b147d5acda score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 12 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-23b9ae6d2132d41e83e0e1d90c5abbea.md b/content/discover/feed-23b9ae6d2132d41e83e0e1d90c5abbea.md deleted file mode 100644 index 7547d8d7c..000000000 --- a/content/discover/feed-23b9ae6d2132d41e83e0e1d90c5abbea.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Lars-Christian.com -date: "1970-01-01T00:00:00Z" -description: Thoughts on things. -params: - feedlink: https://lars-christian.com/comments/feed/ - feedtype: rss - feedid: 23b9ae6d2132d41e83e0e1d90c5abbea - websites: - https://lars-christian.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://mastodon.social/@lars: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-23cfd69bae1b803515e3af54d7fe0095.md b/content/discover/feed-23cfd69bae1b803515e3af54d7fe0095.md deleted file mode 100644 index ebb99969c..000000000 --- a/content/discover/feed-23cfd69bae1b803515e3af54d7fe0095.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Shtetl-Optimized -date: "1970-01-01T00:00:00Z" -description: The Blog of Scott Aaronson -params: - feedlink: https://scottaaronson.blog/?feed=rss2 - feedtype: rss - feedid: 23cfd69bae1b803515e3af54d7fe0095 - websites: - https://scottaaronson.blog/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Adventures in Meatspace - - The Fate of Humanity - relme: {} - last_post_title: '“Never A Better Time to Visit”: Our Post-October-7 Trip to Israel' - last_post_description: Dana, the kids, and I got back to the US last week after - a month spent in England and then Israel. We decided to visit Israel because … - uhh, we heard there’s never been a better time. We normally - last_post_date: "2024-06-27T23:32:45Z" - last_post_link: https://scottaaronson.blog/?p=8074 - last_post_categories: - - Adventures in Meatspace - - The Fate of Humanity - last_post_guid: 2ac260725d5e2f93fcb89f6e31483eb1 - score_criteria: - cats: 0 - description: 3 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-23d5a7814d1a2521d4a526b7624dd0ca.md b/content/discover/feed-23d5a7814d1a2521d4a526b7624dd0ca.md deleted file mode 100644 index a50e4343e..000000000 --- a/content/discover/feed-23d5a7814d1a2521d4a526b7624dd0ca.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: The Fly.io Team -date: "1970-01-01T00:00:00Z" -description: Public posts from @flydotio@hachyderm.io -params: - feedlink: https://hachyderm.io/@flydotio.rss - feedtype: rss - feedid: 23d5a7814d1a2521d4a526b7624dd0ca - websites: - https://hachyderm.io/@flydotio: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/approved: true - https://fly.io/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-23dac6ef283d606925c557db682ab554.md b/content/discover/feed-23dac6ef283d606925c557db682ab554.md new file mode 100644 index 000000000..ef16e8750 --- /dev/null +++ b/content/discover/feed-23dac6ef283d606925c557db682ab554.md @@ -0,0 +1,44 @@ +--- +title: Jeff Muizelaar +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://muizelaar.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 23dac6ef283d606925c557db682ab554 + websites: + https://muizelaar.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Drivers + relme: + https://draft.blogger.com/profile/17483047845050494642: true + https://muizelaar.blogspot.com/: true + last_post_title: Counting function calls per second + last_post_description: Say you want to know how often you're allocating tiles in + Firefox or the rate of some other thing. There's an easy way to do this using + dtrace. The following dtrace script counts calls to any + last_post_date: "2016-07-28T18:57:00Z" + last_post_link: https://muizelaar.blogspot.com/2016/07/counting-function-calls-per-second.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 2e13265a7ad0df5f1c45e230212c5c3e + score_criteria: + cats: 1 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 11 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-23fc51fa91214c66159d916f3388e833.md b/content/discover/feed-23fc51fa91214c66159d916f3388e833.md new file mode 100644 index 000000000..bd445c015 --- /dev/null +++ b/content/discover/feed-23fc51fa91214c66159d916f3388e833.md @@ -0,0 +1,46 @@ +--- +title: Jorge Sanz +date: "1970-01-01T00:00:00Z" +description: Recent content on Jorge Sanz +params: + feedlink: https://jorgesanz.net/index.xml + feedtype: rss + feedid: 23fc51fa91214c66159d916f3388e833 + websites: + https://jorgesanz.net/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://github.com/jsanz: true + https://jorgesanz.net/: true + https://jsanz.omg.lol/: true + https://mapstodon.space/@jorgesanz: true + https://proven.lol/c87eba: true + last_post_title: Sito aprende a volar + last_post_description: |- + Sito era un avión pequeño que estaba aprendiendo a volar. + Sus pequeñas alas todavía no le permitían subir muy alto pero él lo intentaba una y otra vez con muchas ganas. Su profesor de vuelo se + last_post_date: "2024-04-29T11:40:46+02:00" + last_post_link: https://jorgesanz.net/cuentos/sito-aprende-a-volar/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 7359914e0ff133c0dd2a61e1ff65395c + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-2407eb5f01441005611863b71b30b134.md b/content/discover/feed-2407eb5f01441005611863b71b30b134.md new file mode 100644 index 000000000..8ac5385a4 --- /dev/null +++ b/content/discover/feed-2407eb5f01441005611863b71b30b134.md @@ -0,0 +1,48 @@ +--- +title: Ian Brown +date: "1970-01-01T00:00:00Z" +description: Recent content on Ian Brown +params: + feedlink: https://www.ianbrown.id.au/index.xml + feedtype: rss + feedid: 2407eb5f01441005611863b71b30b134 + websites: + https://ianbrown.id.au/: false + https://www.ianbrown.id.au/: true + https://www.ianbrown.id.au/index.html: false + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://github.com/ianbrown78: true + https://ianbrown.id.au/: true + https://mastodon.cloud/@ianbrown78: true + https://www.ianbrown.id.au/: true + https://www.ianbrown.id.au/index.html: true + last_post_title: High Velocity Migrations with GCVE and HCX + last_post_description: What is HCX? VMware HCX is an application mobility platform + designed for simplifying application migration, workload rebalancing and business + continuity across datacenters and clouds. VMware HCX was + last_post_date: "2022-07-12T10:46:44+10:00" + last_post_link: http://www.ianbrown.id.au/high_velocity_migration_with_gcve_and_hcx/ + last_post_categories: [] + last_post_language: "" + last_post_guid: efecaf27aa2d6f51843226abb192dae8 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-244c2ce6af5ae13b3c2d00e68bc1a12d.md b/content/discover/feed-244c2ce6af5ae13b3c2d00e68bc1a12d.md index 61890b365..086b28bc5 100644 --- a/content/discover/feed-244c2ce6af5ae13b3c2d00e68bc1a12d.md +++ b/content/discover/feed-244c2ce6af5ae13b3c2d00e68bc1a12d.md @@ -13,28 +13,33 @@ params: recommended: [] recommender: [] categories: - - General + - Geeky relme: - https://indieweb.social/@etp: false - last_post_title: Doctoring my Typefaces - last_post_description: I had a doctor’s appointment today. The doctor didn’t show - for at least an hour. He also wasn’t answering calls from his frazzled staff. - I hope he’s OK and glad that my need wasn’t urgent - last_post_date: "2024-05-22T13:37:00+02:00" - last_post_link: https://www.jeremycherfas.net/blog/doctoring-my-typefaces + https://www.jeremycherfas.net/blog: true + last_post_title: Fixing Karabiner-Elements + last_post_description: The saga of synchronised futzing continues with a couple + of days of hair-pulling finally resolved to my satisfaction. This time it was + Karabiner-Elements, which I use almost exclusively to enable the + last_post_date: "2024-07-05T12:50:00+02:00" + last_post_link: https://www.jeremycherfas.net/blog/fixing-karabinerelements last_post_categories: - - General - last_post_guid: 019d8eae1aa2fdfefa199269c0bd9f13 + - Geeky + last_post_language: "" + last_post_guid: 7fb3749aa930d01a5b9dc3fa1579df1e score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 10 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-245b7ef9160a7b62b8d8992fd17e8537.md b/content/discover/feed-245b7ef9160a7b62b8d8992fd17e8537.md deleted file mode 100644 index ddb654dd9..000000000 --- a/content/discover/feed-245b7ef9160a7b62b8d8992fd17e8537.md +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: Hendrik Spree -date: "1970-01-01T00:00:00Z" -description: Copywriter -params: - feedlink: https://drikkes.com/?feed=rss2&page_id=16885 - feedtype: rss - feedid: 245b7ef9160a7b62b8d8992fd17e8537 - websites: - https://drikkes.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Reklamierung - - Über Hörbares - - Über Schaubares - - it girl explosion - relme: - https://github.com/drikkes: true - https://mastodon.social/web/@drikkes: true - https://micro.blog/drikkes: false - https://twitter.com/drikkes: false - last_post_title: verfügung verfügbarkeit SEO what the füg - last_post_description: 'Heute Gestern in “Wir ballern noch die letzte Ecke mit Werbung - zu und fühlen uns dabei sowas von total clever”: die Sendungsverfolgung. Dazu - passend das Video zu 360, dem neuen Song von Charli' - last_post_date: "2024-05-15T15:21:12Z" - last_post_link: https://drikkes.com/?p=19139 - last_post_categories: - - Reklamierung - - Über Hörbares - - Über Schaubares - - it girl explosion - last_post_guid: 6082e0522b70791a5934c71308348c71 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-248f741a4ea90922f5bc7ceb21d50fd6.md b/content/discover/feed-248f741a4ea90922f5bc7ceb21d50fd6.md new file mode 100644 index 000000000..96876fd19 --- /dev/null +++ b/content/discover/feed-248f741a4ea90922f5bc7ceb21d50fd6.md @@ -0,0 +1,64 @@ +--- +title: Madhura's Blog +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://madhuracj.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 248f741a4ea90922f5bc7ceb21d50fd6 + websites: + https://madhuracj.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ESRI shape files + - Editing GIS data + - FOSS + - GSoC + - GSoC 2011 + - MySQL spatial indexes + - OpenGIS support + - OpenLayers + - OpenStreetMaps + - SVG + - Visualizing GIS data + - WKB + - WKT + - jQuery SVG + - p + - phpMyAdmin + - phpMyAdmin Developer + relme: + https://madhuracj.blogspot.com/: true + https://www.blogger.com/profile/05971454704476276713: true + last_post_title: phpMyAdmin work during twenty fifth, twenty sixth and twenty eighth + weeks + last_post_description: |- + This is my final blog post reporting about the work I have carried out under the phpMyAdmn developer contract. However, I will continue to contribute to phpMyAdmin in a voluntary basis. + + + During the + last_post_date: "2016-04-08T02:15:00Z" + last_post_link: https://madhuracj.blogspot.com/2016/04/phpmyadmin-work-during-twenty-fifth.html + last_post_categories: + - phpMyAdmin Developer + last_post_language: "" + last_post_guid: df6562058f88d95b967549ec6ad15373 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-24b3b730ea4c3d5322e2bcb7c24bd2a5.md b/content/discover/feed-24b3b730ea4c3d5322e2bcb7c24bd2a5.md new file mode 100644 index 000000000..2c0ab92c2 --- /dev/null +++ b/content/discover/feed-24b3b730ea4c3d5322e2bcb7c24bd2a5.md @@ -0,0 +1,46 @@ +--- +title: Mozilla related - Medium +date: "1970-01-01T00:00:00Z" +description: Irvin's stories about Mozilla - Medium +params: + feedlink: https://medium.com/feed/mozilla-related + feedtype: rss + feedid: 24b3b730ea4c3d5322e2bcb7c24bd2a5 + websites: + https://medium.com/mozilla-related?source=rss----eed0da52384d---4: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - hackerspaces + - mozilla + - moztw + relme: + https://medium.com/mozilla-related?source=rss----eed0da52384d---4: true + last_post_title: 摩茲工寮成果報告 - 2014/5~2023/6 + last_post_description: "" + last_post_date: "2023-11-17T16:21:21Z" + last_post_link: https://medium.com/mozilla-related/moztw-space-status-2023-27dd60ffe7d8?source=rss----eed0da52384d---4 + last_post_categories: + - hackerspaces + - mozilla + - moztw + last_post_language: "" + last_post_guid: cb14ba4c208625218e096698259e1d0b + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-24c5e96691a147270b579fb2d1231530.md b/content/discover/feed-24c5e96691a147270b579fb2d1231530.md index dd1baeef1..c6523dd8b 100644 --- a/content/discover/feed-24c5e96691a147270b579fb2d1231530.md +++ b/content/discover/feed-24c5e96691a147270b579fb2d1231530.md @@ -16,24 +16,29 @@ params: - http://scripting.com/rssNightly.xml categories: [] relme: {} - last_post_title: Trump interviews show crisis in American media - last_post_description: After President Donald Trump's felony convictions, TV journalists - failed to push back on lies being spread by Republicans. I speak about how Americans - are misled by the media, leading to a crisis in - last_post_date: "2024-06-03T20:58:40Z" - last_post_link: https://steveschmidt.substack.com/p/trump-interviews-show-crisis-in-american + last_post_title: Tumult lies ahead + last_post_description: 'A historic week in American politics is underway with a + letter from President Biden to Democratic members of Congress as they return to + Washington, DC. It reads: Let’s unpack the letter. The letter' + last_post_date: "2024-07-08T15:31:42Z" + last_post_link: https://steveschmidt.substack.com/p/tumult-lies-ahead last_post_categories: [] - last_post_guid: 0e74add552686c76b34a3e4f7fd8a3be + last_post_language: "" + last_post_guid: eb35808675e7fc0bc8f14674dcb15547 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-24ce6f025df8a0e63b45f88ca3739038.md b/content/discover/feed-24ce6f025df8a0e63b45f88ca3739038.md new file mode 100644 index 000000000..088889b5c --- /dev/null +++ b/content/discover/feed-24ce6f025df8a0e63b45f88ca3739038.md @@ -0,0 +1,52 @@ +--- +title: Visions Notice-Blog +date: "2024-03-07T05:51:21Z" +description: Other churches have a printed notice sheet. We are experimenting by having + a blog instead. +params: + feedlink: https://visionsofyork.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 24ce6f025df8a0e63b45f88ca3739038 + websites: + https://visionsofyork.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - "2009" + - "72" + - bible + - climate + - notices + - notices visions + - october + - sending + - socialaction + - story + - visions + relme: + https://visionsofyork.blogspot.com/: true + last_post_title: 'Service details: Sunday 06 February' + last_post_description: "" + last_post_date: "2014-01-26T05:16:02Z" + last_post_link: https://visionsofyork.blogspot.com/2014/01/service-details-sunday-06-february.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 38e8e6b1b1ea8b82690b132d964f6fab + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-24d6be7258a0bbd39bb6c07b19379d8b.md b/content/discover/feed-24d6be7258a0bbd39bb6c07b19379d8b.md deleted file mode 100644 index 7c461869c..000000000 --- a/content/discover/feed-24d6be7258a0bbd39bb6c07b19379d8b.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Comments for annie mueller -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://anniemueller.com/comments/feed/ - feedtype: rss - feedid: 24d6be7258a0bbd39bb6c07b19379d8b - websites: - https://anniemueller.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-24e0cd4c451e00cca5489f29989027d6.md b/content/discover/feed-24e0cd4c451e00cca5489f29989027d6.md index 41b07e42b..be3235eb8 100644 --- a/content/discover/feed-24e0cd4c451e00cca5489f29989027d6.md +++ b/content/discover/feed-24e0cd4c451e00cca5489f29989027d6.md @@ -10,34 +10,35 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: - Comic relme: {} - last_post_title: Job Interview + last_post_title: Where Is My Phone? last_post_description: "" - last_post_date: "2024-05-23T07:01:31Z" - last_post_link: http://www.buttersafe.com/2024/05/23/job-interview/ + last_post_date: "2024-06-20T07:01:00Z" + last_post_link: http://www.buttersafe.com/2024/06/20/where-is-my-phone/ last_post_categories: - Comic - last_post_guid: ad746d06a32e22a8f2764b324815a262 + last_post_language: "" + last_post_guid: 8d2892107fe104303fd7766ccec20a11 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 12 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-24e8bd62c549da5c1f70e86842dcd211.md b/content/discover/feed-24e8bd62c549da5c1f70e86842dcd211.md new file mode 100644 index 000000000..3de2c8bef --- /dev/null +++ b/content/discover/feed-24e8bd62c549da5c1f70e86842dcd211.md @@ -0,0 +1,63 @@ +--- +title: Smart Themes - unikatowe szablony Blogger +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://smartthemesfor.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 24e8bd62c549da5c1f70e86842dcd211 + websites: + https://smartthemesfor.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Bąbelek Facebook + - News + - Podpowiedzi Kontekstowe + - Przewracanie Stron + - Smart Tools + - Strona Powitalna + - Tag Slider + - Wiadomość Powitalna + - Z upływem czasu + - Złote Myśli + relme: + https://aboutthomasleigh.blogspot.com/: true + https://handynewsreader.blogspot.com/: true + https://jaktamjaponski.blogspot.com/: true + https://moliumpodcast.blogspot.com/: true + https://smartthemesfor.blogspot.com/: true + https://thomascafepodcast.blogspot.com/: true + https://thomasleighthemes.blogspot.com/: true + https://thomasleighuniverse.blogspot.com/: true + https://www.blogger.com/profile/01268074830941697525: true + https://zrodlokreacji.blogspot.com/: true + last_post_title: Tag Slider + last_post_description: 'Laura prezentuje tagi (etykiety) w formie poziomo przewijanego + paska. Możesz wybrać najbardziej odpowiadający Ci wariant: obrazek na tag/etykietę + *, każdy tag/etykieta ma ten sam obrazek **, ' + last_post_date: "2016-09-12T12:35:00Z" + last_post_link: https://smartthemesfor.blogspot.com/2016/09/tag-slider.html + last_post_categories: + - Smart Tools + - Tag Slider + last_post_language: "" + last_post_guid: 97055eec9e998eea79cc14804ce3c59d + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-24ef68f3396638d47a04f0532d00c608.md b/content/discover/feed-24ef68f3396638d47a04f0532d00c608.md deleted file mode 100644 index 95d6e5ab0..000000000 --- a/content/discover/feed-24ef68f3396638d47a04f0532d00c608.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: Imaginary Potential -date: "2009-03-24T01:54:44Z" -description: The collected ramblings of six physics grad students and postdocs. -params: - feedlink: https://imaginarypotential.wordpress.com/feed/atom/ - feedtype: atom - feedid: 24ef68f3396638d47a04f0532d00c608 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Helen - - Physics - - '#ALD09' - - Ada Lovelace - - AdaLovelaceDay09 - - women in science - relme: {} - last_post_title: Progress - last_post_description: 'March 24th is Ada Lovelace day.   For more information, - see http://www.pledgebank.com/AdaLovelaceDay Here is my Ada Lovelace post: I really - struggled to come up with a woman in technology to write' - last_post_date: "2009-03-24T01:54:44Z" - last_post_link: https://imaginarypotential.wordpress.com/2009/03/23/ada-lovelace-post/ - last_post_categories: - - Helen - - Physics - - '#ALD09' - - Ada Lovelace - - AdaLovelaceDay09 - - women in science - last_post_guid: 8a2cf3d8baa76d4caf389563f853a073 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-24ef7604e41872310596b52b13762567.md b/content/discover/feed-24ef7604e41872310596b52b13762567.md new file mode 100644 index 000000000..0ef610863 --- /dev/null +++ b/content/discover/feed-24ef7604e41872310596b52b13762567.md @@ -0,0 +1,46 @@ +--- +title: CentOS +date: "2024-07-07T08:09:00+02:00" +description: All my experiences, bugs, hacks, tricks, ... with CentOS and Linux in + general. +params: + feedlink: https://misterd77.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 24ef7604e41872310596b52b13762567 + websites: + https://misterd77.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - CentOS + - Hardware + - Storage + relme: + https://misterd77.blogspot.com/: true + https://www.blogger.com/profile/08260107826868861056: true + last_post_title: What is up with the CentOS project + last_post_description: "" + last_post_date: "2009-07-30T13:06:45+02:00" + last_post_link: https://misterd77.blogspot.com/2009/07/what-is-up-with-centos-project.html + last_post_categories: + - CentOS + last_post_language: "" + last_post_guid: c1d5b29d6982123a09b47eea7fe7cfe3 + score_criteria: + cats: 3 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2502a694e6bc4b4a73e31733a91b49e6.md b/content/discover/feed-2502a694e6bc4b4a73e31733a91b49e6.md deleted file mode 100644 index ff9e313f6..000000000 --- a/content/discover/feed-2502a694e6bc4b4a73e31733a91b49e6.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: nhoizey on Pixelfed -date: "2024-06-04T07:16:34Z" -description: |- - I’m a French self-taught amateur photographer. - - I like shooting landscapes of both urban and nature scenery, but also natural light people portraits, and wild animals. - - #photography #landscape -params: - feedlink: https://pixelfed.social/users/nhoizey.atom - feedtype: atom - feedid: 2502a694e6bc4b4a73e31733a91b49e6 - websites: - https://pixelfed.social/nhoizey: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - '#photography' - - '#landscape' - relme: - https://nicolas-hoizey.photo/: true - last_post_title: "“The typical country town street”\n\nNjoro is an agricultural - town 18 km west south west of Nakuru, Kenya situated on the western rim of the - Rift Valley.\n\n\U0001F50E https://nicolas-hoizey" - last_post_description: "“The typical country town street”\n\nNjoro is an agricultural - town 18 km west south west of Nakuru, Kenya situated on the western rim of the - Rift Valley.\n\n\U0001F50E https://nicolas-hoizey" - last_post_date: "2024-06-04T07:16:34Z" - last_post_link: https://pixelfed.social/p/nhoizey/703504713252659050 - last_post_categories: [] - last_post_guid: 0f3517d4008bb69bc0b00f67b509d281 - score_criteria: - cats: 2 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 12 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-251dc8b35af021d43f870576798f99b1.md b/content/discover/feed-251dc8b35af021d43f870576798f99b1.md index 8e0de2ec1..016cfa1a7 100644 --- a/content/discover/feed-251dc8b35af021d43f870576798f99b1.md +++ b/content/discover/feed-251dc8b35af021d43f870576798f99b1.md @@ -22,17 +22,22 @@ params: last_post_date: "2024-06-04T02:39:20Z" last_post_link: https://bgfay.com/blog/2024/6/3/hamlet-in-the-litter-box last_post_categories: [] + last_post_language: "" last_post_guid: 95a6ddbd74da21f88120350925b2c6a9 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 10 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-2521fae54be77183aa24c963b6ce6bd3.md b/content/discover/feed-2521fae54be77183aa24c963b6ce6bd3.md index f4119d530..c9b1c19b2 100644 --- a/content/discover/feed-2521fae54be77183aa24c963b6ce6bd3.md +++ b/content/discover/feed-2521fae54be77183aa24c963b6ce6bd3.md @@ -11,35 +11,36 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: [] relme: https://github.com/tommorris: true - https://keybase.io/tommorris: false - last_post_title: A little Nix fix - last_post_description: A meandering wander around the scary magical future of package - management. - last_post_date: "2024-03-02T14:49:50Z" - last_post_link: https://tommorris.org/posts/2024/a-little-nix-fix/ + https://tommorris.org/: true + last_post_title: 'TIL: Using nix run to lint one-off Python scripts' + last_post_description: Linting and autoformatting crappy little scripts as if they + were proper software + last_post_date: "2024-07-08T15:33:40+01:00" + last_post_link: https://tommorris.org/posts/2024/til-using-nix-run-to-lint-oneoff-python-scripts/ last_post_categories: [] - last_post_guid: 113df28c7c15675a20bcac25d8681f34 + last_post_language: "" + last_post_guid: 84029d03dfb454599f6f4a712ca8ba8a score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 19 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-2548e265885302cee3ea911f5bcd88eb.md b/content/discover/feed-2548e265885302cee3ea911f5bcd88eb.md new file mode 100644 index 000000000..adc9d5328 --- /dev/null +++ b/content/discover/feed-2548e265885302cee3ea911f5bcd88eb.md @@ -0,0 +1,44 @@ +--- +title: ApOgEE Ubuntu +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://apogeeubuntu.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 2548e265885302cee3ea911f5bcd88eb + websites: + https://apogeeubuntu.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://apogeeubuntu.blogspot.com/: true + last_post_title: Mount Samba Shares using CLI on Ubuntu 10.04 LTS + last_post_description: |- + Before you are able to mount the samba shares, you should have smbfs package installed on your Ubuntu. Use this command to install it:$ sudo apt-get install smbfs + + + And here is the command to mount + last_post_date: "2011-12-01T04:56:00Z" + last_post_link: https://apogeeubuntu.blogspot.com/2011/11/mount-samba-shares-using-cli-on-ubuntu.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 6ae7c4d72549c7f515a4bc3f6d6b8818 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-254915d3a0c8a8cab5b7790bbfbc8311.md b/content/discover/feed-254915d3a0c8a8cab5b7790bbfbc8311.md new file mode 100644 index 000000000..a89a6eba5 --- /dev/null +++ b/content/discover/feed-254915d3a0c8a8cab5b7790bbfbc8311.md @@ -0,0 +1,41 @@ +--- +title: Tom Van Winkle's Return to Gaming +date: "2024-07-08T11:19:11-07:00" +description: Musings on table-top role-playing games today after spending a quarter + century away from them. +params: + feedlink: https://lichvanwinkle.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 254915d3a0c8a8cab5b7790bbfbc8311 + websites: + https://lichvanwinkle.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://lichvanwinkle.blogspot.com/: true + last_post_title: Yes, you ARE telling a story. + last_post_description: "" + last_post_date: "2024-02-03T06:29:52-08:00" + last_post_link: https://lichvanwinkle.blogspot.com/2024/02/yes-you-are-telling-story.html + last_post_categories: [] + last_post_language: "" + last_post_guid: ed906df50b8251e19ce5ab3dd5acb5bb + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-255a6b22578e64dd9664599d0617e7fd.md b/content/discover/feed-255a6b22578e64dd9664599d0617e7fd.md new file mode 100644 index 000000000..19907e7f6 --- /dev/null +++ b/content/discover/feed-255a6b22578e64dd9664599d0617e7fd.md @@ -0,0 +1,52 @@ +--- +title: Shlomil's blog +date: "1970-01-01T00:00:00Z" +description: If you compile it - "they" will come. +params: + feedlink: https://shlomil.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 255a6b22578e64dd9664599d0617e7fd + websites: + https://shlomil.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - April1st + - JS + - PHP + - blog + - coding + - movies + - opinion + - politics + relme: + https://shlomil.blogspot.com/: true + https://www.blogger.com/profile/09371161450223332971: true + last_post_title: JavaScript rules! + last_post_description: "" + last_post_date: "2012-09-15T22:40:00Z" + last_post_link: https://shlomil.blogspot.com/2012/09/javascript-rules.html + last_post_categories: + - JS + - coding + - opinion + last_post_language: "" + last_post_guid: 1a2f9fc4b0005f1bab4f1e31136e64e0 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-255bbb7a70bd85413922cf32dc43b69e.md b/content/discover/feed-255bbb7a70bd85413922cf32dc43b69e.md deleted file mode 100644 index e5fc3c814..000000000 --- a/content/discover/feed-255bbb7a70bd85413922cf32dc43b69e.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Comments for Through Flatland to Thoughtland -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://blog.kortar.org/?feed=comments-rss2 - feedtype: rss - feedid: 255bbb7a70bd85413922cf32dc43b69e - websites: - https://blog.kortar.org/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Building a Manual PWM fan controller by David MacLeod - last_post_description: This is really interesting. I was part of a group of people - who were playing around with 555-based PWM fan controllers a few years ago, and - the brains of the group devised a relatively simple three - last_post_date: "2020-08-14T08:22:32Z" - last_post_link: https://blog.kortar.org/?p=437#comment-85393 - last_post_categories: [] - last_post_guid: 8531c43becf201e67c633648dba2682c - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-255cadad770394df73a9ee971e807ada.md b/content/discover/feed-255cadad770394df73a9ee971e807ada.md new file mode 100644 index 000000000..9eca25340 --- /dev/null +++ b/content/discover/feed-255cadad770394df73a9ee971e807ada.md @@ -0,0 +1,54 @@ +--- +title: Federico's Blog +date: "2024-06-21T18:57:24-06:00" +description: "" +params: + feedlink: https://viruta.org/feeds/all.atom.xml + feedtype: atom + feedid: 255cadad770394df73a9ee971e807ada + websites: + https://viruta.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - gnome + - librsvg + - misc + - refactoring + - rust + relme: + https://viruta.org/: true + last_post_title: Fixing a memory leak of xmlEntityPtr in librsvg + last_post_description: |- + Since a few weeks ago, librsvg is now in oss-fuzz — + Google's constantly-running fuzz-testing for OSS projects — and the + crashes have started coming in. I'll have a lot more to say soon + about + last_post_date: "2024-06-13T11:00:34-06:00" + last_post_link: https://viruta.org/fixing-xml-entity-leak.html + last_post_categories: + - gnome + - librsvg + - misc + - refactoring + - rust + last_post_language: "" + last_post_guid: 1e64ba29c4ba2a961267f975df7adaa6 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-25630776693cfbbce81e75b02b4ef5ca.md b/content/discover/feed-25630776693cfbbce81e75b02b4ef5ca.md new file mode 100644 index 000000000..11566bf8d --- /dev/null +++ b/content/discover/feed-25630776693cfbbce81e75b02b4ef5ca.md @@ -0,0 +1,143 @@ +--- +title: New Information About Area Code +date: "1970-01-01T00:00:00Z" +description: Does scam is legal? +params: + feedlink: https://viajeespiritu.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 25630776693cfbbce81e75b02b4ef5ca + websites: + https://viajeespiritu.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Scam is everywhere. + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Area Code Scam + last_post_description: |- + If you are searching for explicit U.S. + dialings, you can discover this data effectively on the web. Enter the words + "U.S. dialings" in one of the numerous accessible web indexes, and + you will get a + last_post_date: "2021-10-17T11:03:00Z" + last_post_link: https://viajeespiritu.blogspot.com/2021/10/area-code-scam.html + last_post_categories: + - Scam is everywhere. + last_post_language: "" + last_post_guid: 4bd120833112e7879e2672e33baa4298 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-25638418fe65d2805870b39b268735fb.md b/content/discover/feed-25638418fe65d2805870b39b268735fb.md deleted file mode 100644 index 52202de43..000000000 --- a/content/discover/feed-25638418fe65d2805870b39b268735fb.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: John's Micro.Blog -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://abbamoses.micro.blog/podcast.xml - feedtype: rss - feedid: 25638418fe65d2805870b39b268735fb - websites: - https://abbamoses.micro.blog/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Society & Culture - relme: - https://micro.blog/JohnBrady: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 1 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 7 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-257a00a1859d5433cd500a83b545460a.md b/content/discover/feed-257a00a1859d5433cd500a83b545460a.md deleted file mode 100644 index 49f81535c..000000000 --- a/content/discover/feed-257a00a1859d5433cd500a83b545460a.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Harry Roberts -date: "1970-01-01T00:00:00Z" -description: Public posts from @csswizardry@webperf.social -params: - feedlink: https://webperf.social/@csswizardry.rss - feedtype: rss - feedid: 257a00a1859d5433cd500a83b545460a - websites: - https://webperf.social/@csswizardry: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://csswizardry.com/: true - https://csswizardry.com/sentinel: true - https://harry.is/for-hire: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-257f694b53d1c8cc482b6541f6ff00ca.md b/content/discover/feed-257f694b53d1c8cc482b6541f6ff00ca.md new file mode 100644 index 000000000..8337b98c4 --- /dev/null +++ b/content/discover/feed-257f694b53d1c8cc482b6541f6ff00ca.md @@ -0,0 +1,137 @@ +--- +title: Ddosing and its benefit +date: "2024-02-07T21:18:10-08:00" +description: All about Ddos and it work. +params: + feedlink: https://wezilwalraven.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 257f694b53d1c8cc482b6541f6ff00ca + websites: + https://wezilwalraven.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Benefits and Disadvantageous of Ddos + last_post_description: "" + last_post_date: "2021-04-08T12:06:46-07:00" + last_post_link: https://wezilwalraven.blogspot.com/2021/04/benefits-and-disadvantageous-of-ddos.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 39feb28b3af993014ec4ab93d7aa9d79 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2583fa774af73ff208e7e61a7100240f.md b/content/discover/feed-2583fa774af73ff208e7e61a7100240f.md new file mode 100644 index 000000000..5399a0643 --- /dev/null +++ b/content/discover/feed-2583fa774af73ff208e7e61a7100240f.md @@ -0,0 +1,59 @@ +--- +title: Go Chaos !! +date: "2024-03-05T00:07:56-08:00" +description: |- + Complete Chaos - a feel, a religion, a bond + ...chaos, is the new order +params: + feedlink: https://chetukuli.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 2583fa774af73ff208e7e61a7100240f + websites: + https://chetukuli.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Gangotri + - KedarGanga + - KedarTaal trek + - Thalaysagar + - condolences + - home + - house + - power of music + - social protocol + - words + relme: + https://chetukuli.blogspot.com/: true + https://tweakeclipse.blogspot.com/: true + https://uncctriveni.blogspot.com/: true + https://www.blogger.com/profile/12901447063650143488: true + last_post_title: Poker Face + last_post_description: |- + moms, + + +     Ironic ? Misplaced destiny ? Serendipity ? I don't know what to call this. For me it means nothing. It so happens that all 3 of us are in the country of USA from this November. Preetu, + last_post_date: "2011-11-17T20:37:21-08:00" + last_post_link: https://chetukuli.blogspot.com/2011/11/poker-face.html + last_post_categories: [] + last_post_language: "" + last_post_guid: c55cfc9c717a2ba7b4a21b84e279c02b + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-259ce2b06e7f0478d5cb44582b341e0d.md b/content/discover/feed-259ce2b06e7f0478d5cb44582b341e0d.md deleted file mode 100644 index c26473591..000000000 --- a/content/discover/feed-259ce2b06e7f0478d5cb44582b341e0d.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: openstack – Techno Delight -date: "1970-01-01T00:00:00Z" -description: Keep Learning and Sharing -params: - feedlink: https://shaifaliagrawal.wordpress.com/category/openstack/feed/ - feedtype: rss - feedid: 259ce2b06e7f0478d5cb44582b341e0d - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - openstack - - '#openstack' - - OPW - relme: {} - last_post_title: Playing with QueueController - last_post_description: My current task is to shift QueueController from Data to - Control plane, at present it is in data plane[1] But I am stuck in between and - here putting the situation. flaper87, vkmc and I are thinking - last_post_date: "2015-02-02T16:19:42Z" - last_post_link: https://shaifaliagrawal.wordpress.com/2015/02/02/moving-queuecontroller-storage-configs-into-control-from-data-plane/ - last_post_categories: - - openstack - - '#openstack' - - OPW - last_post_guid: 74e84fe246c9eb1a9dd2e1b13b9d588c - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-25a65255517a8e57c04186b6a3742322.md b/content/discover/feed-25a65255517a8e57c04186b6a3742322.md new file mode 100644 index 000000000..2e53b0dfe --- /dev/null +++ b/content/discover/feed-25a65255517a8e57c04186b6a3742322.md @@ -0,0 +1,128 @@ +--- +title: Den of the Lizard King +date: "2024-07-08T14:07:58-07:00" +description: |- + Gaming for (Painted) Dragons - + Home of Stellagama Publishing +params: + feedlink: https://spacecockroach.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 25a65255517a8e57c04186b6a3742322 + websites: + https://spacecockroach.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - 2d6 Sci-Fi OGL + - ACKS + - Adventure + - Alkonost + - BFRPG + - Barbarian Conqueror King + - Barrowmaze + - Broken Cradle + - Camalynn + - Cepheus + - Cepheus Light + - Computer Games + - Convention + - Crypts and Things + - Dark Inheritance + - Dark Nebula + - Dark Project + - Dungeons & Dragons 5E + - Dungeons and Dragons 4E + - Elysian Empire + - Epic + - 'FTL: Nomad' + - Free Kriegsspiel + - GRUNTZ + - Gargoyle 74 + - Hard Space + - Infinite Stars + - Isenvale + - Kickstarter + - Knave + - Lamentations of the Flame Princess + - Lance + - Lizards + - Mass Effect + - Monsters + - Music + - NEXUS + - NPCs + - Old School Essentials + - Outer Veil + - PTSD + - PbP + - Play Report + - PoD + - Post-Apocalyptic + - Python + - Real Life + - Reignited Stars + - Review + - Rusted Lands + - STALKER + - SWN + - Scrapyard + - Sector23 + - Stalingrad 2072 + - Starships + - Stellagama Publishing + - Strahd + - Sword of Cepheus + - Swords Against the Machine + - Swords and Wizardry + - These Stars Are Ours! + - Tomorrow's War + - Traveller + - USE ME + - Visions of Empire + - WH40K + - Wargames + - White Star + - Wounded Gaia + - XCOM + - Zazzle + - cookbook + - fiction + - game-design + - harsh beginnings + - lost islands + - miniatures + - miniatures XCOM + - sales + - settings + - solar winds + - terrain + relme: + https://spacecockroach.blogspot.com/: true + last_post_title: 'Space Opera Duels for Faster Than Light: Nomad' + last_post_description: "" + last_post_date: "2024-06-01T07:04:43-07:00" + last_post_link: https://spacecockroach.blogspot.com/2024/06/space-opera-duels-for-faster-than-light.html + last_post_categories: [] + last_post_language: "" + last_post_guid: ddb1b70336a87cd0c7a327e712c533af + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 23 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-25b48e6be733a2d0d8d537fe42bc137e.md b/content/discover/feed-25b48e6be733a2d0d8d537fe42bc137e.md deleted file mode 100644 index 335db5015..000000000 --- a/content/discover/feed-25b48e6be733a2d0d8d537fe42bc137e.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: openstack – The Shining Path of Least Resistance -date: "1970-01-01T00:00:00Z" -description: LeastResistance.Net -params: - feedlink: https://leastresistance.wordpress.com/category/openstack/feed/ - feedtype: rss - feedid: 25b48e6be733a2d0d8d537fe42bc137e - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - chef - - community - - openstack - - opschef - relme: {} - last_post_title: Chef for OpenStack Status 11/2 - last_post_description: Getting back into the swing of semi-regular updates. Last - week was the Chef Developer Summit, lots of great conversations and quite a few - people interested in OpenStack. This week was catching up - last_post_date: "2012-11-03T04:30:35Z" - last_post_link: https://leastresistance.wordpress.com/2012/11/02/chef-for-openstack-status-112/ - last_post_categories: - - chef - - community - - openstack - - opschef - last_post_guid: 6899352ff7c2e4948c182ceaa6780841 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-25b6b1681aa9479411826b89d0802f06.md b/content/discover/feed-25b6b1681aa9479411826b89d0802f06.md deleted file mode 100644 index eeb218dc2..000000000 --- a/content/discover/feed-25b6b1681aa9479411826b89d0802f06.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: sigcpp -date: "1970-01-01T00:00:00Z" -description: Public posts from @sigcpp@hachyderm.io -params: - feedlink: https://hachyderm.io/@sigcpp.rss - feedtype: rss - feedid: 25b6b1681aa9479411826b89d0802f06 - websites: - https://hachyderm.io/@SIGCPP: false - https://hachyderm.io/@sigcpp: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/approved/: false - https://github.com/sigcpp: false - https://sigcpp.github.io/: true - https://twitter.com/sigcpp: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-25b969efa597c8f5206d300cd73575c0.md b/content/discover/feed-25b969efa597c8f5206d300cd73575c0.md new file mode 100644 index 000000000..78c791b00 --- /dev/null +++ b/content/discover/feed-25b969efa597c8f5206d300cd73575c0.md @@ -0,0 +1,49 @@ +--- +title: Eclipse Summer of Code +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://eclipse-soc.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 25b969efa597c8f5206d300cd73575c0 + websites: + https://eclipse-soc.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Improving Eclipse Search + - Integate and Connect your Clients + - Status + - eclipse + - soc + relme: + https://eclipse-soc.blogspot.com/: true + https://irbull.blogspot.com/: true + https://www.blogger.com/profile/02668098567506210626: true + last_post_title: A disruptive technology for code generation + last_post_description: OK, now I have to support my claim. Here we go.I've been + using StringBuffer.append() for code generation (like everyone else) while looking + for safer alternatives (safer meaning, compile-time type + last_post_date: "2008-06-18T14:49:00Z" + last_post_link: https://eclipse-soc.blogspot.com/2008/06/disruptive-technology-for-code.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 48f40d84fcd1355488828e512cd7cd33 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-25be1fd670d56da7faaa659271260b64.md b/content/discover/feed-25be1fd670d56da7faaa659271260b64.md new file mode 100644 index 000000000..9dd7319db --- /dev/null +++ b/content/discover/feed-25be1fd670d56da7faaa659271260b64.md @@ -0,0 +1,53 @@ +--- +title: Jens Lechtenbörger activity +date: "2024-07-08T13:23:39Z" +description: "" +params: + feedlink: https://gitlab.com/lechten.atom + feedtype: atom + feedid: 25be1fd670d56da7faaa659271260b64 + websites: + https://gitlab.com/lechten: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://gitlab.com/lechten: true + last_post_title: Jens Lechtenbörger pushed to project branch main at oer / OER courses + / IT Systems + last_post_description: |- + Jens Lechtenbörger + (ba6c791d) + + at + 08 Jul 13:23 + + + Fix hyperlinks + + + ... and + 1 more commit + last_post_date: "2024-07-08T13:23:39Z" + last_post_link: https://gitlab.com/oer/oer-courses/it-systems/-/compare/9ccf5f7fbc82d7b5898a8b64f6bf44fa20c76d05...ba6c791dda10dc1d259e13cf57bdb3ffd83dbd2b + last_post_categories: [] + last_post_language: "" + last_post_guid: 2dfcc6b4e4fd9666ae88ce59ee3abf24 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-25c4b3fba4c8fd82144f6c29a6ae63b0.md b/content/discover/feed-25c4b3fba4c8fd82144f6c29a6ae63b0.md index 11332219d..ec284515d 100644 --- a/content/discover/feed-25c4b3fba4c8fd82144f6c29a6ae63b0.md +++ b/content/discover/feed-25c4b3fba4c8fd82144f6c29a6ae63b0.md @@ -15,24 +15,29 @@ params: - https://blog.numericcitizen.me/podcast.xml categories: [] relme: {} - last_post_title: The Grovemade Laptop Riser - last_post_description: The Grovemade Laptop Riser works great with the Grovemade - Desk Shelf. It may also be the prettiest laptop stand on the market right now.It - seems the best desk accessories on the market right now are - last_post_date: "2024-02-19T20:42:19Z" - last_post_link: https://thenewsprint.co/2024/02/19/the-grovemade-laptop-riser/ + last_post_title: A Comprehensive Review of the Ugmonk Gather System + last_post_description: The Ugmonk Gather collection is the best set of desk accessories + I have ever tried.It’s time for some post tax season catch up. Back at the end + of March, I put together one of my most comprehensive + last_post_date: "2024-06-23T18:57:38Z" + last_post_link: https://thenewsprint.co/2024/06/23/a-comprehensive-review-of-the-ugmonk-gather/ last_post_categories: [] - last_post_guid: 3538bae35d32f4ef6a0667a3b2fc09be + last_post_language: "" + last_post_guid: 5c57254d4d8557056b4a9f7f42d1086b score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-25c81591375f17b8dcc14c2ed45233f6.md b/content/discover/feed-25c81591375f17b8dcc14c2ed45233f6.md new file mode 100644 index 000000000..51fa50ff6 --- /dev/null +++ b/content/discover/feed-25c81591375f17b8dcc14c2ed45233f6.md @@ -0,0 +1,47 @@ +--- +title: コンピューターで暇潰し +date: "2024-03-13T08:35:48-07:00" +description: "" +params: + feedlink: https://osamu-aoki.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 25c81591375f17b8dcc14c2ed45233f6 + websites: + https://osamu-aoki.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Debian + - netwalker + relme: + https://goofing-and-tweaking.blogspot.com/: true + https://goofing-with-computer.blogspot.com/: true + https://goofying-with-debian.blogspot.com/: true + https://osamu-aoki.blogspot.com/: true + https://osamu-in-japan.blogspot.com/: true + https://www.blogger.com/profile/12377163704610747036: true + last_post_title: New kernel 2.6.28-15-araneo + last_post_description: "" + last_post_date: "2009-12-12T17:19:01-08:00" + last_post_link: https://osamu-aoki.blogspot.com/2009/12/new-kernel-2628-15-araneo.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 19c2af7cfcecb95b5fff9c58e2b160e8 + score_criteria: + cats: 2 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 12 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-25e3cae66c9107cdf0d6ebbae7825dab.md b/content/discover/feed-25e3cae66c9107cdf0d6ebbae7825dab.md deleted file mode 100644 index 403beb08b..000000000 --- a/content/discover/feed-25e3cae66c9107cdf0d6ebbae7825dab.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Smashing Magazine -date: "1970-01-01T00:00:00Z" -description: Public posts from @smashingmag@mastodon.social -params: - feedlink: https://mastodon.social/@smashingmag.rss - feedtype: rss - feedid: 25e3cae66c9107cdf0d6ebbae7825dab - websites: - https://mastodon.social/@smashingmag: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://smashingmagazine.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-25e9358345b2f7241cb88e74b6e6343c.md b/content/discover/feed-25e9358345b2f7241cb88e74b6e6343c.md deleted file mode 100644 index 55ec4efcf..000000000 --- a/content/discover/feed-25e9358345b2f7241cb88e74b6e6343c.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Dr. Adam Procter -date: "1970-01-01T00:00:00Z" -description: I am a practitioner-researcher at Winchester School of Art, University - of Southampton, UK. I designed and run the BA (Hons) Games Design and Art programme, - a progressive games course utilising -params: - feedlink: https://discursive.adamprocter.co.uk/podcast.xml - feedtype: rss - feedid: 25e9358345b2f7241cb88e74b6e6343c - websites: - https://discursive.adamprocter.co.uk/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Society & Culture - relme: - https://github.com/adamprocter: true - https://instagram.com/adamprocter: false - https://micro.blog/adamprocter: false - https://twitter.com/adamprocter: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 1 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 11 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-25f1071d23a128d2aa1cfe12145f9faf.md b/content/discover/feed-25f1071d23a128d2aa1cfe12145f9faf.md new file mode 100644 index 000000000..c0673b5e1 --- /dev/null +++ b/content/discover/feed-25f1071d23a128d2aa1cfe12145f9faf.md @@ -0,0 +1,87 @@ +--- +title: Marco's Blog +date: "1970-01-01T00:00:00Z" +description: Developer blog by Marco Scholtyssek +params: + feedlink: https://scholtyssek.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 25f1071d23a128d2aa1cfe12145f9faf + websites: + https://scholtyssek.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ARM + - AVR + - Eingebettete Systeme + - English + - RTOS + - Rigol + - Rigol DS1052D + - SCT + - STM32F4 + - STMicroelectronics + - Sensors + - Statecharts + - TSL2561 + - Yakindu + - arduino + - atmega + - c programming + - embedded systems + - enterprise + - erika + - gyroscope + - itemis + - linux + - logic analyzer + - mecanum + - microcontroller + - microprocessor + - odomerty + - omnidirectional + - oscilloscope + - robot + - scope + - statechart + - swedish wheels + - trafficlight + - ultrasonic + - xbox360 + relme: + https://scholtyssek.blogspot.com/: true + last_post_title: TSL2561 light sensor with STM32F4 + last_post_description: |- + This blog has been moved: http://scholtyssek.org/blog/2014/11/24/tsl2561-light-sensor-with-stm32f4/ + + The TSL2561 is a sensor that measures the light-intensity and transforms it to a 16-bit resolution + last_post_date: "2014-11-24T15:43:00Z" + last_post_link: https://scholtyssek.blogspot.com/2014/11/tsl2561-lightsensor-with-stm32f4.html + last_post_categories: + - ARM + - Eingebettete Systeme + - English + - STM32F4 + - Sensors + - TSL2561 + - embedded systems + last_post_language: "" + last_post_guid: 1a16d22163cc45f8155e81be7be554ed + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-260dab50ee06e33e0954dec9acf20102.md b/content/discover/feed-260dab50ee06e33e0954dec9acf20102.md deleted file mode 100644 index ed007e4c6..000000000 --- a/content/discover/feed-260dab50ee06e33e0954dec9acf20102.md +++ /dev/null @@ -1,53 +0,0 @@ ---- -title: John's World Wide Wall Display -date: "1970-01-01T00:00:00Z" -description: Teaching, ict, and suchlike -params: - feedlink: https://johnjohnston.info/blog/feed/ - feedtype: rss - feedid: 260dab50ee06e33e0954dec9acf20102 - websites: - https://johnjohnston.info/blog: true - https://johnjohnston.info/blog/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Micro - - reaction - - Dave Winer - - Radio Sandaig - - rss - relme: - https://github.com/troutcolor: false - https://johnjohnston.info/: false - https://micro.blog/johnjohnston: false - https://social.ds106.us/@johnjohnston: false - https://twitter.com/johnjohnston: false - https://www.flickr.com/people/troutcolor: false - last_post_title: RSS First - last_post_description: I bet you could do a beautifully readable blog by just dynamically - rendering its RSS feed. Why bother statically rendering the home page, month page, - day page or pages for each individual post. - last_post_date: "2024-06-02T22:36:38+01:00" - last_post_link: https://johnjohnston.info/blog/rss-first/ - last_post_categories: - - Micro - - reaction - - Dave Winer - - Radio Sandaig - - rss - last_post_guid: 2b2fbdf3ec8f0b0cfb6855b0c5a53f99 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 12 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2618925bf5395e0945df9ca74d8234cf.md b/content/discover/feed-2618925bf5395e0945df9ca74d8234cf.md new file mode 100644 index 000000000..4edb5a6fa --- /dev/null +++ b/content/discover/feed-2618925bf5395e0945df9ca74d8234cf.md @@ -0,0 +1,87 @@ +--- +title: Seed of Worlds +date: "1970-01-01T00:00:00Z" +description: Seed of Worlds - writings on tabletop RPGs +params: + feedlink: https://seedofworlds.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 2618925bf5395e0945df9ca74d8234cf + websites: + https://seedofworlds.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Calidar + - D&D + - Gygaxian Democracy + - Lore24 + - Mechanus + - RPGVienna + - Scaledlands + - Sholtipec + - Spelljammer + - Towers of Krshal + - actual play + - blog carnival + - blog gubbins + - book goblinism + - brancalonia + - bundles + - dnd + - domain play + - dungeons & data + - flying rules + - gehenna + - generator + - glog + - gygax75 + - hex maps + - iou + - jams and challenges + - kickstarter + - kobolds + - lessons learned + - meetup + - menagerie world + - nanowrimo + - neural network + - osr + - planescape + - random table + - review + - slush pile + - unused ideas + - weekly links + - worldbuilding + - ysyp + - zines + relme: + https://seedofworlds.blogspot.com/: true + last_post_title: 'Shiny TTRPG links #180' + last_post_description: More archive diving during this holiday period. For yet more + links, see the previous list found here or you can check the RPG Blog Carnival + or on Third Kingdom Games news roundup. Originally inspired + last_post_date: "2024-07-08T08:06:00Z" + last_post_link: https://seedofworlds.blogspot.com/2024/07/shiny-ttrpg-links-180.html + last_post_categories: + - weekly links + last_post_language: "" + last_post_guid: a7d5da82d18c9d603458c8f0f6f2d5ce + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-265e6c54767a11623a4a49b727b9979f.md b/content/discover/feed-265e6c54767a11623a4a49b727b9979f.md deleted file mode 100644 index 4176a8af3..000000000 --- a/content/discover/feed-265e6c54767a11623a4a49b727b9979f.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: lown -date: "1970-01-01T00:00:00Z" -description: Public posts from @lown@mastodon.idiot.sh -params: - feedlink: https://mastodon.idiot.sh/@lown.rss - feedtype: rss - feedid: 265e6c54767a11623a4a49b727b9979f - websites: - https://mastodon.idiot.sh/@lown: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://gath.io/: false - https://raphael.computer/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-266f55a38a7dae502feb8ff6f5eca95d.md b/content/discover/feed-266f55a38a7dae502feb8ff6f5eca95d.md new file mode 100644 index 000000000..c509c1d5a --- /dev/null +++ b/content/discover/feed-266f55a38a7dae502feb8ff6f5eca95d.md @@ -0,0 +1,40 @@ +--- +title: Cozinheiro de Domingo +date: "2024-03-14T03:31:28-07:00" +description: "" +params: + feedlink: https://cozinheirodedomingo.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 266f55a38a7dae502feb8ff6f5eca95d + websites: + https://cozinheirodedomingo.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://cozinheirodedomingo.blogspot.com/: true + last_post_title: Assando carnes no forno doméstico + last_post_description: "" + last_post_date: "2012-11-11T08:51:07-08:00" + last_post_link: https://cozinheirodedomingo.blogspot.com/2012/11/assando-carnes-no-forno-domestico.html + last_post_categories: [] + last_post_language: "" + last_post_guid: a80d5b7c3ea2c38764786a7540a84033 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-267ccd7f8197b20beaea0e2b66033d99.md b/content/discover/feed-267ccd7f8197b20beaea0e2b66033d99.md deleted file mode 100644 index 41198aa16..000000000 --- a/content/discover/feed-267ccd7f8197b20beaea0e2b66033d99.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Unauthoritative Pronouncements -date: "2024-05-31T22:26:38Z" -description: By Joseph Rosensteel -params: - feedlink: https://joe-steel.com/feed.xml - feedtype: atom - feedid: 267ccd7f8197b20beaea0e2b66033d99 - websites: - https://joe-steel.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Vulcan Hello 91 - “Life, Itself” - last_post_description: "" - last_post_date: "2024-05-31T23:18:00Z" - last_post_link: https://www.theincomparable.com/vulcanhello/91/ - last_post_categories: [] - last_post_guid: 6fb84a19a17820972a01f82b67429e5e - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-267cd42f9ff8995b1ac8a2b18f7bc0bf.md b/content/discover/feed-267cd42f9ff8995b1ac8a2b18f7bc0bf.md new file mode 100644 index 000000000..046715a68 --- /dev/null +++ b/content/discover/feed-267cd42f9ff8995b1ac8a2b18f7bc0bf.md @@ -0,0 +1,52 @@ +--- +title: Rockabill Film Society Skerries +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://rockabillfilmsoc.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 267cd42f9ff8995b1ac8a2b18f7bc0bf + websites: + https://rockabillfilmsoc.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://boardgamethoughts.blogspot.com/: true + https://coderthoughts.blogspot.com/: true + https://hikersthoughts.blogspot.com/: true + https://laarderhoogt.blogspot.com/: true + https://lightdarknesspainting.blogspot.com/: true + https://on-software-architecture.blogspot.com/: true + https://osgithoughts.blogspot.com/: true + https://rockabillfilmsoc.blogspot.com/: true + https://rockabillfilmsociety.blogspot.com/: true + https://testblogaswebsite.blogspot.com/: true + https://www.blogger.com/profile/13786738766478890804: true + last_post_title: Spring Season 2024 + last_post_description: Spring 2024 ScheduleClick the links for details:Thu 18 Jan + Ballywalter + Once HomeThu 25 Jan Driving MadeleineThu 8 Feb The Last RiderThu + 22 Feb Past LivesThu 7 Mar The InnocentThu 21 Mar The Eternal + last_post_date: "2024-01-04T19:13:00Z" + last_post_link: https://rockabillfilmsoc.blogspot.com/2024/01/spring-season-2024.html + last_post_categories: [] + last_post_language: "" + last_post_guid: bae4c761f014cd97f7e9a06214960988 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-267cf89c5910264ecf89d724e96afe43.md b/content/discover/feed-267cf89c5910264ecf89d724e96afe43.md new file mode 100644 index 000000000..d3b6f510e --- /dev/null +++ b/content/discover/feed-267cf89c5910264ecf89d724e96afe43.md @@ -0,0 +1,54 @@ +--- +title: The Grace and Paul Pottscast +date: "2024-02-08T05:58:59-08:00" +description: "" +params: + feedlink: https://pottscast.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 267cf89c5910264ecf89d724e96afe43 + websites: + https://pottscast.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Announcement + - Commentary + - Encore Presentation + - Episode + - Field Recording + - Hot Take + relme: + https://armstrong-collection.blogspot.com/: true + https://geeklikemetoo.blogspot.com/: true + https://geekversusguitar.blogspot.com/: true + https://hodgecast.blogspot.com/: true + https://pottscast.blogspot.com/: true + https://praisecurseandrecurse.blogspot.com/: true + https://thebooksthatwroteme.blogspot.com/: true + https://www.blogger.com/profile/04401509483200614806: true + last_post_title: Retiring This Blog + last_post_description: "" + last_post_date: "2023-05-18T17:37:19-07:00" + last_post_link: https://pottscast.blogspot.com/2023/05/retiring-this-blog.html + last_post_categories: + - Announcement + last_post_language: "" + last_post_guid: 2be2b247828c2f625ca08ba0353eddda + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-268e902262131b46ca75dd89c8480f10.md b/content/discover/feed-268e902262131b46ca75dd89c8480f10.md index 042c991d2..b6d38a57c 100644 --- a/content/discover/feed-268e902262131b46ca75dd89c8480f10.md +++ b/content/discover/feed-268e902262131b46ca75dd89c8480f10.md @@ -15,6 +15,7 @@ params: - Uncategorized relme: https://hachyderm.io/@zehicle: true + https://robhirschfeld.com/: true last_post_title: Jumping to Mastodon.io last_post_description: With the implosion of Twitter, I’ve moved over to Kris Nova’s Mastodon site, https://hachyderm.io/ site. Please come over and collaborate with @@ -23,17 +24,22 @@ params: last_post_link: https://robhirschfeld.com/2022/11/17/jumping-to-mastodon-io/ last_post_categories: - Uncategorized + last_post_language: "" last_post_guid: e17c56f8f15c66282b3509830fe90efc score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 11 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-26957fa81191affba464f742ed75d079.md b/content/discover/feed-26957fa81191affba464f742ed75d079.md deleted file mode 100644 index 3527b3e4e..000000000 --- a/content/discover/feed-26957fa81191affba464f742ed75d079.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Colin Walker – Live Feed -date: "1970-01-01T00:00:00Z" -description: Posts as they happen from colinwalker.blog -params: - feedlink: https://colinwalker.blog/livefeed.xml - feedtype: rss - feedid: 26957fa81191affba464f742ed75d079 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://frankmeeuwsen.com/feed.xml - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-269d9d37eb3b5486208c8c171ab8caa4.md b/content/discover/feed-269d9d37eb3b5486208c8c171ab8caa4.md deleted file mode 100644 index 7170f071c..000000000 --- a/content/discover/feed-269d9d37eb3b5486208c8c171ab8caa4.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Work Chronicles -date: "1970-01-01T00:00:00Z" -description: Webcomics -params: - feedlink: https://workchronicles.com/feed/ - feedtype: rss - feedid: 269d9d37eb3b5486208c8c171ab8caa4 - websites: - https://workchronicles.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://jlelse.blog/.min.rss - - https://jlelse.blog/.rss - - https://jlelse.blog/index.xml - categories: - - Comics - relme: {} - last_post_title: Not if but when - last_post_description: The post Not if but when appeared first on Work Chronicles. - last_post_date: "2024-01-24T16:15:00Z" - last_post_link: https://workchronicles.com/not-if-but-when/ - last_post_categories: - - Comics - last_post_guid: ca830ca232f51ffabbaca6e471075386 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 14 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-26e9e4fc2393d1a39fab7277436cded5.md b/content/discover/feed-26e9e4fc2393d1a39fab7277436cded5.md new file mode 100644 index 000000000..9b87605f3 --- /dev/null +++ b/content/discover/feed-26e9e4fc2393d1a39fab7277436cded5.md @@ -0,0 +1,65 @@ +--- +title: Eclipse Fever +date: "2024-03-13T05:28:51-07:00" +description: "" +params: + feedlink: https://tweakeclipse.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 26e9e4fc2393d1a39fab7277436cded5 + websites: + https://tweakeclipse.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - EMF FAQ + - EMF Maps + - EMF Resource + - EMap + - EclipseCon 2009 + - EclipseDay India + - Ed Merks + - Modeling + - RCP + - XMLHelper + - eclipse + - eclipse 3.4 + - extension locations + - ganymede + - help assistant + - keyboard shortcuts Eclipse editors planeteclipse + - manage configuration + - save + - serialize + - without namespace + relme: + https://chetukuli.blogspot.com/: true + https://tweakeclipse.blogspot.com/: true + https://uncctriveni.blogspot.com/: true + https://www.blogger.com/profile/12901447063650143488: true + last_post_title: Family day tomorrow @ Bangalore + last_post_description: "" + last_post_date: "2010-04-22T05:25:54-07:00" + last_post_link: https://tweakeclipse.blogspot.com/2010/04/family-day-tomorrow-bangalore.html + last_post_categories: + - EclipseDay India + - eclipse + last_post_language: "" + last_post_guid: 34a660f8bc637dee2f81071fb451ceba + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-26e9f0177f121ba36a600c1dff3573bc.md b/content/discover/feed-26e9f0177f121ba36a600c1dff3573bc.md new file mode 100644 index 000000000..0df5746c0 --- /dev/null +++ b/content/discover/feed-26e9f0177f121ba36a600c1dff3573bc.md @@ -0,0 +1,48 @@ +--- +title: Photo feed of Jack Baty on Glass +date: "1970-01-01T00:00:00Z" +description: Jack Baty on Glass +params: + feedlink: https://glass.photo/jbaty/rss + feedtype: rss + feedid: 26e9f0177f121ba36a600c1dff3573bc + websites: + https://glass.photo/jbaty: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://baty.net/: true + https://baty.net/feeds: true + https://daily.baty.net/: true + https://glass.photo/jbaty: true + https://jackbaty.com/: true + https://mastodon.social/@batybot: true + https://social.lol/@jbaty: true + last_post_title: We went on a paddle boat cruise and it was lovely. The blues band + had us hoppin. + last_post_description: We went on a paddle boat cruise and it was lovely. The blues + band had us hoppin. + last_post_date: "2024-07-06T19:15:36Z" + last_post_link: https://glass.photo/jbaty/6fTpCLRMX11R71WbWYMzzN + last_post_categories: [] + last_post_language: "" + last_post_guid: ac92b7eef1e35299dbc910082ebad365 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-26ff563b9b82115a93d731709dfecdc0.md b/content/discover/feed-26ff563b9b82115a93d731709dfecdc0.md index 113a0f17c..24e21a9d7 100644 --- a/content/discover/feed-26ff563b9b82115a93d731709dfecdc0.md +++ b/content/discover/feed-26ff563b9b82115a93d731709dfecdc0.md @@ -12,16 +12,17 @@ params: recommended: [] recommender: [] categories: - - gsoc - - gstreamer - ccd - - despeckle - - sobel - - video - colorenhance + - despeckle + - gsoc + - gstreamer - problems - smart sharpening + - sobel + - video relme: + https://relekandcode.blogspot.com/: true https://www.blogger.com/profile/11412600860729192403: true last_post_title: Masked sharpening works last_post_description: "" @@ -36,17 +37,22 @@ params: - smart sharpening - sobel - video + last_post_language: "" last_post_guid: 4a0b76cf0d8919abcfe408760f6e6151 score_criteria: cats: 5 description: 0 + feedlangs: 0 postcats: 3 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-271be8ab322bbb591f0283e133c3c2cf.md b/content/discover/feed-271be8ab322bbb591f0283e133c3c2cf.md new file mode 100644 index 000000000..085f3ee33 --- /dev/null +++ b/content/discover/feed-271be8ab322bbb591f0283e133c3c2cf.md @@ -0,0 +1,681 @@ +--- +title: GROGNARDIA +date: "1970-01-01T00:00:00Z" +description: Musings and Memories from a Lifetime of Roleplaying +params: + feedlink: https://grognardia.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 271be8ab322bbb591f0283e133c3c2cf + websites: + https://grognardia.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - "1889" + - 1960s + - 1970s + - 1980s + - 2e + - 3e + - 4e + - 5e + - ADnD + - AnE + - CAS + - CnS + - CoC + - D101 Games + - DnD + - PCs + - SnS + - T + - TARGA + - VnV + - a to z + - ability scores + - abstraction + - acks + - acres + - adams + - ads of dragon + - adventure games publishing + - advertising + - ahmed + - albie fiore + - alehouse + - alignment + - allston + - anagrams + - anderson + - animal kings + - anime + - appendix n + - appenix n + - arduin + - ares magazine + - arkham house + - armor class + - arneson + - art + - articles of dragon + - asprin + - assistance + - atari + - atlantis + - avalon hill + - averoigne + - backhaus + - ball + - bard + - barker + - barrett's raiders + - bath + - baum + - bell + - bellairs + - bezio + - black blade + - blackmoor + - bledsaw + - bloch + - blue book + - blume + - boardgames + - boney + - books + - boot hill + - brackett + - bradbury + - bran mak morn + - brandification + - braunstein + - brave halfling + - breig + - brooks + - brown + - brp + - brundage + - bsg + - buck rogers + - bulwer-lytton + - burroughs + - calithena + - campaigns + - campbell + - carcosa + - carr + - carter + - castle zagyg + - chadwick + - chainmail + - chalk + - chambers + - champions + - chandler + - chaosium + - character classes + - character sheets + - charette + - charrette + - charts + - chesterton + - christopher + - citadel + - cleric + - clerics + - cnc + - combat + - comics + - computers + - conan + - conley + - contest + - conventions + - copyright + - cosmology + - costikyan + - counters + - crichton + - crompton + - crossby + - csio + - cthulhu + - cyberpunk + - cyoa + - dancey + - danforth + - dangerous journeys + - dark sun + - darlene + - darren mcgavin + - david cook + - davidson + - dawn patrol + - dc + - dccrpg + - decamp + - dee + - definitions + - demons + - derleth + - dever + - dice + - dietrick + - different worlds + - disney + - diterlizzi + - ditko + - diy rpg + - do it yourself + - doc smith + - donaldson + - doyle + - dragon magazine + - dragonlance + - dragonquest + - dragons + - drow + - druid + - dungeons + - dunsany + - dwarves + - dwimmermount + - easley + - eddings + - eddison + - ehara + - eisenstein + - elf lair games + - elmore + - elric + - elves + - emaindor + - encounter critical + - endgame + - ept + - escapism + - espinoza + - evil + - experience + - fantasy cartographic + - fanzines + - farmer + - fasa + - faster monkey + - fgu + - fight on + - fighter + - fighting fantasy + - finch + - finieous fingers + - finlay + - flash gordon + - flying buffalo + - foglio + - forbidden isle + - forbidden lands + - forgotten realms + - fox + - frazetta + - free league + - frog god games + - future of gaming + - gamebooks + - gamelords + - games workshop + - gamescience + - gamma world + - gangbusters + - gardner + - garrett + - gdw + - gemmell + - gilsdorf + - glen cook + - glorantha + - gnomes + - goblinoid games + - goblins + - gods + - gold + - golden age + - goodgames games + - goodman games + - green ronin + - greenwood + - grenadier + - greyhawk + - grognard's grimoire + - grognards + - grohe + - grubb + - gsl + - gurps + - gygax + - gygaxo-arneson + - h. beam piper + - hackmaster + - haggard + - halflings + - hammack + - hammer + - hargrave + - harn + - harrison + - harryhausen + - hasbro + - hawkmoon + - hce + - heald + - heinlein + - henchmen + - hendryx + - henson + - heritage + - hexographer + - hickman + - hildebrandt + - hirelings + - historical fantasy + - history + - hit points + - hodgson + - holloway + - holmes + - horror + - house of worms + - house rules + - howard + - howard thompson + - humans + - hume + - humor + - hyperborea + - ice + - idiocy + - imagine magazine + - imagine the hell out of it + - imaro + - interview + - iridia zine + - jackson + - japan + - jaquays + - jaquet + - johnson + - jones + - jorune + - judges guild + - kane + - kanterman + - kask + - keith brothers + - kellri + - kennig + - kenzer + - kickstarter + - killer DM + - king arthur + - kirby + - kline + - knockspell + - known world + - kothar + - krebs + - kull + - kummer + - kuntz + - kurtz + - kuttner + - labyrinth lord + - laforce + - lakofka + - lamb + - languages + - lanier + - leason + - lego + - leiber + - lejendary adventure + - level + - lewis + - lewis carroll + - livingstone + - loomis + - lords of creation + - lotfp + - lovecraft + - ludibrium games + - machen + - magic + - magic-user + - malory + - mapes + - maps + - marcela-froideval + - mars + - marsh + - marvel + - mayfair + - mayle + - mccaffrey + - mckinney + - megadungeon + - megarry + - mehlem + - meints + - melan + - memories + - mentzer + - merp + - merritt + - merry mushmen + - metagaming + - metal + - metamorphosis alpha + - midderlands + - miller + - minaria + - mind flayers + - mini-con + - miniatures + - mishler + - mmo + - modules + - mohan + - moldvay + - mongoose + - monk + - monkey blood + - monsters + - monte cook + - moorcock + - moore + - mork borg + - mornard + - morris + - morrow project + - movies + - music + - musing + - musings + - musings. memories + - mutant future + - mythmere games + - mythus + - mörk borg + - naturalism + - necromancer games + - new infinities + - newport + - news + - nice guys + - nicholson + - niles + - ninja + - niven + - norman + - norton + - nostalgia + - o'bannon + - odd + - offut + - og + - ogc + - ogl + - ogre + - old school + - open friday + - ose + - osr + - osrcon + - osric + - other + - other blogs + - other games + - otus + - oubliette + - owen + - oz + - pacesetter + - packard + - page + - paizo + - paladin + - palladium + - palmer + - pangborn + - pao + - pathfinder rpg + - pdf + - peake + - pelinore + - pendragon + - perrin + - petersen + - peterson + - petty gods + - pied piper publishing + - planes + - planet stories + - podcast + - poe + - poll + - polyhedron + - pondsmith + - post-apocalyptic + - pratt + - predictions + - priestley + - proctor + - projects + - psionics + - pulp fantasy + - pulp fantasy gallery + - pulp fantasy library + - pulps + - quinn + - r. talsorian + - raggi + - rahman + - random roll + - ranger + - rasmussen + - ravenloft + - red sonja + - refereeing + - reiche + - religion + - retraction + - retro-clones + - retrospective + - review + - rice + - rients + - ringworld + - ritchie + - robertson + - robinson + - rolemaster + - rolston + - roslof + - ross + - roy thomas + - rpga + - rules + - runequest + - russ + - saberhagen + - salvatore + - samurai + - sandbox + - sapkowski + - saunders + - saving throws + - saxman + - schick + - science fantasy + - science fiction + - sha-arthan + - shaver + - shea + - shook + - siembieda + - silver age + - silver john + - simbalist + - sine nomine + - skills + - snarfquest + - snider + - snw + - soapbox games + - software + - solomon kane + - space gamer + - space opera + - spi + - st andre + - st. clair + - stackpole + - stafford + - star frontiers + - star trek + - star wars + - steve jackson games + - stormbringer + - strategic review + - sullivan + - superheroes + - sustare + - sutherland + - sword-and-planet + - swords-and-sorcery + - symbaroum + - t2k + - talanian + - tanith lee + - task force games + - tekumel + - television + - tetv + - the fantasy trip + - the hobby + - the industry + - the witcher + - thief + - thomson + - thousand suns + - tierney + - tnt + - tolkien + - top secret + - tournaments + - trampier + - traveller + - treasure + - tri tac + - tricky owlbear + - troll lord + - tsr + - tubb + - tucholka + - undead + - urheim + - vaesen + - vampires + - van vogt + - vance + - venus + - verisimilitude + - vey + - victory games + - video games + - von daniken + - wagner + - walker + - war + - ward + - warden + - wargames + - warhammer + - wayfarers + - wee warriors + - weinbaum + - weird tales + - weis + - wellman + - wells + - wesely + - wesley + - west end + - westerns + - wfrp + - wham + - whats his story + - white dwarf + - wilderlands + - wilderness + - williams + - willingham + - willis + - winter + - wisdom + - wiseman + - wodehouse + - wolfe + - wonderland + - world of warcraft + - wormy + - wotc + - writing + - xrp + - ya'govian + - yaquinto + - zelazny + - zieser + - zocchi + - zothique + relme: + https://grognardia.blogspot.com/: true + last_post_title: A (Very) Partial Pictorial History of Trolls + last_post_description: It's well known that, in populating the bestiary of Dungeons + & Dragons, Arneson and Gygax regularly looked beyond mythology and folklore for + inspiration. Such is obviously the case with the troll, + last_post_date: "2024-07-08T04:00:00Z" + last_post_link: https://grognardia.blogspot.com/2024/07/a-very-partial-pictorial-history-of_0297871625.html + last_post_categories: + - 2e + - ADnD + - anderson + - art + - dee + - diterlizzi + - grenadier + - holloway + - miniatures + - monsters + - nicholson + - sutherland + - trampier + - tsr + last_post_language: "" + last_post_guid: 102ea528ce758b07705f745872f506ea + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-271e0ad2f165cc89cf9c5dd862f2cffa.md b/content/discover/feed-271e0ad2f165cc89cf9c5dd862f2cffa.md index 31de85700..48b5ed4c4 100644 --- a/content/discover/feed-271e0ad2f165cc89cf9c5dd862f2cffa.md +++ b/content/discover/feed-271e0ad2f165cc89cf9c5dd862f2cffa.md @@ -14,24 +14,30 @@ params: recommender: [] categories: [] relme: - https://mastodon.social/@ianbetteridge: false - https://micro.blog/ianbetteridge: false - last_post_title: Comment on Google lies by One Hundred and Fifty Four – Gavin Lewis - last_post_description: '[…] Google lies | Ian Betteridge […]' - last_post_date: "2024-06-02T19:27:37Z" - last_post_link: https://ianbetteridge.com/2024/05/29/google-lies/comment-page-1/#comment-3873 + https://ianbetteridge.com/: true + last_post_title: Comment on Microsoft 1998 = Apple 2024 by Ian Betteridge + last_post_description: 'Baldur + Bjarnason: mentioned this in @rysiek Hah! . Let us know in the comments which of their posts has resonated @@ -20,17 +21,22 @@ params: last_post_date: "2024-04-13T01:07:40Z" last_post_link: https://arunraghavan.net/2012/01/pulseaudio-vs-audioflinger-fight/comment-page-1/#comment-1687156 last_post_categories: [] + last_post_language: "" last_post_guid: 696b5ff042cfa770d4f9c836eb47d44f score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 8 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-281f42d392e641765da0d21e0c617a3b.md b/content/discover/feed-281f42d392e641765da0d21e0c617a3b.md deleted file mode 100644 index 0b414873b..000000000 --- a/content/discover/feed-281f42d392e641765da0d21e0c617a3b.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: blast-o-rama. -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://www.blast-o-rama.com/feed/ - feedtype: rss - feedid: 281f42d392e641765da0d21e0c617a3b - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://rknight.me/subscribe/posts/rss.xml - categories: [] - relme: {} - last_post_title: 'VENOM: THE LAST DANCE Gets Its First Trailer' - last_post_description: |- - Till death do they part. Tom Hardy returns in Venom: The Last Dance – coming exclusively to theaters this October. - In Venom: The Last Dance, Tom Hardy returns as Venom, one of Marvel’s greatest - last_post_date: "2024-06-03T09:17:43-04:00" - last_post_link: https://blast-o-rama.com/2024/06/03/venom-the-last.html - last_post_categories: [] - last_post_guid: 4f9937bb775acddcdfd5848fb60aaf25 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2844dab9565b1cd0ba8a896c36cec675.md b/content/discover/feed-2844dab9565b1cd0ba8a896c36cec675.md new file mode 100644 index 000000000..2ab3b1a8f --- /dev/null +++ b/content/discover/feed-2844dab9565b1cd0ba8a896c36cec675.md @@ -0,0 +1,42 @@ +--- +title: Kos+Eclipse +date: "2024-03-05T12:49:06+01:00" +description: My weblog about Eclipse development. +params: + feedlink: https://kos-eclipse.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 2844dab9565b1cd0ba8a896c36cec675 + websites: + https://kos-eclipse.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://kos-eclipse.blogspot.com/: true + https://kos-w-szwecji.blogspot.com/: true + https://www.blogger.com/profile/17477844421204281952: true + last_post_title: I want YOU to describe your view of a C/C++ IDE! + last_post_description: "" + last_post_date: "2010-05-17T20:23:05+02:00" + last_post_link: https://kos-eclipse.blogspot.com/2010/05/i-want-you-to-describe-your-view-of-cc_17.html + last_post_categories: [] + last_post_language: "" + last_post_guid: f19b8ea9d515f291d8738b98cb5b8412 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2849e08f0b2b0baf4549bd7957489084.md b/content/discover/feed-2849e08f0b2b0baf4549bd7957489084.md new file mode 100644 index 000000000..77d1f612c --- /dev/null +++ b/content/discover/feed-2849e08f0b2b0baf4549bd7957489084.md @@ -0,0 +1,57 @@ +--- +title: GeoCat bv +date: "1970-01-01T00:00:00Z" +description: Let's map the world, together +params: + feedlink: https://www.geocat.net/feed/ + feedtype: rss + feedid: 2849e08f0b2b0baf4549bd7957489084 + websites: + https://www.geocat.net/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ArcGIS + - Bridge + - GeoNetwork + - GeoServer + - Metadata + - News + - OGC + relme: + https://fosstodon.org/@geocat: true + https://github.com/GeoCat: true + https://www.geocat.net/: true + last_post_title: GeoCat Bridge for ArcGIS Pro has arrived! + last_post_description: The post GeoCat Bridge for ArcGIS Pro has arrived! appeared + first on GeoCat bv. + last_post_date: "2024-06-28T10:39:45Z" + last_post_link: https://www.geocat.net/geocat-bridge-for-arcgis-pro/ + last_post_categories: + - ArcGIS + - Bridge + - GeoNetwork + - GeoServer + - Metadata + - News + - OGC + last_post_language: "" + last_post_guid: 6b25f68474f1e37643c207c25b8676dd + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-28745a0b3a2ff65a39617bcd392c986e.md b/content/discover/feed-28745a0b3a2ff65a39617bcd392c986e.md deleted file mode 100644 index 622e938ee..000000000 --- a/content/discover/feed-28745a0b3a2ff65a39617bcd392c986e.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: coaxion.net – slomo's blog -date: "1970-01-01T00:00:00Z" -description: random thoughts and other things -params: - feedlink: https://coaxion.net/blog/feed/ - feedtype: rss - feedid: 28745a0b3a2ff65a39617bcd392c986e - websites: - https://coaxion.net/blog/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Free Software - - GNOME - - GStreamer - - Rust - relme: {} - last_post_title: Building a GStreamer plugin in Rust with meson instead of cargo - last_post_description: 'Over the Easter holidays I spent some time on a little experiment: - How hard is it to build a GStreamer plugin in Rust with meson instead of using - the default Rust build system cargo? meson is a' - last_post_date: "2023-04-19T14:26:36Z" - last_post_link: https://coaxion.net/blog/2023/04/building-a-gstreamer-plugin-in-rust-with-meson-instead-of-cargo/ - last_post_categories: - - Free Software - - GNOME - - GStreamer - - Rust - last_post_guid: 61394aeb543d91d2a02a71c8f36fafdd - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-288ec2292c6f6c50d8bf82a6ca528c3a.md b/content/discover/feed-288ec2292c6f6c50d8bf82a6ca528c3a.md deleted file mode 100644 index c5210acdb..000000000 --- a/content/discover/feed-288ec2292c6f6c50d8bf82a6ca528c3a.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Ted's Soapbox on Linux, File systems, and the World on Theodore Ts'o -date: "1970-01-01T00:00:00Z" -description: Recent content in Ted's Soapbox on Linux, File systems, and the World - on Theodore Ts'o -params: - feedlink: https://thunk.org/tytso/blog/index.xml - feedtype: rss - feedid: 288ec2292c6f6c50d8bf82a6ca528c3a - websites: - https://thunk.org/tytso/blog/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Switching to Hugo - last_post_description: |- - With the demise of Google+, I’ve decided to try to resurrect my blog. - Previously, I was using Wordpress, but I’ve decided that it’s just too - risky from a security perspective. So I’ve - last_post_date: "2019-05-19T23:19:57-04:00" - last_post_link: https://thunk.org/tytso/blog/2019/05/20/switching-to-hugo/ - last_post_categories: [] - last_post_guid: 28eeddc06feb57cea27486cd6c79646f - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2898a2b8066b7f700a00e62c73212a81.md b/content/discover/feed-2898a2b8066b7f700a00e62c73212a81.md new file mode 100644 index 000000000..774141a8b --- /dev/null +++ b/content/discover/feed-2898a2b8066b7f700a00e62c73212a81.md @@ -0,0 +1,44 @@ +--- +title: Test Double +date: "2024-06-14T21:35:32Z" +description: Dispatches from our Double Agents +params: + feedlink: https://blog.testdouble.com/index.xml + feedtype: atom + feedid: 2898a2b8066b7f700a00e62c73212a81 + websites: + https://blog.testdouble.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - Software + relme: + https://blog.testdouble.com/: true + last_post_title: How to synchronize JSON date formats for accurate data comparison + last_post_description: "" + last_post_date: "2024-06-04T00:00:00Z" + last_post_link: https://blog.testdouble.com/posts/2024-06-04-synchronize-json-date-formats-timezones/ + last_post_categories: [] + last_post_language: "" + last_post_guid: f1a308d473b8dfc258e2bdfa0e3a1255 + score_criteria: + cats: 1 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-289b37c1055922bd157b0688bfb6113e.md b/content/discover/feed-289b37c1055922bd157b0688bfb6113e.md deleted file mode 100644 index 1edbb35ea..000000000 --- a/content/discover/feed-289b37c1055922bd157b0688bfb6113e.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: David Stanek's Digressions -date: "1970-01-01T00:00:00Z" -description: Recent content on David Stanek's Digressions -params: - feedlink: https://dstanek.com/tags/openstack/index.xml - feedtype: rss - feedid: 289b37c1055922bd157b0688bfb6113e - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Unleashing Keystone Domain Admins - last_post_description: Once upon a time OpenStack had one big grouping of users - and projects that were managed by a centralized administration group. Nice and - simple for small, single organization clouds. As the use of - last_post_date: "2016-11-04T00:00:00Z" - last_post_link: https://dstanek.com/keystone-domain-admins/ - last_post_categories: [] - last_post_guid: 3fe075984ed98cb34f805853e1615f5a - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-289f384750974f0076ee90bcdca63227.md b/content/discover/feed-289f384750974f0076ee90bcdca63227.md deleted file mode 100644 index 1b68028e5..000000000 --- a/content/discover/feed-289f384750974f0076ee90bcdca63227.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Anna Havron -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://feeds.feedburner.com/AnnaHavron - feedtype: rss - feedid: 289f384750974f0076ee90bcdca63227 - websites: - https://www.annahavron.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: On Getting Over It - last_post_description: Never. - last_post_date: "2024-02-02T22:00:49Z" - last_post_link: https://www.annahavron.com/blog/blog-post-on-getting-over-it - last_post_categories: [] - last_post_guid: 797162f06ac5d51e71904e9fb228f39e - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-28b3624e95dbbf53ca1f46ba1314ebf9.md b/content/discover/feed-28b3624e95dbbf53ca1f46ba1314ebf9.md new file mode 100644 index 000000000..fc4ebddbe --- /dev/null +++ b/content/discover/feed-28b3624e95dbbf53ca1f46ba1314ebf9.md @@ -0,0 +1,43 @@ +--- +title: Auke Booij's programming and logic +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://abooij.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 28b3624e95dbbf53ca1f46ba1314ebf9 + websites: + https://abooij.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://abooij.blogspot.com/: true + https://www.blogger.com/profile/12557099016349698408: true + last_post_title: -XFunctorialDo + last_post_description: |- + tl;dr: ApplicativeDo is useful also for functors. However, use laziness when pattern matching. The GHC manual remains a fantastic resource for learning about language extensions. + By default, do + last_post_date: "2021-02-09T18:51:00Z" + last_post_link: https://abooij.blogspot.com/2021/02/xfunctorialdo.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 449a576e49bae2448d903d4783675ca6 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-28b363fea120c2581a43dfad381421a0.md b/content/discover/feed-28b363fea120c2581a43dfad381421a0.md deleted file mode 100644 index e66dc997a..000000000 --- a/content/discover/feed-28b363fea120c2581a43dfad381421a0.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: Gabriel Garrido -date: "1970-01-01T00:00:00Z" -description: Recent content on Gabriel Garrido -params: - feedlink: https://garrido.io/index.xml - feedtype: rss - feedid: 28b363fea120c2581a43dfad381421a0 - websites: - https://garrido.io/: true - blogrolls: [] - recommended: [] - recommender: - - https://jlelse.blog/.min.rss - - https://jlelse.blog/.rss - - https://jlelse.blog/index.xml - categories: [] - relme: - https://git.garrido.io/gabriel: true - https://github.com/ggpsv: true - https://keybase.io/ggpsv: true - https://lobste.rs/~ggpsv: true - https://news.ycombinator.com/user?id=ggpsv: false - https://social.coop/@ggpsv: true - last_post_title: Sobre la muerte y la empatía, con Francisco Varela - last_post_description: Quiero reflexionar sobre una entrevista que le hizo Cristián - Warnken al reconocido biólogo y filósofo chileno Francisco Varela para el programa - La belleza del pensar. Apenas unos meses después - last_post_date: "2024-05-17T12:45:37+02:00" - last_post_link: https://garrido.io/links/2024/05/sobre-la-muerte-y-la-empat%C3%ADa-con-francisco-varela/ - last_post_categories: [] - last_post_guid: 724ba9308e0aba9bfba72afe64f77f5f - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 15 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-28b9abc2ac2535f0dcfa71b9b8837264.md b/content/discover/feed-28b9abc2ac2535f0dcfa71b9b8837264.md deleted file mode 100644 index 2a47be6f1..000000000 --- a/content/discover/feed-28b9abc2ac2535f0dcfa71b9b8837264.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: zdimension -date: "2024-03-26T20:32:54+01:00" -description: adventures in computational madness -params: - feedlink: https://zdimension.fr/feed.xml - feedtype: atom - feedid: 28b9abc2ac2535f0dcfa71b9b8837264 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: - - Projects - relme: {} - last_post_title: Analyzing my electricity consumption - last_post_description: Electricity prices have been steadily rising in France for - the past few years, with a particularly sharp increase since the beginning of - the Russian invasion of Ukraine. This has led me to wonder - last_post_date: "2024-02-16T14:48:31+01:00" - last_post_link: https://zdimension.fr/analyzing-my-electricity-consumption/ - last_post_categories: - - Projects - last_post_guid: d8d5414f4e20d45fd83b7fe7ff17ac16 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 12 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-28bb047bdcd7b0554fbb13e3eb483f84.md b/content/discover/feed-28bb047bdcd7b0554fbb13e3eb483f84.md deleted file mode 100644 index e2cd5ba2b..000000000 --- a/content/discover/feed-28bb047bdcd7b0554fbb13e3eb483f84.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Fosstodon -date: "1970-01-01T00:00:00Z" -description: Public posts from @fosstodon@fosstodon.org -params: - feedlink: https://fosstodon.org/@fosstodon.rss - feedtype: rss - feedid: 28bb047bdcd7b0554fbb13e3eb483f84 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-28bfeeac336969144a472107721bee07.md b/content/discover/feed-28bfeeac336969144a472107721bee07.md deleted file mode 100644 index bd47fcd8d..000000000 --- a/content/discover/feed-28bfeeac336969144a472107721bee07.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Radyology -date: "2023-01-13T13:31:17-06:00" -description: Technology, Programming, and General Makery -params: - feedlink: https://www.benrady.com/rss.xml - feedtype: atom - feedid: 28bfeeac336969144a472107721bee07 - websites: - https://www.benrady.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://twitter.com/benrady: false - last_post_title: Testing with FIRE - last_post_description: Updated April 25th, 2023 For years now, I've held the belief - that effective automated test suites have four essential attributes. These attributes - have been referenced by other authors, and were the - last_post_date: "2023-04-25T09:49:12-05:00" - last_post_link: https://www.benrady.com/2016/11/testing-with-fire.html - last_post_categories: [] - last_post_guid: 1c7fd4ad8b3c992556191a5323370c13 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-28c7daaf30e301ef26dcb2f6f254198d.md b/content/discover/feed-28c7daaf30e301ef26dcb2f6f254198d.md index 76a9dafdc..253146424 100644 --- a/content/discover/feed-28c7daaf30e301ef26dcb2f6f254198d.md +++ b/content/discover/feed-28c7daaf30e301ef26dcb2f6f254198d.md @@ -11,14 +11,10 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: - Library Marketing Toolkit - Marketing @@ -35,17 +31,22 @@ params: - Library Marketing Toolkit - Marketing - Professional Development + last_post_language: "" last_post_guid: 324748537b51df1fb9f696dc15e013b1 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 16 + score: 20 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-28d4ea392559cc99079c2c5ce09f9311.md b/content/discover/feed-28d4ea392559cc99079c2c5ce09f9311.md deleted file mode 100644 index 985b43c3f..000000000 --- a/content/discover/feed-28d4ea392559cc99079c2c5ce09f9311.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: A Book Apart - Press -date: "2024-03-01T10:46:35-05:00" -description: "" -params: - feedlink: https://feeds.feedburner.com/a-book-apart - feedtype: atom - feedid: 28d4ea392559cc99079c2c5ce09f9311 - websites: - https://abookapart.com/: false - https://abookapart.com/blogs/press: true - https://abookapart.com/products/accessibility-for-everyone: false - https://abookapart.com/products/going-offline: false - https://abookapart.com/products/you-deserve-a-tech-union: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: A New Chapter for A Book Apart - last_post_description: Dear Reader, We wanted to share a bit of news with you. Since - opening our doors in 2010, we’ve navigated considerable change—from rising production - costs, to fluctuating fulfillment needs, to - last_post_date: "2024-03-01T10:46:35-05:00" - last_post_link: https://abookapart.com/blogs/press/a-new-chapter-for-a-book-apart - last_post_categories: [] - last_post_guid: 614e546652c443ba56a65350363b5764 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-28de11c308da783c9ff73b37762222a4.md b/content/discover/feed-28de11c308da783c9ff73b37762222a4.md new file mode 100644 index 000000000..1d6b9f448 --- /dev/null +++ b/content/discover/feed-28de11c308da783c9ff73b37762222a4.md @@ -0,0 +1,46 @@ +--- +title: foreach(hour; life) {/*do something here...*/} +date: "1970-01-01T00:00:00Z" +description: A blog about making some simple applications in D. +params: + feedlink: https://foreach-hour-life.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 28de11c308da783c9ff73b37762222a4 + websites: + https://foreach-hour-life.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://foreach-hour-life.blogspot.com/: true + https://i-want-to-paint.blogspot.com/: true + https://jc-rambling-fool.blogspot.com/: true + https://www.blogger.com/profile/02963297031531256476: true + last_post_title: 'The first corner: "-n" for echo.' + last_post_description: |- + So it seems you weren't totally put off by my first post and have decided to see what other bugs I can accidentally put in to a trivial program! Onwards and upwards... + + First things first: The two + last_post_date: "2013-07-26T00:31:00Z" + last_post_link: https://foreach-hour-life.blogspot.com/2013/07/the-first-corner-n-for-echo.html + last_post_categories: [] + last_post_language: "" + last_post_guid: b200029fbed283c1a75196a05854c189 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-28ea8fb48a724f63141b1c3571ab6bb8.md b/content/discover/feed-28ea8fb48a724f63141b1c3571ab6bb8.md new file mode 100644 index 000000000..65046b06a --- /dev/null +++ b/content/discover/feed-28ea8fb48a724f63141b1c3571ab6bb8.md @@ -0,0 +1,77 @@ +--- +title: Computo Ergo Sum +date: "1970-01-01T00:00:00Z" +description: |- + I compute, therefore I am. + + Essays on Life, Science, and Technology. +params: + feedlink: https://computoergosum.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 28ea8fb48a724f63141b1c3571ab6bb8 + websites: + https://computoergosum.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Academic publishing + - Africa + - Arthur C. Clarke + - Business + - Chess + - Clarke's three laws + - Egypt + - Internet service provider + - LinkedIn + - Mesh Networks + - Mobile phone + - North Africa + - One Laptop per Child + - Open source + - OpenWrt + - Proprietary software + - Technology + - Wireless mesh network + - Wireless network + - meshnetworking + relme: + https://computoergosum.blogspot.com/: true + last_post_title: Mesh Networks to the rescue of Freedom of speech and association + last_post_description: Image via WikipediaI have written before about the importance + of mesh networking. Unfortunately due the government/corporation backed FUD campaigns + about the "risks" of sharing your network + last_post_date: "2011-03-06T10:55:00Z" + last_post_link: https://computoergosum.blogspot.com/2011/03/mesh-networks-to-rescue-of-freedom-of.html + last_post_categories: + - Africa + - Egypt + - Internet service provider + - Mesh Networks + - Mobile phone + - North Africa + - One Laptop per Child + - OpenWrt + - Technology + - Wireless mesh network + - Wireless network + - meshnetworking + last_post_language: "" + last_post_guid: 29f8ed3ac849c8da2b3af28a33e89968 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-290df92c45fe3c0f7c8fe4d6f8a5fd7b.md b/content/discover/feed-290df92c45fe3c0f7c8fe4d6f8a5fd7b.md deleted file mode 100644 index 04068188e..000000000 --- a/content/discover/feed-290df92c45fe3c0f7c8fe4d6f8a5fd7b.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: '@chrisaldrich.bsky.social' -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://bsky.app/profile/did:plc:am7gdn5ny4vagg3lwjcppy3f/rss - feedtype: rss - feedid: 290df92c45fe3c0f7c8fe4d6f8a5fd7b - websites: - https://bsky.app/profile/chrisaldrich.bsky.social: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-290ec3d9ebb07922b147e1c8e3c26ea4.md b/content/discover/feed-290ec3d9ebb07922b147e1c8e3c26ea4.md deleted file mode 100644 index 2516686d4..000000000 --- a/content/discover/feed-290ec3d9ebb07922b147e1c8e3c26ea4.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: mariovillalobos -date: "1970-01-01T00:00:00Z" -description: Public posts from @mariovillalobos@mastodon.social -params: - feedlink: https://mastodon.social/@mariovillalobos.rss - feedtype: rss - feedid: 290ec3d9ebb07922b147e1c8e3c26ea4 - websites: - https://mastodon.social/@mariovillalobos: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://mariovillalobos.com/: true - https://mariovillalobos.com/feed.xml: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-29110f679014779c9c02a9e5a469d07a.md b/content/discover/feed-29110f679014779c9c02a9e5a469d07a.md deleted file mode 100644 index 68f23300e..000000000 --- a/content/discover/feed-29110f679014779c9c02a9e5a469d07a.md +++ /dev/null @@ -1,74 +0,0 @@ ---- -title: jabel -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://jabel.blog/feed.xml - feedtype: rss - feedid: 29110f679014779c9c02a9e5a469d07a - websites: - https://jabel.blog/: true - blogrolls: - - https://jabel.blog/.well-known/recommendations.opml - recommended: - - https://aaronaiken.micro.blog/feed.xml - - https://abbamoses.micro.blog/feed.xml - - https://ablerism.micro.blog/feed.xml - - https://annarama.net/feed.xml - - https://annie.micro.blog/feed.xml - - https://anotherendoftheworld.org/feed/ - - https://beardystarstuff.net/feed.xml - - https://blog.grotenhuis.info/feed.xml - - https://blog.seadave.org/feed.xml - - https://cliffordbeshers.micro.blog/feed.xml - - https://fcbrowncloud.com/feed/ - - https://itself.blog/feed/ - - https://maique.eu/feed.xml - - https://miraz.me/feed.xml - - https://social.ayjay.org/feed.xml - - https://social.davidwalbert.com/feed.xml - - https://tinyroofnail.micro.blog/feed.xml - - https://www.patrickrhone.net/feed/ - - https://aaronaiken.micro.blog/podcast.xml - - https://abbamoses.micro.blog/podcast.xml - - https://ablerism.micro.blog/podcast.xml - - https://annarama.net/podcast.xml - - https://annie.micro.blog/podcast.xml - - https://anotherendoftheworld.org/comments/feed/ - - https://blog.grotenhuis.info/podcast.xml - - https://canneddragons.net/ - - https://cliffordbeshers.micro.blog/podcast.xml - - https://dougald.substack.com/feed - - https://fcbrowncloud.com/comments/feed/ - - https://itself.blog/comments/feed/ - - https://miraz.me/podcast.xml - - https://rhyd.substack.com/feed - - https://social.ayjay.org/podcast.xml - - https://social.davidwalbert.com/podcast.xml - - https://thedruidsgarden.com/comments/feed/ - - https://www.patrickrhone.net/comments/feed/ - recommender: - - https://colinwalker.blog/dailyfeed.xml - - https://colinwalker.blog/livefeed.xml - categories: [] - relme: - https://micro.blog/jabel: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 10 - relme: 1 - title: 3 - website: 2 - score: 21 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-291609f42e1c53273387ccbbba8ad8a1.md b/content/discover/feed-291609f42e1c53273387ccbbba8ad8a1.md new file mode 100644 index 000000000..50821fc6f --- /dev/null +++ b/content/discover/feed-291609f42e1c53273387ccbbba8ad8a1.md @@ -0,0 +1,43 @@ +--- +title: Things I do +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://jonasdn.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 291609f42e1c53273387ccbbba8ad8a1 + websites: + https://jonasdn.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - risc-v + relme: + https://jonasdn.blogspot.com/: true + last_post_title: A new release of nsnstrace + last_post_description: During the holidays I managed to get some time to hack on + nsntrace. I have mentioned nsntrace on this blog in the past but you might need + a refresher:The nsntrace application uses Linux network + last_post_date: "2021-01-05T08:58:00Z" + last_post_link: https://jonasdn.blogspot.com/2021/01/a-new-release-of-nsnstrace.html + last_post_categories: [] + last_post_language: "" + last_post_guid: a077ebf6fe0ed96e0894a2783ed951af + score_criteria: + cats: 1 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 11 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-291ad0f0efd8878cefe49ba83badd16d.md b/content/discover/feed-291ad0f0efd8878cefe49ba83badd16d.md new file mode 100644 index 000000000..86761f94f --- /dev/null +++ b/content/discover/feed-291ad0f0efd8878cefe49ba83badd16d.md @@ -0,0 +1,192 @@ +--- +title: troy's unix space +date: "1970-01-01T00:00:00Z" +description: Various tips and tricks picked up in UNIX engineering. +params: + feedlink: https://troysunix.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 291ad0f0efd8878cefe49ba83badd16d + websites: + https://troysunix.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 802.1q + - autofs + - awk + - base + - binary + - bios + - blog info + - bridge + - bsdlabel + - chmod + - chown + - conversions + - cpio + - cpu + - ctd + - date + - decimal + - dhcp + - disk clone + - diskpart + - disks + - dladm + - dmp + - dns + - dumpe2fs + - dumpfs + - epoch + - esxi + - ethtool + - facl + - fcinfo + - fdisk + - file integrity + - file recovery + - files + - format + - freebsd + - fs + - fsck + - fstab + - fstat + - fstyp + - fuser + - geom + - growfs + - grub + - hba + - hex + - host info + - httpd + - ifconfig + - imgadm + - init + - initrd + - inittab + - inode + - ipmp + - iscsi + - iso + - json + - kenv + - lab + - linux + - loop device + - luxadm + - mbr + - mdadm + - mdconfig + - memory + - mirror + - mke2fs + - mkfile + - mkfs + - mkswap + - mount + - mpathadm + - mpxio + - ndd + - network + - newfs + - nfs + - ntp + - obp + - octal + - op + - option 82 + - partition + - pax + - perl + - pfiles + - pkg + - pkgchk + - pmap + - port forwarding + - ports + - privileges + - proc + - processes + - prtconf + - prtdiag + - quotas + - raid + - rbac + - rc.conf + - rc.local + - rcX.d + - recovery + - registry + - replicate + - resize2fs + - rpc + - rpm + - smartos + - smf + - snapshot + - solaris + - ssh + - sudo + - svccfg + - svcs + - svm + - swap + - sysctl + - systeminfo + - tar + - terminal + - tunnel + - ufsdump + - vconfig + - virtualization + - vlan + - vm + - vmadm + - volume + - vsphere + - vswitch + - vtoc + - vxdmp + - vxvm + - windows + - zfs + - zip + - zone + relme: + https://troysunix.blogspot.com/: true + https://www.blogger.com/profile/02867962932926227365: true + last_post_title: Configuring NFS in SmartOS + last_post_description: "" + last_post_date: "2013-05-06T02:21:00Z" + last_post_link: https://troysunix.blogspot.com/2013/05/configuring-nfs-in-smartos.html + last_post_categories: + - dladm + - fstab + - json + - nfs + - smartos + - virtualization + - vmadm + - zone + last_post_language: "" + last_post_guid: ae335f95f0603f6746f8e5088191e431 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2929d9267f4ea7e34c883b8359bfbd3e.md b/content/discover/feed-2929d9267f4ea7e34c883b8359bfbd3e.md new file mode 100644 index 000000000..2eae7902e --- /dev/null +++ b/content/discover/feed-2929d9267f4ea7e34c883b8359bfbd3e.md @@ -0,0 +1,49 @@ +--- +title: Ian's random blog +date: "2023-11-11T17:24:05Z" +description: A place to store random thoughts, snippets of GeoTools code and other + bits and pieces of stuff I write sometimes. If you enjoyed the post or it helped + you out, please consider buying me a coffee +params: + feedlink: https://blog.ianturton.com/feed.xml + feedtype: rss + feedid: 2929d9267f4ea7e34c883b8359bfbd3e + websites: + https://blog.ianturton.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - gis + relme: + https://blog.ianturton.com/: true + https://fosstodon.org/@ianturton: true + https://github.com/ianturton: true + https://www.ianturton.com/: true + last_post_title: Is GeoJSON a spatial data format? + last_post_description: "A few days ago on Mastodon Eli Pousson\nasked:\n\n\n Can + anyone suggest examples of files that can contain location info but aren’t often + considered spatial data \nfile formats?\n\n\n\nHe suggested EXIF," + last_post_date: "2023-11-11T00:00:00Z" + last_post_link: https://blog.ianturton.com/gis/2023/11/11/geojson.html + last_post_categories: + - gis + last_post_language: "" + last_post_guid: fc94481abd107583a03478fb75c756aa + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-295b425a93750df0e2538d01776fc64f.md b/content/discover/feed-295b425a93750df0e2538d01776fc64f.md deleted file mode 100644 index d1b8cf527..000000000 --- a/content/discover/feed-295b425a93750df0e2538d01776fc64f.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Trent Walton -date: "1970-01-01T00:00:00Z" -description: Trent Walton’s Blog -params: - feedlink: https://trentwalton.com/feed.xml - feedtype: rss - feedid: 295b425a93750df0e2538d01776fc64f - websites: - https://trentwalton.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: [] - relme: - https://mastodon.social/@TrentWalton: true - last_post_title: Metroid Type Explorations - last_post_description: To celebrate the release of the new Beasts of England typeface, - Acorn, I made some quick typographic exploration designs based on the key areas - from Super Metroid! I’m pretty hyped on how the set - last_post_date: "2023-03-17T00:00:00Z" - last_post_link: http://trentwalton.com/notes/2023/03/17/metroid-type-explorations.html - last_post_categories: [] - last_post_guid: 491e351dd6d160ee121ba23e720f55c5 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 15 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2973fd77c3cd7ef0f5cec27aa8535fe5.md b/content/discover/feed-2973fd77c3cd7ef0f5cec27aa8535fe5.md index c5fc35370..4812f550d 100644 --- a/content/discover/feed-2973fd77c3cd7ef0f5cec27aa8535fe5.md +++ b/content/discover/feed-2973fd77c3cd7ef0f5cec27aa8535fe5.md @@ -13,30 +13,36 @@ params: recommender: [] categories: - Personal - - Reflection + - Work relme: + https://chriswiegman.com/: true https://github.com/ChrisWiegman: true https://mastodon.chriswiegman.com/@chris: true - last_post_title: Wednesday, 5 June, 2024 - last_post_description: I wish I had a longer post today but, alas, that is not the - case. We were able to spend yesterday afternoon hanging out with a friend we hadn’t - seen since before COVID. It was a wonderful afternoon - last_post_date: "2024-06-05T13:17:32Z" - last_post_link: https://chriswiegman.com/2024/06/wednesday-5-june-2024/ + last_post_title: Back to an Office + last_post_description: 'Today I do something I haven’t done in 11 years: I go into + an actual office to work. I never thought I would do this but moving to Chicago + has changed my mind a bit. One of our issues in Florida' + last_post_date: "2024-07-08T12:20:38Z" + last_post_link: https://chriswiegman.com/2024/07/back-to-an-office/ last_post_categories: - Personal - - Reflection - last_post_guid: 6bfd8b29e8a6282e4f75b748fb69e27e + - Work + last_post_language: "" + last_post_guid: 3a6b0cbb0e78fc2876d6f5654c4f7557 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 2 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 12 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-2985d122209365531bfd0ed7a24ea777.md b/content/discover/feed-2985d122209365531bfd0ed7a24ea777.md new file mode 100644 index 000000000..196131af5 --- /dev/null +++ b/content/discover/feed-2985d122209365531bfd0ed7a24ea777.md @@ -0,0 +1,47 @@ +--- +title: På rull +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://pa-rull.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 2985d122209365531bfd0ed7a24ea777 + websites: + https://pa-rull.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - packning + relme: + https://enteringthefuture.blogspot.com/: true + https://pa-rull.blogspot.com/: true + https://pinkunicornblog.blogspot.com/: true + https://suweedennoburogu.blogspot.com/: true + https://www.blogger.com/profile/00056334737313092043: true + last_post_title: Två dagar och många mil + last_post_description: Måndag kväll var vår deadline då vi var tvungna att vara + hemma eftersom vi ska få solpaneler monterade på tisdag. Det innebar att vi hade + två dagar på oss att köra från Krakow till + last_post_date: "2024-07-08T19:42:00Z" + last_post_link: https://pa-rull.blogspot.com/2024/07/tva-dagar-och-manga-mil.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 034e2cd4e65086b8d9a7a17f96ee2d69 + score_criteria: + cats: 1 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 11 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-29879d7fc2792a2d5e30b7b801db9e31.md b/content/discover/feed-29879d7fc2792a2d5e30b7b801db9e31.md deleted file mode 100644 index ab68f2c37..000000000 --- a/content/discover/feed-29879d7fc2792a2d5e30b7b801db9e31.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Bruce Lawson -date: "1970-01-01T00:00:00Z" -description: Public posts from @brucelawson@vivaldi.net -params: - feedlink: https://social.vivaldi.net/@brucelawson.rss - feedtype: rss - feedid: 29879d7fc2792a2d5e30b7b801db9e31 - websites: - https://social.vivaldi.net/@brucelawson: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://cruellestmonths.com/: false - https://www.brucelawson.co.uk/: false - https://www.linkedin.com/in/bruce-lawson-34b44/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-29a041925e05359ea1bc192e1ba35af6.md b/content/discover/feed-29a041925e05359ea1bc192e1ba35af6.md new file mode 100644 index 000000000..bed2fe2af --- /dev/null +++ b/content/discover/feed-29a041925e05359ea1bc192e1ba35af6.md @@ -0,0 +1,48 @@ +--- +title: Andrew's blog +date: "2022-10-23T05:55:07Z" +description: This is a blog, it is it is. +params: + feedlink: https://blog.etc.gen.nz/feeds/index.rss2 + feedtype: rss + feedid: 29a041925e05359ea1bc192e1ba35af6 + websites: + https://blog.etc.gen.nz/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - catalystcloud + - geek + - linux + - openstack + relme: + https://blog.etc.gen.nz/: true + last_post_title: Let's Encrypt with Octavia in OpenStack + last_post_description: "" + last_post_date: "2022-10-23T05:09:00Z" + last_post_link: https://blog.etc.gen.nz/archives/135-Lets-Encrypt-with-Octavia-in-OpenStack.html + last_post_categories: + - catalystcloud + - geek + - linux + - openstack + last_post_language: "" + last_post_guid: 89d44cc8caa20fa4d2ef0396df30990e + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-29a27d954884cc027e3cad8498eb4150.md b/content/discover/feed-29a27d954884cc027e3cad8498eb4150.md deleted file mode 100644 index ba5a4cc5f..000000000 --- a/content/discover/feed-29a27d954884cc027e3cad8498eb4150.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Decentralized Thoughts -date: "1970-01-01T00:00:00Z" -description: Decentralized thoughts about decentralization -params: - feedlink: https://decentralizedthoughts.github.io/feed.xml - feedtype: rss - feedid: 29a27d954884cc027e3cad8498eb4150 - websites: - https://decentralizedthoughts.github.io/: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: [] - relme: {} - last_post_title: 'Sailfish: Improving the Latency of DAG-based BFT' - last_post_description: In this blog post, we will explain the core ideas behind - Sailfish, a latency-efficient DAG-based protocol. In essence, Sailfish is a reliable-broadcast - (RBC) based DAG protocol that supports leaders - last_post_date: "2024-05-23T13:05:00-04:00" - last_post_link: https://decentralizedthoughts.github.io/2024-05-23-sailfish/ - last_post_categories: [] - last_post_guid: 59e1e2dd48e003309585cc404af47c71 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-29c7e8897201988a49e44e9ab9e45389.md b/content/discover/feed-29c7e8897201988a49e44e9ab9e45389.md new file mode 100644 index 000000000..fbde2f0ca --- /dev/null +++ b/content/discover/feed-29c7e8897201988a49e44e9ab9e45389.md @@ -0,0 +1,40 @@ +--- +title: Exploring Painting +date: "1970-01-01T00:00:00Z" +description: A beginner artist explores painting +params: + feedlink: https://exploringpainting.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 29c7e8897201988a49e44e9ab9e45389 + websites: + https://exploringpainting.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://exploringpainting.blogspot.com/: true + last_post_title: Summer Time. Acrylics on canvas. + last_post_description: "" + last_post_date: "2021-08-20T22:06:00Z" + last_post_link: https://exploringpainting.blogspot.com/2021/08/summer-time-acrylics-on-canvas.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 3b14240d2251ea9be791c6d0a715bb20 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-29e570827cf8d371bf5233fc6f401e24.md b/content/discover/feed-29e570827cf8d371bf5233fc6f401e24.md new file mode 100644 index 000000000..6ce6ba24a --- /dev/null +++ b/content/discover/feed-29e570827cf8d371bf5233fc6f401e24.md @@ -0,0 +1,50 @@ +--- +title: Tim Retout +date: "1970-01-01T00:00:00Z" +description: Recent content on Tim Retout +params: + feedlink: https://retout.co.uk/index.xml + feedtype: rss + feedid: 29e570827cf8d371bf5233fc6f401e24 + websites: + https://retout.co.uk/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://github.com/timretout: true + https://github.com/timretout/: true + https://hachyderm.io/@timretout: true + https://retout.co.uk/: true + last_post_title: seL4 Microkit Tutorial + last_post_description: |- + Recently I revisited my previous + interest in + seL4 - a fast, highly assured operating + system microkernel for building secure systems. + The seL4 Microkit + tutorial + uses a simple Wordle game example to + last_post_date: "2024-04-29T22:02:25+01:00" + last_post_link: https://retout.co.uk/2024/04/29/sel4-microkit-tutorial/ + last_post_categories: [] + last_post_language: "" + last_post_guid: a9789576028d458337114d0b324abb6e + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-29f6c298c8dcfbcba3f02f6bd79e3a60.md b/content/discover/feed-29f6c298c8dcfbcba3f02f6bd79e3a60.md new file mode 100644 index 000000000..c7bd74edb --- /dev/null +++ b/content/discover/feed-29f6c298c8dcfbcba3f02f6bd79e3a60.md @@ -0,0 +1,45 @@ +--- +title: Comments for Librarian of Things +date: "1970-01-01T00:00:00Z" +description: Mita Williams. Her blog. +params: + feedlink: https://librarian.aedileworks.com/comments/feed/ + feedtype: rss + feedid: 29f6c298c8dcfbcba3f02f6bd79e3a60 + websites: + https://librarian.aedileworks.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://librarian.aedileworks.com/: true + https://social.coop/@copystar: true + https://www.uwindsor.ca/law/library/mita_williams_law_library: true + last_post_title: 'Comment on You don’t hate AI; You hate… : a collection by Collaborative + Intelligence with Scholars Portal – Librarian of Things' + last_post_description: '[…] in another post, “You don’t hate AI, you hate dot dot + dot” I published a list of concerns that might underlie many of our collective + fears when we say that […]' + last_post_date: "2024-05-02T17:46:26Z" + last_post_link: https://librarian.aedileworks.com/2024/01/30/you-dont-hate-ai-you-hate-a-collection/#comment-3082 + last_post_categories: [] + last_post_language: "" + last_post_guid: 9d15fcd2ee2a484dc0e7c0dd56681003 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2a144aabcaa443197e3dc09966087e9a.md b/content/discover/feed-2a144aabcaa443197e3dc09966087e9a.md new file mode 100644 index 000000000..fc8abf9b4 --- /dev/null +++ b/content/discover/feed-2a144aabcaa443197e3dc09966087e9a.md @@ -0,0 +1,109 @@ +--- +title: Eclipse RCP +date: "2024-07-05T23:51:36-06:00" +description: "" +params: + feedlink: https://richclientplatform.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 2a144aabcaa443197e3dc09966087e9a + websites: + https://richclientplatform.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - AbstractUIPlugin + - BIRT + - Image + - ImageData + - ImageRegistry + - SWT.DOUBLE_BUFFERED + - TPTP + - action + - actionset + - animal house + - article + - blog + - books + - break point + - cheat sheet + - cheatsheet + - cnf + - command + - common navigator framework + - double buffered + - dynamic help + - eclipse ide + - eclipse rcp + - editor + - europa + - extension + - go into + - go up + - graphics + - handler + - help + - high performance + - ibm + - initializeImageRegistry + - ipe + - java + - learn + - linux + - log4j + - logging + - lotus expeditor + - lotus symphony + - oil and gas industry + - org.eclipse.ui.menus + - plugin + - postgres + - problem + - rendering + - report + - save + - seismic + - shutdown + - signal 15 + - sigterm + - soa + - sourceforge + - sql + - swt + - thread + - tracing + - user assistance + - view + - windows + relme: + https://richclientplatform.blogspot.com/: true + https://www.blogger.com/profile/01188144177878844017: true + last_post_title: Got a bug? Who ya gonna call? + last_post_description: "" + last_post_date: "2009-04-04T10:40:29-06:00" + last_post_link: https://richclientplatform.blogspot.com/2009/04/got-bug-who-ya-gonna-call.html + last_post_categories: + - eclipse ide + - eclipse rcp + - log4j + - logging + - postgres + last_post_language: "" + last_post_guid: 8ef13e53f41d76d5025ee2b91689f01e + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2a21b8e739bdf0ebf3a771b247418b2b.md b/content/discover/feed-2a21b8e739bdf0ebf3a771b247418b2b.md index 18881e850..2907c674d 100644 --- a/content/discover/feed-2a21b8e739bdf0ebf3a771b247418b2b.md +++ b/content/discover/feed-2a21b8e739bdf0ebf3a771b247418b2b.md @@ -1,6 +1,6 @@ --- title: Joel's Log Files -date: "2024-06-01T22:40:20-06:00" +date: "2024-07-01T23:19:54-06:00" description: "" params: feedlink: https://joelchrono.xyz/feed.xml @@ -12,38 +12,49 @@ params: blogrolls: [] recommended: [] recommender: - - https://chrisburnell.com/feed.xml - - https://jlelse.blog/.min.rss - - https://jlelse.blog/.rss - - https://jlelse.blog/index.xml + - https://taonaw.com/categories/emacs-org-mode/feed.xml + - https://taonaw.com/feed.xml + - https://taonaw.com/podcast.xml categories: - - gaming - - reading - anime + - gaming - manga + - monthly + - movies + - podcasts + - review relme: https://fosstodon.org/@joel: true - last_post_title: May 2024 Summary - last_post_description: Here's a recap of what I enjoyed doing during the month of - May! - last_post_date: "2024-06-01T07:34:09-06:00" - last_post_link: https://joelchrono.xyz/blog/may-2024-summary/ + https://joelchrono.xyz/: true + https://joelchrono.xyz/contact: true + last_post_title: June 2024 Summary + last_post_description: Here is what I did during the month of June! + last_post_date: "2024-07-01T20:12:49-06:00" + last_post_link: https://joelchrono.xyz/blog/june-2024-summary/ last_post_categories: - - gaming - - reading - anime + - gaming - manga - last_post_guid: 53b93663175637e4c44a5bc14a105eff + - monthly + - movies + - podcasts + - review + last_post_language: "" + last_post_guid: d829d697e955e26284427eedf2ca1e3f score_criteria: cats: 0 description: 0 + feedlangs: 0 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-2a2df995bf4c852c8b84a32b34634f6f.md b/content/discover/feed-2a2df995bf4c852c8b84a32b34634f6f.md deleted file mode 100644 index 25b1a5384..000000000 --- a/content/discover/feed-2a2df995bf4c852c8b84a32b34634f6f.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Rachel Andrew -date: "1970-01-01T00:00:00Z" -description: Doing stuff on the web since 1996. -params: - feedlink: https://rachelandrew.co.uk/feed/ - feedtype: rss - feedid: 2a2df995bf4c852c8b84a32b34634f6f - websites: - https://rachelandrew.co.uk/: true - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: - - Web stuff - - css - - standards - relme: {} - last_post_title: Masonry and reading order - last_post_description: I recently wrote a post about the CSS masonry proposal on - the Chrome for Developers blog. I was keen not to muddy the waters with anything - that wasn’t the main point of that post—which was - last_post_date: "2024-05-26T18:54:29Z" - last_post_link: https://rachelandrew.co.uk/archives/2024/05/26/masonry-and-reading-order/ - last_post_categories: - - Web stuff - - css - - standards - last_post_guid: e5600d23044d323a3e9423173209dd41 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 16 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2a374a26450ef11123bb519daeeb44a2.md b/content/discover/feed-2a374a26450ef11123bb519daeeb44a2.md new file mode 100644 index 000000000..c882ba7d1 --- /dev/null +++ b/content/discover/feed-2a374a26450ef11123bb519daeeb44a2.md @@ -0,0 +1,67 @@ +--- +title: Life with LibreOffice,Ubuntu and Printing +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://naruoga-en.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 2a374a26450ef11123bb519daeeb44a2 + websites: + https://naruoga-en.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - COSCUP + - DFD2015 + - Debian + - FUDCON + - Fedora + - Free Software + - GNOME + - JA Fukuoka + - LbireOffice Asia Conference + - LibreOffice + - LibreOffice Conference 2014 + - LibreOffice Conference 2015 + - LibreOffice Conference 2016 + - LibreOffice Kaigi + - MongoDB + - OSS + - Open Source Conference + - Tokushima + - event + - openSUSE + - openSUSE Asia Summit + relme: + https://naruoga-en.blogspot.com/: true + https://www.blogger.com/profile/05753854320518471520: true + last_post_title: LOUCA23 (LibreOffice Conference Asia x UbuCon Asia 2023) + last_post_description: Long time no see, readers!  Very sorry for my laziness.I + attended LibreOffice Conference Asia x UbuCon Asia 2023 (LOUCA23) in Surakarta, + Indonesia, on October 7~8.This was the second time + last_post_date: "2023-10-27T12:34:00Z" + last_post_link: https://naruoga-en.blogspot.com/2023/10/louca23-libreoffice-conference-asia-x.html + last_post_categories: + - LibreOffice + - OSS + - event + last_post_language: "" + last_post_guid: efc5f56349f39c3ff8e6b960666c8e91 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2a3f4c0c7e2773c0b27e9addbe3c9969.md b/content/discover/feed-2a3f4c0c7e2773c0b27e9addbe3c9969.md deleted file mode 100644 index c423c197e..000000000 --- a/content/discover/feed-2a3f4c0c7e2773c0b27e9addbe3c9969.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Zugpost -date: "1970-01-01T00:00:00Z" -description: Public posts from @zugpost@mastodon.social -params: - feedlink: https://mastodon.social/@zugpost.rss - feedtype: rss - feedid: 2a3f4c0c7e2773c0b27e9addbe3c9969 - websites: - https://mastodon.social/@zugpost: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://ko-fi.com/zugpost: false - https://zugpost.org/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2a45eb773f820fa7b0b689d4d2f8c63f.md b/content/discover/feed-2a45eb773f820fa7b0b689d4d2f8c63f.md index f1a01eb88..2d91f2d31 100644 --- a/content/discover/feed-2a45eb773f820fa7b0b689d4d2f8c63f.md +++ b/content/discover/feed-2a45eb773f820fa7b0b689d4d2f8c63f.md @@ -16,25 +16,30 @@ params: categories: - 2024 Campaign relme: {} - last_post_title: Jamaal Bowman Loses Support of Ex-Colleague - last_post_description: “Roughly four years ago, Mondaire Jones and Jamaal Bowman - made history together. Young, left-leaning Democrats, they won hard-fought primaries - in neighboring districts to become the first Black men - last_post_date: "2024-06-04T11:41:45Z" - last_post_link: https://politicalwire.com/2024/06/04/jamaal-bowman-loses-support-of-ex-colleague/ + last_post_title: Biden’s Fundraising Faces New Hurdles + last_post_description: “President Joe Biden’s fundraising operation started showing + cracks in it’s once formidable armor, almost 10 days after his disastrous presidential + debate performance,” CNBC reports. “Some + last_post_date: "2024-07-08T22:21:34Z" + last_post_link: https://politicalwire.com/2024/07/08/bidens-fundraising-faces-new-hurdles/ last_post_categories: - 2024 Campaign - last_post_guid: cf4211600136d99799e56fe75aeb1faf + last_post_language: "" + last_post_guid: 3417924ec63a9a4d6051162c060f7639 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 14 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-2a4a9bc640b7cadc97e3e05bb98c7754.md b/content/discover/feed-2a4a9bc640b7cadc97e3e05bb98c7754.md new file mode 100644 index 000000000..9957dcb24 --- /dev/null +++ b/content/discover/feed-2a4a9bc640b7cadc97e3e05bb98c7754.md @@ -0,0 +1,245 @@ +--- +title: OSGi Blog +date: "1970-01-01T00:00:00Z" +description: The Dynamic Module System for Java +params: + feedlink: https://blog.osgi.org/feeds/posts/default?alt=rss + feedtype: rss + feedid: 2a4a9bc640b7cadc97e3e05bb98c7754 + websites: + https://blog.osgi.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Adobe + - Amsterdam + - BG-JUG + - Berlin Brandenburg JUG + - Berlin JUG + - BoF + - Bosch + - Bulgaria + - Bulgarian JUG + - CeBIT + - Chicago JUG. Microservices + - China + - China OSGi Users' Forum. + - Condition + - DS + - DevCon + - Eclipse Community Day + - EclipseCon Europe + - Edge Computing + - Eurotech + - Event Processing + - Everit + - Expert Group + - Gecko.io + - Germany + - Ghent + - Guangzhou + - Hannover + - Hanover + - Huawei + - IIoT + - Industrial IoT + - Industry 4.0 + - InfoQ + - Internet of Things + - IoT + - IoT Hessen + - IoT Tech Expo + - IoT. Shenzhen + - JPMS + - JSR 376 + - JUG Thüringen. Java User Group + - Java 9 + - Java SE 9 + - Jena + - Jforum + - Liferay + - Liferay. Liferay DEVCON + - M2M + - MODCONF + - Makewave + - Modularity + - OSGi Alliance + - OSGi Community Event + - OSGi Community Event 2018 + - OSGi Expert Groups + - OSGi IoT demo + - OSGi Patterns + - OSGi Quickstart + - OSGi R6 + - OSGi R7 + - OSGi Users Forum Germany + - OSGi and Robots + - OSGi meetup + - Paremus + - ProSyst + - Push Streams + - QCon + - REST + - Realtime OSGi + - Release 7 + - Skelmir + - Smart Cities + - Smart Homes + - Sofia + - Start Level + - Stockholm + - Sweden + - aQute + - amqp + - ant + - barcelona jug + - berlin + - bnd + - bndtools + - bretagne + - budapest + - c++ + - cdi + - cep + - cfp + - cloud + - compendium + - component design + - conference + - contracts + - converter + - core + - coupling + - cpeg + - darmstadt + - darmstadt JUG + - declarative services + - deutsche telekom + - distributed computing + - distributed events + - eclipse + - eclipse osgi + - eclipsecon + - eeg + - eeg osgi sca j2ee jee + - ejb + - embedded + - enroute + - enterprise + - enterprise osgi + - events + - exam + - features + - felix + - france + - functional programming + - gateway + - gradle + - hack challenge + - http service + - hungary + - iMinds + - imec + - intellij + - java + - java 17 + - java 7 + - java.util.ServiceLoader + - jcp + - jigsaw + - jlink + - jsr 277 + - jsr 294 + - jsr 299 + - kafka + - karaf + - keynote + - london + - ludwigsburg + - madrid jug + - maven + - messaging + - microservices + - migration + - module system + - modules + - mqtt + - native code + - native-image + - new york + - object oriented + - oo + - osgi + - osgi certification + - osgi connect + - osgi devcon + - osgi developer certification + - osgi enroute + - osgi hibernate felix equinox eclipse knopflerfish sql + - osgi qcon eclipsecon interface21 grails hibernate quartz + - osgi r8 + - osgi tooling + - penrose + - pojosr + - portland + - portland jug + - pushstreams + - qconnewyork + - qivicon + - r7 + - r8 + - release + - repository + - requirements + - sao paulo + - scala + - serviceloader + - servlet + - soa + - software + - software ag + - specification + - standards + - structured + - summer school + - summit + - superpackages + - tccl + - threadcontextclassloader + - tycho + - webinar + - webservices + - workinggroup + relme: + https://blog.osgi.org/: true + last_post_title: BND Tools 7.0 Release Candidate 1 is available + last_post_description: "" + last_post_date: "2023-09-13T12:19:00Z" + last_post_link: https://blog.osgi.org/2023/09/bnd-tools-70-release-candidate-1-is.html + last_post_categories: + - bnd + - bndtools + - eclipse + - java + - java 17 + - maven + last_post_language: "" + last_post_guid: 328cdfdd3a12c45325c5303fbd73bfc2 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2a4be012dbaa499fe5a6f696dc37a197.md b/content/discover/feed-2a4be012dbaa499fe5a6f696dc37a197.md new file mode 100644 index 000000000..e8273c539 --- /dev/null +++ b/content/discover/feed-2a4be012dbaa499fe5a6f696dc37a197.md @@ -0,0 +1,47 @@ +--- +title: Prosody In Google Summer of Code +date: "1970-01-01T00:00:00Z" +description: The road to build a plugin installer is ahead! +params: + feedlink: https://gsoc-prosody-2019.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 2a4be012dbaa499fe5a6f696dc37a197 + websites: + https://gsoc-prosody-2019.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Brainstorming + - Weekly report + - ZeroBrane + - prosody + - prosodyctl + relme: + https://gsoc-prosody-2019.blogspot.com/: true + last_post_title: Final GSoC Report - Prosody Plugin Installer! + last_post_description: "Here we are. This post is the conclusion of the official + GSoC journey with prosody! Check out below what this project is, what it is currently + doing and how things can keep on going! \n\nFirst of all," + last_post_date: "2019-08-26T17:56:00Z" + last_post_link: https://gsoc-prosody-2019.blogspot.com/2019/08/final-gsoc-report-prosody-plugin.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 431438dff55caa0804c01f9d7bd148af + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2a7a9560f9363d1fa8f24fbf3b5eac52.md b/content/discover/feed-2a7a9560f9363d1fa8f24fbf3b5eac52.md new file mode 100644 index 000000000..b21334ccf --- /dev/null +++ b/content/discover/feed-2a7a9560f9363d1fa8f24fbf3b5eac52.md @@ -0,0 +1,139 @@ +--- +title: Fridge and Freezer. +date: "2024-03-08T02:16:31-08:00" +description: Freezer and fridge benefits. +params: + feedlink: https://shopeetotolinkbaru.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 2a7a9560f9363d1fa8f24fbf3b5eac52 + websites: + https://shopeetotolinkbaru.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - refrigerator and its freez + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Fridge Vs Freezer + last_post_description: "" + last_post_date: "2021-10-17T04:35:56-07:00" + last_post_link: https://shopeetotolinkbaru.blogspot.com/2021/10/fridge-vs-freezer.html + last_post_categories: + - refrigerator and its freez + last_post_language: "" + last_post_guid: 8d3cc272b6746db7b7925056d976f1bf + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2a88c3176503eddceab9617d1f138ec5.md b/content/discover/feed-2a88c3176503eddceab9617d1f138ec5.md index 671133047..69d058b89 100644 --- a/content/discover/feed-2a88c3176503eddceab9617d1f138ec5.md +++ b/content/discover/feed-2a88c3176503eddceab9617d1f138ec5.md @@ -15,9 +15,7 @@ params: categories: [] relme: https://github.com/johnonolan: true - https://mastodon.xyz/johnonolan: false - https://threads.net/johnonolan: false - https://twitter.com/johnonolan: false + https://john.onolan.org/: true last_post_title: ProNotes last_post_description: If you use Apple Notes a lot - this (free!) app/plugin for it makes it 1,000% more useful and usable. It adds a formatting toolbar and inline @@ -25,17 +23,22 @@ params: last_post_date: "2024-04-17T01:25:07Z" last_post_link: https://john.onolan.org/pronotes/ last_post_categories: [] + last_post_language: "" last_post_guid: 7c8e63e016483e279dab5c4e9fb87556 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-2a9e4375ead0b28d31f6d7bcca547641.md b/content/discover/feed-2a9e4375ead0b28d31f6d7bcca547641.md new file mode 100644 index 000000000..b5804e0a4 --- /dev/null +++ b/content/discover/feed-2a9e4375ead0b28d31f6d7bcca547641.md @@ -0,0 +1,138 @@ +--- +title: Toothpast for teeth +date: "2024-03-08T15:39:14-08:00" +description: Keep visiting to my blogspot page and get all information about chiclets + teeth. +params: + feedlink: https://noproblem44.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 2a9e4375ead0b28d31f6d7bcca547641 + websites: + https://noproblem44.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Have delightful teeth + last_post_description: "" + last_post_date: "2022-02-14T04:46:52-08:00" + last_post_link: https://noproblem44.blogspot.com/2022/02/have-delightful-teeth.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 4f55c0617421aace5e4ce0b65537311a + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2aa1565cc257b254e965417a305e774a.md b/content/discover/feed-2aa1565cc257b254e965417a305e774a.md deleted file mode 100644 index cefc31618..000000000 --- a/content/discover/feed-2aa1565cc257b254e965417a305e774a.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: 'Caleb Hearth :d6:' -date: "1970-01-01T00:00:00Z" -description: Public posts from @caleb@calebhearth.com -params: - feedlink: https://pub.calebhearth.com/@caleb.rss - feedtype: rss - feedid: 2aa1565cc257b254e965417a305e774a - websites: - https://pub.calebhearth.com/@caleb: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://calebhearth.com/: true - https://calebhearth.com/links: true - https://twitch.tv/calebhearth: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2aaeb19166b19de3392f2a9a3863cb96.md b/content/discover/feed-2aaeb19166b19de3392f2a9a3863cb96.md new file mode 100644 index 000000000..027ce8483 --- /dev/null +++ b/content/discover/feed-2aaeb19166b19de3392f2a9a3863cb96.md @@ -0,0 +1,44 @@ +--- +title: Summers on Haskell and {Eclipse,Emacs} +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://serras-haskell-gsoc.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 2aaeb19166b19de3392f2a9a3863cb96 + websites: + https://serras-haskell-gsoc.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://serras-haskell-gsoc.blogspot.com/: true + https://www.blogger.com/profile/07270771729166536980: true + https://youngracketeer.blogspot.com/: true + last_post_title: Using Emacs for Haskell development + last_post_description: In the last months, the toolchain for using Haskell within + Emacs has changed a lot, and has become a lot better. Apart from my additions + to ghc-mod, new autocompletion packages such as company-ghc + last_post_date: "2014-08-24T10:48:00Z" + last_post_link: https://serras-haskell-gsoc.blogspot.com/2014/08/using-emacs-for-haskell-development.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 63ccfe7a70b54a26d7cb7c2345209eef + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2ac4fb7ade825fbe57344a1c150fb8f2.md b/content/discover/feed-2ac4fb7ade825fbe57344a1c150fb8f2.md deleted file mode 100644 index 657fd7b10..000000000 --- a/content/discover/feed-2ac4fb7ade825fbe57344a1c150fb8f2.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Reacties voor STORYmin.es -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://storymin.es/comments/feed/ - feedtype: rss - feedid: 2ac4fb7ade825fbe57344a1c150fb8f2 - websites: - https://storymin.es/: true - https://storymin.es/abonneer/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Reactie op Waarom stijgen de huizenprijzen? door Marco - last_post_description: |- - In antwoord op Maarten. - - Sluit ik me geheel bij aan :) Dit is inderdaad echt materiaal voro de Correspondent - last_post_date: "2024-05-27T16:33:56Z" - last_post_link: https://storymin.es/2021/11/waarom-stijgen-de-huizenprijzen/#comment-12182 - last_post_categories: [] - last_post_guid: a70f5838f41ba3e1a8d2df23f377c38e - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2ad5ac43c5351059805272eb64c95828.md b/content/discover/feed-2ad5ac43c5351059805272eb64c95828.md new file mode 100644 index 000000000..564559521 --- /dev/null +++ b/content/discover/feed-2ad5ac43c5351059805272eb64c95828.md @@ -0,0 +1,44 @@ +--- +title: Ivan Molodetskikh activity +date: "2024-04-25T04:47:04Z" +description: "" +params: + feedlink: https://gitlab.gnome.org/YaLTeR.atom + feedtype: atom + feedid: 2ad5ac43c5351059805272eb64c95828 + websites: + https://gitlab.gnome.org/YaLTeR: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://bxt.rs/: true + https://github.com/YaLTeR: true + https://gitlab.gnome.org/YaLTeR: true + https://mastodon.online/@YaLTeR: true + last_post_title: 'Ivan Molodetskikh commented on issue #76 at Ivan Molodetskikh + / Video Trimmer' + last_post_description: Do you mind attaching the video here if you can share it? + last_post_date: "2024-04-25T04:47:04Z" + last_post_link: https://gitlab.gnome.org/YaLTeR/video-trimmer/-/issues/76 + last_post_categories: [] + last_post_language: "" + last_post_guid: 3281fe2dc74590eb6047cc5144a27a30 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2adadec57052dd4bf6e471fd4f875a79.md b/content/discover/feed-2adadec57052dd4bf6e471fd4f875a79.md new file mode 100644 index 000000000..2c6324953 --- /dev/null +++ b/content/discover/feed-2adadec57052dd4bf6e471fd4f875a79.md @@ -0,0 +1,49 @@ +--- +title: RichieSam's Adventures in Code-ville +date: "2024-07-05T02:07:00-05:00" +description: "" +params: + feedlink: https://richiesams.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 2adadec57052dd4bf6e471fd4f875a79 + websites: + https://richiesams.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - General + - HLSL + - Math Woes + - Path Tracing + - ScummVM + - The Halfling Project + relme: + https://richiesams.blogspot.com/: true + https://www.blogger.com/profile/11068267631031438940: true + last_post_title: Woes of the number 1.0 + last_post_description: "" + last_post_date: "2016-07-26T12:29:33-05:00" + last_post_link: https://richiesams.blogspot.com/2016/03/woes-of-number-10.html + last_post_categories: + - Math Woes + - Path Tracing + last_post_language: "" + last_post_guid: 974744b29f9d69502382897e93c983eb + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2adc76c88f16033c4d011c6aafc9c1c5.md b/content/discover/feed-2adc76c88f16033c4d011c6aafc9c1c5.md deleted file mode 100644 index 475336780..000000000 --- a/content/discover/feed-2adc76c88f16033c4d011c6aafc9c1c5.md +++ /dev/null @@ -1,50 +0,0 @@ ---- -title: Books • Cory Dransfeldt -date: "1970-01-01T00:00:00Z" -description: Books I'm currently reading. -params: - feedlink: https://feedpress.me/coryd-books - feedtype: rss - feedid: 2adc76c88f16033c4d011c6aafc9c1c5 - websites: - https://coryd.dev/: false - https://coryd.dev/contact: false - https://coryd.dev/feeds: true - https://coryd.dev/links: false - https://coryd.dev/music: false - https://coryd.dev/now: false - https://coryd.dev/webrings: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://buymeacoffee.com/cory: false - https://coryd.dev/contact: false - https://coryd.dev/webrings: false - https://github.com/cdransf: true - https://listenbrainz.org/user/cdransf/: false - https://social.lol/@cory: true - https://www.instapaper.com/p/coryd: false - https://www.npmjs.com/~cdransf: false - last_post_title: "More Fun in the New World\n \n (⭐️⭐️⭐️⭐️)" - last_post_description: Sequel to Grammy-nominated bestseller Under the Big Black - Sun, continuing the up-close and personal account of the L.A. punk scene, with - 50 rare photos Picking up where Under the Big Black Sun left - last_post_date: "2024-05-30T00:00:00Z" - last_post_link: https://feedpress.me/link/23797/16699247/0306922126 - last_post_categories: [] - last_post_guid: fb9afe70ce06871b1f55a8ee239efb37 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2afe5b6014f0a15707026ad7b93ad545.md b/content/discover/feed-2afe5b6014f0a15707026ad7b93ad545.md deleted file mode 100644 index 8714012bb..000000000 --- a/content/discover/feed-2afe5b6014f0a15707026ad7b93ad545.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: James Sinclair -date: "1970-01-01T00:00:00Z" -description: The enchanted electrical website of Dr. Sinclair -params: - feedlink: https://jrsinclair.com/index.rss - feedtype: rss - feedid: 2afe5b6014f0a15707026ad7b93ad545 - websites: - https://jrsinclair.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://ttntm.me/blog/feed.xml - - https://ttntm.me/everything.xml - - https://ttntm.me/likes/feed.xml - categories: [] - relme: - https://github.com/jrsinclair: true - https://twitter.com/jrsinclair: false - https://www.goodreads.com/jrsinclair: true - https://www.linkedin.com/in/jrsinclair/: false - last_post_title: How to consume a paginated API using JavaScript async generators - last_post_description: Generators can be powerful tools for efficient data processing. - But things get a bit tricky when we add asynchronous calls into the mix. Asynchronous - generators, however, come to the rescue by - last_post_date: "2023-06-26T09:00:00Z" - last_post_link: https://jrsinclair.com/articles/2023/how-to-consume-a-paginated-api-using-javascript-async-generators/ - last_post_categories: [] - last_post_guid: c6669e512235174fa9c554148b9db372 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 15 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2b106a29d8af2630f4b116689fec3666.md b/content/discover/feed-2b106a29d8af2630f4b116689fec3666.md new file mode 100644 index 000000000..3d1c65c66 --- /dev/null +++ b/content/discover/feed-2b106a29d8af2630f4b116689fec3666.md @@ -0,0 +1,46 @@ +--- +title: Adventures of a PHD Student +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://adventuresofamathphd.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 2b106a29d8af2630f4b116689fec3666 + websites: + https://adventuresofamathphd.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://adventuresofamathphd.blogspot.com/: true + https://extendingmatroidfunctionality.blogspot.com/: true + https://taraadrift.blogspot.com/: true + https://whenivisitedabaptistchurch.blogspot.com/: true + https://www.blogger.com/profile/03187790486376807341: true + last_post_title: Update + last_post_description: I finished the first year, passed the qualls - two on the + first go and the last on the second - and the general, and started research with + James Oxley. This summer, I'll be working on Google Summer + last_post_date: "2016-05-09T16:57:00Z" + last_post_link: https://adventuresofamathphd.blogspot.com/2016/05/update.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 6d918036bb51421211ac397833c30155 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2b23f33f3e3b6ddcbdf9e7f695237696.md b/content/discover/feed-2b23f33f3e3b6ddcbdf9e7f695237696.md deleted file mode 100644 index 27cb0e2fc..000000000 --- a/content/discover/feed-2b23f33f3e3b6ddcbdf9e7f695237696.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Matthew Lyon -date: "1970-01-01T00:00:00Z" -description: Public posts from @mattly@social.bitwig.community -params: - feedlink: https://social.bitwig.community/@mattly.rss - feedtype: rss - feedid: 2b23f33f3e3b6ddcbdf9e7f695237696 - websites: - https://social.bitwig.community/@mattly: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://hachyderm.io/@mattly: true - https://lyonheart.us/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2b342a78a44a4664d94de1ec14e54e4f.md b/content/discover/feed-2b342a78a44a4664d94de1ec14e54e4f.md index 6cdfb3146..7257d9408 100644 --- a/content/discover/feed-2b342a78a44a4664d94de1ec14e54e4f.md +++ b/content/discover/feed-2b342a78a44a4664d94de1ec14e54e4f.md @@ -10,40 +10,41 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: + - cthulhu - pantomime - - someone dies inside - - video games + - romance relme: {} - last_post_title: Video Games Wet Dreams - last_post_description: Here is a comic “inspired” by the current state of the video - games industry, and specifically Microsoft’s boneheaded decision to close several - studios, amongst them Tango Gameworks and Arkane - last_post_date: "2024-05-20T22:00:48Z" - last_post_link: https://www.optipess.com/comic/video-games-wet-dreams/ + last_post_title: Cthulhu & Cthulia + last_post_description: 'Here is a comic! It went through countless variations for + the final panel. I ended up on the one I liked the most, AND it was the easiest + alternative to draw. Speaking of cosmic horrors: I played' + last_post_date: "2024-06-23T22:00:01Z" + last_post_link: https://www.optipess.com/comic/cthulhu-cthulia/ last_post_categories: + - cthulhu - pantomime - - someone dies inside - - video games - last_post_guid: 8da4432e467e0acb75e17be4389347c3 + - romance + last_post_language: "" + last_post_guid: cce7baf98c7c26000fbd72b32afa8ad1 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 14 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-2b5abb56a1126c9296cffdb998b59fc3.md b/content/discover/feed-2b5abb56a1126c9296cffdb998b59fc3.md index a6d50365c..97b32aaa4 100644 --- a/content/discover/feed-2b5abb56a1126c9296cffdb998b59fc3.md +++ b/content/discover/feed-2b5abb56a1126c9296cffdb998b59fc3.md @@ -13,23 +13,30 @@ params: recommender: [] categories: [] relme: - https://feldfoto.com/: false - last_post_title: Two Lighthouses - last_post_description: Two Lighthouses - last_post_date: "2024-06-04T13:21:12Z" - last_post_link: https://glass.photo/martinfeld/6TgH4gsMikc6rAIUoPy9ca + https://glass.photo/martinfeld: true + last_post_title: Our king parrot friend returns in low light outside of our bathroom + window. + last_post_description: Our king parrot friend returns in low light outside of our + bathroom window. + last_post_date: "2024-07-07T12:48:34Z" + last_post_link: https://glass.photo/martinfeld/nlilPm2EryqMzWatLkUur last_post_categories: [] - last_post_guid: 15d8cec7aa4b3f8e9af788fb37e451ef + last_post_language: "" + last_post_guid: ee71db4426ec304ef573f91ed387632d score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 9 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-2b5e395015394cc9824cc052dfc20daa.md b/content/discover/feed-2b5e395015394cc9824cc052dfc20daa.md deleted file mode 100644 index 9dd5c46d7..000000000 --- a/content/discover/feed-2b5e395015394cc9824cc052dfc20daa.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Alan Jacobs -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://social.ayjay.org/feed.xml - feedtype: rss - feedid: 2b5e395015394cc9824cc052dfc20daa - websites: - https://social.ayjay.org/: true - blogrolls: [] - recommended: [] - recommender: - - https://jabel.blog/feed.xml - - https://jabel.blog/podcast.xml - - https://www.manton.org/feed - - https://www.manton.org/feed.xml - - https://www.manton.org/podcast.xml - categories: [] - relme: - https://instagram.com/ayjay: false - https://micro.blog/ayjay: false - https://twitter.com/ayjay: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2b6430856df13d247048b2bbf17485fa.md b/content/discover/feed-2b6430856df13d247048b2bbf17485fa.md new file mode 100644 index 000000000..c79a4383e --- /dev/null +++ b/content/discover/feed-2b6430856df13d247048b2bbf17485fa.md @@ -0,0 +1,47 @@ +--- +title: Criações Sólidas +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://solidcreations.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 2b6430856df13d247048b2bbf17485fa + websites: + https://solidcreations.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - openscad + - reprapbr + - wiki + relme: + https://solidcreations.blogspot.com/: true + last_post_title: Atualizações no Wiki da RepRapBR + last_post_description: Na medida do possível estou contribuindo com o Wiki do RepRapBR. + É o melhor que eu posso fazer, para tentar ajudar um pouco a comunidade e retribuir + a ajuda que eu tive, e continuo tendo, para + last_post_date: "2012-11-20T01:22:00Z" + last_post_link: https://solidcreations.blogspot.com/2012/11/atualizacoes-no-wiki-da-reprapbr.html + last_post_categories: + - reprapbr + - wiki + last_post_language: "" + last_post_guid: 659b579ba8b04e376697e5fdade2be4b + score_criteria: + cats: 3 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2b950624a258472988b2d52288e5a4fa.md b/content/discover/feed-2b950624a258472988b2d52288e5a4fa.md new file mode 100644 index 000000000..aaced0ca6 --- /dev/null +++ b/content/discover/feed-2b950624a258472988b2d52288e5a4fa.md @@ -0,0 +1,45 @@ +--- +title: Inside Designerator +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://designeratorblog.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 2b950624a258472988b2d52288e5a4fa + websites: + https://designeratorblog.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://deathhasnodominion.blogspot.com/: true + https://designeratorblog.blogspot.com/: true + https://strohlehmholz.blogspot.com/: true + https://www.blogger.com/profile/10055440678413337531: true + last_post_title: Google Code Hosting and Internationalizing + last_post_description: I knew I wanted it simple and without any complications and + Google Code promised just that. To create the SVN based project and commit all + the plugins took very little time. Since I am the team I do + last_post_date: "2011-05-31T18:28:00Z" + last_post_link: https://designeratorblog.blogspot.com/2011/05/google-code-hosting-and.html + last_post_categories: [] + last_post_language: "" + last_post_guid: c3ebe7c3e080990d3eac1eb45b733459 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2ba34f9e6fb1160a657472dc0dc89c6b.md b/content/discover/feed-2ba34f9e6fb1160a657472dc0dc89c6b.md index e0bf92881..c410e815b 100644 --- a/content/discover/feed-2ba34f9e6fb1160a657472dc0dc89c6b.md +++ b/content/discover/feed-2ba34f9e6fb1160a657472dc0dc89c6b.md @@ -13,27 +13,32 @@ params: recommender: [] categories: [] relme: - https://bsd.network/@solene: false - last_post_title: Improve your SSH agent security + https://dataswamp.org/~solene/: true + last_post_title: WireGuard and Linux network namespaces last_post_description: |- 1. Introduction § - If you are using SSH quite often, it is likely you use an SSH agent which stores your private key in memory so you do not have to type your password every time. + This guide explains how to setup a WireGuard tunnel on Linux using a dedicated network namespace so you can choose to run a program on the VPN or over clearnet. - This method is - last_post_date: "2024-05-27T00:00:00Z" - last_post_link: https://dataswamp.org/~solene/2024-05-24-ssh-agent-security-enhancement.html + I have been able + last_post_date: "2024-07-04T00:00:00Z" + last_post_link: https://dataswamp.org/~solene/2024-07-02-linux-vpn-netns.html last_post_categories: [] - last_post_guid: 3bfbab2ec18fe0d3cfcac2ff9d19d2cd + last_post_language: "" + last_post_guid: d2b77688047a7f0b9bd32496ab3213d8 score_criteria: cats: 0 description: 0 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 6 + score: 10 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-2ba9e420d7106a3128b645a135a8885a.md b/content/discover/feed-2ba9e420d7106a3128b645a135a8885a.md new file mode 100644 index 000000000..d2ab3cdda --- /dev/null +++ b/content/discover/feed-2ba9e420d7106a3128b645a135a8885a.md @@ -0,0 +1,61 @@ +--- +title: Weapon versus Armor Class +date: "1970-01-01T00:00:00Z" +description: Inconstant blogger +params: + feedlink: https://frotz.weaponvsac.space/feeds/posts/default?alt=rss + feedtype: rss + feedid: 2ba9e420d7106a3128b645a135a8885a + websites: + https://frotz.weaponvsac.space/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - "1066" + - Anatola + - Annar + - Apollyon 3E + - Basic 3E + - Character + - HMS Apollyon + - Halbardier + - Halberts + - Helmbarten + - RASP + - Savage Worlds + - Shadowrun + - Work In Progress + - prose.sh + relme: + https://frotz.weaponvsac.space/: true + last_post_title: Halbardier Re-spin + last_post_description: (reposted from my frotz.prose.sh blog)Helmbarten is Alex + Schroeder's fantasy take on a Classic Traveller-style game, and I liked it so + much I wanted to build a sci-fi game out of it. Alex and I did + last_post_date: "2023-01-08T05:00:00Z" + last_post_link: https://frotz.weaponvsac.space/2023/01/halbardier-re-spin.html + last_post_categories: + - Halbardier + - Helmbarten + - Work In Progress + - prose.sh + last_post_language: "" + last_post_guid: 6f8077c63fc44605b8ea369f567519d0 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2bb9a445469d53f110e0289908b0bf66.md b/content/discover/feed-2bb9a445469d53f110e0289908b0bf66.md deleted file mode 100644 index b3bcc9e54..000000000 --- a/content/discover/feed-2bb9a445469d53f110e0289908b0bf66.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Erik Visser -date: "1970-01-01T00:00:00Z" -description: Public posts from @erikvisser@mastodon.nl -params: - feedlink: https://mastodon.nl/@erikvisser.rss - feedtype: rss - feedid: 2bb9a445469d53f110e0289908b0bf66 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2bbcf1f19c8c402e624c4668a11624a0.md b/content/discover/feed-2bbcf1f19c8c402e624c4668a11624a0.md new file mode 100644 index 000000000..e1b5faf5e --- /dev/null +++ b/content/discover/feed-2bbcf1f19c8c402e624c4668a11624a0.md @@ -0,0 +1,53 @@ +--- +title: Scriptio Continua +date: "2024-02-03T07:16:55-05:00" +description: Thoughts on software development, Digital Humanities, the ancient world, + and whatever else crosses my radar. All original content herein is licensed under + a Creative Commons Attribution license. +params: + feedlink: https://philomousos.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 2bbcf1f19c8c402e624c4668a11624a0 + websites: + https://philomousos.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - DH + - IDP + - Ruby XSLT + - TEI + - Theory + - balisageConference08 + - data curation + - digital curation + - javascript prototype + - zotero + relme: + https://philomousos.blogspot.com/: true + https://www.blogger.com/profile/05582281819129069158: true + last_post_title: Reminder + last_post_description: "" + last_post_date: "2017-06-02T09:07:57-04:00" + last_post_link: https://philomousos.blogspot.com/2017/06/reminder.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 00cccdab6883e4781dd623766df36692 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2bcea0a7f3b1e9e7e06ee77a987249ca.md b/content/discover/feed-2bcea0a7f3b1e9e7e06ee77a987249ca.md new file mode 100644 index 000000000..c7b64f2f9 --- /dev/null +++ b/content/discover/feed-2bcea0a7f3b1e9e7e06ee77a987249ca.md @@ -0,0 +1,52 @@ +--- +title: blog.meinstrohballenhaus.at +date: "2024-02-19T23:27:28+01:00" +description: Ökologisch und nachhaltig leben +params: + feedlink: https://strohlehmholz.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 2bcea0a7f3b1e9e7e06ee77a987249ca + websites: + https://strohlehmholz.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Design + - Grundbuch + - Kaufvertrag + - Kompost + - Komposttoilette + - Konzept + - Video + relme: + https://deathhasnodominion.blogspot.com/: true + https://designeratorblog.blogspot.com/: true + https://strohlehmholz.blogspot.com/: true + https://www.blogger.com/profile/10055440678413337531: true + last_post_title: Grundbuch und Kaufvertrags Hilfe + last_post_description: "" + last_post_date: "2012-11-22T12:58:27+01:00" + last_post_link: https://strohlehmholz.blogspot.com/2012/11/grundbuch-und-kaufvertrags-hilfe.html + last_post_categories: + - Grundbuch + - Kaufvertrag + last_post_language: "" + last_post_guid: eb54c1a1dae53b9bb34be5e0806c78f2 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2bdcf46255d3e1ab95149c919b2bf588.md b/content/discover/feed-2bdcf46255d3e1ab95149c919b2bf588.md deleted file mode 100644 index 7fd9f22ac..000000000 --- a/content/discover/feed-2bdcf46255d3e1ab95149c919b2bf588.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Aral Balkan -date: "1970-01-01T00:00:00Z" -description: Recent content on Aral Balkan -params: - feedlink: https://ar.al/index.xml - feedtype: rss - feedid: 2bdcf46255d3e1ab95149c919b2bf588 - websites: - https://ar.al/: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: [] - relme: - https://mastodon.ar.al/@aral: true - last_post_title: Small Technology Foundation funding application for NLnet Foundation - NGI Zero Core seventh call - last_post_description: Yesterday, I spent most of the day getting Kitten’s new interactive - shell working over a socket connection (this isn’t trivial if you want your shell - to display Node.js REPL’s preview - last_post_date: "2024-06-01T12:05:43+01:00" - last_post_link: https://ar.al/2024/06/01/small-technology-foundation-funding-application-for-nlnet-foundation-ngi-zero-core-seventh-call/ - last_post_categories: [] - last_post_guid: ddb4a38d3ba2e2b59f965d80ce26594b - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 15 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2bde9638cdf528ba15871854d2c23c7a.md b/content/discover/feed-2bde9638cdf528ba15871854d2c23c7a.md new file mode 100644 index 000000000..ae3c797f1 --- /dev/null +++ b/content/discover/feed-2bde9638cdf528ba15871854d2c23c7a.md @@ -0,0 +1,44 @@ +--- +title: metapython +date: "2024-07-07T13:39:44-07:00" +description: For small bits of advanced Python +params: + feedlink: https://metapython.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 2bde9638cdf528ba15871854d2c23c7a + websites: + https://metapython.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - lhc + - metapython + - python + - python 2 + relme: + https://metapython.blogspot.com/: true + last_post_title: Dyamic Constants. Of the automatic kind + last_post_description: "" + last_post_date: "2013-01-28T14:30:51-08:00" + last_post_link: https://metapython.blogspot.com/2013/01/dyamic-constants-of-automatic-kind.html + last_post_categories: [] + last_post_language: "" + last_post_guid: b88cafb8db8308b5e631dc02a3a1e0fa + score_criteria: + cats: 4 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2beb390861a18a56f6989741c61b3e39.md b/content/discover/feed-2beb390861a18a56f6989741c61b3e39.md index 2c54e83e0..8541abfa0 100644 --- a/content/discover/feed-2beb390861a18a56f6989741c61b3e39.md +++ b/content/discover/feed-2beb390861a18a56f6989741c61b3e39.md @@ -1,6 +1,6 @@ --- title: entropy bound -date: "2024-06-29T17:18:44-04:00" +date: "2024-07-04T02:10:44-04:00" description: physical reflections and refractions at the boundaries of science and culture...but really, things can only get so out of hand. params: @@ -14,23 +14,29 @@ params: recommender: [] categories: [] relme: + https://entropybound.blogspot.com/: true https://www.blogger.com/profile/14862709994959103798: true last_post_title: Milestone last_post_description: "" last_post_date: "2010-10-14T11:41:34-04:00" last_post_link: https://entropybound.blogspot.com/2010/10/milestone.html last_post_categories: [] + last_post_language: "" last_post_guid: 7272fa9210eed9e984e16fe2fcd16daa score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-2bed7b64f98f9277d9a1735d9efe2e87.md b/content/discover/feed-2bed7b64f98f9277d9a1735d9efe2e87.md index 3a65abf68..84c9b94a8 100644 --- a/content/discover/feed-2bed7b64f98f9277d9a1735d9efe2e87.md +++ b/content/discover/feed-2bed7b64f98f9277d9a1735d9efe2e87.md @@ -16,25 +16,30 @@ params: categories: - Podcast relme: {} - last_post_title: '(Podcast) Upgrade 515: The WWDC Keynote Draft 2024' - last_post_description: It’s time for our ninth annual competition regarding what - will happen at Apple’s WWDC keynote! What will be announced? Will it be all AI, - all the time?… - last_post_date: "2024-06-03T21:32:48Z" - last_post_link: https://sixcolors.com/podcast/2024/06/upgrade-515-the-wwdc-keynote-draft-2024/ + last_post_title: '(Podcast) Upgrade 520: Cruel Summer' + last_post_description: There’s more news about Apple’s battles with Epic and the + EU, and Apple tightens its ties with OpenAI, but all of the controversy gets us + thinking about what makes us stay excited about + last_post_date: "2024-07-08T21:04:06Z" + last_post_link: https://sixcolors.com/podcast/2024/07/upgrade-520-cruel-summer/ last_post_categories: - Podcast - last_post_guid: 24047511536db1c13f12bdec8fc20432 + last_post_language: "" + last_post_guid: 41b377cfb1b2d92d5202baeef8395d0d score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 14 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-2bffd6c2298b528b50320cbe73031ea2.md b/content/discover/feed-2bffd6c2298b528b50320cbe73031ea2.md deleted file mode 100644 index efeb40857..000000000 --- a/content/discover/feed-2bffd6c2298b528b50320cbe73031ea2.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: openstack – pleia2's blog -date: "1970-01-01T00:00:00Z" -description: Elizabeth Krumbach Joseph's public journal about open source, mainframes, - beer, travel, pink gadgets and her life near the city where little cable cars climb - halfway to the stars. -params: - feedlink: https://princessleia.com/journal/category/openstack/feed/ - feedtype: rss - feedid: 2bffd6c2298b528b50320cbe73031ea2 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - dcos - - events - - openstack - - tech - - travel - relme: {} - last_post_title: OpenStack Summit and OpenDevConf - last_post_description: Back in May I traveled to Vancouver for the second time in - my life. The first was in 2015 when I was there for an OpenStack Summit, and the - summit brought me back this time, as I was on the program - last_post_date: "2018-06-16T20:14:54Z" - last_post_link: https://princessleia.com/journal/2018/06/openstack-summit-and-opendevconf/ - last_post_categories: - - dcos - - events - - openstack - - tech - - travel - last_post_guid: aa2d3c201ed0433af49ce35bad72b39b - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2c272cf84304d03d3a821083c0dd8e74.md b/content/discover/feed-2c272cf84304d03d3a821083c0dd8e74.md new file mode 100644 index 000000000..bf0267328 --- /dev/null +++ b/content/discover/feed-2c272cf84304d03d3a821083c0dd8e74.md @@ -0,0 +1,44 @@ +--- +title: Riff Blog - Music, sort of. And computing. And ... +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://blog.riff.org/general_feed + feedtype: rss + feedid: 2c272cf84304d03d3a821083c0dd8e74 + websites: + https://blog.riff.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://blog.riff.org/: true + https://mamot.fr/@fgm: true + last_post_title: 'Tip of the day: using Homebrew to get PHP Pear extensions behind + a proxy' + last_post_description: Most of the time, installing tools using Homebrew works flawlessly, + including PHP these days. However, having to work in a client environment requiring + a proxy, the PHP 8.1 post-install failed when + last_post_date: "2023-06-01T12:15:14Z" + last_post_link: https://blog.riff.org/2023_06_01_tip_of_the_day_using_homebrew_to_get_php_pear_extensions_behind_a_proxy + last_post_categories: [] + last_post_language: "" + last_post_guid: d7800a9d41ece6ba37da90ba1bd7d15f + score_criteria: + cats: 0 + description: 0 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 11 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-2c3be73b4ed3b92454daa4d63cc4fc00.md b/content/discover/feed-2c3be73b4ed3b92454daa4d63cc4fc00.md new file mode 100644 index 000000000..a2e4cf0fd --- /dev/null +++ b/content/discover/feed-2c3be73b4ed3b92454daa4d63cc4fc00.md @@ -0,0 +1,61 @@ +--- +title: Rumah Kost Dijual Bandung +date: "2024-03-08T02:52:59-08:00" +description: Jual Kos yang menghasilkan - Hubungi Hendy 0819-104-22-777 +params: + feedlink: https://rumahkostdijualbandung.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 2c3be73b4ed3b92454daa4d63cc4fc00 + websites: + https://rumahkostdijualbandung.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - jual kost Bandung + relme: + https://eclipsedriven.blogspot.com/: true + https://emfmodeling.blogspot.com/: true + https://enakmurahkenyang.blogspot.com/: true + https://koperasi-bersama.blogspot.com/: true + https://lumen.hendyirawan.com/: true + https://magentoadmin.blogspot.com/: true + https://manfaatkefir.blogspot.com/: true + https://mobileflashdev.blogspot.com/: true + https://ngenet-dapat-duit.blogspot.com/: true + https://panduanubuntu.blogspot.com/: true + https://phpajaxweb.blogspot.com/: true + https://qt-mobility.blogspot.com/: true + https://rumah-sehat-avicenna.blogspot.com/: true + https://rumahkostdijualbandung.blogspot.com/: true + https://scala-enterprise.blogspot.com/: true + https://spring-java-ee.blogspot.com/: true + https://tutorial-java-programming.blogspot.com/: true + https://ubuntucomputing.blogspot.com/: true + https://www.blogger.com/profile/05192845149798446052: true + https://xdkmobile.blogspot.com/: true + last_post_title: Rumah Kost-kostan di Bandung Dijual Cepat, Murah, dan Menguntungkan + last_post_description: "" + last_post_date: "2010-05-24T15:37:35-07:00" + last_post_link: https://rumahkostdijualbandung.blogspot.com/2010/05/rumah-kost-kostan-di-bandung-dijual.html + last_post_categories: + - jual kost Bandung + last_post_language: "" + last_post_guid: b7d92e73b2c482469e4484f7a345afc4 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2c4142ddb39a1d502672e94366b8b7ad.md b/content/discover/feed-2c4142ddb39a1d502672e94366b8b7ad.md new file mode 100644 index 000000000..aa615ff58 --- /dev/null +++ b/content/discover/feed-2c4142ddb39a1d502672e94366b8b7ad.md @@ -0,0 +1,46 @@ +--- +title: Fantasy in Light and Shadow +date: "2024-02-27T20:36:45-08:00" +description: A journal where I can write down my photography and photoshop discoveries + so I do not forget them. Hopefully you can learn something useful from it too! +params: + feedlink: https://alchymiastudio.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 2c4142ddb39a1d502672e94366b8b7ad + websites: + https://alchymiastudio.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://alchymiastudio.blogspot.com/: true + https://happstack.blogspot.com/: true + https://learnhaskell.blogspot.com/: true + https://musictheoryforeveryone.blogspot.com/: true + https://nhlab.blogspot.com/: true + https://www.blogger.com/profile/18373967098081701148: true + last_post_title: Photography and Photoshop Journal + last_post_description: "" + last_post_date: "2006-06-11T13:00:18-07:00" + last_post_link: https://alchymiastudio.blogspot.com/2006/06/photography-and-photoshop-journal.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 3b6c75558950ad623a1ea97263496146 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2c48affb83eeddeae584247cf3903a33.md b/content/discover/feed-2c48affb83eeddeae584247cf3903a33.md new file mode 100644 index 000000000..a6aa96d7a --- /dev/null +++ b/content/discover/feed-2c48affb83eeddeae584247cf3903a33.md @@ -0,0 +1,96 @@ +--- +title: Sev's ScummVM notes +date: "1970-01-01T00:00:00Z" +description: ScummVM development and whatnot from ScummVM team leader +params: + feedlink: https://sev-notes.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 2c48affb83eeddeae584247cf3903a33 + websites: + https://sev-notes.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - DIG + - FM-TOWNS + - FSF + - Kanji + - agi + - bugs + - coroutines + - development + - discworld + - documentation + - donation + - downloads + - dw1 + - eBay + - enhancements + - gob + - gsoc + - history + - humongous entertainment + - ihnm + - ite + - james woodcock + - kyra3 + - kyrandia + - lawyers + - lec + - ludde + - m4 + - made engine + - mads + - mistic soft + - music + - original sources + - planetplanet + - portability + - ports + - refactoring + - reinherit + - rendering + - reverse engineering + - saga + - sarien + - screenshots + - scumm + - scummvm + - sf.net + - sourceforge + - steam + - strigeus + - tinsel + - trial + - wii + - woodruff + - yamaha + - zak + relme: + https://sev-notes.blogspot.com/: true + https://www.blogger.com/profile/17558861558880090861: true + last_post_title: Trying Patreon waters + last_post_description: "" + last_post_date: "2021-12-02T21:37:00Z" + last_post_link: https://sev-notes.blogspot.com/2021/12/trying-patreon-waters.html + last_post_categories: [] + last_post_language: "" + last_post_guid: d75fff78ba88b4d84165273213f16677 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2c5f9c8ef98e2b930acfa5e4f57b58f1.md b/content/discover/feed-2c5f9c8ef98e2b930acfa5e4f57b58f1.md new file mode 100644 index 000000000..a2eff6225 --- /dev/null +++ b/content/discover/feed-2c5f9c8ef98e2b930acfa5e4f57b58f1.md @@ -0,0 +1,43 @@ +--- +title: Jeff Geerling's Blog +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://www.jeffgeerling.com/blog.xml + feedtype: rss + feedid: 2c5f9c8ef98e2b930acfa5e4f57b58f1 + websites: + https://www.jeffgeerling.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://frankmcpherson.blog/feed.xml + categories: [] + relme: {} + last_post_title: Installing Ansible on a RISC-V computer + last_post_description: |- + Ansible runs on Python, and Python runs on... well pretty much everything. Including newer RISC-V machines. + + But Ansible has a lot of dependencies, and some of these dependencies have caused + last_post_date: "2024-07-02T18:16:37Z" + last_post_link: https://www.jeffgeerling.com/blog/2024/installing-ansible-on-risc-v-computer + last_post_categories: [] + last_post_language: "" + last_post_guid: 7205ee5fd1781ed34425fb9899319a49 + score_criteria: + cats: 0 + description: 0 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-2c68f9d6a1e5d16803ab8da4b215ba10.md b/content/discover/feed-2c68f9d6a1e5d16803ab8da4b215ba10.md new file mode 100644 index 000000000..ded75c4a9 --- /dev/null +++ b/content/discover/feed-2c68f9d6a1e5d16803ab8da4b215ba10.md @@ -0,0 +1,43 @@ +--- +title: Finding Palindromes +date: "2024-02-21T19:11:33-08:00" +description: Where do palindromes come from, where do they appear, en how do you find + them? +params: + feedlink: https://finding-palindromes.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 2c68f9d6a1e5d16803ab8da4b215ba10 + websites: + https://finding-palindromes.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://finding-palindromes.blogspot.com/: true + https://johanjeuring.blogspot.com/: true + https://www.blogger.com/profile/14035760811349164958: true + last_post_title: The history of finding palindromes + last_post_description: "" + last_post_date: "2012-10-28T03:04:18-07:00" + last_post_link: https://finding-palindromes.blogspot.com/2012/10/the-history-of-finding-palindromes.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 9c6b50acea2fa0bdf29766891060ffce + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2c7a9a7b4483e2e3d96e44c2ade2b8fc.md b/content/discover/feed-2c7a9a7b4483e2e3d96e44c2ade2b8fc.md deleted file mode 100644 index 2d3327c79..000000000 --- a/content/discover/feed-2c7a9a7b4483e2e3d96e44c2ade2b8fc.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Michael Nielsen -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://michaelnielsen.org/blog/feed/ - feedtype: rss - feedid: 2c7a9a7b4483e2e3d96e44c2ade2b8fc - websites: - https://michaelnielsen.org/blog/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Uncategorized - relme: {} - last_post_title: Is there a tension between creativity and accuracy? - last_post_description: On Twitter, I’ve been chatting with my friend Julia Galef - about tensions between thinking creatively and thinking in a way that reduces - error. Of course, all other things being equal, I’m in - last_post_date: "2017-04-09T04:50:32Z" - last_post_link: https://michaelnielsen.org/blog/is-there-a-tension-between-creativity-and-accuracy/ - last_post_categories: - - Uncategorized - last_post_guid: 0afd91b58eb0efaeade85945a1391328 - score_criteria: - cats: 0 - description: 0 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2c7f80a1597e8d5335887a224be00929.md b/content/discover/feed-2c7f80a1597e8d5335887a224be00929.md index f2626cfc0..f22d31e58 100644 --- a/content/discover/feed-2c7f80a1597e8d5335887a224be00929.md +++ b/content/discover/feed-2c7f80a1597e8d5335887a224be00929.md @@ -1,6 +1,6 @@ --- title: Tedium -date: "2024-06-04T07:30:47-04:00" +date: "2024-07-08T23:04:08-04:00" description: "" params: feedlink: https://tedium.co/feed @@ -14,23 +14,28 @@ params: - http://scripting.com/rssNightly.xml categories: [] relme: {} - last_post_title: The Bargain Bin Evolves - last_post_description: Thoughts on modern commerce from going to a bin store. It’s - a place where e-commerce returns go to die. - last_post_date: "2024-06-01T23:51:00-04:00" - last_post_link: https://tedium.co/2024/06/01/daabin-bin-store-retail-ecommerce-returns/ + last_post_title: Mind The Pregap + last_post_description: 'Pondering the compatibility issues and complications of + a clever element of the audio CD hidden track boom: The before-album pregap.' + last_post_date: "2024-07-06T14:15:00-04:00" + last_post_link: https://tedium.co/2024/07/06/compact-disc-pregap-history/ last_post_categories: [] - last_post_guid: d64550e4b35ea855e58e70accc60f227 + last_post_language: "" + last_post_guid: 9d1877590643aac8fbf01a86e7e5e61e score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 8 + score: 12 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-2c8af34fb6212c8aa2a09cf0c0813515.md b/content/discover/feed-2c8af34fb6212c8aa2a09cf0c0813515.md new file mode 100644 index 000000000..2f84007f6 --- /dev/null +++ b/content/discover/feed-2c8af34fb6212c8aa2a09cf0c0813515.md @@ -0,0 +1,50 @@ +--- +title: Mesutcan Kurt'un Blogu +date: "1970-01-01T00:00:00Z" +description: Blog Sayfama Hoşgeldiniz. Faideli bilgiler. +params: + feedlink: https://mesutcank.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 2c8af34fb6212c8aa2a09cf0c0813515 + websites: + https://mesutcank.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - "2010" + - guestlogin + - misafir kullanıcı + - pardus + - staj + relme: + https://mesutcaneng.blogspot.com/: true + https://mesutcank.blogspot.com/: true + https://www.blogger.com/profile/14480791836738882031: true + last_post_title: Ubuntu'ya güncel nvidia sürücülerini kurmak (nvidia-current) + last_post_description: |- + Merhabalar, + + Yeni toplamış olduğum bilgisayarımdaki Nvidia GTX670 (GK104 Kepler) ekran kartını Ubuntu'nun kendi deposundaki sürücüler tanımıyor. Şu an depolarında (hem test hem de + last_post_date: "2012-07-10T06:54:00Z" + last_post_link: https://mesutcank.blogspot.com/2012/07/ubuntuya-guncel-nvidia-suruculerini.html + last_post_categories: [] + last_post_language: "" + last_post_guid: b751acf308b47383826f73bcbfb7662c + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2c9c25ad0d1023b98131a01511948afb.md b/content/discover/feed-2c9c25ad0d1023b98131a01511948afb.md new file mode 100644 index 000000000..3b03a9fd5 --- /dev/null +++ b/content/discover/feed-2c9c25ad0d1023b98131a01511948afb.md @@ -0,0 +1,56 @@ +--- +title: El Rincón del Tío Nuke +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://www.nukeador.com/feed/ + feedtype: rss + feedid: 2c9c25ad0d1023b98131a01511948afb + websites: + https://www.nukeador.com/: true + https://www.nukeador.com/podcast/: false + blogrolls: [] + recommended: [] + recommender: [] + categories: + - General + - community + - hotosm + - open mapping + - osm + - research + relme: + https://mastodon.social/@nukeador: true + https://www.nukeador.com/: true + last_post_title: A Local Knowledge Dilemma? – A Data-Driven Alert for OSM + last_post_description: 'Our study reveals a trend in local knowledge contributions + in OpenStreetMap: a small but dedicated number of local mappers, making up just + about 3% of contributors who are in the area mapping, is' + last_post_date: "2023-12-05T13:40:01Z" + last_post_link: https://www.nukeador.com/05/12/2023/a-local-knowledge-dilemma-a-data-driven-alert-for-osm/ + last_post_categories: + - General + - community + - hotosm + - open mapping + - osm + - research + last_post_language: "" + last_post_guid: cb33fe694331da86370bf96c9fc3d2e5 + score_criteria: + cats: 0 + description: 0 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: es +--- diff --git a/content/discover/feed-2c9ee3d65ee897f99a80bfa609dac4d1.md b/content/discover/feed-2c9ee3d65ee897f99a80bfa609dac4d1.md new file mode 100644 index 000000000..d7923851d --- /dev/null +++ b/content/discover/feed-2c9ee3d65ee897f99a80bfa609dac4d1.md @@ -0,0 +1,45 @@ +--- +title: Buku Lakaran +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://bukulakaran.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 2c9ee3d65ee897f99a80bfa609dac4d1 + websites: + https://bukulakaran.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - GIMP + - buku lakaran + - pen + relme: + https://bukulakaran.blogspot.com/: true + last_post_title: Graffiti Wall - Azlan Punya Hasil Tangkapan + last_post_description: "Ini cerita lama... \n\n\n:: Wacom + Firefox + Facebook Graffiti + Wall ::\n\nYang ni boleh replay cemana hampehnya aku menconteng...\n\nlokesan + ni bukanlah fresh from oven... aku buat bulan seblas tahun 2009." + last_post_date: "2013-11-18T03:52:00Z" + last_post_link: https://bukulakaran.blogspot.com/2013/11/graffiti-wall-azlan-punya-hasil.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 20552cf6f6bd735c418673540d235bc7 + score_criteria: + cats: 3 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2ca2f2e2e3a9c4524d240c05d742b54e.md b/content/discover/feed-2ca2f2e2e3a9c4524d240c05d742b54e.md new file mode 100644 index 000000000..34fb2ec9c --- /dev/null +++ b/content/discover/feed-2ca2f2e2e3a9c4524d240c05d742b54e.md @@ -0,0 +1,45 @@ +--- +title: chrisjrn’s site +date: "2022-11-28T03:36:27Z" +description: Christopher Neugebauer's site +params: + feedlink: https://chrisjrn.com/feed.xml + feedtype: atom + feedid: 2ca2f2e2e3a9c4524d240c05d742b54e + websites: + https://chrisjrn.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - pyconau + relme: + https://chrisjrn.com/: true + https://social.coop/@chrisjrn: true + last_post_title: 'Talk Notes: On The Use and Misuse of Decorators' + last_post_description: I gave the talk On The Use and Misuse of Decorators as part + of PyConline AU 2021, the second in annoyingly long sequence of not-in-person + PyCon AU events. Here’s some code samples that you + last_post_date: "2021-09-10T17:14:14Z" + last_post_link: https://chrisjrn.com/2021/09/10/talk-notes--on-the-use-and-misuse-of-decorators/ + last_post_categories: + - pyconau + last_post_language: "" + last_post_guid: b76a570c0e8acc5e633165b33dd4335e + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2cb354e9a9f1bd2e4b8f89e5c9f4d8bd.md b/content/discover/feed-2cb354e9a9f1bd2e4b8f89e5c9f4d8bd.md new file mode 100644 index 000000000..7a3027155 --- /dev/null +++ b/content/discover/feed-2cb354e9a9f1bd2e4b8f89e5c9f4d8bd.md @@ -0,0 +1,49 @@ +--- +title: Bull's Blog +date: "1970-01-01T00:00:00Z" +description: I'm just sayin' is all +params: + feedlink: https://irbull.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 2cb354e9a9f1bd2e4b8f89e5c9f4d8bd + websites: + https://irbull.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - code9 + - eclipse + - gwt + - zest + relme: + https://eclipse-soc.blogspot.com/: true + https://irbull.blogspot.com/: true + https://www.blogger.com/profile/02668098567506210626: true + last_post_title: Mo, Mo, Mo, Movember + last_post_description: What started out as a crazy idea on Friday afternoon, with + a little encouragement from Kevin Barnes, is starting to take off. We now have + an Official Eclipse Mommitter team -- a team of Eclipse + last_post_date: "2009-11-02T03:40:00Z" + last_post_link: https://irbull.blogspot.com/2009/11/mo-mo-mo-movember.html + last_post_categories: + - eclipse + last_post_language: "" + last_post_guid: 499301a660d83739ab8b39937c2dccdb + score_criteria: + cats: 4 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2cb93f3042ea3c498f55d0a928754a9e.md b/content/discover/feed-2cb93f3042ea3c498f55d0a928754a9e.md deleted file mode 100644 index c57629f79..000000000 --- a/content/discover/feed-2cb93f3042ea3c498f55d0a928754a9e.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Adam Keys is Learning -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://til.therealadam.com/feed.xml - feedtype: rss - feedid: 2cb93f3042ea3c498f55d0a928754a9e - websites: - https://til.therealadam.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/therealadam: true - https://micro.blog/therealadam: false - https://twitter.com/therealadam: false - last_post_title: Recently in pair programming with AI - last_post_description: My recent experience with GitHub Copilot Chat (non-autocomplete - assistance) and Raycast’s ChatGPT-3.5 integrations lead me to think that prompting - will be a crucial skill for most knowledge workers - last_post_date: "2024-04-11T10:34:27-05:00" - last_post_link: https://til.therealadam.com/2024/04/11/recently-in-pair.html - last_post_categories: [] - last_post_guid: dce82cf4cc72e60652a8a44f18719328 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2cb98f25b911ddb2e6d035970e7f4773.md b/content/discover/feed-2cb98f25b911ddb2e6d035970e7f4773.md index 35dfd0c41..c29c3e42c 100644 --- a/content/discover/feed-2cb98f25b911ddb2e6d035970e7f4773.md +++ b/content/discover/feed-2cb98f25b911ddb2e6d035970e7f4773.md @@ -14,23 +14,29 @@ params: recommender: [] categories: [] relme: + https://ppcook.blogspot.com/: true https://www.blogger.com/profile/00266156201156998028: true - last_post_title: Spinorial Representations and Dynkin Diagrams + last_post_title: Is this a simulation? last_post_description: "" - last_post_date: "2014-02-07T20:52:12Z" - last_post_link: https://ppcook.blogspot.com/2011/02/spinorial-representations-and-dynkin.html + last_post_date: "2012-03-09T19:52:00Z" + last_post_link: https://ppcook.blogspot.com/2012/03/is-this-simulation.html last_post_categories: [] - last_post_guid: 69eb5bb3f79ec90f80f3bee02c5087b3 + last_post_language: "" + last_post_guid: 13bcfbcc8b0b554ccc0ad315a1705018 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-2cc1eb92c69f26af46f3ec089b2111f5.md b/content/discover/feed-2cc1eb92c69f26af46f3ec089b2111f5.md new file mode 100644 index 000000000..ff214feec --- /dev/null +++ b/content/discover/feed-2cc1eb92c69f26af46f3ec089b2111f5.md @@ -0,0 +1,247 @@ +--- +title: OSGi Blog +date: "2024-05-30T09:46:42Z" +description: The Dynamic Module System for Java +params: + feedlink: https://blog.osgi.org/feeds/posts/default + feedtype: atom + feedid: 2cc1eb92c69f26af46f3ec089b2111f5 + websites: + https://blog.osgi.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Adobe + - Amsterdam + - BG-JUG + - Berlin Brandenburg JUG + - Berlin JUG + - BoF + - Bosch + - Bulgaria + - Bulgarian JUG + - CeBIT + - Chicago JUG. Microservices + - China + - China OSGi Users' Forum. + - Condition + - DS + - DevCon + - Eclipse Community Day + - EclipseCon Europe + - Edge Computing + - Eurotech + - Event Processing + - Everit + - Expert Group + - Gecko.io + - Germany + - Ghent + - Guangzhou + - Hannover + - Hanover + - Huawei + - IIoT + - Industrial IoT + - Industry 4.0 + - InfoQ + - Internet of Things + - IoT + - IoT Hessen + - IoT Tech Expo + - IoT. Shenzhen + - JPMS + - JSR 376 + - JUG Thüringen. Java User Group + - Java 9 + - Java SE 9 + - Jena + - Jforum + - Liferay + - Liferay. Liferay DEVCON + - M2M + - MODCONF + - Makewave + - Modularity + - OSGi Alliance + - OSGi Community Event + - OSGi Community Event 2018 + - OSGi Expert Groups + - OSGi IoT demo + - OSGi Patterns + - OSGi Quickstart + - OSGi R6 + - OSGi R7 + - OSGi Users Forum Germany + - OSGi and Robots + - OSGi meetup + - Paremus + - ProSyst + - Push Streams + - QCon + - REST + - Realtime OSGi + - Release 7 + - Skelmir + - Smart Cities + - Smart Homes + - Sofia + - Start Level + - Stockholm + - Sweden + - aQute + - amqp + - ant + - barcelona jug + - berlin + - bnd + - bndtools + - bretagne + - budapest + - c++ + - cdi + - cep + - cfp + - cloud + - compendium + - component design + - conference + - contracts + - converter + - core + - coupling + - cpeg + - darmstadt + - darmstadt JUG + - declarative services + - deutsche telekom + - distributed computing + - distributed events + - eclipse + - eclipse osgi + - eclipsecon + - eeg + - eeg osgi sca j2ee jee + - ejb + - embedded + - enroute + - enterprise + - enterprise osgi + - events + - exam + - features + - felix + - france + - functional programming + - gateway + - gradle + - hack challenge + - http service + - hungary + - iMinds + - imec + - intellij + - java + - java 17 + - java 7 + - java.util.ServiceLoader + - jcp + - jigsaw + - jlink + - jsr 277 + - jsr 294 + - jsr 299 + - kafka + - karaf + - keynote + - london + - ludwigsburg + - madrid jug + - maven + - messaging + - microservices + - migration + - module system + - modules + - mqtt + - native code + - native-image + - new york + - object oriented + - oo + - osgi + - osgi certification + - osgi connect + - osgi devcon + - osgi developer certification + - osgi enroute + - osgi hibernate felix equinox eclipse knopflerfish sql + - osgi qcon eclipsecon interface21 grails hibernate quartz + - osgi r8 + - osgi tooling + - penrose + - pojosr + - portland + - portland jug + - pushstreams + - qconnewyork + - qivicon + - r7 + - r8 + - release + - repository + - requirements + - sao paulo + - scala + - serviceloader + - servlet + - soa + - software + - software ag + - specification + - standards + - structured + - summer school + - summit + - superpackages + - tccl + - threadcontextclassloader + - tycho + - webinar + - webservices + - workinggroup + relme: + https://blog.osgi.org/: true + last_post_title: BND Tools 7.0 Release Candidate 1 is available + last_post_description: We are happy to announce the BND Tools 7.0.0 Release Candidate, + which can now be downloaded here. Thanks to the support by members of the OSGi + Working Group the code base has been ported to Java 17 + last_post_date: "2023-09-14T08:07:44Z" + last_post_link: https://blog.osgi.org/2023/09/bnd-tools-70-release-candidate-1-is.html + last_post_categories: + - bnd + - bndtools + - eclipse + - java + - java 17 + - maven + last_post_language: "" + last_post_guid: 7032c762427ddcf4aca05dad348813b1 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2ccaa1b1656727c2978b740ccfce2842.md b/content/discover/feed-2ccaa1b1656727c2978b740ccfce2842.md index 11cc0afd5..c0150d3e5 100644 --- a/content/discover/feed-2ccaa1b1656727c2978b740ccfce2842.md +++ b/content/discover/feed-2ccaa1b1656727c2978b740ccfce2842.md @@ -1,9 +1,9 @@ --- title: jabel date: "1970-01-01T00:00:00Z" -description: I’m Jeremy. I typically write about gardening, environmental issues, - animist spirituality, woodworking, and whatever I'm reading at the moment. Correspond - by mail at PO Box 110 Oolitic, IN 47451 +description: I’m Jeremy. I typically write about gardening, animist spirituality, + woodworking, and whatever I'm reading at the moment. Correspond by mail at PO Box + 110 Oolitic, IN 47451 params: feedlink: https://jabel.blog/podcast.xml feedtype: rss @@ -29,14 +29,15 @@ params: - https://miraz.me/feed.xml - https://social.ayjay.org/feed.xml - https://social.davidwalbert.com/feed.xml + - https://thedruidsgarden.com/feed/ - https://tinyroofnail.micro.blog/feed.xml - https://www.patrickrhone.net/feed/ - https://aaronaiken.micro.blog/podcast.xml - - https://abbamoses.micro.blog/podcast.xml - https://ablerism.micro.blog/podcast.xml - https://annarama.net/podcast.xml - https://annie.micro.blog/podcast.xml - https://anotherendoftheworld.org/comments/feed/ + - https://beardystarstuff.net/podcast.xml - https://blog.grotenhuis.info/podcast.xml - https://canneddragons.net/ - https://cliffordbeshers.micro.blog/podcast.xml @@ -53,24 +54,29 @@ params: categories: - Society & Culture relme: - https://micro.blog/jabel: false + https://jabel.blog/: true last_post_title: 'JeffersCast Episode Three: “The Treasure”' last_post_description: This episode includes a reading of “The Treasure,” followed by a few comments. last_post_date: "2023-03-05T21:29:38-04:00" last_post_link: https://jabel.blog/2023/03/05/jefferscast-episode-three.html last_post_categories: [] + last_post_language: "" last_post_guid: a94eb649990537592e57dc8d22f4dc9b score_criteria: cats: 1 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 10 - relme: 1 + relme: 2 title: 3 website: 2 - score: 20 + score: 25 ispodcast: true isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-2ccb3f2b444416a7c6611ffa222384fb.md b/content/discover/feed-2ccb3f2b444416a7c6611ffa222384fb.md new file mode 100644 index 000000000..ce3f1007c --- /dev/null +++ b/content/discover/feed-2ccb3f2b444416a7c6611ffa222384fb.md @@ -0,0 +1,40 @@ +--- +title: Idéias Fugazes +date: "2024-03-07T23:04:40-08:00" +description: "" +params: + feedlink: https://ideiasfugazes.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 2ccb3f2b444416a7c6611ffa222384fb + websites: + https://ideiasfugazes.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://ideiasfugazes.blogspot.com/: true + last_post_title: Habilitando outras regiões no Coby TF-DVD7100 + last_post_description: "" + last_post_date: "2007-01-28T05:45:27-08:00" + last_post_link: https://ideiasfugazes.blogspot.com/2007/01/dvd-reviewer-hack-help-forum-topic-is.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 3314aa2790e2a85ccd3014c8eaec327d + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2cd9472b18ff49ed404d16dc50df4e55.md b/content/discover/feed-2cd9472b18ff49ed404d16dc50df4e55.md new file mode 100644 index 000000000..522d8a311 --- /dev/null +++ b/content/discover/feed-2cd9472b18ff49ed404d16dc50df4e55.md @@ -0,0 +1,375 @@ +--- +title: Lodahl's blog +date: "2024-03-13T20:50:59+01:00" +description: LibreOffice, open source software and open standards. These are the three + things you can read about on my blog. I'll try to keep you updated on news and events + in Denmark. +params: + feedlink: https://lodahl.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 2cd9472b18ff49ed404d16dc50df4e55 + websites: + https://lodahl.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - "2.4" + - 2.4.1 + - 2D barcode + - "3.0" + - 3.1.1 + - "4.1" + - API + - Aarhus + - Active Directory + - Adverts + - Alfresco + - Ambitions + - Android + - Animal + - Annual report + - Apache Foundation + - Apache Open Office + - Appeal + - Approval + - Article + - Avoid the pitfalls + - Award + - B103 + - BRM + - Barbecue + - Basic + - Beta + - Bibliographies + - Birthday + - Blog + - Bluetooth + - Bob Sutor + - Bouncer + - Burton Group + - Business + - Business Intelligence + - CBS + - CMIS + - Calc + - Calendar + - Cars + - Certification + - Chart + - Chichewa + - China + - Christmas + - City + - Clip art + - Comments + - Community + - Community Innovation Award Program + - Compatibility + - Complaint + - Composite + - Conference + - Contest + - Crime + - Crop + - Cross reference + - Culture + - DKUUG + - DR1 + - DS + - Danish + - Danish Consumer Agency + - Danish Standards + - Demonstration + - Denmark + - Desktop + - Digitaliser + - Document Foundation + - Download + - Draw + - E-government + - E-mail + - ECMA + - EU + - Education + - Election + - Enterprise + - Entrepreneurs + - Expeditor + - Export + - Extensions + - F/OSS + - FAIR + - Facebook + - Family + - Firefox + - Flash movie + - Forum + - Foundation + - Free + - Free software + - FreeMind + - Freedom + - French + - Friends + - Fun + - Gadgets + - GlassFish + - Google + - Google Docs + - Google Drive + - Government + - Grammar + - Gribskov + - HTC Hero + - HTML + - Hacking + - Help content + - IBM + - ISO + - ISO/IEC JTC 1 + - Impress + - Internet + - Interoperability + - Italian + - JTC + - Java + - KMD + - Knife + - LDraw + - Language + - Language Tools + - LanguageTools + - Learning + - Lego + - LibreOffice + - LibreOffice 4.0. OpenClipart.org + - LibreOffice 4.1 + - License + - Lightning + - LinusForum + - Linux + - LinuxForum + - Localizatio + - Localization + - Lorem Ipsum + - Lotus + - Lotus Notes + - Lotus Symphony + - LotusPhere + - Lyngby-Taarbæk + - MacOS + - Macro + - Magenta ApS + - Malawi + - Maps + - Master thesis + - McKinsey + - Microsoft + - Midsummer + - MindMap + - Minister of Science and Technology + - Mobile + - Monopoly + - Mozilla + - Municipals + - Munipality + - Music + - NOOOXML + - NetBeans + - New Zealand + - New features + - Newsletter + - Nokia + - Norway + - Notes 8.5 + - Novell + - Nuxeo + - OASIS + - OCAL + - ODF + - ODF Alliance + - OOXML + - OOoCon + - OSL + - OSM + - Objections + - Office + - Open + - Open Content + - Open Source + - Open Source Days + - Open Standards + - OpenClipart.org + - OpenDocument Format + - OpenJdk + - OpenOffice + - OpenOffice.org + - OpenOffice.org 3.0 + - OpenOffiice.org + - OpenProj + - OpenSPARC + - OpenSolaris + - OpenStreetMap + - Openness + - PDF + - Parliament + - Personal + - Petition + - Philosophy Knowledge + - Phone + - Pictures + - Pidgin + - Police + - Press + - Progress + - Project + - QMS + - Rambøll + - Raspberry Pi + - Redflag + - Release + - Release candidate + - Reports + - Rødovre + - SSLUG + - SVG + - SVG import + - Schools + - Screencast + - Search + - Settings + - Sharepoint + - Sidebar + - Sidepanel + - SlotusPhere + - Snow + - Software + - Software Fredom Day + - Spain + - Spelling + - Squirrel + - Standards + - Statistics + - Storm + - Styles + - Summer house + - Sun + - Support + - Swift + - Swing Software + - Swiss army knife + - Symfoni Software + - Symfony Software + - System integration + - Technical + - Template changer + - Templates + - The Danish Competition Authority + - The Document Foundation + - Therapy + - Thunderbird + - Track and Trace + - Trade unions + - Training + - Tram + - Translation + - Travel + - Tricks + - Tutorials + - Twitter + - Tønder + - UNI-C + - Ubuntu + - Usability + - Vacation + - Vestas + - Video + - Weather + - WebDAV + - WebODF + - Weblog + - West coast + - Widgets + - Wife + - Wiki + - Windmill + - Windows + - Windows Registry + - Wine + - Witches + - Word count + - Writer + - XML + - XML parser + - Young + - Youtube + - accessibility + - administration + - barcode + - batch + - bootstrap + - change control + - chemestry + - chemical formulas + - clker.com + - commmittee + - copyleft + - crowd source + - design + - donate + - e-learning + - embedded fonts + - extension + - fonts + - formula + - gui + - installation + - integration + - merchandise + - msi + - msiexec + - mst + - openSourceDays + - ownCloud + - poetry + - python + - server + - shop + - silent + - silent install + - task panel + - test + - victory + relme: + https://libreofficedk.blogspot.com/: true + https://lodahl.blogspot.com/: true + https://www.blogger.com/profile/08960229448622236930: true + last_post_title: Templates - Avoid the pitfalls + last_post_description: 'This article is an addition to my speak at the LibreOffice + Conference in Aarhus. You can find the introduction here: http://conference.libreoffice.org/2015/the-program/talks/migration-user-experiance' + last_post_date: "2015-09-26T19:55:48+02:00" + last_post_link: https://lodahl.blogspot.com/2015/09/templates-avoid-pitfalls.html + last_post_categories: + - Avoid the pitfalls + - LibreOffice + - Templates + last_post_language: "" + last_post_guid: 153b8122c9ace12c8914f1b8af1c9d73 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2cdee94cf499edf55e927488c00e82bf.md b/content/discover/feed-2cdee94cf499edf55e927488c00e82bf.md index 2f12a15d4..608f757d3 100644 --- a/content/discover/feed-2cdee94cf499edf55e927488c00e82bf.md +++ b/content/discover/feed-2cdee94cf499edf55e927488c00e82bf.md @@ -12,6 +12,7 @@ params: recommended: [] recommender: - http://scripting.com/rss.xml + - http://scripting.com/rssNightly.xml categories: - Historical Perspectives - New Kind of Science @@ -27,17 +28,22 @@ params: - Historical Perspectives - New Kind of Science - Ruliology + last_post_language: "" last_post_guid: ba3f409e586a61945e4c82953b1a3cb5 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 16 + score: 20 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-2d1255e3bf6cdb8d1c77f6c8cec198c0.md b/content/discover/feed-2d1255e3bf6cdb8d1c77f6c8cec198c0.md new file mode 100644 index 000000000..c116008cd --- /dev/null +++ b/content/discover/feed-2d1255e3bf6cdb8d1c77f6c8cec198c0.md @@ -0,0 +1,148 @@ +--- +title: A Distant Chime +date: "2024-07-07T02:06:59-07:00" +description: |- + “A system that operates by constructing and executing plans lives, to speak metaphorically, in a sort of fantasy world..." + -Agre and Chapman 1990 +params: + feedlink: https://espharel.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 2d1255e3bf6cdb8d1c77f6c8cec198c0 + websites: + https://espharel.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 4-D + - 5E + - AD&D + - AD&Daptation + - Adventure + - Alchemy + - Alignment + - Ancients + - Announcement + - Apocalypse + - Basic + - Bestiary + - Blogging + - Book Review + - Byzantium + - Campaign + - Cascabel + - Castle Xyntillan + - Classes + - Collaboration + - Community Challenge + - Cosmos + - Cthon + - Currency + - Cyberpunk + - Diesel Punk + - Discussion + - DotD + - Dragons + - Dungeon + - Dwarves + - ES Wizard + - Elder Scrolls + - Elder Scrolls Session Report + - Essay + - Fallout + - Fiction + - Fighters + - Film + - Foxes + - GLOG + - GMing + - Gatehouse on Cormac's Crag + - Gods + - Hexcrawl + - House of Pestilence + - Icewind Dale + - Index + - Items + - JRLewis + - L5R + - Layout + - Locations + - Love + - Magic + - Magicka + - Mapping + - Mathematics + - Megapost + - Meta + - Mini-Quest + - Morale + - Mothership + - No Artpunk + - OSR + - Obscura + - Orcs + - Outsiders + - Playtesting + - Point Nemo + - Proof + - Psionics + - Ptolus + - RAW + - Race + - Random Dungeon + - Rats + - Realplay + - Redwall + - Remix + - Review + - Robo-Yakuza + - Rules + - Shrines and Saints + - Spanish + - State of the Blog + - Stride the Lightning + - Swords and Wizardry + - Tiefling + - Tomb of the Serpent Kings + - True Names + - Ultima Underworld + - Undead + - Underwater + - Unqualified Speculation + - Vampire + - WTF + - Warlock + - Wavestone + - Wizard + - Worldbuilding + - Writing + - videogames + relme: + https://espharel.blogspot.com/: true + last_post_title: The House of Pestilence (oh, and No Artpunk III) is Released! + last_post_description: "" + last_post_date: "2024-06-14T03:28:02-07:00" + last_post_link: https://espharel.blogspot.com/2024/06/the-house-of-pestilence-oh-and-no.html + last_post_categories: + - Announcement + - House of Pestilence + - No Artpunk + last_post_language: "" + last_post_guid: c36047a86139fe123d149a36b39f26e1 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2d2366b2f246830b1690f35b15f3046c.md b/content/discover/feed-2d2366b2f246830b1690f35b15f3046c.md index 4fffaf734..9ec5fd42a 100644 --- a/content/discover/feed-2d2366b2f246830b1690f35b15f3046c.md +++ b/content/discover/feed-2d2366b2f246830b1690f35b15f3046c.md @@ -13,23 +13,31 @@ params: recommender: [] categories: [] relme: + https://advent-of-code.xavd.id/: true + https://david.reviews/: true https://mastodon.social/@xavdid: true - last_post_title: 'david.reviews: "Dordogne"' + https://xavd.id/: true + last_post_title: 'david.reviews: "Cuphead"' last_post_description: "" - last_post_date: "2024-06-02T00:00:00Z" - last_post_link: https://david.reviews/games/dordogne/ + last_post_date: "2024-06-25T00:00:00Z" + last_post_link: https://david.reviews/games/cuphead/ last_post_categories: [] - last_post_guid: c6dc99c203ea82c277c7b80fde79f41b + last_post_language: "" + last_post_guid: e88aab63cd742981538f4396156fbe0d score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-2d3794715288ef709eae3df1ca24597a.md b/content/discover/feed-2d3794715288ef709eae3df1ca24597a.md index fed604203..6d4632a4f 100644 --- a/content/discover/feed-2d3794715288ef709eae3df1ca24597a.md +++ b/content/discover/feed-2d3794715288ef709eae3df1ca24597a.md @@ -12,40 +12,57 @@ params: recommended: [] recommender: [] categories: + - Apple + - Digital Markets Act + - EU + - Epic Games + - European Commission + - Gaming - Tech - - copilot+ PC - - Intel - - intel core - - lunar lake - - meteor lake - - NPU + - Tim Sweeney + - alternative app stores + - apple + - european union + - iOS + - sideloading relme: + https://arstechnica.com/: true https://mastodon.social/@arstechnica: true - last_post_title: Intel details new Lunar Lake CPUs that will go up against AMD, - Qualcomm, and Apple - last_post_description: Lunar Lake returns to a more conventional-looking design - for Intel. - last_post_date: "2024-06-04T03:00:55Z" - last_post_link: https://arstechnica.com/?p=2028454 + last_post_title: After two rejections, Apple approves Epic Games Store app for iOS + last_post_description: European iOS users will see the alternative app store launch + sometime soon. + last_post_date: "2024-07-08T21:30:16Z" + last_post_link: https://arstechnica.com/?p=2035658 last_post_categories: + - Apple + - Digital Markets Act + - EU + - Epic Games + - European Commission + - Gaming - Tech - - copilot+ PC - - Intel - - intel core - - lunar lake - - meteor lake - - NPU - last_post_guid: 26a14dde8b38c52fa04cb62ad7216f4b + - Tim Sweeney + - alternative app stores + - apple + - european union + - iOS + - sideloading + last_post_language: "" + last_post_guid: 73fef5ccaaec70546fefdecbe12c4e6a score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-2d41dc95f3b2cbade1f25fc5ac22653b.md b/content/discover/feed-2d41dc95f3b2cbade1f25fc5ac22653b.md deleted file mode 100644 index 84ce04ed7..000000000 --- a/content/discover/feed-2d41dc95f3b2cbade1f25fc5ac22653b.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Juhis -date: "1970-01-01T00:00:00Z" -description: Public posts from @hamatti@mastodon.world -params: - feedlink: https://mastodon.world/@hamatti.rss - feedtype: rss - feedid: 2d41dc95f3b2cbade1f25fc5ac22653b - websites: - https://mastodon.world/@hamatti: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://archipylago.dev/: false - https://hamatti.org/: true - https://www.syntaxerror.tech/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2d47de4466549ea34b88b58c6b4fbf8a.md b/content/discover/feed-2d47de4466549ea34b88b58c6b4fbf8a.md new file mode 100644 index 000000000..aa8e6ec19 --- /dev/null +++ b/content/discover/feed-2d47de4466549ea34b88b58c6b4fbf8a.md @@ -0,0 +1,41 @@ +--- +title: Pablo Rauzy (p4bl0) +date: "1970-01-01T00:00:00Z" +description: Updates from Pablo Rauzy's homepage +params: + feedlink: https://pablo.rauzy.name/updates.rss + feedtype: rss + feedid: 2d47de4466549ea34b88b58c6b4fbf8a + websites: + https://pablo.rauzy.name/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://pablo.rauzy.name/: true + last_post_title: Nouveau Front populaire + last_post_description: Il faut soutenir le Nouveau Front populaire. Le 30 juin et + le 7 juillet, votez et faites voter pour le Nouveau Front populaire. + last_post_date: "2024-06-14T00:00:00+02:00" + last_post_link: https://p4bl0.net/post/2024/06/Il-faut-soutenir-le-Nouveau-Front-Populaire + last_post_categories: [] + last_post_language: "" + last_post_guid: 6f180414558a96e0487efa3c3c00933d + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2d6045e1b6a065310ea964452d3821f1.md b/content/discover/feed-2d6045e1b6a065310ea964452d3821f1.md new file mode 100644 index 000000000..5b9c1e336 --- /dev/null +++ b/content/discover/feed-2d6045e1b6a065310ea964452d3821f1.md @@ -0,0 +1,44 @@ +--- +title: Networking Eclipse +date: "1970-01-01T00:00:00Z" +description: Martin Oberhuber's thoughts on Eclipse, Java, Embedded C/C++ and the + Community +params: + feedlink: https://tmober.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 2d6045e1b6a065310ea964452d3821f1 + websites: + https://tmober.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://tmober.blogspot.com/: true + https://www.blogger.com/profile/02195662278064214049: true + last_post_title: Eclipse Classic now comes with egit included + last_post_description: With Kepler M6, we've added egit and Marketplace Client to + the Eclipse Classic package, which is still the most popular of all Eclipse packages. + The request adding git to all packages has been open + last_post_date: "2013-03-24T18:47:00Z" + last_post_link: https://tmober.blogspot.com/2013/03/eclipse-classic-now-comes-with-egit.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 5f5b1241d78daf4faa582c3dcb029290 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2d6314625f6d229381a421503dbb9376.md b/content/discover/feed-2d6314625f6d229381a421503dbb9376.md deleted file mode 100644 index 5a96dea14..000000000 --- a/content/discover/feed-2d6314625f6d229381a421503dbb9376.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Floating Flinders -date: "2024-06-04T12:15:15Z" -description: Emptiness inside. -params: - feedlink: https://flinders.bearblog.dev/feed/ - feedtype: atom - feedid: 2d6314625f6d229381a421503dbb9376 - websites: - https://flinders.bearblog.dev/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Why sustainable farming is more than just organic - last_post_description: "" - last_post_date: "2023-10-19T22:36:58Z" - last_post_link: https://flinders.bearblog.dev/why-sustainable-farming-is-more-than-just-organic/ - last_post_categories: [] - last_post_guid: 83883150299f8c2a1f1ee456f9a1eb15 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2d7757b05d1172b5a5b6aff03ef2a14a.md b/content/discover/feed-2d7757b05d1172b5a5b6aff03ef2a14a.md new file mode 100644 index 000000000..813760c12 --- /dev/null +++ b/content/discover/feed-2d7757b05d1172b5a5b6aff03ef2a14a.md @@ -0,0 +1,40 @@ +--- +title: Evert Pot's blog +date: "2024-07-09T02:58:55Z" +description: "" +params: + feedlink: https://evertpot.com/atom.xml + feedtype: atom + feedid: 2d7757b05d1172b5a5b6aff03ef2a14a + websites: + https://evertpot.com/: false + blogrolls: [] + recommended: [] + recommender: + - https://alexsci.com/blog/rss.xml + categories: [] + relme: {} + last_post_title: Creating a fake download counter with Web Components + last_post_description: "" + last_post_date: "2024-07-02T16:07:33Z" + last_post_link: https://evertpot.com/webcomponent-download-counter/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 2d8cb772d22c4b2c2f00030a546b3a01 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 1 + score: 12 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2d830d67869f0915ef63695bfdb36170.md b/content/discover/feed-2d830d67869f0915ef63695bfdb36170.md deleted file mode 100644 index 75b2142e9..000000000 --- a/content/discover/feed-2d830d67869f0915ef63695bfdb36170.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Upcoming devopsdays events -date: "1970-01-01T00:00:00Z" -description: Upcoming devopsdays events -params: - feedlink: https://devopsdays.org/events/index.xml - feedtype: rss - feedid: 2d830d67869f0915ef63695bfdb36170 - websites: - https://devopsdays.org/events/: true - https://devopsdays.org/events/2023-birmingham-al/welcome/: false - https://devopsdays.org/events/2024-birmingham-al/welcome/: false - https://devopsdays.org/events/2024-washington-dc/welcome/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2d98667287e1897f94b635ad630ef11a.md b/content/discover/feed-2d98667287e1897f94b635ad630ef11a.md deleted file mode 100644 index 3d4c6cffc..000000000 --- a/content/discover/feed-2d98667287e1897f94b635ad630ef11a.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Recent comments on ruk.ca -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://ruk.ca/comments/rss - feedtype: rss - feedid: 2d98667287e1897f94b635ad630ef11a - websites: - https://ruk.ca/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Having passed through Pescia, - last_post_description: Having passed through Pescia, en route between Lucca and - Firenze, having both read The Notebook, and learned from it that high quality - paper became common and affordable enough that everyday note - last_post_date: "2024-06-02T13:47:28Z" - last_post_link: https://ruk.ca/comment/28743#comment-28743 - last_post_categories: [] - last_post_guid: 65a85b0501b37ebcf440ce92e64716a2 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 4 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2d9e050e911bf65e3842df4decc5cd5b.md b/content/discover/feed-2d9e050e911bf65e3842df4decc5cd5b.md new file mode 100644 index 000000000..d9a8dbaf6 --- /dev/null +++ b/content/discover/feed-2d9e050e911bf65e3842df4decc5cd5b.md @@ -0,0 +1,43 @@ +--- +title: Sage GSoC +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://lina-kulakova.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 2d9e050e911bf65e3842df4decc5cd5b + websites: + https://lina-kulakova.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://lina-kulakova.blogspot.com/: true + https://www.blogger.com/profile/14950730664292563552: true + last_post_title: Profiling + last_post_description: Sometimes it is very helpful to have a function which makes + an automatic choice between available factorisation algorithms depending on an + input polynomial. For this purpose I wrote some profiling + last_post_date: "2012-08-06T20:28:00Z" + last_post_link: https://lina-kulakova.blogspot.com/2012/08/profiling.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 57ca0d198ffcbe838136689c493a4916 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2daa100c3df8c30a6d15772b74c18fa6.md b/content/discover/feed-2daa100c3df8c30a6d15772b74c18fa6.md deleted file mode 100644 index 24ecc69df..000000000 --- a/content/discover/feed-2daa100c3df8c30a6d15772b74c18fa6.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Ernie Smith -date: "1970-01-01T00:00:00Z" -description: Public posts from @ernie@writing.exchange -params: - feedlink: https://writing.exchange/@ernie.rss - feedtype: rss - feedid: 2daa100c3df8c30a6d15772b74c18fa6 - websites: - https://writing.exchange/@ernie: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://erniesmith.net/: true - https://tedium.co/: true - https://udm14.com/: false - https://www.verifiedjournalist.org/people/@ernie@writing.exchange: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2daf44b0bae9dab54a0dd1e60889b217.md b/content/discover/feed-2daf44b0bae9dab54a0dd1e60889b217.md deleted file mode 100644 index b8fcf4d56..000000000 --- a/content/discover/feed-2daf44b0bae9dab54a0dd1e60889b217.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Piccalilli - Everything -date: "2024-06-04T14:01:02Z" -description: We are Piccalilli. A publication dedicated to providing high quality - educational content to level up your front-end skills. -params: - feedlink: https://piccalil.li/feed.xml - feedtype: rss - feedid: 2daf44b0bae9dab54a0dd1e60889b217 - websites: - https://piccalil.li/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://front-end.social/@piccalilli: true - last_post_title: Let’s make a floating button sign up form pattern - last_post_description: |- - Sign up forms, they’re pretty common! What’s also common is for the submit button to float above the input, like this: - - There’s a problem though. A lot of the time, the input is behind the - last_post_date: "2024-06-04T07:58:14Z" - last_post_link: https://piccalil.li/blog/lets-make-a-floating-button-sign-up-form-pattern/?ref=main-rss-feed - last_post_categories: [] - last_post_guid: 48d0d38aa7ae031e900fa6289995c1ba - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2db6317b0a650f4ec34851cfa94746fb.md b/content/discover/feed-2db6317b0a650f4ec34851cfa94746fb.md deleted file mode 100644 index 93b21a0b0..000000000 --- a/content/discover/feed-2db6317b0a650f4ec34851cfa94746fb.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Kernel – codeblog -date: "1970-01-01T00:00:00Z" -description: code is freedom -- patching my itch -params: - feedlink: https://outflux.net/blog/archives/category/kernel/feed/ - feedtype: rss - feedid: 2db6317b0a650f4ec34851cfa94746fb - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Blogging - - Kernel - - Security - relme: {} - last_post_title: Enable MTE on Pixel 8 - last_post_description: The Pixel 8 hardware (Tensor G3) supports the ARM Memory - Tagging Extension (MTE), and software support is available both in Android userspace - and the Linux kernel. This feature is a powerful defense - last_post_date: "2023-10-26T19:19:46Z" - last_post_link: https://outflux.net/blog/archives/2023/10/26/enable-mte-on-pixel-8/ - last_post_categories: - - Blogging - - Kernel - - Security - last_post_guid: 8e481ff0e3ef4c7e0d2e918b2ea45058 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2dba8c30d4a805d5ac6bef9a3935553b.md b/content/discover/feed-2dba8c30d4a805d5ac6bef9a3935553b.md new file mode 100644 index 000000000..402c73997 --- /dev/null +++ b/content/discover/feed-2dba8c30d4a805d5ac6bef9a3935553b.md @@ -0,0 +1,140 @@ +--- +title: Boss Meme +date: "2024-03-05T11:35:07-08:00" +description: Boss Memes are coll Get numberless collection on Bad Boss Memes. Here + we go. +params: + feedlink: https://lauramenendeztic.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 2dba8c30d4a805d5ac6bef9a3935553b + websites: + https://lauramenendeztic.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Boss memes + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Countless Boss Memes which You Love the Most + last_post_description: "" + last_post_date: "2020-11-05T09:04:13-08:00" + last_post_link: https://lauramenendeztic.blogspot.com/2020/11/countless-boss-memes-which-you-love-most.html + last_post_categories: + - Boss memes + last_post_language: "" + last_post_guid: 7e55c3ba8e92d971bd1d30f4fe2f0323 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2dbcbf6905f2787bd627334bd851979b.md b/content/discover/feed-2dbcbf6905f2787bd627334bd851979b.md new file mode 100644 index 000000000..c90e9db25 --- /dev/null +++ b/content/discover/feed-2dbcbf6905f2787bd627334bd851979b.md @@ -0,0 +1,44 @@ +--- +title: On the Data Platform +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://dataplat.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 2dbcbf6905f2787bd627334bd851979b + websites: + https://dataplat.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://dataplat.blogspot.com/: true + https://osmusings.blogspot.com/: true + https://www.blogger.com/profile/02062334031161915809: true + last_post_title: Learning BIRT, part 2 + last_post_description: (This is the second half of my review for Practical Data + Analysis and Reporting with BIRT). Chapters six through ten cover + various ways that reports can be enhanced. Each of these + last_post_date: "2008-04-02T19:45:00Z" + last_post_link: https://dataplat.blogspot.com/2008/04/learning-birt-part-2.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 561209cd7e10b2b5f83a2495927f5df2 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2dbfdd45c44d02d99f946afd8adbfe60.md b/content/discover/feed-2dbfdd45c44d02d99f946afd8adbfe60.md index a0e766c57..e7608d480 100644 --- a/content/discover/feed-2dbfdd45c44d02d99f946afd8adbfe60.md +++ b/content/discover/feed-2dbfdd45c44d02d99f946afd8adbfe60.md @@ -14,23 +14,28 @@ params: recommender: [] categories: [] relme: - https://www.blogger.com/profile/01181646988310208373: true + https://sarahmsharman.blogspot.com/: true last_post_title: The Belt of Venus last_post_description: "" last_post_date: "2013-08-20T03:44:33-07:00" last_post_link: https://sarahmsharman.blogspot.com/2013/08/the-belt-of-venus.html last_post_categories: [] + last_post_language: "" last_post_guid: e94791ac74841845d17e6cc558b9a785 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-2dcf457b1580a5bd94383552cc3a3d3a.md b/content/discover/feed-2dcf457b1580a5bd94383552cc3a3d3a.md deleted file mode 100644 index 7b4e9e411..000000000 --- a/content/discover/feed-2dcf457b1580a5bd94383552cc3a3d3a.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: Kimi Zhang -date: "1970-01-01T00:00:00Z" -description: Cloud Computing, Openstack, Networks -params: - feedlink: https://kimizhang.wordpress.com/feed/ - feedtype: rss - feedid: 2dcf457b1580a5bd94383552cc3a3d3a - websites: - https://kimizhang.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Openstack - - Cinder - - Glamce - - Instance-Store - - Juno - - migration - - NFS - - Nova - relme: {} - last_post_title: NFS backend for Openstack Glance/Cinder/Instance-store - last_post_description: In this post, let’s go through how to configure NFS as unified - storage backend for Openstack Glance, Cinder and shared ... Continue reading - last_post_date: "2015-02-12T00:28:41Z" - last_post_link: https://kimizhang.wordpress.com/2015/02/12/nfs-backend-for-openstack-glancecinderinstance-store/ - last_post_categories: - - Openstack - - Cinder - - Glamce - - Instance-Store - - Juno - - migration - - NFS - - Nova - last_post_guid: 654ab2b1e975b0bccd6d35408e4e7c3b - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2dd2b60b50d73db272210897f3f2357a.md b/content/discover/feed-2dd2b60b50d73db272210897f3f2357a.md new file mode 100644 index 000000000..765455609 --- /dev/null +++ b/content/discover/feed-2dd2b60b50d73db272210897f3f2357a.md @@ -0,0 +1,106 @@ +--- +title: Coyle's InFormation +date: "2024-06-19T09:30:41-07:00" +description: Comments on the digital age, which, as we all know, is 42. +params: + feedlink: https://kcoyle.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 2dd2b60b50d73db272210897f3f2357a + websites: + https://kcoyle.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - DCMI + - DRM + - Digital libraries + - ER models + - FOAF + - FRBR + - Google + - Internet Archive + - LRM + - MARC + - OpenLibrary + - RDA + - RDA DCMI + - RDF + - RFID + - SHACL + - Standards + - Wikipedia + - application profiles + - authority control + - bibframe + - books + - cataloging + - classification + - classification LCSH + - controlled digital lending + - copyright + - digitization + - ebooks + - googlebooks + - identifiers + - intellectual freedom + - internet + - |- + keywords + searching + - knowledge organization + - kosovo + - language + - lcsh intell + - libraries + - library catalogs + - library history + - linked data + - linux + - metadata + - names + - oclc + - open access + - open data + - politics + - privacy + - reading + - schema.org + - search + - semantic web + - skyriver + - vocabularies + - wish list + - women + - women and technology + - women technology + relme: + https://kcoyle.blogspot.com/: true + https://www.blogger.com/profile/02519757456533839003: true + last_post_title: Words + last_post_description: "" + last_post_date: "2023-10-13T09:18:41-07:00" + last_post_link: https://kcoyle.blogspot.com/2023/10/words.html + last_post_categories: + - |- + keywords + searching + last_post_language: "" + last_post_guid: 6716766c0a8246111a3b2211f6ce7d59 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2de59e9f0aedfd19214eb9dea6d018a4.md b/content/discover/feed-2de59e9f0aedfd19214eb9dea6d018a4.md deleted file mode 100644 index 88ca59692..000000000 --- a/content/discover/feed-2de59e9f0aedfd19214eb9dea6d018a4.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Comments for JavaCruft -date: "1970-01-01T00:00:00Z" -description: A blog that's no longer mainly about Java... -params: - feedlink: https://javacruft.wordpress.com/comments/feed/ - feedtype: rss - feedid: 2de59e9f0aedfd19214eb9dea6d018a4 - websites: - https://javacruft.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - '#OpenStack' - - '#ubuntu' - - '#gnu' - relme: {} - last_post_title: 'Comment on Winning with OpenStack Upgrades? by Winning with #OpenStack - Upgrades? https://javacruft.wordpress.com/2… | Dr. Roy Schestowitz (罗伊)' - last_post_description: '[…] with #OpenStack Upgrades? https://javacruft.wordpress.com/2018/03/16/winning-with-openstack-upgrades/ - #ubuntu #gnu […]' - last_post_date: "2018-03-16T20:13:12Z" - last_post_link: https://javacruft.wordpress.com/2018/03/16/winning-with-openstack-upgrades/#comment-1504 - last_post_categories: - - '#OpenStack' - - '#ubuntu' - - '#gnu' - last_post_guid: 1ce6c31ea92ce786fa9d25f8b25c0025 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2de62200d577ae829bb748ab538a4a97.md b/content/discover/feed-2de62200d577ae829bb748ab538a4a97.md new file mode 100644 index 000000000..445f1e499 --- /dev/null +++ b/content/discover/feed-2de62200d577ae829bb748ab538a4a97.md @@ -0,0 +1,43 @@ +--- +title: Careful with that axe, Eugene +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://ltspthinclient.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 2de62200d577ae829bb748ab538a4a97 + websites: + https://ltspthinclient.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - documentation + relme: + https://ltspthinclient.blogspot.com/: true + last_post_title: xexit reaches 1.0. Thanks Juha + last_post_description: Thanks to a nice article by Juha, I put in some polishing + on xexit, my solution to rotten processes that just don't know when to quit on + LTSP servers.I've included a (slightly modified) version of + last_post_date: "2011-03-29T17:16:00Z" + last_post_link: https://ltspthinclient.blogspot.com/2011/03/xexit-reaches-10-thanks-juha.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 371b7825ae6a2f7411865274a052cd13 + score_criteria: + cats: 1 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 11 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2dedb32e194b9c0eafa26d85056c24a2.md b/content/discover/feed-2dedb32e194b9c0eafa26d85056c24a2.md new file mode 100644 index 000000000..8088bf6f0 --- /dev/null +++ b/content/discover/feed-2dedb32e194b9c0eafa26d85056c24a2.md @@ -0,0 +1,40 @@ +--- +title: 'GSoC 2015: Multi-account support in Swift' +date: "2024-03-22T05:55:15+01:00" +description: "" +params: + feedlink: https://danielbgsoc.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 2dedb32e194b9c0eafa26d85056c24a2 + websites: + https://danielbgsoc.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://danielbgsoc.blogspot.com/: true + last_post_title: Polishing and fixing existing code + last_post_description: "" + last_post_date: "2015-08-19T15:15:10+02:00" + last_post_link: https://danielbgsoc.blogspot.com/2015/08/polishing-and-fixing-existing-code.html + last_post_categories: [] + last_post_language: "" + last_post_guid: c8075676b756f08a0680a3ce7d133726 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2def590cd11f77c23fa8c3024d6a13d5.md b/content/discover/feed-2def590cd11f77c23fa8c3024d6a13d5.md deleted file mode 100644 index 92b9fc278..000000000 --- a/content/discover/feed-2def590cd11f77c23fa8c3024d6a13d5.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Ben Rady -date: "1970-01-01T00:00:00Z" -description: Public posts from @benrady@awscommunity.social -params: - feedlink: https://awscommunity.social/@benrady.rss - feedtype: rss - feedid: 2def590cd11f77c23fa8c3024d6a13d5 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2e118ea8521481c3a00c353dfe4c666e.md b/content/discover/feed-2e118ea8521481c3a00c353dfe4c666e.md new file mode 100644 index 000000000..fae1e9158 --- /dev/null +++ b/content/discover/feed-2e118ea8521481c3a00c353dfe4c666e.md @@ -0,0 +1,60 @@ +--- +title: Bits and Bytes +date: "2024-03-07T23:21:11+03:00" +description: To Err is Human, to Arr is Pirate! +params: + feedlink: https://lennartkolmodin.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 2e118ea8521481c3a00c353dfe4c666e + websites: + https://lennartkolmodin.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - binary + - chalmers + - gentoo + - haskell + - humour + - language + - pondering + - prank + - rydis + - tools + - windows + - wireless + - wm + - x61s + - xmonad + relme: + https://lennartkolmodin.blogspot.com/: true + https://skojmedhoj.blogspot.com/: true + https://tjenamoskva.blogspot.com/: true + https://www.blogger.com/profile/11472900998358020886: true + last_post_title: binary 0.7 + last_post_description: "" + last_post_date: "2013-03-03T13:56:20+04:00" + last_post_link: https://lennartkolmodin.blogspot.com/2013/03/binary-07.html + last_post_categories: + - binary + - haskell + last_post_language: "" + last_post_guid: 0f622c5bd7591e680cf06dcf38daca14 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2e1efdea9648e1b2fbfc13792e53da21.md b/content/discover/feed-2e1efdea9648e1b2fbfc13792e53da21.md new file mode 100644 index 000000000..a033ee2c2 --- /dev/null +++ b/content/discover/feed-2e1efdea9648e1b2fbfc13792e53da21.md @@ -0,0 +1,40 @@ +--- +title: Kubuntu +date: "2024-03-13T05:38:24-07:00" +description: "" +params: + feedlink: https://werghdf.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 2e1efdea9648e1b2fbfc13792e53da21 + websites: + https://werghdf.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://werghdf.blogspot.com/: true + last_post_title: Kubuntu got Donations, KDE needs Donations + last_post_description: "" + last_post_date: "2012-09-21T06:33:23-07:00" + last_post_link: https://werghdf.blogspot.com/2012/09/kubuntu-got-donations-kde-needs.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 803caf3a90c234321d1a37a4484da0cb + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2e3572b723494384a1b4252b6cd2d0cc.md b/content/discover/feed-2e3572b723494384a1b4252b6cd2d0cc.md new file mode 100644 index 000000000..23fd05b7b --- /dev/null +++ b/content/discover/feed-2e3572b723494384a1b4252b6cd2d0cc.md @@ -0,0 +1,43 @@ +--- +title: Steve Baskauf's blog +date: "2024-07-08T16:02:57-07:00" +description: "" +params: + feedlink: https://baskauf.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 2e3572b723494384a1b4252b6cd2d0cc + websites: + https://baskauf.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: [] + relme: + https://baskauf.blogspot.com/: true + last_post_title: Building an Omeka website on AWS + last_post_description: "" + last_post_date: "2023-08-06T14:08:53-07:00" + last_post_link: https://baskauf.blogspot.com/2023/08/building-omeka-website-on-aws.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 671f91cfa7f6e5661dc26b69c5e3c305 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2e3935aa15a8dcfb13c5a89da7ab3d91.md b/content/discover/feed-2e3935aa15a8dcfb13c5a89da7ab3d91.md deleted file mode 100644 index 3816436ae..000000000 --- a/content/discover/feed-2e3935aa15a8dcfb13c5a89da7ab3d91.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Comments for Virtual Andy -date: "1970-01-01T00:00:00Z" -description: Exploring software engineering through the lenses of people, processes, - and technology. -params: - feedlink: https://virtualandy.wordpress.com/comments/feed/ - feedtype: rss - feedid: 2e3935aa15a8dcfb13c5a89da7ab3d91 - websites: - https://virtualandy.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Giving FlowBAT a try by andyhillky - last_post_description: Pull requests are welcome. =) - last_post_date: "2015-12-15T14:00:41Z" - last_post_link: https://virtualandy.wordpress.com/2015/12/14/giving-flowbat-a-try/#comment-478 - last_post_categories: [] - last_post_guid: 8e309bf3281599579f9de3b42419a39d - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2e3fd42a8cc3ab203e24ad18c3fd755c.md b/content/discover/feed-2e3fd42a8cc3ab203e24ad18c3fd755c.md new file mode 100644 index 000000000..5381397c4 --- /dev/null +++ b/content/discover/feed-2e3fd42a8cc3ab203e24ad18c3fd755c.md @@ -0,0 +1,43 @@ +--- +title: Linux Fun +date: "1970-01-01T00:00:00Z" +description: Linux pode ser divertido também! Jogos & aplicativos pouco usuais merecem + seu espaço... +params: + feedlink: https://linux-fun.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 2e3fd42a8cc3ab203e24ad18c3fd755c + websites: + https://linux-fun.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://linux-fun.blogspot.com/: true + last_post_title: De volta à ativa, com Linux + Wii + ScummVM + last_post_description: Esse blog ficou parado tempo demais... como aliás acontece + com os blogs. É assim mesmo, a gente que não vive profissionalmente de escrever + vai e volta. Manter um blog exige foco, atenção, e toma + last_post_date: "2009-07-26T00:02:00Z" + last_post_link: https://linux-fun.blogspot.com/2009/07/esse-blog-ficou-parado-tempo-demais.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 9c4e92e4fd9dfc5844e6358d2ba7a148 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2e4b7b1218b8b32b902c35891c4bc073.md b/content/discover/feed-2e4b7b1218b8b32b902c35891c4bc073.md index ae521ffba..4308004b3 100644 --- a/content/discover/feed-2e4b7b1218b8b32b902c35891c4bc073.md +++ b/content/discover/feed-2e4b7b1218b8b32b902c35891c4bc073.md @@ -14,25 +14,29 @@ params: - https://weidok.al/feed.xml categories: [] relme: {} - last_post_title: Thoughts on Hoselink Garden Hose Reel - last_post_description: |- - This post contains Amazon Affiliate links. As an Amazon Associate I earn from qualifying purchases. - - I recently needed a new garden hose reel for the front yard, and wanted something a bit more - last_post_date: "2024-04-16T16:55:14Z" - last_post_link: https://pdx.su/blog/2024-04-16-thoughts-on-hoselink-garden-hose-reel + last_post_title: Running a minecraft server on fly.io + last_post_description: Running a minecraft server can quickly become an expensive + endeavor. Even a small server needs a reasonably powerful machine to run on, and + with the landscape of hosting providers, that can quickly + last_post_date: "2024-07-08T13:37:07Z" + last_post_link: https://pdx.su/blog/2024-07-08-running-a-minecraft-server-on-fly-io last_post_categories: [] - last_post_guid: e2992eb8072d1573b7633565a7d670c4 + last_post_language: "" + last_post_guid: 84ca04627e893a9c7c5ed5772e6b0660 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-2e4f0bd36cb4f3db3fcbeadf379e9f8a.md b/content/discover/feed-2e4f0bd36cb4f3db3fcbeadf379e9f8a.md deleted file mode 100644 index d3e11183e..000000000 --- a/content/discover/feed-2e4f0bd36cb4f3db3fcbeadf379e9f8a.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Journal of Discoveries -date: "1970-01-01T00:00:00Z" -description: Pique your curiosity with the best articles on personal development, - leadership, technology, and innovation. A weekly collection of hand-picked links - among hundreds of sources. -params: - feedlink: https://robertoferraro.substack.com/feed - feedtype: rss - feedid: 2e4f0bd36cb4f3db3fcbeadf379e9f8a - websites: - https://robertoferraro.substack.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: AI at work is here, now comes the hard part. The rise of the generalist. - The accountability ladder. - last_post_description: Welcome to a new issue of the newsletter, “Journal of discoveries.” - Each week, I check a list of hundreds of sources of inspiration to spot exciting - articles, videos, podcasts, and books on - last_post_date: "2024-06-01T04:30:13Z" - last_post_link: https://robertoferraro.substack.com/p/ai-at-work-is-here-now-comes-the - last_post_categories: [] - last_post_guid: 583e99e957b5652774d3b30e25fdff7d - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2e6d4b39ec4ef1b79e72add6b7a3d38e.md b/content/discover/feed-2e6d4b39ec4ef1b79e72add6b7a3d38e.md deleted file mode 100644 index 2110ff6c7..000000000 --- a/content/discover/feed-2e6d4b39ec4ef1b79e72add6b7a3d38e.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: BasicAppleGuy -date: "1970-01-01T00:00:00Z" -description: Public posts from @BasicAppleGuy@mastodon.social -params: - feedlink: https://mastodon.social/@BasicAppleGuy.rss - feedtype: rss - feedid: 2e6d4b39ec4ef1b79e72add6b7a3d38e - websites: - https://mastodon.social/@BasicAppleGuy: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://basicappleguy.com/: true - https://twitter.com/BasicAppleGuy: false - https://www.buymeacoffee.com/basicappleguy: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2e71699ab210e54ab3e169e31d2e467c.md b/content/discover/feed-2e71699ab210e54ab3e169e31d2e467c.md new file mode 100644 index 000000000..688b581d9 --- /dev/null +++ b/content/discover/feed-2e71699ab210e54ab3e169e31d2e467c.md @@ -0,0 +1,47 @@ +--- +title: The Call of the Wild +date: "2024-02-21T03:04:04-08:00" +description: "" +params: + feedlink: https://call-of-the-wild.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 2e71699ab210e54ab3e169e31d2e467c + websites: + https://call-of-the-wild.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - canoeing + - geospatial + - whitewater + relme: + https://call-of-the-wild.blogspot.com/: true + https://lin-ear-th-inking.blogspot.com/: true + https://www.blogger.com/profile/02383381220154739793: true + last_post_title: Advice on buying a used whitewater canoe + last_post_description: "" + last_post_date: "2012-01-13T19:40:46-08:00" + last_post_link: https://call-of-the-wild.blogspot.com/2012/01/advice-on-buying-used-whitewater-canoe.html + last_post_categories: + - canoeing + - whitewater + last_post_language: "" + last_post_guid: e57c934b29a18bd01933a32255b47dd6 + score_criteria: + cats: 3 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2e7d9a82fa6e7398d00c29df69bc867c.md b/content/discover/feed-2e7d9a82fa6e7398d00c29df69bc867c.md deleted file mode 100644 index d39511b17..000000000 --- a/content/discover/feed-2e7d9a82fa6e7398d00c29df69bc867c.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Padraig Brady -date: "1970-01-01T00:00:00Z" -description: Public posts from @pixelbeat@fosstodon.org -params: - feedlink: https://fosstodon.org/@pixelbeat.rss - feedtype: rss - feedid: 2e7d9a82fa6e7398d00c29df69bc867c - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2e84de18a3ac57d1ca85d57816360c73.md b/content/discover/feed-2e84de18a3ac57d1ca85d57816360c73.md new file mode 100644 index 000000000..11c090cce --- /dev/null +++ b/content/discover/feed-2e84de18a3ac57d1ca85d57816360c73.md @@ -0,0 +1,41 @@ +--- +title: Haskell for Maths +date: "2024-03-19T10:15:25Z" +description: "" +params: + feedlink: https://haskellformaths.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 2e84de18a3ac57d1ca85d57816360c73 + websites: + https://haskellformaths.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://haskellformaths.blogspot.com/: true + https://www.blogger.com/profile/16359932006803389458: true + last_post_title: 'CHAs V: More Hopf Algebra morphisms' + last_post_description: "" + last_post_date: "2012-06-10T18:42:38+01:00" + last_post_link: https://haskellformaths.blogspot.com/2012/06/chas-v-more-hopf-algebra-morphisms.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 27bc307fb40b194dabe64ae0881c6823 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2e8faf8bd96eb6fb73999f6e3a94b04b.md b/content/discover/feed-2e8faf8bd96eb6fb73999f6e3a94b04b.md index fc32871d5..8fcffb7ec 100644 --- a/content/discover/feed-2e8faf8bd96eb6fb73999f6e3a94b04b.md +++ b/content/discover/feed-2e8faf8bd96eb6fb73999f6e3a94b04b.md @@ -14,27 +14,32 @@ params: recommender: [] categories: [] relme: - https://bsky.app/profile/pftnhr.blue: false + https://frittiert.es/: true https://github.com/pftnhr: true - https://micro.blog/pftnhr: false - https://pftnhr.xyz/about/: false - last_post_title: jetzt-mache-ich-also-auch-20240528 - last_post_description: 'Jetzt mache ich also auch YouTube Videos. Mal sehen, wie - lange... YouTubeGerman Vinyl Challenge 2024 mit Robert und Rine - #gvc2024#vinyl…' - last_post_date: "2024-05-28T10:10:39+02:00" - last_post_link: https://pftnhr.xyz/jetzt-mache-ich-also-auch-20240528 + https://pftnhr.xyz/: true + https://pftnhr.xyz/about/: true + last_post_title: heureka-ich-habe-einen-t-20240617 + last_post_description: Heureka! Ich habe einen Therapieplatz! Sorry, musste ich + kurz loswerden. + last_post_date: "2024-06-17T18:43:30+02:00" + last_post_link: https://pftnhr.xyz/heureka-ich-habe-einen-t-20240617 last_post_categories: [] - last_post_guid: 8776c08e15c2aa0e53aaba975de0fa66 + last_post_language: "" + last_post_guid: 06aff748105f93476335dc49678124f5 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: de --- diff --git a/content/discover/feed-2e922e7bb0eb4a5c0d04ef455e720d75.md b/content/discover/feed-2e922e7bb0eb4a5c0d04ef455e720d75.md deleted file mode 100644 index 24f672bc6..000000000 --- a/content/discover/feed-2e922e7bb0eb4a5c0d04ef455e720d75.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Robin Berjon -date: "1970-01-01T00:00:00Z" -description: Public posts from @robin@mastodon.social -params: - feedlink: https://mastodon.social/@robin.rss - feedtype: rss - feedid: 2e922e7bb0eb4a5c0d04ef455e720d75 - websites: - https://mastodon.social/@robin: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://berjon.com/: true - https://bsky.app/profile/robin.berjon.com: false - https://github.com/darobin/: true - https://opencheck.is/wikidata/Q15710842: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2ed4fdad1063e792535d5752e6bbeb74.md b/content/discover/feed-2ed4fdad1063e792535d5752e6bbeb74.md new file mode 100644 index 000000000..0d218729d --- /dev/null +++ b/content/discover/feed-2ed4fdad1063e792535d5752e6bbeb74.md @@ -0,0 +1,416 @@ +--- +title: Linux Grandma +date: "1970-01-01T00:00:00Z" +description: Adventures in Linux, KDE, Kubuntu and Linuxchix. Twitter, Mastodon +params: + feedlink: https://linuxgrandma.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 2ed4fdad1063e792535d5752e6bbeb74 + websites: + https://linuxgrandma.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Ada Lovelace + - Ada Lovelace Day + - Akademy + - Alsachat + - Alzheimer's + - Amarok + - Amarok Handbook + - Amber Graner + - Artful + - Assault + - Audex + - Barbados + - Belarus + - Bellingham + - Berlin + - Blogger + - Brno + - Budapest + - Bugs + - CLI + - CLS + - CWG + - Calibre + - Canonical + - Cantor + - Code of Conduct + - Deb Richardson + - Debian + - Dementia + - Desktop Summit + - Digikam + - Documentation + - Dropbox + - EFF + - Essen + - FLOSS + - FOSS + - Falkon + - Flossmanuals + - Folding@Home + - Freenode + - GCI + - GIT + - GSoC + - Galicia + - Gcompris + - Gentoo + - Global Jam + - Gnome + - Gobby + - Google + - Google Code In + - Google Code-In + - Google Summer of Code + - IRC + - ISO + - Insider + - Iraq + - Israel + - Jews + - Join the Game + - Junior Jobs + - KDE + - KDE Akademy + - KDE Code of Conduct + - KDE Frameworks + - KDE Manifesto + - KDE e.V + - KDE-Apps + - KDE-Multimedia + - KDE.Conf.in + - KDE4 + - Kate + - Kaudiocreator + - Kaziranga + - KdenLive + - Kdevelop + - Kget + - Kmix + - Konversation + - Kopete + - Krita + - Kstars + - Kubuntu + - LFNW + - Labplot + - Launchpad + - Linuxchix + - LinuxfestNW + - Lithuania + - LoCo + - Lucid + - Magni Onsøien + - Mailman + - Mandriva + - Marble + - Maverick + - Minuet + - Music + - NPR + - Neon5 + - Nobel Prize + - OSCON + - OpenRespect + - PCT + - PFLAG + - PPAs + - Palestine + - Phonon + - Plasma + - Plasma 5 + - Plasma Next + - Poland + - Portland + - Pulseaudio + - Qimo + - Qt + - Qt.con + - Qt5 + - Quassel + - Randa + - Ripping CDs + - Rippit + - Rootsweb + - SKCGS + - Samba + - Science + - Season of KDE + - Skype + - SoK + - SoK2014 + - Somalia + - Sound Juicer + - Spain + - Student Programs + - Suse + - Switzerland + - Tallinn + - Tomboy + - UCADay + - UDS + - UDS-N + - UDS-O + - Ubuntu + - Ubuntu-Women + - Userbase + - VLC + - Vienna + - Washington LoCo + - Wikidata + - Wikipedia + - Wikitolearn + - Windows + - Xubuntu + - Zareason + - Zsync + - a11y + - abduction + - accessibility + - advice + - analogy + - anthropology + - argument + - astronomy + - backup + - banned books + - basket + - bias + - biography + - biology + - books + - bug reports + - bullying + - bystander + - cancer + - candor + - categories + - challenges + - change + - charity + - chroot + - class + - cloud-computing + - coding + - coffee + - collaboration + - communication + - community + - compiling + - confrontation + - consciousness + - constructive criticism + - contests + - correction + - creativity + - criticism + - culture + - development + - dialog + - disaster + - diversity + - domestic violence + - eclipse + - education + - encryption + - english + - enterprises + - equality + - evolution + - fantasy + - feminism + - fermented + - films + - firewalls + - folding + - food + - forums + - frameworks + - free software + - freedom + - friends + - fstab + - fundraising + - gPodder + - games + - gardening + - geek culture + - geeks + - genealogy + - girls + - gmail + - goalposts + - goverance + - gpg + - grief + - grub + - grub2 + - gtk + - happiness + - harrassment + - heroes + - hiking + - history + - holocaust + - honesty + - host keys + - human nature + - humans + - humor + - imprisonment + - innovation + - installation + - institutions + - jetlag + - jobs + - justice + - kcm + - kde e.v. + - kefir + - keypair + - keysigning + - kidnapping + - kindness + - ksysguard + - language + - leadership + - life + - linguistics + - linux + - locoteams + - loss + - love + - mail list + - make + - material science + - math + - medieval + - mentoring + - metalinks + - metrics + - milestone + - mirrors + - mobile + - monitoring + - morality + - movies + - neuroscience + - notes + - nutrition + - origami + - packaging + - pastebin + - peace + - permissions + - philosophy + - phycholinguistics + - physics + - podcast + - podcasts + - policy + - politics + - power + - privacy + - problems + - procrastination + - progress + - promotion + - puzzles + - quality + - racism + - rape + - rape-prevention + - reaching out + - redshift + - religion + - research + - respect + - rsync + - sauerkraut + - scripts + - security + - sex + - sex-positive + - sharing + - slavery + - sociobiology + - sphinx + - sprints + - ssh + - standards + - streaming + - students + - tar + - tarball + - tasks + - teams + - technology + - testing + - torrents + - torture + - totalitarianism + - touch + - translation + - travel + - trust + - truth + - ubuntu-bug + - ufyh + - user docs + - vegetables + - virtualbox + - war + - weddings + - welcoming + - wget + - wikis + - women + - women in FOSS + - work + - xkcd + - yogurt + relme: + https://genweblog.blogspot.com/: true + https://linuxgrandma.blogspot.com/: true + https://mastodon.social/@valorie: true + last_post_title: Open Letter to KDE GSoC Students We Could Not Accept + last_post_description: |- + Hello students, + + I no longer have access to your proposal or emails, thus the open letter on my blog. + + If you allowed commenting before the student proposal deadline, I along with other admins and + last_post_date: "2020-05-05T20:38:00Z" + last_post_link: https://linuxgrandma.blogspot.com/2020/05/open-letter-to-kde-gsoc-students-we.html + last_post_categories: + - GSoC + - KDE + - KDE Akademy + - Season of KDE + - community + - mail list + - mentoring + - students + last_post_language: "" + last_post_guid: ecfc59c9489ab977ae2ba38c89c1110a + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2ed649ec0e01d79a010c0b8af2663cf6.md b/content/discover/feed-2ed649ec0e01d79a010c0b8af2663cf6.md new file mode 100644 index 000000000..fd018d5be --- /dev/null +++ b/content/discover/feed-2ed649ec0e01d79a010c0b8af2663cf6.md @@ -0,0 +1,39 @@ +--- +title: endtimes.dev +date: "2023-11-25T00:00:00Z" +description: web development + the end of the world. Personal site of Nathaniel +params: + feedlink: https://endtimes.dev/feed.xml + feedtype: atom + feedid: 2ed649ec0e01d79a010c0b8af2663cf6 + websites: {} + blogrolls: [] + recommended: [] + recommender: + - https://alexsci.com/blog/rss.xml + categories: [] + relme: {} + last_post_title: why lowercase letters save data + last_post_description: "" + last_post_date: "2023-11-25T00:00:00Z" + last_post_link: https://endtimes.dev/why-lowercase-letters-save-data/ + last_post_categories: [] + last_post_language: "" + last_post_guid: cc65502ea50dff9d6eb63b5d253ff842 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 0 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2ee9f88506221765160ac68bf2b90fec.md b/content/discover/feed-2ee9f88506221765160ac68bf2b90fec.md deleted file mode 100644 index 6afbcda15..000000000 --- a/content/discover/feed-2ee9f88506221765160ac68bf2b90fec.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: ProPublica -date: "1970-01-01T00:00:00Z" -description: Public posts from @ProPublica@newsie.social -params: - feedlink: https://newsie.social/@ProPublica.rss - feedtype: rss - feedid: 2ee9f88506221765160ac68bf2b90fec - websites: - https://newsie.social/@ProPublica: true - blogrolls: [] - recommended: [] - recommender: - - http://scripting.com/rss.xml - - http://scripting.com/rssNightly.xml - categories: [] - relme: - https://www.propublica.org/: true - https://www.propublica.org/newsletters/the-big-story: true - https://www.propublica.org/tips/: true - https://www.verifiedjournalist.org/people/@ProPublica@newsie.social: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 15 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2eebc5c9126fdf35f51667a0e0649107.md b/content/discover/feed-2eebc5c9126fdf35f51667a0e0649107.md new file mode 100644 index 000000000..a992dd360 --- /dev/null +++ b/content/discover/feed-2eebc5c9126fdf35f51667a0e0649107.md @@ -0,0 +1,44 @@ +--- +title: Comments for The Changelog +date: "1970-01-01T00:00:00Z" +description: Comments on family, technology, and society +params: + feedlink: https://changelog.complete.org/comments/feed + feedtype: rss + feedid: 2eebc5c9126fdf35f51667a0e0649107 + websites: + https://changelog.complete.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://changelog.complete.org/: true + https://github.com/jgoerzen: true + last_post_title: 'Comment on Photographic comparison: Is the Kobo Libra Colour display + worse than the Kobo Libra 2? by Ben' + last_post_description: Thank you. This is the review I needed. I'd like to upgrade + from a Sony PRS-T1 (2011), which has been a champ. I suppose the screens in either + the Libra 2 or Libra Color would be a dramatic upgrade + last_post_date: "2024-06-19T01:41:14Z" + last_post_link: https://changelog.complete.org/archives/10671-photographic-comparison-is-the-kobo-libra-colour-display-worse-than-the-kobo-libra-2#comment-2410675 + last_post_categories: [] + last_post_language: "" + last_post_guid: b13861f5831a1e830ec46acea02386c5 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2eedc9fcffa72ae950e6d4f248e4ac9d.md b/content/discover/feed-2eedc9fcffa72ae950e6d4f248e4ac9d.md new file mode 100644 index 000000000..dfe827b69 --- /dev/null +++ b/content/discover/feed-2eedc9fcffa72ae950e6d4f248e4ac9d.md @@ -0,0 +1,80 @@ +--- +title: Qt, linux and everything +date: "2024-05-14T17:39:50+10:00" +description: |- + thoughts from a developer. + Author of Hands-on Mobile and Embedded Development with Qt 5 http://bit.ly/HandsOnMobileEmbedded +params: + feedlink: https://qtandeverything.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 2eedc9fcffa72ae950e6d4f248e4ac9d + websites: + https://qtandeverything.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 1st post + - Canonical + - Gutenberg Project + - Gutenbrowser + - IoT + - Jolla + - MeeGo + - Mer + - Python + - Qt6 + - QtQuick3d + - Sailfish OS + - Ubuntu + - WebAssembly + - benchmarks + - cmake + - embedded + - greenphone + - gtk + - mobile + - neo + - open source + - openmoko + - qmake + - qml + - qsensors + - qt + - qtopia + - sensors + - simd + - snappy + - tmake + - trolltech + - wasm + - web + relme: + https://polityblog.blogspot.com/: true + https://qtandeverything.blogspot.com/: true + https://www.blogger.com/profile/08211459741197454860: true + last_post_title: 'Qt6 Webassembly: QtMultimedia or, How to play a video in a web + browser using Qt' + last_post_description: "" + last_post_date: "2023-07-10T12:41:43+10:00" + last_post_link: https://qtandeverything.blogspot.com/2023/07/qt6-webassembly-qtmultimedia-or-how-to.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 283d55622a43fa44bfce4edac914fb21 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2ef1fa362c69e91ad246000033d4215c.md b/content/discover/feed-2ef1fa362c69e91ad246000033d4215c.md deleted file mode 100644 index b9d67cffe..000000000 --- a/content/discover/feed-2ef1fa362c69e91ad246000033d4215c.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Exploding Comma -date: "1970-01-01T00:00:00Z" -description: I live in Western Mass, I have escaped corporate IT, and I miss the Web - As It Was. I also like pen and paper. -params: - feedlink: https://explodingcomma.com/podcast.xml - feedtype: rss - feedid: 2ef1fa362c69e91ad246000033d4215c - websites: - https://explodingcomma.com/: true - https://www.explodingcomma.com/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Society & Culture - relme: - https://greenfield.social/@Pete: true - https://micro.blog/petebrown: false - https://social.lol/@petebrown: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 1 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 11 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-2ef8a924afded10a2db360448e37c38b.md b/content/discover/feed-2ef8a924afded10a2db360448e37c38b.md index 125cf9206..1a408d1a9 100644 --- a/content/discover/feed-2ef8a924afded10a2db360448e37c38b.md +++ b/content/discover/feed-2ef8a924afded10a2db360448e37c38b.md @@ -8,41 +8,46 @@ params: feedid: 2ef8a924afded10a2db360448e37c38b websites: https://andysylvester.com/: true - https://www.andysylvester.com/: false blogrolls: [] recommended: [] recommender: - https://colinwalker.blog/dailyfeed.xml - https://colinwalker.blog/livefeed.xml + - https://frankmcpherson.blog/feed.xml categories: - - Elections + - ChatGPT + - Feed Readers + - Feeds - Micro.Blog - - Politics - - Trump relme: - https://github.com/andysylvester: false - https://twitter.com/AndySylvester99: false - last_post_title: Trump convicted in NY election interference case - last_post_description: 'The pictures say it all: And, of course, from the Queens - Daily Eagle – Queens man convicted:' - last_post_date: "2024-05-31T10:44:57-07:00" - last_post_link: https://andysylvester.com/2024/05/31/trump-convicted-in-ny-election-interference-case/ + https://andysylvester.com/: true + last_post_title: Using ChatGPT to convert a list of feed URLs to OPML + last_post_description: After seeing the interest in blogrolls by Dave Winer, I decided + to spend some time updating my RSS subscription list and learning about using + ChatGPT as a programmers’ assistant at the same time. I + last_post_date: "2024-07-08T15:38:44-07:00" + last_post_link: https://andysylvester.com/2024/07/08/using-chatgpt-to-convert-a-list-of-feed-urls-to-opml/ last_post_categories: - - Elections + - ChatGPT + - Feed Readers + - Feeds - Micro.Blog - - Politics - - Trump - last_post_guid: f210a1c2b21bf03b64521bfe7230b44e + last_post_language: "" + last_post_guid: f7caa27c3dfda8c9744d2266c5b8a052 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 17 + score: 22 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-2efd3d904b298b4088d6b6ba1aaf3216.md b/content/discover/feed-2efd3d904b298b4088d6b6ba1aaf3216.md deleted file mode 100644 index 234e26bd3..000000000 --- a/content/discover/feed-2efd3d904b298b4088d6b6ba1aaf3216.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Aral Balkan -date: "1970-01-01T00:00:00Z" -description: Public posts from @aral@mastodon.ar.al -params: - feedlink: https://mastodon.ar.al/@aral.rss - feedtype: rss - feedid: 2efd3d904b298b4088d6b6ba1aaf3216 - websites: - https://mastodon.ar.al/@aral: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://ar.al/: true - https://codeberg.org/kitten/app: true - https://owncast.small-web.org/: false - https://small-tech.org/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2f02a05b9ae2b09d6abb5aa771db4a68.md b/content/discover/feed-2f02a05b9ae2b09d6abb5aa771db4a68.md new file mode 100644 index 000000000..b2391f1db --- /dev/null +++ b/content/discover/feed-2f02a05b9ae2b09d6abb5aa771db4a68.md @@ -0,0 +1,42 @@ +--- +title: The Go Blog +date: "2024-05-02T00:00:00Z" +description: "" +params: + feedlink: https://go.dev/blog/feed.atom + feedtype: atom + feedid: 2f02a05b9ae2b09d6abb5aa771db4a68 + websites: {} + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: [] + relme: {} + last_post_title: Secure Randomness in Go 1.22 + last_post_description: ChaCha8Rand is a new cryptographically secure pseudorandom + number generator used in Go 1.22. + last_post_date: "2024-05-02T00:00:00Z" + last_post_link: https://go.dev/blog/chacha8rand + last_post_categories: [] + last_post_language: "" + last_post_guid: 335396debce2edb2d751d3f67a62e047 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 0 + score: 11 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2f1f7d03ffb723669d7bd30cbfb0d708.md b/content/discover/feed-2f1f7d03ffb723669d7bd30cbfb0d708.md deleted file mode 100644 index b22e28a61..000000000 --- a/content/discover/feed-2f1f7d03ffb723669d7bd30cbfb0d708.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Sebastian Hoffback -date: "1970-01-01T00:00:00Z" -description: Public posts from @isnan@hachyderm.io -params: - feedlink: https://hachyderm.io/@isnan.rss - feedtype: rss - feedid: 2f1f7d03ffb723669d7bd30cbfb0d708 - websites: - https://hachyderm.io/@isnan: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/sebastian-claesson: true - https://hachyderm.io/@vecka: true - https://twitter.com/isnanen: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2f2d01213c23c1cc6dbd8520d7c1768f.md b/content/discover/feed-2f2d01213c23c1cc6dbd8520d7c1768f.md new file mode 100644 index 000000000..12d6eb6d0 --- /dev/null +++ b/content/discover/feed-2f2d01213c23c1cc6dbd8520d7c1768f.md @@ -0,0 +1,43 @@ +--- +title: emacs on tychoish +date: "1970-01-01T00:00:00Z" +description: Recent content in emacs on tychoish +params: + feedlink: https://tychoish.com/tags/emacs/index.xml + feedtype: rss + feedid: 2f2d01213c23c1cc6dbd8520d7c1768f + websites: + https://tychoish.com/tags/emacs/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://tychoish.com/tags/emacs/: true + last_post_title: Emacs Stability + last_post_description: |- + A while ago I packaged up my emacs configuration for the world to see/use and I'm pretty proud of this thing: + it works well out of the box, it's super minimal and speedy, and has all of + the features. + last_post_date: "2022-03-03T00:00:00Z" + last_post_link: https://tychoish.com/post/emacs-stability/ + last_post_categories: [] + last_post_language: "" + last_post_guid: ffc7599a86dd0a56580cdfcd879b80f7 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-2f31135f9ac58f61d9349e02ed19c1c3.md b/content/discover/feed-2f31135f9ac58f61d9349e02ed19c1c3.md new file mode 100644 index 000000000..9ba6e854e --- /dev/null +++ b/content/discover/feed-2f31135f9ac58f61d9349e02ed19c1c3.md @@ -0,0 +1,541 @@ +--- +title: TSDgeos' blog +date: "2024-07-01T07:48:21+02:00" +description: A blog about random things and sometimes about my work translating and + developing KDE and anything +params: + feedlink: https://tsdgeos.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 2f31135f9ac58f61d9349e02ed19c1c3 + websites: + https://tsdgeos.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - "15" + - "15.08" + - "16.08" + - "1984" + - "2009" + - "2010" + - "2011" + - "2012" + - "2014" + - 2nd bag + - 3g dongle + - "4.10" + - "4.11" + - "4.12" + - "4.13" + - "4.14" + - "4.3" + - "4.4" + - "4.6" + - 4.6.4 + - "4.7" + - "5.4" + - Adobe-Japan2 + - Apple + - Benq + - Bulgarian + - C++ + - C++11 + - CVE + - Denver + - FLOSS + - FP937s+ + - George Orwell + - Hebrew + - Hindi + - IRC + - Icelandic + - KDE Qt5 Patch Collection + - Kannada + - Libre Application Summit + - Maithili + - Messages.sh + - PS2 + - Q_FOREACH + - Qt Quick + - RArray + - RENFE + - RThread + - S60 + - STACK + - Symbian + - Translators + - Wallon + - XF86XK_TouchpadToggle + - Z10 + - active + - aditel + - adobe + - aer lingus + - ahtec + - airport + - akademy + - akademy-es + - akonadi + - alaska + - alignment + - amd 64 + - ampliware + - annotations + - apemit + - apn + - arc + - asan + - ateneatech + - ati + - ballot paper + - barcelona + - battery + - berlin + - berlios + - bilbao + - birthday + - blackberry + - blinken + - blog + - blogs + - board + - bomber + - book + - buenos presagios + - bug + - bugs.kde.org + - bugzilla + - build order + - caliu + - call for papers + - canon + - canonical + - capacity + - catalan + - cd + - certification + - changelog + - changelogs + - chm + - chmk + - chmlib + - clang + - closed source + - cmake + - cmap + - comment + - community + - compal + - conan + - consistency + - coruña + - cpu + - craigslist + - crash + - cryptography + - css + - cups + - ddrescue + - debian + - debugging + - decorations + - deprecated + - designer + - desktop summit + - devdays + - diagonal + - digikam + - dinner + - disambiguation + - donate + - donations + - driver + - drm + - dublin + - dvd + - eagain + - ebook-tools + - eclipse + - ecryptfs + - electronics + - email + - epub + - erase + - español + - etseib + - european union + - events + - evince + - extracomment + - fan + - fedora + - fglrx + - fib + - fiber + - firefox + - firmware + - flathub + - flatpak + - foreach + - fork + - format + - forms + - forum + - free software + - freenode + - freeze + - frisian + - fundraising + - fuzzing + - g++ + - games + - gardening + - gcc + - gcds + - gcompris + - gdb + - ggz + - ghostscript + - git + - git mr + - github + - gitlab + - gitorious + - gluon + - gnome + - go + - good omens + - gopher + - gpg + - gphoto + - gpl + - gpul + - gran canaria desktop summit + - graphics + - grep + - gs + - gsoc + - gtali + - gtk + - guadalinex + - gujarati + - gutsy + - hardy + - harmattan + - hd + - helgrind + - hp + - hplip + - html + - i18n + - iberia + - inheritance + - inkscape + - intel + - interlingua + - internationalization + - interview + - iparty + - iphone + - isp + - ixus + - ixus 850 + - jargon + - jaunty + - jointhegame + - jornadespl + - jpeg2000 + - junior job + - k3b + - kalzium + - kate + - kde + - kde 4 + - kde 4.0.0 + - kde 4.10 + - kde 4.14 + - kde 4.2 + - kde 4.7 + - kde 4.8 + - kde 4.9 + - kde applications + - kde españa + - kde frameworks + - kde gear + - kde sc + - kde-edu + - kde4 + - kdeblog + - kdeedu + - kdegames + - kdelibs + - kdemail + - kdm + - kernel + - keyboard + - kf5 + - kgeography + - khtml + - kile + - kio + - kiriki + - knetwalk + - kolourpaint + - konq-kubuntu.rc + - konqueror + - konsole + - konversation + - kparts + - kpdf + - kpovmodeler + - krecipes + - kreversi + - ktank + - ktouchpadenabler + - ktubering + - ktuberling + - kubuntu + - kwallet + - kwalleteditor + - l10n + - labtec + - laptop + - lcms + - lfs + - libdvdcss + - libgs + - libraries + - libre software world conference + - libspectre + - life + - linex + - linux + - linux from scratch + - linux magazine + - lists + - lswc + - lts + - madrid + - maemo + - maemon + - mailing list + - malaga + - mandriva + - manifesto + - mechanics + - meego + - meego conference + - mercè molist + - merge + - milan + - miraveo + - modern art + - monitor + - move semantics + - mozilla + - multimania + - multitouch + - munich + - municipal elections + - n9 + - n900 + - n950 + - neil gaiman + - networkmanager + - nokia + - nuremberg + - okular + - onboarding + - openc++ + - openjpeg + - opensource + - opensuse + - oss-fuzz + - ossbarcamp + - oxford university press + - pam + - paris + - patches + - pdf + - pdftk + - pdftotext + - perl + - phabricator + - php + - picasa + - planet + - plasma + - pledgie + - plugins + - policy + - politics + - poll + - pompidou + - poppler + - poppler-data + - postcards + - postscript + - print + - printing + - prison break + - promo + - ps + - psc 1610 + - pthread + - qca + - qdeepcopy + - qfile + - qgraphicsitem + - qgraphicsscene + - qgraphicsview + - qimage + - qjsvalue + - qml + - qmllint + - qt + - qt3support + - qt4 + - qt4 dance + - qtcs + - qtest + - qvariant + - r300 + - r3v + - radeon + - randa + - raster + - release + - release party + - release schedule + - release team + - relicensing + - remote + - renault + - results + - reviewboard + - rgb32 + - rsibreak + - ryanair + - save + - scam + - schedule + - scribus + - search engines + - security + - segovia + - signal + - signatures + - sjfonts + - slides + - soc + - software freedom day + - solid + - spain + - spanish + - specs + - speed + - sprint + - square trade + - stable + - step + - streaming + - strigi + - strikeout + - stringstream + - subversion + - supporting member + - survey + - suse + - svg + - svn + - swindle + - system settings + - talk + - talks + - tampere + - taxipilot + - temperature + - termens + - terminal 2 + - terry pratchett + - text selection + - theme + - thread + - tiff + - tiled rendering + - top 10 + - touch + - touch screen + - touchpad + - toursim + - trambaix + - translate + - translation + - tui + - turing + - ubuntu + - ufocoders + - unicode + - unit testing + - universal + - upc + - valencia + - valgrind + - video + - videos + - viena + - vienna + - viewer + - vigo + - virtuoso + - vlc + - volunteer + - warning + - warranty + - wcgrep + - web + - web developer + - web shortcuts + - website + - windows + - wish + - workshop + - x11 + - xinput + - xml + - xpdfrc + - xps + - ya.com + - yahtzee + - zaragoza + relme: + https://blinkenharmattan.blogspot.com/: true + https://flagsquiz.blogspot.com/: true + https://tsdgeos-es.blogspot.com/: true + https://tsdgeos.blogspot.com/: true + https://www.blogger.com/profile/12001470108926138921: true + last_post_title: KDE Gear 24.08 release schedule + last_post_description: "" + last_post_date: "2024-06-14T19:38:07+02:00" + last_post_link: https://tsdgeos.blogspot.com/2024/06/kde-gear-2408-release-schedule.html + last_post_categories: [] + last_post_language: "" + last_post_guid: dd78eead003682845bde33a09f360c47 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2f3b7122669c537767a59bf932c387ec.md b/content/discover/feed-2f3b7122669c537767a59bf932c387ec.md new file mode 100644 index 000000000..9f9d9c097 --- /dev/null +++ b/content/discover/feed-2f3b7122669c537767a59bf932c387ec.md @@ -0,0 +1,161 @@ +--- +title: Coder's Talk +date: "2024-07-07T15:15:32+08:00" +description: Having Fun with Computer, Gadget, Programming, Electrical & Electronic, + Robotic and Technology +params: + feedlink: https://coderstalk.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 2f3b7122669c537767a59bf932c387ec + websites: + https://coderstalk.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - API + - About me + - ActivePerl + - ActiveState + - AlmaLinux + - Android + - C Programming + - C++ Programming + - Cheat Code + - Cloud Computing + - Command Line + - Computer Science + - DevOps + - HTML + - Hackers + - HitungHari + - LISP + - Linux Optimization + - Linux shell script + - Microsoft TechNet + - MySQL + - OSDC.my + - Operating System + - Perl + - Perl Express + - Perl IDE + - PowerShell + - Profound Vibra + - Programming + - Python Server Page + - SSH + - Scripting Games + - SendMessage + - Socket + - Software Engineering + - StretchBlt + - TS-ARM + - Technology + - The Officials + - Top Individual Scores + - Ubuntu + - VB + - VB6 + - VBScript + - VBScript Beginners Division + - Vibration Measurement + - Videos + - Visual basic + - WM_COMMAND + - Wii + - Windows XP + - XP Style + - anime + - audio + - baby + - bash + - blog + - blogspot hack + - bunsenlabs + - coder's talk + - computer + - css + - database + - database design + - database system + - debian + - electronic + - embedded system + - fakap + - flip form + - gadget + - gprs + - gsm modem + - how to + - install + - internet connection + - it's all about the pentiums + - java web application + - javascript + - kvm + - linux + - mobile phone + - more + - mp3 + - my notes + - networking + - open source + - pagerank + - pentium + - pentium processor + - php + - php programming + - python + - qemu + - rar + - scripting + - squid + - tips and tricks + - translation + - ts-7000 + - ts-7260 + - tutorial + - unix shell + - unrar + - web interface + - web master + - web programming + - weird al yankovic + - wireless + - wordpress + - world's smallest website + - xrandr + - xss + relme: + https://coderstalk.blogspot.com/: true + https://draft.blogger.com/profile/10350138531363117428: true + last_post_title: 'Understanding vm.swappiness: Improving Linux Performance and Memory + Management' + last_post_description: "" + last_post_date: "2023-07-24T07:42:18+08:00" + last_post_link: https://coderstalk.blogspot.com/2023/07/understanding-vmswappiness-improving.html + last_post_categories: + - DevOps + - Linux Optimization + - Operating System + - linux + - open source + last_post_language: "" + last_post_guid: faf9b22096961a7e1c59d8c4eebdc91b + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2f58eef2cecbc5149bf13e9351918009.md b/content/discover/feed-2f58eef2cecbc5149bf13e9351918009.md new file mode 100644 index 000000000..5a938948e --- /dev/null +++ b/content/discover/feed-2f58eef2cecbc5149bf13e9351918009.md @@ -0,0 +1,49 @@ +--- +title: TuxPhones - Linux phones, tablets and portable devices +date: "1970-01-01T00:00:00Z" +description: Linux on phones, tablets and wearables +params: + feedlink: https://tuxphones.com/rss/ + feedtype: rss + feedid: 2f58eef2cecbc5149bf13e9351918009 + websites: + https://tuxphones.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Linux Smartphone + - Opinion + - Security + relme: + https://fosstodon.org/@tuxdevices: true + https://tuxphones.com/: true + last_post_title: Linux phones are not automatically secure + last_post_description: A common point in the Linux community is that escaping the + walled garden of ecosystems like Android or iOS is already a means to higher security. + Having no contact with Google or Apple servers ever + last_post_date: "2023-01-25T08:07:23Z" + last_post_link: https://tuxphones.com/linux-mobile-devices-are-not-inherently-secure/ + last_post_categories: + - Linux Smartphone + - Opinion + - Security + last_post_language: "" + last_post_guid: 0b890e59367a4a196e1667b088c21a83 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2f89b5644d598174916a90ef8733ac33.md b/content/discover/feed-2f89b5644d598174916a90ef8733ac33.md deleted file mode 100644 index b13d95a63..000000000 --- a/content/discover/feed-2f89b5644d598174916a90ef8733ac33.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Bitsplitting -date: "1970-01-01T00:00:00Z" -description: The Bitsplitting podcast features interviews with people from the greater - tech industry, with an emphasis on personal backgrounds and how each guest's philosophies - have affected the arc of their -params: - feedlink: https://bitsplitting.org/feed/podcast - feedtype: rss - feedid: 2f89b5644d598174916a90ef8733ac33 - websites: - https://bitsplitting.org/: false - https://bitsplitting.org/series/bitsplitting/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Business - - Society & Culture - - Technology - relme: {} - last_post_title: Season 1 Closing Message - last_post_description: This marks the end of the first season of Bitsplitting. After - 10 episodes with 10 great guests, Daniel has decided to take a break. You can - learn more at bitsplitting.org/break. - last_post_date: "2013-08-05T15:18:19Z" - last_post_link: https://bitsplitting.org/podcast/season-1-closing-message/ - last_post_categories: [] - last_post_guid: 826b4f997cad2f9f1342095967da232f - score_criteria: - cats: 3 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-2f92f01b3f12d728de7bab520d38b699.md b/content/discover/feed-2f92f01b3f12d728de7bab520d38b699.md deleted file mode 100644 index 400b915ed..000000000 --- a/content/discover/feed-2f92f01b3f12d728de7bab520d38b699.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: '@robin.berjon.com - Robin Berjon' -date: "1970-01-01T00:00:00Z" -description: |- - Governance & Standards @ Protocol Labs. - Working to put human agency back into technology. - - web, science, politics, philosophy, cats, horrendous puns - - blog: https://berjon.com/ - - fmr W3C, NYT, -params: - feedlink: https://bsky.app/profile/did:plc:izttpdp3l6vss5crelt5kcux/rss - feedtype: rss - feedid: 2f92f01b3f12d728de7bab520d38b699 - websites: - https://bsky.app/profile/robin.berjon.com: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2f99451872ef169a7a163b6599fa17ec.md b/content/discover/feed-2f99451872ef169a7a163b6599fa17ec.md new file mode 100644 index 000000000..75de519cd --- /dev/null +++ b/content/discover/feed-2f99451872ef169a7a163b6599fa17ec.md @@ -0,0 +1,83 @@ +--- +title: koweycode +date: "2024-02-19T15:59:50+01:00" +description: Hobby-hacking Eric +params: + feedlink: https://koweycode.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 2f99451872ef169a7a163b6599fa17ec + websites: + https://koweycode.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - btsg + - cabal + - checkquick + - chinese + - darcs + - example + - français + - french + - gitit + - gtd + - gui + - haskell + - haskell wikibook + - haskell.fr + - house + - idea + - irc + - learning + - learning haskell + - library + - mac + - mail + - maybench + - mercurial + - monads + - mutt + - newbie + - nlp + - oops + - pandoc + - parallels + - quickcheck + - revctrl + - teaching + - tips + - tutorial + - vim + - wishlist + - wxhaskell + - yaht + relme: + https://gfdjax.blogspot.com/: true + https://koweycode.blogspot.com/: true + https://messageto.blogspot.com/: true + https://www.blogger.com/profile/11175806459477851520: true + last_post_title: moved to erickow.com + last_post_description: "" + last_post_date: "2013-03-17T09:35:36+01:00" + last_post_link: https://koweycode.blogspot.com/2013/03/moved-to-erickowcom.html + last_post_categories: [] + last_post_language: "" + last_post_guid: ec41d66b785805ae3575e2b770309bf7 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2f9a3834ba05fff37fc639f4b0c2ab13.md b/content/discover/feed-2f9a3834ba05fff37fc639f4b0c2ab13.md deleted file mode 100644 index 86f3005be..000000000 --- a/content/discover/feed-2f9a3834ba05fff37fc639f4b0c2ab13.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for FlohGro -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://flohgro.com/comments/feed/ - feedtype: rss - feedid: 2f9a3834ba05fff37fc639f4b0c2ab13 - websites: - https://flohgro.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on A new Home for my Personal Notes by Migrating Notes - from Craft to Obsidian – FlohGro - last_post_description: '[…] my last post A new Home for my Personal Notes I explained - why I decided to move my notes from Craft to Obsidian. A few readers reached out - to […]' - last_post_date: "2022-10-27T19:58:45Z" - last_post_link: https://flohgro.com/obsidian/a-new-home-for-my-personal-notes/#comment-11 - last_post_categories: [] - last_post_guid: c7c8b1c55e3d0a2beebf3dd22d5ebfca - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2f9cf6678f9f69a1396ff41c6f49e00d.md b/content/discover/feed-2f9cf6678f9f69a1396ff41c6f49e00d.md new file mode 100644 index 000000000..dbb8fef1c --- /dev/null +++ b/content/discover/feed-2f9cf6678f9f69a1396ff41c6f49e00d.md @@ -0,0 +1,217 @@ +--- +title: Paul Cobbaut's blog +date: "2024-06-15T11:01:02+02:00" +description: "" +params: + feedlink: https://cobbaut.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 2f9cf6678f9f69a1396ff41c6f49e00d + websites: + https://cobbaut.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - "2009" + - "2010" + - "42" + - E-ID + - FreeCAD + - Python + - Raspberry Pi + - adsl + - allergie + - android + - angel + - antwerpen + - atari + - badware + - bank + - bar nautico + - barcamp + - bash + - bca + - beer + - belgacom + - belgium + - bind + - blog + - bluetooth + - bookmark + - books + - brussel + - buffy + - censuur + - china + - chocolade + - chocomousse + - clevo d900k + - cobbaut + - computers + - country feedback club + - creme-a-beurre + - dax + - death + - debian + - dell + - dns + - drie bloemetjes + - drie sterretjes + - drm + - ecology + - economy + - facebook + - familie + - famous people + - fantasy + - fietsen + - floss + - food + - fop + - fun + - future + - game + - geekdinner + - girlgeekdinner + - gods + - google + - hard disk + - health + - honden + - htc hero + - huis + - hypes + - iSCSI + - inbrekers + - inkscape + - iran + - java + - kassei + - kasteelbier + - kiss + - kookles + - ksh + - laika + - lange wapper + - laptop + - lego + - leuven + - liger + - limbo + - linux + - linux-training + - loadays + - lt + - lvm + - max + - me + - mindstorms + - money + - music + - mwbbq + - nmbs + - novell + - nxt + - open + - open source + - open standards + - oracle + - orca + - pasha + - patents + - personal + - piraten + - politics + - politiek + - poverty + - power saving + - privacy + - raid + - raika + - religie + - robots + - roken + - sam + - samba + - sata + - scareware + - sci-fi + - science + - seks + - shaka + - sjoklat + - sjokomoes + - slashdot + - slechtziend + - snapshot + - solaris + - space + - spam + - sparc + - ss4000 + - standaard.be + - stargate + - stok + - storage + - stupid + - sunblade + - superstition + - svg + - tenderfeelings + - tenerife + - tennis + - theaterplein + - tide bestek + - time + - tmux + - traffic + - training + - ubuntu + - usb + - vagrant + - veggie + - veranda + - vi + - virtualbox + - virus + - virussen + - visa + - vmware + - vogelmarkt + - vrienden + - vrt + - waarschoot + - wear + - wechelderzande + - wolf + - woodfever + - xml + - zfs + - zwemmen + relme: + https://cobbaut.blogspot.com/: true + https://www.blogger.com/profile/12690770983694921987: true + last_post_title: 'book: Gabor Mate, Scattered Minds' + last_post_description: "" + last_post_date: "2024-06-15T11:00:30+02:00" + last_post_link: https://cobbaut.blogspot.com/2024/06/book-gabor-mate-scattered-minds.html + last_post_categories: [] + last_post_language: "" + last_post_guid: a815b82841252dbd4cbc6912c57d208c + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-2fab4555c7726eb030e13f144def698b.md b/content/discover/feed-2fab4555c7726eb030e13f144def698b.md deleted file mode 100644 index b2beedd36..000000000 --- a/content/discover/feed-2fab4555c7726eb030e13f144def698b.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Vimeo / Jeremy Keith’s videos -date: "2013-04-09T04:09:17-04:00" -description: Videos uploaded by Jeremy Keith on Vimeo. -params: - feedlink: https://vimeo.com/adactio/videos/rss - feedtype: rss - feedid: 2fab4555c7726eb030e13f144def698b - websites: - https://vimeo.com/adactio: false - https://vimeo.com/adactio/videos: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Clearleft Device Lab - last_post_description: http://clearleft.com/does/test-lab - last_post_date: "2013-04-09T04:09:17-04:00" - last_post_link: https://vimeo.com/63637733 - last_post_categories: [] - last_post_guid: 874fc533f5a5de83358fa1d07fe177c7 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2fb18dd387fbc222f7afbc0eba965f74.md b/content/discover/feed-2fb18dd387fbc222f7afbc0eba965f74.md deleted file mode 100644 index 804ceaff3..000000000 --- a/content/discover/feed-2fb18dd387fbc222f7afbc0eba965f74.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Mailchimp for WordPress -date: "2024-02-21T10:52:28+01:00" -description: 'The #1 WordPress plugin to integrate your WordPress site with Mailchimp.' -params: - feedlink: https://www.mc4wp.com/feed.xml - feedtype: atom - feedid: 2fb18dd387fbc222f7afbc0eba965f74 - websites: - https://www.mc4wp.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: User survey 2020 - last_post_description: We are constantly monitoring our support tickets for input - in trying to determine what we should be working on. Whether that is improving - an existing feature already in the plugin, adding a new - last_post_date: "2020-01-15T11:49:00+01:00" - last_post_link: https://www.mc4wp.com/blog/user-survey/ - last_post_categories: [] - last_post_guid: 6154c05ba2f5447b85348d9291e7db9e - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-2fb91cffed8b83f210315af6c24db0b4.md b/content/discover/feed-2fb91cffed8b83f210315af6c24db0b4.md index 2f293a8b1..68b0696bc 100644 --- a/content/discover/feed-2fb91cffed8b83f210315af6c24db0b4.md +++ b/content/discover/feed-2fb91cffed8b83f210315af6c24db0b4.md @@ -11,26 +11,33 @@ params: recommended: [] recommender: - http://scripting.com/rss.xml + - http://scripting.com/rssNightly.xml categories: [] relme: {} - last_post_title: Hacking our way to better team meetings - last_post_description: My team and I set out to build a simple note taking aide, - which transcribes and summarizes our meetings using Bedrock. Today, we’re making - the proof of concept available to everyone. - last_post_date: "2024-05-08T06:30:00-08:00" - last_post_link: https://www.allthingsdistributed.com/2024/05/hacking-our-way-to-better-team-meetings.html?utm_campaign=inbound&utm_source=rss + last_post_title: 'Introducing Distill CLI: An efficient, Rust-powered tool for media + summarization' + last_post_description: After a few code reviews from Rustaceans at Amazon and a + bit of polishing, I'm ready to share the Distill CLI. An open-source tool written + in Rust for summarizing meetings and other media that uses + last_post_date: "2024-06-18T06:30:00-08:00" + last_post_link: https://www.allthingsdistributed.com/2024/06/introducing-distill-cli.html?utm_campaign=inbound&utm_source=rss last_post_categories: [] - last_post_guid: 05bf026a99b468a8ca4c851072507411 + last_post_language: "" + last_post_guid: 133245aa07a73e637b7171469e4d5b65 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 11 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-30249be5847f2caa4454487b1d7a608f.md b/content/discover/feed-30249be5847f2caa4454487b1d7a608f.md deleted file mode 100644 index 31f6c6e42..000000000 --- a/content/discover/feed-30249be5847f2caa4454487b1d7a608f.md +++ /dev/null @@ -1,289 +0,0 @@ ---- -title: Learning Linux System Administration -date: "2024-03-13T09:38:31-07:00" -description: Linux - Docker - Ansible - Fedora - CentOS - Enterprise Linux - Python - - TCP/IP - DevOps - System Administration - Internet - Scaling - Hacking - Load - Balancing - Uptime - High Availability - Cloud - -params: - feedlink: https://blog.adityapatawari.com/feeds/posts/default/-/OpenStack - feedtype: atom - feedid: 30249be5847f2caa4454487b1d7a608f - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Linux - - system administration - - system admin - - Security - - Fedora - - Networking - - Apache - - Servers - - monitoring - - IP Address - - Network - - Ubuntu - - automation - - ssl - - Apache HTTP Server - - OpenStack - - OpenStack101 - - configuration - - error - - raspberry pi - - Encryption - - GNU - - Iptables - - Puppet - - Transmission Control Protocol - - alert - - docker - - rpm - - troubleshooting - - uptime - - .htaccess - - /boot - - /etc - - Beginner - - Domains - - Firewalls - - GnuPG - - HTTP 404 - - Linux Kernel - - MYST - - Mail Server - - Network Performance - - Network address translation - - Packet (information technology) - - Promiscuous mode - - Protocols - - Red Hat - - Repository - - TCP - - Twitter - - URL redirection - - arch - - arm - - armv6 - - containers - - encrypt everything - - file system - - firewall - - keystone - - logs - - owncloud - - process - - swift - - vulnerability - - website security - - windows - - x server - - xfce - - .htpasswd - - /home - - /lib - - /proc - - AWK - - Alternatives - - Apache Hadoop - - CC - - CMS - - CPU time - - Certificate - - Certificate authority - - Clean URL - - Content Management System - - Creative Commons - - Customization - - DES - - Daemontools - - Distribution - - Distro - - Drupal - - Facebook - - Fedora (operating system) - - Filesystem Hierarchy Standard - - Firefox - - Flavour - - Free Software - - Fstab - - GAWK - - GNOME - - GPL - - Group - - HBase - - IE - - Internet Explorer - - Internet Protocol - - Iostat - - Java - - KDE - - Kernel - - Kickstart - - Kill - - LGPL - - License - - Linus Torvalds - - Log analysis - - Mandriva - - Marketing - - MySQL - - NTFS - - Nettech - - Network Monitoring - - Network interface controller - - Network packet - - Open Office - - OpenSSL - - Operating Systems - - Operating system - - POSIX - - Packet capture - - Page - - Phoronix - - Process (computing) - - Public Key Infrastructure - - RPM Package Manager - - RSA - - Red Hat Enterprise Linux - - Regular expression - - Rewrite engine - - SIGKILL - - SIGTERM - - Scientific Linux - - Signals - - Strace - - System call - - Tcpdump - - Text Processing - - Transmission Protocols - - Trick - - UDP - - UNIX - - Uniform Resource Locator - - Virtual Machine Manager - - Virtual hosting - - Virtual machine - - WEBrick - - Web Hosting - - Wireshark - - amarok - - ansible - - apache2 - - availability - - big data - - bittorrent - - certificate signing request - - chroot - - cloud - - cluster - - command - - compilation - - configuration management - - cron - - crontab - - dd - - deploy - - directory listing - - directory system - - disk management - - dm-crypt - - evolution - - ext3 - - ext4 - - firewall builder - - fwbuilder - - github - - graph - - grep - - grub - - gummi - - hadoop - - hard link - - http - - inode - - istat - - koji - - kubernetes - - kvm - - latency - - latex - - localhost.crt - - login - - logrotate - - luks - - lvm - - lvm2 - - midori - - mod_rewrite - - monit - - munin - - nat - - nc - - netcat - - nginx - - open elec - - optimization - - packaging - - packet filtering - - password protection - - presentation - - pulp - - python - - qemu - - raspbian - - remastering - - repo - - report - - rhythmbox - - root - - scaling - - sed - - self signed certificate - - slides - - slim - - sniffing - - sockets - - soft link - - splunk - - ssh - - sslv3 - - stat - - tips - - tls - - torrent - - two-factor - - virt-install - - virt-manager - - virtualization - - wackamole - - xmbc - - yubikey - - yum - relme: {} - last_post_title: Using OpenStack Swift as ownCloud Storage Backend - last_post_description: "" - last_post_date: "2014-01-20T08:00:02-08:00" - last_post_link: https://blog.adityapatawari.com/2014/01/using-openstack-swift-as-owncloud.html - last_post_categories: - - keystone - - OpenStack - - OpenStack101 - - owncloud - - swift - last_post_guid: 9faf5c2fa3bbd4b6281b56bb1d45f309 - score_criteria: - cats: 5 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 14 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-30258c7271f3e8c49689a854033cfea5.md b/content/discover/feed-30258c7271f3e8c49689a854033cfea5.md deleted file mode 100644 index c090e3075..000000000 --- a/content/discover/feed-30258c7271f3e8c49689a854033cfea5.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Email is good. -date: "1970-01-01T00:00:00Z" -description: A site about email productivity. -params: - feedlink: https://email-is-good.com/feed/ - feedtype: rss - feedid: 30258c7271f3e8c49689a854033cfea5 - websites: - https://email-is-good.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Uncategorized - relme: {} - last_post_title: Stop signing your emails? - last_post_description: I don’t 100% know what Michael Lopp means here but my guess - is that you don’t need any email signature at all. Not a big crazy one that is - longer than the email itself like your last realtor had. - last_post_date: "2024-05-28T15:42:30Z" - last_post_link: https://email-is-good.com/2024/05/28/stop-signing-your-emails/ - last_post_categories: - - Uncategorized - last_post_guid: a64395522cb96e3565c1438a96400447 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3051f5a9f93efa4491cb6f075143a479.md b/content/discover/feed-3051f5a9f93efa4491cb6f075143a479.md new file mode 100644 index 000000000..35eb573c9 --- /dev/null +++ b/content/discover/feed-3051f5a9f93efa4491cb6f075143a479.md @@ -0,0 +1,43 @@ +--- +title: PythonByExample +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://pythonbyexample.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 3051f5a9f93efa4491cb6f075143a479 + websites: + https://pythonbyexample.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://pythonbyexample.blogspot.com/: true + last_post_title: Python Training "Text Movies" + last_post_description: |- + I have cobbled together a script that creates training "text movies" that use a instructions text file and some javascript. + + The javascript creates a simlated video of an interactive interpreter + last_post_date: "2013-01-14T17:54:00Z" + last_post_link: https://pythonbyexample.blogspot.com/2013/01/python-training-text-movies.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 32ace5ef494f1d680fe0d38aed35abca + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3053cbfd6c3940df2cd6c3f296d1555f.md b/content/discover/feed-3053cbfd6c3940df2cd6c3f296d1555f.md new file mode 100644 index 000000000..d0143e59f --- /dev/null +++ b/content/discover/feed-3053cbfd6c3940df2cd6c3f296d1555f.md @@ -0,0 +1,67 @@ +--- +title: Mäd Meiers Architecture Quest +date: "1970-01-01T00:00:00Z" +description: A blog about some of my adventures in the land of architecture and IT. +params: + feedlink: https://madmeierslife.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 3053cbfd6c3940df2cd6c3f296d1555f + websites: + https://madmeierslife.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Eclipse + - Eclipse Summit Europe 2010 + - Enterprise Modeling Platform + - Persistence Service + - Twike 108 + - agility + - architecture management + - artop + - cdo + - eclipse modeling platform + - eclipse modling platform + - ese + - guenter dueck + - papyrus + - payrus + - rosetta stone + - sphinx + - xtext + relme: + https://4urit.blogspot.com/: true + https://huggenberg.blogspot.com/: true + https://madmeiersadventures.blogspot.com/: true + https://madmeierscloud.blogspot.com/: true + https://madmeierslife.blogspot.com/: true + https://madmeierstwike.blogspot.com/: true + https://mmsketches.blogspot.com/: true + https://www.blogger.com/profile/14628306885093928732: true + last_post_title: eMoflon + last_post_description: Today I found eMoflon - it combines Enterprise Architect + and Eclipse - two of my favourite environments. Good luck I have some holidays + and I can try it out over the next few days. Maybe + last_post_date: "2012-07-12T18:25:00Z" + last_post_link: https://madmeierslife.blogspot.com/2012/07/emoflon.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 8d02a769011bcff16a10899c413b1347 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-305620779f74a273a3c430c953186495.md b/content/discover/feed-305620779f74a273a3c430c953186495.md new file mode 100644 index 000000000..353d3e85e --- /dev/null +++ b/content/discover/feed-305620779f74a273a3c430c953186495.md @@ -0,0 +1,51 @@ +--- +title: Octopuce +date: "1970-01-01T00:00:00Z" +description: Serveurs et infogérance haute-fidélité +params: + feedlink: https://www.octopuce.fr/feed/ + feedtype: rss + feedid: 305620779f74a273a3c430c953186495 + websites: + https://www.octopuce.fr/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Blog + - Outils d'Adminsys + relme: + https://benjamin.sonntag.fr/: true + https://l-internet.fr/: true + https://mamot.fr/@neodiablow: true + https://mamot.fr/@vincib: true + https://piaille.fr/@thibault: true + https://www.octopuce.fr/: true + last_post_title: Varnish, serveur de cache web, à redécouvrir ! + last_post_description: 'Octopuce est un hébergeur infogérant pour ses clients. Souvent, + nos clients arrivent avec des solutions techniques à eux, et parfois ils ont aussi + besoin d’aide : typiquement, qu’on leur' + last_post_date: "2024-02-11T18:44:37Z" + last_post_link: https://www.octopuce.fr/varnish-serveur-de-cache-web-a-redecouvrir/ + last_post_categories: + - Blog + - Outils d'Adminsys + last_post_language: "" + last_post_guid: 9907bc4a3b878e5092622c06f6a000dc + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: fr +--- diff --git a/content/discover/feed-305c57202ba2724387029fb6dee305ae.md b/content/discover/feed-305c57202ba2724387029fb6dee305ae.md deleted file mode 100644 index f612dff41..000000000 --- a/content/discover/feed-305c57202ba2724387029fb6dee305ae.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Comments for The Arcade Blogger -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://arcadeblogger.com/comments/feed/ - feedtype: rss - feedid: 305c57202ba2724387029fb6dee305ae - websites: - https://arcadeblogger.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Atari’s Mike Jang by Android Mobile GyroScope – ZuluOneZero - last_post_description: '[…] The original game is and was amazing for it’s immersion - – mine less so. But if you want to know more about the original and it’s legendary - creator Mike Jang there is a good article here:' - last_post_date: "2024-06-03T00:26:13Z" - last_post_link: https://arcadeblogger.com/2024/02/13/ataris-mike-jang/#comment-37912 - last_post_categories: [] - last_post_guid: 7a78b9b51b3e8d54fb803cd3c833a565 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-306eb0bf01e670c8ed7548068b65eb36.md b/content/discover/feed-306eb0bf01e670c8ed7548068b65eb36.md deleted file mode 100644 index 4c14e1204..000000000 --- a/content/discover/feed-306eb0bf01e670c8ed7548068b65eb36.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Anthony Fu -date: "1970-01-01T00:00:00Z" -description: Anthony Fu' Blog -params: - feedlink: https://antfu.me/feed.xml - feedtype: rss - feedid: 306eb0bf01e670c8ed7548068b65eb36 - websites: - https://antfu.me/: true - blogrolls: [] - recommended: [] - recommender: - - https://ttntm.me/blog/feed.xml - - https://ttntm.me/everything.xml - - https://ttntm.me/likes/feed.xml - categories: [] - relme: {} - last_post_title: Initiative on Sponsorship Forwarding - last_post_description: An initiative to support open-source ecosystem by Anthony - Fu. - last_post_date: "2024-04-20T00:00:00Z" - last_post_link: https://antfu.me/posts/sponsorship-forwarding - last_post_categories: [] - last_post_guid: 893f101029e41409fb2aacc7b75fe00c - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-309638b0abe1130a53cef067ff05296d.md b/content/discover/feed-309638b0abe1130a53cef067ff05296d.md new file mode 100644 index 000000000..1025e42a2 --- /dev/null +++ b/content/discover/feed-309638b0abe1130a53cef067ff05296d.md @@ -0,0 +1,43 @@ +--- +title: bergie on Pixelfed +date: "2024-07-08T15:39:37Z" +description: Sailor, developer, occasional adventurer +params: + feedlink: https://pixelfed.de/users/bergie.atom + feedtype: atom + feedid: 309638b0abe1130a53cef067ff05296d + websites: + https://pixelfed.de/bergie: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://bergie.iki.fi/: true + https://bergie.iki.fi/about/: true + https://github.com/bergie: true + https://pixelfed.de/bergie: true + last_post_title: Blessing for the fishing fleet + last_post_description: Blessing for the fishing fleet + last_post_date: "2024-07-08T15:39:37Z" + last_post_link: https://pixelfed.de/p/bergie/715952499552748676 + last_post_categories: [] + last_post_language: "" + last_post_guid: d6f71d6ff6becaaa0d2eb62c4e001ebc + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-309b3cdae81ff76db036821cd786c319.md b/content/discover/feed-309b3cdae81ff76db036821cd786c319.md deleted file mode 100644 index c267d6c01..000000000 --- a/content/discover/feed-309b3cdae81ff76db036821cd786c319.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: Molly White's Shortform Reading List -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://www.mollywhite.net/reading/shortform/feed.xml - feedtype: atom - feedid: 309b3cdae81ff76db036821cd786c319 - websites: - https://mollywhite.net/: false - https://mollywhite.net/feed: false - https://mollywhite.net/micro: false - https://mollywhite.net/reading/blockchain: false - https://mollywhite.net/reading/shortform: true - https://www.mollywhite.net/: false - https://www.mollywhite.net/feed: false - https://www.mollywhite.net/linktree: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://bsky.app/profile/molly.wiki: false - https://hachyderm.io/@molly0xfff: false - https://twitter.com/molly0xFFF: false - https://www.youtube.com/@molly0xfff: false - last_post_title: Wanna Make Big Tech Monopolies Even Worse? Kill Section 230 - last_post_description: '"Wanna Make Big Tech Monopolies Even Worse? Kill Section - 230". Cory Doctorow in Electronic Frontier Foundation on May 24, 2024. In an age - of resurgent anti-monopoly activism, small online communities' - last_post_date: "1970-01-01T00:00:00Z" - last_post_link: https://mollywhite.net/reading/shortform?search=Wanna%20Make%20Big%20Tech%20Monopolies%20Even%20Worse%3F%20Kill%20Section%20230 - last_post_categories: [] - last_post_guid: f02205c3dd6c7ee858550b42f57a7753 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-30a376663f5ed2f7aaa11cad9cb4e352.md b/content/discover/feed-30a376663f5ed2f7aaa11cad9cb4e352.md new file mode 100644 index 000000000..72dab044c --- /dev/null +++ b/content/discover/feed-30a376663f5ed2f7aaa11cad9cb4e352.md @@ -0,0 +1,43 @@ +--- +title: Notes on Haskell +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://notes-on-haskell.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 30a376663f5ed2f7aaa11cad9cb4e352 + websites: + https://notes-on-haskell.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://notes-on-haskell.blogspot.com/: true + https://www.blogger.com/profile/11941071792943377879: true + last_post_title: Celebrating Ada Lovelace Day - Dr. Rebecca Mercuri + last_post_description: 'In honor of Ada Lovelace Day, I want to shine a light on + a very important woman in modern computing: Dr. Rebecca Mercuri. I was lucky + enough to have Dr. Mercuri (while she was working on her Ph. D' + last_post_date: "2010-03-25T03:47:00Z" + last_post_link: https://notes-on-haskell.blogspot.com/2010/03/celebrating-ada-lovelace-day-dr-rebecca.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 2c47164de08907cb02eda535986cfedf + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-30a7f4211ffe8d86b238fd0c12d44049.md b/content/discover/feed-30a7f4211ffe8d86b238fd0c12d44049.md new file mode 100644 index 000000000..24da7bd5f --- /dev/null +++ b/content/discover/feed-30a7f4211ffe8d86b238fd0c12d44049.md @@ -0,0 +1,55 @@ +--- +title: 暇潰しと微調整 +date: "2024-02-23T02:23:38+09:00" +description: "" +params: + feedlink: https://goofing-and-tweaking.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 30a7f4211ffe8d86b238fd0c12d44049 + websites: + https://goofing-and-tweaking.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Prius + - TV + - Toyota + - USB電源増設 + - ZVW50 + - ナビキット + relme: + https://goofing-and-tweaking.blogspot.com/: true + https://goofing-with-computer.blogspot.com/: true + https://goofying-with-debian.blogspot.com/: true + https://osamu-aoki.blogspot.com/: true + https://osamu-in-japan.blogspot.com/: true + https://www.blogger.com/profile/12377163704610747036: true + last_post_title: USB電源追加、動作の事前確認と極性 + last_post_description: "" + last_post_date: "2016-10-02T13:44:52+09:00" + last_post_link: https://goofing-and-tweaking.blogspot.com/2016/10/usb.html + last_post_categories: + - Prius + - Toyota + - USB電源増設 + - ZVW50 + last_post_language: "" + last_post_guid: 74cfa5fcb53f0b33a82241395ba87f6d + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-30a873a5300ab7b2d1e406b5c1e3e3f0.md b/content/discover/feed-30a873a5300ab7b2d1e406b5c1e3e3f0.md index ea6da9693..5832c722b 100644 --- a/content/discover/feed-30a873a5300ab7b2d1e406b5c1e3e3f0.md +++ b/content/discover/feed-30a873a5300ab7b2d1e406b5c1e3e3f0.md @@ -11,6 +11,7 @@ params: blogrolls: [] recommended: [] recommender: + - https://josh.blog/comments/feed - https://josh.blog/feed categories: - Categorized @@ -23,17 +24,22 @@ params: last_post_link: https://danielbachhuber.com/70-confident/ last_post_categories: - Categorized + last_post_language: "" last_post_guid: e840280c15070a20ca0bd1636987e5b8 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 14 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-30cb173a2d488311f4fece692c2eb08e.md b/content/discover/feed-30cb173a2d488311f4fece692c2eb08e.md new file mode 100644 index 000000000..854de4859 --- /dev/null +++ b/content/discover/feed-30cb173a2d488311f4fece692c2eb08e.md @@ -0,0 +1,137 @@ +--- +title: Yummy Cheese +date: "2024-03-12T16:15:33-07:00" +description: We have infomation about cheez.Please keep visiting to our page. +params: + feedlink: https://pusatbisnisproduk-starla.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 30cb173a2d488311f4fece692c2eb08e + websites: + https://pusatbisnisproduk-starla.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Chees lover in the world + last_post_description: "" + last_post_date: "2022-01-10T23:48:09-08:00" + last_post_link: https://pusatbisnisproduk-starla.blogspot.com/2022/01/chees-lover-in-world.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 01821b239c973934e303caffbce01d9c + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-30cba74a97586f2dbbec1955d8a2a35c.md b/content/discover/feed-30cba74a97586f2dbbec1955d8a2a35c.md deleted file mode 100644 index e1fb2699f..000000000 --- a/content/discover/feed-30cba74a97586f2dbbec1955d8a2a35c.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: JONATHAN HAYS -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://jonhays.me/feed.xml - feedtype: rss - feedid: 30cba74a97586f2dbbec1955d8a2a35c - websites: - https://jonhays.me/: true - blogrolls: [] - recommended: [] - recommender: - - https://www.manton.org/feed - - https://www.manton.org/feed.xml - - https://www.manton.org/podcast.xml - categories: [] - relme: - https://micro.blog/cheesemaker: false - https://twitter.com/cheesemaker: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-30d1320bc5e1dc206d7ce7026a10c60c.md b/content/discover/feed-30d1320bc5e1dc206d7ce7026a10c60c.md index 70b5152c3..759591b45 100644 --- a/content/discover/feed-30d1320bc5e1dc206d7ce7026a10c60c.md +++ b/content/discover/feed-30d1320bc5e1dc206d7ce7026a10c60c.md @@ -1,6 +1,6 @@ --- title: Polyamory in the News -date: "2024-06-03T16:20:35-04:00" +date: "2024-07-06T16:43:51-04:00" description: |- Polyamory in the News . . . by Alan M. @@ -12,663 +12,665 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: - - Latin America - - Juneteenth - - Kate Robards - - millennials - - leftist/anarchist - - '#PolyamoryMoneyManagement' - - '#MemorialDay' - - history of polyamory - - Sierra Black - - '#polymilitary' - - feminism - - Jaiya - - Facebook - - advertising - - critics of polyamory + - '#AlexAlberto' + - '#ArchieComics' + - '#BadPoly' - '#BadPolyamory' - - The State of Affairs - - '#PolyParenting' - - '#polylessons' - - '#PolyKidsBooks' - - Jerry Falwell - - radio - - '#polynavy' - - Trigonometry series - - gingrich - - South Africa - - Dedeker Winston - - India - - agreements - - '#GardenPartyPolyamory' - - platonic - - Lady Gaga - - covid - - science fiction - - Destination America - - end of life - - '#compersion' - - New York - - Jenny Yuen - - Mississippi - - 'legal; #PolyBerkeley' - - Marjorie Taylor Greene - - Alyce Grillet - - abusers - - '#metamours' - - poly-mono - - '#PolyamoryBandwagon' - - Lisa Ling + - '#Black&Poly' + - '#CNM' + - '#Challengers' + - '#ChallengersMovie' + - '#ChildrenOfPolyamory' + - '#ChosenFamily' + - '#CoupleToThrouple' + - '#CoupletToThrouple' + - '#CrappyPoly' + - '#Datinga Couple' + - '#EthicalNonMonogamy' + - '#EthicalPolyamory' - '#ExMormon' - - Karen Ruskin - - '#polycules' - - corona cuddling - - civil union of 3 - - '#polycule' - - domestic partnerships - - Sister Wives - - '#PolyamoryStories' - - polycule - - '#PolyamoryResearch' - - Nikki Haley affair - - Somerville - - Deborah Anapol + - '#Feeld' + - '#FeministThrouples' + - '#FromPolyToMono' + - '#GardenPartyPolyamory' - '#GayThrouples' - - parenting - - Kathy Labriola - - Jewish - - movies - - TV - - open marriage - - academia - - '#SnugglePilePoly' - - tab - - Multi-Love - - esther perel - - India/South Asia - - Charlie Sheen - - Wonder Woman - - poly and childbirth + - '#GayTriads' + - '#GroupMarriage' + - '#HarvardLaw' + - '#HongKongPoly' + - '#IsPolyamoryQueer?' + - '#IsPolyamorytheFuture?' + - '#JustinClardy' + - '#KitchenTablePolyamory' + - '#LovingMore' + - '#MFMF' - '#MaBelleMyBeauty' - - '#cnm #openrelationship' - - Shameless - - Friday Polynews Roundup - - polyaffectivity - - unicorns - - Elf Lyons - - '#PolyLegal' - - '#unicorns' - - Allena Gabosch - - '#PolyResearch' - - Craig Ivey - - Stage 3 polyamory - - discrimination against polyamory - '#MarkMaryAndSomeOtherPeople' - - songs - - Trump - - Polyamory Week - - Friday Polyamory News Roundup - - Show Your Parents - - triad - - Britney Spears - - '#CNM' - - '#TeenPoly' - - '#MFMF' - - pi day - - '#PolyAndQueer' - - solo poly - - Matt Bullen - - tech - - Buddhist - - Valentine's Day - - '#nonmonogamyvisibility' - - carrie jenkins - - Janet Hardy + - '#Masyanya' + - '#MemorialDay' + - '#MetamourDay' + - '#MonogamyAgreements' + - '#MoreMemoirofOpenMarriage' + - '#MoreaMemoirofOpenMarriage' + - '#NRE' + - '#NationalAnthemMovie' + - '#NewPolyamoryFlag' - '#NewToPolyamory' - - new polyamory flag - - Fox - - threesomes - - '#polyfidelity' - - Joseph Freeney + - '#NormalizePolyamory' + - '#OPEN' + - '#OpenMarriage' + - '#OpenRelationshipBooks' + - '#PandemicPolyamory' + - '#Poly10' + - '#Poly101' + - '#PolyAndChristian' + - '#PolyAndPsychedelics' + - '#PolyAndQueer' + - '#PolyBooks' + - '#PolyChristmas' + - '#PolyComics' + - '#PolyCommitmentCeremony' + - '#PolyDating' + - '#PolyDomesticPartnerships' + - '#PolyElders' + - '#PolyFinances' + - '#PolyGreenFlags' + - '#PolyHandfasting' + - '#PolyHistory' + - '#PolyHolidays' + - '#PolyKidsBooks' + - '#PolyLegal' + - '#PolyMono' + - '#PolyNeurodiversity' + - '#PolyNews' + - '#PolyNormalization' + - '#PolyOnTV' + - '#PolyOverTheHolidays' + - '#PolyPandemic' + - '#PolyParenting' + - '#PolyRecognition' + - '#PolyResearch' + - '#PolyRights' + - '#PolyUkraine' + - '#PolyVacation' + - '#PolyVeto' + - '#PolyWeddings' + - '#PolyamorousFlag' + - '#Polyamory' + - '#Polyamory rights' + - '#PolyamoryActivism' + - '#PolyamoryBandwagon' + - '#PolyamoryBooks' + - '#PolyamoryChristmas' + - '#PolyamoryDay' + - '#PolyamoryFinances' - '#PolyamoryFlag' - - Black Poly Nation - - polyamory flag - - polyamory books - - Ma Belle My Beauty - - Paul Dalgarno + - '#PolyamoryHistory' + - '#PolyamoryLegal' + - '#PolyamoryLegislation' + - '#PolyamoryMoneyManagement' - '#PolyamoryMovies' - - death - - swinging - - Terisa Greenan - - Megyn Kelly - - Two Boyfriends and a Baby + - '#PolyamoryNews' + - '#PolyamoryResearch' + - '#PolyamoryRights' + - '#PolyamorySA' + - '#PolyamorySongs' + - '#PolyamoryStories' + - '#PolyamoryStyles' + - '#PolyamoryTV' + - '#PolyamoryUkraine' + - '#PolyamoryintheNews' + - '#PolyandAging' + - '#PolyandCovid' + - '#PolyfamilyFinances' + - '#Polyfamory' + - '#PolygamyInTheBible' + - '#PolyintheMedia' + - '#PolyintheMedia. #PolyamoryNews' + - '#QueerAnimals' + - '#QueerPolyamory' + - '#RelationshipAgreements' + - '#Riverdale' + - '#SeekingBrotherHusband' + - '#SnugglePilePoly' + - '#Solopoly' + - '#SuccessfulPoly' + - '#TeenPoly' + - '#ThreeDadsAndaBaby' + - '#UCC' + - '#UUPoly' + - '#WhatPolyamoryOffersThe Monogamous' + - '#WhyIsPolyamoryPopular?' + - '#abuseinpoly' + - '#activism' + - '#cnm #openrelationship' + - '#compersion' + - '#enm' + - '#facebooklimitslove' + - '#group marriage' + - '#metamour #MetamourDay' + - '#metamours' + - '#nonmonogamyvisibility' + - '#oly101' - '#openrelationship' + - '#po' + - '#poly' + - '#poly kids books' + - '#polyactivism' - '#polyamorous' - - Florida - - definition of open relationship - - weddings - - Steve Pavlina - - Love Sex and Neighbors - - '#PolyFinances' - - abuse - - uniao poliafetiva - - '#polyactivism' - - Polyamory Day - - Australia/NZ - - bisexual - - convention - - '#EthicalNonMonogamy' - - books - - poly and christian - - Ruban Nielson - - Rebecca Walker - - '#MoreMemoirofOpenMarriage' - - '#group marriage' - - Teen Poly - - What polyamory principles offer everyone + - '#polyamoryandneurodiversity' + - '#polyandAI' + - '#polycons' + - '#polycule' + - '#polycules' + - '#polyfamilies' + - '#polyfidelity' + - '#polylessons' + - '#polymilitary' + - '#polynavy' + - '#threesomes' + - '#threeways' - '#throuple' - - Texas - - My Five Wives - - Oneida Colony - - research - - New Culture - - asexual + - '#throuples' + - '#triads' + - '#unicorns' + - Allena Gabosch + - Alyce Grillet + - Amanda Palmer + - Amelia Earhart + - Arlington MA + - Ashley Madison - Ashli Babbitt - - polyamorous food trucks - - plays + - Ask Amy + - Asperger's + - Atlanta Poly Weekend + - Australia/NZ - BDSM + - BIPOC + - Bella Thorne + - Big Bang Theory + - Black Lives Matter + - Black Poly Nation + - Blake Wilson + - Book reviews by me + - Boston + - Brady Williams family + - Brazil + - Britney Spears + - Brother Husbands + - Buddhist + - Cambridge + - Canada + - Capitol riot - Caroline Giuliani + - Charlie Sheen + - Chicago - China/Pacific - - '#Masyanya' - - Sartre - - economics - - poly flag - - poly conference - - Capitol riot - - Zaeli Kane - - TLC - - gay/bi - - '#PolyamoryNews' - - Covic-19 - - Disabilities - - anthropology - - '#threesomes' - - communication - - poly humor - - Tana Mongeau - - geek - - Mark Sanford - - problem poly - - '#HarvardLaw' - - house hunters - - polyamory and class + - Chris Envy Angela Ashley polyamory polyamorous + - Chris Megan Leigh Ann + - Christopher Ryan + - Christopher Smith - Clare Verduyn - - history - - Polska - - wife swap. Gina John Loudon - - Simone de Beauvoir - - '#OPEN' - - eye-gazing - - '#GroupMarriage' + - Colombia + - Colorado + - Covic-19 + - Covid-19 + - Covidc-19 + - Craig Ivey + - Cunning Minx + - Dan Savage - Danske - - coronavirus - - Nederlands - - '#ArchieComics' + - David Brooks + - Dear Margo + - Deborah Anapol + - Dedeker + - Dedeker Winston + - Destination America + - Details magazine + - Deutsch + - Diana Adams + - Disabilities + - Elf Lyons + - Español + - Ethical Slut + - Europe + - Eve Rickert + - Facebook + - Florida + - Fox + - Franklin Veaux + - Français + - Friday Polyamory News Roundup + - Friday Polynews Roundup + - Gaby Dunn + - Gen Z + - HBO + - Hacienda Villa + - Heinlein + - Helen Fisher + - Hidden in America + - India + - India/South Asia + - Iran + - Ireland + - Israel + - Ixi Kirkilis + - Jaiya + - Janet Hardy + - Japan + - Jase Lindgren + - Jenny Block + - Jenny Yuen + - Jerry Falwell - Jessica Fern - - '#PolyamoryLegislation' - - reality show - - polydar - - webseries - - The Best - - Ask Amy - - '#OpenMarriage' - - Arlington MA - - UUPA - - Three Dads and a Baby - - '#metamour #MetamourDay' - - '#PolyHandfasting' - - Poly Philia - - '#PolyPandemic' - - '#PolyamoryUkraine' - - Ruby Bouie Johnson - - today show - - 'legal; #PolyOakland' - - aging - - Open + - Jewish + - Joe Spurr + - Joseph Freeney + - Juneteenth + - Kamala Devi + - Kansas City + - Karen Ruskin + - Kate Robards + - Kathy Labriola + - Katie Aitchison + - Katie Hill + - Ken Haslam + - Kim Tallbear + - Kimchi Cuddles + - Kinsey Institute + - Kitty Striker + - LGBT + - Lady Gaga + - Latin America - Leanna Yau - - siren - - The Polyamorists Next Door - - religion/spirituality - - Tolstoy - - '#PolyRights' - - advice columns - - '#OpenRelationshipBooks' - - monogamy - - Poly novel - - '#KitchenTablePolyamory' - - Brother Husbands + - Lisa Ling + - Looks Like Love to Me + - Love Sex and Neighbors - Loving More - - Wendy-O Matik - - falling in love + - MTV + - Ma Belle My Beauty + - Magyar + - Marjorie Taylor Greene + - Mark Sanford + - Marty Klein + - Mary Crumpton + - Matt Bullen + - Megyn Kelly - Metamour Day - - Sara Valta - - Wisconsin - - gay - - '#PolyHistory' - - '#BadPoly' - - Spain - - christianity and polyamory - - '#UUPoly' - - '#abuseinpoly' - - pansexual - - '#PolyHolidays' + - Minneapolis + - Mississippi + - Mo'Nique - More Than Two - - polyfi - - humor - - Franklin Veaux - - '#PolyfamilyFinances' - - '#Black&Poly' - - LGBT - - Deutsch - - '#ChallengersMovie' - - children of polyamory - - Utah - - World Polyamory Association - - speeches by me - - communication skills - - Ukraine - - '#CrappyPoly' - - threeways - - '#Riverdale' - - Bella Thorne - - '#poly kids books' - - '#polyamoryandneurodiversity' - - polyamory - - Tamron Hall - - poly shaming - - '#NRE' - - Christopher Ryan - - '#NormalizePolyamory' - - Helen Fisher - - '#PolyComics' - - '#Polyfamory' - - Cunning Minx - - trans - - '#PolyamoryintheNews' - - polygamy - - therapists - - polyamory conventions - - polyamory in the military - - polyamory symbols - - Blake Wilson - - Magyar - - San Diego - - Marty Klein - - Ashley Madison - - Terri Conley + - Morning Glory Zell-Ravenheart + - Moses Sumney + - Multi-Love + - My Five Wives + - NBC Out + - NRE + - Nederlands + - Neil Gaiman + - New Culture + - New Mexico - New Monogamy + - New York + - Nico Tortorella + - Nikki Haley affair + - Nikki Haley cheating + - Nikki Haley extramarital - No Exit - - future of polyamory - - monogamish - - Polylogues - - skepticism - - STDs - - atheism - - Utopia - - nikki haley - - sophie lucido johnson - - Kamala Devi + - Norsk + - Oberon Zell + - Oneida Colony + - Open - Oprah Winfrey - - kids - - polycon - - Utopia show - - poly parenting - - '#PolyamoryBooks' - - '#facebooklimitslove' - - David Brooks - - Nico Tortorella - - '#triads' - - comics - - Thanksgiving - - Europe - - Chicago - - '#CoupleToThrouple' - - Joe Spurr - Oregon - - '#PolygamyInTheBible' - - She's Gotta Have It - - Kansas City - - '#Polyamory rights' - - Professor Marston movie - - '#QueerPolyamory' - - Kitty Striker - - '#oly101' - - '#PolyamoryHistory' - - intentional community - - '#PolyElders' - - Katie Hill - - Íslensku - - '#ThreeDadsAndaBaby' - - '#NewPolyamoryFlag' - - Polysecure - - Poly Living - - '#PolyVacation' - - Will and Jada Pinkett Smith - - children - - '#FromPolyToMono' - - '#PolyamoryTV' - - polyamory news - - '#ChildrenOfPolyamory' - - '#MonogamyAgreements' - - Polyamory Legal Advocacy Coalition - - '#PolyBooks' - - Português - - '#threeways' - - Kim Tallbear - - '#PolyamorousFlag' - - Kimchi Cuddles - - early poly in the media - - '#PolyNormalization' - - Gen Z - - cheating - - theory + - Our America - PLAC - - '#PolyCommitmentCeremony' - - '#PolyamoryChristmas' - - '#activism' - - New Mexico - - Japan - - legal - - movies/plays - - misuse of "polyamory" - - '#PolyOnTV' - - philosophy - - Stephen Snyder - - Oberon Zell - - Katie Aitchison - - poetry - - '#polycons' - - '#PolyAndChristian' + - Page Turner + - Paul Dalgarno + - Philadelphia - Philippines - - '#Challengers' - - '#IsPolyamorytheFuture?' - - activism - - feminism in polyamory - - merch - - Colorado - - 'Polyamory: Married & Dating' - - jealousy - - '#UCC' - - '#PolyAndPsychedelics' - - Dan Savage - - '#ChosenFamily' - - poly weddings - - polyamory history - - TNG - - Unknown Mortal Orchestra - - '#JustinClardy' - - sex-positive organizations - - unicorn - - Hacienda Villa - - Ireland - - '#PolyamoryRights' - - Amanda Palmer - - '#RelationshipAgreements' - - infinity heart - - woodhull + - Polska + - Polski + - Poly 101 + - Poly Living + - Poly Philia - Poly celebrities + - Poly novel + - Polyamory Day + - Polyamory Foundation + - |- + Polyamory Legal + Advocacy Coalition + - Polyamory Legal Advocacy Coalition + - Polyamory Today + - Polyamory Week + - 'Polyamory: Married & Dating' + - Polylogues + - Polysecure + - Português + - Professor Marston movie - R. Crumb - - dying + - Rachel Krantz + - Rebecca Walker + - Right to Family Amendment Act of 2021 + - Robyn Trask + - Roswell + - Ruban Nielson + - Ruby Bouie Johnson + - Russia - SF Bay Area - - Norsk - - BIPOC - - Black Lives Matter - - coming out - - polygamy. Mormon - - '#WhatPolyamoryOffersThe Monogamous' - - '#PolyandCovid' - - polyamory on TV + - STDs + - STIs + - San Diego + - Sara Valta + - Sartre + - Seattle + - Sex Ed - Sex at Dawn - - Chris Envy Angela Ashley polyamory polyamorous + - Shameless + - She's Gotta Have It + - Show Me What You Got + - Show Your Parents + - Showtime Season 1 + - Showtime Season 2 + - Sierra Black + - Simone de Beauvoir + - Sister Wives + - Somerville + - South Africa - Southeast - - Hidden in America - - polyamory rights - - '#CoupletToThrouple' - - '#PolyamoryActivism' - - north dakota - - dating - - Wednesday Martin - - NRE - - poly101 - - Poly 101 - - polyamory groups - - Gaby Dunn - - tabloids - - video - - '#po' - - Cambridge + - Spain + - Stage 3 polyamory + - Stephen Snyder + - Steve Pavlina + - 'Supreme Court: Obergefell' + - 'Supreme Court: Windsor' + - Svenska + - TEDx + - TLC + - TNG + - TV + - Tamron Hall + - Tana Mongeau + - Teen Poly + - Terisa Greenan + - Terri Conley + - Texas + - Thanksgiving - The Bachelor - - Details magazine - - Roswell - - music - - '#PolyintheMedia' - - Nikki Haley extramarital - - christian poly - - HBO + - The Best + - The L Word + - The Next Generation + - The Politician + - The Polyamorists Next Door + - The State of Affairs + - There Is No 'I' in Threesome + - Three Dads and a Baby + - Tilda Swinton + - Tolstoy - Trigonometry + - Trigonometry series + - Tristan Taormino + - True Life + - Trump + - Two Boyfriends and a Baby + - U.K. + - UK + - UUPA + - Ukraine + - Unitarian Universalist + - United Church of Christ + - Unknown Mortal Orchestra + - Utah + - Utopia + - Utopia show + - Valentine's Day - Wash. DC region - - polyamory flag stolen - - 'Supreme Court: Obergefell' + - Wednesday Martin + - Wendy-O Matik + - What polyamory principles offer everyone + - Will and Jada Pinkett Smith + - Wisconsin + - Wonder Woman + - World Polyamory Association + - X-Men + - You Me Her + - Zaeli Kane + - abuse + - abusers + - academia + - activism + - advertising + - advice + - advice columns + - aging + - agreements + - anthropology + - art + - asexual + - atheism + - attachment theory in polyamory + - autobiographies + - bisexual + - black & poly + - books + - carrie jenkins + - celebrities + - cheating + - children + - children of polyamory + - christian poly + - christianity and polyamory + - civil union of 3 + - co-housing + - college + - comics + - coming out + - communication + - communication skills + - compersion + - conferences + - convention + - corona cuddling + - coronavirus + - couple privilege + - covid + - critics of poly + - critics of polyamory + - dating + - death + - definition of open relationship + - definition of polyamory + - discrimination against polyamory + - domestic partnerships + - dying + - early poly in the media + - economics + - employment + - end of life + - esther perel + - eye-gazing + - falling in love + - feminism + - feminism in polyamory + - future of polyamory + - game changer + - gay + - gay triads + - gay/bi + - geek + - gingrich + - history + - history of polyamory + - holidays + - house hunters + - humor + - infidelity rate + - infinity heart + - intentional community + - jealousy + - jewelry/pins/clothing + - kids + - leftist/anarchist + - legal + - 'legal; #PolyBerkeley' + - 'legal; #PolyOakland' + - lesbian + - marriage + - merch + - metamours + - millennials + - misuse of "polyamory" + - monogamish + - monogamy + - movies + - movies/plays + - music + - new polyamory flag + - nikki haley + - north dakota + - open marriage + - pandemic + - pansexual + - parenting + - philosophy + - pi day + - pickup artist + - platonic + - plays + - podcasts + - poetry - poliamor - - '#Solopoly' - - '#FeministThrouples' - - Jenny Block - - polyfamilies - - '#WhyIsPolyamoryPopular?' - - '#PolyamoryFinances' - - Showtime Season 1 - - Brazil - - '#PolyWeddings' - - polyamory as a spiritual path + - politics + - poly + - poly & neurodiversity + - poly and childbirth + - poly and christian + - poly and pregnancy + - poly animals - poly as orientation - - Ethical Slut - - Page Turner - - Sex Ed - - U.K. - - Amelia Earhart - - conferences - - polyamory community - - critics of poly - - '#throuples' - - definition of polyamory - - '#Polyamory' - - relationship anarchy - - '#polyfamilies' - - Français + - poly conference - poly dating - - Looks Like Love to Me - - '#GayTriads' - - Dedeker - - jewelry/pins/clothing - - Right to Family Amendment Act of 2021 - - '#Poly10' - - NBC Out + - poly flag + - poly humor + - poly parenting + - poly shaming + - poly weddings + - poly-mono + - poly101 + - polyaffectivity + - polyamorous flag + - polyamorous food trucks + - polyamory + - polyamory and class + - polyamory as a spiritual path + - polyamory books + - polyamory community + - polyamory conventions + - polyamory flag + - polyamory flag stolen + - polyamory groups + - polyamory history + - polyamory in the military - polyamory memes - - Brady Williams family - - Polyamory Foundation - - Covidc-19 - - Diana Adams - - Ixi Kirkilis - - queer - - Show Me What You Got - - spaceflight - - holidays - - Atlanta Poly Weekend - - attachment theory in polyamory - - Moses Sumney - - Dear Margo - - '#MetamourDay' - - poly animals - - '#PolyDating' - - UK - - '#PolyVeto' + - polyamory news + - polyamory on TV + - polyamory rights + - polyamory symbols - polyamproud - - Our America - - '#LovingMore' - - '#poly' - - '#IsPolyamoryQueer?' - - Canada - - will folks - - Morning Glory Zell-Ravenheart - - '#PolyNeurodiversity' - - triads - - MTV - - True Life - - Robyn Trask - - Iran - - Big Bang Theory - - couple privilege - - '#EthicalPolyamory' - - Mary Crumpton - - college - - quads - - polyfidelity - - '#PolyDomesticPartnerships' - - Tilda Swinton - - black & poly - - Ken Haslam - - infidelity rate - - Heinlein - - TEDx - - Polski - - podcasts - polyandry - - '#PolyRecognition' - - Israel - - Neil Gaiman - - '#HongKongPoly' - - poly - - advice - - '#PolyUkraine' - - United Church of Christ + - polycon + - polycule + - polydar + - polyfamilies + - polyfi + - polyfidelity + - polygamy + - polygamy. Mormon - polys of color - - STIs - - Eve Rickert - - '#PolyandAging' - - '#PolyintheMedia. #PolyamoryNews' - - polyamorous flag + - problem poly + - quads + - queer + - radio + - reality show + - relationship anarchy + - religion/spirituality + - research + - science fiction + - sex-positive organizations + - showtime + - siren + - skepticism + - solo poly + - songs + - sophie lucido johnson + - spaceflight + - speeches by me + - swinging + - tab + - tabloids + - tech + - theory + - therapists + - threesomes + - threeways - throuples - - Colombia - - '#Datinga Couple' - - Kinsey Institute - - '#Poly101' - - pandemic - - Unitarian Universalist - - '#enm' - - Minneapolis - - Russia - - '#PolyamoryLegal' - - Tristan Taormino - - autobiographies - - Covid-19 - - Philadelphia - - pickup artist - - Mo'Nique + - today show + - trans + - triad + - triads + - uniao poliafetiva + - unicorn + - unicorns + - video + - webseries + - weddings + - wife swap. Gina John Loudon + - will folks + - woodhull - zoning - - The Next Generation - - Book reviews by me - - compersion - - showtime - - 日本語 - - You Me Her - - celebrities - - Chris Megan Leigh Ann - - Svenska - - Seattle - - '#MoreaMemoirofOpenMarriage' - - art - - 'Supreme Court: Windsor' - - co-housing - - gay triads - - Asperger's - - Showtime Season 2 - - '#NationalAnthemMovie' - - Jase Lindgren - - lesbian - - Rachel Krantz - - poly and pregnancy - - Español - - '#PandemicPolyamory' - - '#PolyamoryDay' - - '#Feeld' - - Christopher Smith + - Íslensku - по-русски - - Polyamory Today - - '#PolyamorySA' - - The L Word - - The Politician - - Boston - עברית - - '#PolyamoryStyles' - - Nikki Haley cheating - - marriage - - metamours - - '#PolyNews' - - employment - - There Is No 'I' in Threesome - - poly & neurodiversity - - '#PolyamorySongs' - - '#SeekingBrotherHusband' - - '#PolyChristmas' - - politics - - '#AlexAlberto' - - '#PolyOverTheHolidays' - - game changer - - |- - Polyamory Legal - Advocacy Coalition - - X-Men + - 日本語 relme: {} - last_post_title: Finally, a genuinely poly movie coming (queer too). The last word - on the "Challengers" movie. Six new fiction books for summer reading. The AARP - gets it. And, many upcoming events. - last_post_description: |- - But first, four announcements: - - ♥  It's just six weeks to the annual - Week of Visibility for Non-Monogamy July 15 - 21. This ambitious project is inspired and coordinated by OPEN, the 2½-year - last_post_date: "2024-06-03T11:38:44-04:00" - last_post_link: https://polyinthemedia.blogspot.com/2024/06/finally-genuinely-poly-movie-queer-too.html + last_post_title: Green flags to watch for in poly dating. The great poly/queer overlap. + Co-living. And, a total heartwarmer. + last_post_description: "Pride Month has just passed. But not pride.●  In USA Today: Polyamory + seems more common among gay people than straight people. What’s\n going on? (June + 20).\n \n \n \n \n \n " + last_post_date: "2024-07-05T12:18:39-04:00" + last_post_link: https://polyinthemedia.blogspot.com/2024/07/green-flags-to-watch-for-in-poly-dating.html last_post_categories: - - '#polyactivism' - - '#Polyamory' - - '#Challengers' - - '#enm' - - '#PolyamoryMovies' - - books - - '#activism' - - '#NationalAnthemMovie' - last_post_guid: 00ee8d469169d9a70d3870f1ea1ff72c + - '#PolyGreenFlags' + - '#PolyMono' + - '#PolyamoryNews' + - '#PolyamoryintheNews' + - '#PolyintheMedia' + - '#QueerAnimals' + - '#QueerPolyamory' + last_post_language: "" + last_post_guid: 5315320b55214aa2cfec364698e46492 score_criteria: cats: 5 description: 3 + feedlangs: 0 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 19 + score: 22 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-30ff22a034d005d8e8a6ecd69773be22.md b/content/discover/feed-30ff22a034d005d8e8a6ecd69773be22.md deleted file mode 100644 index c59fc51e1..000000000 --- a/content/discover/feed-30ff22a034d005d8e8a6ecd69773be22.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Victoria Drake -date: "1970-01-01T00:00:00Z" -description: Public posts from @victoriadotdev@mastodon.social -params: - feedlink: https://mastodon.social/@victoriadotdev.rss - feedtype: rss - feedid: 30ff22a034d005d8e8a6ecd69773be22 - websites: - https://mastodon.social/@victoriadotdev: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://techleaderdocs.com/: false - https://victoria.dev/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-311e997bb40e7e68a6b3167eafe661a5.md b/content/discover/feed-311e997bb40e7e68a6b3167eafe661a5.md deleted file mode 100644 index 322ee0545..000000000 --- a/content/discover/feed-311e997bb40e7e68a6b3167eafe661a5.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: 'pftnhr :damnified:' -date: "1970-01-01T00:00:00Z" -description: Public posts from @pfotenhauer@metalhead.club -params: - feedlink: https://metalhead.club/@pfotenhauer.rss - feedtype: rss - feedid: 311e997bb40e7e68a6b3167eafe661a5 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-313b5e19ee121d9b184399c2de55e81d.md b/content/discover/feed-313b5e19ee121d9b184399c2de55e81d.md deleted file mode 100644 index cc3eea868..000000000 --- a/content/discover/feed-313b5e19ee121d9b184399c2de55e81d.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Emanuel Pina -date: "1970-01-01T00:00:00Z" -description: Public posts from @emanuel@social.lol -params: - feedlink: https://social.lol/@emanuel.rss - feedtype: rss - feedid: 313b5e19ee121d9b184399c2de55e81d - websites: - https://social.lol/@emanuel: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://emanuel.omg.lol/: true - https://emanuel.omg.lol/now/: true - https://emanuel.status.lol/: true - https://emanuelpina.pt/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3146f9baa706e22234d4bbf3bfae84af.md b/content/discover/feed-3146f9baa706e22234d4bbf3bfae84af.md new file mode 100644 index 000000000..aee08f4d7 --- /dev/null +++ b/content/discover/feed-3146f9baa706e22234d4bbf3bfae84af.md @@ -0,0 +1,47 @@ +--- +title: GeoExt +date: "2024-07-04T11:18:22+02:00" +description: GeoExt, the library on the top of ExtJS and OpenLayers +params: + feedlink: https://geoext.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 3146f9baa706e22234d4bbf3bfae84af + websites: + https://geoext.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 2.0.0 + - release + - release 1.0 + relme: + https://cedricmoullet.blogspot.com/: true + https://geoext.blogspot.com/: true + https://openaddresses.blogspot.com/: true + https://teamtesag.blogspot.com/: true + https://www.blogger.com/profile/06947117799577904122: true + last_post_title: GeoExt 3 Codesprint - Day 2 and 3 + last_post_description: "" + last_post_date: "2015-06-20T12:39:41+02:00" + last_post_link: https://geoext.blogspot.com/2015/06/geoext-3-codesprint-day-2-and-3.html + last_post_categories: [] + last_post_language: "" + last_post_guid: d2a8e9aad879019cecb3b6e89c492bbb + score_criteria: + cats: 3 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-314c688185b7eac94945ebc534e5e368.md b/content/discover/feed-314c688185b7eac94945ebc534e5e368.md new file mode 100644 index 000000000..d4ac76e86 --- /dev/null +++ b/content/discover/feed-314c688185b7eac94945ebc534e5e368.md @@ -0,0 +1,42 @@ +--- +title: Sector 7 +date: "1970-01-01T00:00:00Z" +description: Recent security research of Sector 7, the research division of Computest +params: + feedlink: https://sector7.computest.nl/index.xml + feedtype: rss + feedid: 314c688185b7eac94945ebc534e5e368 + websites: + https://sector7.computest.nl/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://sector7.computest.nl/: true + last_post_title: 'CVE-2024-20693: Windows cached code signature manipulation' + last_post_description: In the Patch Tuesday update of April 2024, Microsoft released + a fix for CVE-2024-20693, a vulnerability we reported. This vulnerability allowed + manipulating the cached signature signing level of an + last_post_date: "2024-06-14T00:00:00Z" + last_post_link: https://sector7.computest.nl/post/2024-06-cve-2024-20693-windows-cached-code-signature-manipulation/ + last_post_categories: [] + last_post_language: "" + last_post_guid: be0c71ea56f9cf1aa72b836598612cca + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-31544b2f00db61effc1d250b5f00874f.md b/content/discover/feed-31544b2f00db61effc1d250b5f00874f.md new file mode 100644 index 000000000..6409e1467 --- /dev/null +++ b/content/discover/feed-31544b2f00db61effc1d250b5f00874f.md @@ -0,0 +1,47 @@ +--- +title: Insufficient.Coffee +date: "2024-03-14T09:59:55-07:00" +description: "" +params: + feedlink: https://insufficient.coffee/feed.xml + feedtype: atom + feedid: 31544b2f00db61effc1d250b5f00874f + websites: + https://insufficient.coffee/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - conference + - crypto + relme: + https://insufficient.coffee/: true + last_post_title: Attending Real World Crypto and the Open Source Cryptography Workshop + 2024 + last_post_description: I’ll be attending the Real World Crypto Symposium in Toronto + in two weeks time, and after that, I’m once again co-organizing the Open Source + Cryptography Workshop. + last_post_date: "2024-03-14T00:00:00-07:00" + last_post_link: https://insufficient.coffee/2024/03/14/rwc-and-oscw-2024/ + last_post_categories: + - conference + - crypto + last_post_language: "" + last_post_guid: 639d41c8275bbba78d5a62d1349f17a7 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 12 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-316637671c487918233ff268c464f332.md b/content/discover/feed-316637671c487918233ff268c464f332.md new file mode 100644 index 000000000..ecd0aa8ec --- /dev/null +++ b/content/discover/feed-316637671c487918233ff268c464f332.md @@ -0,0 +1,54 @@ +--- +title: A Scripter's Notes +date: "1970-01-01T00:00:00Z" +description: |- + Recent content + on A Scripter's Notes +params: + feedlink: https://scripter.co/index.xml + feedtype: rss + feedid: 316637671c487918233ff268c464f332 + websites: + https://scripter.co/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 100DaysToOffload + - git + - jenkins + - unix + relme: + https://github.com/kaushalmodi/: true + https://scripter.co/: true + last_post_title: Version controlling Jenkins config + last_post_description: |- + Jenkins is an amazing free and open source continuous integration and + deployment software. But its primary means of configuration is a web + UI, and recently that cost me a lot of debug time. That set + last_post_date: "2022-07-20T00:18:00-04:00" + last_post_link: https://scripter.co/version-controlling-jenkins-config/ + last_post_categories: + - 100DaysToOffload + - git + - jenkins + - unix + last_post_language: "" + last_post_guid: 709f40adabed5affdce10f3f98f55130 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-31a1205705f85e6a9017e5f662437902.md b/content/discover/feed-31a1205705f85e6a9017e5f662437902.md new file mode 100644 index 000000000..1f512a3a6 --- /dev/null +++ b/content/discover/feed-31a1205705f85e6a9017e5f662437902.md @@ -0,0 +1,53 @@ +--- +title: Butterfly Mind +date: "1970-01-01T00:00:00Z" +description: Creative Nonfiction by Andrea Badgley +params: + feedlink: https://andreabadgley.blog/feed/ + feedtype: rss + feedid: 31a1205705f85e6a9017e5f662437902 + websites: + https://andreabadgley.blog/: true + blogrolls: [] + recommended: [] + recommender: + - http://scripting.com/rss.xml + - http://scripting.com/rssNightly.xml + categories: + - Garden + - gardening + - grass + - lawn + - nature + relme: {} + last_post_title: Coffee in the garden + last_post_description: I’ve been alone at home for a few days. All my people are + out of town. I’ve been lonely rattling around the house all by myself, and find + myself in a weird restless state where I don’t seem to + last_post_date: "2024-06-15T22:05:02Z" + last_post_link: https://andreabadgley.blog/2024/06/15/coffee-in-the-garden/ + last_post_categories: + - Garden + - gardening + - grass + - lawn + - nature + last_post_language: "" + last_post_guid: 15e21d0c6ef63e7933d4cc9f5314c0a6 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-31a18a03e13f72b1fa4359bd3a0b9018.md b/content/discover/feed-31a18a03e13f72b1fa4359bd3a0b9018.md deleted file mode 100644 index 8a8abf38f..000000000 --- a/content/discover/feed-31a18a03e13f72b1fa4359bd3a0b9018.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Links -date: "1970-01-01T00:00:00Z" -description: Curated links from Piccalilli. -params: - feedlink: https://piccalil.li/links.xml - feedtype: rss - feedid: 31a18a03e13f72b1fa4359bd3a0b9018 - websites: - https://piccalil.li/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://front-end.social/@piccalilli: true - last_post_title: I Need Your Help to Make 11ty Fully Independent and Sustainable - in 2024 - last_post_description: "" - last_post_date: "2024-05-28T07:55:00Z" - last_post_link: https://www.zachleat.com/web/independent-sustainable-11ty/ - last_post_categories: [] - last_post_guid: e80a611039eaa56c2b4c46af8ce2fcef - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-31a51080ac1b12af45724f52a6a46772.md b/content/discover/feed-31a51080ac1b12af45724f52a6a46772.md index 90a215ef8..4d08e130a 100644 --- a/content/discover/feed-31a51080ac1b12af45724f52a6a46772.md +++ b/content/discover/feed-31a51080ac1b12af45724f52a6a46772.md @@ -8,7 +8,6 @@ params: feedtype: rss feedid: 31a51080ac1b12af45724f52a6a46772 websites: - https://elsua.net/: false https://www.elsua.net/: true blogrolls: [] recommended: [] @@ -16,6 +15,7 @@ params: - https://colinwalker.blog/dailyfeed.xml - https://colinwalker.blog/livefeed.xml categories: + - '#socbiz' - Collaboration - Communities - Employee Engagement @@ -25,14 +25,13 @@ params: - Open Business - Open Leadership - Personal KM - - '#socbiz' - distributed-work - hybrid-workplace - relationships - remote-work - social-capital relme: - https://mastodon.social/@elsua: false + https://www.elsua.net/: true last_post_title: Myth Busting – Does Office Small Talk Really Matter while Working Remote / Distributed? last_post_description: Apparently, it does, but then again it may well be another @@ -41,6 +40,7 @@ params: last_post_date: "2022-10-03T16:48:07Z" last_post_link: https://www.elsua.net/2022/10/03/myth-busting-does-office-small-talk-really-matter-while-working-remote-distributed/ last_post_categories: + - '#socbiz' - Collaboration - Communities - Employee Engagement @@ -50,23 +50,27 @@ params: - Open Business - Open Leadership - Personal KM - - '#socbiz' - distributed-work - hybrid-workplace - relationships - remote-work - social-capital + last_post_language: "" last_post_guid: 064f013a5f9457091c3fbf7145c8e2f8 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 17 + score: 22 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-31a8fed10f563937a7fe4a106f547327.md b/content/discover/feed-31a8fed10f563937a7fe4a106f547327.md deleted file mode 100644 index 5c61d3ad9..000000000 --- a/content/discover/feed-31a8fed10f563937a7fe4a106f547327.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Mike Sheldon -date: "1970-01-01T00:00:00Z" -description: Public posts from @mikesheldon@octodon.social -params: - feedlink: https://octodon.social/@mikesheldon.rss - feedtype: rss - feedid: 31a8fed10f563937a7fe4a106f547327 - websites: - https://octodon.social/@mikesheldon: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://anxiousfox.co.uk/: true - https://blog.mikeasoft.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-31ad7816130640380f33102f08060deb.md b/content/discover/feed-31ad7816130640380f33102f08060deb.md deleted file mode 100644 index 5c7c35110..000000000 --- a/content/discover/feed-31ad7816130640380f33102f08060deb.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Host-telecom.com -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://www.host-telecom.com/feed/ - feedtype: rss - feedid: 31ad7816130640380f33102f08060deb - websites: - https://www.host-telecom.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Blog - - dedicated servers - - server rental - relme: {} - last_post_title: 'Security or performance: the importance for your e-commerce server' - last_post_description: |- - Should you compromise between security and speed? We'll look at whether you should skimp on any of these factors and how critical they are. - Post Security or performance: the importance for your e - last_post_date: "2024-06-27T11:23:49Z" - last_post_link: https://www.host-telecom.com/blog/security-or-performance-the-importance-for-your-e-commerce-server/ - last_post_categories: - - Blog - - dedicated servers - - server rental - last_post_guid: e549d3b12fa2af65c8ffbdda76325ff4 - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-31bf14341786c7f00a34d454bf328e7a.md b/content/discover/feed-31bf14341786c7f00a34d454bf328e7a.md new file mode 100644 index 000000000..eb9b492e3 --- /dev/null +++ b/content/discover/feed-31bf14341786c7f00a34d454bf328e7a.md @@ -0,0 +1,41 @@ +--- +title: Planet Emacslife +date: "2024-07-09T02:32:41Z" +description: "" +params: + feedlink: https://planet.emacslife.com/atom.xml + feedtype: atom + feedid: 31bf14341786c7f00a34d454bf328e7a + websites: {} + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: [] + relme: {} + last_post_title: 'Charles Choi: Announcing Casual IBuffer' + last_post_description: "" + last_post_date: "2024-07-08T21:25:00Z" + last_post_link: http://yummymelon.com/devnull/announcing-casual-ibuffer.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 375d2418249353723b4808d752c5380b + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 0 + score: 11 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-31c25d93b9ae57954a872bb842a33625.md b/content/discover/feed-31c25d93b9ae57954a872bb842a33625.md new file mode 100644 index 000000000..91de9b5a7 --- /dev/null +++ b/content/discover/feed-31c25d93b9ae57954a872bb842a33625.md @@ -0,0 +1,69 @@ +--- +title: Ngenet Dapat Duit +date: "2024-03-08T15:17:17-08:00" +description: "" +params: + feedlink: https://ngenet-dapat-duit.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 31c25d93b9ae57954a872bb842a33625 + websites: + https://ngenet-dapat-duit.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - bisnis internet + - bisnis online + - blog + - cari duit lewat internet + - cari uang lewat internet + - internet marketing + - ngeblog dapat duit + - ngenet dapat duit + relme: + https://eclipsedriven.blogspot.com/: true + https://emfmodeling.blogspot.com/: true + https://enakmurahkenyang.blogspot.com/: true + https://koperasi-bersama.blogspot.com/: true + https://lumen.hendyirawan.com/: true + https://magentoadmin.blogspot.com/: true + https://manfaatkefir.blogspot.com/: true + https://mobileflashdev.blogspot.com/: true + https://ngenet-dapat-duit.blogspot.com/: true + https://panduanubuntu.blogspot.com/: true + https://phpajaxweb.blogspot.com/: true + https://qt-mobility.blogspot.com/: true + https://rumah-sehat-avicenna.blogspot.com/: true + https://rumahkostdijualbandung.blogspot.com/: true + https://scala-enterprise.blogspot.com/: true + https://spring-java-ee.blogspot.com/: true + https://tutorial-java-programming.blogspot.com/: true + https://ubuntucomputing.blogspot.com/: true + https://www.blogger.com/profile/05192845149798446052: true + https://xdkmobile.blogspot.com/: true + last_post_title: 'Situs Internet Marketing: Cari Duit Internet .com' + last_post_description: "" + last_post_date: "2009-12-24T04:09:51-08:00" + last_post_link: https://ngenet-dapat-duit.blogspot.com/2009/12/situs-internet-marketing-cari-duit.html + last_post_categories: + - bisnis online + - internet marketing + last_post_language: "" + last_post_guid: a3a3ace9540ea6d8251536c62667216b + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-31c5f173d56dfea9bb567f004e6532ef.md b/content/discover/feed-31c5f173d56dfea9bb567f004e6532ef.md deleted file mode 100644 index 6a75d3fad..000000000 --- a/content/discover/feed-31c5f173d56dfea9bb567f004e6532ef.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Vivaldi Version Tracker -date: "1970-01-01T00:00:00Z" -description: Public posts from @vivaldiversiontracker@vivaldi.net -params: - feedlink: https://social.vivaldi.net/@vivaldiversiontracker.rss - feedtype: rss - feedid: 31c5f173d56dfea9bb567f004e6532ef - websites: - https://social.vivaldi.net/@vivaldiversiontracker: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://social.vivaldi.net/@browserversiontracker: true - https://vivaldi.com/blog/releases/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-31ce0bc3cf0684e2152d317a033882ce.md b/content/discover/feed-31ce0bc3cf0684e2152d317a033882ce.md new file mode 100644 index 000000000..5aed03739 --- /dev/null +++ b/content/discover/feed-31ce0bc3cf0684e2152d317a033882ce.md @@ -0,0 +1,43 @@ +--- +title: Rambling fool +date: "2024-02-07T18:00:34-08:00" +description: "" +params: + feedlink: https://jc-rambling-fool.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 31ce0bc3cf0684e2152d317a033882ce + websites: + https://jc-rambling-fool.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://foreach-hour-life.blogspot.com/: true + https://i-want-to-paint.blogspot.com/: true + https://jc-rambling-fool.blogspot.com/: true + https://www.blogger.com/profile/02963297031531256476: true + last_post_title: Gun crime graph + last_post_description: "" + last_post_date: "2012-11-21T08:31:55-08:00" + last_post_link: https://jc-rambling-fool.blogspot.com/2012/11/gun-crime-graph.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 1d2f24e610c52e118634542ecef483fd + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-31ce48be7a15f8340f5d3f54827c0982.md b/content/discover/feed-31ce48be7a15f8340f5d3f54827c0982.md new file mode 100644 index 000000000..3e1974934 --- /dev/null +++ b/content/discover/feed-31ce48be7a15f8340f5d3f54827c0982.md @@ -0,0 +1,49 @@ +--- +title: smays.com +date: "1970-01-01T00:00:00Z" +description: “We are about to face a flood of extremely useful devices, tools and + structures that make no allowance for the free will of individual humans.” -- Homo + Deus +params: + feedlink: https://www.smays.com/feed/ + feedtype: rss + feedid: 31ce48be7a15f8340f5d3f54827c0982 + websites: + https://www.smays.com/: true + blogrolls: [] + recommended: [] + recommender: + - http://scripting.com/rss.xml + - http://scripting.com/rssNightly.xml + categories: + - Artificial Intelligence + - Media & Entertainment + relme: {} + last_post_title: “More human than human” + last_post_description: That’s the motto of the corporation in Ridley Scott’s sci-fi + classic, Blade Runner. The film was released 42 years ago and has stood the test + of time. I watched it again last night. For the tenth + last_post_date: "2024-07-07T15:21:12Z" + last_post_link: https://www.smays.com/2024/07/more-human/ + last_post_categories: + - Artificial Intelligence + - Media & Entertainment + last_post_language: "" + last_post_guid: d5b78d20a093b5643d195429bafde885 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 2 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-320184adc863c858649192ac30071a23.md b/content/discover/feed-320184adc863c858649192ac30071a23.md new file mode 100644 index 000000000..73be2a8fc --- /dev/null +++ b/content/discover/feed-320184adc863c858649192ac30071a23.md @@ -0,0 +1,126 @@ +--- +title: A Twilight Dad +date: "2024-02-18T19:12:31-08:00" +description: "" +params: + feedlink: https://twilight-dad.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 320184adc863c858649192ac30071a23 + websites: + https://twilight-dad.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Alice + - Angela + - Bella + - Bio + - Bree Tanner + - Caius + - Charlie Swan + - Edward + - Emmett + - Esme + - FAQ + - Irina + - Jada + - James + - Jasper + - Korea + - Marcus + - Mormonism + - New Moon + - Rosalie + - Rose by a Lemon Tree + - Royce + - Siggi + - Tess + - Twenty questions + - Victoria + - Volturi + - anachronism + - beta + - character study + - compendium + - conflict + - criticism + - cute + - dialogue + - diatribe + - eternity + - fan fiction + - femininity + - femslash + - hugs + - humor + - interview + - intimacy + - irony + - listening + - love + - movie + - msr + - musings + - phonies + - platonic + - prayer + - preview + - quizzes + - rant + - rape + - readers + - religion + - reviews + - setting + - speculation + - stats + - suicide + - teams + - the "real world" + - the Netherlands + - the real world + - twitter + - vera + - werewolves + - writers' block + - writing + - Æfintýri + relme: + https://dauclair.blogspot.com/: true + https://halo-legendz.blogspot.com/: true + https://logicaltypes.blogspot.com/: true + https://odst-geophf.blogspot.com/: true + https://twilight-dad.blogspot.com/: true + https://www.blogger.com/profile/09936874508556500234: true + last_post_title: The Art of Listening (Suicide) + last_post_description: "" + last_post_date: "2019-11-02T08:37:48-07:00" + last_post_link: https://twilight-dad.blogspot.com/2019/11/the-art-of-listening-suicide.html + last_post_categories: + - Jada + - Siggi + - Tess + - listening + - suicide + - writing + - Æfintýri + last_post_language: "" + last_post_guid: bfa2d9ae8be771ee7df4940da01efaa3 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3204bfac10f90f215ed6f1673d8b4f4d.md b/content/discover/feed-3204bfac10f90f215ed6f1673d8b4f4d.md new file mode 100644 index 000000000..87006887f --- /dev/null +++ b/content/discover/feed-3204bfac10f90f215ed6f1673d8b4f4d.md @@ -0,0 +1,42 @@ +--- +title: GSOC19 Ahmed ElShreif +date: "2024-02-19T21:33:15-08:00" +description: "" +params: + feedlink: https://ahmedelshreif.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 3204bfac10f90f215ed6f1673d8b4f4d + websites: + https://ahmedelshreif.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://ahmedelshreif.blogspot.com/: true + https://ahmedelshreifgsoc20.blogspot.com/: true + https://www.blogger.com/profile/00164441255153532102: true + last_post_title: GSoC final report + last_post_description: "" + last_post_date: "2020-08-28T17:13:37-07:00" + last_post_link: https://ahmedelshreif.blogspot.com/2019/08/gsoc-final-report.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 81acf5436aefbf32cc3181faf86b48b4 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-32068d30e5f654ea54c6b8572957d067.md b/content/discover/feed-32068d30e5f654ea54c6b8572957d067.md new file mode 100644 index 000000000..c5f9c8110 --- /dev/null +++ b/content/discover/feed-32068d30e5f654ea54c6b8572957d067.md @@ -0,0 +1,45 @@ +--- +title: This Is The Frequency +date: "1970-01-01T00:00:00Z" +description: (in case you've been wondering) +params: + feedlink: https://kenn-hussey.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 32068d30e5f654ea54c6b8572957d067 + websites: + https://kenn-hussey.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Cloudsmith + relme: + https://kenn-hussey.blogspot.com/: true + https://www.blogger.com/profile/15584300551729300431: true + last_post_title: On Model-Based Modeling Builds... + last_post_description: In principle, I think most people agree that builds should + be a shared responsibility, i.e., everyone should be equally able to do builds + and the effort to do so should be equally distributed. + last_post_date: "2010-05-18T23:12:00Z" + last_post_link: https://kenn-hussey.blogspot.com/2010/05/on-model-based-modeling-builds.html + last_post_categories: + - Cloudsmith + last_post_language: "" + last_post_guid: 06a2d4cf9a95960a59ebc3b943d02c50 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3217e7dac2db275bea1c22d6d0625aa2.md b/content/discover/feed-3217e7dac2db275bea1c22d6d0625aa2.md new file mode 100644 index 000000000..1dd753a01 --- /dev/null +++ b/content/discover/feed-3217e7dac2db275bea1c22d6d0625aa2.md @@ -0,0 +1,132 @@ +--- +title: Wadler's Blog +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://wadler.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 3217e7dac2db275bea1c22d6d0625aa2 + websites: + https://wadler.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ACM + - AI + - Academia + - Agda + - Architecture + - BDS + - BLM + - Blockchain + - Books + - Brexit + - Category Theory + - Cinema + - Climate Change + - Comedy + - Comics + - Communication + - Computing + - Concurrency + - Copyright + - Covid-19 + - Cryptocurrency + - Cycling + - DRM + - DSL + - Databases + - Developers + - Distributed Computing + - Dynamic and Static Typing + - EU + - Edinburgh + - Education + - Environment + - Erlang + - Europe + - F# + - Finance + - Formal Methods + - Functional Programming + - Gender + - Graphics + - Green + - Haskell + - IOHK + - Independence + - Internet + - Israel + - Japan + - Java + - JavaScript + - Lego + - Logic + - Mathematics + - Net Neutrality + - Object-Oriented + - Open Access + - Palestine + - Politics + - Privacy + - Productivity + - Programming Languages + - Pyret + - Racket + - Recursion + - SIGPLAN + - Scala + - Scheme + - Science + - Science Fiction + - Scotland + - Security + - Session Types + - Status + - Strange Loop + - Sweden + - Technology + - Theatre + - Theory + - Types + - UK + - US + - University + - Web + - Writing + - Yes! + relme: + https://wadler.blogspot.com/: true + https://wadlerindy.blogspot.com/: true + https://www.blogger.com/profile/12009347515095774366: true + last_post_title: Remember to vote, tactically (a message for the progressive among + you) + last_post_description: Happy Election Day!The above shows an average of five recent + polls for my constituency, Edinburgh North and Leith, and comes courtesy of Stop + the Tories. Clearly, the Tories have no chance, but I + last_post_date: "2024-07-04T07:09:00Z" + last_post_link: https://wadler.blogspot.com/2024/07/remember-to-vote-tactically-message-for.html + last_post_categories: + - Politics + - Scotland + - UK + last_post_language: "" + last_post_guid: c1c09d8fcefad21ec2d33c576f408515 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-323398fcdcf6168fe4daea4c6261a1dc.md b/content/discover/feed-323398fcdcf6168fe4daea4c6261a1dc.md deleted file mode 100644 index ccda6a8de..000000000 --- a/content/discover/feed-323398fcdcf6168fe4daea4c6261a1dc.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Steve Hardy -date: "2024-06-29T02:12:08-07:00" -description: Open-source, Linux, OpenStack, Heat, programming -params: - feedlink: https://hardysteven.blogspot.co.uk/feeds/posts/default/-/openstack - feedtype: atom - feedid: 323398fcdcf6168fe4daea4c6261a1dc - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - openstack - - heat - - tripleo - relme: {} - last_post_title: TripleO Containerized deployments, debugging basics - last_post_description: "" - last_post_date: "2018-06-04T10:09:25-07:00" - last_post_link: https://hardysteven.blogspot.com/2018/06/tripleo-containerized-deployments.html - last_post_categories: - - openstack - - tripleo - last_post_guid: 9d08894ce339051c7e30c93858342867 - score_criteria: - cats: 3 - description: 3 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3253dfdc4db9aa7ab4be34502ff0fd56.md b/content/discover/feed-3253dfdc4db9aa7ab4be34502ff0fd56.md deleted file mode 100644 index 13ff5f7a2..000000000 --- a/content/discover/feed-3253dfdc4db9aa7ab4be34502ff0fd56.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Ruminate Podcast -date: "2024-05-28T21:16:00Z" -description: A podcast about what's on our minds. -params: - feedlink: https://feeds.libsyn.com/517508/rss - feedtype: rss - feedid: 3253dfdc4db9aa7ab4be34502ff0fd56 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Technology - relme: {} - last_post_title: 185 - I'll Eat Glue Cheese - last_post_description: John goes to Applebee's and a new game store, they both check - out the new Legend of Zelda Lego, Robb launched a new project, then they head - into AI corner. Hey, it's Jason! // OfficeSpace.gif Matrix - last_post_date: "2024-05-28T21:16:00Z" - last_post_link: http://sites.libsyn.com/517508/185-ill-eat-glue-cheese - last_post_categories: [] - last_post_guid: 0553a37b29a309482d73a20aad8acde9 - score_criteria: - cats: 1 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 7 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-3255a726384ff1dcce485273612d86f3.md b/content/discover/feed-3255a726384ff1dcce485273612d86f3.md new file mode 100644 index 000000000..e22dd4146 --- /dev/null +++ b/content/discover/feed-3255a726384ff1dcce485273612d86f3.md @@ -0,0 +1,48 @@ +--- +title: Mastering Dungeons +date: "2024-07-03T05:00:00-07:00" +description: 'RPG veterans and game designers Teos AbadÃa and Shawn Merwin look at + the game and the hobby of D&D from a variety of viewpoints: reporting the news, + understanding the business, reviewing the' +params: + feedlink: https://feed.podbean.com/MasteringDungeons/feed.xml + feedtype: rss + feedid: 3255a726384ff1dcce485273612d86f3 + websites: + https://masteringdungeons.podbean.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Leisure + relme: + https://masteringdungeons.podbean.com/: true + last_post_title: Setting Expectations for your TTRPG Projects! (MD 196) + last_post_description: |- + Episode 196 of Mastering Dungeons!  + + + Main topic: Setting Expectations for your TTRPG Projects! + Wrel (Michael Henderson) joins Shawn Merwin to discuss how to set the right expectations for your + last_post_date: "2024-07-03T05:00:00-07:00" + last_post_link: https://MasteringDungeons.podbean.com/e/setting-expectations-for-your-ttrpg-projects-md-196/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 350c10c80bbb8c13181156534b248f90 + score_criteria: + cats: 1 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: true + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-326f3fd9131e906d3ea88d33fbf49ea2.md b/content/discover/feed-326f3fd9131e906d3ea88d33fbf49ea2.md new file mode 100644 index 000000000..32393d7dc --- /dev/null +++ b/content/discover/feed-326f3fd9131e906d3ea88d33fbf49ea2.md @@ -0,0 +1,50 @@ +--- +title: RFS2 +date: "2024-03-08T09:38:01-08:00" +description: "" +params: + feedlink: https://rockabillfilmsociety.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 326f3fd9131e906d3ea88d33fbf49ea2 + websites: + https://rockabillfilmsociety.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://boardgamethoughts.blogspot.com/: true + https://coderthoughts.blogspot.com/: true + https://hikersthoughts.blogspot.com/: true + https://laarderhoogt.blogspot.com/: true + https://lightdarknesspainting.blogspot.com/: true + https://on-software-architecture.blogspot.com/: true + https://osgithoughts.blogspot.com/: true + https://rockabillfilmsoc.blogspot.com/: true + https://rockabillfilmsociety.blogspot.com/: true + https://testblogaswebsite.blogspot.com/: true + https://www.blogger.com/profile/13786738766478890804: true + last_post_title: Spring Season 2023 + last_post_description: "" + last_post_date: "2023-01-02T09:15:58-08:00" + last_post_link: https://rockabillfilmsociety.blogspot.com/2023/01/spring-season-2023.html + last_post_categories: [] + last_post_language: "" + last_post_guid: df4cc661607d2dc19e338729ce70faf2 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-328f58e64d34a989d5380cae352466df.md b/content/discover/feed-328f58e64d34a989d5380cae352466df.md new file mode 100644 index 000000000..8038a1171 --- /dev/null +++ b/content/discover/feed-328f58e64d34a989d5380cae352466df.md @@ -0,0 +1,44 @@ +--- +title: Tribblix +date: "2024-06-30T13:15:32-07:00" +description: An OpenSolaris-derived distribution based on the illumos core with a + retro feel. +params: + feedlink: https://tribblix.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 328f58e64d34a989d5380cae352466df + websites: + https://tribblix.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://petertribble.blogspot.com/: true + https://ptribble.blogspot.com/: true + https://tribblix.blogspot.com/: true + https://www.blogger.com/profile/09363446984245451854: true + last_post_title: Changes in 0m34 prerelease + last_post_description: "" + last_post_date: "2024-04-01T11:46:04-07:00" + last_post_link: https://tribblix.blogspot.com/2024/04/changes-in-0m34-prerelease.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 1b1018409fc9d4116eb2ac63627b7f87 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-32a07a2b0a435d69163ab5dc43637209.md b/content/discover/feed-32a07a2b0a435d69163ab5dc43637209.md deleted file mode 100644 index 672e96ec7..000000000 --- a/content/discover/feed-32a07a2b0a435d69163ab5dc43637209.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Comments for Tail -f sbauza.log -date: "1970-01-01T00:00:00Z" -description: Thoughts about Python, Linux, home automation or Openstack -params: - feedlink: https://sbauza.wordpress.com/comments/feed/ - feedtype: rss - feedid: 32a07a2b0a435d69163ab5dc43637209 - websites: - https://sbauza.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on How to compare 2 patchsets in Gerrit ? by OpenStack - Community Weekly Newsletter (Nov 14 – 21) - GREENSTACK - last_post_description: '[…] By Sylvain Bauza: How to compare 2 patchsets in Gerrit - ? […]' - last_post_date: "2014-11-22T00:56:41Z" - last_post_link: https://sbauza.wordpress.com/2014/11/14/how-to-compare-2-patchsets-in-gerrit/comment-page-1/#comment-56 - last_post_categories: [] - last_post_guid: 3a02607e8a842fa8f5d01e1fb86b2694 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-32bd9c199ba173091f739ff070a4fa5d.md b/content/discover/feed-32bd9c199ba173091f739ff070a4fa5d.md index 78a748988..aef20da47 100644 --- a/content/discover/feed-32bd9c199ba173091f739ff070a4fa5d.md +++ b/content/discover/feed-32bd9c199ba173091f739ff070a4fa5d.md @@ -11,13 +11,13 @@ params: blogrolls: - https://colinwalker.blog/feeds.opml recommended: - - http://scripting.com/misc/artfeed.xml + - http://scripting.com/podcast.xml - http://scripting.com/rss.xml - http://scripting.com/rssNightly.xml - https://alanralph.co.uk/index.xml - https://alastairjohnston.com/feed.xml - https://andysylvester.com/feed/ - - https://annie.micro.blog/feed.json + - https://annie.micro.blog/feed.xml - https://anniemueller.com/feed/ - https://api.substack.com/feed/podcast/2115741/private/4827c554-8e15-4ea9-9bab-190d70067a86.rss - https://austinkleon.com/feed/ @@ -27,8 +27,7 @@ params: - https://bix.blog/feed/ - https://blog.cjeller.site/feed/ - https://blog.jim-nielsen.com/feed.xml - - https://blog.whiona.me/feed/ - - https://brandons-journal.com/feed.atom + - https://brandons-journal.com/feed/ - https://buttondown.email/ownyourweb/rss - https://cdevroe.com/feed/ - https://cernezan.com/rss.xml @@ -97,12 +96,11 @@ params: - https://www.ribbonfarm.com/feed/ - https://www.themarginalian.org/feed/ - https://andysylvester.com/comments/feed/ - - https://annie.micro.blog/feed.xml - https://annie.micro.blog/podcast.xml - https://anniemueller.com/comments/feed/ - https://austinkleon.com/comments/feed/ - - https://blog.whiona.me/atom.xml - - https://blog.whiona.me/rss.xml + - https://baty.net/feed + - https://brandons-journal.com/comments/feed/ - https://cdevroe.com/comments/feed/ - https://chrislt.art/comments/feed/ - https://chrislt.art/feed/ @@ -113,14 +111,14 @@ params: - https://api.substack.com/feed/podcast/2115741.rss - https://flinders.bearblog.dev/feed/ - https://frittiert.es/feed/page:feed.xml + - https://gkeenan.co/avgb/feed.xml - https://jabel.blog/podcast.xml - - https://jakelacaze.com/feed.xml - - https://jakelacaze.com/podcast.xml - https://jamesvandyne.com/feed/ - https://jlelse.blog/.atom - https://kevquirk.com/feed + - https://kevquirk.com/notes-feed + - https://kevquirk.com/watch-log-feed - https://lili.bearblog.dev/feed/ - - https://log.kvl.me/rss-daily.xml - https://lucybellwood.com/comments/feed/ - https://manuelmoreale.com/feed/instagram - https://meadow.bearblog.dev/feed/?type=rss @@ -142,42 +140,41 @@ params: - https://www.manton.org/podcast.xml - https://www.patrickrhone.net/comments/feed/ - https://ribbonfarm.com/comments/feed/ + - https://www.thejaymo.net/comments/feed/ - https://www.thejaymo.net/feed/ - https://feeds.feedburner.com/brainpickings/rss recommender: - http://scripting.com/rss.xml + - http://scripting.com/rssNightly.xml - https://colinwalker.blog/dailyfeed.xml - https://colinwalker.blog/livefeed.xml - - https://jlelse.blog/.min.rss - - https://jlelse.blog/.rss - - https://jlelse.blog/index.xml - - https://kevq.uk/feed - - https://kevq.uk/feed.xml - - https://kevq.uk/feed/ - - https://kevquirk.com/feed categories: [] relme: https://colinwalker.blog/: true https://github.com/colin-walker: true - https://micro.blog/colinwalker: false - last_post_title: Posts for 01/06/2024 - last_post_description: '# It turns out that Harry has a condition called acrocyanosis - — about 5% of kids have it — where hands, feet and parts of the face can go blue, - especially in response to high temperatures. They' - last_post_date: "2024-06-04T00:00:00Z" - last_post_link: https://colinwalker.blog/?date=2024-06-01 + last_post_title: 08/07/2024 + last_post_description: '# Today began with the now customary (but shortly lived) + Monday morning trip to Starbucks and my medium latte. The walk, and coffee, give + me time to think and catch up on RSS feeds and start writing' + last_post_date: "2024-07-09T00:00:00Z" + last_post_link: https://colinwalker.blog/?date=2024-07-08 last_post_categories: [] - last_post_guid: df1448f4281d6a1dbc843de2111cbe43 + last_post_language: "" + last_post_guid: 835252fc2c7b1d3e3ad1f701df207bbd score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 10 relme: 2 title: 3 website: 2 - score: 25 + score: 29 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-32be29133a0dea22a04dcf9813fb6b28.md b/content/discover/feed-32be29133a0dea22a04dcf9813fb6b28.md index 3547d8fb8..545a17882 100644 --- a/content/discover/feed-32be29133a0dea22a04dcf9813fb6b28.md +++ b/content/discover/feed-32be29133a0dea22a04dcf9813fb6b28.md @@ -1,7 +1,7 @@ --- -title: Untitled +title: Michal Zelazny date: "1970-01-01T00:00:00Z" -description: Michal Zelazny +description: The latest blog posts params: feedlink: https://www.michalzelazny.com/feed/ feedtype: rss @@ -12,28 +12,31 @@ params: recommender: - https://blog.numericcitizen.me/feed.xml - https://blog.numericcitizen.me/podcast.xml - categories: - - Thoughts + categories: [] relme: {} - last_post_title: Courage - last_post_description: There was a time when I was terrified. I did things I’m - not proud of. I had my reasons. And I had my excuses. Later I realized what it - was, what it was that made me so afraid that I was - last_post_date: "2024-05-30T21:17:57Z" - last_post_link: https://www.michalzelazny.com/courage/ - last_post_categories: - - Thoughts - last_post_guid: 9508023234f4a32c7280f046dce87bad + last_post_title: Small things + last_post_description: Passing by other people we rarely think about their lives. + Even those who we think we know, they hide something. Even those close to us, + both emotionally and psychically, may have something unspoken, + last_post_date: "2024-07-07T09:15:00+02:00" + last_post_link: https://www.michalzelazny.com/blog/small-things + last_post_categories: [] + last_post_language: "" + last_post_guid: 270c49693c3deb90cdf619f6df34ee9d score_criteria: cats: 0 description: 3 - postcats: 1 + feedlangs: 0 + postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 12 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-32ce91a6cb075670d1e68e26ec7a0d77.md b/content/discover/feed-32ce91a6cb075670d1e68e26ec7a0d77.md new file mode 100644 index 000000000..843aecc88 --- /dev/null +++ b/content/discover/feed-32ce91a6cb075670d1e68e26ec7a0d77.md @@ -0,0 +1,86 @@ +--- +title: Frank Wierzbicki's Weblog +date: "1970-01-01T00:00:00Z" +description: Jython, Python, other stuff. +params: + feedlink: https://fwierzbicki.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 32ce91a6cb075670d1e68e26ec7a0d77 + websites: + https://fwierzbicki.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - _ast + - adconion + - antlr + - asdl + - asm + - compiler + - django + - djangocon + - europython + - europython2008 + - gae + - glassfish + - gsoc + - hg + - invokedynamic + - jruby + - jython + - mako + - mercurial + - modjy + - mysql + - nbpython + - netbeans + - olpc + - parser + - pycon + - pylons + - python + - release + - rietveld + - saucelabs + - science + - selenium + - setuptools + - sqlalchemy + - sun + - turbogears + - twisted + - vim + - wsgi + relme: + https://fwierzbicki.blogspot.com/: true + last_post_title: Jython 2.7.2 final released! + last_post_description: |- + On behalf of the Jython development team, I am pleased to announce that + Jython 2.7.2 has been released. + + Notable additions include: + +   * much improved support for locale, but as a backward + last_post_date: "2020-03-26T04:37:00Z" + last_post_link: https://fwierzbicki.blogspot.com/2020/03/jython-272-final-released.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 645f6dc30951a93c106d5f62fbe801b1 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-32e2a6b5e067136cb6f958fb9c4702fd.md b/content/discover/feed-32e2a6b5e067136cb6f958fb9c4702fd.md deleted file mode 100644 index 2dbda7438..000000000 --- a/content/discover/feed-32e2a6b5e067136cb6f958fb9c4702fd.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Comments for Proto -date: "1970-01-01T00:00:00Z" -description: My Proto WordPress Sandbox -params: - feedlink: https://proto.tzyl.nl/wp/comments/feed/ - feedtype: rss - feedid: 32e2a6b5e067136cb6f958fb9c4702fd - websites: - https://proto.tzyl.nl/wp: true - https://proto.tzyl.nl/wp/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-32e9f899e680fb989d7c075566f0a095.md b/content/discover/feed-32e9f899e680fb989d7c075566f0a095.md new file mode 100644 index 000000000..4ce3b16fc --- /dev/null +++ b/content/discover/feed-32e9f899e680fb989d7c075566f0a095.md @@ -0,0 +1,44 @@ +--- +title: Blogs on Noel Rappin Writes Here +date: "1970-01-01T00:00:00Z" +description: Recent content in Blogs on Noel Rappin Writes Here +params: + feedlink: https://noelrappin.com/blog/index.xml + feedtype: rss + feedid: 32e9f899e680fb989d7c075566f0a095 + websites: + https://noelrappin.com/blog/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: [] + relme: {} + last_post_title: 'Better Know A Ruby Thing: On The Use of Private Methods' + last_post_description: Last time around, we got to Better Know access control in + Ruby, and I started to write my opinion on the use of private methods in Ruby, + but my position/argument/rant had gotten out of hand and so I + last_post_date: "2024-06-22T00:00:00Z" + last_post_link: https://noelrappin.com/blog/2024/06/better-know-access-control-part-2/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 9a22c461e8458a8279b823f97258a9f3 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-33060cffa52f0dea467a017286b94f85.md b/content/discover/feed-33060cffa52f0dea467a017286b94f85.md deleted file mode 100644 index a42f9096f..000000000 --- a/content/discover/feed-33060cffa52f0dea467a017286b94f85.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Comments for Kevin Drum -date: "1970-01-01T00:00:00Z" -description: Cats, charts, and politics -params: - feedlink: https://jabberwocking.com/comments/feed/ - feedtype: rss - feedid: 33060cffa52f0dea467a017286b94f85 - websites: - https://jabberwocking.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Health update by eannie - last_post_description: |- - This is such good news….again…thank you for sharing…I’ve been reading your column for so many years….you’ve become my trusted and important “cyber friend” - Happy for you….and Marian - last_post_date: "2024-06-04T11:32:11Z" - last_post_link: https://jabberwocking.com/health-update-59/comment-page-1/#comment-168835 - last_post_categories: [] - last_post_guid: 1624eada97f718779a11aa3bb11a047f - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-332034a602d53104029f16ab5c593026.md b/content/discover/feed-332034a602d53104029f16ab5c593026.md new file mode 100644 index 000000000..675c75e97 --- /dev/null +++ b/content/discover/feed-332034a602d53104029f16ab5c593026.md @@ -0,0 +1,53 @@ +--- +title: Aram Zucker-Scharff +date: "2024-06-28T12:50:36Z" +description: Technology won't save the world, but you can. Maybe, together, we can. +params: + feedlink: https://cohost.org/Chronotope/rss/public.atom + feedtype: atom + feedid: 332034a602d53104029f16ab5c593026 + websites: + https://cohost.org/Chronotope: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ableism + - politics + relme: + https://aramzs.glitch.me/: true + https://aramzs.xyz/: true + https://cohost.org/Chronotope: true + https://fightwithtools.dev/: true + https://github.com/aramzs: true + https://indieweb.social/@Chronotope: true + https://keybase.io/aramzs: true + last_post_title: feel like Hochul attempting to gank congestion pricing is definitely + being underrated as an example of institutional ableism + last_post_description: 'this will singlehandedly "defer" (read: functionally kill) + like 20 MTA improvements for people with disabilities (and these "improvements" + are usually a lot closer to "extremely basic compliance with' + last_post_date: "2024-07-01T15:06:44Z" + last_post_link: https://cohost.org/alyaza/post/6624309-feel-like-hochul-att + last_post_categories: + - ableism + - politics + last_post_language: "" + last_post_guid: 85703dcc2ec5345692144a0c98e34971 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-332cd6411b972597ffdbe059561f94b3.md b/content/discover/feed-332cd6411b972597ffdbe059561f94b3.md new file mode 100644 index 000000000..d7aa160c0 --- /dev/null +++ b/content/discover/feed-332cd6411b972597ffdbe059561f94b3.md @@ -0,0 +1,43 @@ +--- +title: Andree's Debian & General Musings +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://andreeleidenfrost.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 332cd6411b972597ffdbe059561f94b3 + websites: + https://andreeleidenfrost.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://andreeleidenfrost.blogspot.com/: true + https://www.blogger.com/profile/06283256192526426220: true + last_post_title: EeePC 901 with Ubuntu Intrepid Ibex + last_post_description: I have finally bought an EeePC 901, mainly to use for travelling.I + had been holding off for some weeks because I had hoped (in vain) that the Linux + version with 20GB SSD and without a Windows XP + last_post_date: "2008-11-03T12:02:00Z" + last_post_link: https://andreeleidenfrost.blogspot.com/2008/11/eeepc-901-with-ubuntu-intrepid-ibex.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 56dc4d6b7dcee93586e184a8b90f2274 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-332d4de7a861bf0409323382566d64df.md b/content/discover/feed-332d4de7a861bf0409323382566d64df.md index 76a45a205..460485675 100644 --- a/content/discover/feed-332d4de7a861bf0409323382566d64df.md +++ b/content/discover/feed-332d4de7a861bf0409323382566d64df.md @@ -13,33 +13,45 @@ params: - http://scripting.com/rss.xml - http://scripting.com/rssNightly.xml categories: - - Piracy - - Fmovies - - fmoviesz - - india + - Anton Napolsky + - Apps and Sites + - Lawsuits + - Valeriia Ermakova + - argentina + - fbi + - z-library relme: {} - last_post_title: Fmovies and Other Piracy Streaming Giants Switch to New Domains - last_post_description: Several of the largest pirate movie streaming sites, including - Fmovies and Sflix, relocated to new homes over the weekend, switching domain registrars - in the process. No official explanation was - last_post_date: "2024-06-03T19:33:48Z" - last_post_link: https://torrentfreak.com/fmovies-and-other-piracy-streaming-giants-switch-to-new-domains-240503/ + last_post_title: Z-Library Admins “Escape House Arrest” After Judge Approves U.S. + Extradition + last_post_description: Two alleged Z-Library operators who were arrested in Argentina + at the request of the United States, have reportedly escaped from house arrest. + Russian citizens Anton Napolsky and Valeriia Ermakova + last_post_date: "2024-07-08T16:40:52Z" + last_post_link: https://torrentfreak.com/z-library-admins-escape-house-arrest-after-judge-approves-u-s-extradition-240708/ last_post_categories: - - Piracy - - Fmovies - - fmoviesz - - india - last_post_guid: 40b6dbb42dfe88cefe52b78109f2c3ef + - Anton Napolsky + - Apps and Sites + - Lawsuits + - Valeriia Ermakova + - argentina + - fbi + - z-library + last_post_language: "" + last_post_guid: 736744700e8bd0de81ae9e48c606f83d score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 14 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-333ca8048541b40781189cd6a99a748c.md b/content/discover/feed-333ca8048541b40781189cd6a99a748c.md new file mode 100644 index 000000000..35a87f9bd --- /dev/null +++ b/content/discover/feed-333ca8048541b40781189cd6a99a748c.md @@ -0,0 +1,108 @@ +--- +title: Coyle's InFormation +date: "1970-01-01T00:00:00Z" +description: Comments on the digital age, which, as we all know, is 42. +params: + feedlink: https://kcoyle.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 333ca8048541b40781189cd6a99a748c + websites: + https://kcoyle.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - DCMI + - DRM + - Digital libraries + - ER models + - FOAF + - FRBR + - Google + - Internet Archive + - LRM + - MARC + - OpenLibrary + - RDA + - RDA DCMI + - RDF + - RFID + - SHACL + - Standards + - Wikipedia + - application profiles + - authority control + - bibframe + - books + - cataloging + - classification + - classification LCSH + - controlled digital lending + - copyright + - digitization + - ebooks + - googlebooks + - identifiers + - intellectual freedom + - internet + - |- + keywords + searching + - knowledge organization + - kosovo + - language + - lcsh intell + - libraries + - library catalogs + - library history + - linked data + - linux + - metadata + - names + - oclc + - open access + - open data + - politics + - privacy + - reading + - schema.org + - search + - semantic web + - skyriver + - vocabularies + - wish list + - women + - women and technology + - women technology + relme: + https://kcoyle.blogspot.com/: true + https://www.blogger.com/profile/02519757456533839003: true + last_post_title: Words + last_post_description: "In 1949, George Kingsley Zipf published the book \"Human + Behavior and the Principle of Least Effort\" in which he develops what became + known as \"Zipf's law.\" \n\n\n\n\n\n\n\n\n\nZipf was one of the\nfirst to do" + last_post_date: "2023-10-13T16:04:00Z" + last_post_link: https://kcoyle.blogspot.com/2023/10/words.html + last_post_categories: + - |- + keywords + searching + last_post_language: "" + last_post_guid: 67ecaa31604d533eee81dcd0a4e5b596 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3345866a604dc73d17b60fb410b09b23.md b/content/discover/feed-3345866a604dc73d17b60fb410b09b23.md deleted file mode 100644 index debabfbba..000000000 --- a/content/discover/feed-3345866a604dc73d17b60fb410b09b23.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: Cisco Blogs -date: "1970-01-01T00:00:00Z" -description: Latest articles published on Cisco Blogs -params: - feedlink: https://feedpress.me/CiscoBlogs - feedtype: rss - feedid: 3345866a604dc73d17b60fb410b09b23 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Security - - cisco user protection - - cyber attack - - Featured - - secure supply chain - - user security - relme: {} - last_post_title: Stopping Supply Chain Attacks with Cisco’s User Protection Suite - last_post_description: Learn about how Cisco’s User Protection Suite can stop supply - chain attacks and protect users. - last_post_date: "2024-06-28T12:00:40Z" - last_post_link: https://feedpress.me/link/23532/16728185/stopping-supply-chain-attacks-with-ciscos-user-protection-suite - last_post_categories: - - Security - - cisco user protection - - cyber attack - - Featured - - secure supply chain - - user security - last_post_guid: b8eb1a085b4c89c740ae2f0e035d6e59 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3347505983c8fe2e842eaae41a5b240f.md b/content/discover/feed-3347505983c8fe2e842eaae41a5b240f.md new file mode 100644 index 000000000..f3243d6c8 --- /dev/null +++ b/content/discover/feed-3347505983c8fe2e842eaae41a5b240f.md @@ -0,0 +1,44 @@ +--- +title: Kali Linux +date: "1970-01-01T00:00:00Z" +description: Home of Kali Linux, an Advanced Penetration Testing Linux distribution + used for Penetration Testing, Ethical Hacking and network security assessments. +params: + feedlink: https://www.kali.org/rss.xml + feedtype: rss + feedid: 3347505983c8fe2e842eaae41a5b240f + websites: + https://www.kali.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://infosec.exchange/@kalilinux: true + https://www.kali.org/: true + last_post_title: Kali Linux 2024.2 Release (t64, GNOME 46 & Community Packages) + last_post_description: A little later than usual, but Kali 2024.2 is here! The delay + has been due to changes under the hood to make this happen, which is where a lot + of focus has been. The community has helped out a huge + last_post_date: "2024-06-05T00:00:00Z" + last_post_link: https://www.kali.org/blog/kali-linux-2024-2-release/ + last_post_categories: [] + last_post_language: "" + last_post_guid: aeb7ed07eeb44018d3581e44ba059f6a + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-3349fe28e8c30054b4e6a76128144a8a.md b/content/discover/feed-3349fe28e8c30054b4e6a76128144a8a.md index 07b1b836d..c360de4af 100644 --- a/content/discover/feed-3349fe28e8c30054b4e6a76128144a8a.md +++ b/content/discover/feed-3349fe28e8c30054b4e6a76128144a8a.md @@ -16,6 +16,7 @@ params: - WordPress relme: https://fosstodon.org/@tnash: true + https://timnash.co.uk/: true last_post_title: Still blogging like a confused hacker! last_post_description: |- How is this site powered? I'm pretty sure your site isn't running this application stack for WordPress! @@ -26,17 +27,22 @@ params: last_post_categories: - DevOps - WordPress + last_post_language: "" last_post_guid: 0083a0c41bc2ece706f326db598078dd score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 2 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 12 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-334afe8070e7fd141c674ad55bf7914b.md b/content/discover/feed-334afe8070e7fd141c674ad55bf7914b.md new file mode 100644 index 000000000..7bc34a6ed --- /dev/null +++ b/content/discover/feed-334afe8070e7fd141c674ad55bf7914b.md @@ -0,0 +1,44 @@ +--- +title: Stories by Simon Quigley on Medium +date: "1970-01-01T00:00:00Z" +description: Stories by Simon Quigley on Medium +params: + feedlink: https://medium.com/feed/@tsimonq2 + feedtype: rss + feedid: 334afe8070e7fd141c674ad55bf7914b + websites: + https://medium.com/@tsimonq2?source=rss-abe8950a00ea------2: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - first-post + - linux + relme: + https://medium.com/@tsimonq2?source=rss-abe8950a00ea------2: true + last_post_title: Adventures in Writing + last_post_description: "" + last_post_date: "2020-07-11T10:59:03Z" + last_post_link: https://medium.com/@tsimonq2/adventures-in-writing-d45716a01ec6?source=rss-abe8950a00ea------2 + last_post_categories: + - first-post + - linux + last_post_language: "" + last_post_guid: 554ee2170beaf2533e79feea2fac74c6 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-33733dcafea8eb8437cb3fb8432f842d.md b/content/discover/feed-33733dcafea8eb8437cb3fb8432f842d.md new file mode 100644 index 000000000..9d892940d --- /dev/null +++ b/content/discover/feed-33733dcafea8eb8437cb3fb8432f842d.md @@ -0,0 +1,56 @@ +--- +title: n-heptane lab +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://nhlab.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 33733dcafea8eb8437cb3fb8432f842d + websites: + https://nhlab.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ACID + - AGI + - Asterisk + - FastAGI + - HAppS + - HSP + - HTML + - Haskell + - templating + relme: + https://alchymiastudio.blogspot.com/: true + https://happstack.blogspot.com/: true + https://learnhaskell.blogspot.com/: true + https://musictheoryforeveryone.blogspot.com/: true + https://nhlab.blogspot.com/: true + https://www.blogger.com/profile/18373967098081701148: true + last_post_title: Data Migration with HApps-Data + last_post_description: HAppS applications, like any application with persistent + data storage, are faced with the issue of migrating existing data when the format + of the persistent data is changed. This tutorial will + last_post_date: "2008-12-14T22:08:00Z" + last_post_link: https://nhlab.blogspot.com/2008/12/data-migration-with-happs-data.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 49de7fe24945e81901023790e032f549 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-337ff307718244f010abe34567287f17.md b/content/discover/feed-337ff307718244f010abe34567287f17.md new file mode 100644 index 000000000..897344284 --- /dev/null +++ b/content/discover/feed-337ff307718244f010abe34567287f17.md @@ -0,0 +1,57 @@ +--- +title: The OpenBTS Chronicles +date: "2024-02-06T20:24:50-08:00" +description: The adventures of the OpenBTS project, flattening the cellular core network. +params: + feedlink: https://openbts.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 337ff307718244f010abe34567287f17 + websites: + https://openbts.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - SMS + - UMTS + - burning man + - capex + - ccc + - deployment + - field tests + - gsm patents + - gsm security + - handset bugs + - imsi-catcher + - niue + - open source + - opex + - universal service + relme: + https://da-bur.blogspot.com/: true + https://openbts.blogspot.com/: true + https://www.blogger.com/profile/14372434100222472756: true + last_post_title: One Last Word... + last_post_description: "" + last_post_date: "2015-02-27T08:13:08-08:00" + last_post_link: https://openbts.blogspot.com/2014/02/one-last-word.html + last_post_categories: [] + last_post_language: "" + last_post_guid: dd6cd81aeed0809295e6de66c9597d74 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3383b86cc9723b0e329d7e86206d8464.md b/content/discover/feed-3383b86cc9723b0e329d7e86206d8464.md deleted file mode 100644 index fd8e829d9..000000000 --- a/content/discover/feed-3383b86cc9723b0e329d7e86206d8464.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: "Daniel P. Berrangé \U0001F4F7 \U0001F3A8 \U0001F52D \U0001F4E1" -date: "1970-01-01T00:00:00Z" -description: Public posts from @berrange@hachyderm.io -params: - feedlink: https://hachyderm.io/@berrange.rss - feedtype: rss - feedid: 3383b86cc9723b0e329d7e86206d8464 - websites: - https://hachyderm.io/@berrange: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://devstopfix.berrange.com/: false - https://fstop138.berrange.com/: true - https://instagram.com/dberrange: false - https://www.berrange.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-339b19dd028dbff95f251e57db3432e2.md b/content/discover/feed-339b19dd028dbff95f251e57db3432e2.md deleted file mode 100644 index 9cab9a80e..000000000 --- a/content/discover/feed-339b19dd028dbff95f251e57db3432e2.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: OpenStack – Spinning -date: "2014-01-29T12:20:29Z" -description: Open source. Distributed computing. @spinningmatt -params: - feedlink: https://spinningmatt.wordpress.com/category/openstack/feed/atom/ - feedtype: atom - feedid: 339b19dd028dbff95f251e57db3432e2 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Fedora - - Hadoop - - OpenStack - - RDO - - Savanna - - Tutorial - relme: {} - last_post_title: 'Hadoop on OpenStack with a CLI: Creating a cluster' - last_post_description: OpenStack Savanna can already help you create a Hadoop cluster - or run a Hadoop workload all through the Horizon dashboard. What it could not - do until now is let you do that through a command-line - last_post_date: "2014-01-29T12:20:29Z" - last_post_link: https://spinningmatt.wordpress.com/2014/01/29/hadoop-on-openstack-with-a-cli-creating-a-cluster/ - last_post_categories: - - Fedora - - Hadoop - - OpenStack - - RDO - - Savanna - - Tutorial - last_post_guid: e385cedb5563bedd30bf06f78299086e - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-33a03347c30075c99abe6fc185f593f6.md b/content/discover/feed-33a03347c30075c99abe6fc185f593f6.md deleted file mode 100644 index ff7e8589c..000000000 --- a/content/discover/feed-33a03347c30075c99abe6fc185f593f6.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Levi McGranahan -date: "1970-01-01T00:00:00Z" -description: Public posts from @levimcg@indieweb.social -params: - feedlink: https://indieweb.social/@levimcg.rss - feedtype: rss - feedid: 33a03347c30075c99abe6fc185f593f6 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-33a5c303f091551f4ba803f2737ea6bb.md b/content/discover/feed-33a5c303f091551f4ba803f2737ea6bb.md new file mode 100644 index 000000000..ef9cd4d56 --- /dev/null +++ b/content/discover/feed-33a5c303f091551f4ba803f2737ea6bb.md @@ -0,0 +1,43 @@ +--- +title: Feed from jeremycherfas.net +date: "2024-07-05T12:50:00+02:00" +description: Jeremy Cherfas +params: + feedlink: https://www.jeremycherfas.net/blog.atom + feedtype: atom + feedid: 33a5c303f091551f4ba803f2737ea6bb + websites: + https://www.jeremycherfas.net/: false + https://www.jeremycherfas.net/blog: false + blogrolls: [] + recommended: [] + recommender: + - https://frankmeeuwsen.com/feed.xml + categories: + - Geeky + relme: {} + last_post_title: Fixing Karabiner-Elements + last_post_description: "" + last_post_date: "2024-07-05T12:50:00+02:00" + last_post_link: https://www.jeremycherfas.net/blog/fixing-karabinerelements + last_post_categories: + - Geeky + last_post_language: "" + last_post_guid: 1778e7436fd40c144a32d7f13011963c + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 1 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-33a6c6d16d410b4c02d4026171404cb9.md b/content/discover/feed-33a6c6d16d410b4c02d4026171404cb9.md deleted file mode 100644 index f0dc93c41..000000000 --- a/content/discover/feed-33a6c6d16d410b4c02d4026171404cb9.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Danny van Kooten -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://www.dannyvankooten.com/feed.xml - feedtype: rss - feedid: 33a6c6d16d410b4c02d4026171404cb9 - websites: - https://www.dannyvankooten.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - - https://jlelse.blog/.min.rss - - https://jlelse.blog/.rss - - https://jlelse.blog/index.xml - categories: [] - relme: - https://github.com/dannyvankooten/: false - https://toot.re/@dvk: true - last_post_title: C++ development setup in 2024 - last_post_description: |- - I've been doing a lot of C and C++ programming lately. After trying - a myriad of editors and related tooling, it seems I've finally settled on a - satisfactory set-up that is both performant, reliable - last_post_date: "2024-04-06T00:00:00Z" - last_post_link: https://www.dannyvankooten.com/blog/2024/cpp-development-setup/ - last_post_categories: [] - last_post_guid: 203f32b3fd91b1799a8d4e4766a7c684 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 12 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-33bdb1049d37decad41a2642daf3157b.md b/content/discover/feed-33bdb1049d37decad41a2642daf3157b.md deleted file mode 100644 index b47b9f096..000000000 --- a/content/discover/feed-33bdb1049d37decad41a2642daf3157b.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Mike Street's Blog -date: "2024-05-09T18:05:51Z" -description: Blog posts from Mike Street (mikestreety.co.uk) -params: - feedlink: https://www.mikestreety.co.uk/rss.xml - feedtype: rss - feedid: 33bdb1049d37decad41a2642daf3157b - websites: - https://www.mikestreety.co.uk/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/mikestreety/: true - https://gitlab.com/mikestreety: true - https://hachyderm.io/@mikestreety: true - https://twitter.com/mikestreety: false - https://www.mikestreety.co.uk/: true - last_post_title: Run unit tests in Playwright - last_post_description: |- - I'm a big believer in using the right tool for the job - but I'm a bigger believer in the best tool for the job is the one you've - got. - - While you might not install Playwright to just do unit tests, - last_post_date: "2024-05-08T00:00:00Z" - last_post_link: https://www.mikestreety.co.uk/blog/run-unit-tests-in-playwright/ - last_post_categories: [] - last_post_guid: d5863c15aa421e2e2ed34eb6b264d7ef - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-33e62c3949b4732a190ce5da532e678f.md b/content/discover/feed-33e62c3949b4732a190ce5da532e678f.md index 8ebe8d346..b4b22518a 100644 --- a/content/discover/feed-33e62c3949b4732a190ce5da532e678f.md +++ b/content/discover/feed-33e62c3949b4732a190ce5da532e678f.md @@ -11,14 +11,10 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: [] relme: {} last_post_title: Comment on The magic words by Dan Q @@ -29,17 +25,22 @@ params: last_post_date: "2024-05-03T12:42:08Z" last_post_link: https://fleeblewidget.co.uk/2024/05/the-magic-words/#comment-174434 last_post_categories: [] + last_post_language: "" last_post_guid: 193a7c4d12031cd3a2650d8e0b267607 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-33e64f2e4afdc724aaaf1535b7284c9b.md b/content/discover/feed-33e64f2e4afdc724aaaf1535b7284c9b.md new file mode 100644 index 000000000..338d41f25 --- /dev/null +++ b/content/discover/feed-33e64f2e4afdc724aaaf1535b7284c9b.md @@ -0,0 +1,56 @@ +--- +title: 'DEV Community: Lauro Moura' +date: "1970-01-01T00:00:00Z" +description: The latest articles on DEV Community by Lauro Moura (@lauromoura). +params: + feedlink: https://dev.to/feed/lauromoura + feedtype: rss + feedid: 33e64f2e4afdc724aaaf1535b7284c9b + websites: + https://dev.to/lauromoura: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - breakpad + - tutorial + - webkit + - wpewebkit + relme: + https://dev.to/lauromoura: true + https://github.com/lauromoura: true + last_post_title: Using Breakpad to generate crash dumps with WPE WebKit + last_post_description: |- + Introduction and BreakPad overview + + + Breakpad is a tool from Google that helps generate crash reports. From its description: + + + Breakpad is a library and tool suite that allows you to distribute an + last_post_date: "2022-08-29T03:57:36Z" + last_post_link: https://dev.to/lauromoura/using-breakpad-to-generate-crash-dumps-with-wpe-webkit-5da8 + last_post_categories: + - breakpad + - tutorial + - webkit + - wpewebkit + last_post_language: "" + last_post_guid: 7a33e6674d25b791eeafdc4e98dce785 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-34085f85f900b366e1d24f0d8ccce76d.md b/content/discover/feed-34085f85f900b366e1d24f0d8ccce76d.md new file mode 100644 index 000000000..3a084ad00 --- /dev/null +++ b/content/discover/feed-34085f85f900b366e1d24f0d8ccce76d.md @@ -0,0 +1,40 @@ +--- +title: Typed Logic +date: "2023-07-30T05:02:38-07:00" +description: "" +params: + feedlink: https://typedlogic.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 34085f85f900b366e1d24f0d8ccce76d + websites: + https://typedlogic.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://typedlogic.blogspot.com/: true + last_post_title: Mutable Syntax in Mercury + last_post_description: "" + last_post_date: "2011-12-27T12:33:21-08:00" + last_post_link: https://typedlogic.blogspot.com/2011/12/ltq.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 9497c058fb7c4b890f4e457d58c25a17 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-340bd117e0ab34663a8195702cd3b8f0.md b/content/discover/feed-340bd117e0ab34663a8195702cd3b8f0.md deleted file mode 100644 index e62878273..000000000 --- a/content/discover/feed-340bd117e0ab34663a8195702cd3b8f0.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Comments for Shedding Light | not heat -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://josepha.blog/comments/feed/ - feedtype: rss - feedid: 340bd117e0ab34663a8195702cd3b8f0 - websites: - https://josepha.blog/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: 'Comment on Microbes, Whales, and Everything in Between: A Vignette - of Terror at 4x the Speed by Josepha Haden Chomphosy' - last_post_description: |- - In reply to Aditya. - - I think a lot of it is - last_post_date: "2024-01-12T14:03:19Z" - last_post_link: https://josepha.blog/2024/01/11/microbes-whales-and-everything-in-between-a-vignette-of-terror-at-4x-the-speed/comment-page-1/#comment-2215 - last_post_categories: [] - last_post_guid: 8c0e0fd8d18d9a5129d804f0c7118105 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-34129aadeb981058a3b0e1bd178771d1.md b/content/discover/feed-34129aadeb981058a3b0e1bd178771d1.md deleted file mode 100644 index aa44443a4..000000000 --- a/content/discover/feed-34129aadeb981058a3b0e1bd178771d1.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Writing Home -date: "1970-01-01T00:00:00Z" -description: A series of letters and essays from Dougald Hine. Turning aside from - the one big path that was meant to lead to the future, no longer in service to its - promises, asking what else is worth doing with -params: - feedlink: https://dougald.substack.com/feed - feedtype: rss - feedid: 34129aadeb981058a3b0e1bd178771d1 - websites: - https://dougald.substack.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: The Beauty of Scorched Earth - last_post_description: On the becoming a lifelong student and lover of fire with - M. R. O'Connor - last_post_date: "2024-06-04T10:42:39Z" - last_post_link: https://dougald.substack.com/p/the-beauty-of-scorched-earth - last_post_categories: [] - last_post_guid: b9a26ab409499fb40664d1ebe4100fd0 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-341c2d439c4c3c444ec3697f8ff886ab.md b/content/discover/feed-341c2d439c4c3c444ec3697f8ff886ab.md new file mode 100644 index 000000000..8249434ee --- /dev/null +++ b/content/discover/feed-341c2d439c4c3c444ec3697f8ff886ab.md @@ -0,0 +1,197 @@ +--- +title: Geek Like Me, Too +date: "2024-07-07T02:09:30-04:00" +description: A middle-aged software curmudgeon's rants, raves, gripes, and prophecies. +params: + feedlink: https://geeklikemetoo.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 341c2d439c4c3c444ec3697f8ff886ab + websites: + https://geeklikemetoo.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - AMV + - AVR + - Abhainn Dearg + - Administrivia + - Andrew Breitbart + - Ann Arbor + - Apache + - Apogee Ensemble + - Apple + - Ardbeg 10 + - Ardbeg Airigh Nam Biest + - Ardbeg Uigeadail + - Arduino + - Arran Malt 10 + - Atmel + - Avoid + - Bloodthirsty Vegetarians + - Bourbon Review + - Bunnahabhain + - Bunnahabhain 18 + - Caol Ila + - Charter + - Collectible Card Games + - Crown Royal Black + - Crystal Head Vodka + - Curmudgeon + - Cynicism + - DRM + - Dalwhinnie 15 + - 'Dark Age: Feudal Lords' + - Deejaying + - Digital Audio + - E-Ink + - FreeBSD + - GCC + - Glenfiddich 12 + - Glenfiddich 15 + - Glenfiddich 18 + - Glenkinchie 12 + - Glenmorangie La Santa + - Glenmorangie Nectar D'Or + - Glenmorangie Quinta Ruban + - Grand Marais + - Grub + - Hey You Kids Get Off of My Lawn + - Highland Park 15 + - Highland Park 18 + - ID3 + - Irish Whisky + - Jack + - Jenny Katz + - Jonathan Coulton + - Joshua Gregory + - Julian Woods + - Ken Knight + - Kilchoman + - Knappogue Castle 1995 + - Lagavulin + - Lagavulin Distiller's Edition + - Laphroaig Quarter Cask + - Lexx + - Linux + - Logic + - Logic Pro + - MC Dilletante + - MP3 + - Mac Mini + - Mackinac Bridge + - Maker's Mark + - Marian Call + - McCain + - McClelland's Single Malt Highland + - McClelland's Single Malt Islay + - McClelland's Single Malt Speyside + - Microsoft Windows XP + - 'Middle Earth: Dark Minions' + - 'Middle Earth: the Dragons' + - 'Middle Earth: the Wizards' + - Miguel Pico + - Mountain Lion + - Music + - Music Review + - Mythos + - Mythos Limited + - 'Mythos: Dreamlands' + - 'Mythos: New Aeon' + - Nostalgia + - Obama + - Oban 14 + - Pants + - Pasties + - Paul and Storm + - Performing Live + - Personal Essays and Rants + - Piracy + - Podcasting + - Politics + - Rated 7 + - Rated 7.5 + - Rated 8 + - Rated 8.0 + - Rated 8.5 + - Rated 9 + - Rated 9.0 + - Rated 9.5 + - RedBoard + - Reviews + - Ron Zacapa + - Rush Limbaugh + - S/PDIF + - SPI + - Samuel Ambrose + - Scapa + - School of Living + - Science by Mail + - Scotch Whisky + - Sean Hurley + - Sherwin Sleeves + - Skype + - Soundflower + - Star Wars + - System Administration + - TOSLINK + - Talisker + - Talisker Distiller's Edition 1998 + - The Balvenie DoubleWood 12 + - The Balvenie PortWood 21 + - The Balvenie Single Barrel 15 + - 'The Hobbit: An Unexpected Journey' + - The Singleton of Glendullan + - The Situation 2013 + - The Tyrconnell + - Tolkien + - Twitter + - Ubuntu + - Upper Peninsula + - Veronica Ruth + - War Crimes + - Wi-Fi + - WikiLeaks + - Words + - eBay + - gitit + - iTunes + - mod_proxy_html + - ustream.tv + relme: + https://armstrong-collection.blogspot.com/: true + https://geeklikemetoo.blogspot.com/: true + https://geekversusguitar.blogspot.com/: true + https://hodgecast.blogspot.com/: true + https://pottscast.blogspot.com/: true + https://praisecurseandrecurse.blogspot.com/: true + https://thebooksthatwroteme.blogspot.com/: true + https://www.blogger.com/profile/04401509483200614806: true + last_post_title: A Workaround for the MP3 Tagging Problem + last_post_description: "" + last_post_date: "2017-08-12T13:58:02-04:00" + last_post_link: https://geeklikemetoo.blogspot.com/2017/08/a-workaround-for-mp3-tagging-problem.html + last_post_categories: + - ID3 + - Logic Pro + - MP3 + - Podcasting + last_post_language: "" + last_post_guid: 1eef66c48dd0cce18bbd4ebef92b6248 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-341d9b0456f30e80f07ccaa1c8630d42.md b/content/discover/feed-341d9b0456f30e80f07ccaa1c8630d42.md index 887f4df5a..3d4d17a2d 100644 --- a/content/discover/feed-341d9b0456f30e80f07ccaa1c8630d42.md +++ b/content/discover/feed-341d9b0456f30e80f07ccaa1c8630d42.md @@ -13,7 +13,9 @@ params: recommender: [] categories: [] relme: + https://buttondown.email/pepysdiary: true https://mastodon.social/@samuelpepys: true + https://www.pepysdiary.com/: true last_post_title: Bill of exchange last_post_description: |- From Wikipedia's article on Negotiable instrument: @@ -22,17 +24,22 @@ params: last_post_date: "2024-05-02T15:16:51Z" last_post_link: https://www.pepysdiary.com/encyclopedia/14187/ last_post_categories: [] + last_post_language: "" last_post_guid: 4bdcdf9e8b0b57772158bcc8944678b7 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-342a18486fbea06f3e0482b43f42caac.md b/content/discover/feed-342a18486fbea06f3e0482b43f42caac.md index b6a559ab2..d77a73896 100644 --- a/content/discover/feed-342a18486fbea06f3e0482b43f42caac.md +++ b/content/discover/feed-342a18486fbea06f3e0482b43f42caac.md @@ -1,6 +1,6 @@ --- title: 'Feed of "Cwtch: Decentralized, Privacy Preserving, Infrastructure"' -date: "2024-06-04T15:21:45Z" +date: "2024-07-09T03:28:25Z" description: Cwtch (a Welsh word roughly translating to “a hug that creates a safe place”) is a decentralized, privacy-preserving, multi-party messaging protocol that can be used to build metadata resistant @@ -15,23 +15,34 @@ params: recommender: [] categories: [] relme: - https://cwtch.im/: false - last_post_title: Sarah Jamie Lewis merged pull request cwtch.im/docs.cwtch.im#11 - last_post_description: marcia-patch-2 - last_post_date: "2024-06-03T19:41:45Z" - last_post_link: https://git.openprivacy.ca/dan/openprivacy.ca/issues/11 + https://cwtch.im/: true + https://fosstodon.org/@cwtch: true + https://git.openprivacy.ca/cwtch.im: true + last_post_title: buildbot commented on pull request cwtch.im/cwtch-ui#901 + last_post_description: |- + testing win build env + + Drone Build Status: success + https://build.openprivacy.ca/cwtch.im/cwtch-ui/835 + last_post_date: "2024-07-08T16:35:01Z" + last_post_link: https://git.openprivacy.ca/cwtch.im/cwtch-ui/pulls/901#issuecomment-19782 last_post_categories: [] - last_post_guid: a9982154159af4ba4f08f0821843a6c2 + last_post_language: "" + last_post_guid: a403ba52801a2d8be238e2c6222156bf score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 9 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-342c22ad905d1ddcbf676c3d171ffa9e.md b/content/discover/feed-342c22ad905d1ddcbf676c3d171ffa9e.md deleted file mode 100644 index 07d570ec8..000000000 --- a/content/discover/feed-342c22ad905d1ddcbf676c3d171ffa9e.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Comments for James Morris -date: "1970-01-01T00:00:00Z" -description: Linux Kernel Developer -params: - feedlink: https://blog.namei.org/comments/feed/ - feedtype: rss - feedid: 342c22ad905d1ddcbf676c3d171ffa9e - websites: - https://blog.namei.org/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-343d29a807957072920bcdd3f69dc3dd.md b/content/discover/feed-343d29a807957072920bcdd3f69dc3dd.md deleted file mode 100644 index f31f17796..000000000 --- a/content/discover/feed-343d29a807957072920bcdd3f69dc3dd.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Comments for Boffo Socko Publishing -date: "1970-01-01T00:00:00Z" -description: Author Services and More -params: - feedlink: https://boffosocko.com/publishing/comments/feed/ - feedtype: rss - feedid: 343d29a807957072920bcdd3f69dc3dd - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-34458c61bb3d2192e156001508543711.md b/content/discover/feed-34458c61bb3d2192e156001508543711.md deleted file mode 100644 index 0b330d4b1..000000000 --- a/content/discover/feed-34458c61bb3d2192e156001508543711.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: evantravers -date: "1970-01-01T00:00:00Z" -description: Public posts from @evantravers@indieweb.social -params: - feedlink: https://indieweb.social/@evantravers.rss - feedtype: rss - feedid: 34458c61bb3d2192e156001508543711 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-34abc991774a398b2fc7999917c08423.md b/content/discover/feed-34abc991774a398b2fc7999917c08423.md deleted file mode 100644 index 6886c0d58..000000000 --- a/content/discover/feed-34abc991774a398b2fc7999917c08423.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Noah Liebman | Blog -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://noahliebman.net/feed/index.xml - feedtype: rss - feedid: 34abc991774a398b2fc7999917c08423 - websites: - https://noahliebman.net/: true - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: [] - relme: - https://mastodon.social/@noleli: true - last_post_title: Yet another take on layout breakouts - last_post_description: A common design pattern is content that fills the screen - with some gutter on small viewports, then has some maximum width to keep things - readable. Sometimes, though, you want something that’s wider - last_post_date: "2024-05-30T00:00:00Z" - last_post_link: https://noahliebman.net/2024/05/yet-another-take-on-layout-breakouts/ - last_post_categories: [] - last_post_guid: 561c59565fceb9482bbea485e3f862ae - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 12 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-34bbaf1df68dad85a3a56bee8ca992b2.md b/content/discover/feed-34bbaf1df68dad85a3a56bee8ca992b2.md deleted file mode 100644 index 9d0057eec..000000000 --- a/content/discover/feed-34bbaf1df68dad85a3a56bee8ca992b2.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Tom -date: "1970-01-01T00:00:00Z" -description: Public posts from @ttntm@fosstodon.org -params: - feedlink: https://fosstodon.org/@ttntm.rss - feedtype: rss - feedid: 34bbaf1df68dad85a3a56bee8ca992b2 - websites: - https://fosstodon.org/@ttntm: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://bukmark.club/: true - https://ttntm.me/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-34beb2225516f4e84a75456963f6d072.md b/content/discover/feed-34beb2225516f4e84a75456963f6d072.md new file mode 100644 index 000000000..ac76a75a2 --- /dev/null +++ b/content/discover/feed-34beb2225516f4e84a75456963f6d072.md @@ -0,0 +1,45 @@ +--- +title: Merks' Meanderings +date: "1970-01-01T00:00:00Z" +description: The opinions expressed here are my own, not someone else's. If they + seem rational, that's purely coincidental and you are likely reading far too much + between the lines. +params: + feedlink: https://ed-merks.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 34beb2225516f4e84a75456963f6d072 + websites: + https://ed-merks.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://ed-merks.blogspot.com/: true + https://www.blogger.com/profile/05000982591510437551: true + last_post_title: No Java? No Problem! + last_post_description: For the 2020-09 Eclipse Simultaneous Release, the Eclipse + IDE will require Java 11 or higher to run.  If the user doesn't have that installed, + Eclipse simply won't start, instead popping up this + last_post_date: "2020-08-18T07:50:00Z" + last_post_link: https://ed-merks.blogspot.com/2020/08/no-java-no-problem.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 31c6cf737e2be56f140c9aec7e88e500 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-34c182dd689ff10a816c6c34f0ce7a5c.md b/content/discover/feed-34c182dd689ff10a816c6c34f0ce7a5c.md deleted file mode 100644 index aaa8be549..000000000 --- a/content/discover/feed-34c182dd689ff10a816c6c34f0ce7a5c.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Matt Baer -date: "1970-01-01T00:00:00Z" -description: Public posts from @matt@writing.exchange -params: - feedlink: https://writing.exchange/@matt.rss - feedtype: rss - feedid: 34c182dd689ff10a816c6c34f0ce7a5c - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-34c75299c4f620ad4f8e2a0ff2649691.md b/content/discover/feed-34c75299c4f620ad4f8e2a0ff2649691.md new file mode 100644 index 000000000..27e8302db --- /dev/null +++ b/content/discover/feed-34c75299c4f620ad4f8e2a0ff2649691.md @@ -0,0 +1,297 @@ +--- +title: The Art is Long +date: "1970-01-01T00:00:00Z" +description: The Den of Multix (aka grey gandalf) +params: + feedlink: https://multixden.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 34c75299c4f620ad4f8e2a0ff2649691 + websites: + https://multixden.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - "10.5" + - "10.6" + - "10.7" + - "2007" + - ACPI + - API + - ARM + - AltiVec + - AppKit + - Application + - Arctic Fox + - ArcticFox + - Cynthiune + - DataBasin + - DataBasinKit + - Debian + - FTP + - Framework + - FreeBSD + - G3 + - GAP + - GDraw + - GMastermind + - GMines released + - GNU + - GNUMail + - GNUstep + - GNUstep Application Project + - GPL + - GSWS + - GShisen + - GSpdf + - GWorkspace + - Gecko + - Goanna + - Graphos + - Grr + - HURD + - IDE + - IRC + - Inspector + - Inte + - Intel + - Internet Module + - JIT + - Kit + - LCD + - LapisPuzzle + - LaternaMagica + - Leo Laporte + - Leopard + - Letux + - Linux + - LoginPanel + - MIME + - MIPS + - MUA + - Mac + - MacOS + - Macintosh + - Mail + - NSView + - NSWorkspace + - Neos + - NetBSD + - Object + - Objective-C + - OpenBSD + - OpenOffice Microsoft Office incomatibility OpenSource + - OpenSource + - OresmeKit + - PCD8544 + - PDF + - PDFKit + - PPC + - PRICE + - PaleMoon + - Pantomime + - PowerPC + - ProjectCenter + - RPI + - RSS + - Randal Schwartz + - Raspberry + - RaspberryPI + - SOQL + - SPIDisplayKit + - SWK + - SalesForce.com + - SimpleWebKit + - Snow Leopard + - Solaris + - StepSync + - Tablet + - TalkSoup + - Terminal + - Themes + - ThinkPad + - TimeMon + - Vespucci + - WebServices + - Workspace + - X41 + - XML + - Zipper + - addressmanager + - alemanniastep + - alpenstep + - apps + - back up + - backport + - backup + - badge + - batmon + - battery + - battery monitor + - bezier paths + - bilinear + - bookmarks + - browser + - bug fix + - build + - cdrom + - charting + - cocoa + - color scheme + - compile + - control point + - converting + - cross-compile + - csv + - curves + - cusp + - custom + - cvs + - data + - debugger + - defaults + - describe + - desktop + - development + - display + - dmassage + - drawing + - drawning + - editing + - export + - extraction + - fields + - file manager + - file sync + - filtering + - fix + - flexisheet + - floss + - folders + - game + - games + - gcc + - gdb + - gimp + - gmines + - gnustep macintosh cocoa GShisen port windows game gap + - gnustep software + - gnustep windows mingw game graphics events + - gorm + - graphics + - graphing + - gstheme + - iBook + - icon + - icons + - image + - image viewer + - imaging + - kernel + - login + - look + - meeting + - menu style + - mingw + - monitor + - mount + - mount volumes + - mounting + - music + - native + - netbook + - netclasses + - open source + - optimized + - orobienstep + - photo + - player + - plists + - plotting + - port + - portability + - power mac + - preferences + - printing + - programming + - property list + - query + - radio + - record type + - release + - resizing + - safari + - salesforce + - screen + - screenshot + - search + - select + - select identify + - session + - sleek + - soap + - software + - stylus + - sudoku + - svn + - synchronization + - systempreferences + - theme + - theming + - tinker + - tookit + - tool + - touch + - tracing + - tutorial + - twit + - undo + - unix + - update + - usb + - vector + - vector drawing + - visualization + - volume + - web + - windows + - winux + - wiringPI + - x86 + - xpdf + - yap + relme: + https://astraphoto.blogspot.com/: true + https://multixden.blogspot.com/: true + https://www.blogger.com/profile/03313094807656717004: true + last_post_title: GNUStep now has badges + last_post_description: Finally I got around implementing and committing badge support + in GNUStep! I think it is one of the fine additions Apple did to the original + OpenStep spec While Apple had it since MacOS 10.5, GNUstep + last_post_date: "2023-08-03T14:36:00Z" + last_post_link: https://multixden.blogspot.com/2023/08/gnustep-now-has-badges.html + last_post_categories: + - GNUMail + - GNUstep + - badge + - icon + - theming + last_post_language: "" + last_post_guid: 5139dc36e2b68678d2739b3e5f3d3ef7 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-34ca613f3fac7d269180898dc5c906f7.md b/content/discover/feed-34ca613f3fac7d269180898dc5c906f7.md deleted file mode 100644 index cc0ee44d2..000000000 --- a/content/discover/feed-34ca613f3fac7d269180898dc5c906f7.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Reacties voor Bjorn Franke -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://www.bjornfranke.nl/comments/feed/ - feedtype: rss - feedid: 34ca613f3fac7d269180898dc5c906f7 - websites: - https://www.bjornfranke.nl/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-34d0d49bf17924bc9543b63f5f8f7327.md b/content/discover/feed-34d0d49bf17924bc9543b63f5f8f7327.md new file mode 100644 index 000000000..8ec79cb81 --- /dev/null +++ b/content/discover/feed-34d0d49bf17924bc9543b63f5f8f7327.md @@ -0,0 +1,42 @@ +--- +title: Comments for Taming LibreOffice +date: "1970-01-01T00:00:00Z" +description: Resources for intermediate & advanced users +params: + feedlink: https://taming-libreoffice.com/comments/feed/ + feedtype: rss + feedid: 34d0d49bf17924bc9543b63f5f8f7327 + websites: + https://taming-libreoffice.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://taming-libreoffice.com/: true + last_post_title: 'Comment on LibreOffice 7.4 Community Release by Links 19/08/2022: + KDE Gear 22.08 and FreeBSD Foundation Status Update | Techrights' + last_post_description: '[…] LibreOffice 7.4 Community Release – Taming LibreOffice + […]' + last_post_date: "2022-08-19T05:53:39Z" + last_post_link: https://taming-libreoffice.com/2022/08/libreoffice-7-4-community-release/#comment-201488 + last_post_categories: [] + last_post_language: "" + last_post_guid: 2977b5e54cedd1e77abddf2d048a71a5 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-34d2bbdbdc59dbb0d09247a788bfbed3.md b/content/discover/feed-34d2bbdbdc59dbb0d09247a788bfbed3.md new file mode 100644 index 000000000..a646b65ed --- /dev/null +++ b/content/discover/feed-34d2bbdbdc59dbb0d09247a788bfbed3.md @@ -0,0 +1,82 @@ +--- +title: Qt, linux and everything +date: "1970-01-01T00:00:00Z" +description: |- + thoughts from a developer. + Author of Hands-on Mobile and Embedded Development with Qt 5 http://bit.ly/HandsOnMobileEmbedded +params: + feedlink: https://qtandeverything.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 34d2bbdbdc59dbb0d09247a788bfbed3 + websites: + https://qtandeverything.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 1st post + - Canonical + - Gutenberg Project + - Gutenbrowser + - IoT + - Jolla + - MeeGo + - Mer + - Python + - Qt6 + - QtQuick3d + - Sailfish OS + - Ubuntu + - WebAssembly + - benchmarks + - cmake + - embedded + - greenphone + - gtk + - mobile + - neo + - open source + - openmoko + - qmake + - qml + - qsensors + - qt + - qtopia + - sensors + - simd + - snappy + - tmake + - trolltech + - wasm + - web + relme: + https://polityblog.blogspot.com/: true + https://qtandeverything.blogspot.com/: true + https://www.blogger.com/profile/08211459741197454860: true + last_post_title: 'Qt6 Webassembly: QtMultimedia or, How to play a video in a web + browser using Qt' + last_post_description: QtMultimedia in WebAssemblySince Qt 6.5.0, QtMultimedia has + support for playing video in a QGraphicsVideoItem and QGraphicsScene, as well + as recording from a camera. You can use Qt to play video, + last_post_date: "2023-07-10T02:41:00Z" + last_post_link: https://qtandeverything.blogspot.com/2023/07/qt6-webassembly-qtmultimedia-or-how-to.html + last_post_categories: [] + last_post_language: "" + last_post_guid: d4f84d1f5d00fbf02add366022fcec46 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-34dc2b9afbd631c7d8d6ee765fc8c3f1.md b/content/discover/feed-34dc2b9afbd631c7d8d6ee765fc8c3f1.md deleted file mode 100644 index 1a6076a66..000000000 --- a/content/discover/feed-34dc2b9afbd631c7d8d6ee765fc8c3f1.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: enhance -date: "1970-01-01T00:00:00Z" -description: Public posts from @enhance_dev@fosstodon.org -params: - feedlink: https://fosstodon.org/@enhance_dev.rss - feedtype: rss - feedid: 34dc2b9afbd631c7d8d6ee765fc8c3f1 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-34eaeab43e2b6cab20ad53b7bb671af8.md b/content/discover/feed-34eaeab43e2b6cab20ad53b7bb671af8.md deleted file mode 100644 index 213866f29..000000000 --- a/content/discover/feed-34eaeab43e2b6cab20ad53b7bb671af8.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Comments for Quantum Frontiers -date: "1970-01-01T00:00:00Z" -description: A blog by the Institute for Quantum Information and Matter @ Caltech -params: - feedlink: https://quantumfrontiers.com/comments/feed/ - feedtype: rss - feedid: 34eaeab43e2b6cab20ad53b7bb671af8 - websites: - https://quantumfrontiers.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Seven reasons why I chose to do science in the government - by Quantum Frontiers salutes an English teacher | Quantum Frontiers - last_post_description: '[…] brought me to the Washington, DC area, where a Whitman - quote greets entrants to the Dupont Circle metro […]' - last_post_date: "2024-06-10T00:04:12Z" - last_post_link: https://quantumfrontiers.com/2020/10/25/seven-reasons-why-i-chose-to-do-science-in-the-government/comment-page-1/#comment-162406 - last_post_categories: [] - last_post_guid: 39be323b77c08e10a9ad388635272872 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-34f4a8877514ecba2d36b7f57dedb688.md b/content/discover/feed-34f4a8877514ecba2d36b7f57dedb688.md index bbfd295ee..4be7ecbf7 100644 --- a/content/discover/feed-34f4a8877514ecba2d36b7f57dedb688.md +++ b/content/discover/feed-34f4a8877514ecba2d36b7f57dedb688.md @@ -1,6 +1,6 @@ --- title: Matthias Ott – User Experience Designer -date: "2024-06-04T12:50:33Z" +date: "2024-07-09T03:20:09Z" description: Articles and notes by Matthias Ott, User Experience Designer from Stuttgart, Germany. params: @@ -12,26 +12,34 @@ params: recommended: [] recommender: - https://frankmeeuwsen.com/feed.xml + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml categories: [] relme: {} - last_post_title: Fixing the Logitech Spotlight - last_post_description: The Logitech Spotlight presentation remote is a sleek piece - of hardware. It is comparatively small, fits nicely in the palm of your hand, - and the buttons come with a very satisfying, albeit for my - last_post_date: "2024-03-19T22:28:00Z" - last_post_link: https://matthiasott.com/notes/fixing-the-logitech-spotlight + last_post_title: Highlighting Blogging on Mastodon + last_post_description: 'In what looks like a very smart move, the team at Mastodon + just released a very nice new feature for media organizations, journalists and + bloggers: when someone shares a link to an article by certain' + last_post_date: "2024-07-02T22:27:00Z" + last_post_link: https://matthiasott.com/notes/highlighting-blogging-on-mastodon last_post_categories: [] - last_post_guid: 367fbcadd8f09310fa9fc60a0a4511c6 + last_post_language: "" + last_post_guid: 1f44650cb43cf5a286d465b5a2b050f6 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 11 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-34fd538e277ae10acc9003ac9e41a3ed.md b/content/discover/feed-34fd538e277ae10acc9003ac9e41a3ed.md new file mode 100644 index 000000000..81643fc39 --- /dev/null +++ b/content/discover/feed-34fd538e277ae10acc9003ac9e41a3ed.md @@ -0,0 +1,41 @@ +--- +title: Scoutess GSOC +date: "2024-02-08T05:46:41-08:00" +description: "" +params: + feedlink: https://projectscoutess.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 34fd538e277ae10acc9003ac9e41a3ed + websites: + https://projectscoutess.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://projectscoutess.blogspot.com/: true + https://www.blogger.com/profile/15526193185905577771: true + last_post_title: Mission Report + last_post_description: "" + last_post_date: "2012-08-15T11:06:54-07:00" + last_post_link: https://projectscoutess.blogspot.com/2012/08/mission-report.html + last_post_categories: [] + last_post_language: "" + last_post_guid: aceedebc581467445c139f6cada248e3 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3502359fd8894c87f5951524ab02405a.md b/content/discover/feed-3502359fd8894c87f5951524ab02405a.md index d0dfbf154..a0f91a3fd 100644 --- a/content/discover/feed-3502359fd8894c87f5951524ab02405a.md +++ b/content/discover/feed-3502359fd8894c87f5951524ab02405a.md @@ -1,56 +1,55 @@ --- title: Terence Eden’s Blog -date: "2024-06-03T18:21:15Z" +date: "2024-07-08T07:23:53Z" description: "" params: feedlink: https://shkspr.mobi/blog/feed/atom/ feedtype: atom feedid: 3502359fd8894c87f5951524ab02405a websites: - https://shkspr.mobi/: false - https://shkspr.mobi/blog: true https://shkspr.mobi/blog/: false blogrolls: [] recommended: [] - recommender: [] + recommender: + - https://roytang.net/blog/feed/rss/ + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml categories: - '/etc/ ' - - emf - - emfcamp - - infrared - relme: - https://bsky.app/profile/edent.tel: false - https://github.com/edent: false - https://gitlab.com/edent: false - https://keybase.io/edent: false - https://linkedin.com/in/TerenceEden/: false - https://mastodon.social/@Edent: true - https://reddit.com/user/edent: false - https://twitter.com/edent: false - https://www.flickr.com/people/edent: false - https://www.wikidata.org/wiki/Q15733094: false - last_post_title: Infrared Infrastructure - last_post_description: I recently went to EMF Camp (which is Glastonbury for geeks - - lots of random electronics, talks, art, and camping). Naturally, I took along - my Infrared camera and pointed it at interesting things! - last_post_date: "2024-06-03T18:21:15Z" - last_post_link: https://shkspr.mobi/blog/2024/06/infrared-infrastructure/ + - DMCA + - copyright + - firefox + - google + relme: {} + last_post_title: DMCA as a vector for pornographic spam? + last_post_description: There's a law in the USA called the DMCA - Digital Millennium + Copyright Act. Amongst its myriad provisions is the ability for copyright holders + to send takedown notices to service providers. If + last_post_date: "2024-07-08T07:23:53Z" + last_post_link: https://shkspr.mobi/blog/2024/07/dmca-as-a-vector-for-pornographic-spam/ last_post_categories: - '/etc/ ' - - emf - - emfcamp - - infrared - last_post_guid: 8511f3cd205581cf1958ab54fbe7a7cf + - DMCA + - copyright + - firefox + - google + last_post_language: "" + last_post_guid: 9d83a696ae2e8530f501c38b27d34971 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 3 - promoted: 0 + posts: 3 + promoted: 5 promotes: 0 - relme: 2 + relme: 0 title: 3 - website: 2 - score: 10 + website: 1 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-3505f3374421b594cb159f52280a38a6.md b/content/discover/feed-3505f3374421b594cb159f52280a38a6.md deleted file mode 100644 index 79af4bb6c..000000000 --- a/content/discover/feed-3505f3374421b594cb159f52280a38a6.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Comments for Memex 1.1 -date: "1970-01-01T00:00:00Z" -description: John Naughton's online diary -params: - feedlink: https://memex.naughtons.org/comments/feed/ - feedtype: rss - feedid: 3505f3374421b594cb159f52280a38a6 - websites: - https://memex.naughtons.org/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3508b0e8eb291a669b7b7bababe1f426.md b/content/discover/feed-3508b0e8eb291a669b7b7bababe1f426.md new file mode 100644 index 000000000..e712a4db1 --- /dev/null +++ b/content/discover/feed-3508b0e8eb291a669b7b7bababe1f426.md @@ -0,0 +1,137 @@ +--- +title: Ddos Function +date: "2024-03-13T14:23:52-07:00" +description: Want to know all function about ddos simply scroll down. +params: + feedlink: https://aix-administration.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 3508b0e8eb291a669b7b7bababe1f426 + websites: + https://aix-administration.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: All Function of Ddos + last_post_description: "" + last_post_date: "2021-04-08T12:07:14-07:00" + last_post_link: https://aix-administration.blogspot.com/2021/04/all-function-of-ddos.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 9aa00523b5cd761024962861a2130edf + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-350de7e5ffcfae424ffcb973b870737a.md b/content/discover/feed-350de7e5ffcfae424ffcb973b870737a.md deleted file mode 100644 index 0ea2884c1..000000000 --- a/content/discover/feed-350de7e5ffcfae424ffcb973b870737a.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: 'Comments on: 609: Blake Watson on Home Cooked Apps' -date: "1970-01-01T00:00:00Z" -description: A live podcast about front end web design and UX. -params: - feedlink: https://shoptalkshow.com/609/feed/ - feedtype: rss - feedid: 350de7e5ffcfae424ffcb973b870737a - websites: - https://shoptalkshow.com/609/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3535f02232f0528b9bbb05d067a7fb70.md b/content/discover/feed-3535f02232f0528b9bbb05d067a7fb70.md index 5a377971e..867a286c0 100644 --- a/content/discover/feed-3535f02232f0528b9bbb05d067a7fb70.md +++ b/content/discover/feed-3535f02232f0528b9bbb05d067a7fb70.md @@ -11,7 +11,10 @@ params: blogrolls: [] recommended: [] recommender: - - https://chrisburnell.com/feed.xml + - https://roytang.net/blog/feed/rss/ + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml categories: [] relme: {} last_post_title: 'Web3: creating problems where we need solutions' @@ -21,17 +24,22 @@ params: last_post_date: "2022-03-03T17:01:02Z" last_post_link: https://laurakalbag.com/web3-creating-problems-where-we-need-solutions/ last_post_categories: [] + last_post_language: "" last_post_guid: 0aada14b2acc2d8da3c40370d2507ab8 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-353eaf4e420e1cf1f63a54ef056b092d.md b/content/discover/feed-353eaf4e420e1cf1f63a54ef056b092d.md new file mode 100644 index 000000000..55125f7f6 --- /dev/null +++ b/content/discover/feed-353eaf4e420e1cf1f63a54ef056b092d.md @@ -0,0 +1,41 @@ +--- +title: Jo MD blog +date: "2024-05-05T03:35:29-07:00" +description: "" +params: + feedlink: https://jomd.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 353eaf4e420e1cf1f63a54ef056b092d + websites: + https://jomd.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://jomd.blogspot.com/: true + https://www.blogger.com/profile/14571074456739152583: true + last_post_title: My new blog about filmmaking and open source + last_post_description: "" + last_post_date: "2011-02-18T08:52:20-08:00" + last_post_link: https://jomd.blogspot.com/2011/02/my-new-blog-about-filmmaking-and-open.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 421281839a0c59ede4842c46a183bb15 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-35404607d8ef9239bc37d7d5fdcfc002.md b/content/discover/feed-35404607d8ef9239bc37d7d5fdcfc002.md deleted file mode 100644 index 876f3b593..000000000 --- a/content/discover/feed-35404607d8ef9239bc37d7d5fdcfc002.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Oscar Benedito activity -date: "2021-06-10T20:53:01Z" -description: "" -params: - feedlink: https://gitlab.com/oscarbenedito.atom - feedtype: atom - feedid: 35404607d8ef9239bc37d7d5fdcfc002 - websites: - https://gitlab.com/oscarbenedito: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://oscarbenedito.com/: true - last_post_title: Oscar Benedito pushed to project branch master at maratofme / Web - last_post_description: |- - Oscar Benedito - (973a53db) - - at - 03 May 14:45 - - - Problemes del copipasta - last_post_date: "2021-05-03T14:45:46Z" - last_post_link: https://gitlab.com/maratofme/maratofme.gitlab.io/-/commit/973a53dbeb39f951585ccbd354b17b2aecb6de2c - last_post_categories: [] - last_post_guid: 15f4993de135c39a756f7c7c17cf80ee - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-354fbbef4db1fbcc7dec4ef5aba59ed2.md b/content/discover/feed-354fbbef4db1fbcc7dec4ef5aba59ed2.md deleted file mode 100644 index e473c2a24..000000000 --- a/content/discover/feed-354fbbef4db1fbcc7dec4ef5aba59ed2.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Chen Hui Jing -date: "1970-01-01T00:00:00Z" -description: The chronicles of a self-taught designer and developer. -params: - feedlink: https://chenhuijing.com/feed.xml - feedtype: rss - feedid: 354fbbef4db1fbcc7dec4ef5aba59ed2 - websites: - https://chenhuijing.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: [] - relme: - https://github.com/huijing: true - https://micro.blog/huijing: false - https://twitter.com/hj_chen: false - last_post_title: Generating a weekly calendar from JSON data - last_post_description: The original purpose of this blog was for me to document - solutions that I spent hours figuring out at work, which means it’s not my code - therefore I cannot take it wholesale with me. I just extract - last_post_date: "2024-03-18T10:48:51+08:00" - last_post_link: https://chenhuijing.com/blog/generating-a-weekly-calendar-from-json-data/ - last_post_categories: [] - last_post_guid: 9da34ad7d3d6b1505027630d64d75e9e - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 15 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3564ab3f6c10ffe8b4d5468d60cf5d02.md b/content/discover/feed-3564ab3f6c10ffe8b4d5468d60cf5d02.md deleted file mode 100644 index 675939dfa..000000000 --- a/content/discover/feed-3564ab3f6c10ffe8b4d5468d60cf5d02.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: The Weekly Challenge - RSS Feed -date: "2024-06-24T01:35:52Z" -description: Get regular The Weekly Challenge RSS Feed. -params: - feedlink: https://theweeklychallenge.org/rss.xml - feedtype: rss - feedid: 3564ab3f6c10ffe8b4d5468d60cf5d02 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Perl - last_post_description: TABLE OF CONTENTS 01. HEADLINES 02. STAR CONTRIBUTORS 03. - CONTRIBUTION STATS 04. GUESTS 05. LANGUAGES 06. CENTURION CLUB 07. DAMIAN CONWAY’s - CORNER 08. ANDREW SHITOV’s CORNER 09. PERL SOLUTIONS - last_post_date: "2024-06-24T01:35:45Z" - last_post_link: https://theweeklychallenge.org/tags/perl/ - last_post_categories: [] - last_post_guid: 068cb0976156a203c099313f6fe076f6 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3564c3a6018a1ee3e8e2dc8f1aae156d.md b/content/discover/feed-3564c3a6018a1ee3e8e2dc8f1aae156d.md deleted file mode 100644 index f790fb905..000000000 --- a/content/discover/feed-3564c3a6018a1ee3e8e2dc8f1aae156d.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Michael S. Tsirkin's blog -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://mstsirkin.blogspot.com/feeds/posts/default?alt=rss - feedtype: rss - feedid: 3564c3a6018a1ee3e8e2dc8f1aae156d - websites: - https://mstsirkin.blogspot.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://www.blogger.com/profile/00094949480903959505: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-357c735109a46072128ac88f26cc024d.md b/content/discover/feed-357c735109a46072128ac88f26cc024d.md deleted file mode 100644 index dc039e940..000000000 --- a/content/discover/feed-357c735109a46072128ac88f26cc024d.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Secret Blogging Seminar -date: "1970-01-01T00:00:00Z" -description: Representation theory, geometry and whatever else we decide is worth - writing about today. -params: - feedlink: https://sbseminar.wordpress.com/feed/ - feedtype: rss - feedid: 357c735109a46072128ac88f26cc024d - websites: - https://sbseminar.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Uncategorized - relme: {} - last_post_title: Using discord for online teaching - last_post_description: On Wednesday, I asked several of my students what tools they - use to collaborate online on their problem sets. Several of them mentioned Discord. - I am currently trying to set up a Discord channel for - last_post_date: "2020-03-13T16:25:19Z" - last_post_link: https://sbseminar.wordpress.com/2020/03/13/using-discord-for-online-teaching/ - last_post_categories: - - Uncategorized - last_post_guid: cf3b9c5a16106cc442018b4d1a60d7bd - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-35899c396a2a52ee3aca26d882c4a887.md b/content/discover/feed-35899c396a2a52ee3aca26d882c4a887.md index a6234c694..ffd8414d8 100644 --- a/content/discover/feed-35899c396a2a52ee3aca26d882c4a887.md +++ b/content/discover/feed-35899c396a2a52ee3aca26d882c4a887.md @@ -12,37 +12,42 @@ params: https://werd.io/: false https://werd.io/content/all: false https://werd.io/content/bookmarkedpages: true - https://werd.io/content/posts: false blogrolls: [] recommended: [] recommender: [] categories: - - '#AI' + - '#Fiction' relme: https://about.werd.io/: true - https://newsletter.werd.io/: false - https://werd.social/@ben: false - https://www.linkedin.com/in/benwerd: false - https://www.threads.net/@ben.werdmuller: false - last_post_title: Zoom CEO Eric Yuan wants AI clones in meetings - last_post_description: Eric Yuan has a really bizarre vision of what the future - should look like:"Today for this session, ideally, I do not need to join. I can - send a digital version of myself to join so I can go to the - last_post_date: "2024-06-04T12:55:21Z" - last_post_link: https://werd.io/2024/zoom-ceo-eric-yuan-wants-ai-clones-in-meetings + https://github.com/benwerd: true + https://newsletter.werd.io/: true + https://werd.io/: true + https://werd.io/content/bookmarkedpages: true + https://werd.social/@ben: true + last_post_title: "\U0001F4D6 A Psalm for the Wild-Built" + last_post_description: '[Becky Chambers]“You’re an animal, Sibling Dex. You are + not separate or other. You’re an animal. And animals have no purpose. Nothing + has a purpose. The world simply is. If you want to do' + last_post_date: "2024-07-08T12:48:50Z" + last_post_link: https://werd.io/2024/-a-psalm-for-the-wild-built last_post_categories: - - '#AI' - last_post_guid: 62c6f23b7496e05ff71541828c30e0fe + - '#Fiction' + last_post_language: "" + last_post_guid: 9cfec018fbd9093670b2b811ff7fe677 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 11 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-3596672bf152ead1c9406751cc6ee8ea.md b/content/discover/feed-3596672bf152ead1c9406751cc6ee8ea.md new file mode 100644 index 000000000..7118b436b --- /dev/null +++ b/content/discover/feed-3596672bf152ead1c9406751cc6ee8ea.md @@ -0,0 +1,62 @@ +--- +title: Google Summer of Code with ScummVM +date: "2024-02-18T18:46:52-08:00" +description: |- + This blogpost is dedicated to my experience in GSoC 2020. + I'll be submitting weekly posts for my first ever professional experience! +params: + feedlink: https://gsoc-ar28.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 3596672bf152ead1c9406751cc6ee8ea + websites: + https://gsoc-ar28.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - GSoC + - GSoC 2020 + - Intro + - Milestone 1 + - Plugins + - RTL GUI + - ScummVM + - Task 1 + - Task 2 + - Task 3 + - U32String GUI + - Week 1 + relme: + https://gsoc-ar28.blogspot.com/: true + https://www.blogger.com/profile/02862688275197654628: true + last_post_title: The (official) end of an amazing journey! + last_post_description: "" + last_post_date: "2020-08-25T10:50:16-07:00" + last_post_link: https://gsoc-ar28.blogspot.com/2020/08/the-official-end-of-amazing-journey.html + last_post_categories: + - GSoC + - GSoC 2020 + - Plugins + - ScummVM + - Task 2 + - Task 3 + - U32String GUI + last_post_language: "" + last_post_guid: 4b8b1cc7151b018dc7ee8b5b2bc3740d + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-35a7e2dbf96416d757e8b70824722674.md b/content/discover/feed-35a7e2dbf96416d757e8b70824722674.md deleted file mode 100644 index 8475a754f..000000000 --- a/content/discover/feed-35a7e2dbf96416d757e8b70824722674.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Caleb Hearth has moved -date: "1970-01-01T00:00:00Z" -description: Public posts from @c@social.lol -params: - feedlink: https://social.lol/@c.rss - feedtype: rss - feedid: 35a7e2dbf96416d757e8b70824722674 - websites: - https://social.lol/@c: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://calebhearth.com/: true - https://pub.calebhearth.com/@caleb: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-35b6eb02d72ebd648b3033b262992e7b.md b/content/discover/feed-35b6eb02d72ebd648b3033b262992e7b.md deleted file mode 100644 index aba482e1a..000000000 --- a/content/discover/feed-35b6eb02d72ebd648b3033b262992e7b.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Optipess -date: "1970-01-01T00:00:00Z" -description: A webcomic. On the Internet. -params: - feedlink: https://www.optipess.com/feed/ - feedtype: rss - feedid: 35b6eb02d72ebd648b3033b262992e7b - websites: - https://www.optipess.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - pantomime - - someone dies inside - - video games - relme: {} - last_post_title: Video Games Wet Dreams - last_post_description: Here is a comic “inspired” by the current state of the video - games industry, and specifically Microsoft’s boneheaded decision to close several - studios, amongst them Tango Gameworks and Arkane - last_post_date: "2024-05-20T22:00:48Z" - last_post_link: https://www.optipess.com/comic/video-games-wet-dreams/ - last_post_categories: - - pantomime - - someone dies inside - - video games - last_post_guid: 6e58dee0d66a201ab2e7c3eef240af92 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-35b80d3b0517e850260df95e8bcdb26e.md b/content/discover/feed-35b80d3b0517e850260df95e8bcdb26e.md index b79faa9fa..4f601f50a 100644 --- a/content/discover/feed-35b80d3b0517e850260df95e8bcdb26e.md +++ b/content/discover/feed-35b80d3b0517e850260df95e8bcdb26e.md @@ -1,6 +1,6 @@ --- title: The Verge - Apple Posts -date: "2024-06-04T05:22:11-04:00" +date: "2024-07-08T16:37:25-04:00" description: "" params: feedlink: https://www.theverge.com/apple/rss/index.xml @@ -10,25 +10,31 @@ params: blogrolls: [] recommended: [] recommender: + - https://josh.blog/comments/feed - https://josh.blog/feed categories: [] relme: {} - last_post_title: Aptoide’s iOS game store launches on Thursday + last_post_title: How to create PDFs on iPhones last_post_description: "" - last_post_date: "2024-06-04T05:22:11-04:00" - last_post_link: https://www.theverge.com/2024/6/4/24171037/aptoide-ios-game-store-eu-third-party-app-dma + last_post_date: "2024-07-08T16:37:25-04:00" + last_post_link: https://www.theverge.com/24191864/pdf-iphone-ipad-ios-how-to last_post_categories: [] - last_post_guid: b1b0dc40cab8c7c134a20df937c54116 + last_post_language: "" + last_post_guid: 9f3c2a438769ca9a1806eec062ec4eb4 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 8 + score: 12 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-35c71df01b01abb93264f86e5dd9086e.md b/content/discover/feed-35c71df01b01abb93264f86e5dd9086e.md deleted file mode 100644 index ce241ebe5..000000000 --- a/content/discover/feed-35c71df01b01abb93264f86e5dd9086e.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Javier Peña's technology blog -date: "2024-02-26T12:43:03Z" -description: My articles on technology -params: - feedlink: https://jpenatech.wordpress.com/feed/atom/?cat=7 - feedtype: atom - feedid: 35c71df01b01abb93264f86e5dd9086e - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-35e51e9083da27b3c96e96aeea27eaf6.md b/content/discover/feed-35e51e9083da27b3c96e96aeea27eaf6.md new file mode 100644 index 000000000..06fc30d80 --- /dev/null +++ b/content/discover/feed-35e51e9083da27b3c96e96aeea27eaf6.md @@ -0,0 +1,50 @@ +--- +title: Georg Fritzsche - Medium +date: "1970-01-01T00:00:00Z" +description: Engineering & data at Mozilla. - Medium +params: + feedlink: https://medium.com/feed/georg-fritzsche + feedtype: rss + feedid: 35e51e9083da27b3c96e96aeea27eaf6 + websites: + https://medium.com/georg-fritzsche?source=rss----9eb1bc803268---4: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - analytics + - data-engineering + - firefox + - mozilla + - telemetry + relme: + https://medium.com/georg-fritzsche?source=rss----9eb1bc803268---4: true + last_post_title: Introducing Glean — Telemetry for humans + last_post_description: "" + last_post_date: "2019-09-05T10:25:04Z" + last_post_link: https://medium.com/georg-fritzsche/introducing-glean-telemetry-for-humans-4e8b4788b8ad?source=rss----9eb1bc803268---4 + last_post_categories: + - analytics + - data-engineering + - firefox + - mozilla + - telemetry + last_post_language: "" + last_post_guid: fa8d197c086a5fc8ed0cde7f04abba5d + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-35e5cce701b4f11d9e72d83776c9020f.md b/content/discover/feed-35e5cce701b4f11d9e72d83776c9020f.md new file mode 100644 index 000000000..b8c398fb2 --- /dev/null +++ b/content/discover/feed-35e5cce701b4f11d9e72d83776c9020f.md @@ -0,0 +1,46 @@ +--- +title: Stories by ZeroDB on Medium +date: "1970-01-01T00:00:00Z" +description: Stories by ZeroDB on Medium +params: + feedlink: https://medium.com/feed/@ZeroDB_ + feedtype: rss + feedid: 35e5cce701b4f11d9e72d83776c9020f + websites: + https://medium.com/@ZeroDB_?source=rss-a0aa5238b2d8------2: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - database + - elasticsearch + - python + relme: + https://medium.com/@ZeroDB_?source=rss-a0aa5238b2d8------2: true + last_post_title: Scalable full text search over encrypted data in ZeroDB + last_post_description: "" + last_post_date: "2016-03-07T15:42:34Z" + last_post_link: https://medium.com/@ZeroDB_/scalable-full-text-search-over-encrypted-data-cb2b5dd5bce2?source=rss-a0aa5238b2d8------2 + last_post_categories: + - database + - elasticsearch + - python + last_post_language: "" + last_post_guid: 7fa65b18426c10c73aa9b14eab79016e + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-35f51c9b4b772f958f4409cfd4248327.md b/content/discover/feed-35f51c9b4b772f958f4409cfd4248327.md new file mode 100644 index 000000000..8db2050f4 --- /dev/null +++ b/content/discover/feed-35f51c9b4b772f958f4409cfd4248327.md @@ -0,0 +1,139 @@ +--- +title: Elisa gayle As a Wife. +date: "2024-03-07T20:35:06-08:00" +description: Elisa gayle as a wife is so good. +params: + feedlink: https://rofessorajaneandrade.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 35f51c9b4b772f958f4409cfd4248327 + websites: + https://rofessorajaneandrade.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Know about elisa . + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Elisa Gayle As a Wife + last_post_description: "" + last_post_date: "2021-04-26T11:07:56-07:00" + last_post_link: https://rofessorajaneandrade.blogspot.com/2021/04/elisa-gayle-as-wife.html + last_post_categories: + - Know about elisa . + last_post_language: "" + last_post_guid: 8586871134cbfcf5e7c937aa66f4afcc + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-35fdab0fab562ae71ff459bcc8068778.md b/content/discover/feed-35fdab0fab562ae71ff459bcc8068778.md deleted file mode 100644 index dc6d96e64..000000000 --- a/content/discover/feed-35fdab0fab562ae71ff459bcc8068778.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Comments for Frank Brown Cloud -date: "1970-01-01T00:00:00Z" -description: Justice through words. -params: - feedlink: https://fcbrowncloud.com/comments/feed/ - feedtype: rss - feedid: 35fdab0fab562ae71ff459bcc8068778 - websites: - https://fcbrowncloud.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-360a61fbaadf2fdd7b5c6b3c411f7588.md b/content/discover/feed-360a61fbaadf2fdd7b5c6b3c411f7588.md deleted file mode 100644 index 8992da094..000000000 --- a/content/discover/feed-360a61fbaadf2fdd7b5c6b3c411f7588.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: Ronald Bradford | Enterprise Data Architect | MySQL Subject Matter Expert | Author - | Speaker -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://ronaldbradford.com/blog/feed/ - feedtype: rss - feedid: 360a61fbaadf2fdd7b5c6b3c411f7588 - websites: - http://ronaldbradford.com/blog/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - RDS Aurora - - aurora - - aws - - MySQL - - rds - relme: {} - last_post_title: RDS MySQL Aurora 3.07.0 is unusable for upgrades - last_post_description: Yesterday I detailed an incompatible breakage with RDS MySQL - Aurora 3.06.0, and one option stated is to upgrade to the just released 3.07.0. - Turns out that does not work. It is not possible to - last_post_date: "2024-06-21T14:41:29Z" - last_post_link: http://ronaldbradford.com/blog/rds-mysql-aurora-3-07-0-is-unusable-for-upgrades-2024-06-21/ - last_post_categories: - - RDS Aurora - - aurora - - aws - - MySQL - - rds - last_post_guid: 00f791452040bcb2f224d29282d4abda - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-360f8c210056753e0b37b5220fead69f.md b/content/discover/feed-360f8c210056753e0b37b5220fead69f.md deleted file mode 100644 index 768a873c9..000000000 --- a/content/discover/feed-360f8c210056753e0b37b5220fead69f.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Popular Posts Across MetaFilter -date: "2024-06-04T13:03:03Z" -description: Posts from across all sites, marked as a favorite most often in the past - seven days. -params: - feedlink: https://rss.metafilter.com/popular-posts.rss - feedtype: rss - feedid: 360f8c210056753e0b37b5220fead69f - websites: - https://projects.metafilter.com/: false - https://www.metafilter.com/: false - https://www.metafilter.com/favorites/all: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: 'MeFi: Together!' - last_post_description: In 1994 the Pet Shop Boys were invited to perform 'Go West' - at the Brit Awards. They agreed and brought with them 3 separate choirs of miners. - Some of those miners had marched with the gay and - last_post_date: "2024-06-02T20:05:38Z" - last_post_link: https://www.metafilter.com/203992/Together - last_post_categories: [] - last_post_guid: d605be151aea9f3e19b8f59f1d379269 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3610dbe096d4682717f623de62824c71.md b/content/discover/feed-3610dbe096d4682717f623de62824c71.md new file mode 100644 index 000000000..db8d0c964 --- /dev/null +++ b/content/discover/feed-3610dbe096d4682717f623de62824c71.md @@ -0,0 +1,57 @@ +--- +title: Kicks Condor +date: "1970-01-01T00:00:00Z" +description: LEECHING AND LINKING IN THE HYPERTEXT KINGDOM +params: + feedlink: https://www.kickscondor.com/rss.xml + feedtype: rss + feedid: 3610dbe096d4682717f623de62824c71 + websites: + https://www.kickscondor.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://roytang.net/blog/feed/rss/ + categories: + - death + - hypertext + - imagery + - note + - quotes + - war + relme: + https://github.com/kickscondor: true + https://www.kickscondor.com/: true + last_post_title: Ending Gel + last_post_description: |- + He hadn’t even gotten the letter into the envelope when he was sprayed down with + Ending Gel. I know what the letter said because I was the one who sprayed him + down. I tore the letter from his + last_post_date: "2022-07-22T21:22:05Z" + last_post_link: https://www.kickscondor.com/ending-gel + last_post_categories: + - death + - hypertext + - imagery + - note + - quotes + - war + last_post_language: "" + last_post_guid: 7317f2811e39794e64ade3c1a928ebea + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3615778f2176276b9c2c2a1dd2b0afa1.md b/content/discover/feed-3615778f2176276b9c2c2a1dd2b0afa1.md deleted file mode 100644 index 32da3ecb2..000000000 --- a/content/discover/feed-3615778f2176276b9c2c2a1dd2b0afa1.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: OpenStack – Right Angles -date: "1970-01-01T00:00:00Z" -description: If they're not right...they're wrong -params: - feedlink: https://www.danplanet.com/blog/category/openstack/feed/ - feedtype: rss - feedid: 3615778f2176276b9c2c2a1dd2b0afa1 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - OpenStack - - image - - latency - - nova - - openstack - relme: {} - last_post_title: Start and Monitor Image Pre-cache Operations in Nova - last_post_description: When you boot an instance in Nova, you provide a reference - to an image. In many cases, once Nova has selected a host, the virt driver on - that node downloads the image from Glance and uses it as the - last_post_date: "2019-11-04T19:30:57Z" - last_post_link: https://www.danplanet.com/blog/2019/11/04/start-and-monitor-image-pre-cache-operations-in-nova/ - last_post_categories: - - OpenStack - - image - - latency - - nova - - openstack - last_post_guid: 6d2c227fb101bb8a1a16bab2e6d51444 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3623703ed1c0fd73409473cc434b68d3.md b/content/discover/feed-3623703ed1c0fd73409473cc434b68d3.md new file mode 100644 index 000000000..c4784e039 --- /dev/null +++ b/content/discover/feed-3623703ed1c0fd73409473cc434b68d3.md @@ -0,0 +1,53 @@ +--- +title: Geointerpolations +date: "2024-04-10T07:23:49-07:00" +description: somewhat temporally correlated thoughts on open source geospatial technologies… +params: + feedlink: https://tylerickson.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 3623703ed1c0fd73409473cc434b68d3 + websites: + https://tylerickson.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Eddy + - Geospatial Technologies + - Kiting + - Outhouse + - camping + - django + - geodjango + - kiteboarding + - pyKML conference + - python virtualenv pip pandas + - slicehost + relme: + https://tylerickson.blogspot.com/: true + https://www.blogger.com/profile/02304403253679244567: true + last_post_title: Getting ready for the PyCon Pandas tutorial + last_post_description: "" + last_post_date: "2012-02-27T14:43:36-08:00" + last_post_link: https://tylerickson.blogspot.com/2012/02/getting-ready-for-pycon-pandas-tutorial.html + last_post_categories: + - python virtualenv pip pandas + last_post_language: "" + last_post_guid: 3fafc0aecfe0c3de56783620c1601a9f + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-36317730a90b00efe1ca3615955728c1.md b/content/discover/feed-36317730a90b00efe1ca3615955728c1.md new file mode 100644 index 000000000..79c97c59f --- /dev/null +++ b/content/discover/feed-36317730a90b00efe1ca3615955728c1.md @@ -0,0 +1,51 @@ +--- +title: Githyanki Diaspora +date: "1970-01-01T00:00:00Z" +description: Judd Karlman from Daydreaming about Dragons' Blog +params: + feedlink: https://githyankidiaspora.com/feed/ + feedtype: rss + feedid: 36317730a90b00efe1ca3615955728c1 + websites: + https://githyankidiaspora.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - Blades in the Dark + - rpg + - ttrpg + relme: {} + last_post_title: 'Blades in the Dark: Relationship, Drama & Adventures, a response + to a bksy post' + last_post_description: What about playing other characters when a member of the + crew is elsewhere or in Ironhook or is pursuing their vice to an unhealthy degree? + Sure, the player can play another character and I have + last_post_date: "2024-07-05T18:20:29Z" + last_post_link: https://githyankidiaspora.com/2024/07/05/blades-in-the-dark-relationship-drama-adventures-a-response-to-a-bksy-post/ + last_post_categories: + - Blades in the Dark + - rpg + - ttrpg + last_post_language: "" + last_post_guid: de9dcb76d844c074b5f64e253d95b053 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-36477df43acec559f1aeaf522b3219a9.md b/content/discover/feed-36477df43acec559f1aeaf522b3219a9.md new file mode 100644 index 000000000..c4b40be05 --- /dev/null +++ b/content/discover/feed-36477df43acec559f1aeaf522b3219a9.md @@ -0,0 +1,173 @@ +--- +title: Circle of Dar Janix +date: "2024-07-04T15:08:10-04:00" +description: "" +params: + feedlink: https://darjanix.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 36477df43acec559f1aeaf522b3219a9 + websites: + https://darjanix.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - 40K + - 4th edition + - 5e + - Adventure names + - Armada + - BECMI + - Castle Whale + - Catalyst Games + - Charm Person + - City Month + - City State of the Invincible Overlord + - Culling the Collection + - D and D + - DCC + - Dark Heresy + - Dread + - Edge of Empire + - FFG + - Fantasy AGE + - Fight On + - GUMSHOE + - GURPS + - Gary Con XI + - GenCon + - Greyhawk Reborn + - Harn + - Iron Tyrants + - Knockspell + - L5R + - MERp + - Moldy Oldies + - Mutant Future + - NOVA Open + - Nethack + - No Thank You Evil + - Noxxe + - OSRIC + - Points of Light + - Prep + - Rifts + - Rogue Trader + - Roll20 + - SWN + - Star Wars + - Steve Jackson Games + - Supplement VI + - The Fantasy Trip + - TridentCon + - WHFRP + - Warhammer + - Wilderlands + - World Worm + - anime 5e + - attack + - blackmoor + - blogging + - board games + - campaign overview + - campaigns + - castles and crusades + - cepheus engine + - comics + - convention + - coup de grace + - dexcon + - doors + - dragonlance + - dragons + - dungeon alphabet + - dungeon design + - empire of the petal throne. stars without number + - fear the con + - game material + - gamebooks + - gaming with kids + - gamma world + - general + - glorantha + - gwythian + - hackmaster + - hex crawl + - hot elf chick + - labyrinth lord + - lords of waterdeep + - lotfp + - maps + - mechanics + - megadungeon + - megadungeons + - melee + - memes + - mentzer + - miniatures + - monsters + - new players + - numenera + - prydain + - purpose + - race + - random + - religion + - review + - rogue games + - rpg + - rpgaday2015 + - scifi + - searchers of the unknown + - session recaps + - setting + - shadow sword and spell + - shadowrun + - stonehell + - swords and wizardry + - tekumel + - tiny frontiers + - titansgrave + - tomb of horrors + - traps + - traveller + - trollcon + - video games + - whitebox + - wilderlands lore + - wilderness rules + - wizard + - worker placement + - wrestling + relme: + https://darjanix.blogspot.com/: true + last_post_title: 'Wilderlands: Session 32' + last_post_description: "" + last_post_date: "2024-07-04T15:05:00-04:00" + last_post_link: https://darjanix.blogspot.com/2024/07/wilderlands-session-32.html + last_post_categories: + - Wilderlands + - castles and crusades + - session recaps + last_post_language: "" + last_post_guid: f7d10243df0c07b19dc61edefc30edb7 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 23 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-365a953ed8aed470a5f984423e7ff2ed.md b/content/discover/feed-365a953ed8aed470a5f984423e7ff2ed.md deleted file mode 100644 index 2c0b3cb80..000000000 --- a/content/discover/feed-365a953ed8aed470a5f984423e7ff2ed.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Comments for Schneier on Security -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://www.schneier.com/comments/feed/ - feedtype: rss - feedid: 365a953ed8aed470a5f984423e7ff2ed - websites: - https://www.schneier.com/: true - https://www.schneier.com/blog/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Seeing Like a Data Structure by Winter - last_post_description: |- - @Man behind a thousand names (neo-Clive) - -
- That is those that are “self entitled” in some way believe they have the right to force not just willing others but everyone to do not - last_post_date: "2024-06-04T11:59:54Z" - last_post_link: https://www.schneier.com/blog/archives/2024/06/seeing-like-a-data-structure.html/#comment-437883 - last_post_categories: [] - last_post_guid: 278b53ffe66a287a2af4bf1c0c7ffa95 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-365fe7a5f5984b9df96fd23ca1140be7.md b/content/discover/feed-365fe7a5f5984b9df96fd23ca1140be7.md new file mode 100644 index 000000000..ee3dd327e --- /dev/null +++ b/content/discover/feed-365fe7a5f5984b9df96fd23ca1140be7.md @@ -0,0 +1,49 @@ +--- +title: Ashton Wiersdorf on Lambda Land +date: "1970-01-01T00:00:00Z" +description: Recent content in Ashton Wiersdorf on Lambda Land +params: + feedlink: https://lambdaland.org/index.xml + feedtype: rss + feedid: 365fe7a5f5984b9df96fd23ca1140be7 + websites: + https://lambdaland.org/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: [] + relme: + https://lambdaland.org/: true + last_post_title: Big Updates to My Blog + last_post_description: |- + I’ve made some big changes to my blog! This post is just for me to document what I’ve done and why, as well as to test some of the new features I’ve added. + + New fonts + # + + First off: new + last_post_date: "2024-07-03T00:00:00Z" + last_post_link: https://lambdaland.org/posts/2024-07-03_big_blog_update/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 944ce724d817372b5638daf14f457c1c + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-366a7752d0ab3a7f4fc011f53d437c4d.md b/content/discover/feed-366a7752d0ab3a7f4fc011f53d437c4d.md index 0a8362c98..b8e80fe67 100644 --- a/content/discover/feed-366a7752d0ab3a7f4fc011f53d437c4d.md +++ b/content/discover/feed-366a7752d0ab3a7f4fc011f53d437c4d.md @@ -14,23 +14,30 @@ params: recommender: [] categories: [] relme: + https://atdotde.blogspot.com/: true + https://homeschoolschwabing.blogspot.com/: true https://www.blogger.com/profile/06634377111195468947: true last_post_title: Medienkompetenz - ein paar Gedanken last_post_description: "" last_post_date: "2020-12-19T06:10:16-08:00" last_post_link: https://homeschoolschwabing.blogspot.com/2020/12/medienkompetenz-ein-paar-gedanken.html last_post_categories: [] + last_post_language: "" last_post_guid: 45ae9dff1c33befc2f4c034e570c7fd5 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-366b94a7237c44a3f15261a32db31579.md b/content/discover/feed-366b94a7237c44a3f15261a32db31579.md new file mode 100644 index 000000000..668ce71fe --- /dev/null +++ b/content/discover/feed-366b94a7237c44a3f15261a32db31579.md @@ -0,0 +1,44 @@ +--- +title: Serge's Answers +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://sergesanswers.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 366b94a7237c44a3f15261a32db31579 + websites: + https://sergesanswers.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Category1 + relme: + https://sergebeauchamp.blogspot.com/: true + https://sergesanswers.blogspot.com/: true + https://www.blogger.com/profile/07166227267587165456: true + last_post_title: Some article in another page + last_post_description: Hello World. + last_post_date: "2014-07-20T17:49:00Z" + last_post_link: https://sergesanswers.blogspot.com/2014/07/some-article-in-another-page.html + last_post_categories: + - Category1 + last_post_language: "" + last_post_guid: e6aa8e8f3bc95396b7dac149eb7b3bb9 + score_criteria: + cats: 1 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 12 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3691acf50b7019397aa567d595c98366.md b/content/discover/feed-3691acf50b7019397aa567d595c98366.md deleted file mode 100644 index bf37a83ed..000000000 --- a/content/discover/feed-3691acf50b7019397aa567d595c98366.md +++ /dev/null @@ -1,50 +0,0 @@ ---- -title: Mariechen -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://www.mariechen.org/feed/ - feedtype: rss - feedid: 3691acf50b7019397aa567d595c98366 - websites: - https://mariechen.org/: false - https://www.mariechen.org/: true - blogrolls: [] - recommended: [] - recommender: - - https://jlelse.blog/.min.rss - - https://jlelse.blog/.rss - - https://jlelse.blog/index.xml - categories: - - Gedanken - - Krankenhaus - - Therapie - - endometriose - - Ängste - relme: {} - last_post_title: Doch ein Trauma? - last_post_description: In einem Beitrag vor knapp 2,5 Jahren habe ich auch hier - mal durchblicken lassen, dass es eine Zeit gab, in der ich längere Zeit krank - war. Diese Zeit hat sehr viel für mich damals verändert. - last_post_date: "2023-04-29T13:49:13Z" - last_post_link: https://www.mariechen.org/doch-ein-trauma/ - last_post_categories: - - Gedanken - - Krankenhaus - - Therapie - - endometriose - - Ängste - last_post_guid: db1e6376ad5e6610f230988b37ad2f04 - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3693437504a7049830fb553d3500cb1b.md b/content/discover/feed-3693437504a7049830fb553d3500cb1b.md new file mode 100644 index 000000000..70150e4d6 --- /dev/null +++ b/content/discover/feed-3693437504a7049830fb553d3500cb1b.md @@ -0,0 +1,142 @@ +--- +title: SnapStreaks is For All +date: "1970-01-01T00:00:00Z" +description: Snapstreaks is fun and it not like other thing. So make sure that visit + everyday. +params: + feedlink: https://googletopplaystoreapps.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 3693437504a7049830fb553d3500cb1b + websites: + https://googletopplaystoreapps.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - streaks + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: All About Snap Streaks + last_post_description: In any case, I don't prefer to go off the deep end and do + every one of these things on Snapstreaks. Systems administration with People.The + following stage after the essential involved experience was + last_post_date: "2021-04-21T11:52:00Z" + last_post_link: https://googletopplaystoreapps.blogspot.com/2021/04/all-about-snap-streaks.html + last_post_categories: + - streaks + last_post_language: "" + last_post_guid: 1c002f1cf32a9db592b9f3a764277f7a + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-36972032e4e01a3494ede2fb9c7d794c.md b/content/discover/feed-36972032e4e01a3494ede2fb9c7d794c.md new file mode 100644 index 000000000..27af8e491 --- /dev/null +++ b/content/discover/feed-36972032e4e01a3494ede2fb9c7d794c.md @@ -0,0 +1,79 @@ +--- +title: Minimal Solaris +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://alexeremin.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 36972032e4e01a3494ede2fb9c7d794c + websites: + https://alexeremin.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ARM + - Busybox + - CD + - CI + - Caiman + - DTrace + - DevOps + - IRIX + - Jenkins X + - MilaX + - Octane + - OpenSolaris + - Rust + - SGI + - Silicon Graphics + - Solaris + - Sparc + - SunStudio + - Ubuntu VM + - boot + - ddu + - failsafe + - fdisk + - firefly + - gnome + - illumos + - istatd + - kstat + - mdb + - osstat + - pipeline automation + - ripgrep + - smbios + - tardist + - unleashed + - v9os + relme: + https://alexeremin.blogspot.com/: true + https://www.blogger.com/profile/04819890114311693093: true + last_post_title: How to determine PXE mac address when booting illumos via PXELinux/iPXE + last_post_description: |- + In illumos, if you need to determine the interface which was used for booting via PXE then it's possible to use "boot-mac" property:# /sbin/devprop -s boot-mac c:c4:7a:04:ef:2c + But this property is + last_post_date: "2020-08-02T13:46:00Z" + last_post_link: https://alexeremin.blogspot.com/2020/08/how-to-determine-pxe-mac-address-when.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 65466a428fdcbcdbe305fbecea8f87f2 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-36a47fa1485b8af22ddcaa28fa23ab39.md b/content/discover/feed-36a47fa1485b8af22ddcaa28fa23ab39.md new file mode 100644 index 000000000..db582476f --- /dev/null +++ b/content/discover/feed-36a47fa1485b8af22ddcaa28fa23ab39.md @@ -0,0 +1,54 @@ +--- +title: Visions Notice-Blog +date: "1970-01-01T00:00:00Z" +description: Other churches have a printed notice sheet. We are experimenting by having + a blog instead. +params: + feedlink: https://visionsofyork.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 36a47fa1485b8af22ddcaa28fa23ab39 + websites: + https://visionsofyork.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - "2009" + - "72" + - bible + - climate + - notices + - notices visions + - october + - sending + - socialaction + - story + - visions + relme: + https://visionsofyork.blogspot.com/: true + last_post_title: 'Service details: Sunday 06 February' + last_post_description: On Sunday 06 February, Visions Belfrey Group will be participating + in a Candlemas Communion service in St Helen's Church at 6:00pm. This is the stone + church that can be found at the West end of + last_post_date: "2014-01-26T05:16:00Z" + last_post_link: https://visionsofyork.blogspot.com/2014/01/service-details-sunday-06-february.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 2aa462d302f4810b6b11e7de5da5d0bf + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-36aa1d011eb2659af12e1ff849d9808f.md b/content/discover/feed-36aa1d011eb2659af12e1ff849d9808f.md deleted file mode 100644 index 25be376de..000000000 --- a/content/discover/feed-36aa1d011eb2659af12e1ff849d9808f.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Cheri Baker -date: "1970-01-01T00:00:00Z" -description: Public posts from @cheribaker@writing.exchange -params: - feedlink: https://writing.exchange/@cheribaker.rss - feedtype: rss - feedid: 36aa1d011eb2659af12e1ff849d9808f - websites: - https://writing.exchange/@cheribaker: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://blog.cheribaker.com/: true - https://cheri.omg.lol/: true - https://www.cheribaker.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-36b5496780684d9cd70241bdb61f9baf.md b/content/discover/feed-36b5496780684d9cd70241bdb61f9baf.md new file mode 100644 index 000000000..c6811ce25 --- /dev/null +++ b/content/discover/feed-36b5496780684d9cd70241bdb61f9baf.md @@ -0,0 +1,62 @@ +--- +title: Hiker's Thoughts +date: "2024-07-03T22:36:50-07:00" +description: "" +params: + feedlink: https://hikersthoughts.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 36b5496780684d9cd70241bdb61f9baf + websites: + https://hikersthoughts.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - hiking + - mountain + - mountain walking + - nepal + - trekking + - what to bring + relme: + https://boardgamethoughts.blogspot.com/: true + https://coderthoughts.blogspot.com/: true + https://hikersthoughts.blogspot.com/: true + https://laarderhoogt.blogspot.com/: true + https://lightdarknesspainting.blogspot.com/: true + https://on-software-architecture.blogspot.com/: true + https://osgithoughts.blogspot.com/: true + https://rockabillfilmsoc.blogspot.com/: true + https://rockabillfilmsociety.blogspot.com/: true + https://testblogaswebsite.blogspot.com/: true + https://www.blogger.com/profile/13786738766478890804: true + last_post_title: 'Trekking through Nepal: what the guidebooks don''t tell you' + last_post_description: "" + last_post_date: "2014-05-02T14:52:02-07:00" + last_post_link: https://hikersthoughts.blogspot.com/2014/05/trekking-through-nepal-what-guidebooks.html + last_post_categories: + - hiking + - mountain + - mountain walking + - nepal + - trekking + - what to bring + last_post_language: "" + last_post_guid: bbabfc5921b19173e5753efc28b4bf29 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-36dd2e0448a635b1c02c62fb987c9cd3.md b/content/discover/feed-36dd2e0448a635b1c02c62fb987c9cd3.md new file mode 100644 index 000000000..9a102ad84 --- /dev/null +++ b/content/discover/feed-36dd2e0448a635b1c02c62fb987c9cd3.md @@ -0,0 +1,47 @@ +--- +title: cassidyjames on Pixelfed +date: "2021-11-12T04:33:14Z" +description: 'Building useful, usable, delightful products that respect privacy. Partner + Success Engineer at Endless OS Foundation. GNOME Foundation member. Previously elementary + OS, System76. Mastodon:' +params: + feedlink: https://pixelfed.social/users/cassidyjames.atom + feedtype: atom + feedid: 36dd2e0448a635b1c02c62fb987c9cd3 + websites: + https://pixelfed.social/cassidyjames: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://cassidyjames.com/: true + https://github.com/cassidyjames: true + https://hci.social/@cassidyjames: true + https://mastodon.blaede.family/@cassidy: true + https://mastodon.social/@cassidyjames: true + https://pixelfed.social/cassidyjames: true + last_post_title: Playing with cameras + last_post_description: Playing with cameras + last_post_date: "2021-11-12T04:33:14Z" + last_post_link: https://pixelfed.social/p/cassidyjames/364630955792510708 + last_post_categories: [] + last_post_language: "" + last_post_guid: c1c2f6480b11cb6cfdd95f39a5b24f60 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-36ee7372ebeb11d6dfd56bed19e51ccd.md b/content/discover/feed-36ee7372ebeb11d6dfd56bed19e51ccd.md new file mode 100644 index 000000000..072cf1f9e --- /dev/null +++ b/content/discover/feed-36ee7372ebeb11d6dfd56bed19e51ccd.md @@ -0,0 +1,141 @@ +--- +title: Ddos vs love +date: "1970-01-01T00:00:00Z" +description: ddosing is love to internet. +params: + feedlink: https://viviantarologa.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 36ee7372ebeb11d6dfd56bed19e51ccd + websites: + https://viviantarologa.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ddosing not defcult + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Ddosing is normal + last_post_description: Each financial specialist, enormous or little, makes their + quality online to draw in the huge client base on the web for business income + age. For this, you need to concoct a decent web architecture + last_post_date: "2021-04-17T19:27:00Z" + last_post_link: https://viviantarologa.blogspot.com/2021/04/ddosing-is-normal.html + last_post_categories: + - ddosing not defcult + last_post_language: "" + last_post_guid: c877cbd2a768a4838fd8c2240c59eff1 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-36f7f8190bfdc67f6f9fda30e532ef9e.md b/content/discover/feed-36f7f8190bfdc67f6f9fda30e532ef9e.md deleted file mode 100644 index f8f8bb5fd..000000000 --- a/content/discover/feed-36f7f8190bfdc67f6f9fda30e532ef9e.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Sally Lait - blog -date: "1970-01-01T00:00:00Z" -description: Recent blog posts from sallylait.com -params: - feedlink: https://sallylait.com/blog/index.xml - feedtype: rss - feedid: 36f7f8190bfdc67f6f9fda30e532ef9e - websites: - https://sallylait.com/: false - https://sallylait.com/blog/: true - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: [] - relme: - https://mastodon.social/@sally: false - last_post_title: Holidays in Japan with a toddler - last_post_description: 'Despite growing up as a third culture kid used to travel, - and having spent almost 20 years visiting various places around Japan, this spring - brought a new experience: taking my kid on their first' - last_post_date: "2024-04-21T10:00:00Z" - last_post_link: https://sallylait.com/blog/2024/04/21/holidays-in-japan-with-a-toddler/ - last_post_categories: [] - last_post_guid: e1807b358263a40649351647cfccfcd5 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 14 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-370fa81f18a811e3585df7eced2aae65.md b/content/discover/feed-370fa81f18a811e3585df7eced2aae65.md deleted file mode 100644 index 965d0832a..000000000 --- a/content/discover/feed-370fa81f18a811e3585df7eced2aae65.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: '@londonwebstandards.org - London Web Standards' -date: "1970-01-01T00:00:00Z" -description: |- - Organisers of https://stateofthebrowser.com - organisers[at]londonwebstandards.org -params: - feedlink: https://bsky.app/profile/did:plc:lndvlw6ga4bwq7wj7eapktjn/rss - feedtype: rss - feedid: 370fa81f18a811e3585df7eced2aae65 - websites: - https://bsky.app/profile/londonwebstandards.org: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-372a16cdb33aeffd27dc769f6996828b.md b/content/discover/feed-372a16cdb33aeffd27dc769f6996828b.md index dff62f8e0..71d78f51b 100644 --- a/content/discover/feed-372a16cdb33aeffd27dc769f6996828b.md +++ b/content/discover/feed-372a16cdb33aeffd27dc769f6996828b.md @@ -14,6 +14,7 @@ params: recommender: [] categories: [] relme: + https://entropybound.blogspot.com/: true https://www.blogger.com/profile/14862709994959103798: true last_post_title: Milestone last_post_description: It's very exciting to hear that the LHC has exceeded the @@ -22,17 +23,22 @@ params: last_post_date: "2010-10-14T14:42:00Z" last_post_link: https://entropybound.blogspot.com/2010/10/milestone.html last_post_categories: [] + last_post_language: "" last_post_guid: e0023a082a4edbce4787a12eced1db4a score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-373010d7db6b549c29eb98e57c3d4852.md b/content/discover/feed-373010d7db6b549c29eb98e57c3d4852.md index 2d7a20662..f6c4d2f8a 100644 --- a/content/discover/feed-373010d7db6b549c29eb98e57c3d4852.md +++ b/content/discover/feed-373010d7db6b549c29eb98e57c3d4852.md @@ -13,37 +13,40 @@ params: recommender: - http://scripting.com/rss.xml - http://scripting.com/rssNightly.xml - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ + - https://frankmcpherson.blog/feed.xml + - https://josh.blog/comments/feed - https://josh.blog/feed categories: - Asides relme: {} - last_post_title: Melt Your Butter - last_post_description: In my life I like to experience things high/low, to stay - grounded. So while I’ve been taken on culinary adventures with the best chefs - in the world like René Redzepi or Kyle Connaughton, sometimes - last_post_date: "2024-06-04T00:57:45Z" - last_post_link: https://ma.tt/2024/06/melt-your-butter/ + last_post_title: Apple Intelligence + last_post_description: It was so cool to see WordPress highlighted (although with + a lowercase P in in the closed captioning) on the Apple keynote today.  I recommend + watching the entire keynote, but especially the Apple + last_post_date: "2024-06-11T02:35:22Z" + last_post_link: https://ma.tt/2024/06/apple-intelligence/ last_post_categories: - Asides - last_post_guid: 58f140587b5fb489f6d6e7c4bef9849f + last_post_language: "" + last_post_guid: 2ef73e17bab68e73cbb8519564465a84 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 14 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-374f1bf03e08178c7296351d63e08f10.md b/content/discover/feed-374f1bf03e08178c7296351d63e08f10.md deleted file mode 100644 index 37e3a54f0..000000000 --- a/content/discover/feed-374f1bf03e08178c7296351d63e08f10.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Thejesh GN -date: "1970-01-01T00:00:00Z" -description: Public posts from @thej@social.thej.in -params: - feedlink: https://social.thej.in/@thej.rss - feedtype: rss - feedid: 374f1bf03e08178c7296351d63e08f10 - websites: - https://social.thej.in/@thej: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://thejeshgn.com/: true - https://thejeshgn.com/about/: false - https://thejeshgn.com/projects/nagarathna-memorial-grant/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-375abde7a4a4339194dbf2a75bc6c0f7.md b/content/discover/feed-375abde7a4a4339194dbf2a75bc6c0f7.md new file mode 100644 index 000000000..b7e512270 --- /dev/null +++ b/content/discover/feed-375abde7a4a4339194dbf2a75bc6c0f7.md @@ -0,0 +1,42 @@ +--- +title: Avulsos by Penz - Whatsnew +date: "2023-07-30T00:00:00Z" +description: Whatsnew in Avulsos by Penz page. +params: + feedlink: https://feeds.feedburner.com/lpenz/avulsos/whatsnew.xml + feedtype: rss + feedid: 375abde7a4a4339194dbf2a75bc6c0f7 + websites: + https://www.lpenz.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://github.com/lpenz: true + https://www.lpenz.org/: true + last_post_title: News for 2010-04-11 + last_post_description: My notes on how to debianize a git repository now available + online in the Debianization with git-buildpackage article + last_post_date: "2010-04-11T00:00:00Z" + last_post_link: http://www.lpenz.org/index.html#whatsnew2010-04-11 + last_post_categories: [] + last_post_language: "" + last_post_guid: dba3aeb091913ed9a97fc221f4bb9402 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-375d4311b8194e23a4487853f65d0ea4.md b/content/discover/feed-375d4311b8194e23a4487853f65d0ea4.md new file mode 100644 index 000000000..569b7ce25 --- /dev/null +++ b/content/discover/feed-375d4311b8194e23a4487853f65d0ea4.md @@ -0,0 +1,44 @@ +--- +title: Riff Blog - Music, sort of. And computing. And ... +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://blog.riff.org/rss.xml + feedtype: rss + feedid: 375d4311b8194e23a4487853f65d0ea4 + websites: + https://blog.riff.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://blog.riff.org/: true + https://mamot.fr/@fgm: true + last_post_title: 'Tip of the day: using Homebrew to get PHP Pear extensions behind + a proxy' + last_post_description: Most of the time, installing tools using Homebrew works flawlessly, + including PHP these days. However, having to work in a client environment requiring + a proxy, the PHP 8.1 post-install failed when + last_post_date: "2023-06-01T12:15:14Z" + last_post_link: https://blog.riff.org/2023_06_01_tip_of_the_day_using_homebrew_to_get_php_pear_extensions_behind_a_proxy + last_post_categories: [] + last_post_language: "" + last_post_guid: 1e03d9a8f4cf42f5d0f41c0c356d9b30 + score_criteria: + cats: 0 + description: 0 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 11 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-376083cfd89e447912f9e27e9db38184.md b/content/discover/feed-376083cfd89e447912f9e27e9db38184.md deleted file mode 100644 index 382b61fd1..000000000 --- a/content/discover/feed-376083cfd89e447912f9e27e9db38184.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Fosstodon (Backup) -date: "1970-01-01T00:00:00Z" -description: Public posts from @fosstodon@mastodon.social -params: - feedlink: https://mastodon.social/@fosstodon.rss - feedtype: rss - feedid: 376083cfd89e447912f9e27e9db38184 - websites: - https://mastodon.social/@fosstodon: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://fosstodon.org/: false - https://hub.fosstodon.org/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-377a1abdd57474a439300e7ec1d07907.md b/content/discover/feed-377a1abdd57474a439300e7ec1d07907.md deleted file mode 100644 index 41873b7cb..000000000 --- a/content/discover/feed-377a1abdd57474a439300e7ec1d07907.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Radyology -date: "2023-01-13T13:31:17-06:00" -description: Technology, Programming, and General Makery -params: - feedlink: https://www.benrady.com/index.rdf - feedtype: atom - feedid: 377a1abdd57474a439300e7ec1d07907 - websites: - https://www.benrady.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://twitter.com/benrady: false - last_post_title: Testing with FIRE - last_post_description: Updated April 25th, 2023 For years now, I've held the belief - that effective automated test suites have four essential attributes. These attributes - have been referenced by other authors, and were the - last_post_date: "2023-04-25T09:49:12-05:00" - last_post_link: https://www.benrady.com/2016/11/testing-with-fire.html - last_post_categories: [] - last_post_guid: b3e3d2b90730ac8ef5a02f9d4625e71e - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-377d16c77302ca2eabf0e30c980c39be.md b/content/discover/feed-377d16c77302ca2eabf0e30c980c39be.md new file mode 100644 index 000000000..e4d8b03ab --- /dev/null +++ b/content/discover/feed-377d16c77302ca2eabf0e30c980c39be.md @@ -0,0 +1,139 @@ +--- +title: Ddosing is about Emotions. +date: "2024-02-06T22:27:19-08:00" +description: all emotions aout to know ddosing. +params: + feedlink: https://kimsuyi.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 377d16c77302ca2eabf0e30c980c39be + websites: + https://kimsuyi.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ddosing is internet. + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Ddossing have new age of Internet + last_post_description: "" + last_post_date: "2021-04-17T12:33:30-07:00" + last_post_link: https://kimsuyi.blogspot.com/2021/04/ddossing-have-new-age-of-internet.html + last_post_categories: + - ddosing is internet. + last_post_language: "" + last_post_guid: 98ec31fe893677d2a29de97c7d2c8277 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3780a37145e6412879965bfc33864151.md b/content/discover/feed-3780a37145e6412879965bfc33864151.md new file mode 100644 index 000000000..bf59b2692 --- /dev/null +++ b/content/discover/feed-3780a37145e6412879965bfc33864151.md @@ -0,0 +1,40 @@ +--- +title: 'PyInformatics: Bioinformatics and Data Science in Python' +date: "2024-03-05T07:29:18-08:00" +description: Python, mostly applied to big data and other random projects. +params: + feedlink: https://pyinformatics.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 3780a37145e6412879965bfc33864151 + websites: + https://pyinformatics.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://pyinformatics.blogspot.com/: true + last_post_title: Wooey v. 0.9.3 released + last_post_description: "" + last_post_date: "2016-07-28T05:30:25-07:00" + last_post_link: https://pyinformatics.blogspot.com/2016/07/wooey-v-093-released.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 5d78fdc413ffbdcf679d985d274fdb2d + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3788511cd1c7b58481bffc44602bb403.md b/content/discover/feed-3788511cd1c7b58481bffc44602bb403.md new file mode 100644 index 000000000..4ef99f92b --- /dev/null +++ b/content/discover/feed-3788511cd1c7b58481bffc44602bb403.md @@ -0,0 +1,61 @@ +--- +title: The Art Of Not Asking Why +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://taonaw.com/feed.xml + feedtype: rss + feedid: 3788511cd1c7b58481bffc44602bb403 + websites: + https://taonaw.com/: true + https://taonaw.com/categories/emacs-org-mode/: false + blogrolls: + - https://taonaw.com/.well-known/recommendations.opml + recommended: + - https://amerpie.lol/feed.xml + - https://irreal.org/blog/?feed=rss2 + - https://joelchrono.xyz/feed.xml + - https://kevquirk.com/feed + - https://pluralistic.net/feed/ + - https://sachachua.com/blog/feed + - https://brandons-journal.com/comments/feed/ + - https://brandons-journal.com/feed/ + - https://irreal.org/blog/?feed=comments-rss2 + - https://kevquirk.com/notes-feed + - https://kevquirk.com/watch-log-feed + - https://pluralistic.net/comments/feed/ + - https://sachachua.com/blog/category/emacs/feed/ + - https://sachachua.com/blog/category/monthly/feed + - https://sachachua.com/blog/category/weekly/feed + - https://sachachua.com/blog/category/yearly/feed + - https://sachachua.com/blog/feed/atom/ + recommender: [] + categories: [] + relme: + https://taonaw.com/: true + last_post_title: Pacific Drive (2024) - ★★★★ + last_post_description: Pacific Drive is what would happen if Herbie and Subnautica + had a child. In fact, I don’t think I’ve seen this particular blend of survival-suspense-story + mix in a game since Subnautica, and + last_post_date: "2024-07-07T20:24:16-04:00" + last_post_link: https://taonaw.com/2024/07/07/pacific-drive.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 33ef2bc0128d5e04299ff8321add75aa + score_criteria: + cats: 0 + description: 0 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 8 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-378d65049b352261bca47669cb811262.md b/content/discover/feed-378d65049b352261bca47669cb811262.md new file mode 100644 index 000000000..cd72a89bf --- /dev/null +++ b/content/discover/feed-378d65049b352261bca47669cb811262.md @@ -0,0 +1,46 @@ +--- +title: Tom Van Winkle's Return to Gaming +date: "1970-01-01T00:00:00Z" +description: Musings on table-top role-playing games today after spending a quarter + century away from them. +params: + feedlink: https://lichvanwinkle.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 378d65049b352261bca47669cb811262 + websites: + https://lichvanwinkle.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: [] + relme: + https://lichvanwinkle.blogspot.com/: true + last_post_title: Yes, you ARE telling a story. + last_post_description: But you aren't composing a novel or reading a script. (Not + during an RPG session, anyway.)This is a long blog post about pervasive mistakes + and miscommunication in the debate about "storytelling" in + last_post_date: "2024-02-01T18:07:00Z" + last_post_link: https://lichvanwinkle.blogspot.com/2024/02/yes-you-are-telling-story.html + last_post_categories: [] + last_post_language: "" + last_post_guid: adbeb852696132cf81ac569d66d609f1 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-37918b7b7d2f80a7057d5bea3cda57b9.md b/content/discover/feed-37918b7b7d2f80a7057d5bea3cda57b9.md new file mode 100644 index 000000000..a735b19c4 --- /dev/null +++ b/content/discover/feed-37918b7b7d2f80a7057d5bea3cda57b9.md @@ -0,0 +1,42 @@ +--- +title: Samuel Henrique (samueloph) +date: "2024-07-04T00:00:00Z" +description: My personal website +params: + feedlink: https://samueloph.dev/atom.xml + feedtype: atom + feedid: 37918b7b7d2f80a7057d5bea3cda57b9 + websites: + https://samueloph.dev/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://github.com/samueloph: true + https://mastodon.social/@samueloph: true + https://samueloph.dev/: true + last_post_title: Debian's curl now supports HTTP3 + last_post_description: "" + last_post_date: "2024-07-04T00:00:00Z" + last_post_link: https://samueloph.dev/blog/debian-curl-now-supports-http3/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 06ecf7524c74c91befc9d7fefda177d0 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-37929c82f10c5d292a912038c658df36.md b/content/discover/feed-37929c82f10c5d292a912038c658df36.md new file mode 100644 index 000000000..340b026d2 --- /dev/null +++ b/content/discover/feed-37929c82f10c5d292a912038c658df36.md @@ -0,0 +1,40 @@ +--- +title: Implementing Axolotl over XMPP Conversations +date: "2024-03-04T21:10:38-08:00" +description: "" +params: + feedlink: https://conversationsgsoc2015.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 37929c82f10c5d292a912038c658df36 + websites: + https://conversationsgsoc2015.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://conversationsgsoc2015.blogspot.com/: true + last_post_title: OMEMO + last_post_description: "" + last_post_date: "2015-09-06T07:37:16-07:00" + last_post_link: https://conversationsgsoc2015.blogspot.com/2015/09/omemo.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 44a5bf4c09e39cc22a977bab80ecbfd7 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-379a5641d967e0c243f3a0c9bfc00979.md b/content/discover/feed-379a5641d967e0c243f3a0c9bfc00979.md deleted file mode 100644 index 2216d02f5..000000000 --- a/content/discover/feed-379a5641d967e0c243f3a0c9bfc00979.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Marijke Luttekes -date: "1970-01-01T00:00:00Z" -description: Public posts from @mhlut@mastodon.social -params: - feedlink: https://mastodon.social/@mhlut.rss - feedtype: rss - feedid: 379a5641d967e0c243f3a0c9bfc00979 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-379f684c88b8f63ae65e1083d5525250.md b/content/discover/feed-379f684c88b8f63ae65e1083d5525250.md deleted file mode 100644 index 18e418a28..000000000 --- a/content/discover/feed-379f684c88b8f63ae65e1083d5525250.md +++ /dev/null @@ -1,58 +0,0 @@ ---- -title: Pixel Envy -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://pxlnv.com/feed/ - feedtype: rss - feedid: 379f684c88b8f63ae65e1083d5525250 - websites: - https://pxlnv.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://joeross.me/feed.xml - - https://www.manton.org/feed - - https://www.manton.org/feed.xml - - https://www.manton.org/podcast.xml - categories: - - Link Log - - advertising - - artificial intelligence - - Facebook - - Instagram - - Meta Inc - - social media - - TikTok - relme: - https://c.im/@nickheer: true - https://mastodon.social/@pxlnv: true - last_post_title: Meta’s Big Squeeze - last_post_description: 'Ashley Belanger, reporting for Ars Technica in July 2022 - in what I will call “foreshadowing”: Despite all the negative feedback [over then-recent - Instagram changes], Meta revealed on an earnings' - last_post_date: "2024-06-04T02:49:30Z" - last_post_link: https://pxlnv.com/linklog/meta-big-squeeze/ - last_post_categories: - - Link Log - - advertising - - artificial intelligence - - Facebook - - Instagram - - Meta Inc - - social media - - TikTok - last_post_guid: d53220303bcbc0dd9d9717be5fe7ee49 - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 15 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-37d4d24b561a374bc3ffe7b0f7a70498.md b/content/discover/feed-37d4d24b561a374bc3ffe7b0f7a70498.md deleted file mode 100644 index 863f21b39..000000000 --- a/content/discover/feed-37d4d24b561a374bc3ffe7b0f7a70498.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: "Bruja \U0001F349" -date: "1970-01-01T00:00:00Z" -description: Public posts from @gaba@systerserver.town -params: - feedlink: https://systerserver.town/@gaba.rss - feedtype: rss - feedid: 37d4d24b561a374bc3ffe7b0f7a70498 - websites: - https://systerserver.town/@gaba: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-37eba1a7ecb1d692c086e55cb5f434a7.md b/content/discover/feed-37eba1a7ecb1d692c086e55cb5f434a7.md new file mode 100644 index 000000000..5ad6e5928 --- /dev/null +++ b/content/discover/feed-37eba1a7ecb1d692c086e55cb5f434a7.md @@ -0,0 +1,44 @@ +--- +title: Jim Fulton +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://j1mfulton.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 37eba1a7ecb1d692c086e55cb5f434a7 + websites: + https://j1mfulton.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://j1mfulton.blogspot.com/: true + last_post_title: An API that tries too hard + last_post_description: |- + The purpose of this post is to make a point about the dangers of + excessive automation + + Let me emphasize: the purpose of this post if not to criticize ConfigParser in particular, but to make a point + last_post_date: "2011-03-19T15:47:00Z" + last_post_link: https://j1mfulton.blogspot.com/2011/03/api-that-tries-too-hard.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 75c1c0a1284a34bd1c74ec970440064b + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-37ecb25862e145e41b2d4a2cc5bd786d.md b/content/discover/feed-37ecb25862e145e41b2d4a2cc5bd786d.md deleted file mode 100644 index edb50e73b..000000000 --- a/content/discover/feed-37ecb25862e145e41b2d4a2cc5bd786d.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: "@jay.bsky.team - Jay \U0001F98B" -date: "1970-01-01T00:00:00Z" -description: "CEO of Bluesky, steward of AT Protocol. \n\nLet’s build a federated - republic, starting with this server. \U0001F331 \U0001FAB4 \U0001F333" -params: - feedlink: https://bsky.app/profile/did:plc:oky5czdrnfjpqslsw2a5iclo/rss - feedtype: rss - feedid: 37ecb25862e145e41b2d4a2cc5bd786d - websites: - https://bsky.app/profile/jay.bsky.team: true - blogrolls: [] - recommended: [] - recommender: - - http://scripting.com/rss.xml - - http://scripting.com/rssNightly.xml - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-380f2595bd4d0e36f5e8fb9f3e17275d.md b/content/discover/feed-380f2595bd4d0e36f5e8fb9f3e17275d.md deleted file mode 100644 index 2db755947..000000000 --- a/content/discover/feed-380f2595bd4d0e36f5e8fb9f3e17275d.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Didier J. MARY (blog) -date: "1970-01-01T00:00:00Z" -description: Consulting, accompagnement & mentoring -params: - feedlink: https://www.didiermary.fr/feed/ - feedtype: rss - feedid: 380f2595bd4d0e36f5e8fb9f3e17275d - websites: - https://www.didiermary.fr/: true - https://www.didiermary.fr/support-blogs-donate-today/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://amf.didiermary.fr/: false - https://bsky.app/profile/@didiermary.fr: false - https://masto.ai/@cybeardjm: true - https://pixelfed.social/cybeardjm: true - https://twitter.com/cybeardjm: false - https://www.didiermary.fr/: true - last_post_title: The Existential Adventures of Tim Maia - last_post_description: RSS Club is a secret to everyone!This post is certified "written - by human". Subscribe to this blog's RSS Feed here.More info on RSS Club.Tim Maia, - THE Brazilian Funk Soul Godfather was the real thing - last_post_date: "2024-05-29T19:11:54Z" - last_post_link: https://www.didiermary.fr/rss-club/the-existential-adventures-of-tim-maia/ - last_post_categories: [] - last_post_guid: e36b18e815e06de975fb22928fab39c5 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-38232f820c6cf45a7c4fe290b041c467.md b/content/discover/feed-38232f820c6cf45a7c4fe290b041c467.md new file mode 100644 index 000000000..c784c7599 --- /dev/null +++ b/content/discover/feed-38232f820c6cf45a7c4fe290b041c467.md @@ -0,0 +1,45 @@ +--- +title: Goofying-with-Debian +date: "2024-03-14T18:38:46+09:00" +description: Goofying with Debian +params: + feedlink: https://goofying-with-debian.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 38232f820c6cf45a7c4fe290b041c467 + websites: + https://goofying-with-debian.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://goofing-and-tweaking.blogspot.com/: true + https://goofing-with-computer.blogspot.com/: true + https://goofying-with-debian.blogspot.com/: true + https://osamu-aoki.blogspot.com/: true + https://osamu-in-japan.blogspot.com/: true + https://www.blogger.com/profile/12377163704610747036: true + last_post_title: debmake and debamke-doc and debian-handbook + last_post_description: "" + last_post_date: "2015-07-17T00:33:34+09:00" + last_post_link: https://goofying-with-debian.blogspot.com/2015/07/debmake-and-debamke-doc-and-debian.html + last_post_categories: [] + last_post_language: "" + last_post_guid: b47d247a56bbb205784c49408ef88a3d + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3827a8b377a171c5dff3f2ea934b312c.md b/content/discover/feed-3827a8b377a171c5dff3f2ea934b312c.md new file mode 100644 index 000000000..096f505e1 --- /dev/null +++ b/content/discover/feed-3827a8b377a171c5dff3f2ea934b312c.md @@ -0,0 +1,43 @@ +--- +title: Brian DeVries +date: "2024-07-01T20:39:36Z" +description: Brian DeVries' Personal Blog +params: + feedlink: https://brianjdevries.com/feed.xml + feedtype: atom + feedid: 3827a8b377a171c5dff3f2ea934b312c + websites: + https://brianjdevries.com/: false + blogrolls: [] + recommended: [] + recommender: + - https://danq.me/comments/feed/ + - https://danq.me/feed/ + - https://danq.me/kind/article/feed/ + - https://danq.me/kind/note/feed/ + categories: [] + relme: {} + last_post_title: My latest endeavor + last_post_description: "" + last_post_date: "2024-06-18T12:22:00Z" + last_post_link: https://brianjdevries.com/blog/2024/06/18/my-latest-endeavor/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 53b89471808d2939da5d301d0f7ed533 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 1 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-382847aee2a632f0c80fd443e18484b8.md b/content/discover/feed-382847aee2a632f0c80fd443e18484b8.md index bea1b85af..0cac7b580 100644 --- a/content/discover/feed-382847aee2a632f0c80fd443e18484b8.md +++ b/content/discover/feed-382847aee2a632f0c80fd443e18484b8.md @@ -13,7 +13,7 @@ params: recommender: [] categories: [] relme: - https://social.lol/@jbaty: true + https://baty.blog/: true last_post_title: File Management Fatigue last_post_description: It’s possible that I’m losing my willingness to constantly deal with naming, organizing, managing, and backing up hundreds or thousands of @@ -21,17 +21,22 @@ params: last_post_date: "2024-05-19T06:50:00-04:00" last_post_link: https://baty.blog/2024/05/file-management-fatigue last_post_categories: [] + last_post_language: "" last_post_guid: 5ca7575ff25e384b8d3d554da0aabfd4 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-382d179fd490df1b34a6d327bf588c72.md b/content/discover/feed-382d179fd490df1b34a6d327bf588c72.md new file mode 100644 index 000000000..5035edaa9 --- /dev/null +++ b/content/discover/feed-382d179fd490df1b34a6d327bf588c72.md @@ -0,0 +1,46 @@ +--- +title: C'est la Z +date: "1970-01-01T00:00:00Z" +description: C'est la Z +params: + feedlink: https://cestlaz.github.io/rss.xml + feedtype: rss + feedid: 382d179fd490df1b34a6d327bf588c72 + websites: {} + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: [] + relme: {} + last_post_title: Hidden Communities of New York + last_post_description: |- + Now that I'm not teaching CS every day, I find the desire to maybe + write about some other things. I've still got a bunch of CS and + education posts lined up, but for today, something different. + + I was + last_post_date: "2024-07-08T15:09:27-04:00" + last_post_link: https://cestlaz.github.io/post/hidden-communities/ + last_post_categories: [] + last_post_language: "" + last_post_guid: ac7800aac44972880e1236c84c6cbc7d + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 0 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-382e3595de8ad0c69b9dbb3d38d6ddd6.md b/content/discover/feed-382e3595de8ad0c69b9dbb3d38d6ddd6.md deleted file mode 100644 index cbe1f11b2..000000000 --- a/content/discover/feed-382e3595de8ad0c69b9dbb3d38d6ddd6.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for Gowers's Weblog -date: "1970-01-01T00:00:00Z" -description: Mathematics related discussions -params: - feedlink: https://gowers.wordpress.com/comments/feed/ - feedtype: rss - feedid: 382e3595de8ad0c69b9dbb3d38d6ddd6 - websites: - https://gowers.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Domains, codomains, ranges, images, preimages, inverse - images by Anonymous - last_post_description: |- - -

Welcome to Primus Solicitors. We help Individuals with their goals of living and working in the UK. Our team of immigration solicitors will guide you through the full - last_post_date: "2024-06-25T21:43:52Z" - last_post_link: https://gowers.wordpress.com/2011/10/13/domains-codomains-ranges-images-preimages-inverse-images/#comment-537784 - last_post_categories: [] - last_post_guid: 0eb3c8227642c988dd70cfd24e4204bf - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-383bc4fd1293afc5889f64a4f56fbe94.md b/content/discover/feed-383bc4fd1293afc5889f64a4f56fbe94.md new file mode 100644 index 000000000..b4a7013ab --- /dev/null +++ b/content/discover/feed-383bc4fd1293afc5889f64a4f56fbe94.md @@ -0,0 +1,43 @@ +--- +title: The Musings of Chris Samuel +date: "1970-01-01T00:00:00Z" +description: Computers, science, archaeology and other random burblings +params: + feedlink: https://www.csamuel.org/feed + feedtype: rss + feedid: 383bc4fd1293afc5889f64a4f56fbe94 + websites: + https://www.csamuel.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Donna Williams + relme: + https://www.csamuel.org/: true + last_post_title: 'Vale Polly Samuel (1963-2017): On Dying & Death' + last_post_description: 'This item originally posted here:Vale Polly Samuel (1963-2017): + On Dying & Death' + last_post_date: "2019-04-22T01:32:03Z" + last_post_link: https://www.csamuel.org/2019/04/22/on-dying-and-death + last_post_categories: + - Donna Williams + last_post_language: "" + last_post_guid: 2a44b72fe9fd6c070196fc575f79ebbd + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-385603655784a7db50f369bd98b9d632.md b/content/discover/feed-385603655784a7db50f369bd98b9d632.md index 1db1b2e1a..15fced638 100644 --- a/content/discover/feed-385603655784a7db50f369bd98b9d632.md +++ b/content/discover/feed-385603655784a7db50f369bd98b9d632.md @@ -18,17 +18,22 @@ params: last_post_date: "2024-04-17T00:00:00Z" last_post_link: https://raphaelkabo.com/blog/openorb-curated-search-engine/ last_post_categories: [] + last_post_language: "" last_post_guid: d14ca799df0ada22f2d71f1c2b99ef5c score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 11 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-3870045f743d7a98ad2822be48b9d453.md b/content/discover/feed-3870045f743d7a98ad2822be48b9d453.md new file mode 100644 index 000000000..6060a75e0 --- /dev/null +++ b/content/discover/feed-3870045f743d7a98ad2822be48b9d453.md @@ -0,0 +1,64 @@ +--- +title: /home/jwf/ +date: "1970-01-01T00:00:00Z" +description: Free & Open Source, technology, travel, and life reflections +params: + feedlink: https://blog.jwf.io/feed/ + feedtype: rss + feedid: 3870045f743d7a98ad2822be48b9d453 + websites: + https://blog.jwf.io/: true + https://blog.jwf.io/tag/fedora-planet/: false + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 2020s + - Fedora Linux + - Fedora Planet + - Open Source + - Outreachy + - Red Hat + - internship + - open source communities + - reflections + relme: + https://blog.jwf.io/: true + https://floss.social/@jwf: true + https://jwf.io/: true + last_post_title: 'Outreachy May 2024: A letter to Fedora applicants' + last_post_description: |- + The post Outreachy May 2024: A letter to Fedora applicants appeared first on /home/jwf/. + /home/jwf/ - Free & Open Source, technology, travel, and life reflections + To all Outreachy May 2024 applicants + last_post_date: "2024-05-02T13:05:05Z" + last_post_link: https://blog.jwf.io/2024/05/outreachy-may-2024-letter-fedora-applicants/ + last_post_categories: + - 2020s + - Fedora Linux + - Fedora Planet + - Open Source + - Outreachy + - Red Hat + - internship + - open source communities + - reflections + last_post_language: "" + last_post_guid: c423534be1082ec8da53e41fe427667b + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-38731a144ea071174435b0309f7ef759.md b/content/discover/feed-38731a144ea071174435b0309f7ef759.md index aebaa9fa4..23bfb3986 100644 --- a/content/discover/feed-38731a144ea071174435b0309f7ef759.md +++ b/content/discover/feed-38731a144ea071174435b0309f7ef759.md @@ -8,14 +8,13 @@ params: feedtype: rss feedid: 38731a144ea071174435b0309f7ef759 websites: - https://elsua.net/: false https://www.elsua.net/: true blogrolls: [] recommended: [] recommender: [] categories: [] relme: - https://mastodon.social/@elsua: false + https://www.elsua.net/: true last_post_title: Comment on Differences between Remote and Distributed Work – All about Power, Symbols and Rituals! by Luis Suarez last_post_description: |- @@ -25,17 +24,22 @@ params: last_post_date: "2023-08-06T19:11:35Z" last_post_link: https://www.elsua.net/2022/05/16/differences-between-remote-and-distributed-work-all-about-power-symbols-and-rituals/comment-page-1/#comment-6583085 last_post_categories: [] + last_post_language: "" last_post_guid: 2d550ec2a2de8192c984bf0d07b7c54b score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 9 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-38a4fc5ee923783de55e910bc0abe63b.md b/content/discover/feed-38a4fc5ee923783de55e910bc0abe63b.md new file mode 100644 index 000000000..ecdc34c1a --- /dev/null +++ b/content/discover/feed-38a4fc5ee923783de55e910bc0abe63b.md @@ -0,0 +1,47 @@ +--- +title: Hari Rana activity +date: "2024-05-03T02:09:25Z" +description: "" +params: + feedlink: https://gitlab.freedesktop.org/TheEvilSkeleton.atom + feedtype: atom + feedid: 38a4fc5ee923783de55e910bc0abe63b + websites: + https://gitlab.freedesktop.org/TheEvilSkeleton: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://codeberg.org/TheEvilSkeleton/: true + https://github.com/TheEvilSkeleton: true + https://gitlab.com/TheEvilSkeleton: true + https://gitlab.freedesktop.org/TheEvilSkeleton: true + https://gitlab.gnome.org/TheEvilSkeleton: true + https://social.treehouse.systems/@TheEvilSkeleton: true + https://tesk.page/: true + last_post_title: 'Hari Rana opened issue #7: Port to SCSS at freedesktop.org / Freedesktop + Wiki Templates' + last_post_description: "" + last_post_date: "2024-05-03T02:09:25Z" + last_post_link: https://gitlab.freedesktop.org/freedesktop/freedesktop-wiki-templates/-/issues/7 + last_post_categories: [] + last_post_language: "" + last_post_guid: 0bf2e425a328c44f7a906817bd28d23d + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-38adf9716f5ee06cb3b023368eb8a152.md b/content/discover/feed-38adf9716f5ee06cb3b023368eb8a152.md new file mode 100644 index 000000000..df817085f --- /dev/null +++ b/content/discover/feed-38adf9716f5ee06cb3b023368eb8a152.md @@ -0,0 +1,137 @@ +--- +title: All about Refrigerator +date: "2024-02-08T03:00:47-08:00" +description: All information about Refrigerator on blogspot. +params: + feedlink: https://nextlevelfood.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 38adf9716f5ee06cb3b023368eb8a152 + websites: + https://nextlevelfood.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: You Know about Rerigerator + last_post_description: "" + last_post_date: "2022-01-12T00:28:05-08:00" + last_post_link: https://nextlevelfood.blogspot.com/2022/01/you-know-about-rerigerator.html + last_post_categories: [] + last_post_language: "" + last_post_guid: e607f436cff9c81f052e8762af2efd21 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-38b6d0923c51a43fea4f088a86379400.md b/content/discover/feed-38b6d0923c51a43fea4f088a86379400.md index d7d5856af..20647b956 100644 --- a/content/discover/feed-38b6d0923c51a43fea4f088a86379400.md +++ b/content/discover/feed-38b6d0923c51a43fea4f088a86379400.md @@ -14,33 +14,37 @@ params: - https://jabel.blog/feed.xml - https://jabel.blog/podcast.xml categories: - - art - - Cézanne - - teaching - - The lighter side of AUFS + - Neoliberalism's Demons (the book) + - fascism + - neoliberalism relme: {} - last_post_title: My Brief Career as a Painter - last_post_description: One of the most rewarding side-effects of my teaching in - the Shimer Great Books School has been the exploration of art that it prompted. - I’ve written here before about how my teaching of the Shimer - last_post_date: "2024-05-28T20:14:42Z" - last_post_link: https://itself.blog/2024/05/28/my-brief-career-as-a-painter/ + last_post_title: 'Why this keeps happening: On neoliberalism and the right-wing + reaction' + last_post_description: The last decade or so has been marked by a global resurgence + of the extreme right. Its most prominent avatars in the West are the Brexit campaign + and the Trump phenomenon, while various right-wing + last_post_date: "2024-07-08T11:23:22Z" + last_post_link: https://itself.blog/2024/07/08/why-we-keep-ratcheting-right-or-its-the-neoliberalism-stupid/ last_post_categories: - - art - - Cézanne - - teaching - - The lighter side of AUFS - last_post_guid: a3a452c3eff9965c0cd2465b5f2524a6 + - Neoliberalism's Demons (the book) + - fascism + - neoliberalism + last_post_language: "" + last_post_guid: fb044d7196428c8bcfca4b8b8675cf05 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-38ba192a5a52546af5856327bd9c34f0.md b/content/discover/feed-38ba192a5a52546af5856327bd9c34f0.md new file mode 100644 index 000000000..40e4521b2 --- /dev/null +++ b/content/discover/feed-38ba192a5a52546af5856327bd9c34f0.md @@ -0,0 +1,41 @@ +--- +title: Robin Rendle +date: "2024-07-09T02:37:03Z" +description: Essays feed +params: + feedlink: https://robinrendle.com/essayfeed.xml + feedtype: atom + feedid: 38ba192a5a52546af5856327bd9c34f0 + websites: + https://robinrendle.com/: false + blogrolls: [] + recommended: [] + recommender: + - https://colinwalker.blog/dailyfeed.xml + - https://colinwalker.blog/livefeed.xml + categories: [] + relme: {} + last_post_title: In Praise of Shadows + last_post_description: "" + last_post_date: "2022-07-01T14:35:00Z" + last_post_link: https://robinrendle.com/essays/in-praise-of-shadows/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 006e4974c42042556eaa5629960ec81d + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 1 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-38ba811ce3aabe34c3527cdb24ca6710.md b/content/discover/feed-38ba811ce3aabe34c3527cdb24ca6710.md new file mode 100644 index 000000000..b9e0d79f5 --- /dev/null +++ b/content/discover/feed-38ba811ce3aabe34c3527cdb24ca6710.md @@ -0,0 +1,40 @@ +--- +title: Cees-Jan Kiewiet's blog +date: "2024-07-01T12:25:33Z" +description: "" +params: + feedlink: https://blog.wyrihaximus.net/atom.xml + feedtype: atom + feedid: 38ba811ce3aabe34c3527cdb24ca6710 + websites: {} + blogrolls: [] + recommended: [] + recommender: + - https://alexsci.com/blog/rss.xml + categories: [] + relme: {} + last_post_title: 'Building a kubernetes homelab with Raspberry Pi and Lego: Network: + Switch' + last_post_description: "" + last_post_date: "2024-07-01T00:00:00Z" + last_post_link: https://blog.wyrihaximus.net/2024/07/building-a-kubernetes-homelab-with-raspberry-pies-and-lego-network-switch/ + last_post_categories: [] + last_post_language: "" + last_post_guid: fc9a64329cc7792470e83d46bb7bacce + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 0 + score: 11 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-38d587f7023e6ce29e63116b63802e03.md b/content/discover/feed-38d587f7023e6ce29e63116b63802e03.md new file mode 100644 index 000000000..7c0fa582b --- /dev/null +++ b/content/discover/feed-38d587f7023e6ce29e63116b63802e03.md @@ -0,0 +1,139 @@ +--- +title: Ddosing and its benefit +date: "1970-01-01T00:00:00Z" +description: All about Ddos and it work. +params: + feedlink: https://wezilwalraven.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 38d587f7023e6ce29e63116b63802e03 + websites: + https://wezilwalraven.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Benefits and Disadvantageous of Ddos + last_post_description: Do you have an SLA understanding that ensures moderation + inside in a specific period? An SLA, Is ddosing illegal insurance supplier that + traces the degree of security you can hope to get. In + last_post_date: "2021-04-07T18:28:00Z" + last_post_link: https://wezilwalraven.blogspot.com/2021/04/benefits-and-disadvantageous-of-ddos.html + last_post_categories: [] + last_post_language: "" + last_post_guid: ab4a23f45ba132db6364040074d6594e + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-38d6bac34330c4a50553f428c01bebc4.md b/content/discover/feed-38d6bac34330c4a50553f428c01bebc4.md index 5698784de..2eff77ee6 100644 --- a/content/discover/feed-38d6bac34330c4a50553f428c01bebc4.md +++ b/content/discover/feed-38d6bac34330c4a50553f428c01bebc4.md @@ -14,33 +14,37 @@ params: recommender: - https://colinwalker.blog/dailyfeed.xml - https://colinwalker.blog/livefeed.xml - - https://jlelse.blog/.min.rss - - https://jlelse.blog/.rss - - https://jlelse.blog/index.xml categories: - - Sustainability - - Usa + - Featured + - Personal + - Web development relme: {} - last_post_title: Endless growth - last_post_description: "Stumbling on a post by an American author that I highly - respect reignited my doubts about a dominant growth at all costs culture from - the US.\n \n While expressing my thoughts about" - last_post_date: "2024-05-03T10:12:04+01:00" - last_post_link: https://minutestomidnight.co.uk/blog/endless-growth/ + last_post_title: Leaving the web industry + last_post_description: "I accepted an offer for a permanent job in one of the most + prestigious British institutes. To get there, I had to first understand I'm not + cut for the web industry anymore.\n \n After" + last_post_date: "2024-06-28T11:57:36+01:00" + last_post_link: https://minutestomidnight.co.uk/blog/leaving-the-web-industry/ last_post_categories: - - Sustainability - - Usa - last_post_guid: e528149784af8d40dbd7271b15d1da47 + - Featured + - Personal + - Web development + last_post_language: "" + last_post_guid: 6cfece7633cfbc334e54f5936499471e score_criteria: cats: 0 description: 3 - postcats: 2 + feedlangs: 1 + postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 13 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-38db006b23584c100d82b86bef2159d3.md b/content/discover/feed-38db006b23584c100d82b86bef2159d3.md new file mode 100644 index 000000000..66a6be686 --- /dev/null +++ b/content/discover/feed-38db006b23584c100d82b86bef2159d3.md @@ -0,0 +1,84 @@ +--- +title: TenFourFox Development +date: "2024-07-07T23:27:39-07:00" +description: What's new in TenFourFox, the Mozilla browser for Power Macs. +params: + feedlink: https://tenfourfox.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 38db006b23584c100d82b86bef2159d3 + websites: + https://tenfourfox.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 68k + - PowerPC + - anfscd + - applesnark + - biggerbetterfastermore + - bsd + - catchthewave + - classilla + - d'oh + - disgusting + - eclipse + - endian little hate we + - floydian + - fpr + - getoffmylawn + - gopher + - hacking + - icymi + - intel + - judgment day + - justbecauseyouareparanoiddoesnotmeantheyarenotafteryou + - kubrick + - linux + - meow + - mozilla + - mte + - oldbrowsers + - parity + - ppc970 + - qte + - rip + - sad + - security + - shame + - shoutout + - sluggo + - spectre + - statistics + - talos + - tenfourfoxbox + - tensixfox + - thereisnoxulonlywebextensions + - transition + relme: + https://tenfourfox.blogspot.com/: true + last_post_title: macOS Sequoia + last_post_description: "" + last_post_date: "2024-06-10T14:16:25-07:00" + last_post_link: https://tenfourfox.blogspot.com/2024/06/macos-sequoia.html + last_post_categories: + - applesnark + last_post_language: "" + last_post_guid: 074c8f2beb6a0aad1546f3b27b213c32 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-38f1465451f80f15bd913dd8fc371f5c.md b/content/discover/feed-38f1465451f80f15bd913dd8fc371f5c.md new file mode 100644 index 000000000..a679ec41c --- /dev/null +++ b/content/discover/feed-38f1465451f80f15bd913dd8fc371f5c.md @@ -0,0 +1,51 @@ +--- +title: Python Academy +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://python-academy.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 38f1465451f80f15bd913dd8fc371f5c + websites: + https://python-academy.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Brussels + - EuroSciPy + - HDF5 + - PyCon + - conferences + - courses + - matplotlib + - science + - tutorials + relme: + https://python-academy.blogspot.com/: true + last_post_title: Learn Python and SQLAlchemy in Antwerp, Belgium + last_post_description: So far most of our open courses are in Leipzig, Germany. + After an open training right after EuroPython in Florence in July and one after + PyCon PL in Poland in September, we now also offer Python + last_post_date: "2012-10-24T10:44:00Z" + last_post_link: https://python-academy.blogspot.com/2012/10/learn-python-and-sqlalchemy-in-antwerp.html + last_post_categories: [] + last_post_language: "" + last_post_guid: ed4aa28e9cf477535ba4291df27a4bc4 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-39220c921ce74661f8fff6695d1b909c.md b/content/discover/feed-39220c921ce74661f8fff6695d1b909c.md new file mode 100644 index 000000000..853de2185 --- /dev/null +++ b/content/discover/feed-39220c921ce74661f8fff6695d1b909c.md @@ -0,0 +1,63 @@ +--- +title: 4urIT +date: "2024-02-20T00:44:00-08:00" +description: "" +params: + feedlink: https://4urit.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 39220c921ce74661f8fff6695d1b909c + websites: + https://4urit.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - AtlanMod "atlantic zoo" + - CDO + - DSL + - MOSkitt + - Model analysis + - chad fowler + - complexity + - complexity elegant wrong + - model repository + - modeling versioning + - openarchitectureware + - papyrus + - semantic versioning + - the passionate programmer + - topcased + relme: + https://4urit.blogspot.com/: true + https://huggenberg.blogspot.com/: true + https://madmeiersadventures.blogspot.com/: true + https://madmeierscloud.blogspot.com/: true + https://madmeierslife.blogspot.com/: true + https://madmeierstwike.blogspot.com/: true + https://mmsketches.blogspot.com/: true + https://www.blogger.com/profile/14628306885093928732: true + last_post_title: Model Analysis / Transformation + last_post_description: "" + last_post_date: "2010-10-16T11:50:11-07:00" + last_post_link: https://4urit.blogspot.com/2010/10/model-analysis-transformation.html + last_post_categories: + - Model analysis + last_post_language: "" + last_post_guid: e35b4f1bf77604fe456e43a7b905c886 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-394adac1309d630670c547a194733142.md b/content/discover/feed-394adac1309d630670c547a194733142.md new file mode 100644 index 000000000..520e8e188 --- /dev/null +++ b/content/discover/feed-394adac1309d630670c547a194733142.md @@ -0,0 +1,167 @@ +--- +title: pyright +date: "2024-07-06T06:48:56-07:00" +description: Python programming language related posts. +params: + feedlink: https://pyright.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 394adac1309d630670c547a194733142 + websites: + https://pyright.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - '#2Dgeometry #python #infiniteslope' + - '#ArabicLanguage' + - '#C#' + - '#Csharp' + - '#Gtk' + - '#Gtk.Calendar' + - '#Gtk.TreeView' + - '#InternetExplorer' + - '#IronPython' + - '#IronPython #unicode #python #.NET' + - '#JavaScript #ZenofPython' + - '#JavaScript #ZenofPython #W3Cvalidator' + - '#PDF #Bookmarks #PyPDF2 #Python' + - '#Python' + - '#Python3.1 #Unicode #UTF-8 #bytes #OrderedDict' + - '#PythonWiki' + - '#Selenium' + - '#SendKeys' + - '#Unicode' + - '#Vector' + - '#XMLcharactercodes' + - '#dotNet' + - '#freebsd' + - '#gtk-sharp' + - '#hack' + - '#inkscape #povray #svg #python #pysanky' + - '#jts #wkt #jython' + - '#jython #JTS #geometry' + - '#jython #java #clone' + - '#jython #java.util.Properties' + - '#jython #joda-time' + - '#jython #jts #voronoi' + - '#jython #python #java #regularexpressions' + - '#jython #unicode #regularexpressions #python' + - '#meetbsdca2104' + - '#mono' + - '#netbsd' + - '#openbsd' + - '#polygonbuffering #jts #jython' + - '#polygonoffset' + - '#polygonoffset #python' + - '#polygonoffset #python #povray #pysanky' + - '#povray #python #pysanky' + - '#pycon-us #pycon #unicode #python #python3.1 #unicodedata' + - '#pyconza' + - '#pyeuclid' + - '#pyeuclid #polygonoffset #python' + - '#pysanky #povray #python' + - '#python #java #jython #arabic #RTL' + - '#python #lao #unicode #python3.1' + - '#python #povray #pysanky' + - '#python #pythonlogos' + - '#python #unicode #utf #armenian #russian #python3.1' + - '#python #unicodeidentifiers #arabic #python3.1 #RTL' + - '#python2.6 #__future__ #python3.1 #stringformatting #transamerica' + - '#python2.7' + - '#python3.1 #stringformatting #mining' + - '#python3.4' + - '#regularexpressions #jython #ironpython #python #unicode' + - '#subprocess #Popen #python2.7 #Windowsexecutable #parallel' + - '#svg #xml #pythonlogo #python' + - '#travel #pycon #pycon-us #conferences #foss' + - '#urllib #python #foreignlanguagetapes' + - '#vectormaath' + - '#vectormath' + - '#win32com' + - 7-ZipJBinding + - 7zip + - BSDA + - IPv4 + - MSSQL + - OpenBSD + - 'Python #unicode #python3.1 #UnicodeDecodeError' + - Python Python3 Unicode Unicodenormalization Unicodedecomposition unicodedatamodule + Umlaut PyconUS + - Python3.x Python unittest bytes + - SSRS + - Thinkpad + - VBA + - X201 + - assert + - base64 + - bcp + - bytea + - columns + - coroutines + - csv + - devilinthedark + - dia + - drillholes + - fan + - feh + - freebsd python + - generators + - geology + - grouping + - hardware + - hotrains + - java + - jpeg + - jython + - jython unicode unicodeblock + - linear regression formulas + - maintainablecode + - modeltrains + - netmask + - openbsd python + - postgresql + - psql + - pyconus python3 robots + - pyrite + - python + - python openbsd DoubleAssociation dictionarystructure + - python python3 Unicode unicodedata Telugu Hindi virama + - python python3 Unicode unicodedata normalization decomposition malayalam + - python python3 foreignlanguage pythoncommunity + - python python3.1 UTF-8 Unicode + - python python3.1 UTF-8 Unicode Arabic + - python3.5 + - showimagefromdatabasequery + - sound + - sqlcmd + - storeimageastext + - storeimageindatabase + - toydatabase + - y=mx+b + - yield + relme: + https://pyright.blogspot.com/: true + last_post_title: Graphviz - Editing a DAG Hamilton Graph dot File + last_post_description: "" + last_post_date: "2024-07-06T06:48:22-07:00" + last_post_link: https://pyright.blogspot.com/2024/07/graphviz-editing-dag-hamilton-graph-dot.html + last_post_categories: [] + last_post_language: "" + last_post_guid: c97519d7a6eedb331614c5ed413dabb4 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-395dba2a5da700034fecaf4cd2d02da3.md b/content/discover/feed-395dba2a5da700034fecaf4cd2d02da3.md new file mode 100644 index 000000000..3e9e7b900 --- /dev/null +++ b/content/discover/feed-395dba2a5da700034fecaf4cd2d02da3.md @@ -0,0 +1,44 @@ +--- +title: GSOC19 Ahmed ElShreif +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://ahmedelshreif.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 395dba2a5da700034fecaf4cd2d02da3 + websites: + https://ahmedelshreif.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://ahmedelshreif.blogspot.com/: true + https://ahmedelshreifgsoc20.blogspot.com/: true + https://www.blogger.com/profile/00164441255153532102: true + last_post_title: GSoC final report + last_post_description: |- + Overview + The idea of this GSoC project was to implement new Domain-Specific language for LibreOffice to be used in UI testing by logging the user interactions with LO applications then generate the + last_post_date: "2019-08-22T02:12:00Z" + last_post_link: https://ahmedelshreif.blogspot.com/2019/08/gsoc-final-report.html + last_post_categories: [] + last_post_language: "" + last_post_guid: b5a71eafe280cff90a5ce547087b6338 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3974ec0803ed134d45f40af4c35b93f5.md b/content/discover/feed-3974ec0803ed134d45f40af4c35b93f5.md deleted file mode 100644 index c026c5be0..000000000 --- a/content/discover/feed-3974ec0803ed134d45f40af4c35b93f5.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Linux Kernel Podcast – Linux Kernel Podcast -date: "1970-01-01T00:00:00Z" -description: Periodic summary of Linux Kernel Development -params: - feedlink: https://kernelpodcast.org/series/linux-kernel-podcast/feed/ - feedtype: rss - feedid: 3974ec0803ed134d45f40af4c35b93f5 - websites: - https://kernelpodcast.org/series/linux-kernel-podcast/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Kernel Podcast S2E1 – 2023/01/21 - last_post_description: The Linux "Kernel Podcast" returns from a long hiatus for - a new "season 2". Our host Jon Masters introduces the new season, and summarizes - recent happenings during Linux 6.2 development. - last_post_date: "2023-01-22T09:11:00Z" - last_post_link: https://kernelpodcast.org/podcast/kernel-podcast-s2e1-2023-01-21/ - last_post_categories: [] - last_post_guid: 361a9121f46eb0972f299cfb289a0a66 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-398d01909f4bd59a325b3bbcc9ca9b3e.md b/content/discover/feed-398d01909f4bd59a325b3bbcc9ca9b3e.md new file mode 100644 index 000000000..8e10b37e4 --- /dev/null +++ b/content/discover/feed-398d01909f4bd59a325b3bbcc9ca9b3e.md @@ -0,0 +1,45 @@ +--- +title: Comments for rscottjones +date: "1970-01-01T00:00:00Z" +description: tagline-free since 1998 +params: + feedlink: https://rscottjones.com/comments/feed/ + feedtype: rss + feedid: 398d01909f4bd59a325b3bbcc9ca9b3e + websites: + https://rscottjones.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://mastodon.social/@rscottjones: true + https://onephoto.club/@scott: true + https://rscottjones.com/: true + last_post_title: Comment on Small social networks are everywhere (still) by Lou + Plummer + last_post_description: It's remarkable how smaller theme-based communities work. + My wife's ultrarunning coach, who is also her friend, is friends with practically + every well-known person in the ultra community, giving her + last_post_date: "2024-06-05T00:29:57Z" + last_post_link: https://rscottjones.com/small-social-networks-are-everywhere-still/#comment-890 + last_post_categories: [] + last_post_language: "" + last_post_guid: 73e959634877e97c6f78166acb23f811 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3999be41ab3d3fe0493e434217319e90.md b/content/discover/feed-3999be41ab3d3fe0493e434217319e90.md new file mode 100644 index 000000000..32bddd6bc --- /dev/null +++ b/content/discover/feed-3999be41ab3d3fe0493e434217319e90.md @@ -0,0 +1,62 @@ +--- +title: luxate +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://luxate.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 3999be41ab3d3fe0493e434217319e90 + websites: + https://luxate.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Anniversary + - Art + - Branding + - Brandnig + - Conference + - Design + - Design Team + - General + - Idea + - LibO + - Private + - Usability + - User Experience + - Website + - Writer + relme: + https://luxate.blogspot.com/: true + https://www.blogger.com/profile/05038500172913638423: true + last_post_title: Comments Ruler Control + last_post_description: |- + Long time no hear ... I'm really happy that I was able to dedicate some time for a topic that was one of the very first when joining the community. + + Why? There has been some nice ruler rework + last_post_date: "2012-06-09T19:18:00Z" + last_post_link: https://luxate.blogspot.com/2012/06/comments-ruler-control.html + last_post_categories: + - Design + - User Experience + - Writer + last_post_language: "" + last_post_guid: 81e69c4c6f5c8a63a43c6f4f4d525a7a + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-399f2e18128549043206e76ed4328722.md b/content/discover/feed-399f2e18128549043206e76ed4328722.md new file mode 100644 index 000000000..f770bf8c5 --- /dev/null +++ b/content/discover/feed-399f2e18128549043206e76ed4328722.md @@ -0,0 +1,44 @@ +--- +title: ger&co +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://ger-en-co.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 399f2e18128549043206e76ed4328722 + websites: + https://ger-en-co.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://cor4office-nl.blogspot.com/: true + https://cor4office.blogspot.com/: true + https://ger-en-co.blogspot.com/: true + https://www.blogger.com/profile/13875945109269396639: true + last_post_title: Naar huis + last_post_description: Goede thuisreis. Kijk met tevredenheid en dankbaarheid terug + :-)... + last_post_date: "2011-07-24T06:56:00Z" + last_post_link: https://ger-en-co.blogspot.com/2011/07/naar-huis.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 6f4e4d0e5e30fe9dc67ac539e8ab0a48 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-39ad6a34f7feb75b87f0c3f5abb52c10.md b/content/discover/feed-39ad6a34f7feb75b87f0c3f5abb52c10.md new file mode 100644 index 000000000..05efd76ee --- /dev/null +++ b/content/discover/feed-39ad6a34f7feb75b87f0c3f5abb52c10.md @@ -0,0 +1,45 @@ +--- +title: Comments for David Shanske +date: "1970-01-01T00:00:00Z" +description: The Definitive Location +params: + feedlink: https://david.shanske.com/comments/feed/ + feedtype: rss + feedid: 39ad6a34f7feb75b87f0c3f5abb52c10 + websites: + https://david.shanske.com/: true + https://david.shanske.com/author/dshanske/: false + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://david.shanske.com/: true + https://github.com/dshanske: true + https://profiles.wordpress.org/dshanske/: true + last_post_title: Comment by Ton Zijlstra + last_post_description: |- + In reply to a reply by David Shanske + No worries, David. I think we had some exchanges about it at the time (2021) in the + last_post_date: "2024-07-07T10:34:45-04:00" + last_post_link: https://www.zylstra.org/blog/2024/07/24858/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 222a25b46b70a9ceda7ff813bc540750 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-39b5c0617d2f8ef990aa8b859acbf70f.md b/content/discover/feed-39b5c0617d2f8ef990aa8b859acbf70f.md new file mode 100644 index 000000000..af38db21f --- /dev/null +++ b/content/discover/feed-39b5c0617d2f8ef990aa8b859acbf70f.md @@ -0,0 +1,145 @@ +--- +title: Typed Logic +date: "1970-01-01T00:00:00Z" +description: Incorporates strong typing over predicate logic programming, and, conversely, + incorporates predicate logic programming into strongly typed functional languages. The + style of predicate logic is from +params: + feedlink: https://logicaltypes.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 39b5c0617d2f8ef990aa8b859acbf70f + websites: + https://logicaltypes.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 1HaskellADay + - 1Liner + - AWS + - Data Structures + - Dependent Types + - Dylan + - GraphConnect2015 + - Gödel numbering + - HBase + - Hadoop + - Idris + - Kleisli arrows + - LogicalTypes + - WIP + - abstract nonsense + - arrow + - artificial intelligence + - atozchallenge + - bayesian classifiers + - big data + - business + - case study + - category theory + - clark kent + - cloud + - combinatory logic + - comonad + - conference + - continuations + - design patterns + - difference lists + - education + - efficiency + - either + - exercise + - family + - football + - fuzzy + - graph theory + - haskell + - housekeeping + - inquiry + - install + - introduction + - intuitionistic logic + - java + - knowledge + - knowledge engineering + - learning + - libraries + - license + - mathematics + - maybe + - meetup + - memoization + - mission statement + - monad + - monad transformers + - monadplus + - money + - monoid + - news + - nondeterminism + - on-the-job + - operations + - outliers + - parsing + - pensées + - philosophy + - physics + - poem + - problem-solving + - prolog + - proof + - reading list + - rule-based programming + - superman + - survey + - syntax + - testing + - the 'real world' + - the crazy ones + - theory + - tuple + - unification + - wisdom + - work + - κ-calculus + relme: + https://dauclair.blogspot.com/: true + https://halo-legendz.blogspot.com/: true + https://logicaltypes.blogspot.com/: true + https://odst-geophf.blogspot.com/: true + https://twilight-dad.blogspot.com/: true + https://www.blogger.com/profile/09936874508556500234: true + last_post_title: November, 2021 1HaskellADay 1Liners + last_post_description: |- + 2021-11-09: You have: \k _v -> f k Curry away the arguments. + 2021-11-09: Hello, all. It's been a minute. + + Here's a #1Liner #Haskell problem + + You have m :: Map a b + + You want to filter it by s :: Set + last_post_date: "2021-11-09T22:57:00Z" + last_post_link: https://logicaltypes.blogspot.com/2021/11/november-2021-1haskelladay-1liners.html + last_post_categories: + - 1HaskellADay + - 1Liner + last_post_language: "" + last_post_guid: 4ab9d61313a821129e67967ea79de4cb + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-39ccd0add9497043428298c726a67a17.md b/content/discover/feed-39ccd0add9497043428298c726a67a17.md deleted file mode 100644 index 1633351b0..000000000 --- a/content/discover/feed-39ccd0add9497043428298c726a67a17.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Comments for Groveronline -date: "1970-01-01T00:00:00Z" -description: A Grover. Online. Saying stuff. -params: - feedlink: https://groveronline.com/comments/feed/ - feedtype: rss - feedid: 39ccd0add9497043428298c726a67a17 - websites: - https://groveronline.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on MinGW cross-compilation adventure. by anon - last_post_description: The Xen GPLPV repo link is dead - last_post_date: "2022-07-28T08:32:10Z" - last_post_link: https://groveronline.com/2008/07/21/mingw-cross-compilation-adventure/comment-page-1/#comment-114 - last_post_categories: [] - last_post_guid: 25c84d6a78bb98684cdd1f01bbacf4cc - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-39e9df5cbec091b87eb14ef764dc012b.md b/content/discover/feed-39e9df5cbec091b87eb14ef764dc012b.md new file mode 100644 index 000000000..3d2a344a7 --- /dev/null +++ b/content/discover/feed-39e9df5cbec091b87eb14ef764dc012b.md @@ -0,0 +1,636 @@ +--- +title: LibreOffice i Danmark - Nyheder +date: "1970-01-01T00:00:00Z" +description: Her kan du læse artikler fra LibreOffice i Danmarks månedlige nyhedsbrev. + Du kan tilmelde dig nyhedsbrevet ved at sende en mail til nyhedsbrev+subscribe@da.libreoffice.org +params: + feedlink: https://libreofficedk.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 39e9df5cbec091b87eb14ef764dc012b + websites: + https://libreofficedk.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - "2" + - "2014" + - "2016" + - "2018" + - "4.1" + - "4.2" + - "4.3" + - 4.3.7 + - "4.4" + - 4.4.2 + - "5.0" + - "5.1" + - 5.1.1 + - 5.1.4 + - "5.2" + - "5.3" + - 5.3. + - "5.4" + - "6" + - "6.0" + - 6.0.3 + - "6.1" + - "6.2" + - "6.3" + - "6.4" + - "7.0" + - AD + - AMD + - Aarhus + - Aarhus Kommune + - Access + - Access2base + - Active Directory + - Administration + - Adobe Reader + - Adresse + - Advarsel + - Advisory board + - Albanien + - Alfresco + - Amazon + - Android + - Android LibreOffice Viewer + - Apache Foundation + - Apache Open Office + - Athen + - Autoformat + - Back up + - Barcelona + - Base + - Belgien + - Bern + - Betinget tekst + - Biblioteker + - Bitnami + - BorgerPC + - Bossie Award + - Brasilien + - Brevfletning + - Brno + - Bruxelles + - Bug fix + - Bug hunting session + - Bugfix + - Bulgarien + - CERN + - CHOOSE + - CMIS + - CODE + - CSV + - Calc + - Calc.makro + - Catalonien + - Certificering The Document Foundation + - Ciudad Real + - Clac + - Collabora + - Community + - Coverity + - DO + - DOCX + - DTP + - DanID + - Danmark + - Dansk + - Dansk Sprognævn + - De Grønne + - Deleøkonomi + - Design + - Designing with LibreOffice + - Detektiv + - Document Liberation Project + - Dokumentation + - Draw + - EU + - Emoji + - En måned for LibreOffice + - England + - Estland + - Etiketter + - Europa + - Europa Kommissionen + - Europa Parlamentet + - Europaparlamentet + - Excel + - FAIR + - FAQ + - FILTERXML + - FOR + - FOURIER + - Facebook + - Finland + - Firebird + - Flettebrev + - Fodnoter + - Folketinget + - Fontaine + - Fontwork + - Foreningen Dansk LibreOffice konference 2015 + - Formelredigering + - Formler + - Frankrig + - Free software + - Fri software + - Frigive + - Friprog + - Full Circle Magazine + - Funktionsguide + - Fællesskabet + - Fødselsdag + - GDPR + - GNOME + - GSOD Season of Docs + - GSoC + - GUI + - Galleri + - Genova + - Google + - Google Docs + - Google Drev + - Google Summer of Code + - Grenoble + - Grunddata + - Grækenland + - Grønland + - Guides + - HSQLDB + - HTML5 + - Hamborg + - Helsinki + - Holland + - Hosting + - Hunspell + - Hybrid + - IF + - IIF + - ISO + - Impress + - Indien + - Indlejre + - Indstillinger + - InputBox + - Intel + - Internationalt + - Ipad + - Iphone + - Irland + - Italien + - Job + - Jubilæum + - Kage + - Kalender + - Kommandolinje + - Kommentar + - Kommentarer + - Kommunalvalg + - Konference + - Konference 2014 + - Konference 2015 + - Konference 2016 + - Kopano + - Københavns Kommune + - LOOL + - LanguageTool + - Leipzig + - LiMUX + - Libre + - LibreItalia + - LibreOffice + - LibreOffice 4.1 + - LibreOffice 4.2 + - LibreOffice 4.3 + - LibreOffice 4.4 + - LibreOffice 5.0 + - LibreOffice 5.1 + - LibreOffice 5.2 + - LibreOffice 5.3 + - LibreOffice 5.4 + - LibreOffice 6.0 + - LibreOffice 6.1 + - LibreOffice 6.2 + - LibreOffice 6.3 + - LibreOffice 6.4 + - LibreOffice 7 + - LibreOffice Android + - LibreOffice Calc + - LibreOffice Writer + - LibreOffice certificering + - LibreOffice hjælp + - LibreOffice iOS + - LibreOffice konference + - LibreOffice online + - LibreOffice til Android + - LibreOffice4Android + - Limerick + - Linux + - Litauen + - Litteraturdatabase + - Litteraturliste + - Lorem ipsum + - Lotus 1-2-3 + - Lotus Symphony + - MIT + - MUFFIN + - Mac + - Maskering + - Membership Committee + - Mest læste + - Microsoft Office + - Milano + - MsgBox + - My User Friendly & Flexible INterface + - München + - Nancy + - Nantes + - Navigator + - Navigatoren + - Neerijnen + - NemID + - New Zealand + - NextCloud + - Norge + - Notebook + - Nye funktioner + - Nyt + - Nytår + - OASIS + - ODF + - OGP + - OOXML + - OOXML Strict + - OSX + - Office + - OnfoWorld + - Online redigering + - Opdele + - Open Document Format + - Open Government Partnership + - Open Office + - Open source + - Open365 + - OpenOffice.org + - OpenSourceDays + - OpenType Font + - Oversættelse + - PDF + - PDF-formular + - PDF/UA + - Paginering + - Paletter + - Panel + - Performance + - Persondata + - PlantUML + - Politi + - Pootle + - Portugal + - Powerpoint + - Print + - Problemløser + - ProjectLibre + - Projektplanlægning + - Publisher + - Pydio + - Python + - Q&A + - QR + - QR-kode + - Quattro Pro + - Regulære udtryk + - Release + - Retskrivningsordbogen + - Rhône-Alpes + - Rom + - SELECT + - Samle + - Schweiz + - Scribus + - Seafile + - Self publishing + - Sidetal + - Sjældent brugt + - Skoler + - Skyen + - Solver + - SourceForge + - Spanien + - Specialtegn + - Sporing + - Sprogværktøjer + - Starcenter + - Status + - Stavekontrol + - Stavekontrolden + - Storbritannien + - Store dokumenter + - Studerende + - Sverige + - Sårbarhed + - Sønderborg + - Sønderjylland + - TDF + - Tabeltypografi + - Tag del i arbejdet + - Talinn + - Tekstboks + - The Document Foundation + - Thunderbird + - Tidsregistrering + - Tilpas + - Tips + - Tirana + - Titelside + - Toulouse + - Tyrkiet + - Tyskland + - UML + - UNO + - USA + - Ubuntu + - Udskriv + - Uganda + - Ugenummer + - Umeå + - Ungarn + - Universitet + - Valencia + - Vejledninger + - Verdens bedste nyheder + - Visio + - WEBSERVICE + - WebODF + - Wien + - Wiki + - Wilhelm Tux + - Windows + - Windows XP + - Word + - Writer + - XML + - XP + - akkorder + - arkivet + - array + - automatisk maskering + - autotekst + - avanceret + - baggrund + - bash + - basic + - batch + - beregninger + - beskæftigelse + - bestyrelse + - beta + - betinget formatering + - bidrag + - billeder + - browser + - brugergrænseflade + - brugerindvolvering + - brugerordbog + - brugerprofil + - brugervenlig + - budgetforlig + - bug hunting + - bugs + - børn + - celler + - certificering + - clipart + - cloud + - creative commons + - database + - dato + - dekoration + - deltag + - den offentlige sektor + - diagram + - dialog + - dialoger + - digital signatur + - dokument + - dokumenter + - download + - drøm + - e-bøger + - e-læring + - e-mail + - eksperimentel + - eksport + - eksport filter + - epub + - extension + - faktura + - farver + - fejl + - fejlhåndtering + - fejlrettelse + - felt + - felter + - figur + - filer + - filnavn + - filtre + - finansiering + - fjernkontrol + - flette celler + - fonte + - forbruger + - foredrag + - format + - formatering + - formular + - formularer + - formularfelter + - forum + - forum.liboforum.dk + - fremhæv værdier + - frihed + - funktioner + - fællesskab + - genveje + - genvejstaster + - grammatik + - grammatikkontrol + - historie + - hjælp + - højreklik-menu + - iOS + - ikon + - ikoner + - implementering + - import + - import filter + - indkøb + - installation + - integration + - interoperabilitet + - interview + - it-strategi + - kant + - kapitæler + - klassificering + - kommuner + - kompleks tekst + - konkurrence + - konvertering + - kurve + - kvalitet + - kæder + - køb dansk + - layout + - liboforum.dk + - licenser + - ligatur + - linje + - lyd + - lydeffekt + - makro + - medlem + - mellemrum. tips + - migrering + - mobil + - multiplikatoreffekten + - musik + - noder + - nummerering + - nyheder + - nyhedsbrev + - offentlig + - opdater + - open government + - openSUSE + - openStreetMap + - openclipart + - opgradering + - ordbog + - overskrifter + - ownCloud + - parameter + - patent + - pc + - pimp + - pivotdiagram + - pivottabel + - politik + - portræt + - postlister + - ppt + - pptx + - privatliv + - profil + - programkontrol + - programmering + - præsentationer + - rammer + - ransomware + - regeringer + - regex + - regneark + - regnskab + - release candidate + - risiko + - rollApp + - samarbejde + - samfundsøkonomi + - sammenligning + - sidepanel + - sidetypografi + - sikker tilstand + - sikkerhed + - skabelon + - skole + - skole-IT + - skriftstørrelse + - skrifttyper + - sludretekst + - sponsor + - standerskabelon + - statistik + - stavefejl + - streg + - subrutiner + - svg + - søgning + - tabel + - tastatur + - tegneobjekter + - tegning + - teknisk + - tekst + - tekstbehandling + - tekstramme + - tema + - test + - tilgængelighed + - transponere + - typografi + - udbud + - uddannelse + - udseende + - udveksling + - udvidelse + - udvikling + - underskrift + - underskriftslinje + - undervisning + - unicode + - uǝpısbɐq + - valg + - validering + - version + - version 4.2 + - version 4.4 + - video + - virus + - vækst + - værktøjslinjer + - xls + - xlsx + - Åbne data + - Årsrapport + - Ændringshåndtering + - Østrig + - åbenhed + - åbne standarder + - økonomi + - økosystem + relme: + https://libreofficedk.blogspot.com/: true + https://lodahl.blogspot.com/: true + https://www.blogger.com/profile/08960229448622236930: true + last_post_title: 'Fra arkivet: Statistik' + last_post_description: |- + Denne artikel var at læse i nyhedsbrevet 1. marts 2010: + + Ifølge en markedsanalyse foretaget af firmaet Webmasterpro indtager OpenOffice.org 14% af det danske marked for kontorsoftware. Analysen er + last_post_date: "2020-03-02T11:00:00Z" + last_post_link: https://libreofficedk.blogspot.com/2020/03/fra-arkivet-statistik.html + last_post_categories: + - arkivet + last_post_language: "" + last_post_guid: c5015d97234d1eee4fc43b14fb9d370e + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-39f7a1f0d3bd4ba064c6e885275a82f1.md b/content/discover/feed-39f7a1f0d3bd4ba064c6e885275a82f1.md deleted file mode 100644 index 6a25e13e4..000000000 --- a/content/discover/feed-39f7a1f0d3bd4ba064c6e885275a82f1.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: claudia -date: "1970-01-01T00:00:00Z" -description: Public posts from @claudia@vivaldi.net -params: - feedlink: https://social.vivaldi.net/@claudia.rss - feedtype: rss - feedid: 39f7a1f0d3bd4ba064c6e885275a82f1 - websites: - https://social.vivaldi.net/@claudia: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://vivaldi.com/team/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-39fd2f9eca4b192e680523d090d81fdd.md b/content/discover/feed-39fd2f9eca4b192e680523d090d81fdd.md new file mode 100644 index 000000000..82112a728 --- /dev/null +++ b/content/discover/feed-39fd2f9eca4b192e680523d090d81fdd.md @@ -0,0 +1,41 @@ +--- +title: Comments for briankardell +date: "1970-01-01T00:00:00Z" +description: Betterifying the web +params: + feedlink: https://briankardell.wordpress.com/comments/feed/ + feedtype: rss + feedid: 39fd2f9eca4b192e680523d090d81fdd + websites: + https://briankardell.wordpress.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://briankardell.wordpress.com/: true + last_post_title: 'Comment on A Brief(ish) History of the Web Universe – Part I: + The Pre-Web by Sakinatou' + last_post_description: Hi nicee reading your blog + last_post_date: "2024-05-17T00:25:52Z" + last_post_link: https://briankardell.wordpress.com/2015/11/22/a-briefish-history-of-the-web-universe-part-i-the-pre-web/comment-page-1/#comment-3560 + last_post_categories: [] + last_post_language: "" + last_post_guid: 08cdbdd85c034c987ff72125f965e163 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-39fef0e4553fda0dae8b9f221f376da0.md b/content/discover/feed-39fef0e4553fda0dae8b9f221f376da0.md deleted file mode 100644 index 8ca883a15..000000000 --- a/content/discover/feed-39fef0e4553fda0dae8b9f221f376da0.md +++ /dev/null @@ -1,91 +0,0 @@ ---- -title: Heisenbugs of a Heisenlife -date: "2024-02-19T07:36:34-08:00" -description: Ramblings of an uncertain being -params: - feedlink: https://heisenbugs.blogspot.com/feeds/posts/default/-/FreeDesktop - feedtype: atom - feedid: 39fef0e4553fda0dae8b9f221f376da0 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - GStreamer - - FreeDesktop - - Linux - - Collabora - - Life - - Quotes - - Tips - - FOSS - - MPlayer - - Multimedia - - OLPC - - Programming - - Talks - - gnome - - ATSC - - Android - - Concepcion - - DTV - - Development - - E100 - - Einstein - - Expolibre - - FFmpeg - - Family - - Fun - - GStramer - - Gadgets - - Gingerbread - - Honeycomb - - Howto - - Iriver - - Kernel - - Mathematics - - NDK - - Subtitles - - Talca - - Talcahuano - - Video - - Wayland - - XO - - XSUB - - academic - - bluetooth - - diagrams - - entity relationship - - equalizer - - er - - fifa worldcup 2010 - - gtard - - latex - - retard - - tricks - - vuvuzela - relme: {} - last_post_title: 'Short tutorial: Digital Television with GStreamer (ATSC setup)' - last_post_description: "" - last_post_date: "2021-05-20T18:36:49-07:00" - last_post_link: https://heisenbugs.blogspot.com/2021/05/short-tutorial-digital-television-with.html - last_post_categories: - - ATSC - - DTV - - FreeDesktop - - gnome - - GStreamer - last_post_guid: a4566c860509e24511a95aa7a75b5d94 - score_criteria: - cats: 5 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 14 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3a4df8f50196569ea28c2958254fd52a.md b/content/discover/feed-3a4df8f50196569ea28c2958254fd52a.md new file mode 100644 index 000000000..bbf83ec7a --- /dev/null +++ b/content/discover/feed-3a4df8f50196569ea28c2958254fd52a.md @@ -0,0 +1,40 @@ +--- +title: Comentários sobre Rodrigo Amaral +date: "1970-01-01T00:00:00Z" +description: Desenvolvimento de software, produtividade pessoal e o mundo ao redor +params: + feedlink: https://ramaral.wordpress.com/comments/feed/ + feedtype: rss + feedid: 3a4df8f50196569ea28c2958254fd52a + websites: + https://ramaral.wordpress.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://ramaral.wordpress.com/: true + last_post_title: Comentário sobre A Byte of Python por Wesley Aguiar + last_post_description: MUITO OBRIGADO MEU AMIGO! + last_post_date: "2020-06-20T00:26:24Z" + last_post_link: https://ramaral.wordpress.com/a-byte-of-python/#comment-17492 + last_post_categories: [] + last_post_language: "" + last_post_guid: bc3dced25072d6c1a7651093be604a29 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3a54e4e36d3d9b76a5544e147035bc2a.md b/content/discover/feed-3a54e4e36d3d9b76a5544e147035bc2a.md deleted file mode 100644 index 1086b2209..000000000 --- a/content/discover/feed-3a54e4e36d3d9b76a5544e147035bc2a.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Ruminate Podcast -date: "1970-01-01T00:00:00Z" -description: Public posts from @ruminate@macstories.net -params: - feedlink: https://mastodon.macstories.net/@ruminate.rss - feedtype: rss - feedid: 3a54e4e36d3d9b76a5544e147035bc2a - websites: - https://mastodon.macstories.net/@ruminate: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://mastodon.macstories.net/@johnvoorhees: false - https://ruminatepodcast.com/: true - https://social.lol/@robb: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3a89b7f1bc3c7e5e13f458970a1ac25f.md b/content/discover/feed-3a89b7f1bc3c7e5e13f458970a1ac25f.md new file mode 100644 index 000000000..49fd1ea08 --- /dev/null +++ b/content/discover/feed-3a89b7f1bc3c7e5e13f458970a1ac25f.md @@ -0,0 +1,46 @@ +--- +title: Comments for +date: "1970-01-01T00:00:00Z" +description: Free Software, Civil Liberties, Copyright, Pirates and other stuff +params: + feedlink: https://blog.grobox.de/comments/feed/ + feedtype: rss + feedid: 3a89b7f1bc3c7e5e13f458970a1ac25f + websites: + https://blog.grobox.de/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://blog.grobox.de/: true + https://chaos.social/@grote: true + https://github.com/grote: true + https://gitlab.com/grote: true + last_post_title: Comment on Building Briar Reproducible And Why It Matters by Trust, + Privacy, and Free Software | F-Droid - Reputable App + last_post_description: '[…] in F-Droid for any app developer to deliver absolutely + reliable binaries to their end users. Briar, and Bitcoin Wallet ended up the initial + to satisfy all standards, now that they are' + last_post_date: "2019-09-25T12:56:42Z" + last_post_link: https://blog.grobox.de/2018/building-briar-reproducible-and-why-it-matters/#comment-314 + last_post_categories: [] + last_post_language: "" + last_post_guid: f70add55d990fbda7b6df3fdacf2ba25 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3a8aa98ed927e6382fc1c96a92d2a937.md b/content/discover/feed-3a8aa98ed927e6382fc1c96a92d2a937.md index ff231fb1e..4e64b81c6 100644 --- a/content/discover/feed-3a8aa98ed927e6382fc1c96a92d2a937.md +++ b/content/discover/feed-3a8aa98ed927e6382fc1c96a92d2a937.md @@ -7,36 +7,39 @@ params: feedtype: rss feedid: 3a8aa98ed927e6382fc1c96a92d2a937 websites: - https://aows.co/blog: false https://aows.co/blog/: true blogrolls: [] recommended: [] recommender: - - https://www.manton.org/feed - https://www.manton.org/feed.xml - https://www.manton.org/podcast.xml categories: - - photographs + - journal relme: {} - last_post_title: Tree of Mt Tam - last_post_description: |- - California, February 2024. - From the video Making art inevitable. - last_post_date: "2024-06-03T19:00:00Z" - last_post_link: https://aows.co/blog/2024/6/3/tree-of-mt-tam + last_post_title: How to develop your photographic taste + last_post_description: In order to make great photographs, we need to know what + makes them great in the first place. Developing a photographic taste is crucial, + both internal (our own taste) and external (the objective + last_post_date: "2024-07-08T22:01:57Z" + last_post_link: https://aows.co/blog/2024/7/9/how-to-develop-your-photographic-taste last_post_categories: - - photographs - last_post_guid: ba4e92ea4f63fbc1059d8ef2928b1fea + - journal + last_post_language: "" + last_post_guid: 086a9c3cde715a03390ee4b1950bcf83 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 14 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-3a8fd9ab4b8a1499f5a7f3f36ea3a28e.md b/content/discover/feed-3a8fd9ab4b8a1499f5a7f3f36ea3a28e.md new file mode 100644 index 000000000..560eb1349 --- /dev/null +++ b/content/discover/feed-3a8fd9ab4b8a1499f5a7f3f36ea3a28e.md @@ -0,0 +1,41 @@ +--- +title: Lambda Sandwich +date: "2024-03-13T05:57:05-07:00" +description: Cabal development for Google Summer of Code +params: + feedlink: https://lambdasandwich.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 3a8fd9ab4b8a1499f5a7f3f36ea3a28e + websites: + https://lambdasandwich.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://lambdasandwich.blogspot.com/: true + https://www.blogger.com/profile/14119411646979915342: true + last_post_title: Ending GSoC + last_post_description: "" + last_post_date: "2011-08-18T11:27:42-07:00" + last_post_link: https://lambdasandwich.blogspot.com/2011/08/ending-gsoc.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 4508687a851d25e183ca137d48464991 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3aa72bf9eb7a7e1f3ddb8462f4c11b01.md b/content/discover/feed-3aa72bf9eb7a7e1f3ddb8462f4c11b01.md new file mode 100644 index 000000000..e1bfa114e --- /dev/null +++ b/content/discover/feed-3aa72bf9eb7a7e1f3ddb8462f4c11b01.md @@ -0,0 +1,40 @@ +--- +title: Zettelkasten.de +date: "2024-06-26T06:10:00Z" +description: "" +params: + feedlink: https://zettelkasten.de/feed.atom + feedtype: atom + feedid: 3aa72bf9eb7a7e1f3ddb8462f4c11b01 + websites: + https://zettelkasten.de/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://zettelkasten.de/: true + last_post_title: 'The Zettelkasten in Action: My Book on Habit' + last_post_description: "" + last_post_date: "2024-06-26T06:10:00Z" + last_post_link: https://zettelkasten.de/posts/zettelkasten-in-action-book-on-habit/ + last_post_categories: [] + last_post_language: "" + last_post_guid: a8e8035cc0a0b8020aa531fe271289e6 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3aaeedcc252e8c8089edf162462317f1.md b/content/discover/feed-3aaeedcc252e8c8089edf162462317f1.md index 9e95942c8..c1adc30f2 100644 --- a/content/discover/feed-3aaeedcc252e8c8089edf162462317f1.md +++ b/content/discover/feed-3aaeedcc252e8c8089edf162462317f1.md @@ -13,7 +13,7 @@ params: recommender: [] categories: [] relme: - https://mstdn.media/@Jbat: false + https://battellemedia.com/: true last_post_title: Comment on Google’s On The Field Now. Is It Being Too Cautious? by John Battelle's Search Blog Ads, Ads Everywhere last_post_description: '[…] make money – and a lot of it – from doing so. And despite @@ -22,17 +22,22 @@ params: last_post_date: "2024-05-28T13:58:55Z" last_post_link: https://battellemedia.com/archives/2024/02/googles-on-the-field-now-is-it-being-too-cautious/comment-page-1#comment-150988 last_post_categories: [] + last_post_language: "" last_post_guid: 28615710d62bd230d3da428c234b56f6 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 9 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-3ac1740c490c9b8f491fd9dfd70acdb9.md b/content/discover/feed-3ac1740c490c9b8f491fd9dfd70acdb9.md deleted file mode 100644 index 143ffd39d..000000000 --- a/content/discover/feed-3ac1740c490c9b8f491fd9dfd70acdb9.md +++ /dev/null @@ -1,54 +0,0 @@ ---- -title: Galera Cluster for MySQLBlog – Galera Cluster for MySQL -date: "1970-01-01T00:00:00Z" -description: The world's most advanced open-source database cluster. -params: - feedlink: https://galeracluster.com/category/blog/feed/ - feedtype: rss - feedid: 3ac1740c490c9b8f491fd9dfd70acdb9 - websites: - https://galeracluster.com/category/blog/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Blog - - Planet OpenStack - - disaster recovery - - Galera Cluster for MariaDB - - Galera Cluster for MyQL - - Galera Cluster for MySQL - - Multi-master MySQL - - MySQL high availability - - Oracle Linux - relme: {} - last_post_title: Galera Cluster works on Oracle Linux - last_post_description: 'We recently had a customer request to run Galera Cluster - on Oracle Linux. We are pleased to tell you that you can use the Red Hat Enterprise - Linux 8 or Red Hat Enterprise Linux 9 repositories: for' - last_post_date: "2024-06-18T07:43:06Z" - last_post_link: https://galeracluster.com/2024/06/galera-cluster-works-on-oracle-linux/ - last_post_categories: - - Blog - - Planet OpenStack - - disaster recovery - - Galera Cluster for MariaDB - - Galera Cluster for MyQL - - Galera Cluster for MySQL - - Multi-master MySQL - - MySQL high availability - - Oracle Linux - last_post_guid: 42ece8fc96edc9e75b1ac883187b2a05 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3ac6ac83d1b44027b98144cdb85443c1.md b/content/discover/feed-3ac6ac83d1b44027b98144cdb85443c1.md deleted file mode 100644 index e1ab38632..000000000 --- a/content/discover/feed-3ac6ac83d1b44027b98144cdb85443c1.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Home on Rakhim.org -date: "1970-01-01T00:00:00Z" -description: Recent content in Home on Rakhim.org -params: - feedlink: https://rakhim.org/index.xml - feedtype: rss - feedid: 3ac6ac83d1b44027b98144cdb85443c1 - websites: - https://rakhim.org/: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: [] - relme: {} - last_post_title: The Yearly Run (sci-fi short story) - last_post_description: “Pochards”, was the first word spoken today. Emil looked - up cautiously, keeping the corner of his eye on the road. Several dots on the - dark-blue morning sky, no clouds. He was never quite sure - last_post_date: "2020-11-09T00:00:00Z" - last_post_link: https://rakhim.org/the_yearly_run/ - last_post_categories: [] - last_post_guid: aa3f9b4a822a1a8b3d273f16029c3002 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3ad8d50134102e1796ff1b4bc275013e.md b/content/discover/feed-3ad8d50134102e1796ff1b4bc275013e.md new file mode 100644 index 000000000..8e42b76dc --- /dev/null +++ b/content/discover/feed-3ad8d50134102e1796ff1b4bc275013e.md @@ -0,0 +1,44 @@ +--- +title: Comments for ChrisLord.net +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://www.chrislord.net/comments/feed/ + feedtype: rss + feedid: 3ad8d50134102e1796ff1b4bc275013e + websites: + https://www.chrislord.net/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://mastodon.social/@Cwiiis: true + https://www.chrislord.net/: true + last_post_title: Comment on Web Navigation Transitions by Weird things engineers + believe about Web development - Brian Birtles’ Blog + last_post_description: '[…] we wanted to do at Mozilla for a while, particularly + during the Firefox OS days, and made a proposal to that end. Kudos to Jake and + others for finally making it […]' + last_post_date: "2024-01-12T13:06:44Z" + last_post_link: https://www.chrislord.net/2015/04/24/web-navigation-transitions/#comment-111889 + last_post_categories: [] + last_post_language: "" + last_post_guid: 36f58eebdefcc2b1a009d8fd8ca6959b + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3adb8ca36aaeea51d54823a79d9778f3.md b/content/discover/feed-3adb8ca36aaeea51d54823a79d9778f3.md new file mode 100644 index 000000000..698d5e74a --- /dev/null +++ b/content/discover/feed-3adb8ca36aaeea51d54823a79d9778f3.md @@ -0,0 +1,42 @@ +--- +title: Chris Samuel +date: "1970-01-01T00:00:00Z" +description: Just another WordPress.com weblog +params: + feedlink: https://csamuel.wordpress.com/feed/ + feedtype: rss + feedid: 3adb8ca36aaeea51d54823a79d9778f3 + websites: + https://csamuel.wordpress.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Uncategorized + relme: + https://csamuel.wordpress.com/: true + last_post_title: This is not the blog you are looking for.. + last_post_description: …this is the blog you are looking for 🙂 + last_post_date: "2006-02-09T10:46:22Z" + last_post_link: https://csamuel.wordpress.com/2006/02/09/this-is-not-the-blog-you-are-looking-for/ + last_post_categories: + - Uncategorized + last_post_language: "" + last_post_guid: d5db4f1bbd211b634dab582fa5e33a4d + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-3ae864781129f766b7bf4a1268ba5432.md b/content/discover/feed-3ae864781129f766b7bf4a1268ba5432.md deleted file mode 100644 index 830cbd016..000000000 --- a/content/discover/feed-3ae864781129f766b7bf4a1268ba5432.md +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: Quomodocumque -date: "1970-01-01T00:00:00Z" -description: Math, Madison, food, the Orioles, books, my kids. -params: - feedlink: https://quomodocumque.wordpress.com/feed/ - feedtype: rss - feedid: 3ae864781129f766b7bf4a1268ba5432 - websites: - https://quomodocumque.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - economics - - offhand - - travel - - bus - - money - - spain - relme: {} - last_post_title: Richness, bus travel - last_post_description: I was in a small seaside town in Spain and struck up a conversation - with a family. It developed that they’d rented a car and the dad had driven from - Barcelona, while I’d taken the bus. In my mind - last_post_date: "2024-06-24T10:02:13Z" - last_post_link: https://quomodocumque.wordpress.com/2024/06/24/richness-bus-travel/ - last_post_categories: - - economics - - offhand - - travel - - bus - - money - - spain - last_post_guid: 48f677cd3d0bd1d221650b0613ab9d87 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3af14a0f4fad08a5a59cd12923dba847.md b/content/discover/feed-3af14a0f4fad08a5a59cd12923dba847.md new file mode 100644 index 000000000..c878d3663 --- /dev/null +++ b/content/discover/feed-3af14a0f4fad08a5a59cd12923dba847.md @@ -0,0 +1,59 @@ +--- +title: Tao of Mac +date: "2024-07-07T19:00:00Z" +description: Keeping Things Simple +params: + feedlink: https://taoofmac.com/atom.xml + feedtype: atom + feedid: 3af14a0f4fad08a5a59cd12923dba847 + websites: + https://taoofmac.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - books + - fiscal + - fy25 + - layoffs + - mood + - reorg + - rust + - work + relme: + https://carmo.io/: true + https://github.com/rcarmo: true + https://mastodon.social/@rcarmo: true + https://taoofmac.com/: true + last_post_title: Notes for July 1-7 + last_post_description: "" + last_post_date: "2024-07-07T19:00:00Z" + last_post_link: https://taoofmac.com/space/notes/2024/07/07/2000 + last_post_categories: + - books + - fiscal + - fy25 + - layoffs + - mood + - reorg + - rust + - work + last_post_language: "" + last_post_guid: 0a0f37e44021f19b31ce34691416b9f7 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3b0412b216be02e9d2c415128de461fe.md b/content/discover/feed-3b0412b216be02e9d2c415128de461fe.md new file mode 100644 index 000000000..5933bbbae --- /dev/null +++ b/content/discover/feed-3b0412b216be02e9d2c415128de461fe.md @@ -0,0 +1,43 @@ +--- +title: Eclipse from the bottom up +date: "1970-01-01T00:00:00Z" +description: The view of the Eclipse world from the bottom of the stack +params: + feedlink: https://eclipselowdown.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 3b0412b216be02e9d2c415128de461fe + websites: + https://eclipselowdown.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://eclipselowdown.blogspot.com/: true + https://www.blogger.com/profile/06492420263178417384: true + last_post_title: 'Compare Merge Viewer Example: Merging Word Documents' + last_post_description: I just finished writing up a Wiki article describing how + to implement a custom (i.e. non-text based) compare merge viewer. The example + I used was a Word document comparison. Hopefully I'll be able to + last_post_date: "2008-06-13T15:00:00Z" + last_post_link: https://eclipselowdown.blogspot.com/2008/06/compare-merge-viewer-example-merging.html + last_post_categories: [] + last_post_language: "" + last_post_guid: da5d5ec78982779f56856cd13b84c9b8 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3b0bfe83583247854308113b2d043766.md b/content/discover/feed-3b0bfe83583247854308113b2d043766.md new file mode 100644 index 000000000..a52046477 --- /dev/null +++ b/content/discover/feed-3b0bfe83583247854308113b2d043766.md @@ -0,0 +1,45 @@ +--- +title: Em Defesa do Comunismo +date: "1970-01-01T00:00:00Z" +description: Um veículo marxista-leninista brasileiro, dedicado à reconstrução revolucionária + do movimento comunista internacional. +params: + feedlink: https://emdefesadocomunismo.com.br/rss/ + feedtype: rss + feedid: 3b0bfe83583247854308113b2d043766 + websites: + https://emdefesadocomunismo.com.br/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Resistência Palestina + relme: + https://emdefesadocomunismo.com.br/: true + last_post_title: 'Atualização sobre a Tempestade Al-Aqsa: dia 275' + last_post_description: A Resistência Palestina relembra hoje o 52º aniversário do + martírio do escritor e dirigente da Frente Popular pela Libertação da Palestina + (FPLP) e seu porta-voz, o camarada Ghassan Kanafani. + last_post_date: "2024-07-08T22:30:13Z" + last_post_link: https://emdefesadocomunismo.com.br/atualizacao-sobre-a-tempestade-al-aqsa-dia-275/ + last_post_categories: + - Resistência Palestina + last_post_language: "" + last_post_guid: a74a54894732db193e5a90487d4ba3db + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3b1bb18e67202dbb15253768570879b4.md b/content/discover/feed-3b1bb18e67202dbb15253768570879b4.md deleted file mode 100644 index 462f430f6..000000000 --- a/content/discover/feed-3b1bb18e67202dbb15253768570879b4.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: The Perl Foundation -date: "2024-06-27T17:46:51Z" -description: "" -params: - feedlink: https://news.perlfoundation.org/atom.xml - feedtype: atom - feedid: 3b1bb18e67202dbb15253768570879b4 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: TPRC 2024 Feedback Form - last_post_description: Please help us by filling out our brief TPRC feedback form - at https://forms.gle/DcUDX6JzWT72yXTY7 Couldn't make it this year? We still want - your feedback! - last_post_date: "2024-06-27T17:46:51Z" - last_post_link: https://news.perlfoundation.org/post/tprcfeedback2024 - last_post_categories: [] - last_post_guid: 63aa68630b88d8cb1bfe0d0db82a9a63 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 3 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3b29315994416bb298c3461ea9181184.md b/content/discover/feed-3b29315994416bb298c3461ea9181184.md deleted file mode 100644 index d37691c29..000000000 --- a/content/discover/feed-3b29315994416bb298c3461ea9181184.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Jan Boddez -date: "1970-01-01T00:00:00Z" -description: Public posts from @janboddez@indieweb.social -params: - feedlink: https://indieweb.social/@janboddez.rss - feedtype: rss - feedid: 3b29315994416bb298c3461ea9181184 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3b2a22f47f6d134f1fe36d0f46f0826c.md b/content/discover/feed-3b2a22f47f6d134f1fe36d0f46f0826c.md new file mode 100644 index 000000000..a614a4b53 --- /dev/null +++ b/content/discover/feed-3b2a22f47f6d134f1fe36d0f46f0826c.md @@ -0,0 +1,41 @@ +--- +title: Notes by JCProbably +date: "2024-07-09T03:23:57Z" +description: A photographer dedicated to discovering beauty in the ordinary. +params: + feedlink: https://notes.jeddacp.com/feed/ + feedtype: atom + feedid: 3b2a22f47f6d134f1fe36d0f46f0826c + websites: + https://notes.jeddacp.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://amerpie.lol/feed.xml + categories: [] + relme: {} + last_post_title: How I Edit My Photos + last_post_description: My over simplified way of post processing my photos aka how + I edit them + last_post_date: "2024-07-08T15:47:04Z" + last_post_link: https://notes.jeddacp.com/how-i-edit-my-photos/ + last_post_categories: [] + last_post_language: "" + last_post_guid: e203aed5e93486bc9e8efe6c38324f7f + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3b416add7c9c415f5baa4dea982cbb29.md b/content/discover/feed-3b416add7c9c415f5baa4dea982cbb29.md deleted file mode 100644 index 02c818d51..000000000 --- a/content/discover/feed-3b416add7c9c415f5baa4dea982cbb29.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: kottke.org -date: "1970-01-01T00:00:00Z" -description: Public posts from @kottke@mastodon.social -params: - feedlink: https://mastodon.social/@kottke.rss - feedtype: rss - feedid: 3b416add7c9c415f5baa4dea982cbb29 - websites: - https://mastodon.social/@kottke: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://kottke.org/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3b87d45ea34596f9898944b6c0d67809.md b/content/discover/feed-3b87d45ea34596f9898944b6c0d67809.md deleted file mode 100644 index cfcd2341b..000000000 --- a/content/discover/feed-3b87d45ea34596f9898944b6c0d67809.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: joeross.me -date: "1970-01-01T00:00:00Z" -description: Public posts from @joeross@vivaldi.net -params: - feedlink: https://social.vivaldi.net/@joeross.rss - feedtype: rss - feedid: 3b87d45ea34596f9898944b6c0d67809 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3b95675df697bc6c826698a553567ced.md b/content/discover/feed-3b95675df697bc6c826698a553567ced.md new file mode 100644 index 000000000..85e3ff6e6 --- /dev/null +++ b/content/discover/feed-3b95675df697bc6c826698a553567ced.md @@ -0,0 +1,43 @@ +--- +title: Worklog of Christian Tietze +date: "2024-07-04T06:33:17Z" +description: "" +params: + feedlink: https://christiantietze.de/feed.atom + feedtype: atom + feedid: 3b95675df697bc6c826698a553567ced + websites: + https://christiantietze.de/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://christiantietze.de/: true + https://mastodon.social/@ctietze: true + last_post_title: It’s Never Just a Something + last_post_description: 'Primitive Obsession is not called “Primitive Preference” + for a reason: we can find ourselves clinging to primitives like addicts, even + when every aspect of our project nudges us, hints, and' + last_post_date: "2024-07-04T06:33:17Z" + last_post_link: https://christiantietze.de/posts/2024/07/never-just-a-something/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 4b44a188095bebedee69858f0c384664 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3b957a1bd2826492ead8f670ac123fc5.md b/content/discover/feed-3b957a1bd2826492ead8f670ac123fc5.md index 55cd9c324..09f4a3af5 100644 --- a/content/discover/feed-3b957a1bd2826492ead8f670ac123fc5.md +++ b/content/discover/feed-3b957a1bd2826492ead8f670ac123fc5.md @@ -13,23 +13,31 @@ params: recommender: [] categories: [] relme: + https://advent-of-code.xavd.id/: true + https://david.reviews/: true https://mastodon.social/@xavdid: true - last_post_title: 'david.reviews: "Tomorrow, and Tomorrow, and Tomorrow"' + https://xavd.id/: true + last_post_title: 'david.reviews: "Locklands"' last_post_description: "" - last_post_date: "2024-04-24T00:00:00Z" - last_post_link: https://david.reviews/books/tomorrow-and-tomorrow-and-tomorrow/ + last_post_date: "2024-07-01T00:00:00Z" + last_post_link: https://david.reviews/books/locklands/ last_post_categories: [] - last_post_guid: 1ee43bc2d6bf68e08e73e0d2fb1a6b6f + last_post_language: "" + last_post_guid: 092ce02c93ab33d0bfa16042a1d5410c score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-3b9704d975f243d2bebb7ca8c33957f0.md b/content/discover/feed-3b9704d975f243d2bebb7ca8c33957f0.md index 92d97e60c..64e7e3b04 100644 --- a/content/discover/feed-3b9704d975f243d2bebb7ca8c33957f0.md +++ b/content/discover/feed-3b9704d975f243d2bebb7ca8c33957f0.md @@ -1,6 +1,6 @@ --- title: Wavelengths -date: "2024-06-03T15:46:53Z" +date: "2024-07-08T14:13:37Z" description: "" params: feedlink: https://wavelengths.online/posts_feed @@ -13,25 +13,44 @@ params: recommender: [] categories: [] relme: + https://appstories.net/: true + https://club.macstories.net/: true https://idlethumbs.social/@brendon: true - last_post_title: "\U0001F399 Introducing NPC: Next Portable Console" + https://mastodon.macstories.net/@alex: true + https://mastodon.macstories.net/@appstories: true + https://mastodon.macstories.net/@club: true + https://mastodon.macstories.net/@johnvoorhees: true + https://mastodon.macstories.net/@npc: true + https://mastodon.macstories.net/@silvia: true + https://mastodon.macstories.net/@viticci: true + https://unapologetic.io/: true + https://wavelengths.online/: true + https://www.macstories.net/: true + https://www.macstories.net/npc/: true + https://www.macstories.net/pixel/: true + last_post_title: Nothing’s New Phone Might Be the Best Handheld of 2024 last_post_description: |- - [We haven’t named this little smiley guy yet, any ideas?] - I’m so unbelievably excited to announce a new project I’ve been working on with the team at MacStories: Next Portable... - last_post_date: "2024-06-03T17:56:55Z" - last_post_link: https://wavelengths.online/posts/introducing-npc-next-portable-console + [Outside Intervention] + I’ve been spending my commute this morning reading about the new budget Android phone by Nothing, the CMF 1, which is getting a lot of press pickup because... + last_post_date: "2024-07-08T20:44:20Z" + last_post_link: https://wavelengths.online/posts/nothing-s-new-phone-might-be-the-best-handheld-of-2024 last_post_categories: [] - last_post_guid: 660996102415018dd79a2f8638756e20 + last_post_language: "" + last_post_guid: 95962ae851bf7c106524a7722f8a4cfa score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 7 + score: 11 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-3bd98d4bd276cbd6143bfb4424cfc98a.md b/content/discover/feed-3bd98d4bd276cbd6143bfb4424cfc98a.md index fc82f82f7..8c3051b18 100644 --- a/content/discover/feed-3bd98d4bd276cbd6143bfb4424cfc98a.md +++ b/content/discover/feed-3bd98d4bd276cbd6143bfb4424cfc98a.md @@ -12,32 +12,37 @@ params: blogrolls: [] recommended: [] recommender: - - https://jlelse.blog/.min.rss - - https://jlelse.blog/.rss - - https://jlelse.blog/index.xml + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php categories: - - miscellany + - development + - work relme: {} - last_post_title: Comedy series I've watched over and over (and over) - last_post_description: |- - I love a good comedy series. It's my comfort television. These are my favourites over the years. - 90s - We only had free-to-air TV at our house, so it was slim pickings from the four channels available - last_post_date: "2024-06-04T19:06:00Z" - last_post_link: https://rachsmith.com/comedy-series/ + last_post_title: Comfortable with the struggle + last_post_description: "Sometimes I get asked by newcomers how one can become a + developer like me - specifically, with a job and career like mine. \nI find this + sort of question impossible to answer. My personal situation is" + last_post_date: "2024-07-08T12:07:00Z" + last_post_link: https://rachsmith.com/comfortable-with-the-struggle/ last_post_categories: - - miscellany - last_post_guid: 522a295c836645825ecbab988029c7df + - development + - work + last_post_language: "" + last_post_guid: 2f98a48d48884b02c7360ba688a96f89 score_criteria: cats: 0 description: 3 - postcats: 1 + feedlangs: 0 + postcats: 2 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 12 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-3bde4c40056f76608f46867b15ca21c2.md b/content/discover/feed-3bde4c40056f76608f46867b15ca21c2.md new file mode 100644 index 000000000..2ac8a7a68 --- /dev/null +++ b/content/discover/feed-3bde4c40056f76608f46867b15ca21c2.md @@ -0,0 +1,41 @@ +--- +title: Sage GSoC +date: "2024-03-20T23:59:58-07:00" +description: "" +params: + feedlink: https://lina-kulakova.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 3bde4c40056f76608f46867b15ca21c2 + websites: + https://lina-kulakova.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://lina-kulakova.blogspot.com/: true + https://www.blogger.com/profile/14950730664292563552: true + last_post_title: Profiling + last_post_description: "" + last_post_date: "2012-08-06T13:28:00-07:00" + last_post_link: https://lina-kulakova.blogspot.com/2012/08/profiling.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 71fe44854be3d5711ba5d19ad3a30150 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3bf62133e5c8a5911a537269b3b473b4.md b/content/discover/feed-3bf62133e5c8a5911a537269b3b473b4.md deleted file mode 100644 index fce89127b..000000000 --- a/content/discover/feed-3bf62133e5c8a5911a537269b3b473b4.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: De quão pouco eu me lembro -date: "2024-02-20T17:21:17-08:00" -description: "" -params: - feedlink: https://dequaopoucoeumelembro.blogspot.com/feeds/posts/default - feedtype: atom - feedid: 3bf62133e5c8a5911a537269b3b473b4 - websites: - https://dequaopoucoeumelembro.blogspot.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://www.blogger.com/profile/13686446138092176062: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3bf8141eea48c24354e89ec65891ad2e.md b/content/discover/feed-3bf8141eea48c24354e89ec65891ad2e.md new file mode 100644 index 000000000..e51ccec2e --- /dev/null +++ b/content/discover/feed-3bf8141eea48c24354e89ec65891ad2e.md @@ -0,0 +1,41 @@ +--- +title: Adventures in Thoughtlessness +date: "2024-03-14T00:45:14-07:00" +description: "" +params: + feedlink: https://adventuresinthoughtlessness.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 3bf8141eea48c24354e89ec65891ad2e + websites: + https://adventuresinthoughtlessness.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://adventuresinthoughtlessness.blogspot.com/: true + https://www.blogger.com/profile/02597761690243211608: true + last_post_title: Moving on to "undefined" + last_post_description: "" + last_post_date: "2013-02-21T08:40:53-08:00" + last_post_link: https://adventuresinthoughtlessness.blogspot.com/2013/02/moving-on-to-undefined.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 1d2ebe562e41ac81adb1996adb3633c6 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3c019a7377cd3cd7eb668d0f8e1e7807.md b/content/discover/feed-3c019a7377cd3cd7eb668d0f8e1e7807.md deleted file mode 100644 index 4f10e5466..000000000 --- a/content/discover/feed-3c019a7377cd3cd7eb668d0f8e1e7807.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Coverage.py -date: "1970-01-01T00:00:00Z" -description: Public posts from @coveragepy@hachyderm.io -params: - feedlink: https://hachyderm.io/@coveragepy.rss - feedtype: rss - feedid: 3c019a7377cd3cd7eb668d0f8e1e7807 - websites: - https://hachyderm.io/@coveragepy: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/approved: true - https://coverage.readthedocs.io/en/latest/: true - https://github.com/nedbat/coveragepy: false - https://pypi.org/project/coverage/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3c221e0bb1099831f41da8c22f900ab7.md b/content/discover/feed-3c221e0bb1099831f41da8c22f900ab7.md deleted file mode 100644 index 8fc02f8df..000000000 --- a/content/discover/feed-3c221e0bb1099831f41da8c22f900ab7.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for I wanted lifshi.tz -date: "1970-01-01T00:00:00Z" -description: But Tanzania restricts their TLD -params: - feedlink: https://notartom.net/comments/feed/ - feedtype: rss - feedid: 3c221e0bb1099831f41da8c22f900ab7 - websites: - https://notartom.net/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Device tagging, new in Newton by Virtual device role - tagging, better explained – GREENSTACK - last_post_description: '[…] that Nova’s device role tagging feature talked about - in a previous blog post is getting some real world usage, I’m starting to realise - that it’s woefully under-documented […]' - last_post_date: "2017-06-21T07:45:53Z" - last_post_link: https://notartom.net/2016/09/28/device-tagging-new-in-newton/comment-page-1/#comment-2 - last_post_categories: [] - last_post_guid: df50dceddc760fafc1f832dff1c4153b - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3c2575305120c72f2d911a585969eb88.md b/content/discover/feed-3c2575305120c72f2d911a585969eb88.md deleted file mode 100644 index a9ab75e3e..000000000 --- a/content/discover/feed-3c2575305120c72f2d911a585969eb88.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Techno Delight -date: "1970-01-01T00:00:00Z" -description: Keep Learning and Sharing -params: - feedlink: https://shaifaliagrawal.wordpress.com/feed/ - feedtype: rss - feedid: 3c2575305120c72f2d911a585969eb88 - websites: - https://shaifaliagrawal.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - openstack - - '#openstack' - - OPW - relme: {} - last_post_title: Playing with QueueController - last_post_description: My current task is to shift QueueController from Data to - Control plane, at present it is in data plane[1] But I am stuck in between and - here putting the situation. flaper87, vkmc and I are thinking - last_post_date: "2015-02-02T16:19:42Z" - last_post_link: https://shaifaliagrawal.wordpress.com/2015/02/02/moving-queuecontroller-storage-configs-into-control-from-data-plane/ - last_post_categories: - - openstack - - '#openstack' - - OPW - last_post_guid: 15333c9f8dc4ce8e9723d15cfa2484fd - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3c2b2d35dcb258a2e9c341fd1e8f54c6.md b/content/discover/feed-3c2b2d35dcb258a2e9c341fd1e8f54c6.md new file mode 100644 index 000000000..c34bb4c3c --- /dev/null +++ b/content/discover/feed-3c2b2d35dcb258a2e9c341fd1e8f54c6.md @@ -0,0 +1,229 @@ +--- +title: Tales of the Lunar Lands +date: "2024-07-08T14:08:23-07:00" +description: Musings on Tabletop RPGs, Pop Culture, Perytons, and Other Nonsense +params: + feedlink: https://tales-of-the-lunar-lands.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 3c2b2d35dcb258a2e9c341fd1e8f54c6 + websites: + https://tales-of-the-lunar-lands.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 3e + - 5e + - Al-Riyah + - Alternate Bulette Challenge + - British Old School + - Camalos + - Christmas + - City-States + - Company of Boars' Heads + - Covered Path + - DM advice + - Dragon Quest + - Dragon Warriors + - Elementalism + - Empire of the Petal Throne + - Eostre + - Faerie + - Fate + - Flintstonism + - Freeport + - Freikantons + - Friday Encounter + - Games Workshop + - Gods of the Lunar Lands + - Golnir + - Green Ronin + - Gwennert + - Halloween + - Hell + - Highlands + - Hynden + - Keep on the Borderlands + - Kerne + - Kord + - Kvesland + - Land of the Dead + - Lescatie + - Levic Marches + - Lew Pulsipher + - Lunar Lands + - Lynnery + - Madoka Magica + - 'Magic: the Gathering' + - Marseah + - Meili + - Middle-Earth + - Midwinter + - Mimir + - Modern AGE + - Morthanos + - Nehalennia + - Nutcracker + - Nuwapians + - Old Faith + - Olmo + - Orctober + - Quel'Ahma + - Realms Beyond + - Reynard + - Seidra + - Solenna + - Sonderlund + - Swordbrothers + - Taldameer + - The Heavens + - The Lunar Lands Guide to Combat + - The Princess Bride + - Togarmah + - Tolkien + - Torvald + - Ukiah + - Ultraman + - Usalia + - Valossa + - Vardessy + - Voltan + - Warhammer + - West Marches + - Weyland + - White Dwarf + - World Beneath + - Year of the Gazetteer + - adventure design + - adventures + - alchemy + - anime + - antiquity + - art + - backgrounds + - bar brawls + - bard + - bulette + - challenge + - cleric + - combat + - cosmology + - curses + - demons + - dnd + - druid + - dungeons + - dwarves + - economics + - elementals + - encounters + - factions + - fantasy + - feudalism + - folklore + - gambling + - gaming history + - genasi + - genies + - goblins + - halflings + - hexcrawls + - historical + - holidays + - homebrew + - horror + - house rules + - images + - initiative + - inns + - inspiration + - interviews + - kaiju + - languages + - liches + - literature + - locations + - lore + - lotr + - magic + - magic items + - magical girls + - maps + - meaningless kvetching + - medieval + - merp + - meta + - miniatures + - minigames + - modules + - monk + - monsters + - movies + - mythology + - nostalgia + - npcs + - orcs + - organizations + - osr + - owlbear + - paladin + - perytons + - pop culture + - potions + - puzzles + - races + - rat men + - rituals + - roads + - rust monster + - sandbox + - settlements + - sorcerer + - spells + - tables + - terrain + - tokusatsu + - undead + - video games + - warlock + - weebery + - werewolves + - wfrp + - wilderness + - wizard + - worldbuilding + - wotc + relme: + https://tales-of-the-lunar-lands.blogspot.com/: true + last_post_title: 'Friday Encounter: To Catch a Pickpocket' + last_post_description: "" + last_post_date: "2024-07-05T16:53:50-07:00" + last_post_link: https://tales-of-the-lunar-lands.blogspot.com/2024/07/friday-encounter-to-catch-pickpocket.html + last_post_categories: + - 5e + - Friday Encounter + - Lunar Lands + - dnd + - encounters + - fantasy + - house rules + - settlements + last_post_language: "" + last_post_guid: ea5d7c86230399aaf4c52e5c8e469e8a + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3c3e682f312cab22458c328c20ebaeea.md b/content/discover/feed-3c3e682f312cab22458c328c20ebaeea.md new file mode 100644 index 000000000..be3205bb0 --- /dev/null +++ b/content/discover/feed-3c3e682f312cab22458c328c20ebaeea.md @@ -0,0 +1,111 @@ +--- +title: Audycja Molium - Myśli inspirowane literaturą. +date: "2024-03-13T14:57:37-07:00" +description: Rozwój duchowy, filozofia, metafizyka. Wrażenia z lektury, postacie autorów. + Zjawiska literackie oraz okołoksiążkowe ciekawostki. +params: + feedlink: https://moliumpodcast.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 3c3e682f312cab22458c328c20ebaeea + websites: + https://moliumpodcast.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - '"Rozmowy z Bogiem"' + - Android + - Andrzej Pilipiuk + - Anki + - Apple + - Arthur C. Clarke + - Barbara Erskine + - Booth Tarkington + - Brian Herbert + - Diuna + - Dolores Cannon + - Eckhart Tolle + - Frank Herbert + - Gentry Lee + - Hamilton Peter + - Henry David Thoreau + - Henry De Vere Stacpoole + - IT + - Irving Stone + - Isaac Asimov + - Joseph Murphy + - Kerstin Gier + - Kevin J. Anderson + - Kuki Gallmann + - Leander Kahney + - Marie Corelli + - Maurycy Maeterlinck + - Melchior Wańkowicz + - Michael A. Cremo + - Mingmei Yip + - Molium Snippets + - Neale Donald Walsch + - Neil Gaiman + - Pan Samochodzik + - Rama + - Richard L. Thompson + - Richard Stallman + - Robert Ludlum + - Robert Monroe + - Stephen King + - Stephen R Donaldson + - Steve Wozniak + - Tunele + - Virginia Woolf + - William Wharton + - Zbigniew Nienacki + - Złote Myśli + - biografie + - ciekawostki + - cykl waldenowski + - lektorzy audiobooków + - news + - podcast + - przemyślenia i refleksje + - rozwój duchowy + - s.f. + - tożsamość + - wrażenia z lektury + - wywiady + relme: + https://aboutthomasleigh.blogspot.com/: true + https://handynewsreader.blogspot.com/: true + https://jaktamjaponski.blogspot.com/: true + https://moliumpodcast.blogspot.com/: true + https://smartthemesfor.blogspot.com/: true + https://thomascafepodcast.blogspot.com/: true + https://thomasleighthemes.blogspot.com/: true + https://thomasleighuniverse.blogspot.com/: true + https://www.blogger.com/profile/01268074830941697525: true + https://zrodlokreacji.blogspot.com/: true + last_post_title: 'Molium #57 - Przeżyć, czy „przeczytać” życie?' + last_post_description: "" + last_post_date: "2020-03-21T20:54:37-07:00" + last_post_link: https://moliumpodcast.blogspot.com/2020/03/molium-57-przezyc-czy-przeczytac-zycie.html + last_post_categories: + - Złote Myśli + - podcast + last_post_language: "" + last_post_guid: 1534e4a1a63c5d39e7b76b4c2ba834de + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3c6bf7f4be7a388d75de0ebc40541cdd.md b/content/discover/feed-3c6bf7f4be7a388d75de0ebc40541cdd.md deleted file mode 100644 index 3db740463..000000000 --- a/content/discover/feed-3c6bf7f4be7a388d75de0ebc40541cdd.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for Co-op Digital Blog -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://digitalblog.coop.co.uk/comments/feed/ - feedtype: rss - feedid: 3c6bf7f4be7a388d75de0ebc40541cdd - websites: - https://digitalblog.coop.co.uk/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on How our accessibility champions are creating a ‘can - do’ culture  by Debbie Williams - last_post_description: It's great to see such a focus on digital accessibility - - we took a lot from the training provided by Rachel and Hannah to the Operation - Support Centre last month - last_post_date: "2024-03-05T11:37:37Z" - last_post_link: https://digitalblog.coop.co.uk/2024/03/05/how-our-accessibility-champions-are-creating-a-can-do-culture/comment-page-1/#comment-25060 - last_post_categories: [] - last_post_guid: f81dbfee0381b2193d10df399601b9bd - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3c7304cfebd3559f8e67592ea88336cb.md b/content/discover/feed-3c7304cfebd3559f8e67592ea88336cb.md new file mode 100644 index 000000000..5961db4fa --- /dev/null +++ b/content/discover/feed-3c7304cfebd3559f8e67592ea88336cb.md @@ -0,0 +1,54 @@ +--- +title: Things that amuse me +date: "2024-07-07T07:12:46+01:00" +description: "" +params: + feedlink: https://augustss.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 3c7304cfebd3559f8e67592ea88336cb + websites: + https://augustss.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - BASIC + - Benchmark + - Code generation + - Compilation + - DSL + - Dependent types + - Haskell + - LLVM + - Lambda calculus + - Modules + - OCaml + - overloading + relme: + https://augustss.blogspot.com/: true + https://www.blogger.com/profile/07327620522294658036: true + last_post_title: A commentary on 24 days of GHC extensions, part 3 + last_post_description: "" + last_post_date: "2014-12-20T11:57:03Z" + last_post_link: https://augustss.blogspot.com/2014/12/its-time-for-some-more-haskell-opinions.html + last_post_categories: + - Haskell + last_post_language: "" + last_post_guid: 83b2220604faf691262b7373dacca2b1 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3c75b1b471464b4cf98428594bd30018.md b/content/discover/feed-3c75b1b471464b4cf98428594bd30018.md index a0d9e26cb..0b8e99121 100644 --- a/content/discover/feed-3c75b1b471464b4cf98428594bd30018.md +++ b/content/discover/feed-3c75b1b471464b4cf98428594bd30018.md @@ -9,16 +9,14 @@ params: feedid: 3c75b1b471464b4cf98428594bd30018 websites: https://hub.fosstodon.org/: true - https://hub.fosstodon.org/code-of-conduct: false - https://hub.fosstodon.org/support: false - https://hub.fosstodon.org/support-us: false + https://hub.fosstodon.org/coc/: false + https://hub.fosstodon.org/support/: false blogrolls: [] recommended: [] recommender: [] categories: [] relme: - https://fosstodon.org/@kev: false - https://fosstodon.org/@mike: false + https://hub.fosstodon.org/: true https://mastodon.social/@fosstodon: true last_post_title: Introducing Supporter Tags last_post_description: As of today, we’re launching a new tag within Fosstodon that @@ -27,17 +25,22 @@ params: last_post_date: "2023-12-05T00:00:00Z" last_post_link: https://hub.fosstodon.org/introducing-supporter-tags last_post_categories: [] + last_post_language: "" last_post_guid: 6aca360ef2695a4d24a90daceec38858 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 0 website: 2 - score: 7 + score: 10 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-3c7799eb6a706bcc24e0f121071b406d.md b/content/discover/feed-3c7799eb6a706bcc24e0f121071b406d.md deleted file mode 100644 index a7ae8dcc6..000000000 --- a/content/discover/feed-3c7799eb6a706bcc24e0f121071b406d.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Truer than North -date: "1970-01-01T00:00:00Z" -description: Scaling Your Sites Like It's No One's Business -params: - feedlink: https://truerthannorth.com/feed/ - feedtype: rss - feedid: 3c7799eb6a706bcc24e0f121071b406d - websites: - https://truerthannorth.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3c89ceff43a7999fb20b2fc8d1d9ac69.md b/content/discover/feed-3c89ceff43a7999fb20b2fc8d1d9ac69.md new file mode 100644 index 000000000..a84a52c8e --- /dev/null +++ b/content/discover/feed-3c89ceff43a7999fb20b2fc8d1d9ac69.md @@ -0,0 +1,41 @@ +--- +title: Tomaz's dev blog +date: "2024-06-20T19:52:07+02:00" +description: "" +params: + feedlink: https://tomazvajngerl.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 3c89ceff43a7999fb20b2fc8d1d9ac69 + websites: + https://tomazvajngerl.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://tomazvajngerl.blogspot.com/: true + https://www.blogger.com/profile/17183461757847157603: true + last_post_title: Chart Data Tables + last_post_description: "" + last_post_date: "2022-09-15T15:19:40+02:00" + last_post_link: https://tomazvajngerl.blogspot.com/2022/09/chart-data-tables.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 4d30b659e1a1ac4c27f0aca3515e9fc7 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3ca196551314c5d6b982ed9172e572ea.md b/content/discover/feed-3ca196551314c5d6b982ed9172e572ea.md deleted file mode 100644 index 37908fefe..000000000 --- a/content/discover/feed-3ca196551314c5d6b982ed9172e572ea.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: English – Le blog de Olivier Crête -date: "1970-01-01T00:00:00Z" -description: Just another WordPress site -params: - feedlink: https://ocrete.ca/category/english/feed/ - feedtype: rss - feedid: 3ca196551314c5d6b982ed9172e572ea - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Collabora - - English - - Gnome - relme: {} - last_post_title: GStreamer Spring Hackfest 2016 - last_post_description: After missing the last few GStreamer hackfests I finally - managed to attend this time. It was held in Thessaloniki, Greece’s second largest - city. The city is located by the sea side and the entire - last_post_date: "2016-05-25T20:43:08Z" - last_post_link: https://ocrete.ca/2016/05/25/gstreamer-spring-hackfest-2016/ - last_post_categories: - - Collabora - - English - - Gnome - last_post_guid: 1cc1527f3cba4805ef2b9640c8c16dac - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3ca2bc8db93612727bddb3f5dba87527.md b/content/discover/feed-3ca2bc8db93612727bddb3f5dba87527.md new file mode 100644 index 000000000..3e4838955 --- /dev/null +++ b/content/discover/feed-3ca2bc8db93612727bddb3f5dba87527.md @@ -0,0 +1,41 @@ +--- +title: Morley's blog page +date: "2024-03-07T09:25:24Z" +description: This is just my day to day ramblings +params: + feedlink: https://davmor2.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 3ca2bc8db93612727bddb3f5dba87527 + websites: + https://davmor2.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Ubuntu + relme: + https://davmor2.blogspot.com/: true + last_post_title: I think I have a solution to the rolling and releasing + last_post_description: "" + last_post_date: "2013-03-07T23:22:03Z" + last_post_link: https://davmor2.blogspot.com/2013/03/i-think-i-have-solution-to-rolling-and.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 980ab571c24e7642eb027c4268fa9271 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3cc589bb993963971361556bd71a34b3.md b/content/discover/feed-3cc589bb993963971361556bd71a34b3.md deleted file mode 100644 index 927d2949a..000000000 --- a/content/discover/feed-3cc589bb993963971361556bd71a34b3.md +++ /dev/null @@ -1,55 +0,0 @@ ---- -title: OpenStack – Rob Hirschfeld -date: "1970-01-01T00:00:00Z" -description: On Computing, Containers, Cloud & Tech Culture -params: - feedlink: https://robhirschfeld.com/category/openstack/feed/ - feedtype: rss - feedid: 3cc589bb993963971361556bd71a34b3 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - infrastructure - - Open Source - - OpenStack - - Podcast - - Cachengo - - GPU - - hadoop - - IoT - - Linux - - operations - relme: {} - last_post_title: Podcast – Ash Young talks Everything in your PC is IoT - last_post_description: Joining us this week is Ash Young, Chief Evangelist of Cachengo - and OPNFV Ambassador. Cachengo builds smart, predictive storage for machine learning. - NOTE – We had a microphone problem that is - last_post_date: "2018-09-17T09:28:25Z" - last_post_link: https://robhirschfeld.com/2018/09/17/podcast-ash-young-talks-everything-in-your-pc-is-iot/ - last_post_categories: - - infrastructure - - Open Source - - OpenStack - - Podcast - - Cachengo - - GPU - - hadoop - - IoT - - Linux - - operations - last_post_guid: c1ba5deff3c5fb42f40cb9bd1144983e - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3ceeedaca97549f0c38548e0c40d8c1c.md b/content/discover/feed-3ceeedaca97549f0c38548e0c40d8c1c.md new file mode 100644 index 000000000..6a934427a --- /dev/null +++ b/content/discover/feed-3ceeedaca97549f0c38548e0c40d8c1c.md @@ -0,0 +1,44 @@ +--- +title: The Django weblog +date: "1970-01-01T00:00:00Z" +description: Latest news about Django, the Python web framework. +params: + feedlink: https://www.djangoproject.com/rss/weblog/ + feedtype: rss + feedid: 3ceeedaca97549f0c38548e0c40d8c1c + websites: + https://www.djangoproject.com/weblog/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://www.djangoproject.com/weblog/: true + last_post_title: Django 5.1 beta 1 released + last_post_description: |- + Django 5.1 beta 1 is now available. It represents the second stage in the 5.1 + release cycle and is an opportunity for you to try out the changes coming in + Django 5.1. + Django 5.1 brings a kaleidoscope + last_post_date: "2024-06-26T09:32:21-05:00" + last_post_link: https://www.djangoproject.com/weblog/2024/jun/26/django-51-beta-1-released/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 3b4647e1e0fcecc4d6bec98fdcd156c2 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-3cf25465f6d5a09d71e400c4963a9460.md b/content/discover/feed-3cf25465f6d5a09d71e400c4963a9460.md new file mode 100644 index 000000000..31cf76489 --- /dev/null +++ b/content/discover/feed-3cf25465f6d5a09d71e400c4963a9460.md @@ -0,0 +1,72 @@ +--- +title: And this is just the beginning... +date: "2024-03-13T13:38:25+01:00" +description: A blog about my life on the web, my activity in Ubuntu and some other + things... +params: + feedlink: https://kalon33.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 3cf25465f6d5a09d71e400c4963a9460 + websites: + https://kalon33.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ABUL + - Bordeaux + - Free software + - Giroll + - Gutsy + - Gutsy Release Party + - Hardy + - Hardy Release Party + - Install Party + - Intrepid + - Intrepid Release Party + - Jaunty + - Jaunty Release Party + - LTS release + - Linux + - Ubuntu + - Ubuntu 7.10 + - Ubuntu 8.04 + - Ubuntu 8.10 + - Ubuntu 9.04 + - kick start + relme: + https://kalon33.blogspot.com/: true + last_post_title: The Way to a new Ubuntu party for the Jaunty Jackalope + last_post_description: "" + last_post_date: "2009-05-05T20:34:20+02:00" + last_post_link: https://kalon33.blogspot.com/2009/05/way-to-new-ubuntu-party-for-jaunty.html + last_post_categories: + - ABUL + - Bordeaux + - Free software + - Giroll + - Install Party + - Jaunty + - Jaunty Release Party + - Linux + - Ubuntu + - Ubuntu 9.04 + last_post_language: "" + last_post_guid: 1a4c0e55673b8c4d7d7f8080e54bcecd + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3d0bad2933714cef81d0f3ce33def51a.md b/content/discover/feed-3d0bad2933714cef81d0f3ce33def51a.md new file mode 100644 index 000000000..b81dfc1df --- /dev/null +++ b/content/discover/feed-3d0bad2933714cef81d0f3ce33def51a.md @@ -0,0 +1,139 @@ +--- +title: Ddosing is not Illegal +date: "2024-02-18T17:55:57-08:00" +description: ddosing is good for internet a and having not any kind of trouble. +params: + feedlink: https://mobincubeapps.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 3d0bad2933714cef81d0f3ce33def51a + websites: + https://mobincubeapps.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Ddos is legal + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Is ddosing is Good + last_post_description: "" + last_post_date: "2021-04-22T11:36:02-07:00" + last_post_link: https://mobincubeapps.blogspot.com/2021/04/is-ddosing-is-good.html + last_post_categories: + - Ddos is legal + last_post_language: "" + last_post_guid: 0e4f225b661ffae1a63a1f1327aac35e + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3d0bb7a351bbcaa8fb48c848d641f98d.md b/content/discover/feed-3d0bb7a351bbcaa8fb48c848d641f98d.md deleted file mode 100644 index e0b001baa..000000000 --- a/content/discover/feed-3d0bb7a351bbcaa8fb48c848d641f98d.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: i.webthings.directory -date: "2024-06-03T16:45:15Z" -description: "" -params: - feedlink: https://iwebthings.jenett.org/iwd.atom - feedtype: atom - feedid: 3d0bb7a351bbcaa8fb48c848d641f98d - websites: - https://iwebthings.jenett.org/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: directory notes 04-13-23 - last_post_description: "" - last_post_date: "2023-04-13T18:03:06Z" - last_post_link: https://iwebthings.joejenett.com/directory-notes-04-13-23/ - last_post_categories: [] - last_post_guid: 5f708ceb23870a71b141cabf2851dad3 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 4 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3d2b3bf8d5a147cd15014de5b29fac60.md b/content/discover/feed-3d2b3bf8d5a147cd15014de5b29fac60.md deleted file mode 100644 index 90cb84a9a..000000000 --- a/content/discover/feed-3d2b3bf8d5a147cd15014de5b29fac60.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: blog.oddbit.com -date: "1970-01-01T00:00:00Z" -description: Recent content on blog.oddbit.com -params: - feedlink: https://blog.oddbit.com/rss.xml - feedtype: rss - feedid: 3d2b3bf8d5a147cd15014de5b29fac60 - websites: - https://blog.oddbit.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Applying custom configuration to Nginx Gateway Fabric - last_post_description: |- - In this post, we take a look at how to apply custom Nginx configuration directives when you’re using the NGINX Gateway Fabric. - What’s the NGINX Gateway Fabric? The NGINX Gateway Fabric is an - last_post_date: "2023-11-17T00:00:00Z" - last_post_link: https://blog.oddbit.com/post/2023-11-17-nginx-gateway-configuration/ - last_post_categories: [] - last_post_guid: e8a8f1936bff6d812278fbde7ae2e008 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3d2bbdb89edccc08914e5be8d9fa72ee.md b/content/discover/feed-3d2bbdb89edccc08914e5be8d9fa72ee.md new file mode 100644 index 000000000..eeaa3fcd9 --- /dev/null +++ b/content/discover/feed-3d2bbdb89edccc08914e5be8d9fa72ee.md @@ -0,0 +1,167 @@ +--- +title: XMPP Jingle - The Next Generation VoIP +date: "1970-01-01T00:00:00Z" +description: Discussions about VoIP, Jingle, SIP, XMPP and Jingle Nodes +params: + feedlink: https://xmppjingle.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 3d2bbdb89edccc08914e5be8d9fa72ee + websites: + https://xmppjingle.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 3d + - 3g + - EU + - ICE + - IE6 + - IPV4 + - Real Player + - Vista + - add-on + - alternative + - android + - api + - app engine + - apple + - appliance + - block + - bots + - brazil + - browser + - buy + - call + - call center + - cisco + - client + - codec + - commandments + - company + - comparison + - cparty + - dns + - down + - drop.io + - egypt + - ejabberd + - encoding + - erlang + - erlrtpproxy + - facebook + - facetime + - federation + - fisl + - fisl10 + - fisl11 + - flash + - fosdem + - freedom + - fridge + - game + - gips + - gmail + - google + - google voice + - gravity + - gtalk + - hxmpp + - internet + - interoperability + - iphone + - iq + - jabber + - java + - jingle + - jingle gateway + - jingle nodes + - jitsi + - logo + - matrix + - mobile + - mobile voip + - movies + - msn + - nimbuzz + - nlnet + - nodes + - open + - opendiscussionday + - openfire + - opensource + - opus + - oscon + - ouvid.us + - p2p + - p2p nat + - phylosophy + - physics + - plugin + - presentation + - price + - protocol + - python + - quotes + - random + - rapportive + - relay + - rtp + - rtpproxy + - s2s + - services + - shopping + - sip + - sip communicator + - sip gateway + - skype + - srv + - standard + - stun + - summit + - super nodes + - surveillance + - talkr.im + - test + - time + - twilio + - video + - vodafone + - voice + - voip + - vuc + - web + - xbox + - xmpp + relme: + https://xmppjingle.blogspot.com/: true + last_post_title: ouvid.us - Twilio Experiment + last_post_description: 'The problem this project solves is: Small and Medium + business would have high costs on maintaining a Call Center system. ouvid.us solves + the problem, by enabling a pure web based Call Center' + last_post_date: "2011-08-07T17:59:00Z" + last_post_link: https://xmppjingle.blogspot.com/2011/08/ouvidus-twilio-experiment.html + last_post_categories: + - call center + - ouvid.us + - twilio + - web + last_post_language: "" + last_post_guid: 1172c5192e0d1aff6583b28c4487569e + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3d333c6fbb001ab6ec901e3523131f32.md b/content/discover/feed-3d333c6fbb001ab6ec901e3523131f32.md new file mode 100644 index 000000000..372962d8d --- /dev/null +++ b/content/discover/feed-3d333c6fbb001ab6ec901e3523131f32.md @@ -0,0 +1,52 @@ +--- +title: Glyn Normington's blog +date: "2024-03-13T19:12:01Z" +description: This is my personal blog and does not necessarily reflect the views of + my employer (VMware). +params: + feedlink: https://glynblog.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 3d333c6fbb001ab6ec901e3523131f32 + websites: + https://glynblog.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Christianity + - Iraq + - blogging + - iPod shuffle + - iTunes + relme: + https://about.me/glyn.normington: true + https://glynblog.blogspot.com/: true + https://underlap.blogspot.com/: true + https://winchesterflyfishing.blogspot.com/: true + https://www.blogger.com/profile/08741529390385812080: true + last_post_title: Using iPod shuffle with multiple Macs + last_post_description: "" + last_post_date: "2009-06-18T20:06:15+01:00" + last_post_link: https://glynblog.blogspot.com/2009/06/using-ipod-shuffle-with-multiple-macs.html + last_post_categories: + - iPod shuffle + - iTunes + last_post_language: "" + last_post_guid: 1abe2c84e036aeeea9d580e5fee1d07e + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3d3b086231662d19cb2573e60aedfcf4.md b/content/discover/feed-3d3b086231662d19cb2573e60aedfcf4.md deleted file mode 100644 index d66cd309b..000000000 --- a/content/discover/feed-3d3b086231662d19cb2573e60aedfcf4.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Proto -date: "1970-01-01T00:00:00Z" -description: My Proto WordPress Sandbox -params: - feedlink: https://proto.tzyl.nl/wp/feed/ - feedtype: rss - feedid: 3d3b086231662d19cb2573e60aedfcf4 - websites: - https://proto.tzyl.nl/wp: true - https://proto.tzyl.nl/wp/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Uncategorized - relme: {} - last_post_title: This is a webmention test to Meso - last_post_description: Webmentioning a random posting. - last_post_date: "2019-05-27T19:12:33Z" - last_post_link: https://proto.tzyl.nl/wp/2019/05/27/this-is-a-webmention-test-to-meso/ - last_post_categories: - - Uncategorized - last_post_guid: b92bd3fc5ebc49f21c2e793e288629a4 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3d452532d26f1b6f5d09857a4c6a0700.md b/content/discover/feed-3d452532d26f1b6f5d09857a4c6a0700.md deleted file mode 100644 index a7fde361c..000000000 --- a/content/discover/feed-3d452532d26f1b6f5d09857a4c6a0700.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Real Engineering -date: "1970-01-01T00:00:00Z" -description: Interesting answers to simple questions. -params: - feedlink: https://rss.nebula.app/video/channels/realengineering.rss?plus=true - feedtype: rss - feedid: 3d452532d26f1b6f5d09857a4c6a0700 - websites: - https://nebula.tv/realengineering/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Engineering - relme: {} - last_post_title: Interview with Hermeus CEO AJ Piplica | Nebula Plus - last_post_description: |- - Interview with Hermeus CEO AJ Piplica where he talks through the companies past challenges and future goals. - Credits: - Producer/Writer/Narrator: Brian McManus - Head of Production: Mike Ridolfi - Editor: - last_post_date: "2024-03-12T15:13:10Z" - last_post_link: https://nebula.tv/videos/realengineering-interview-with-hermeus-ceo-aj-piplica/ - last_post_categories: - - Engineering - last_post_guid: 2551276b67e9a989aee11ec59c8eb0fb - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3d4577959f04676aebb6ee0623630faa.md b/content/discover/feed-3d4577959f04676aebb6ee0623630faa.md deleted file mode 100644 index 09022a8ed..000000000 --- a/content/discover/feed-3d4577959f04676aebb6ee0623630faa.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: 'Xe :verified:' -date: "1970-01-01T00:00:00Z" -description: Public posts from @cadey@pony.social -params: - feedlink: https://pony.social/@cadey.rss - feedtype: rss - feedid: 3d4577959f04676aebb6ee0623630faa - websites: - https://pony.social/@cadey: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/Xe: true - https://xeiaso.net/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3d81bc9b8c28221e02a6dcd3bff6a6aa.md b/content/discover/feed-3d81bc9b8c28221e02a6dcd3bff6a6aa.md new file mode 100644 index 000000000..118364267 --- /dev/null +++ b/content/discover/feed-3d81bc9b8c28221e02a6dcd3bff6a6aa.md @@ -0,0 +1,42 @@ +--- +title: Jack Diederich's Python Blog +date: "1970-01-01T00:00:00Z" +description: What I'm working on in Python, tips, observations, stuff. +params: + feedlink: https://jackdied.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 3d81bc9b8c28221e02a6dcd3bff6a6aa + websites: + https://jackdied.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://jackdied.blogspot.com/: true + last_post_title: 'PyCon on The Charles: Night 2' + last_post_description: We had the 2nd night of PyCon rehearsals tonight at the Boston + Python Meetup and it was my turn to practice. My PyCon talk is Stop Writing Classes. The + talk presents some examples of code that were + last_post_date: "2012-03-01T04:29:00Z" + last_post_link: https://jackdied.blogspot.com/2012/02/pycon-on-charles-night-2.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 479d4ff6240841217253c655014f700d + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3d96fe9dbb93ef8c9746724c8c77f9a3.md b/content/discover/feed-3d96fe9dbb93ef8c9746724c8c77f9a3.md new file mode 100644 index 000000000..ab3fc1380 --- /dev/null +++ b/content/discover/feed-3d96fe9dbb93ef8c9746724c8c77f9a3.md @@ -0,0 +1,44 @@ +--- +title: Triveni +date: "2024-03-13T08:52:00-07:00" +description: lines from the Indian Student Association of University of North Carolina, + Charlotte +params: + feedlink: https://uncctriveni.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 3d96fe9dbb93ef8c9746724c8c77f9a3 + websites: + https://uncctriveni.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://chetukuli.blogspot.com/: true + https://tweakeclipse.blogspot.com/: true + https://uncctriveni.blogspot.com/: true + https://www.blogger.com/profile/12901447063650143488: true + last_post_title: TPL begins... + last_post_description: "" + last_post_date: "2011-04-14T14:59:54-07:00" + last_post_link: https://uncctriveni.blogspot.com/2011/04/1.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 4aceec15f41e2c9b536f63ec463fba50 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3d9b6497f0998ea11eb4163a35429c56.md b/content/discover/feed-3d9b6497f0998ea11eb4163a35429c56.md deleted file mode 100644 index 604e9caa0..000000000 --- a/content/discover/feed-3d9b6497f0998ea11eb4163a35429c56.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Roger Swannell -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://rogerswannell.com/feed/ - feedtype: rss - feedid: 3d9b6497f0998ea11eb4163a35429c56 - websites: - https://rogerswannell.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://visitmy.website/feed.xml - categories: - - Daynotes - relme: {} - last_post_title: "240602" - last_post_description: Got done in a couple of hours the things I procrastinated - about last week. Amazing what a bit of public admission of failure and accountability - to a respected colleague can do. Read a few things - last_post_date: "2024-06-02T22:10:28Z" - last_post_link: https://rogerswannell.com/daynotes/240602/ - last_post_categories: - - Daynotes - last_post_guid: 724e955cc33fb7a019b02f71b7f32657 - score_criteria: - cats: 0 - description: 0 - postcats: 1 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3da346a06c1b3c91ab2d5545e2a76218.md b/content/discover/feed-3da346a06c1b3c91ab2d5545e2a76218.md deleted file mode 100644 index 309ede927..000000000 --- a/content/discover/feed-3da346a06c1b3c91ab2d5545e2a76218.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Comments for Category Theory -date: "1970-01-01T00:00:00Z" -description: Summer Study Group 2015 -params: - feedlink: https://cat.boffosocko.com/comments/feed/ - feedtype: rss - feedid: 3da346a06c1b3c91ab2d5545e2a76218 - websites: - https://cat.boffosocko.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Videos by HerbMartin - last_post_description: |- - Bartosz Milewski is now adding a 3rd "season" to his excellent Category Theory videos. - A PDF of his "book" has been converted from the many pages of his blog formatted source (look on GitHub etc., - last_post_date: "2018-09-29T15:41:30Z" - last_post_link: https://cat.boffosocko.com/course-resources/videos/#comment-84 - last_post_categories: [] - last_post_guid: 780a44222e25a631b0ba331968959a9a - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3da6bb853b9c9e4b2658f9406a542cba.md b/content/discover/feed-3da6bb853b9c9e4b2658f9406a542cba.md deleted file mode 100644 index 62c865b81..000000000 --- a/content/discover/feed-3da6bb853b9c9e4b2658f9406a542cba.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: sticker spotter -date: "2024-06-04T06:54:09Z" -description: "" -params: - feedlink: https://stickerspotter.com/feed.atom - feedtype: atom - feedid: 3da6bb853b9c9e4b2658f9406a542cba - websites: - https://stickerspotter.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3db0dbab108a213c52fc88d5c8f0bf17.md b/content/discover/feed-3db0dbab108a213c52fc88d5c8f0bf17.md index d2d472eb1..c1ca79c57 100644 --- a/content/discover/feed-3db0dbab108a213c52fc88d5c8f0bf17.md +++ b/content/discover/feed-3db0dbab108a213c52fc88d5c8f0bf17.md @@ -53,6 +53,7 @@ params: - https://granary.io/url?input=html - https://honza.pokorny.ca/index.xml - https://im.farai.xyz/feed.rss.xml + - https://immerweiterlaufen.de/feed - https://jerz.us/rss/?section=micro - https://jimkang.com/weblog/feed.xml - https://joekrall.com/atom.xml @@ -105,6 +106,7 @@ params: - https://www.schneier.com/feed/atom/ - https://www.scottohara.me/feed.xml - https://www.smbc-comics.com/comic/rss + - https://www.strictlyspoiler.com/feed/ - https://www.welivesecurity.com/en/rss/feed/ - https://www.youtube.com/feeds/videos.xml?channel_id=UC-XYsDNh4-886rMNLnnwR_w - https://www.youtube.com/feeds/videos.xml?channel_id=UC2C_jShtL725hvbm1arSV9w @@ -166,11 +168,8 @@ params: - https://benfrain.com/feed/ - https://benfrain.com/home/feed/ - https://blog.humblebundle.com/comments/feed/ - - https://www.buttersafe.com/feed/ - - https://www.buttersafe.com/feed/atom/ - https://colinwalker.blog/dailyfeed.xml - https://cosmicqbit.dev/blog/index.xml - - https://degruchy.org/comments/feed/ - https://derekkedziora.com/feed/essays.xml - https://distributed.blog/comments/feed/ - https://distributed.blog/feed/ @@ -181,9 +180,11 @@ params: - https://frittiert.es/feed/page:feed.xml - https://geoffgraham.me/comments/feed/ - https://geoffgraham.me/feed/ + - https://immerweiterlaufen.de/comments/feed/ + - https://immerweiterlaufen.de/feed/ - https://jerz.us/atom/ - https://jerz.us/rss/ - - https://kevquirk.com/feed + - https://lalunemauve.fr/comments/feed/ - https://ma.tt/comments/feed/ - https://rss.nebula.app/video/channels/minutephysics.rss?plus=true - https://rss.nebula.app/video/channels/philosophytube.rss?plus=true @@ -203,78 +204,77 @@ params: - https://notiz.blog/type/standard/feed/ - https://notiz.blog/type/status/feed/ - https://notiz.blog/type/video/feed/ - - https://oglaf.com/feeds/rss/ - https://polytechnic.co.uk/blog/rss - https://rss.metafilter.com/popular-comments.rss - https://rss.metafilter.com/popular-posts.rss - https://rss.metafilter.com/projects.rss - - https://indieweb.social/@seanmcp.rss - https://sfss.space/feed/ - https://shiflett.org/feeds/links - - https://shkspr.mobi/blog/feed - - https://shkspr.mobi/blog/feed/atom/ - - https://shkspr.mobi/blog/feed/podcast/ - - https://stantonharcourtschool.org.uk/comments/feed/ - - https://stantonharcourtschool.org.uk/feed/ - https://steele.blue/feed - https://stefanbohacek.com/feed - https://textslashplain.com/comments/feed/ + - https://thehistoryoftheweb.com/comments/feed/ - https://tracydurnell.com/comments/feed/ - https://www.alchemists.io/feeds/articles.xml - https://www.alchemists.io/feeds/projects.xml - https://www.alchemists.io/feeds/screencasts.xml - https://www.alchemists.io/feeds/talks.xml + - https://www.blogpocket.com/comments/feed/ - https://www.blogpocket.com/feed/ - https://www.blogpocket.com/feed/podcast - https://rss.metafilter.com/metafilter.rss - - https://www.nathalielawhead.com/candybox/comments/feed - https://www.optipess.com/comments/feed/ - https://www.optipess.com/feed/ - - https://polyamorousmisanthrope.com/wordpress/comments/feed/ - - https://www.schneier.com/comments/feed/ - - https://www.schneier.com/feed/ - https://www.zylstra.org/blog/comments/feed/ - https://xkcd.com/atom.xml - https://youdo.blog/comments/feed/ recommender: [] categories: - Personal - - email - - geeky - - published on gemini - - rss - - spam + - carpentry + - electronics + - house building works 2024 + - programming + - python + - raspberry pi relme: - https://en.pronouns.page/@dan-q: false + https://dan-q.github.io/: true + https://danq.me/: true + https://github.com/Dan-Q: true https://github.com/dan-q/: true https://keybase.io/dq: true https://m.danq.me/@blog: true - https://m.danq.me/@dan: false - https://www.linkedin.com/in/itsdanq/: false - https://www.youtube.com/@DanQ: false - last_post_title: '[Article] Somewhat-Effective Spam Filters' - last_post_description: I've tried a variety of unusual anti-spam solutions. Here's - how they worked out for me. - last_post_date: "2024-06-04T11:27:38+01:00" - last_post_link: https://danq.me/2024/06/04/somewhat-effective-spam-filters/ + https://m.danq.me/@dan: true + last_post_title: '[Article] Building a Secret Cabinet' + last_post_description: As part of efforts to build myself a new bedroom in our attic, + I expanded my carpentry, electronics, and Python skills by building a remotely-triggered + secret cabinet in my bookcase! + last_post_date: "2024-07-08T20:52:40+01:00" + last_post_link: https://danq.me/2024/07/08/secret-cabinet/ last_post_categories: - Personal - - email - - geeky - - published on gemini - - rss - - spam - last_post_guid: 619e615ca6088b0261238096c32eda69 + - carpentry + - electronics + - house building works 2024 + - programming + - python + - raspberry pi + last_post_language: "" + last_post_guid: ad3a7646a2d424e25b14708406576b70 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 0 promotes: 10 relme: 2 title: 3 website: 2 - score: 23 + score: 27 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-3db2d262d2d4048cfde088ab15f14858.md b/content/discover/feed-3db2d262d2d4048cfde088ab15f14858.md deleted file mode 100644 index 49e3a5c45..000000000 --- a/content/discover/feed-3db2d262d2d4048cfde088ab15f14858.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Go, blog with GoBlog! -date: "2024-06-04T11:03:57+02:00" -description: A blog about GoBlog -params: - feedlink: https://goblog.app/.rss - feedtype: rss - feedid: 3db2d262d2d4048cfde088ab15f14858 - websites: - https://goblog.app/: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: [] - relme: - https://goblog.app/: true - last_post_title: A rewritten plugin system - last_post_description: I hate breaking things (and backwards compatibility), but - sometimes it’s the only way to get to new levels. And that’s because I had to - break (and rewrite) the plugin system. To add more power - last_post_date: "2023-01-23T20:51:55+01:00" - last_post_link: https://goblog.app/updates/2023/01/2023-01-23-suzgv - last_post_categories: [] - last_post_guid: 3d90d43ddb000a19a4aaf50626bbf3a2 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 15 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3db48f6e62d6e671476092225ea4e1e9.md b/content/discover/feed-3db48f6e62d6e671476092225ea4e1e9.md deleted file mode 100644 index d23cbca7a..000000000 --- a/content/discover/feed-3db48f6e62d6e671476092225ea4e1e9.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: '@kayserifserif.place - katherine' -date: "1970-01-01T00:00:00Z" -description: soft tech & poetic tools • https://kayserifserif.place/ • she/her/伊 -params: - feedlink: https://bsky.app/profile/did:plc:kx4iyjyzm53cdndhnp6r6ykf/rss - feedtype: rss - feedid: 3db48f6e62d6e671476092225ea4e1e9 - websites: - https://bsky.app/profile/kayserifserif.place: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3dbb8482abf45c35fae428f54dfaa1a2.md b/content/discover/feed-3dbb8482abf45c35fae428f54dfaa1a2.md new file mode 100644 index 000000000..56c282821 --- /dev/null +++ b/content/discover/feed-3dbb8482abf45c35fae428f54dfaa1a2.md @@ -0,0 +1,52 @@ +--- +title: The PolyBoRi Blog +date: "2024-03-05T12:30:34+01:00" +description: This is my blog about our computer-algebra framework PolyBoRi, which + is a combined C++/Python system for Gröbner bases etc. over Boolean rings. +params: + feedlink: https://polybori.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 3dbb8482abf45c35fae428f54dfaa1a2 + websites: + https://polybori.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Computer Algebra + - Math + - Math Singular + - PolyBoRi + - Sage + - Singular + - lmonade + - pdf + - rpm + - unit test + relme: + https://polybori.blogspot.com/: true + https://www.blogger.com/profile/00289750136242395664: true + last_post_title: GSOC 2013 project progress for weeks 0-4 + last_post_description: "" + last_post_date: "2013-07-20T18:09:17+02:00" + last_post_link: https://polybori.blogspot.com/2013/07/gsoc-2013-project-progress-for-weeks-0-4.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 21d8dba981b1f0305c69bd7a578001ce + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3dc19ed91c6237b073daabb3174d69b4.md b/content/discover/feed-3dc19ed91c6237b073daabb3174d69b4.md deleted file mode 100644 index 010fad0a2..000000000 --- a/content/discover/feed-3dc19ed91c6237b073daabb3174d69b4.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Comments for Valerie Aurora's blog -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://valerieaurora.wordpress.com/comments/feed/ - feedtype: rss - feedid: 3dc19ed91c6237b073daabb3174d69b4 - websites: - https://valerieaurora.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3ddae5f8bfd7d915fc06d60b316ed85b.md b/content/discover/feed-3ddae5f8bfd7d915fc06d60b316ed85b.md deleted file mode 100644 index 2bc23a1b9..000000000 --- a/content/discover/feed-3ddae5f8bfd7d915fc06d60b316ed85b.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: David Heinemeier Hansson -date: "2024-06-03T17:32:58Z" -description: "" -params: - feedlink: https://world.hey.com/dhh - feedtype: atom - feedid: 3ddae5f8bfd7d915fc06d60b316ed85b - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://blog.numericcitizen.me/feed.xml - - https://blog.numericcitizen.me/podcast.xml - categories: [] - relme: {} - last_post_title: Why I retired from the tech crusades - last_post_description: "" - last_post_date: "2024-06-03T17:32:58Z" - last_post_link: https://world.hey.com/dhh/why-i-retired-from-the-tech-crusades-107a51ea - last_post_categories: [] - last_post_guid: eb61745786e6577daeff1799e96107a8 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3de8a62adebb9666aa0a9e876a124d6c.md b/content/discover/feed-3de8a62adebb9666aa0a9e876a124d6c.md new file mode 100644 index 000000000..86c6c3f3a --- /dev/null +++ b/content/discover/feed-3de8a62adebb9666aa0a9e876a124d6c.md @@ -0,0 +1,40 @@ +--- +title: Vincent Bernat +date: "2024-06-23T22:43:53Z" +description: "" +params: + feedlink: https://vincent.bernat.ch/fr/blog/atom.xml + feedtype: atom + feedid: 3de8a62adebb9666aa0a9e876a124d6c + websites: + https://vincent.bernat.ch/fr: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://vincent.bernat.ch/fr: true + last_post_title: Pourquoi les fournisseurs de contenu ont besoin d'IPv6 + last_post_description: "" + last_post_date: "2024-06-23T22:43:53Z" + last_post_link: https://vincent.bernat.ch/fr/blog/2024-pourquoi-ipv6 + last_post_categories: [] + last_post_language: "" + last_post_guid: d630544e321369c6c471a04bc3c480ea + score_criteria: + cats: 0 + description: 0 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 11 + ispodcast: false + isnoarchive: false + innetwork: true + language: fr +--- diff --git a/content/discover/feed-3de8d38da06e759626ca98d769398d01.md b/content/discover/feed-3de8d38da06e759626ca98d769398d01.md deleted file mode 100644 index b4bc20ce4..000000000 --- a/content/discover/feed-3de8d38da06e759626ca98d769398d01.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Cole's Blog -date: "2024-05-31T03:01:46Z" -description: "" -params: - feedlink: https://coleb.blog/posts_feed - feedtype: atom - feedid: 3de8d38da06e759626ca98d769398d01 - websites: - https://coleb.blog/: true - blogrolls: [] - recommended: [] - recommender: - - https://jlelse.blog/.min.rss - - https://jlelse.blog/.rss - - https://jlelse.blog/index.xml - categories: [] - relme: - https://mas.to/@coleb: false - last_post_title: Focus on what matters - last_post_description: Focus only on what you can control. This is one of the big - lessons I’ve learned while reading about the Stoics. And there’s so much in life - I have no... - last_post_date: "2024-06-03T23:39:35Z" - last_post_link: https://coleb.blog/posts/focus-on-what-matters - last_post_categories: [] - last_post_guid: afbd4a99502d382c1f7e65e6f9626308 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3dee4894cb7d830afebd443fd442ab51.md b/content/discover/feed-3dee4894cb7d830afebd443fd442ab51.md new file mode 100644 index 000000000..9459fe5f6 --- /dev/null +++ b/content/discover/feed-3dee4894cb7d830afebd443fd442ab51.md @@ -0,0 +1,42 @@ +--- +title: GNOME on pesader +date: "1970-01-01T00:00:00Z" +description: Recent content in GNOME on pesader +params: + feedlink: https://pesader.dev/tags/gnome/feed.xml + feedtype: rss + feedid: 3dee4894cb7d830afebd443fd442ab51 + websites: + https://pesader.dev/tags/gnome/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://pesader.dev/tags/gnome/: true + last_post_title: GUADEC 2023 + last_post_description: A few days back, I went for the first time to the GNOME Users + and Developers Everywhere Conference (GUADEC). Even though I’m just a Google Summer + of Code intern, the GNOME Foundation was kind + last_post_date: "2023-08-01T19:15:26-03:00" + last_post_link: https://pesader.dev/posts/guadec-2023/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 5adb1857ffe55ea8d93a3f7f1cd9157c + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-3dfe6327e39145428a59afe2a2b1e4c0.md b/content/discover/feed-3dfe6327e39145428a59afe2a2b1e4c0.md new file mode 100644 index 000000000..98fd276f5 --- /dev/null +++ b/content/discover/feed-3dfe6327e39145428a59afe2a2b1e4c0.md @@ -0,0 +1,54 @@ +--- +title: chaica on Pixelfed +date: "2023-02-22T13:40:36Z" +description: "\U0001F427 FOSS Developer, Blogger, ☕ Tea addict, \U0001F377 Wine Lover, + \U0001F1EB\U0001F1F7 Paris, France" +params: + feedlink: https://pixelfed.social/users/chaica.atom + feedtype: atom + feedid: 3dfe6327e39145428a59afe2a2b1e4c0 + websites: + https://pixelfed.social/chaica: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - '#squash' + - '#remote' + - '#remotework' + relme: + https://carlchenet.com/: true + https://gitlab.com/chaica/: true + https://mastodon.social/@carlchenet: true + https://pixelfed.social/chaica: true + last_post_title: "Every Tuesday I work remotely, then during lunch time I train, + especially this week for a squash Open on Saturday \U0001F4AA\n\n#squash #remote + #remotework" + last_post_description: "Every Tuesday I work remotely, then during lunch time I + train, especially this week for a squash Open on Saturday \U0001F4AA\n\n#squash + #remote #remotework" + last_post_date: "2023-02-22T13:40:36Z" + last_post_link: https://pixelfed.social/p/chaica/534003836927094551 + last_post_categories: + - '#squash' + - '#remote' + - '#remotework' + last_post_language: "" + last_post_guid: 6e415f6a7fd07279dec2a6bf3844f572 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3e2901447a84143877c79d2516668809.md b/content/discover/feed-3e2901447a84143877c79d2516668809.md new file mode 100644 index 000000000..8df746a35 --- /dev/null +++ b/content/discover/feed-3e2901447a84143877c79d2516668809.md @@ -0,0 +1,62 @@ +--- +title: Pemrograman Mobile dengan Intel XDK +date: "2024-03-04T20:20:11-08:00" +description: "" +params: + feedlink: https://xdkmobile.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 3e2901447a84143877c79d2516668809 + websites: + https://xdkmobile.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - JSON + - PouchDB + relme: + https://eclipsedriven.blogspot.com/: true + https://emfmodeling.blogspot.com/: true + https://enakmurahkenyang.blogspot.com/: true + https://koperasi-bersama.blogspot.com/: true + https://lumen.hendyirawan.com/: true + https://magentoadmin.blogspot.com/: true + https://manfaatkefir.blogspot.com/: true + https://mobileflashdev.blogspot.com/: true + https://ngenet-dapat-duit.blogspot.com/: true + https://panduanubuntu.blogspot.com/: true + https://phpajaxweb.blogspot.com/: true + https://qt-mobility.blogspot.com/: true + https://rumah-sehat-avicenna.blogspot.com/: true + https://rumahkostdijualbandung.blogspot.com/: true + https://scala-enterprise.blogspot.com/: true + https://spring-java-ee.blogspot.com/: true + https://tutorial-java-programming.blogspot.com/: true + https://ubuntucomputing.blogspot.com/: true + https://www.blogger.com/profile/05192845149798446052: true + https://xdkmobile.blogspot.com/: true + last_post_title: Tutorial JSON via HTTP - Prakiraan Cuaca + last_post_description: "" + last_post_date: "2014-03-27T08:27:22-07:00" + last_post_link: https://xdkmobile.blogspot.com/2014/03/tutorial-json-via-http-prakiraan-cuaca.html + last_post_categories: + - JSON + last_post_language: "" + last_post_guid: 236f1d7c7cbcfa2bc4dc07b81fc21626 + score_criteria: + cats: 2 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3e2dd5243b1be30bcbb337b7c873e617.md b/content/discover/feed-3e2dd5243b1be30bcbb337b7c873e617.md new file mode 100644 index 000000000..a27bc6b13 --- /dev/null +++ b/content/discover/feed-3e2dd5243b1be30bcbb337b7c873e617.md @@ -0,0 +1,43 @@ +--- +title: Morley's blog page +date: "1970-01-01T00:00:00Z" +description: This is just my day to day ramblings +params: + feedlink: https://davmor2.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 3e2dd5243b1be30bcbb337b7c873e617 + websites: + https://davmor2.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Ubuntu + relme: + https://davmor2.blogspot.com/: true + last_post_title: I think I have a solution to the rolling and releasing + last_post_description: Post LTS.  You start a rolling release. This gets all the + goodness in that you want.  6 months in you take a fortnight out. Week one stabilize, + week two ISO testing.  The resulting ISO is then + last_post_date: "2013-03-07T23:22:00Z" + last_post_link: https://davmor2.blogspot.com/2013/03/i-think-i-have-solution-to-rolling-and.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 198703451e96144c7129f8baaf5bdc08 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3e45ac07163ce0f4fdc2743600e538a7.md b/content/discover/feed-3e45ac07163ce0f4fdc2743600e538a7.md deleted file mode 100644 index 7a1b7aa9e..000000000 --- a/content/discover/feed-3e45ac07163ce0f4fdc2743600e538a7.md +++ /dev/null @@ -1,393 +0,0 @@ ---- -title: "TelekomCloud DevOps team/title>\n TelekomCloud DevOps team\n http://telekomcloud.github.io/\n - \ \n en-us\n Wed, 02 Jan 2019 14:53:17 +0000\n Wed, 02 Jan 2019 14:53:17 - +0000\n\n \n \n Happy New Year\n http://telekomcloud.github.io//2019/01/02/happy-new-year.html\n - \ Wed, 02 Jan 2019 11:13:00 +0000\n http://telekomcloud.github.io//2019/01/02/happy-new-year\n - \

We start the year with cleanup and refresh.

\n\n \n \n \n An - automat OpenStack deployment for develop and test system\n http://telekomcloud.github.io//2014/05/07/vagrant-openstack.html\n - \ Wed, 07 May 2014 16:00:00 +0000\n http://telekomcloud.github.io//2014/05/07/vagrant-openstack\n - \

When I joined Deutsche Telekom 2 years ago, I had to share a common reference - test system with everyone in the rooms, including all operators and developers. - This was quite troublesomes when you have new ideas to test without interfering - anyone, also make sure that your experiments will not break things down and make - your colleagues angry.

\n\n

\"Test\nFigure1: a local integration test for experiment on new - features

\n\n

Like any development process, a local integration test system - is required. It must support developers editing and debugging OpenStack on the fly, - as well as operators or package-manager testing a release. It’s also nice to reset - the test system from dirty changes and provision it again as fast as possible. This - post introduces such system and now available upstream on our - repository.

\n\n

1. Overview

\n\n

\"vagrant\nFigure 2: deployment of OpenStack by vagrant

\n\n

Vagrant - is responsible for bringing the VMs up (step 1), setting up host-only networks within - Virtual Box (step 2) and install base packages. From now on there are two ways to - deploy OpenStack depends on your needs (step 5). For development purpose, OpenStack - is deployed by devstack. For testing release packages, puppet is in use. The two - deployments are configurable in a global file. Their git modules are authenticated - (in case your company requires ssl for connection) and drop-in the vm for deployment - (step 4).

\n\n

From my personal use case, I always need to switch between the - 2 deployments: devstack for coding and puppet for testing packages. Switching between - the two is also supported to keep the previous deployment save, separated and reuse.

\n\n

-  \   # set environment in config.file, i.e puppet or devstack:\n    env: puppet\n
\n\n

1.1 Networking

\n\n

Back to that time I only found projects - that deploy all OpenStack components in one VM. This does not satisfy our needs - because the all-in-one deployment does not reflect the behavior of the GRE data - network within different OpenStack components. Figure 2 above shows multi nodes: - control, compute and neutron node along with the 3 host-only networks for management, - data GRE, and public network are brought up automatically.

\n\n
    # supports multi nodes to
-  enable/disable\n    $ vagrant status\n    Cache enabled: /home/tri/git/vagrant_openstack/cache\n
-  \   Working on environment deployed by puppet branch icehouse...\n    compute2.pp
-  \              disabled in config.yaml\n    neutron2.pp               disabled in
-  config.yaml\n    Current machine states:\n    puppet                    not created
-  (virtualbox)\n    control.pp                not created (virtualbox)\n    compute1.pp
-  \              not created (virtualbox)\n    neutron1.pp               not created
-  (virtualbox)\n
\n\n

In such testing environment, we also - need to test the floating ips of the VMs over the public network, because it would - be extremely boring if the nova booting VMs cannot connect to the Internet. For - this reason, figure 3 shows how packages from inside the neutron node go out and - back. Packages coming from br-tun, br-int, go to br-ex on neutron node, are forwarded - to the NAT interface (vboxnet0) and SNATed so that they can find the way to go back.

\n\n

\"SNAT\nFigure 3: SNAT for testing floating ips

\n\n

1.2 - Storage

\n\n

For a simple nova volume setup, iSCSI is chosen by default. The - VBoxManage command [3] is very useful in this case for our vagrant to create a virtual - storage and attach to control node. For those who interests in coding, the VBoxManage - command is as follows

\n\n
    # create virtual storage\n    VBoxManage createhd
-  --filename <vdi> --size <cinder_storage_size>\n    # and attach it to
-  a vm\n    VBoxManage storageattach <vm_id> --storagectl \"SATA Controller\"
-  --port 1 \n    --device 0 --type hdd --medium <vdi>\n
\n\n

The - system also formats the new virtual storage, and creates a volume group cinder-volumes - for cinder. It’s also worth to mention that, in order to keep the data separated - for 2 deployed environment, two separated virtual storages have to be created for - each environment.

\n\n

2. Deployment environments

\n\n

2.1 puppet

\n\n

A VM puppetmaster is up with puppetdb installed. - It pulls manifests from a configurable git repository to a directory inside the - vm and use these manifests to deploy OpenStack on the other VMs. By default manifests - in 4 is - provided as an example to try out the new Icehouse release with ML2 plugin/l2 population. - You can also provide your own manifests by configuring a puppet repository and which - site.pp to use for the nodes definition:

\n\n
    puppet_giturl: git@your.repository.git\n
-  \   puppet_branch: your_branch\n    puppet_site_pp: manifests/your_site.pp\n
\n\n

2.2 devstack

\n\n

I like the deployment whereby provisioning - script is provided directly inside the vm. For this reason, puppet master for deployment - devstack is not necessary. Insteads devstack is directly cloned and setup inside - all VMs. It is also config to use the .pip repository of OpenStack [3]. Pydev is - also included in the VMs for remote debugging from the host machine supported.

\n\n

\"vagrant\nFigure 2: Remote debugging with MySQL Workbench & Eclipse

\n\n

3. - Performance boost

\n\n

One issue is the long deployment time, especially if - you have a slow connection or connection drops in the middle of the deployment. - So I tried out all tiny possibilities to reduce the time consuming.

\n\n

3.1 - Caching

\n\n

When a VM is destroy and up again, it must download all packages - from scratch. A simple solution for caching is implemented which cuts the deployment - time by half. It’s even more faster for a second deployment, since all packages - and the glance image are cached for further use so internet access is not necessary.

\n\n

Caching - is supported for both environments: all .deb packages installed by puppet, as well - as all .pip packages installed by devstack are cached and shared between VMs. The - tables below just gives a clue how much time we can save for bringing up the machines - with cache enabled with a pretty fast internet download speed (4Mbit/sec), each - vm 1 cpu and 1024 ram.

\n\n

a) Puppet deployment in secs

\n\n\n - \ \n \n \n \n \n \n \n \n \n \n - \ \n \n \n \n \n - \ \n \n \n \n \n - \ \n \n \n \n \n - \ \n \n \n \n
Nodesno cachewith - cache
Control312227
Compute11083
Neutron10962
Total532230
\n\n

win - 5 min

\n\n

b) Devstack deployment in secs

\n\n\n \n - \ \n \n \n \n - \ \n \n \n \n \n \n - \ \n \n \n \n \n - \ \n \n \n \n \n - \ \n \n \n \n \n - \ \n \n \n
Nodesno cachewith cache
Control764655
Compute764341
Neutron224208
Total1754660
\n\n

win 18 min

\n\n

To - test a custom package, simply replace it under the cache folder and bringing up - new VMs.

\n\n

3.2 Customize vagrant box

\n\n

To - reduce the vagrant up time, a vagrant box is customized with packages pre-installed. - The box is based on precise64 with packages such as VBox Guest Additions 4.3.8, - puppet, dnsmasq, r10k, vim, git, rubygems, msgpack, lvm2 pre-installed. The box - is also zero out all empty spaces and white out all logs to have a minimum size - as possible (378 Mb) to distribute on vagrant - cloud. This again cuts down 70 secs for each vm up (from 79 secs to 8 secs).

\n\n

win - 4.6 min (4 VMs x 70 secs)

\n\n

REFERENCES

\n\n
    \n - \
  1. https://github.com/TelekomCloud/vagrant_openstack
  2. \n - \
  3. puppet - for Icehouse
  4. \n
  5. VBoxManage
  6. \n - \
  7. OpenStack pypi
  8. \n
\n\n - \ \n \n \n Ceph Performance Analysis: fio and RBD\n http://telekomcloud.github.io//ceph/2014/02/26/ceph-performance-analysis_fio_rbd.html\n - \ Wed, 26 Feb 2014 22:42:00 +0000\n http://telekomcloud.github.io//ceph/2014/02/26/ceph-performance-analysis_fio_rbd\n - \

With this blog post we want to share insights into how the Platform Engineering - team for the Business Marketplace - at Deutsche Telekom AG analyzed a Ceph performance issue. Ceph is used for both - block storage and object stroage in our cloud production platform.

\n\n

Background

\n\n

While - the most common IO workload patterns of web applcations were not causing issues - on our Ceph clusters, serving databases or other IO demanding applications with - high IOPS requirements (with 8K or 4K blocksize) turns out more challenging.

\n\n

Recently, - we got a report from a colleague discussing performance regressions on our Ceph - cluster for rados block devices. We were presented results of dd - if=/dev/zero of=/dev/vdx bs=1k count=100M.

\n\n

We were not very happy - about getting a report with blocksize of 1k, synthetic sequential writes and /dev/zero - as input. But it turned out that even with 4k or 8k, we didn’t get great numbers.

\n\n

The - cluster at that time was dealing fine with 32k and higher blocksizes. But 32k and - less indeed resulted in a performance regression compared to an older\ngeneration - of our Ceph cluster deployment.

\n\n

Analysis

\n\n

First - we reproduced the issue with fio inside - an OpenStack instance with a Cinder-attached RBD, even with pure random write.\nSequential - and random reads of the entire RBD were not affected inside the VM.

\n\n

Also, - the average results of rados bench were - not perfect but not bad either - lets say they were OK. But not a good indicator - if it was a pure Ceph problem or maybe something else within our network.

\n\n

Initially - we spent some time by analyzing with tcpdump - and systemtap scripts the traffic librbd was seeing. Indeed we found situations - were the sender buffer of the VM host got full while performing 4K random write - stress loads inside a guest. (For this we used the example systemtap - script: sk_stream_wait_memory.stp)

\n\n

But - this only happened on very intense 4k write loads inside the VM.

\n\n

Was the - IO-pattern sane to tests? Corner case issues?

\n\n

We decided to look for the - right tool to measure detailed latency and IOPS, which is able to reproduce the - same load pattern.\nBonus point: replaying real-life workloads, that come close - to production workload - so we can tune for the right workload (and not for dd bs=4k).

\n\n

Here - started the challenge, since we looking for a tool, that is able to generate the - same load on each of the following layers:

\n\n\n\n

We would have to use different - tools that might produce different workloads, which could lead to different results - per test on different layers.

\n\n

THE right tool: - fio

\n\n

fio - was pretty much the perfect match for our cases - it was only missing the capability - to talk to Ceph RBD and the Ceph internal - FileStore directly.

\n\n

Fortunately, - fio is supporting various IO engines. So we decided to add support for librbd - and for the Ceph internal FileStore implementation, - to have a artificial OSD processes to benchmark the OSD implementation via fio.

\n\n

fio librbd - ioengine support

\n\n

With the latest master you can get fio - librbd support and test your Ceph RBD cluster with IO patterns of your choice, - with nearly all of the fio functionality (some are not supported yet by the RBD engine - not fio’s fault. Patches are welcome!). - All you need is to install the librbd development - package (e.g. librbd-dev or librbd-dev - and dependencies) or have the library and its headers at the designated location.

\n\n
$
-  git clone git://git.kernel.dk/fio.git\n$ cd fio\n$ ./configure\n[...]\nRados Block
-  Device engine     yes\n[...]\n$ make\n
\n\n

First - run with fio with rbd - engine

\n\n

The rbd engine will read - ceph.conf from the default location of - your Ceph build.

\n\n

A valid RBD client configuration of ceph.conf - is required. Also authentication and key handling needs to be done via ceph.conf.\nIf - ceph -s is working on the designated RBD - client (e.g. OpenStack compute node / VM host), the rbd - engine is nearly good to go.

\n\n

One preparation step left: You need to create - a test rbd in advance. WARNING: do not use existing RBDs which might hold valuable - data!

\n\n
rbd
-  -p rbd create --size 2048 fio_test\n
\n\n

Now one can - use the rbd engine job file shipped with - fio:

\n\n
./fio examples/rbd.fio\n
\n\n

The - example rbd.fio in detail looks like this:

\n\n
######################################################################\n#
-  Example test for the RBD engine.\n#\n# Runs a 4k random write test agains a RBD
-  via librbd\n#\n# NOTE: Make sure you have either a RBD named 'fio_test' or change\n#
-  \      the rbdname parameter.\n######################################################################\n[global]\n#logging\n#write_iops_log=write_iops_log\n#write_bw_log=write_bw_log\n#write_lat_log=write_lat_log\nioengine=rbd\nclientname=admin\npool=rbd\nrbdname=fio_test\ninvalidate=0
-  \   # mandatory\nrw=randwrite\nbs=4k\n\n[rbd_iodepth32]\niodepth=32\n
\n\n

This - will perform a 100% random write test across the entire RBD size (will be determined - via librbd), as Ceph user admin\nusing - the Ceph pool rbd (default) and the just - created and empty RBD fio_test with a 4k - blocksize and iodepth of 32 (numbers\nof IO requests in flight). The engine is making - use of asynchronous IO.

\n\n

Current implementation limits:

\n\n\n

Results

\n\n

Some - carefully selected results from one of our development environments while investigating - on the actual performance issue.

\n\n

Following plot shows the original situation - we were facing. Result from the fio example RBD job run with a 2GB RBD which was - initial empty:\n\"Drawing\"

\n\n

After analysis on the Ceph - OSD nodes with fio FileStore implementation - and more analysis and tuning we managed to get this result:\n\"Drawing\"

\n\n

More detailed analysis and - result and configuration/setup details will follow with the next postings on the - TelekomCloud Blog.

\n\n

Conclusion

\n\n

fio - is THE flexible IO tester - now even for Ceph RBD tests!

\n\n

Outlook

\n\n

We - are looking forward to going into more details in the next post on our performance - analysis story with our Ceph RBD cluster performance.

\n\n

In case you are - at the Ceph Day tomorrow - in Frankfurt, look out for Danny to get some more inside about our efforts arround - Ceph and fio here at Deutsche Telekom.

\n\n

Acknowledgements

\n\n

First - of all, we want to thank Jens Axboe and all fio - contributors for this awesome swiss-knife-IO-tool! Secondly, we thank Wolfgang Schulze - and his Inktank Service team and Inktank colleagues for their intense support - - especially when it turned out pretty early in the analysis, that Ceph was not causing - the issue, still they teamed up with us to figure out what was going on.

\n\n

References

\n\n

http://git.kernel.dk/?p=fio.git;a=summary

\n\n - \ \n \n \n New Ways of Tempest Stress Testing\n http://telekomcloud.github.io//2013/09/11/new-ways-of-tempest-stress-testing.html\n - \ Wed, 11 Sep 2013 00:00:00 +0000\n http://telekomcloud.github.io//2013/09/11/new-ways-of-tempest-stress-testing\n - \

Overview

\n\n

There are many stress test frameworks - for OpenStack that are all pretty similar in nature. They follow fixed scenarios - and fork many worker processes. Often they are difficult to enhance, since they - were written for a single purpose.

\n\n

With blueprint - stress-test the community of Tempest developers focused to build a single and - very flexible stress test framework, inside of Tempest.

\n\n

A - Stress Test is not a Test Domain

\n\n

In the past, stress tests had their - own area inside Tempest. New tests were introduced mainly as clones of an exiting - API, a scenario test or a mixture of both. But do stress tests really have their - own testing domain?

\n\n

Two main purposes of stress test are obvious:

\n\n\n\n

Those - two topics are already covered by Tempest tests today: grouping API test enables - us to detect race conditions, using scenario test, we can simulate load profiles.

\n\n

Tempest Stress Test Core

\n\n

The core of - the stress test framework is quite simple: It’s responsible for forking worker processes - and summarizing results. How many processes should be forked is configurable in - a JSON configuration file, which also can provide multiple arguments for each stress - test.

\n\n

Integration of Existing Tests

\n\n

In - order to stop duplication code, we started to integrate existing Tempest tests into - the stress test framework. A wrapper was build to call any kind of unit test and - make it available to the framework. With that, it’s easy to group existing tests. - Here is an example of how this is done for two unit tests:

\n\n
[{\"action\": \"tempest.stress.actions.unit_test.UnitTest\",\n
-  \ \"threads\": 8,\n  \"kwargs\": {\"test_method\": \"tempest.cli.simple_read_only.test_glance.\\\n
-  \            SimpleReadOnlyGlanceClientTest.test_glance_fake_action\",\n             \"class_setup_per\":
-  \"process\"},\n  \"action\": \"tempest.stress.actions.unit_test.UnitTest\",\n  \"threads\":
-  8,\n  \"kwargs\": {\"test_method\": \"tempest.api.volume.test_volumes_actions.\\\n
-  \            VolumesActionsTest.test_attach_detach_volume_to_instance\",\n             \"class_setup_per\":
-  \"process\"},\n}]\n
\n\n

This will fork in total 16 processes - that will conduct glance and cinder stress testing.

\n\n

The - Stress Test Discovery

\n\n

Test discovery is done like this:

\n\n

\"Drawing\"

\n\n

Instead of manually adding - exiting tests to the stress test framework, the next logical step was to introduce - a decorator. It allows test developers to decide if a test is made available to - the stress test framework. Or, to be more precise, it marks tests as being meaningful - stress tests. The decorator can be used like this:

\n\n
@stresstest(class_setup_per='process')\n@attr(type='smoke')\ndef
-  test_attach_detach_volume_to_instance(self):\n
\n\n

It - can simply get added to any existing unit test or used as the only purpose for a - test. Internally it is based on the existing mechanism of attribute discovery of - testtools and adds the attribute stress. It has one mandatory parameter class_setup_per, since it must be decided when - the setUpClass function should be called: - For every process, for every action or just globally. This depends on the content - of the setUpClass and must be decided by - the developer. In many cases a call on a per process level is sufficient.

\n\n

All - existing test attributes like smoke or - gate can also be used as filter within - the discovery function.

\n\n

Which - Tests are Good Candidates?

\n\n

In fact, it’s often easier to identify test - cases that aren’t good candidates:

\n\n\n\n

All - others tests might be interesting candidates to get integrated and used from the - test framework. So please feel free to identify new cases and contribute them to - OpenStack/Tempest.

\n\n \n \n \n OpenStack Networking High Availability - concept\n http://telekomcloud.github.io//2013/06/10/openstack-networking-high-availability.html\n - \ Mon, 10 Jun 2013 19:42:00 +0000\n http://telekomcloud.github.io//2013/06/10/openstack-networking-high-availability\n - \

Getting OpenStack highly available has been a hot topic for us at Deutsche - Telekom AG. With the upstream OpenStack - High Availability documentation, it’s already well documented how to configure - supporting services like MySQL and RabbitMQ in highly available setups.

\n\n

A - challenging area with regards to high availability has been OpenStack Networking. - For our OpenStack Grizzly-based cloud, we have made great progress with our solution - that we would like to share: how to implement OpenStack Networking (L3 agent) highly - available in active/active mode without pacemaker, using traditional routing/balancing - functionality.

\n\n

Our primary goal is to keep VMs available/reachable form - the internet with redundant network. I’ll focus on the high-level idea today and - post later about the detailed implmentation.

\n\n

Lets assume we have OpenStack - up and running, including OpenStack Networking with Open vSwitch plug-in. The traffic - will usually flow from internet -> Network Node -> Open vSwitch -> Full - mash GRE tunnel -> Compute node -> Open vSwitch on Compute - >VM:

\n\n

\"Diagram

\n\n

Next, we need a second Network node with Open vSwitch - and GRE tunnels to connect to the same Compute nodes:

\n\n

\"Diagram

\n\n

OpenStack Networking gained an important feature - in Grizzly, which allow us to schedule - to multiple network nodes.

\n\n

Now we can create a VM on compute node - with two nics and assignee two different IP addresses to them. We need to make sure - to use IPs that are part of each of the subnets that are mapped to the network nodes - / L3 agents.

\n\n

With this, we have now multiple paths to go out from the - VM. In order to avoid any kind of routing problems you need to configure PBR (Policy - based routing) insdie the VM. (Details will be provided with the next post.)

\n\n

The - goal is to make sure that packets arriving on interface ethX will be replayed or - send back via the same interface. This will require two routing tables and two default - routes, one for each interface.

\n\n

Having done this, we now have multiple - paths to the same VM, with different IP addresses.

\n\n

In case one of network - nodes (L3 agents) is not available, the GRE tunnel is not up or for any other reason - you cannot access the VM via the first Network node, you can still reach the same - VM via the second Network node, but with different IP address.

\n\n

Finally, - we need to set up a load balancer in front of for the Network node to manage the - IP swapping, to hide any changes to the IP addresses form the public network.

\n\n

Summarizing, - we now have the networking node working in active/active mode and the traffic will - be load-balanced, which also allows us to double the throughput. The traffic flow - now looks like this: Internet -> load balancer -> Network node 1 or 2 -> - Open vSwitch -> Full mash GRE tunnel -> Compute node -> OpenVswitch -> - VM:

\n\n

\"Diagram

\n\n

The redundancy of the load balancer is out of scope - for this post. You’ll have to choose a load balancer, that best meets your requirements. - It could be a hardware appliance, or software based.

\n\n

In case you don’t - want to implement a load balancer in front of the network node, but still want to - keep the VM highly availability, you need to take care of the IP address changing - yourself. One option would be to use the IP SLA feature of CISCO routers for this. - It can monitor the availability of the path to VM and switch to next path with NAT - immediately, in case one path is not available:

\n\n

\"Diagram

\n\n

I’m looking forward to your comments and questions!

\n\n - \ \n \n \n Hello World!\n http://telekomcloud.github.io//2013/06/10/hello-world.html\n - \ Mon, 10 Jun 2013 18:42:00 +0000\n http://telekomcloud.github.io//2013/06/10/hello-world\n - \

Did you know Deutsche Telekom AG has been using and developing OpenStack-based - clouds for the last 1.5 years? We first publicly talked about our OpenStack efforts - at CeBIT 2012 in - March 2012 and at the OpenStack Folsom Design Summit in San Francisco. A lot has - happened since then! While OpenStack Essex was not fully ready to meet our requirements, - we have been in production with OpenStack Folsom for a while now. Currently our - Cloud Development and Operations team is busy preparing the launch of our OpenStack - Grizzly-based cloud.

\n\n

With the creation of this team blog, we want to share - our ideas and findings in and around OpenStack and discuss them with the community. - We are looking forward to the conversation!

" -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://telekomcloud.github.io/rss.xml - feedtype: rss - feedid: 3e45ac07163ce0f4fdc2743600e538a7 - websites: - https://telekomcloud.github.io/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Happy New Year - last_post_description: We start the year with cleanup and refresh. - last_post_date: "2019-01-02T11:13:00Z" - last_post_link: http://telekomcloud.github.io//2019/01/02/happy-new-year.html - last_post_categories: [] - last_post_guid: 19d91d422865d52b33337aecfe36affb - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 4 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3e6a00fddf44bba5aa14937db0ce8b4d.md b/content/discover/feed-3e6a00fddf44bba5aa14937db0ce8b4d.md deleted file mode 100644 index 06c4b2c26..000000000 --- a/content/discover/feed-3e6a00fddf44bba5aa14937db0ce8b4d.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Prami -date: "1970-01-01T00:00:00Z" -description: Public posts from @prami@social.lol -params: - feedlink: https://social.lol/@prami.rss - feedtype: rss - feedid: 3e6a00fddf44bba5aa14937db0ce8b4d - websites: - https://social.lol/@prami: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://home.omg.lol/: true - https://prami.love/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3e739f199b602256ca51019085c4fe4f.md b/content/discover/feed-3e739f199b602256ca51019085c4fe4f.md new file mode 100644 index 000000000..1b28b6742 --- /dev/null +++ b/content/discover/feed-3e739f199b602256ca51019085c4fe4f.md @@ -0,0 +1,44 @@ +--- +title: il messaggio di LIFO +date: "2024-07-09T03:15:01Z" +description: Updates from LIFO on Social GL-Como +params: + feedlink: https://social.gl-como.it/feed/lifo/ + feedtype: atom + feedid: 3e739f199b602256ca51019085c4fe4f + websites: + https://social.gl-como.it/profile/lifo: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - LinuxDay2021 + - fediverso + relme: + https://social.gl-como.it/profile/lifo: true + last_post_title: 'Il Fediverso: social network senza secondi fini' + last_post_description: "" + last_post_date: "2021-10-30T09:23:02Z" + last_post_link: https://social.gl-como.it/display/3e3ce0df-1561-7d0e-f650-e7a527893179 + last_post_categories: + - LinuxDay2021 + - fediverso + last_post_language: "" + last_post_guid: 16bb4c7a20b394d08a2aa11da8776d06 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3e7cde756a5ea675c5eeb21ca1bfd4e8.md b/content/discover/feed-3e7cde756a5ea675c5eeb21ca1bfd4e8.md deleted file mode 100644 index bcc95b717..000000000 --- a/content/discover/feed-3e7cde756a5ea675c5eeb21ca1bfd4e8.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Ornithopter Hosting -date: "1970-01-01T00:00:00Z" -description: Public posts from @OrnithopterHosting@hachyderm.io -params: - feedlink: https://hachyderm.io/@OrnithopterHosting.rss - feedtype: rss - feedid: 3e7cde756a5ea675c5eeb21ca1bfd4e8 - websites: - https://hachyderm.io/@OrnithopterHosting: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/approved/: true - https://ornithopterhosting.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3e7d90a551c3db14a5d10a73a30cc3f6.md b/content/discover/feed-3e7d90a551c3db14a5d10a73a30cc3f6.md deleted file mode 100644 index cccc066ff..000000000 --- a/content/discover/feed-3e7d90a551c3db14a5d10a73a30cc3f6.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Katherine Yang -date: "2024-05-24T14:39:57Z" -description: Katherine Yang’s website. -params: - feedlink: https://kayserifserif.place/feed.xml - feedtype: atom - feedid: 3e7d90a551c3db14a5d10a73a30cc3f6 - websites: - https://kayserifserif.place/: true - blogrolls: [] - recommended: [] - recommender: - - https://ttntm.me/blog/feed.xml - - https://ttntm.me/everything.xml - - https://ttntm.me/likes/feed.xml - categories: [] - relme: - https://github.com/kayserifserif: true - last_post_title: Reckless romanticism meets an unchecked corpus - last_post_description: Checking in on my generative poetry bot and some missteps - I've taken, five months in. - last_post_date: "2024-04-14T00:00:00Z" - last_post_link: https://kayserifserif.place/posts/2024/reckless-romanticism - last_post_categories: [] - last_post_guid: 928873be4ebfb5170e5568c511ffc809 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 15 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3e7dac29dc9821b683d0e221f583af32.md b/content/discover/feed-3e7dac29dc9821b683d0e221f583af32.md new file mode 100644 index 000000000..f8d5003bf --- /dev/null +++ b/content/discover/feed-3e7dac29dc9821b683d0e221f583af32.md @@ -0,0 +1,67 @@ +--- +title: Eclipse Ruminations +date: "1970-01-01T00:00:00Z" +description: |- + ruminate (v). 1. To turn a matter over and over in the mind. 2. To chew cud. + + The views displayed here are my own, and do not represent those of my employer. +params: + feedlink: https://eclipse-ruminations.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 3e7dac29dc9821b683d0e221f583af32 + websites: + https://eclipse-ruminations.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ETF + - declarative + - eclipse + - emma + - equinox + - expressions + - ide + - junit + - osgi + - plugin + - team explorer + - testing + - tfs + - visual studio + - windowtester + - xml + relme: + https://eclipse-ruminations.blogspot.com/: true + https://www.blogger.com/profile/10057954087267715667: true + last_post_title: 'Eclipse to Visual Studio 2010: What I''m Missing' + last_post_description: I've recently been spending a lot of my time in Visual Studio + 2010. Having been in Eclipse for many years, the transition has been somewhat + painful. In no particular order, here are the features that + last_post_date: "2010-12-21T20:42:00Z" + last_post_link: https://eclipse-ruminations.blogspot.com/2010/12/eclipse-to-visual-studio-2010-what-im.html + last_post_categories: + - eclipse + - ide + - team explorer + - tfs + - visual studio + last_post_language: "" + last_post_guid: a31078adef6a82f8de3d1c826d8c029a + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3e89855e337107a1c24803193e5892d4.md b/content/discover/feed-3e89855e337107a1c24803193e5892d4.md new file mode 100644 index 000000000..bc493f529 --- /dev/null +++ b/content/discover/feed-3e89855e337107a1c24803193e5892d4.md @@ -0,0 +1,140 @@ +--- +title: Dank are World +date: "2023-11-16T07:53:14-08:00" +description: Dank memes are truly inspire for me therefore i like to share this one + with you. +params: + feedlink: https://sinhalalovesms.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 3e89855e337107a1c24803193e5892d4 + websites: + https://sinhalalovesms.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Dank memes + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Dank Memes + last_post_description: "" + last_post_date: "2020-03-29T03:00:46-07:00" + last_post_link: https://sinhalalovesms.blogspot.com/2020/03/dank-memes.html + last_post_categories: + - Dank memes + last_post_language: "" + last_post_guid: ec786643240a1960cb88831b3df440a1 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3e8efe15321e00739db4e805cd965052.md b/content/discover/feed-3e8efe15321e00739db4e805cd965052.md new file mode 100644 index 000000000..b1b7fab0f --- /dev/null +++ b/content/discover/feed-3e8efe15321e00739db4e805cd965052.md @@ -0,0 +1,44 @@ +--- +title: Cafuego - the eternal pursuit of doing less +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://cafuego.net/rss.xml.php + feedtype: rss + feedid: 3e8efe15321e00739db4e805cd965052 + websites: + https://cafuego.net/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://cafuego.net/: true + https://misanthrope.social/@cafuego: true + last_post_title: Dark Doodad + last_post_description: |- + It's been a while since I did a blog, so after twiddling the way the front page of the site displays, it's time to post a new one. + + The attached photo is of my favourite dark nebula, "The Dark + last_post_date: "2018-11-22T08:30:11Z" + last_post_link: https://cafuego.net/2018/11/22/dark-doodad + last_post_categories: [] + last_post_language: "" + last_post_guid: 583d9d395fdf9f35bdbe9dd07dd6caba + score_criteria: + cats: 0 + description: 0 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 11 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-3e95721ee747e56a6c19294597d98498.md b/content/discover/feed-3e95721ee747e56a6c19294597d98498.md deleted file mode 100644 index e93ae0d95..000000000 --- a/content/discover/feed-3e95721ee747e56a6c19294597d98498.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: simply. -date: "2024-06-01T11:47:28Z" -description: "" -params: - feedlink: https://simply.joejenett.com/feed.atom - feedtype: atom - feedid: 3e95721ee747e56a6c19294597d98498 - websites: - https://simply.joejenett.com/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: whataya mean - pulled a Jack? - last_post_description: "" - last_post_date: "2024-05-28T12:52:06Z" - last_post_link: https://simply.jenett.org/whataya-mean-pulled-a-jack/ - last_post_categories: [] - last_post_guid: 9c3e386fca8bd500a04d09c54ff4ba86 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 4 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3ea5d7554911af902b7244b3b357571f.md b/content/discover/feed-3ea5d7554911af902b7244b3b357571f.md index 91102a2b9..e81da248a 100644 --- a/content/discover/feed-3ea5d7554911af902b7244b3b357571f.md +++ b/content/discover/feed-3ea5d7554911af902b7244b3b357571f.md @@ -12,31 +12,33 @@ params: recommender: - https://frankmeeuwsen.com/feed.xml categories: - - The Big Here - - Environment - - Civilization - - Globalization + - Announcements + - The Interval relme: {} - last_post_title: Seeing the Trees for the Forest - last_post_description: How to go from one world to one planet - last_post_date: "2024-05-02T17:29:10Z" - last_post_link: https://longnow.org/ideas/bioregional-futures/ + last_post_title: Celebrating The Interval’s Decennial + last_post_description: Long Now’s bar, cafe, and event space in San Francisco turns + ten — and it’s getting even better with age. + last_post_date: "2024-06-20T02:45:58Z" + last_post_link: https://longnow.org/ideas/interval-decennial/ last_post_categories: - - The Big Here - - Environment - - Civilization - - Globalization - last_post_guid: c6bd2284facf9a97025aaebd56eed6db + - Announcements + - The Interval + last_post_language: "" + last_post_guid: a5a6815fb79e470f724f7b7f30a03457 score_criteria: cats: 0 description: 0 - postcats: 3 + feedlangs: 0 + postcats: 2 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 11 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-3eafa10290fd6aedce327487643a7bf0.md b/content/discover/feed-3eafa10290fd6aedce327487643a7bf0.md deleted file mode 100644 index 267003f20..000000000 --- a/content/discover/feed-3eafa10290fd6aedce327487643a7bf0.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: tommi -date: "1970-01-01T00:00:00Z" -description: Public posts from @tomashaarde@vivaldi.net -params: - feedlink: https://social.vivaldi.net/@tomashaarde.rss - feedtype: rss - feedid: 3eafa10290fd6aedce327487643a7bf0 - websites: - https://social.vivaldi.net/@tomashaarde: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://vivaldi.com/team/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3eb333a179a7c3abc342013e1091d18b.md b/content/discover/feed-3eb333a179a7c3abc342013e1091d18b.md index 005e8b710..aa2ae6a0b 100644 --- a/content/discover/feed-3eb333a179a7c3abc342013e1091d18b.md +++ b/content/discover/feed-3eb333a179a7c3abc342013e1091d18b.md @@ -13,39 +13,55 @@ params: - http://scripting.com/rss.xml - http://scripting.com/rssNightly.xml categories: + - Apple + - Digital Markets Act + - EU + - Epic Games + - European Commission + - Gaming - Tech - - copilot+ PC - - Intel - - intel core - - lunar lake - - meteor lake - - NPU + - Tim Sweeney + - alternative app stores + - apple + - european union + - iOS + - sideloading relme: {} - last_post_title: Intel details new Lunar Lake CPUs that will go up against AMD, - Qualcomm, and Apple - last_post_description: Lunar Lake returns to a more conventional-looking design - for Intel. - last_post_date: "2024-06-04T03:00:55Z" - last_post_link: https://arstechnica.com/?p=2028454 + last_post_title: After two rejections, Apple approves Epic Games Store app for iOS + last_post_description: European iOS users will see the alternative app store launch + sometime soon. + last_post_date: "2024-07-08T21:30:16Z" + last_post_link: https://arstechnica.com/?p=2035658 last_post_categories: + - Apple + - Digital Markets Act + - EU + - Epic Games + - European Commission + - Gaming - Tech - - copilot+ PC - - Intel - - intel core - - lunar lake - - meteor lake - - NPU - last_post_guid: b38bfb4fa905faf7739058624a183a9e + - Tim Sweeney + - alternative app stores + - apple + - european union + - iOS + - sideloading + last_post_language: "" + last_post_guid: 860dffe35ad2f51560c35e8529164837 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 14 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-3eb9a17af4b32c9d6f2189a38501d441.md b/content/discover/feed-3eb9a17af4b32c9d6f2189a38501d441.md new file mode 100644 index 000000000..288f1c499 --- /dev/null +++ b/content/discover/feed-3eb9a17af4b32c9d6f2189a38501d441.md @@ -0,0 +1,49 @@ +--- +title: The Trouble with Tribbles... +date: "2024-07-08T22:08:13+01:00" +description: "" +params: + feedlink: https://ptribble.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 3eb9a17af4b32c9d6f2189a38501d441 + websites: + https://ptribble.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - jkstat + - opensolaris + - solaris + - solaris graphics nvidia + - solview + - sun + relme: + https://petertribble.blogspot.com/: true + https://ptribble.blogspot.com/: true + https://tribblix.blogspot.com/: true + https://www.blogger.com/profile/09363446984245451854: true + last_post_title: Tribblix image structural changes + last_post_description: "" + last_post_date: "2024-04-03T17:30:14+01:00" + last_post_link: https://ptribble.blogspot.com/2024/04/tribblix-image-structural-changes.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 583e3440e03fd20e1a04c78c3edf6e76 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3ed4202b09d00bda6e761131c914521a.md b/content/discover/feed-3ed4202b09d00bda6e761131c914521a.md index a2d6c94ac..e3f77efef 100644 --- a/content/discover/feed-3ed4202b09d00bda6e761131c914521a.md +++ b/content/discover/feed-3ed4202b09d00bda6e761131c914521a.md @@ -1,44 +1,44 @@ --- title: Farai's RSS Feed date: "1970-01-01T00:00:00Z" -description: "" +description: The personal website of the man known as Farai params: feedlink: https://im.farai.xyz/feed.rss.xml feedtype: rss feedid: 3ed4202b09d00bda6e761131c914521a - websites: - https://im.farai.xyz/: true + websites: {} blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: [] relme: {} - last_post_title: Why I Hate Nonsense Brands - last_post_description: The biggest reason as to why I nonsense brand products or - worse brand less products is that I can’t look them up. This is by design since - having a distinct brand makes it easy to point you out and - last_post_date: "2024-06-01T06:00:00+02:00" - last_post_link: https://im.farai.xyz/micro/hate-nonsense-brands/ + last_post_title: A Good Reason To Post Screenshots of Text Instead of Actual Text + last_post_description: I was reading Hannah Ritche’s blog post on how many lithium + ion batteries are recycled. The main gist is that the widley cited 5% figure is + the result of a lot of broken telephone rather than any + last_post_date: "2024-06-30T21:06:48+02:00" + last_post_link: https://im.farai.xyz/blog/not-quoting/ last_post_categories: [] - last_post_guid: 79b366513557b1022e1284b633f36308 + last_post_language: "" + last_post_guid: dbe16d929c5e8abfff72f4dc22d5d36d score_criteria: cats: 0 - description: 0 + description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 - website: 2 - score: 10 + website: 0 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-3ee3f7bffe687e2cc13d101304784e9e.md b/content/discover/feed-3ee3f7bffe687e2cc13d101304784e9e.md new file mode 100644 index 000000000..e9d250bbe --- /dev/null +++ b/content/discover/feed-3ee3f7bffe687e2cc13d101304784e9e.md @@ -0,0 +1,43 @@ +--- +title: Research Blog +date: "2024-03-05T19:50:45-08:00" +description: "" +params: + feedlink: https://haskellresearchblog.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 3ee3f7bffe687e2cc13d101304784e9e + websites: + https://haskellresearchblog.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://chrismbrown.blogspot.com/: true + https://exploringmusicality.blogspot.com/: true + https://haskellresearchblog.blogspot.com/: true + https://www.blogger.com/profile/16371443231577684670: true + last_post_title: Orbits of Finite Fields + last_post_description: "" + last_post_date: "2010-09-22T02:37:25-07:00" + last_post_link: https://haskellresearchblog.blogspot.com/2010/09/orbits-of-finite-fields.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 0e126b6d8776eee9fe8963443feebf98 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3eeefff0d0ce1b77640d7dc8d79fa6eb.md b/content/discover/feed-3eeefff0d0ce1b77640d7dc8d79fa6eb.md deleted file mode 100644 index 6c4e21386..000000000 --- a/content/discover/feed-3eeefff0d0ce1b77640d7dc8d79fa6eb.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: remy sharp's b:log -date: "1970-01-01T00:00:00Z" -description: About [code] and all that jazz -params: - feedlink: https://remysharp.com/blog.xml - feedtype: rss - feedid: 3eeefff0d0ce1b77640d7dc8d79fa6eb - websites: - https://remysharp.com/: true - https://remysharp.com/books: false - https://remysharp.com/speaking/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://flickr.com/photos/remysharp: false - https://front-end.social/@rem: true - https://github.com/remy: true - https://github.com/remy/: true - https://leftlogic.com/: false - https://remysharp.com/books: false - https://remysharp.com/speaking/: false - https://twitter.com/rem: false - https://www.twitch.tv/remysharp: false - last_post_title: Casio f-91w Modding - last_post_description: I do love my Pebble mostly because it still uses tactile - buttons and it's a slim watch. Though recently I saw that Casio offered a design - in a bright orange colour (and then found a multitude of - last_post_date: "2024-05-25T00:00:00Z" - last_post_link: https://remysharp.com/2024/05/25/casio-f91w-modding - last_post_categories: [] - last_post_guid: 1ad28015e20fd409fec2846d82eae42e - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3f065b1aabb352dcd5a60a6520838ef5.md b/content/discover/feed-3f065b1aabb352dcd5a60a6520838ef5.md new file mode 100644 index 000000000..8f52984ff --- /dev/null +++ b/content/discover/feed-3f065b1aabb352dcd5a60a6520838ef5.md @@ -0,0 +1,48 @@ +--- +title: 'DEV Community: Aman Kumar' +date: "1970-01-01T00:00:00Z" +description: The latest articles on DEV Community by Aman Kumar (@amankrx). +params: + feedlink: https://dev.to/feed/amankrx + feedtype: rss + feedid: 3f065b1aabb352dcd5a60a6520838ef5 + websites: + https://dev.to/amankrx: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - conference + - gnome + - opensource + relme: + https://dev.to/amankrx: true + last_post_title: Reflections on GNOME .Asia Summit 2022 + last_post_description: "Recently, I got an opportunity to attend GNOME Asia Summit + 2022 held in Kuala Lumpur. And it was an experience that I'll never forget. \n\nIt + was my first time attending an in-person conference. I was" + last_post_date: "2023-01-09T20:46:17Z" + last_post_link: https://dev.to/amankrx/reflections-on-gnome-asia-summit-2022-4fj6 + last_post_categories: + - conference + - gnome + - opensource + last_post_language: "" + last_post_guid: 51e2d91e161a9e002275578c25b28ad7 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-3f21dfb53e1d102a0f9c84a8a3cc151a.md b/content/discover/feed-3f21dfb53e1d102a0f9c84a8a3cc151a.md new file mode 100644 index 000000000..edf33e1f6 --- /dev/null +++ b/content/discover/feed-3f21dfb53e1d102a0f9c84a8a3cc151a.md @@ -0,0 +1,48 @@ +--- +title: Tim Hårek +date: "2024-07-03T00:00:00Z" +description: A technologist from Norway that cares about creating solutions that respects + people's privacy, security and user experience. +params: + feedlink: https://timharek.no/feed.xml + feedtype: atom + feedid: 3f21dfb53e1d102a0f9c84a8a3cc151a + websites: + https://timharek.no/: false + blogrolls: [] + recommended: [] + recommender: + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php + categories: + - AI + - Email + - Rant + relme: {} + last_post_title: I received an AI email + last_post_description: "" + last_post_date: "2024-07-03T00:00:00Z" + last_post_link: https://timharek.no/blog/i-received-an-ai-email + last_post_categories: + - AI + - Email + - Rant + last_post_language: "" + last_post_guid: 0c080d85de54247491aef3b59968edd0 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 1 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-3f2c7b44721678e658d0fa3319e30f53.md b/content/discover/feed-3f2c7b44721678e658d0fa3319e30f53.md new file mode 100644 index 000000000..770910ece --- /dev/null +++ b/content/discover/feed-3f2c7b44721678e658d0fa3319e30f53.md @@ -0,0 +1,42 @@ +--- +title: Idéias Fugazes +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://ideiasfugazes.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 3f2c7b44721678e658d0fa3319e30f53 + websites: + https://ideiasfugazes.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://ideiasfugazes.blogspot.com/: true + last_post_title: Habilitando outras regiões no Coby TF-DVD7100 + last_post_description: Registrado para não esquecer... Achei essa dica de DVD Region + Hack for PRISM TF-DVD7100". O Prism na Inglaterra é o mesmo aparelho que o Coby, + muito popular no Brasil."With no disc in player:On the + last_post_date: "2007-01-28T13:44:00Z" + last_post_link: https://ideiasfugazes.blogspot.com/2007/01/dvd-reviewer-hack-help-forum-topic-is.html + last_post_categories: [] + last_post_language: "" + last_post_guid: ea0604021ccf194cd9b872a0031952b6 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3f2cf1e03f0b1fa4001033f9fb581c6e.md b/content/discover/feed-3f2cf1e03f0b1fa4001033f9fb581c6e.md deleted file mode 100644 index 6e24175db..000000000 --- a/content/discover/feed-3f2cf1e03f0b1fa4001033f9fb581c6e.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Chris Wiegman -date: "1970-01-01T00:00:00Z" -description: Public posts from @chris@mastodon.chriswiegman.com -params: - feedlink: https://mastodon.chriswiegman.com/@chris.rss - feedtype: rss - feedid: 3f2cf1e03f0b1fa4001033f9fb581c6e - websites: - https://mastodon.chriswiegman.com/@chris: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://chriswiegman.com/: true - https://github.com/ChrisWiegman: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3f2e167a43b5f420d83980a6b39bcdaa.md b/content/discover/feed-3f2e167a43b5f420d83980a6b39bcdaa.md deleted file mode 100644 index b01d12aee..000000000 --- a/content/discover/feed-3f2e167a43b5f420d83980a6b39bcdaa.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: The Perl NOC -date: "1970-01-01T00:00:00Z" -description: the perl.org infrastructure weblog! -params: - feedlink: https://log.perl.org/feeds/posts/default?alt=rss - feedtype: rss - feedid: 3f2e167a43b5f420d83980a6b39bcdaa - websites: - https://log.perl.org/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - cpansearch - - cpanratings - relme: {} - last_post_title: Thanks Fastly! - last_post_description: We've fallen out of the habit of regularly thanking the companies - that sponsor us.  (We appreciate all of you!)Today, we're thankful for Fastly, - whose CDN helps keep perl.org and cpan.org fast and - last_post_date: "2024-06-13T20:30:00Z" - last_post_link: https://log.perl.org/2024/06/thanks-fastly.html - last_post_categories: [] - last_post_guid: 8272c9774b7036d08710374e76cdbc95 - score_criteria: - cats: 2 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3f3d7e16aa487c4beaf8c12da91bec63.md b/content/discover/feed-3f3d7e16aa487c4beaf8c12da91bec63.md deleted file mode 100644 index 6a45096bc..000000000 --- a/content/discover/feed-3f3d7e16aa487c4beaf8c12da91bec63.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Kev Quirk -date: "1970-01-01T00:00:00Z" -description: Public posts from @kevquirk@social.lol -params: - feedlink: https://social.lol/@kevquirk.rss - feedtype: rss - feedid: 3f3d7e16aa487c4beaf8c12da91bec63 - websites: - https://social.lol/@kevquirk: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://fosstodon.org/@kev: true - https://kevquirk.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3f3f091b8fde1974c7b3fb5546657583.md b/content/discover/feed-3f3f091b8fde1974c7b3fb5546657583.md new file mode 100644 index 000000000..b0005aa5f --- /dev/null +++ b/content/discover/feed-3f3f091b8fde1974c7b3fb5546657583.md @@ -0,0 +1,53 @@ +--- +title: BioclipseBlog +date: "2024-03-13T00:21:12+01:00" +description: A blog dedicated to Bioclipse - a workbench for life science +params: + feedlink: https://bioclipse.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 3f3f091b8fde1974c7b3fb5546657583 + websites: + https://bioclipse.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - R + - bioclipse + - bioclipse2 + - conference + - echoing + - http://www.blogger.com/img/gl.link.gif + - javascript + - poster + - release + - scripting + - sot + - threading + relme: + https://bioclipse.blogspot.com/: true + https://www.blogger.com/profile/10379047094508592338: true + last_post_title: Bioclipse 2.6 released + last_post_description: "" + last_post_date: "2012-12-22T00:47:45+01:00" + last_post_link: https://bioclipse.blogspot.com/2012/12/bioclipse-26-released.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 49f9eded7a2716cf424d2d8b078e941a + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3f46677443c6a7a7b0ad308503cbb43f.md b/content/discover/feed-3f46677443c6a7a7b0ad308503cbb43f.md new file mode 100644 index 000000000..bdebfe885 --- /dev/null +++ b/content/discover/feed-3f46677443c6a7a7b0ad308503cbb43f.md @@ -0,0 +1,47 @@ +--- +title: Blog - Simon Vieille +date: "1970-01-01T00:00:00Z" +description: DevOp animé par la culture du libre et du hacking +params: + feedlink: https://www.deblan.io/RSS + feedtype: rss + feedid: 3f46677443c6a7a7b0ad308503cbb43f + websites: + https://www.deblan.io/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Politique + relme: + https://github.com/simmstein: true + https://gitnet.fr/deblan: true + https://mamot.fr/@deblan: true + https://www.deblan.io/: true + last_post_title: Pour une France non fasciste ! + last_post_description: Lors des denières élections Européennes, la vague du Rassemblement + Nationale a balayé l'idée d'une France ouverte et digne. Ici et là, nous entendons + les raisons pour lesquelles les gens ont + last_post_date: "2024-06-15T15:00:00+02:00" + last_post_link: https://www.deblan.io/post/665/pour-une-france-non-fasciste + last_post_categories: + - Politique + last_post_language: "" + last_post_guid: fe45704f9de998e868225289848ede60 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: fr +--- diff --git a/content/discover/feed-3f5ba5a5451cfa1fab90ff1e306bf7f9.md b/content/discover/feed-3f5ba5a5451cfa1fab90ff1e306bf7f9.md deleted file mode 100644 index ed887ab36..000000000 --- a/content/discover/feed-3f5ba5a5451cfa1fab90ff1e306bf7f9.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: The Ethically-Trained Programmer -date: "1970-01-01T00:00:00Z" -description: Recent content on The Ethically-Trained Programmer -params: - feedlink: https://blog.carlana.net/index.xml - feedtype: rss - feedid: 3f5ba5a5451cfa1fab90ff1e306bf7f9 - websites: - https://blog.carlana.net/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://carlana.net/: false - https://github.com/earthboundkid/: false - https://lobste.rs/newest/carlana: false - last_post_title: Five Years Running a News Site on JAMStack - last_post_description: I started working as the Director of Technology at Spotlight - PA the Tuesday after Memorial Day, 2019, over five years ago. There have been - a lot of changes in technology, journalism, and the world - last_post_date: "2024-05-29T20:00:00-04:00" - last_post_link: https://blog.carlana.net/post/2024/spotlight-pa-jamstack-history/ - last_post_categories: [] - last_post_guid: 731f38a184bc2dbcc4cbd0c74dd762b6 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3f67408d544998a5a344741bee554656.md b/content/discover/feed-3f67408d544998a5a344741bee554656.md index 7433392e7..91240bcca 100644 --- a/content/discover/feed-3f67408d544998a5a344741bee554656.md +++ b/content/discover/feed-3f67408d544998a5a344741bee554656.md @@ -1,6 +1,6 @@ --- title: LewisDale.dev -date: "2024-06-03T07:22:26Z" +date: "2024-06-28T09:33:33Z" description: "" params: feedlink: https://lewisdale.dev/atom.xml @@ -12,31 +12,38 @@ params: recommended: [] recommender: [] categories: + - BikeTooter - cycling relme: - https://bookrastinating.com/user/lewisdaleuk: false https://github.com/LewisDaleUK: true https://lewisdale.dev/: true https://proven.lol/f730ca: true https://social.lol/@lewis: true - last_post_title: Trying out a cycling club - last_post_description: I went for a trial ride with a local cycling club yesterday, - after pretty much exclusively riding alone for the last two years - last_post_date: "2024-06-03T07:22:26Z" - last_post_link: https://lewisdale.dev/post/trying-out-a-cycling-club/ + last_post_title: Upgrading my tyres and tubes + last_post_description: After never really wanting to spend the extra money, I finally + replaced my stock Continental Ultra Sport III tyres with Continental Grand Prix + 5000, and I was blown away. + last_post_date: "2024-06-28T09:33:33Z" + last_post_link: https://lewisdale.dev/post/upgrading-my-tyres-and-tubes/ last_post_categories: + - BikeTooter - cycling - last_post_guid: df6e2b6479957693fc7aec2d2cbead19 + last_post_language: "" + last_post_guid: 9e5752ed370e3328c34710709592842e score_criteria: cats: 0 description: 0 - postcats: 1 + feedlangs: 0 + postcats: 2 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 8 + score: 12 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-3f7be4c6a53dbc08c1a934d9fccb6076.md b/content/discover/feed-3f7be4c6a53dbc08c1a934d9fccb6076.md new file mode 100644 index 000000000..fdc0793b0 --- /dev/null +++ b/content/discover/feed-3f7be4c6a53dbc08c1a934d9fccb6076.md @@ -0,0 +1,49 @@ +--- +title: Aprenent català +date: "1970-01-01T00:00:00Z" +description: Studying Catalan +params: + feedlink: https://aprenent.wordpress.com/feed/ + feedtype: rss + feedid: 3f7be4c6a53dbc08c1a934d9fccb6076 + websites: + https://aprenent.wordpress.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - politics + relme: + https://aharoni.wordpress.com/: true + https://aprenent.wordpress.com/: true + https://haharoni.wordpress.com/: true + https://hasagot.wordpress.com/: true + https://meta.wikimedia.org/wiki/User:Amire80: true + https://wikis.world/@aharoni: true + last_post_title: Why I Support the October 1 Catalan Referendum + last_post_description: When in the course of human events a person makes potentially + divisive political statements, especially a person who lives in another country, + a decent respect to the opinions of mankind requires + last_post_date: "2017-09-27T09:22:42Z" + last_post_link: https://aprenent.wordpress.com/2017/09/27/why-i-support-the-october-1-catalan-referendum/ + last_post_categories: + - politics + last_post_language: "" + last_post_guid: fdbe512505026d7be9583348edd16fa0 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-3f7fe16b83d0cb237b1dac0f7e1564b8.md b/content/discover/feed-3f7fe16b83d0cb237b1dac0f7e1564b8.md new file mode 100644 index 000000000..03a0e6ca1 --- /dev/null +++ b/content/discover/feed-3f7fe16b83d0cb237b1dac0f7e1564b8.md @@ -0,0 +1,57 @@ +--- +title: Python для себя +date: "2024-05-11T00:52:35-07:00" +description: Заметки от изучающего язык программирования Python +params: + feedlink: https://pythonfm.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 3f7fe16b83d0cb237b1dac0f7e1564b8 + websites: + https://pythonfm.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Django + - IDE + - Python + - git + - venv + - Боты + - Допматериалы + - Книги + - видео + - виртуальное окружение + - курсы + - модули + relme: + https://antilibreoffice.blogspot.com/: true + https://libreoffice-dev.blogspot.com/: true + https://pythonfm.blogspot.com/: true + https://www.blogger.com/profile/11694297935288423889: true + last_post_title: Некоторые полезные модули Python + last_post_description: "" + last_post_date: "2024-05-08T02:42:34-07:00" + last_post_link: https://pythonfm.blogspot.com/2024/05/python.html + last_post_categories: + - Python + - модули + last_post_language: "" + last_post_guid: 5585b67ca99d5b29af4d5957291f3a30 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-3f8efd188dd83f1313ed569b249581f6.md b/content/discover/feed-3f8efd188dd83f1313ed569b249581f6.md deleted file mode 100644 index 3eaa2a444..000000000 --- a/content/discover/feed-3f8efd188dd83f1313ed569b249581f6.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: 'Antonio Cambronero :wordpress:' -date: "1970-01-01T00:00:00Z" -description: Publicaciones públicas de @acambronero@federate.blogpocket.com -params: - feedlink: https://federate.blogpocket.com/@acambronero.rss - feedtype: rss - feedid: 3f8efd188dd83f1313ed569b249581f6 - websites: - https://federate.blogpocket.com/@acambronero: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://creativecommons.org/licenses/by-nc-sa/4.0/: false - https://twittodon.com/share.php?m=acambronero%40federate.blogpocket.com&t=blogpocket: true - https://www.blogpocket.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-3f9eef773817e51194241f07076e3623.md b/content/discover/feed-3f9eef773817e51194241f07076e3623.md new file mode 100644 index 000000000..3f532a34c --- /dev/null +++ b/content/discover/feed-3f9eef773817e51194241f07076e3623.md @@ -0,0 +1,41 @@ +--- +title: Idle Words +date: "1970-01-01T00:00:00Z" +description: Brevity is for the weak +params: + feedlink: https://idlewords.com/index.xml + feedtype: rss + feedid: 3f9eef773817e51194241f07076e3623 + websites: + https://idlewords.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://roytang.net/blog/feed/rss/ + categories: [] + relme: {} + last_post_title: The Lunacy of Artemis + last_post_description: | + In August 2020, the New York Times asked me to write an op-ed for a special feature on authoritarianism and democracy. They declined to publish my submission, which I am sharing here instead. + last_post_date: "2024-05-19T09:09:00-07:00" + last_post_link: https://idlewords.com/2024/5/the_lunacy_of_artemis.htm + last_post_categories: [] + last_post_language: "" + last_post_guid: 1c22a69fd7969743503beea6c3fc07b1 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-3fc1baa99364339b2ea27387b60a4dc8.md b/content/discover/feed-3fc1baa99364339b2ea27387b60a4dc8.md new file mode 100644 index 000000000..e3dc94e72 --- /dev/null +++ b/content/discover/feed-3fc1baa99364339b2ea27387b60a4dc8.md @@ -0,0 +1,64 @@ +--- +title: Life Is Too Short For Bad Code +date: "1970-01-01T00:00:00Z" +description: Random musings about programming, software, technical interviews, and + of course Emacs - a tip every week for new and experienced users. +params: + feedlink: https://trey-jackson.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 3fc1baa99364339b2ea27387b60a4dc8 + websites: + https://trey-jackson.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - C++ + - abstraction + - book + - education + - emacs + - emacs-advanced + - emacs-basic + - emacs-intermediate + - emacs-lisp + - emacs-tip + - email + - html + - interview + - language + - link + - lisp + - meta + - opensource + - shell + - stackoverflow + - vnc + - web + relme: + https://trey-jackson.blogspot.com/: true + last_post_title: I'm so out of it + last_post_description: "" + last_post_date: "2018-08-08T14:56:00Z" + last_post_link: https://trey-jackson.blogspot.com/2018/08/im-so-out-of-it.html + last_post_categories: + - emacs + last_post_language: "" + last_post_guid: 39c655eda6680e9c4d4ff5117867d974 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4019c5766d0795ce440dc3d5ed4ab7c8.md b/content/discover/feed-4019c5766d0795ce440dc3d5ed4ab7c8.md deleted file mode 100644 index ed2c56188..000000000 --- a/content/discover/feed-4019c5766d0795ce440dc3d5ed4ab7c8.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Comments for Random ASCII – tech blog of Bruce Dawson -date: "1970-01-01T00:00:00Z" -description: 'Forecast for randomascii: programming, tech topics, with a chance of - unicycling' -params: - feedlink: https://randomascii.wordpress.com/comments/feed/ - feedtype: rss - feedid: 4019c5766d0795ce440dc3d5ed4ab7c8 - websites: - https://randomascii.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on There are Only Four Billion Floats–So Test Them All! - by Floating Point Data Types and Computations – Secure Design – Opinion - last_post_description: '[…] There is another overlooked fact. The float data type - has 32 bit of storage. This means you can use 4 billions different bit combinations, - which is not a lot. Looping through all values and' - last_post_date: "2024-05-06T22:19:03Z" - last_post_link: https://randomascii.wordpress.com/2014/01/27/theres-only-four-billion-floatsso-test-them-all/#comment-104760 - last_post_categories: [] - last_post_guid: ecf1bd2f5f4a91d089e6da32d08a033b - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-401a70663b665f762660fc58a8d5118f.md b/content/discover/feed-401a70663b665f762660fc58a8d5118f.md new file mode 100644 index 000000000..300bccf20 --- /dev/null +++ b/content/discover/feed-401a70663b665f762660fc58a8d5118f.md @@ -0,0 +1,139 @@ +--- +title: DDosing Vs 5G +date: "2024-03-13T23:49:40-07:00" +description: Ddosing is not better then 5g. +params: + feedlink: https://lumierefilms.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 401a70663b665f762660fc58a8d5118f + websites: + https://lumierefilms.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Ddosing vs 5g let see. + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Ddosing Vs 5G + last_post_description: "" + last_post_date: "2021-04-25T13:09:44-07:00" + last_post_link: https://lumierefilms.blogspot.com/2021/04/ddosing-vs-5g.html + last_post_categories: + - Ddosing vs 5g let see. + last_post_language: "" + last_post_guid: 417b0e1b2c09b6f0cb39ca1372014956 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-40265f63c632c95ff1ac2abd3616df71.md b/content/discover/feed-40265f63c632c95ff1ac2abd3616df71.md index a187c74f9..d962c57c9 100644 --- a/content/discover/feed-40265f63c632c95ff1ac2abd3616df71.md +++ b/content/discover/feed-40265f63c632c95ff1ac2abd3616df71.md @@ -14,7 +14,16 @@ params: - https://alexsci.com/blog/rss.xml categories: [] relme: + https://ahf.me/: true + https://ahf.me/contact/: true + https://github.com/kushaldas: true + https://github.com/sporksmith/: true + https://hachyderm.io/@sporksmith: true + https://kushaldas.in/: true + https://mastodon.social/@ahf: true + https://mastodon.social/@jacobonajera: true https://toots.dgplug.org/@kushal: true + https://www.torproject.org/about/people/: true last_post_title: Securing via systemd, a story last_post_description: |- Last night I deployed a https://writefreely.org based blog and secured it with @@ -24,17 +33,22 @@ params: last_post_date: "2024-02-29T12:36:36+01:00" last_post_link: https://kushaldas.in/posts/securing-via-systemd-a-story.html last_post_categories: [] + last_post_language: "" last_post_guid: 527aaf0609af20406428f147223e9bca score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-404f2565c7f6b81cc012be8f7560321c.md b/content/discover/feed-404f2565c7f6b81cc012be8f7560321c.md index 3ab196bda..502b41002 100644 --- a/content/discover/feed-404f2565c7f6b81cc012be8f7560321c.md +++ b/content/discover/feed-404f2565c7f6b81cc012be8f7560321c.md @@ -14,31 +14,38 @@ params: recommender: - https://frankmeeuwsen.com/feed.xml - https://joeross.me/feed.xml + - https://roytang.net/blog/feed/rss/ categories: [] relme: https://about.werd.io/: true - https://newsletter.werd.io/: false + https://github.com/benwerd: true + https://newsletter.werd.io/: true + https://werd.io/: true + https://werd.io/content/bookmarkedpages: true https://werd.social/@ben: true - https://www.linkedin.com/in/benwerd: false - https://www.threads.net/@ben.werdmuller: false - last_post_title: Protecting artists on the fediverse - last_post_description: Over the weekend, I started to notice a bunch of artists - moving to Cara, a social network for artists founded by Jingna Zhang, herself - an accomplished photographer.The fediverse is a decentralized - last_post_date: "2024-06-03T14:34:11Z" - last_post_link: https://werd.io/2024/protecting-artists-on-the-fediverse + last_post_title: What matters + last_post_description: The only goal that really matters is building a stable, informed, + democratic, inclusive, equitable, peaceful society where everyone has the opportunity + to live a good life. One where we care for our + last_post_date: "2024-07-08T15:30:28Z" + last_post_link: https://werd.io/2024/what-matters-1 last_post_categories: [] - last_post_guid: 9ce911b2d13deec518e7e43322882cb0 + last_post_language: "" + last_post_guid: 4ff2be7182b644a5a77af8f5878e4802 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 19 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-40587b897ee4bb19424fce7f1a6842a7.md b/content/discover/feed-40587b897ee4bb19424fce7f1a6842a7.md deleted file mode 100644 index 26bcb2207..000000000 --- a/content/discover/feed-40587b897ee4bb19424fce7f1a6842a7.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Simon Willison -date: "1970-01-01T00:00:00Z" -description: Public posts from @simon@simonwillison.net -params: - feedlink: https://fedi.simonwillison.net/@simon.rss - feedtype: rss - feedid: 40587b897ee4bb19424fce7f1a6842a7 - websites: - https://fedi.simonwillison.net/@simon: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://simonw.github.io/: true - https://simonwillison.net/: true - https://til.simonwillison.net/: true - https://twitter.com/simonw: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-40671c3e1bea3caa20034e398f75b18d.md b/content/discover/feed-40671c3e1bea3caa20034e398f75b18d.md new file mode 100644 index 000000000..4ad19c17e --- /dev/null +++ b/content/discover/feed-40671c3e1bea3caa20034e398f75b18d.md @@ -0,0 +1,371 @@ +--- +title: Genealogy +date: "1970-01-01T00:00:00Z" +description: Links, advice and articles collected and up-dated. New links and feedback + always welcome. Click for -=INDEX=- Mastodon, Twitter +params: + feedlink: https://genweblog.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 40671c3e1bea3caa20034e398f75b18d + websites: + https://genweblog.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 23&me + - 23andme + - Alsace + - Alsatian + - Ancestry + - Ancestry.com + - Armistice Day + - Army nurse + - Australia + - Autosomal DNA + - BMD + - BMDs + - Bas-Rhin + - Baysinger + - Belfort + - Bitche + - Blake + - Booth + - Boyd + - British + - Buller + - CSS + - Callaway + - Canada + - Canada West + - Celtic + - Conaway + - Conferate + - Conway + - Cowan + - DAR + - DNA + - Dane + - Danish + - Danmark + - Death records + - Denmark + - Disney + - Ellis Island + - England + - Europe + - FHC + - FHL + - FTdna + - Family History Library + - FamilySearch + - FamilyTreeDNA + - Ferguson + - FindAGrave + - France + - French + - GEDCOM + - GPS + - Genealogical Proof Standard + - Genetic Genealogy in Practice + - Ger + - German + - German research + - Germany + - Goosic + - Gothic + - Gramps + - Great Hunger + - Harbottle + - Haut-Rhin + - Holden + - Hollingsworth + - Holocaust + - ISOGG + - Ireland + - Jack + - Jamieson + - Jewish + - LDS + - Linkpendium + - Lorraine + - Lothringen + - Lutheran + - Massachusetts + - McAninch + - McBee + - McFarland + - McPhatter + - Meuse + - MitoYdna + - Mormon + - Moselle + - MyHeritage + - NARA + - Naismith + - Norwegian + - Ontario + - POW + - Pfalz + - Potato Famine + - Promethease + - Puritans + - Purple Heart + - Puslinch + - Quebec + - Robertson + - Rootsweb + - Rootsweb mail lists archives search + - Roszell + - SKCGS + - Sawyer + - Scandanavian + - Schell + - Scotch-Irish + - Scotland + - Scots + - Scottish + - Seattle + - Security + - Selkirkshire + - South Carolina + - Suseberry + - Sutterlin + - Sweden + - Swedish + - Thomas W. Jones + - Triplett + - US + - UW + - Union + - Upper Canada + - Veteran's Day + - Vosges + - WWI + - WWII + - Wainman + - Walters + - Warren County Iowa + - Washington State + - Washington State GS + - Whitby + - Wikitree + - YFull + - abbreviations + - accreditation + - acronyms + - address + - alphabet + - anthropology + - archaeology + - archive + - archive.org + - archives + - arhives + - atlas + - auDNA + - authoring + - backup + - biography + - birth + - blogs + - book + - burial records + - carte-de-viste + - cartography + - casualties + - catalog + - cemeteries + - census + - certification + - charts + - cholera + - chromosome + - churchbooks + - citations + - city directory + - civil war + - classes + - communes + - communication + - conclusion + - counties + - cousins + - death + - decipher + - design + - directories + - directory + - disasters + - disease + - divorce + - documents + - draft + - education + - email + - emigration + - enlistment + - enumeration + - epidemics + - ethics + - eudora + - evidence + - exhaustive research + - facts + - family history + - family research + - federal + - firefox + - firewall + - flu + - foreign + - forms + - forum + - free + - friends + - gazeteer + - gazeteers + - gazetteer + - gedmatch + - genealogy + - genetics + - genocide + - genome + - google + - graphics + - gravestones + - handwriting + - history + - html + - humanities + - immigrants + - immigration + - index + - influenza + - international + - jewish research + - knoppix + - land records + - language + - lectures + - linux + - list + - list archives + - lists + - literature + - locality + - maps + - marriage + - medicine + - message boards + - microfiche + - microfilm + - military + - mitosearch + - mozilla + - mtDNA + - mysteries + - naturalization + - newspapers + - newsreaders + - obituaries + - office + - opera + - organization + - original + - orphan + - paleography + - passenger lists + - pc + - pegasus + - periodicals + - photo + - podcasts + - popup + - portaits + - preservation + - primary + - professional + - proof + - prosopography + - public records + - questions + - racism + - railroad + - relatives + - research + - restoration + - scholar + - scholarship + - script + - search + - search engine + - sex + - ships + - slave + - slavery + - socialogy + - soundex + - spyware + - state + - surname + - telephone + - tests + - timelines + - tombstones + - topographical + - towns + - transcribe + - translation + - triangulation + - tutorial + - validation + - veteran + - village + - virus + - vital records + - vocabulary + - war + - war between the states + - web standards + - website + - windows + - workshops + - world + - yDNA + - ysearch + relme: + https://genweblog.blogspot.com/: true + https://linuxgrandma.blogspot.com/: true + https://mastodon.social/@valorie: true + last_post_title: 'Genetic Genealogy: Chapter 8' + last_post_description: 1. The following test takers are identified as a match using + the "One to One" tool at Gedmatch. Write a citation for this match.Gedmatch. "One-to-One + Autosomal DNA Comparison," database report, v.2, + last_post_date: "2021-05-05T17:00:00Z" + last_post_link: https://genweblog.blogspot.com/2021/05/genetic-genealogy-chapter-8.html + last_post_categories: + - DNA + - citations + - conclusion + - evidence + - proof + last_post_language: "" + last_post_guid: 947a4a78a027027aeae2eb0e5d3d8d7f + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4076ec6919b0893618495f9edaad9d1f.md b/content/discover/feed-4076ec6919b0893618495f9edaad9d1f.md new file mode 100644 index 000000000..a7e04272e --- /dev/null +++ b/content/discover/feed-4076ec6919b0893618495f9edaad9d1f.md @@ -0,0 +1,46 @@ +--- +title: TechBeamers +date: "1970-01-01T00:00:00Z" +description: TechBeamers Makes Programming and Testing Learn Easy +params: + feedlink: https://techbeamers.com/feed/ + feedtype: rss + feedid: 4076ec6919b0893618495f9edaad9d1f + websites: + https://techbeamers.com/: true + https://techbeamers.com/python-programming-tutorials/: false + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Selenium Tutorial + relme: + https://mastodon.social/@techbeamers: true + https://techbeamers.com/: true + last_post_title: 20 Free Demo Sites for Automation Testing + last_post_description: This page lists the best demo websites for automation testing + practices using Selenium. You don’t need to go anywhere else to search for validating + your Selenium tests. Go through the list of demo + last_post_date: "2024-05-26T06:53:03Z" + last_post_link: https://techbeamers.com/demo-sites-for-automation-testing/ + last_post_categories: + - Selenium Tutorial + last_post_language: "" + last_post_guid: 2164801dc0828eceb35ee21f4358fbd3 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-407c403ef1d6ff0658a0da893f25bb27.md b/content/discover/feed-407c403ef1d6ff0658a0da893f25bb27.md deleted file mode 100644 index fb8c02e3e..000000000 --- a/content/discover/feed-407c403ef1d6ff0658a0da893f25bb27.md +++ /dev/null @@ -1,49 +0,0 @@ ---- -title: Within WordPress with Remkus -date: "1970-01-01T00:00:00Z" -description: A podcast featuring interview with folks active in the WordPress Community - on the whole, but with a special focus on performance every now and then. -params: - feedlink: https://remkusdevries.com/feed/podcast - feedtype: rss - feedid: 407c403ef1d6ff0658a0da893f25bb27 - websites: - https://remkus.devries.frl/: false - https://remkusdevries.com/: false - https://remkusdevries.com/about/: false - https://remkusdevries.com/within-wordpress/all/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Technology - relme: - https://instagram.com/remkusdevries: false - https://profiles.wordpress.org/DeFries: false - https://remkusdevries.com/about/: false - https://social.devries.frl/@remkus: false - https://twitter.com/remkusdevries: false - https://www.linkedin.com/in/jrdevries: false - https://www.youtube.com/@remkusdevries: false - last_post_title: 'Inside WordPress Security: Conversations with security veteran - Tom Raef' - last_post_description: This comprehensive conversation delves into the world of - WordPress security through the lens of Tom Raef, a seasoned security expert with - a history dating back to the inception of personal computing. - last_post_date: "2024-05-03T11:59:45Z" - last_post_link: https://remkusdevries.com/podcast/inside-wordpress-security-conversations-with-security-veteran-tom-raef/ - last_post_categories: [] - last_post_guid: 170f96b8bfddcb0b93bc6dcc6aaf38c0 - score_criteria: - cats: 1 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 10 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-40af379bba224a2e28575b25e2efe088.md b/content/discover/feed-40af379bba224a2e28575b25e2efe088.md new file mode 100644 index 000000000..741981161 --- /dev/null +++ b/content/discover/feed-40af379bba224a2e28575b25e2efe088.md @@ -0,0 +1,44 @@ +--- +title: tripediac +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://tripediac.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 40af379bba224a2e28575b25e2efe088 + websites: + https://tripediac.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://gsoc-sage-lattices.blogspot.com/: true + https://tripediac.blogspot.com/: true + https://www.blogger.com/profile/13654908322659541350: true + last_post_title: New design + last_post_description: Right on time for Christmas, tripedia.org has got its new + design and layout! Looks quite sexy, doesn't it? ;-)To illustrate the development + of tripedia's style, there are some screenshots from + last_post_date: "2008-12-21T23:41:00Z" + last_post_link: https://tripediac.blogspot.com/2008/12/new-design.html + last_post_categories: [] + last_post_language: "" + last_post_guid: e771fcc7bbfd2a6ae5d1798269fbbe22 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-40bc34389b9a0b14fe7dddc36f12f057.md b/content/discover/feed-40bc34389b9a0b14fe7dddc36f12f057.md deleted file mode 100644 index 8f1d6cd8a..000000000 --- a/content/discover/feed-40bc34389b9a0b14fe7dddc36f12f057.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: philipps.photos -date: "1970-01-01T00:00:00Z" -description: Philipp Waldhauer -params: - feedlink: https://philipps.photos/feed - feedtype: rss - feedid: 40bc34389b9a0b14fe7dddc36f12f057 - websites: - https://philipps.photos/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/pwaldhauer: false - https://norden.social/@pwa: true - last_post_title: Balkon-Eichhhörnchen - last_post_description: "" - last_post_date: "2024-02-11T22:55:00+01:00" - last_post_link: https://philipps.photos/photo/balkon-eichhhornchen - last_post_categories: [] - last_post_guid: d72dcad3caa76dcdf99460ad8cc6c618 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-40ca87d610a6f2b3b1cce459c1efb3a7.md b/content/discover/feed-40ca87d610a6f2b3b1cce459c1efb3a7.md new file mode 100644 index 000000000..89f7b9b6d --- /dev/null +++ b/content/discover/feed-40ca87d610a6f2b3b1cce459c1efb3a7.md @@ -0,0 +1,59 @@ +--- +title: Qt Creator Blog +date: "2024-03-19T07:56:18Z" +description: An unofficial blog for all things Qt Creator. +params: + feedlink: https://qtcreator.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 40ca87d610a6f2b3b1cce459c1efb3a7 + websites: + https://qtcreator.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - .pro lib + - .pro sessions + - books + - debug + - debug feature-request + - designer + - dll msvc + - gcc + - gdb breakpoint + - gdb debugging-helpers typedef + - gdb dell + - help + - include .pro + - qmake + - qt + - unit-testing + - win32 icon + - win32 xp + relme: + https://qtcreator.blogspot.com/: true + https://www.blogger.com/profile/16139053405031925765: true + last_post_title: Long live Qt! + last_post_description: "" + last_post_date: "2011-02-13T18:29:28Z" + last_post_link: https://qtcreator.blogspot.com/2011/02/long-live-qt.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 4afe8bfc6d978097136f0c4d733492ae + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-410e2e72275aff3c71c9434050bca52f.md b/content/discover/feed-410e2e72275aff3c71c9434050bca52f.md deleted file mode 100644 index a777dd710..000000000 --- a/content/discover/feed-410e2e72275aff3c71c9434050bca52f.md +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: openstack - Julio's Blog -date: "1970-01-01T00:00:00Z" -description: A blog about open-source, cloud computing, digital transformation, and - other emerging technologies -params: - feedlink: https://www.juliosblog.com/tag/openstack/rss/ - feedtype: rss - feedid: 410e2e72275aff3c71c9434050bca52f - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - openstack - - telco - - enhanced - - platform - - awareness - - EPA - relme: {} - last_post_title: An introduction to Enhanced Platform Awareness (EPA) capabilities - in OpenStack - last_post_description: 'A quick introduction to Enhanced Platform Awareness capabilities - in OpenStack: NUMA, CPU Pinning, and Huge Pages.' - last_post_date: "2020-07-12T19:13:58Z" - last_post_link: http://www.juliosblog.com/a-quick-introduction-to-enhanced-platform-awareness-epa-capabilities-in-openstack/ - last_post_categories: - - openstack - - telco - - enhanced - - platform - - awareness - - EPA - last_post_guid: 7dfe364e98283bc42b6552efa89be517 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-411adab74d8aa1bb595049f04ed9fdfc.md b/content/discover/feed-411adab74d8aa1bb595049f04ed9fdfc.md deleted file mode 100644 index 6f201bdad..000000000 --- a/content/discover/feed-411adab74d8aa1bb595049f04ed9fdfc.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Frills -date: "1970-01-01T00:00:00Z" -description: All blog posts and updates from Frills -params: - feedlink: https://frills.dev/all.xml - feedtype: rss - feedid: 411adab74d8aa1bb595049f04ed9fdfc - websites: - https://frills.dev/: true - https://frills.dev/blog: false - https://frills.dev/bookmarks: false - https://frills.dev/changelog: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://frills.omg.lol/: true - https://indieweb.social/@frills: true - https://social.lol/@frills: false - last_post_title: Art - last_post_description: Collection of drawings and doodles - last_post_date: "2024-06-03T00:00:00Z" - last_post_link: https://frills.dev/collections/art/ - last_post_categories: [] - last_post_guid: 72f63a7af38557a4320b50a040d14bd6 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-411e68181dd8c2544406387e90b268bf.md b/content/discover/feed-411e68181dd8c2544406387e90b268bf.md new file mode 100644 index 000000000..2a16efa97 --- /dev/null +++ b/content/discover/feed-411e68181dd8c2544406387e90b268bf.md @@ -0,0 +1,41 @@ +--- +title: il commento di LIFO +date: "2024-07-09T03:15:01Z" +description: Updates from LIFO on Social GL-Como +params: + feedlink: https://social.gl-como.it/feed/lifo/comments + feedtype: atom + feedid: 411e68181dd8c2544406387e90b268bf + websites: + https://social.gl-como.it/profile/lifo: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://social.gl-como.it/profile/lifo: true + last_post_title: E giusto giusto stasera, abbiam parlato di programmi per smaneggiare + sottotitoli all'incontro del LU... + last_post_description: "" + last_post_date: "2021-11-04T21:45:12Z" + last_post_link: https://social.gl-como.it/display/3e3ce0df-7561-8454-6832-4b8802814739 + last_post_categories: [] + last_post_language: "" + last_post_guid: 0df6beedf6222c0bd875ba4a61152c5e + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4123ede63894f391cd2df0d9a446b085.md b/content/discover/feed-4123ede63894f391cd2df0d9a446b085.md index d89596507..394f695ad 100644 --- a/content/discover/feed-4123ede63894f391cd2df0d9a446b085.md +++ b/content/discover/feed-4123ede63894f391cd2df0d9a446b085.md @@ -1,6 +1,6 @@ --- title: RÉSONAANCES -date: "2024-06-12T14:09:30+01:00" +date: "2024-07-04T07:10:29+01:00" description: Particle Physics Blog params: feedlink: https://resonaances.blogspot.com/feeds/posts/default @@ -12,31 +12,37 @@ params: recommended: [] recommender: [] categories: - - Report - - News + - April Fools + - Distraction - Jest - Musing + - News + - Report - Review - - April Fools - - Distraction relme: + https://resonaances.blogspot.com/: true https://www.blogger.com/profile/08947218566941608850: true - last_post_title: 'April Fools''21: Trouble with g-2' + last_post_title: How large is the W mass anomaly last_post_description: "" - last_post_date: "2022-04-24T08:32:51+01:00" - last_post_link: https://resonaances.blogspot.com/2021/04/trouble-with-g-2.html + last_post_date: "2022-04-19T14:52:29+01:00" + last_post_link: https://resonaances.blogspot.com/2022/04/how-large-is-w-boson-anomaly.html last_post_categories: [] - last_post_guid: 1a4df36d6354c61e97248ee7c296abc8 + last_post_language: "" + last_post_guid: 1187d31a31c38e54a8e10767ea29e027 score_criteria: cats: 5 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-4124065e5b2474ebaec370f456aed391.md b/content/discover/feed-4124065e5b2474ebaec370f456aed391.md new file mode 100644 index 000000000..fe1c94727 --- /dev/null +++ b/content/discover/feed-4124065e5b2474ebaec370f456aed391.md @@ -0,0 +1,64 @@ +--- +title: Hiker's Thoughts +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://hikersthoughts.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 4124065e5b2474ebaec370f456aed391 + websites: + https://hikersthoughts.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - hiking + - mountain + - mountain walking + - nepal + - trekking + - what to bring + relme: + https://boardgamethoughts.blogspot.com/: true + https://coderthoughts.blogspot.com/: true + https://hikersthoughts.blogspot.com/: true + https://laarderhoogt.blogspot.com/: true + https://lightdarknesspainting.blogspot.com/: true + https://on-software-architecture.blogspot.com/: true + https://osgithoughts.blogspot.com/: true + https://rockabillfilmsoc.blogspot.com/: true + https://rockabillfilmsociety.blogspot.com/: true + https://testblogaswebsite.blogspot.com/: true + https://www.blogger.com/profile/13786738766478890804: true + last_post_title: 'Trekking through Nepal: what the guidebooks don''t tell you' + last_post_description: I recently did a hike with my son through the Annapurna region + in the Himalayas in Nepal. A fantastic experience! I decided to share some of + the things that I thought were very useful to bring on the + last_post_date: "2014-05-02T19:02:00Z" + last_post_link: https://hikersthoughts.blogspot.com/2014/05/trekking-through-nepal-what-guidebooks.html + last_post_categories: + - hiking + - mountain + - mountain walking + - nepal + - trekking + - what to bring + last_post_language: "" + last_post_guid: 8e66a240cbc292c0f7d9d9e158695507 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-412512c50f02d2e532402e3239055f44.md b/content/discover/feed-412512c50f02d2e532402e3239055f44.md index e4b3fd8ef..c97f1b357 100644 --- a/content/discover/feed-412512c50f02d2e532402e3239055f44.md +++ b/content/discover/feed-412512c50f02d2e532402e3239055f44.md @@ -13,8 +13,14 @@ params: recommender: [] categories: [] relme: - https://micro.blog/amerpie: false - https://social.lol/@amerpie: false + https://amerpie.lol/: true + https://amerpie.omg.lol/: true + https://amerpie2.micro.blog/: true + https://amerpiegateway.micro.blog/: true + https://apps.louplummer.lol/: true + https://linkage.lol/: true + https://louplummer.lol/: true + https://social.lol/@amerpie: true last_post_title: Using Obsidian as a Life Record last_post_description: 'Obsidian is powerful and extensible enough to fill many roles: academic notes, CRM, blogging center etc. One space it fills admirably @@ -22,17 +28,22 @@ params: last_post_date: "2024-05-21T11:24:44-04:00" last_post_link: https://amerpie2.micro.blog/2024/05/21/using-obsidian-as.html last_post_categories: [] + last_post_language: "" last_post_guid: 14a115004810d05baa59b2a2a2f5f0fa score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 6 + score: 11 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-412aa25083b494d108eccd9a43e227c8.md b/content/discover/feed-412aa25083b494d108eccd9a43e227c8.md new file mode 100644 index 000000000..01ee2ba0d --- /dev/null +++ b/content/discover/feed-412aa25083b494d108eccd9a43e227c8.md @@ -0,0 +1,52 @@ +--- +title: 'Burn After Running: RPG One-Shots' +date: "1970-01-01T00:00:00Z" +description: discussion and commentary about one-shot or short-form tabletop RPGs +params: + feedlink: https://burnafterrunningrpg.com/feed/ + feedtype: rss + feedid: 412aa25083b494d108eccd9a43e227c8 + websites: + https://burnafterrunningrpg.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - Uncategorized + - one-shots + - prep + - superchargers + relme: {} + last_post_title: 'Supercharge your One-Shot, Part 3: Deadline Fights' + last_post_description: In this series, I’m going to be showcasing some techniques + you can drop into almost any one-shot TTRPG session to improve it – even if the + adventure you’re running is already published, these + last_post_date: "2024-07-05T20:49:02Z" + last_post_link: https://burnafterrunningrpg.com/2024/07/05/supercharge-your-one-shot-part-3-deadline-fights/ + last_post_categories: + - Uncategorized + - one-shots + - prep + - superchargers + last_post_language: "" + last_post_guid: dbf9f25f2b925446315498610fac6ef5 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-41719008f2ade397fe93ddbd1f10f0e2.md b/content/discover/feed-41719008f2ade397fe93ddbd1f10f0e2.md new file mode 100644 index 000000000..edca58286 --- /dev/null +++ b/content/discover/feed-41719008f2ade397fe93ddbd1f10f0e2.md @@ -0,0 +1,45 @@ +--- +title: Exploration Work +date: "1970-01-01T00:00:00Z" +description: Exploratory work driven by curiosity. By Mark MacKay. +params: + feedlink: https://exploration.work/index.xml + feedtype: rss + feedid: 41719008f2ade397fe93ddbd1f10f0e2 + websites: + https://exploration.work/: true + blogrolls: [] + recommended: [] + recommender: + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php + categories: + - 2024 Barcelona + relme: {} + last_post_title: Expectation of outcome + last_post_description: This morning I woke up and thought I had to go to the beach + to swim naked again. Yesterday was the first time I did it in a crowded place. + As I wasn't planning on swimming, I was wearing underwear + last_post_date: "2024-07-06T02:40:00-06:00" + last_post_link: https://exploration.work/expectation-of-outcome/ + last_post_categories: + - 2024 Barcelona + last_post_language: "" + last_post_guid: eaeac5fbd0647a0efe495cc3cb66be36 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 1 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-417bd86c02be4de42e877bb21943de26.md b/content/discover/feed-417bd86c02be4de42e877bb21943de26.md new file mode 100644 index 000000000..ff58c8efd --- /dev/null +++ b/content/discover/feed-417bd86c02be4de42e877bb21943de26.md @@ -0,0 +1,45 @@ +--- +title: desentropia +date: "1970-01-01T00:00:00Z" +description: Recent content on desentropia +params: + feedlink: https://desentropia.com/index.xml + feedtype: rss + feedid: 417bd86c02be4de42e877bb21943de26 + websites: + https://desentropia.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://desentropia.com/: true + https://github.com/julian-alarcon/: true + last_post_title: 'Crítica personal: Rebuild of Evangelion' + last_post_description: |- + El origen de esta crítica fue de un hilo en mi cuenta de Twitter, + se alargó un poco y me pareció buena idea dejarlo en un artículo también aquí. + + Bueno, después de ver las 4 películas de + last_post_date: "2021-10-09T00:00:00Z" + last_post_link: https://desentropia.com/2021/10/09/critica-personal-rebuild-of-evangelion/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 98e62bef060cf34bd5585585359d3cb3 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-417c818a0611fea2387dfcb4b87e556e.md b/content/discover/feed-417c818a0611fea2387dfcb4b87e556e.md deleted file mode 100644 index 72d249fed..000000000 --- a/content/discover/feed-417c818a0611fea2387dfcb4b87e556e.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: 'Sara Joy :happy_pepper:' -date: "1970-01-01T00:00:00Z" -description: Public posts from @sarajw@front-end.social -params: - feedlink: https://front-end.social/@sarajw.rss - feedtype: rss - feedid: 417c818a0611fea2387dfcb4b87e556e - websites: - https://front-end.social/@sarajw: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://cs.sjoy.lol/: true - https://rs.sjoy.lol/: true - https://sarajoy.dev/: true - https://social.lol/@sara: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-41845bb7a1c07720fece1b308e27ee71.md b/content/discover/feed-41845bb7a1c07720fece1b308e27ee71.md index f6bcac63c..c123be398 100644 --- a/content/discover/feed-41845bb7a1c07720fece1b308e27ee71.md +++ b/content/discover/feed-41845bb7a1c07720fece1b308e27ee71.md @@ -12,66 +12,67 @@ params: recommended: [] recommender: [] categories: - - cosmology - - the universe - - physics - - CMB - - economics and politics - - particle physics - - science - - whimsy - - mountaineering + - BBC - BICEP - - CERN - - Higgs boson - - astronomy - - dark matter - - maps - - probability - Bayesian inference - - Eurozone - - Planck - - science education - - dark energy - - exploration - - geography - - inflation - - publishing - - biology - - peer review - - Himalayas - - India - - Krugman - - United States + - CERN + - CMB - Europe - - funding - - postdocs - - quasars - - supernovae - - BBC + - Eurozone + - Everest - George Osborne - Germany - Greece - - Merkel - - Nobel Prize - - Steven Weinberg - - Sun - - climbing - - neutrinos - - quantum mechanics - - Everest + - Higgs boson + - Himalayas + - India - Iran + - Krugman + - Merkel - Milky Way + - Nobel Prize - Olympics - Oxford interviews + - Planck + - Steven Weinberg + - Sun + - United States + - astronomy + - biology - blues + - climbing + - cosmology + - dark energy + - dark matter - dinosaurs + - economics and politics - evolution + - exploration + - funding - game theory + - geography - geology + - inflation + - maps + - mountaineering - multiverse + - neutrinos + - particle physics + - peer review + - physics + - postdocs + - probability - psychology + - publishing + - quantum mechanics + - quasars + - science + - science education + - supernovae + - the universe + - whimsy relme: + https://blankonthemap.blogspot.com/: true https://www.blogger.com/profile/07155102110438904961: true last_post_title: Change of scenery last_post_description: 'I should have reported this a while ago, but better late @@ -81,17 +82,22 @@ params: last_post_link: https://blankonthemap.blogspot.com/2015/10/change-of-scenery.html last_post_categories: - cosmology + last_post_language: "" last_post_guid: 21a59e533f7026a077017bede068f23f score_criteria: cats: 5 description: 3 + feedlangs: 0 postcats: 1 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 16 + score: 19 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-4186fca2d6fbc64a341aae96fb0fe451.md b/content/discover/feed-4186fca2d6fbc64a341aae96fb0fe451.md deleted file mode 100644 index e2c2214e1..000000000 --- a/content/discover/feed-4186fca2d6fbc64a341aae96fb0fe451.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: SeanMcP -date: "1970-01-01T00:00:00Z" -description: Public posts from @seanmcp@indieweb.social -params: - feedlink: https://indieweb.social/@seanmcp.rss - feedtype: rss - feedid: 4186fca2d6fbc64a341aae96fb0fe451 - websites: - https://seanmcp.com/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4190fd1292f08d0465c09c1c1e15e5b3.md b/content/discover/feed-4190fd1292f08d0465c09c1c1e15e5b3.md deleted file mode 100644 index d4dbce17d..000000000 --- a/content/discover/feed-4190fd1292f08d0465c09c1c1e15e5b3.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Comments for Dan Q -date: "1970-01-01T00:00:00Z" -description: 'Personal blog of Dan Q: hacker, magician, geocacher, gamer...' -params: - feedlink: https://danq.blog/comments/feed/ - feedtype: rss - feedid: 4190fd1292f08d0465c09c1c1e15e5b3 - websites: - https://danq.blog/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on [Article] Woke Kids by Katie Sutton - last_post_description: I mean, I'm not entirely surprised with a family like yours - around her. - last_post_date: "2024-06-02T15:53:45+01:00" - last_post_link: https://danq.me/2024/06/02/woke-kids/#comment-249520 - last_post_categories: [] - last_post_guid: 14a229e321e6c958d8545203ee5e7c82 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-41a3c396ad501b07cffab1636b5dd38c.md b/content/discover/feed-41a3c396ad501b07cffab1636b5dd38c.md index b819e8b0e..71cbe7e82 100644 --- a/content/discover/feed-41a3c396ad501b07cffab1636b5dd38c.md +++ b/content/discover/feed-41a3c396ad501b07cffab1636b5dd38c.md @@ -15,24 +15,29 @@ params: categories: - Society & Culture relme: - https://micro.blog/matti: false + https://blog.martin-haehnel.de/: true last_post_title: "PuppyCast 028 \U0001F436\U0001F399" last_post_description: "What?! A new puppy cast?! Only to test out the new transcription feature (and plug-in). \U0001F609" last_post_date: "2023-03-31T19:53:21+03:00" last_post_link: https://blog.martin-haehnel.de/2023/03/31/puppycast.html last_post_categories: [] + last_post_language: "" last_post_guid: 31aad0cb29b3e4a242dc3e6a0ccd99be score_criteria: cats: 1 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 10 + score: 15 ispodcast: true isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-41b428f4233d3bc1b21ce71306c2a21e.md b/content/discover/feed-41b428f4233d3bc1b21ce71306c2a21e.md deleted file mode 100644 index 4ec2197c9..000000000 --- a/content/discover/feed-41b428f4233d3bc1b21ce71306c2a21e.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: "Nicole T. \U0001F3F3️‍⚧️\U0001F3F3️‍\U0001F308☕\U0001F408" -date: "1970-01-01T00:00:00Z" -description: Public posts from @nicole@tietz.social -params: - feedlink: https://tietz.social/@nicole.rss - feedtype: rss - feedid: 41b428f4233d3bc1b21ce71306c2a21e - websites: - https://tietz.social/@nicole: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://ntietz.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-41cd16cec1ad718a357c2b4ac22a0c03.md b/content/discover/feed-41cd16cec1ad718a357c2b4ac22a0c03.md new file mode 100644 index 000000000..f1156f4ac --- /dev/null +++ b/content/discover/feed-41cd16cec1ad718a357c2b4ac22a0c03.md @@ -0,0 +1,56 @@ +--- +title: Camera Shy Rabbits +date: "1970-01-01T00:00:00Z" +description: A daily photo blog of our pet indoor rabbits. +params: + feedlink: https://camerashyrabbits.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 41cd16cec1ad718a357c2b4ac22a0c03 + websites: + https://camerashyrabbits.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - DIY + - Easter + - Just Blossom + - Just Daisy + - Just Otis + - Vets + - Video + - Walnut + - firstweek + - handling + - nomnomnom + - outside + - play + relme: + https://camerashyrabbits.blogspot.com/: true + last_post_title: A new fence? + last_post_description: |- + We have separated Otis and Daisy with a fence so Otis can settle down. + + Daisy feels like her world has been cut in half! + last_post_date: "2018-06-02T11:27:00Z" + last_post_link: https://camerashyrabbits.blogspot.com/2018/06/a-new-fence.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 1105797785604ecabc5ab8515e755fbe + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-41e1573bb341290c7a0d1bf43d9d7d2a.md b/content/discover/feed-41e1573bb341290c7a0d1bf43d9d7d2a.md new file mode 100644 index 000000000..d5dfaa82c --- /dev/null +++ b/content/discover/feed-41e1573bb341290c7a0d1bf43d9d7d2a.md @@ -0,0 +1,62 @@ +--- +title: Curiosity-driven development +date: "1970-01-01T00:00:00Z" +description: Development diary of a developer sailing on the seas of open-source +params: + feedlink: https://curiositydrivendevelopment.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 41e1573bb341290c7a0d1bf43d9d7d2a + websites: + https://curiositydrivendevelopment.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - android + - building + - buildlog + - development + - dripdexon + - electronics + - embedded + - experiences + - games + - gnome + - migration + - ndk + - open-source + - redmine + - tutorial + - valawhole + - work + relme: + https://curiositydrivendevelopment.blogspot.com/: true + last_post_title: Calculator and GTK4 + last_post_description: It was a long time since I last wrote, but important news + coming up, so I thought it's time to post again.The kind Christopher Davis has + spent some time on porting Calculator to GTK4, a process which + last_post_date: "2021-11-16T07:22:00Z" + last_post_link: https://curiositydrivendevelopment.blogspot.com/2021/11/calculator-and-gtk4.html + last_post_categories: + - development + - gnome + - open-source + last_post_language: "" + last_post_guid: a099d3056384fe994f079f384ca6b816 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-41e2eaedf4e7cf6dd1e7dbc16b437c99.md b/content/discover/feed-41e2eaedf4e7cf6dd1e7dbc16b437c99.md new file mode 100644 index 000000000..2963b9759 --- /dev/null +++ b/content/discover/feed-41e2eaedf4e7cf6dd1e7dbc16b437c99.md @@ -0,0 +1,42 @@ +--- +title: Arne Bahlo’s Book Reviews +date: "1970-01-01T00:00:00Z" +description: Every book I read gets a review and ends up here. +params: + feedlink: https://arne.me/book-reviews/feed.xml + feedtype: rss + feedid: 41e2eaedf4e7cf6dd1e7dbc16b437c99 + websites: + https://arne.me/: false + https://arne.me/book-reviews: true + https://arne.me/weekly: false + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://arne.me/book-reviews: true + last_post_title: The Five Dysfunctions of a Team by Patrick Lencioni + last_post_description: I read The Five Dysfunctions of a Team by Patrick Lencioni + last_post_date: "2024-06-08T00:00:00Z" + last_post_link: https://arne.me/book-reviews/the-five-dysfunctions-of-a-team + last_post_categories: [] + last_post_language: "" + last_post_guid: e4afa756f9ca99405f6b73aee27b26f6 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-41e7afd377ae70efdb4606c0d0603e6f.md b/content/discover/feed-41e7afd377ae70efdb4606c0d0603e6f.md index 9f49d13d7..8533694a6 100644 --- a/content/discover/feed-41e7afd377ae70efdb4606c0d0603e6f.md +++ b/content/discover/feed-41e7afd377ae70efdb4606c0d0603e6f.md @@ -7,7 +7,6 @@ params: feedtype: rss feedid: 41e7afd377ae70efdb4606c0d0603e6f websites: - https://manton.org/: false https://www.manton.org/: true blogrolls: - https://www.manton.org/.well-known/recommendations.opml @@ -30,6 +29,7 @@ params: - https://social.ayjay.org/feed.xml - https://vincentritter.com/feeds/all.rss - https://world.hey.com/jason/feed.atom + - https://www.mollywhite.net/feed/feed.xml - https://www.zylstra.org/blog/feed/ - https://austinkleon.com/comments/feed/ - https://bitsplitting.org/comments/feed/ @@ -42,6 +42,9 @@ params: - https://om.co/comments/feed/ - https://rebeccatoh.co/comments/feed/ - https://social.ayjay.org/podcast.xml + - https://www.mollywhite.net/micro/feed.xml + - https://www.mollywhite.net/reading/blockchain/feed.xml + - https://www.mollywhite.net/reading/shortform/feed.xml - https://www.zylstra.org/blog/comments/feed/ recommender: - https://amerpie.lol/feed.xml @@ -54,28 +57,30 @@ params: - https://weidok.al/feed.xml categories: [] relme: - https://github.com/manton: false - https://micro.blog/manton: false - https://twitter.com/mantonsblog: false - last_post_title: Apple Notes priorities - last_post_description: |- - In a blog post about Journal, John Gruber makes a detour to highlight the lack of full import and export in Apple Notes: - - I worry that import and export aren’t priorities for Apple. Apple Notes can - last_post_date: "2024-05-31T16:02:48-05:00" - last_post_link: https://www.manton.org/2024/05/31/apple-notes-priorities.html + https://www.manton.org/: true + last_post_title: Training C-3PO + last_post_description: Many of the hot takes about fair use for AI training are + either “AI is stealing content” or “everything on the web is free”, but the discussions + in between those extremes are more interesting + last_post_date: "2024-07-08T11:54:20-05:00" + last_post_link: https://www.manton.org/2024/07/08/training-cpo.html last_post_categories: [] - last_post_guid: 8de360e9b710ac016f3cb9e0983a32eb + last_post_language: "" + last_post_guid: 277beaa42face8457cd8652b1f65ebbe score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 10 - relme: 1 + relme: 2 title: 3 website: 2 - score: 21 + score: 26 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-41fcfce6a1911441f526f7b80beb77da.md b/content/discover/feed-41fcfce6a1911441f526f7b80beb77da.md deleted file mode 100644 index 2661f952a..000000000 --- a/content/discover/feed-41fcfce6a1911441f526f7b80beb77da.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Comments for Code happens -date: "1970-01-01T00:00:00Z" -description: Someone near you is coding -params: - feedlink: https://rbtcollins.wordpress.com/comments/feed/ - feedtype: rss - feedid: 41fcfce6a1911441f526f7b80beb77da - websites: - https://rbtcollins.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Monads and Python by Peter - last_post_description: I come back to this blog post every 6 months or so and every - time I enjoy reading it all over again. It really helped me make some connections - that for were eluding me in other descriptions of how - last_post_date: "2021-11-14T20:11:05Z" - last_post_link: https://rbtcollins.wordpress.com/2018/08/26/monads-and-python/#comment-9856 - last_post_categories: [] - last_post_guid: 33094ad52ef8929cf3a336c4beb94011 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-42027919e5819e0b8077a50519d7016c.md b/content/discover/feed-42027919e5819e0b8077a50519d7016c.md new file mode 100644 index 000000000..d10e722e6 --- /dev/null +++ b/content/discover/feed-42027919e5819e0b8077a50519d7016c.md @@ -0,0 +1,42 @@ +--- +title: Python on Seasoned & Agile +date: "1970-01-01T00:00:00Z" +description: Recent content in Python on Seasoned & Agile +params: + feedlink: https://cito.github.io/tags/python/index.xml + feedtype: rss + feedid: 42027919e5819e0b8077a50519d7016c + websites: + https://cito.github.io/tags/python/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://cito.github.io/tags/python/: true + last_post_title: Using GraphQL or REST, that is the question + last_post_description: This blog has been dormant for too long – it’s time to post + another article. In order to live up to the blog title, this article will combine + some old and seasoned stuff (PostgreSQL and + last_post_date: "2018-08-17T17:00:00+01:00" + last_post_link: https://cito.github.io/blog/shakespeare-with-graphql/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 0d06df712caa7796471a72bead8799e2 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-4211b0ce4931b2170fbed8224d7d60c4.md b/content/discover/feed-4211b0ce4931b2170fbed8224d7d60c4.md new file mode 100644 index 000000000..e86205763 --- /dev/null +++ b/content/discover/feed-4211b0ce4931b2170fbed8224d7d60c4.md @@ -0,0 +1,49 @@ +--- +title: Linux zealot +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://skliarie.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 4211b0ce4931b2170fbed8224d7d60c4 + websites: + https://skliarie.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - dictionary + - hebrew + - mp10 camera russian + - stardict + relme: + https://pkisrael-test.blogspot.com/: true + https://skliarie.blogspot.com/: true + https://skliarieh.blogspot.com/: true + https://teddy-events.blogspot.com/: true + https://www.blogger.com/profile/17337009271103751185: true + last_post_title: 'O GTalk team, where were thou? (part IV: The END)' + last_post_description: 'Google Talk is surprisingly still operational, but that + ends on ThursdayTook 12 years to die:' + last_post_date: "2022-06-14T05:08:00Z" + last_post_link: https://skliarie.blogspot.com/2022/06/o-gtalk-team-where-were-thou-part-iv-end.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 5e6b3837ac2d393f3b4c36ba6b97d6bd + score_criteria: + cats: 4 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-422433061f32f022a94337b5c7c4a5b6.md b/content/discover/feed-422433061f32f022a94337b5c7c4a5b6.md new file mode 100644 index 000000000..deb6c8006 --- /dev/null +++ b/content/discover/feed-422433061f32f022a94337b5c7c4a5b6.md @@ -0,0 +1,45 @@ +--- +title: Internet Alchemy +date: "2023-02-21T06:10:58Z" +description: "" +params: + feedlink: https://blog.iandavis.com/feed/ + feedtype: atom + feedid: 422433061f32f022a94337b5c7c4a5b6 + websites: + https://blog.iandavis.com/: true + https://iandavis.com/: false + blogrolls: [] + recommended: [] + recommender: [] + categories: + - genealogy + - technology + relme: + https://blog.iandavis.com/: true + last_post_title: Captioning Old Family Photos + last_post_description: "" + last_post_date: "2023-02-21T06:10:58Z" + last_post_link: http://blog.iandavis.com/2023/02/captioning-photos/ + last_post_categories: + - genealogy + - technology + last_post_language: "" + last_post_guid: f889f76fe2423f5ca89009da5a262996 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 12 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-423420bdbf22f641a4b514155c1cbfec.md b/content/discover/feed-423420bdbf22f641a4b514155c1cbfec.md index 29026f6ff..2bcca9409 100644 --- a/content/discover/feed-423420bdbf22f641a4b514155c1cbfec.md +++ b/content/discover/feed-423420bdbf22f641a4b514155c1cbfec.md @@ -34,10 +34,9 @@ params: - https://canion.blog/feed.xml - https://canion.blog/podcast.xml - https://feedpress.me/coryd-all - - https://feedpress.me/coryd-artist-charts - https://feedpress.me/coryd-books - - https://feedpress.me/coryd-follow - https://feedpress.me/coryd-links + - https://feedpress.me/coryd-movies - https://flamedfury.com/bookmarks-feed.xml - https://flamedfury.com/feed.xml - https://grepjason.sh/atom.xml @@ -53,35 +52,43 @@ params: - https://localghost.dev/recipes.xml - https://loungeruminator.net/comments/feed/ - https://notes.neatnik.net/atom.xml - - https://blast-o-rama.com/feed.xml - - https://blast-o-rama.com/podcast.xml - https://www.zachleat.com/follow/ - https://www.zachleat.com/web/feed/ - recommender: - - https://chrisburnell.com/feed.xml + recommender: [] categories: [] relme: + https://beep.town/@echofeedamplify: true + https://echofeed.app/: true https://github.com/rknightuk: true + https://help.echofeed.app/amplify/: true + https://mastodon.macstories.net/@ruminate: true https://rknight.me/: true + https://ruminatepodcast.com/: true https://social.lol/@robb: true - last_post_title: A WeblogPoMo Retrospective - last_post_description: WeblogPoMo is over. You can read all my posts here. I followed - the hashtag all month and also followed the @pomo account. I was flooded with - excellent posts daily including people who just started - last_post_date: "2024-05-31T10:48:03Z" - last_post_link: https://rknight.me/blog/weblogpomo-retrospective/ + https://wegot.family/: true + last_post_title: Fetching Achievements and Trophies for my Game Collection Page + last_post_description: Chris was inpired to make his game library page by me. Then + he went and added PSN trophy details so I became inspired to do the same - and + also do Xbox achievements. I don't tend to chase getting + last_post_date: "2024-07-07T18:21:00Z" + last_post_link: https://rknight.me/blog/fetching-achievements-and-trophies-for-my-game-collection-page/ last_post_categories: [] - last_post_guid: fb2a5e50409ea9c3d9d1b3b4226389bd + last_post_language: "" + last_post_guid: b08283e91287853786b433f7d11c06bd score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 - promoted: 5 + posts: 3 + promoted: 0 promotes: 10 relme: 2 title: 3 website: 2 - score: 25 + score: 24 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-423732c1d902a27cc91d28c9cb772645.md b/content/discover/feed-423732c1d902a27cc91d28c9cb772645.md deleted file mode 100644 index 88ed624fd..000000000 --- a/content/discover/feed-423732c1d902a27cc91d28c9cb772645.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: ttt/log -date: "2024-06-04T12:26:26Z" -description: "" -params: - feedlink: https://write.as/tttlog/feed/ - feedtype: rss - feedid: 423732c1d902a27cc91d28c9cb772645 - websites: - https://write.as/tttlog/: true - blogrolls: [] - recommended: [] - recommender: - - https://ttntm.me/blog/feed.xml - - https://ttntm.me/everything.xml - - https://ttntm.me/likes/feed.xml - categories: [] - relme: - https://write.as/tttlog/: true - last_post_title: Phones, Fi, Funds and Filigree - last_post_description: "" - last_post_date: "2024-06-04T08:50:23Z" - last_post_link: https://write.as/tttlog/phones-fi-funds-and-filigree?pk_campaign=rss-feed - last_post_categories: [] - last_post_guid: ca042415ee5e4a016d486a8d1e73674d - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 12 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-423f53946db60a926f53bc2c92997896.md b/content/discover/feed-423f53946db60a926f53bc2c92997896.md index d41276825..bbea9eac6 100644 --- a/content/discover/feed-423f53946db60a926f53bc2c92997896.md +++ b/content/discover/feed-423f53946db60a926f53bc2c92997896.md @@ -1,6 +1,6 @@ --- title: Dan Ballard -date: "2024-06-04T00:48:37+02:00" +date: "2024-06-29T15:28:55Z" description: Dan Ballard is a decentralization and privacy dev. Works at Tor Project. Board and contributor to Open Privacy Research Society. params: @@ -14,26 +14,37 @@ params: recommender: [] categories: [] relme: + https://danballard.com/: true + https://hachyderm.io/@openprivacy: true https://kolektiva.social/@dan_ballard: true + https://mastodon.social/@sarahjamielewis: true + https://openprivacy.ca/: true + https://openprivacy.ca/donate/: true + https://sarahjamielewis.com/: true last_post_title: 2023 in Review last_post_description: |- General 2023 was a good but tiring year. In retrospect I took nearly no vacation and that was a mistake. Even when travelling and visiting family I worked pretty much the whole time “saving” my - last_post_date: "2024-01-11T00:00:00+01:00" + last_post_date: "2024-01-11T00:00:00Z" last_post_link: https://danballard.com/2024/01/11/2023-in-review/ last_post_categories: [] + last_post_language: "" last_post_guid: 0440772a5266e8bfcab734a230b57020 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-42488b279334e3ba5ee71208a96cc288.md b/content/discover/feed-42488b279334e3ba5ee71208a96cc288.md deleted file mode 100644 index 1b246692c..000000000 --- a/content/discover/feed-42488b279334e3ba5ee71208a96cc288.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: 'meyerweb.com: Excuse of the Day' -date: "2024-06-04T00:00:01Z" -description: The excuse of the day. Handy for tech support representatives. -params: - feedlink: https://meyerweb.com/feeds/excuse/rss20.xml - feedtype: rss - feedid: 42488b279334e3ba5ee71208a96cc288 - websites: - https://meyerweb.com/: false - https://meyerweb.com/eric/thoughts: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-426ab4307a7438fec920f1bd7e166b9c.md b/content/discover/feed-426ab4307a7438fec920f1bd7e166b9c.md new file mode 100644 index 000000000..661fb0b08 --- /dev/null +++ b/content/discover/feed-426ab4307a7438fec920f1bd7e166b9c.md @@ -0,0 +1,49 @@ +--- +title: Tjena Moskva +date: "2024-03-19T15:43:48+03:00" +description: "" +params: + feedlink: https://tjenamoskva.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 426ab4307a7438fec920f1bd7e166b9c + websites: + https://tjenamoskva.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - fast food + - moskva + - novye cheremushki + relme: + https://lennartkolmodin.blogspot.com/: true + https://skojmedhoj.blogspot.com/: true + https://tjenamoskva.blogspot.com/: true + https://www.blogger.com/profile/11472900998358020886: true + last_post_title: Снаббмат - Snabbmat + last_post_description: "" + last_post_date: "2011-10-29T15:40:19+04:00" + last_post_link: https://tjenamoskva.blogspot.com/2011/10/snabbmat.html + last_post_categories: + - fast food + - moskva + - novye cheremushki + last_post_language: "" + last_post_guid: 95048dd45db3d6cc507cbb803a219a14 + score_criteria: + cats: 3 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-42bf9f13ed1cb097e96e36ce4afcbbcc.md b/content/discover/feed-42bf9f13ed1cb097e96e36ce4afcbbcc.md deleted file mode 100644 index 12ddb221a..000000000 --- a/content/discover/feed-42bf9f13ed1cb097e96e36ce4afcbbcc.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Prof. Sam Lawler -date: "1970-01-01T00:00:00Z" -description: Public posts from @sundogplanets@mastodon.social -params: - feedlink: https://mastodon.social/@sundogplanets.rss - feedtype: rss - feedid: 42bf9f13ed1cb097e96e36ce4afcbbcc - websites: - https://mastodon.social/@sundogplanets: true - blogrolls: [] - recommended: [] - recommender: - - https://miraz.me/feed.xml - - https://miraz.me/podcast.xml - categories: [] - relme: - https://uregina.ca/~slb861/about.html: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 15 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-42c479982628da43c1721b0ae6c94f93.md b/content/discover/feed-42c479982628da43c1721b0ae6c94f93.md new file mode 100644 index 000000000..bec6d6f87 --- /dev/null +++ b/content/discover/feed-42c479982628da43c1721b0ae6c94f93.md @@ -0,0 +1,43 @@ +--- +title: Improve the Debian boot process - blog +date: "2024-07-02T22:51:09-07:00" +description: Project Webpage and my webpage +params: + feedlink: https://bootdebian.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 42c479982628da43c1721b0ae6c94f93 + websites: + https://bootdebian.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - linux debian boot + relme: + https://bootdebian.blogspot.com/: true + https://www.blogger.com/profile/12649439812700566673: true + last_post_title: Etch boots as fast as Woody... + last_post_description: "" + last_post_date: "2007-04-12T01:41:24-07:00" + last_post_link: https://bootdebian.blogspot.com/2007/04/etch-boots-as-fast-as-woody.html + last_post_categories: + - linux debian boot + last_post_language: "" + last_post_guid: 7f792c5a618d272621a21f62e2b26054 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-42d600a0f3a02858ffd92850b7c5b9e8.md b/content/discover/feed-42d600a0f3a02858ffd92850b7c5b9e8.md index 270be070e..f613e90d8 100644 --- a/content/discover/feed-42d600a0f3a02858ffd92850b7c5b9e8.md +++ b/content/discover/feed-42d600a0f3a02858ffd92850b7c5b9e8.md @@ -31,13 +31,11 @@ params: - https://www.michalzelazny.com/feed/ - https://blog.numericcitizen.me/podcast.xml - https://excited-pixels.com/comments/feed/ - - https://www.manton.org/podcast.xml - https://manuelmoreale.com/feed/instagram - - https://mastodon.social/tags/mjtsaiupdate.rss - - https://mjtsai.com/blog/comments/feed/ - https://om.co/comments/feed/ - https://www.feedio.co/@thenewsprint/feed - https://www.curtisfamily.org.uk/comments/feed/ + - https://www.michalzelazny.com/feed recommender: - https://amerpie.lol/feed.xml - https://blog.numericcitizen.me/feed.xml @@ -45,25 +43,30 @@ params: - https://maique.eu/feed.xml categories: [] relme: - https://micro.blog/numericcitizen: false - last_post_title: Dear Apple, No New Hardware Please - last_post_description: Mac computers are fast and have impressive battery life. - Mac Studio with the M4 Ultra ship can wait. The iPad is fast too, potentially - surpassing the performance of many Mac computers. It is thin - last_post_date: "2024-06-03T21:36:00-04:00" - last_post_link: https://blog.numericcitizen.me/2024/06/03/dear-apple-no.html + https://blog.numericcitizen.me/: true + last_post_title: 'Travel update #13: Bye Bye Split, Let’s Do Another Cruise to Dubrovnik!' + last_post_description: Today was our last day in Split, Croatia. We strolled through + the streets of Split once again and had breakfast at the “Bepa” restaurant, which + is accessible from one of the public squares. Once + last_post_date: "2024-07-06T21:50:24+02:00" + last_post_link: https://blog.numericcitizen.me/2024/07/06/travel-update-bye.html last_post_categories: [] - last_post_guid: cb704842afc13ff7cda185d570c1c50e + last_post_language: "" + last_post_guid: 60cdaff3151a3aa17f18b3b19a752d9d score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 10 - relme: 1 + relme: 2 title: 3 website: 2 - score: 21 + score: 26 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-42d8577172803523c5b8580bc26fb586.md b/content/discover/feed-42d8577172803523c5b8580bc26fb586.md new file mode 100644 index 000000000..f49495620 --- /dev/null +++ b/content/discover/feed-42d8577172803523c5b8580bc26fb586.md @@ -0,0 +1,46 @@ +--- +title: Comments for Brno Hat +date: "1970-01-01T00:00:00Z" +description: Jiri Eischmann's Blog +params: + feedlink: https://enblog.eischmann.cz/comments/feed/ + feedtype: rss + feedid: 42d8577172803523c5b8580bc26fb586 + websites: + https://enblog.eischmann.cz/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://blog.eischmann.cz/: true + https://eischmann.cz/: true + https://enblog.eischmann.cz/: true + https://social.vivaldi.net/@sesivany: true + last_post_title: Comment on Fedora 40 Release Party in Prague by eischmann + last_post_description: |- + In reply to Olav Vitters. + + It is the first time since Fedora 15 that I'm not doing a release party + last_post_date: "2024-05-21T13:55:50Z" + last_post_link: https://enblog.eischmann.cz/2024/05/20/fedora-40-release-party-in-prague/#comment-1190 + last_post_categories: [] + last_post_language: "" + last_post_guid: 0502ffd69d7a0ac8beec68dc38b48d06 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-42ecf7a1efce7733da7b865583e24bae.md b/content/discover/feed-42ecf7a1efce7733da7b865583e24bae.md deleted file mode 100644 index a74d7c526..000000000 --- a/content/discover/feed-42ecf7a1efce7733da7b865583e24bae.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Beardy Star Stuff -date: "1970-01-01T00:00:00Z" -description: Public posts from @dennyhenke@social.coop -params: - feedlink: https://social.coop/@dennyhenke.rss - feedtype: rss - feedid: 42ecf7a1efce7733da7b865583e24bae - websites: - https://social.coop/@dennyhenke: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://beardyguycreative.com/: true - https://beardystarstuff.net/: true - https://denny.micro.blog/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4317795b055f3f2ca87e05546200020f.md b/content/discover/feed-4317795b055f3f2ca87e05546200020f.md deleted file mode 100644 index a3f09ff00..000000000 --- a/content/discover/feed-4317795b055f3f2ca87e05546200020f.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: jistr.com - blog posts tagged ‘openstack’ -date: "2023-12-13T14:55:25Z" -description: Website and blog of Jiří Stránský | jistr -params: - feedlink: https://www.jistr.com/blog/tags/openstack/feed.xml - feedtype: atom - feedid: 4317795b055f3f2ca87e05546200020f - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - openstack - - os-migrate - relme: {} - last_post_title: Introduction to OS Migrate, the  OpenStack parallel cloud migration - toolbox - last_post_description: OS Migrate is a toolbox for content migration (workloads - and more) between OpenStack clouds. Let’s dive into why you’d use it, some of - its most notable features, and a bit of how it works. - last_post_date: "2021-07-12T00:00:00Z" - last_post_link: https://www.jistr.com/blog/2021-07-12-introduction-to-os-migrate/ - last_post_categories: - - openstack - - os-migrate - last_post_guid: d6d2d959e3c00ee67a1eaa45094b1191 - score_criteria: - cats: 0 - description: 3 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-431803a539fd8b2d2d40e405b0b551ba.md b/content/discover/feed-431803a539fd8b2d2d40e405b0b551ba.md deleted file mode 100644 index cfc08c9f4..000000000 --- a/content/discover/feed-431803a539fd8b2d2d40e405b0b551ba.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Paul's Dev Notes -date: "1970-01-01T00:00:00Z" -description: Random dev notes about work at Bluesky by Paul Frazee -params: - feedlink: https://pfrazee.com/feed.xml - feedtype: rss - feedid: 431803a539fd8b2d2d40e405b0b551ba - websites: - https://pfrazee.com/blog: true - blogrolls: [] - recommended: [] - recommender: - - https://colinwalker.blog/dailyfeed.xml - - https://colinwalker.blog/livefeed.xml - categories: - - atproto - - bsky - relme: {} - last_post_title: Why isn't Bluesky a peer-to-peer network? - last_post_description: Today in "our novel form of NIH," why did Bluesky choose - not to use a peer-to-peer network when designing the AT Protocol? - last_post_date: "2024-01-21T00:00:00Z" - last_post_link: https://pfrazee.com/blog/why-not-p2p - last_post_categories: - - atproto - - bsky - last_post_guid: 0cf4251fb43ebb81d8d1ef8de120196b - score_criteria: - cats: 0 - description: 3 - postcats: 2 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 15 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-432912339b3b9325dd8488235c98872b.md b/content/discover/feed-432912339b3b9325dd8488235c98872b.md deleted file mode 100644 index 34819927e..000000000 --- a/content/discover/feed-432912339b3b9325dd8488235c98872b.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Comments for Jim Fehlig -date: "1970-01-01T00:00:00Z" -description: Ramblings from Jim -params: - feedlink: https://jfehlig.wordpress.com/comments/feed/ - feedtype: rss - feedid: 432912339b3b9325dd8488235c98872b - websites: - https://jfehlig.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on libvirt support for Xen’s new libxenlight toolstack - by Andreas - last_post_description: |- - In reply to jfehlig. - - I'm afraid patching or extending won't be satisfying. - last_post_date: "2015-11-02T13:05:42Z" - last_post_link: https://jfehlig.wordpress.com/2014/01/05/libvirt-support-for-xens-new-libxenlight-toolstack/#comment-61 - last_post_categories: [] - last_post_guid: 29f759cda58dae7d00561a4424e675ba - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4332de019cf21780ded9810bb6eb39d1.md b/content/discover/feed-4332de019cf21780ded9810bb6eb39d1.md deleted file mode 100644 index 7ca057dfd..000000000 --- a/content/discover/feed-4332de019cf21780ded9810bb6eb39d1.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Kev Quirk -date: "1970-01-01T00:00:00Z" -description: Latest posts from my blog -params: - feedlink: https://kevq.uk/feed/ - feedtype: rss - feedid: 4332de019cf21780ded9810bb6eb39d1 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://colinwalker.blog/dailyfeed.xml - - https://colinwalker.blog/livefeed.xml - categories: [] - relme: {} - last_post_title: We Already Have a Digital Currency - last_post_description: |- - Bitcoin and their ilk really aren't my thing, but many talk about the need for a digital currency. But here's the thing - we already have one, don't we? - I'm not the right person to talk about crypto - last_post_date: "2024-05-29T11:30:00+01:00" - last_post_link: https://kevquirk.com/we-already-have-a-digital-currency - last_post_categories: [] - last_post_guid: c88330c85e42584022371b0d51ea385c - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-433f9bd7df2e87cb726b3c006066cf0f.md b/content/discover/feed-433f9bd7df2e87cb726b3c006066cf0f.md new file mode 100644 index 000000000..bcaf3a4cb --- /dev/null +++ b/content/discover/feed-433f9bd7df2e87cb726b3c006066cf0f.md @@ -0,0 +1,55 @@ +--- +title: pyx +date: "2024-07-01T00:23:14-07:00" +description: '|piks| n. a box at the Royal Mint in which specimen gold and silver + coins are deposited to be tested annually at the trial of the pyx.' +params: + feedlink: https://donovanpreston.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 433f9bd7df2e87cb726b3c006066cf0f + websites: + https://donovanpreston.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Mac OS X + - MacPython + - Nevow + - firefoxos + - impulsecurrents + - magnifyingtransmitter + - onewire + - peer-to-peer + - screencast + - single-page-apps + - tesla + - tutorial + - wardenclyffe + relme: + https://donovanpreston.blogspot.com/: true + https://www.blogger.com/profile/07076057843365973055: true + last_post_title: Guido doesn't want non-portable assembly in Python and it's understandable + last_post_description: "" + last_post_date: "2013-03-21T21:10:13-07:00" + last_post_link: https://donovanpreston.blogspot.com/2013/03/guido-doesnt-want-non-portable-assembly.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 02fde62c27beff8c010481989547c617 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-434da736c00089bc3d4041fb86a31321.md b/content/discover/feed-434da736c00089bc3d4041fb86a31321.md deleted file mode 100644 index b09a50c35..000000000 --- a/content/discover/feed-434da736c00089bc3d4041fb86a31321.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: FrameLab -date: "1970-01-01T00:00:00Z" -description: Moral politics, meta narrative, language and your brain. By Gil Duran - and George Lakoff -params: - feedlink: https://www.theframelab.org/latest/rss/ - feedtype: rss - feedid: 434da736c00089bc3d4041fb86a31321 - websites: - https://www.theframelab.org/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Happy Birthday, George Lakoff (and Bob Dylan!) - last_post_description: FrameLab wishes a Happy Birthday to George Lakoff and Bob - Dylan, who celebrate May 24 birthdays - last_post_date: "2024-05-24T19:55:09Z" - last_post_link: https://www.theframelab.org/happy-birthday-george-lakoff-and-bob-dylan/ - last_post_categories: [] - last_post_guid: 0b5f8c3747fd3ebc405e495b948db5b2 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-435ae6ff8fc8fda7e52189baa1aa728b.md b/content/discover/feed-435ae6ff8fc8fda7e52189baa1aa728b.md deleted file mode 100644 index 47d14019c..000000000 --- a/content/discover/feed-435ae6ff8fc8fda7e52189baa1aa728b.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Chris Aldrich -date: "1970-01-01T00:00:00Z" -description: Public posts from @chrisaldrich@toot.wales -params: - feedlink: https://toot.wales/@chrisaldrich.rss - feedtype: rss - feedid: 435ae6ff8fc8fda7e52189baa1aa728b - websites: - https://toot.wales/@chrisaldrich: true - https://toot.wales/web/@chrisaldrich: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://boffosocko.com/: true - https://mastodon.social/@chrisaldrich/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4377207ae8f67a8c0f615e38bdc2f4d6.md b/content/discover/feed-4377207ae8f67a8c0f615e38bdc2f4d6.md deleted file mode 100644 index 50f912251..000000000 --- a/content/discover/feed-4377207ae8f67a8c0f615e38bdc2f4d6.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Jason Lengstorf -date: "1970-01-01T00:00:00Z" -description: Public posts from @jlengstorf@hachyderm.io -params: - feedlink: https://hachyderm.io/@jlengstorf.rss - feedtype: rss - feedid: 4377207ae8f67a8c0f615e38bdc2f4d6 - websites: - https://hachyderm.io/@jlengstorf: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://jason.energy/links/: true - https://lwj.dev/newsletter: false - https://www.learnwithjason.dev/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-437e5b193f338deee81f6c6ea6e6a338.md b/content/discover/feed-437e5b193f338deee81f6c6ea6e6a338.md index e4556a8aa..a0feb9d27 100644 --- a/content/discover/feed-437e5b193f338deee81f6c6ea6e6a338.md +++ b/content/discover/feed-437e5b193f338deee81f6c6ea6e6a338.md @@ -14,7 +14,8 @@ params: - http://scripting.com/rss.xml - http://scripting.com/rssNightly.xml categories: [] - relme: {} + relme: + https://alistapart.com/: true last_post_title: User Research Is Storytelling last_post_description: Ever since I was a boy, I’ve been fascinated with movies. I loved the characters and the excitement—but most of all the stories. I wanted @@ -22,17 +23,22 @@ params: last_post_date: "1970-01-01T00:00:00Z" last_post_link: https://alistapart.com/article/user-research-is-storytelling/ last_post_categories: [] + last_post_language: "" last_post_guid: a939270e2427867fa5aeccd080c2ab3c score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 13 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-438b60b013796b8c836e125c0d505775.md b/content/discover/feed-438b60b013796b8c836e125c0d505775.md deleted file mode 100644 index a96b5fe0a..000000000 --- a/content/discover/feed-438b60b013796b8c836e125c0d505775.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: RDO Community Blogs -date: "1970-01-01T00:00:00Z" -description: Articles about OpenStack and related technologies from the RDO community -params: - feedlink: https://blogs.rdoproject.org/feed/ - feedtype: rss - feedid: 438b60b013796b8c836e125c0d505775 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Infrastructures - relme: {} - last_post_title: RDO Caracal Released - last_post_description: RDO Caracal 2024.1 Released The RDO community is pleased - to announce the general availability of the RDO build for OpenStack 2024.1 Caracal - for RPM-based distributions, CentOS Stream and Red Hat - last_post_date: "2024-04-24T14:08:52Z" - last_post_link: https://blogs.rdoproject.org/2024/04/rdo-caracal-released/ - last_post_categories: - - Infrastructures - last_post_guid: f6538b5e6dcd22dd98d11739d84688da - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-438bfe278c57ce65922ad95074703fdc.md b/content/discover/feed-438bfe278c57ce65922ad95074703fdc.md new file mode 100644 index 000000000..dcb3a8e19 --- /dev/null +++ b/content/discover/feed-438bfe278c57ce65922ad95074703fdc.md @@ -0,0 +1,42 @@ +--- +title: Posts on Ian Brown +date: "1970-01-01T00:00:00Z" +description: Recent content in Posts on Ian Brown +params: + feedlink: https://www.ianbrown.id.au/posts/index.xml + feedtype: rss + feedid: 438bfe278c57ce65922ad95074703fdc + websites: + https://www.ianbrown.id.au/posts/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://www.ianbrown.id.au/posts/: true + last_post_title: High Velocity Migrations with GCVE and HCX + last_post_description: What is HCX? VMware HCX is an application mobility platform + designed for simplifying application migration, workload rebalancing and business + continuity across datacenters and clouds. VMware HCX was + last_post_date: "2022-07-12T10:46:44+10:00" + last_post_link: http://www.ianbrown.id.au/high_velocity_migration_with_gcve_and_hcx/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 08a84e28d6597092c83062e5a61a30bd + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-4398035e2b3d33f0a576bd9b14360533.md b/content/discover/feed-4398035e2b3d33f0a576bd9b14360533.md deleted file mode 100644 index 2f7dbf8b9..000000000 --- a/content/discover/feed-4398035e2b3d33f0a576bd9b14360533.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Behind the Source -date: "1970-01-01T00:00:00Z" -description: Everyone is a junior in something. This podcast is exploring the tech, - tools and projects that power the world wide web. Each episode features a different - guest talking to Mike Street about a -params: - feedlink: https://feeds.acast.com/public/shows/behind-the-source - feedtype: rss - feedid: 4398035e2b3d33f0a576bd9b14360533 - websites: - https://shows.acast.com/behind-the-source: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Technology - relme: {} - last_post_title: Coolify with András Bácsai - last_post_description: Mike talks about a self-hosted Netlify alternative, Coolify, - with creator András Hosted on Acast. See acast.com/privacy for more information. - last_post_date: "2022-12-01T08:00:39Z" - last_post_link: https://www.behindthesource.co.uk/podcasts/s02e05-coolify-with-andras-bacsai/ - last_post_categories: [] - last_post_guid: 599e721b9cb4a144426d57ce01186f7b - score_criteria: - cats: 1 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 9 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-43b1cafd6ea0ef76384652fddac25032.md b/content/discover/feed-43b1cafd6ea0ef76384652fddac25032.md deleted file mode 100644 index 1446bd493..000000000 --- a/content/discover/feed-43b1cafd6ea0ef76384652fddac25032.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Håvard NM -date: "1970-01-01T00:00:00Z" -description: Public posts from @Alacho@vivaldi.net -params: - feedlink: https://social.vivaldi.net/@Alacho.rss - feedtype: rss - feedid: 43b1cafd6ea0ef76384652fddac25032 - websites: - https://social.vivaldi.net/@Alacho: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://vivaldi.com/team/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-43cbf0fb4a06ca33e131dac939ed2bb6.md b/content/discover/feed-43cbf0fb4a06ca33e131dac939ed2bb6.md deleted file mode 100644 index a89c0a8cc..000000000 --- a/content/discover/feed-43cbf0fb4a06ca33e131dac939ed2bb6.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Open Source with Christopher Lydon -date: "1970-01-01T00:00:00Z" -description: Christopher Lydon in conversation on arts, ideas and politics -params: - feedlink: https://radioopensource.org/feed - feedtype: rss - feedid: 43cbf0fb4a06ca33e131dac939ed2bb6 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - http://scripting.com/rss.xml - - http://scripting.com/rssNightly.xml - categories: - - Arts - relme: {} - last_post_title: Nicholson Baker Finds a Likeness - last_post_description: We’re taking a drawing lesson with Nicholson Baker—yes, the - multifarious writers’ writer Nick Baker; the COVID lab leak detective; the pacifist - historian of World War II in his book Human Smoke - last_post_date: "2024-05-23T21:24:50Z" - last_post_link: https://radioopensource.org/nicholson-baker-finds-a-likeness/ - last_post_categories: - - Aired - - Podcast - - Shows - - This Week - last_post_guid: 73b55ea26fb774d6e3f689b936a17490 - score_criteria: - cats: 1 - description: 3 - postcats: 3 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 15 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-43df1028dfb80b00034366b2065759cf.md b/content/discover/feed-43df1028dfb80b00034366b2065759cf.md deleted file mode 100644 index 86d7c9363..000000000 --- a/content/discover/feed-43df1028dfb80b00034366b2065759cf.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: 'Shariq Raza Qadri :fosstodon:' -date: "1970-01-01T00:00:00Z" -description: Public posts from @Cosmicqbit@fosstodon.org -params: - feedlink: https://fosstodon.org/@Cosmicqbit.rss - feedtype: rss - feedid: 43df1028dfb80b00034366b2065759cf - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4410c4a432e2e5540d1f1de2dde90239.md b/content/discover/feed-4410c4a432e2e5540d1f1de2dde90239.md new file mode 100644 index 000000000..c3b947bbd --- /dev/null +++ b/content/discover/feed-4410c4a432e2e5540d1f1de2dde90239.md @@ -0,0 +1,139 @@ +--- +title: Atm Card Vs Bitcoin +date: "2024-03-05T18:56:17-08:00" +description: Debit Card User know Who Is The Best +params: + feedlink: https://saibamais-tecnologia.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 4410c4a432e2e5540d1f1de2dde90239 + websites: + https://saibamais-tecnologia.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - debit card is amazing + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Bit coin Vs Debit Card + last_post_description: "" + last_post_date: "2021-04-28T10:51:31-07:00" + last_post_link: https://saibamais-tecnologia.blogspot.com/2021/04/bit-coin-vs-debit-card.html + last_post_categories: + - debit card is amazing + last_post_language: "" + last_post_guid: ca8bc9dff2eced849a4a526507a76ba5 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-441990505af2cf298136af9457e4224f.md b/content/discover/feed-441990505af2cf298136af9457e4224f.md new file mode 100644 index 000000000..7fd8b1a50 --- /dev/null +++ b/content/discover/feed-441990505af2cf298136af9457e4224f.md @@ -0,0 +1,47 @@ +--- +title: Xubuntu +date: "1970-01-01T00:00:00Z" +description: Xubuntu is an elegant and easy-to-use operating system. +params: + feedlink: https://xubuntu.org/feed/ + feedtype: rss + feedid: 441990505af2cf298136af9457e4224f + websites: + https://xubuntu.org/: true + https://xubuntu.org/help/: false + blogrolls: [] + recommended: [] + recommender: [] + categories: + - News + - Release Announcements + relme: + https://xubuntu.org/: true + last_post_title: Xubuntu 24.04 released! + last_post_description: The Xubuntu team is happy to announce the immediate release + of Xubuntu 24.04. Xubuntu 24.04, codenamed Noble Numbat, is a long-term support + (LTS) release and will be supported for 3 years, until + last_post_date: "2024-04-25T12:00:53Z" + last_post_link: https://xubuntu.org/news/xubuntu-24-04-released/ + last_post_categories: + - News + - Release Announcements + last_post_language: "" + last_post_guid: 97d2418b0525db5fe192543d256bf654 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-4427902e4697cfbc026f4d9ba70937ca.md b/content/discover/feed-4427902e4697cfbc026f4d9ba70937ca.md index 70b7341f4..1733ef10b 100644 --- a/content/discover/feed-4427902e4697cfbc026f4d9ba70937ca.md +++ b/content/discover/feed-4427902e4697cfbc026f4d9ba70937ca.md @@ -14,6 +14,7 @@ params: categories: [] relme: https://hachyderm.io/@zehicle: true + https://robhirschfeld.com/: true last_post_title: Comment on From orphans to open source, data matters by Open Source Technology for Vulnerable Children – Miracle Foundation India last_post_description: '[…] congratulations on the Top Kred Influencer badge! We @@ -22,17 +23,22 @@ params: last_post_date: "2023-04-17T06:51:08Z" last_post_link: https://robhirschfeld.com/2013/04/25/from-orphans-to-open-source-data-matters/#comment-111049 last_post_categories: [] + last_post_language: "" last_post_guid: 36cdb1a97008d132bb7fe541ee8ee98f score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-442c41b3d22a7e8870f59f6dc2841a45.md b/content/discover/feed-442c41b3d22a7e8870f59f6dc2841a45.md new file mode 100644 index 000000000..1e36980a4 --- /dev/null +++ b/content/discover/feed-442c41b3d22a7e8870f59f6dc2841a45.md @@ -0,0 +1,63 @@ +--- +title: Just Code +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://javaclipse.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 442c41b3d22a7e8870f59f6dc2841a45 + websites: + https://javaclipse.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - anyedit + - debugging + - eclipse + - egit + - findbugs + - fun + - gtk + - java + - java eclipse job + - job + - linux + - mars + - neon + - spotbugs + - swt + - tests + - xtext + relme: + https://javaclipse.blogspot.com/: true + https://www.blogger.com/profile/09548188399628810900: true + last_post_title: Xtext job + last_post_description: Do you want to have...We (Advantest Europe GmbH) are hiring! + We are the leader in semiconductor testing industry and also in the top 10 employees + in the IT industry in Germany (see our Kununu + last_post_date: "2023-04-26T08:15:00Z" + last_post_link: https://javaclipse.blogspot.com/2023/04/xtext-job.html + last_post_categories: + - eclipse + - job + - xtext + last_post_language: "" + last_post_guid: e0e039c9a3dd2470bc6e3271b31d99f4 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-443d7e504ed7fe8789c95b923eee7d5e.md b/content/discover/feed-443d7e504ed7fe8789c95b923eee7d5e.md deleted file mode 100644 index 5ef7d5195..000000000 --- a/content/discover/feed-443d7e504ed7fe8789c95b923eee7d5e.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: OpenStack Archives - Stackmasters -date: "1970-01-01T00:00:00Z" -description: Run the cloud with us -params: - feedlink: https://www.stackmasters.eu/tag/openstack/feed/ - feedtype: rss - feedid: 443d7e504ed7fe8789c95b923eee7d5e - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Blog Posts - - Ansible - - OpenStack - - OpenStack Training - relme: {} - last_post_title: Mastering OpenStack as a Stackmasters intern - last_post_description: I was looking for an opportunity to gather practical knowledge - on OpenStack and Ansible. As a final year student and a member of the CONSERT - lab in University of West Attica, I had already touched my - last_post_date: "2019-07-15T09:46:14Z" - last_post_link: https://www.stackmasters.eu/blog/openstack-stackmasters-intern/ - last_post_categories: - - Blog Posts - - Ansible - - OpenStack - - OpenStack Training - last_post_guid: 6abb6b797bad658a1a1c0ffac7727a32 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-44441c3a592cd8ba4f8533317917104f.md b/content/discover/feed-44441c3a592cd8ba4f8533317917104f.md new file mode 100644 index 000000000..1e2d6e2cb --- /dev/null +++ b/content/discover/feed-44441c3a592cd8ba4f8533317917104f.md @@ -0,0 +1,137 @@ +--- +title: Nyquil Memes Game +date: "2024-06-07T07:50:27-07:00" +description: Best Nyquil Memes games is here. Get best Collection of it. +params: + feedlink: https://palausolitaiplegamans.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 44441c3a592cd8ba4f8533317917104f + websites: + https://palausolitaiplegamans.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Damn Nyquil Memes And Dayquil Memes are Carzy + last_post_description: "" + last_post_date: "2020-12-07T03:20:49-08:00" + last_post_link: https://palausolitaiplegamans.blogspot.com/2020/12/damn-nyquil-memes-and-dayquil-memes-are.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 910324952a2a7ec6fe0bd056ea10be2a + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-444acb0e16768bb742d18236889a6d46.md b/content/discover/feed-444acb0e16768bb742d18236889a6d46.md deleted file mode 100644 index c6b60eb3e..000000000 --- a/content/discover/feed-444acb0e16768bb742d18236889a6d46.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: schollz -date: "1970-01-01T00:00:00Z" -description: Recent content on schollz -params: - feedlink: https://schollz.com/index.xml - feedtype: rss - feedid: 444acb0e16768bb742d18236889a6d46 - websites: - https://schollz.com/: false - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 12 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-444ce02c6c7ab64a169fc425b5bc4cf3.md b/content/discover/feed-444ce02c6c7ab64a169fc425b5bc4cf3.md new file mode 100644 index 000000000..ca9e0d744 --- /dev/null +++ b/content/discover/feed-444ce02c6c7ab64a169fc425b5bc4cf3.md @@ -0,0 +1,72 @@ +--- +title: Code & Me +date: "2024-07-05T09:04:51+02:00" +description: This Blog deals with software tools, code snippets, and scripts I am + working on. Focus is on Eclipse development and linux. +params: + feedlink: https://codeandme.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 444ce02c6c7ab64a169fc425b5bc4cf3 + websites: + https://codeandme.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Buckminster + - Debugger + - Dockstar + - EASE + - Eclipse + - Gentoo + - Gerrit + - Git + - JFace + - JNI + - Jakarta + - Java + - JavaScript + - Jenkins + - LInux + - Maven + - Microprofile + - Modeling + - Oomph + - RCP + - Rhino + - Scripting + - Security + - Tycho + - UI + - p2 + relme: + https://codeandme.blogspot.com/: true + https://www.blogger.com/profile/13049318779927276910: true + last_post_title: Add Checkstyle support to Eclipse, Maven, and Jenkins + last_post_description: "" + last_post_date: "2020-12-02T09:52:50+01:00" + last_post_link: https://codeandme.blogspot.com/2020/12/add-checkstyle-support-to-eclipse-maven.html + last_post_categories: + - Eclipse + - Java + - Jenkins + - Maven + last_post_language: "" + last_post_guid: 35592ef089e70dc3d55e6ef9ef0fee6d + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-44522317271a0229a0f4f7cc75ad3b79.md b/content/discover/feed-44522317271a0229a0f4f7cc75ad3b79.md new file mode 100644 index 000000000..02c1cc716 --- /dev/null +++ b/content/discover/feed-44522317271a0229a0f4f7cc75ad3b79.md @@ -0,0 +1,43 @@ +--- +title: Eclipse Buckminster +date: "2023-11-15T15:03:10+01:00" +description: "" +params: + feedlink: https://eclipse-buckminster.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 44522317271a0229a0f4f7cc75ad3b79 + websites: + https://eclipse-buckminster.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://eclipse-buckminster.blogspot.com/: true + https://henrik-eclipse.blogspot.com/: true + https://henrik-lindberg.blogspot.com/: true + https://www.blogger.com/profile/18131140901733897033: true + last_post_title: Buckminster and Corona + last_post_description: "" + last_post_date: "2006-12-11T13:39:34+01:00" + last_post_link: https://eclipse-buckminster.blogspot.com/2006/12/had-very-interesting-meeting-other-day.html + last_post_categories: [] + last_post_language: "" + last_post_guid: a087232a67e211a0b49fd7aa58705cc6 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4452926b51ee8983fd0592d7d35b50f1.md b/content/discover/feed-4452926b51ee8983fd0592d7d35b50f1.md deleted file mode 100644 index 99ae6ddb0..000000000 --- a/content/discover/feed-4452926b51ee8983fd0592d7d35b50f1.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Comments for Life as a Physicist -date: "1970-01-01T00:00:00Z" -description: Particle Physicist. In the wild. -params: - feedlink: https://gordonwatts.wordpress.com/comments/feed/ - feedtype: rss - feedid: 4452926b51ee8983fd0592d7d35b50f1 - websites: - https://gordonwatts.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on The Sun Should Not Flicker!! by Renee - last_post_description: |- - In reply to blackbirdsbox. - - -

can confirm, today, 4/13/24 both of my sons - last_post_date: "2024-04-13T22:30:04Z" - last_post_link: https://gordonwatts.wordpress.com/2009/02/01/the-sun-should-not-flicker/#comment-45413 - last_post_categories: [] - last_post_guid: 47788e3ae1da03e0abac62b91d01f9b6 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-445c3d6ea60fe704658198dc9a6b701d.md b/content/discover/feed-445c3d6ea60fe704658198dc9a6b701d.md deleted file mode 100644 index b83dbeba9..000000000 --- a/content/discover/feed-445c3d6ea60fe704658198dc9a6b701d.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: James Van Dyne -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://jamesvandyne.com/feed - feedtype: rss - feedid: 445c3d6ea60fe704658198dc9a6b701d - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://colinwalker.blog/dailyfeed.xml - - https://colinwalker.blog/livefeed.xml - categories: [] - relme: {} - last_post_title: 'The Week #205' - last_post_description: "\U0001F1FA\U0001F1F8 Guilty on all 34 charges. Unanimously. - We'll see what sentencing actually brings, but justice seems to be working. Curious - how the 3 other trials go. Completely unrelated, can felons vote in" - last_post_date: "2024-06-03T21:26:33Z" - last_post_link: https://jamesvandyne.com/25ee5fe9-4c8a-4245-9639-1c9a3489c2ec - last_post_categories: [] - last_post_guid: b701e1ff0ea84de00408cdffc4db9f27 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-445d8abde2bf4b4955e8806ee1c744f1.md b/content/discover/feed-445d8abde2bf4b4955e8806ee1c744f1.md new file mode 100644 index 000000000..43e37cebf --- /dev/null +++ b/content/discover/feed-445d8abde2bf4b4955e8806ee1c744f1.md @@ -0,0 +1,46 @@ +--- +title: Home page on Ross A. Baker +date: "1970-01-01T00:00:00Z" +description: Recent content in Home page on Ross A. Baker +params: + feedlink: https://rossabaker.com/index.xml + feedtype: rss + feedid: 445d8abde2bf4b4955e8806ee1c744f1 + websites: + https://rossabaker.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://codeberg.org/rossabaker: true + https://git.rossabaker.com/ross: true + https://github.com/rossabaker: true + https://rossabaker.com/: true + https://social.rossabaker.com/@ross: true + last_post_title: ZNC + last_post_description: |- + An old friend recently started an IRC server. It may require a nostalgia for the Internet of the 1990s to appreciate, but I find it a refreshing change of pace from the Internet of the 2020s. + Unlike + last_post_date: "2024-05-20T23:32:00Z" + last_post_link: https://rossabaker.com/configs/znc/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 76a1ebf624dcde0db79bcbb03fd7fa0e + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-4460df32f62ff1d0990f4f4fdb6d8e02.md b/content/discover/feed-4460df32f62ff1d0990f4f4fdb6d8e02.md new file mode 100644 index 000000000..60a23cc94 --- /dev/null +++ b/content/discover/feed-4460df32f62ff1d0990f4f4fdb6d8e02.md @@ -0,0 +1,42 @@ +--- +title: Babbler - an XMPP library for Java +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://babbler-xmpp.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 4460df32f62ff1d0990f4f4fdb6d8e02 + websites: + https://babbler-xmpp.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://babbler-xmpp.blogspot.com/: true + last_post_title: Babbler 0.8.1 released + last_post_description: A new version 0.8.1 of the Java XMPP library has been released! + It contains primarily bug fixes only, but also contains an important improvement + of the thread usage, especially when using NIO + last_post_date: "2019-03-06T20:51:00Z" + last_post_link: https://babbler-xmpp.blogspot.com/2019/03/babbler-081-released.html + last_post_categories: [] + last_post_language: "" + last_post_guid: d2d93a8a9356f47375f9ae877f20ec34 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4469545f14714b751c2af30a314cc706.md b/content/discover/feed-4469545f14714b751c2af30a314cc706.md new file mode 100644 index 000000000..0ee58d68f --- /dev/null +++ b/content/discover/feed-4469545f14714b751c2af30a314cc706.md @@ -0,0 +1,42 @@ +--- +title: Ingrid's Space +date: "1970-01-01T00:00:00Z" +description: Recent content on Ingrid's Space +params: + feedlink: https://ingrids.space/index.xml + feedtype: rss + feedid: 4469545f14714b751c2af30a314cc706 + websites: {} + blogrolls: [] + recommended: [] + recommender: + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php + categories: [] + relme: {} + last_post_title: Linguistic Relativity and the Tyranny of the Compiler + last_post_description: The idea has been floating around in Linguistics for about + a century, that language affects one’s thoughts. Known as linguistic relativity, + aka the Sapir-Whorf hypothesis, this comes in two + last_post_date: "2022-01-17T21:36:00+02:00" + last_post_link: https://ingrids.space/posts/tyranny-of-the-compiler/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 2764f73145eedee474c461917f8fa2b8 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 0 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-447ce793da28c11a0094f077fda340c6.md b/content/discover/feed-447ce793da28c11a0094f077fda340c6.md new file mode 100644 index 000000000..03a2c8abb --- /dev/null +++ b/content/discover/feed-447ce793da28c11a0094f077fda340c6.md @@ -0,0 +1,45 @@ +--- +title: Gajim +date: "1970-01-01T00:00:00Z" +description: Recent content on Gajim +params: + feedlink: https://gajim.org/index.xml + feedtype: rss + feedid: 447ce793da28c11a0094f077fda340c6 + websites: + https://gajim.org/: true + https://gajim.org/post/: false + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://fosstodon.org/@gajim: true + https://gajim.org/: true + last_post_title: Gajim 1.9.1 + last_post_description: |- + Gajim 1.9.1 introduces a menu button, adds improvements for Security Labels, and fixes some bugs. Thank you for all your contributions! + What’s New + Since Gajim 1.9.0, you can toggle Gajim’s main + last_post_date: "2024-06-21T00:00:00Z" + last_post_link: https://gajim.org/post/2024-06-22-gajim-1.9.1-released/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 8b9766d1f11a72a65539e7e719dff681 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-447e74427b469472fdcedd1aaa8db032.md b/content/discover/feed-447e74427b469472fdcedd1aaa8db032.md deleted file mode 100644 index 53ebd0932..000000000 --- a/content/discover/feed-447e74427b469472fdcedd1aaa8db032.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Comments for Tom Loosemore -date: "1970-01-01T00:00:00Z" -description: Changing by doing -params: - feedlink: https://tomloosemorework.wordpress.com/comments/feed/ - feedtype: rss - feedid: 447e74427b469472fdcedd1aaa8db032 - websites: - https://tomloosemorework.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Interview in Offscreen Magazine by Public Service Product - Management - Tom Loosemore on The Product Experience - Mind the Product - last_post_description: '[…] Offscreen interviewed Tom about the human side of technology […]' - last_post_date: "2021-02-10T06:00:49Z" - last_post_link: https://tomloosemorework.wordpress.com/2018/07/17/interview-in-offscreen-magazine/comment-page-1/#comment-7574 - last_post_categories: [] - last_post_guid: ce93496bb2d9f3933134c0a38105d561 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-448923534a086032cdb1984757407c23.md b/content/discover/feed-448923534a086032cdb1984757407c23.md deleted file mode 100644 index 132f1545a..000000000 --- a/content/discover/feed-448923534a086032cdb1984757407c23.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Bitsplitting -date: "1970-01-01T00:00:00Z" -description: The Bitsplitting podcast features interviews with people from the greater - tech industry, with an emphasis on personal backgrounds and how each guest's philosophies - have affected the arc of their -params: - feedlink: https://bitsplitting.org/feed/podcast/bitsplitting - feedtype: rss - feedid: 448923534a086032cdb1984757407c23 - websites: - https://bitsplitting.org/series/bitsplitting/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Business - - Society & Culture - - Technology - relme: {} - last_post_title: Season 1 Closing Message - last_post_description: This marks the end of the first season of Bitsplitting. After - 10 episodes with 10 great guests, Daniel has decided to take a break. You can - learn more at bitsplitting.org/break. - last_post_date: "2013-08-05T15:18:19Z" - last_post_link: https://bitsplitting.org/podcast/season-1-closing-message/ - last_post_categories: [] - last_post_guid: a182f6e961a1185a357df321f0bfeae0 - score_criteria: - cats: 3 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-44bc110daf59acaa0ff445c41d03ab86.md b/content/discover/feed-44bc110daf59acaa0ff445c41d03ab86.md deleted file mode 100644 index 4b11d87c8..000000000 --- a/content/discover/feed-44bc110daf59acaa0ff445c41d03ab86.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Geoff -date: "1970-01-01T00:00:00Z" -description: Public posts from @geoff@front-end.social -params: - feedlink: https://front-end.social/@geoff.rss - feedtype: rss - feedid: 44bc110daf59acaa0ff445c41d03ab86 - websites: - https://front-end.social/@geoff: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://geoffgraham.me/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-44bc4bfa19a6c411998a9f1e59483edf.md b/content/discover/feed-44bc4bfa19a6c411998a9f1e59483edf.md deleted file mode 100644 index 391d6c314..000000000 --- a/content/discover/feed-44bc4bfa19a6c411998a9f1e59483edf.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Sean McPherson -date: "1970-01-01T00:00:00Z" -description: The online home of Sean McPherson, a software engineer focused on front-end - development. -params: - feedlink: https://seanmcp.com/rss.xml - feedtype: rss - feedid: 44bc4bfa19a6c411998a9f1e59483edf - websites: - https://seanmcp.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - - https://danq.me/comments/feed/ - - https://danq.me/feed/ - - https://danq.me/kind/article/feed/ - - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ - categories: [] - relme: {} - last_post_title: CSS nesting is (almost) ready - last_post_description: It's not quite ready for production use, but we are very - close to getting native CSS nesting - last_post_date: "2024-05-28T00:50:00Z" - last_post_link: https://seanmcp.com/articles/css-nesting-is-almost-ready/ - last_post_categories: [] - last_post_guid: 3e36ac24b5ac4abe34dc7ee051a561de - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-44bd5dcf5ff7750f135a4a80abe544b0.md b/content/discover/feed-44bd5dcf5ff7750f135a4a80abe544b0.md deleted file mode 100644 index 37475ad37..000000000 --- a/content/discover/feed-44bd5dcf5ff7750f135a4a80abe544b0.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Daryl Sun's Journal -date: "1970-01-01T00:00:00Z" -description: An online diary of a lady's misadventures in two worlds -params: - feedlink: https://blog.darylsun.page/rss.xml - feedtype: rss - feedid: 44bd5dcf5ff7750f135a4a80abe544b0 - websites: - https://blog.darylsun.page/: true - https://darylsun.page/blog: false - https://darylsun.weblog.lol/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://darylsun.page/: false - https://proven.lol/1c2d40: false - https://proven.lol/6bd039: false - https://proven.lol/36ec23: false - https://proven.lol/e64391: true - last_post_title: Weblog Posting Month 2024 Days 1-4 — Blog Construction Post-Mortem, - Part 1 - last_post_description: |- - TL;DR:In my first post for WeblogPoMo2024, I discuss the reasons and principles of last year's blog construction. - This blog post has approximately 755 words and may take 4 minutes to read - last_post_date: "2024-05-04T12:40:00Z" - last_post_link: https://blog.darylsun.page/2024/05/04/weblogpomo-2024-day-1-4-blog-construction-post-mortem-1 - last_post_categories: [] - last_post_guid: f5082ef1d855f0e472c8da8d42e51fc2 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-44cd17f963710aae7e59f24a760609b0.md b/content/discover/feed-44cd17f963710aae7e59f24a760609b0.md deleted file mode 100644 index 52440f4de..000000000 --- a/content/discover/feed-44cd17f963710aae7e59f24a760609b0.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Jake LaCaze -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://jakelacaze.com/index.xml - feedtype: rss - feedid: 44cd17f963710aae7e59f24a760609b0 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://colinwalker.blog/dailyfeed.xml - - https://colinwalker.blog/livefeed.xml - categories: [] - relme: {} - last_post_title: How can capitalism be reformed? - last_post_description: |- - Over the last few months, I’ve been asking myself if I’ve been turning into a Communist, as certain aspects of capitalism have had me seeing red. - So many parts of the capitalist system feel - last_post_date: "2024-05-31T09:59:09-05:00" - last_post_link: https://jakelacaze.com/2024/05/31/how-can-capitalism.html - last_post_categories: [] - last_post_guid: 6027e861f36acc35ac98067aece5fae6 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-450a5056d22d5bd852a9ff2070bde2bb.md b/content/discover/feed-450a5056d22d5bd852a9ff2070bde2bb.md new file mode 100644 index 000000000..72ac3d556 --- /dev/null +++ b/content/discover/feed-450a5056d22d5bd852a9ff2070bde2bb.md @@ -0,0 +1,63 @@ +--- +title: gvSIG CE Blog +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://gvsigce.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 450a5056d22d5bd852a9ff2070bde2bb + websites: + https://gvsigce.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 2012 Washington GIS Conference + - AGIT + - Code Sprint + - Committer + - EPSG + - FOSSGIS + - GDAL + - GRASS GIS + - GeoTools + - Git + - R + - SAGA + - SEXTANTE + - SQLite + - SVN + - Terra GIS + - Testing + - developers + - gvSIG CE + relme: + https://csgisblog.blogspot.com/: true + https://gvsigce.blogspot.com/: true + https://www.blogger.com/profile/04518422302925054438: true + last_post_title: Dynamic web map of gvSIG CE downloads + last_post_description: Karsten Vennemann from TERRAGIS made a web map which shows + the gvSIG CE downloads and where are they coming from. You can read more about + this here.We would like to thanks TERRAGIS for this great + last_post_date: "2014-06-03T20:00:00Z" + last_post_link: https://gvsigce.blogspot.com/2014/06/dynamic-web-map-of-gvsig-ce-downloads.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 6c7fa810e88f75f8f2ed61c4e6e21868 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4510d6c1d2364c20760582f5724200a7.md b/content/discover/feed-4510d6c1d2364c20760582f5724200a7.md index 9035b4454..bdfa5aa09 100644 --- a/content/discover/feed-4510d6c1d2364c20760582f5724200a7.md +++ b/content/discover/feed-4510d6c1d2364c20760582f5724200a7.md @@ -15,30 +15,34 @@ params: - http://scripting.com/rss.xml - http://scripting.com/rssNightly.xml categories: - - playground - podcast + - updates relme: {} - last_post_title: '#122 – Adam Zielinski on How Playground Is Transforming WordPress - Website Creation' - last_post_description: On the podcast today we have Adam Zielinski. He works as - a WordPress developer at Automattic and in this episode, we talk about Playground, - a groundbreaking project that is redefined the way we - last_post_date: "2024-05-29T14:00:00Z" - last_post_link: https://wptavern.com/podcast/122-adam-zielinski-on-how-playground-is-transforming-wordpress-website-creation + last_post_title: '#126 – Aaron Jorbin on Navigating WordPress Major and Minor Releases' + last_post_description: On the podcast today we have Aaron Jorbin. Aaron has led + teams responsible for some of the largest and most prominent WordPress sites in + the world including Rolling Stone, Variety, WIRED, The New + last_post_date: "2024-07-03T14:00:00Z" + last_post_link: https://wptavern.com/podcast/126-aaron-jorbin-on-navigating-wordpress-major-and-minor-releases last_post_categories: - - playground - podcast - last_post_guid: 9d3d72d07a11c19e18e7c4cafc30872e + - updates + last_post_language: "" + last_post_guid: 626b0381b2feb0131dd971446f117e52 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 2 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 15 + score: 19 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-451ea09086b73df083c6ef847709131e.md b/content/discover/feed-451ea09086b73df083c6ef847709131e.md new file mode 100644 index 000000000..7db21ba3b --- /dev/null +++ b/content/discover/feed-451ea09086b73df083c6ef847709131e.md @@ -0,0 +1,46 @@ +--- +title: The Haskell Interlude +date: "1970-01-01T00:00:00Z" +description: This is the Haskell Interlude, where the five co-hosts (Wouter Swierstra, + Andres Löh, Alejandro Serrano, Niki Vazou, and Joachim Breitner) chat with Haskell + guests! +params: + feedlink: https://feeds.buzzsprout.com/1817535.rss + feedtype: rss + feedid: 451ea09086b73df083c6ef847709131e + websites: + https://haskell.foundation/: false + https://haskell.foundation/podcast/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Technology + relme: + https://haskell.foundation/podcast/: true + last_post_title: '52: Pepe Iborra' + last_post_description: Andres and Sam interview Pepe Iborra, exploring his journey + from academia via banking to now Meta. In this episode, we discuss Pepe’s involvement + in the evolution of the Haskell ecosystem, in + last_post_date: "2024-07-02T15:00:00Z" + last_post_link: https://haskell.foundation/podcast/52 + last_post_categories: [] + last_post_language: "" + last_post_guid: 2c39bde89e8892b92ca6c08bb4f50a74 + score_criteria: + cats: 1 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: true + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-45372da7d3edce9cec4675b4eb41c42b.md b/content/discover/feed-45372da7d3edce9cec4675b4eb41c42b.md new file mode 100644 index 000000000..cfe6e2083 --- /dev/null +++ b/content/discover/feed-45372da7d3edce9cec4675b4eb41c42b.md @@ -0,0 +1,48 @@ +--- +title: Purism (@purism@librem.one) +date: "1970-01-01T00:00:00Z" +description: "2.09K Posts, 122 Following, 9.57K Followers · Purism makes hardware, + software and services that respect you. We support your digital privacy, security + and freedom. \n\nThis is the primary Purism" +params: + feedlink: https://social.librem.one/@purism.rss + feedtype: rss + feedid: 45372da7d3edce9cec4675b4eb41c42b + websites: + https://social.librem.one/@purism: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - '#Purism' + relme: + https://librem.one/: true + https://puri.sm/: true + https://social.librem.one/@doublerainbows: true + https://social.librem.one/@purism: true + last_post_title: 'purism: Privacy meets power.' + last_post_description: 'Privacy meets power. Librem 11: Your freedom-focused tablet.https://puri.sm/products/librem-11/#Librem11 + #Purism' + last_post_date: "2024-07-08T14:51:28Z" + last_post_link: https://social.librem.one/@purism/112751430127837545 + last_post_categories: + - '#Purism' + last_post_language: "" + last_post_guid: 10e45bc287ad6a52b84019ca1e96798d + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-45430bdad1f68719be602d2b124cecc4.md b/content/discover/feed-45430bdad1f68719be602d2b124cecc4.md deleted file mode 100644 index d3f5abc01..000000000 --- a/content/discover/feed-45430bdad1f68719be602d2b124cecc4.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Calum Ryan - Articles -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://calumryan.com/feeds/articles/rss - feedtype: rss - feedid: 45430bdad1f68719be602d2b124cecc4 - websites: - https://calumryan.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://fed.brid.gy/r/https:/calumryan.com/: false - https://github.com/calumryan: true - https://indieweb.org/User:Calumryan.com: false - https://micro.blog/calumryan: false - https://toot.cafe/@calumryan: false - last_post_title: Weeknote 82 - last_post_description: |- - It was another somewhat tiring and stressful week bringing together research from design and tech people on my current project with GDS in order to attempt to map a journey for my prototyping. - Just - last_post_date: "1970-01-01T00:00:00Z" - last_post_link: https://calumryan.com/articles/weeknote-82 - last_post_categories: [] - last_post_guid: a3bf924c65ace03465f3742c8a6e4215 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-454c2af2b10e239e7a334a0e72a9c0f9.md b/content/discover/feed-454c2af2b10e239e7a334a0e72a9c0f9.md deleted file mode 100644 index f6b20b393..000000000 --- a/content/discover/feed-454c2af2b10e239e7a334a0e72a9c0f9.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Michelle Barker -date: "1970-01-01T00:00:00Z" -description: Public posts from @michelle@front-end.social -params: - feedlink: https://front-end.social/@michelle.rss - feedtype: rss - feedid: 454c2af2b10e239e7a334a0e72a9c0f9 - websites: - https://front-end.social/@michelle: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://codepen.io/michellebarker/: false - https://css-irl.info/: true - https://michellebarker.co.uk/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-455430bf14299cf34cd134c63742318c.md b/content/discover/feed-455430bf14299cf34cd134c63742318c.md deleted file mode 100644 index cf4543913..000000000 --- a/content/discover/feed-455430bf14299cf34cd134c63742318c.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Nicholas Bate -date: "2024-06-04T11:32:43+01:00" -description: Business of Life + Life of Business -params: - feedlink: https://blog.strategicedge.co.uk/rss.xml - feedtype: atom - feedid: 455430bf14299cf34cd134c63742318c - websites: - https://blog.strategicedge.co.uk/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Managing a Business in a Crazy World, 43 - last_post_description: 'Without attention your people will become lost in a world - of spreadsheets, mails and PPT decks. They need attention: direction, passion - re-kindled and appropriate praise. They need leadership.' - last_post_date: "2024-06-04T11:32:43+01:00" - last_post_link: https://blog.strategicedge.co.uk/2024/06/managing-a-business-in-a-crazy-world-43.html - last_post_categories: [] - last_post_guid: 486a96623afa79f833b0b11facff9bf4 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-455f8b27270ab059d1b5f94e85c37f3f.md b/content/discover/feed-455f8b27270ab059d1b5f94e85c37f3f.md deleted file mode 100644 index 6f81a7e48..000000000 --- a/content/discover/feed-455f8b27270ab059d1b5f94e85c37f3f.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Conference Buddy -date: "1970-01-01T00:00:00Z" -description: Public posts from @ConfBuddy@hachyderm.io -params: - feedlink: https://hachyderm.io/@ConfBuddy.rss - feedtype: rss - feedid: 455f8b27270ab059d1b5f94e85c37f3f - websites: - https://hachyderm.io/@ConfBuddy: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/approved/: true - https://www.conferencebuddy.io/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4579eddc4cb0be08fb93bb8d30c668b6.md b/content/discover/feed-4579eddc4cb0be08fb93bb8d30c668b6.md new file mode 100644 index 000000000..7bb6abc86 --- /dev/null +++ b/content/discover/feed-4579eddc4cb0be08fb93bb8d30c668b6.md @@ -0,0 +1,137 @@ +--- +title: Certain number of angels +date: "2023-11-15T08:32:29-08:00" +description: Keep visiting to my blogspot and get all information about angels number. +params: + feedlink: https://mozaikharokahfpi.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 4579eddc4cb0be08fb93bb8d30c668b6 + websites: + https://mozaikharokahfpi.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Another familyn number angels + last_post_description: "" + last_post_date: "2022-01-23T03:00:56-08:00" + last_post_link: https://mozaikharokahfpi.blogspot.com/2022/01/another-familyn-number-angels.html + last_post_categories: [] + last_post_language: "" + last_post_guid: a6def51254d6d74e8932720be7fbf0bb + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-457e385c8a687ed59921a18e883cf3eb.md b/content/discover/feed-457e385c8a687ed59921a18e883cf3eb.md new file mode 100644 index 000000000..5d3e2343d --- /dev/null +++ b/content/discover/feed-457e385c8a687ed59921a18e883cf3eb.md @@ -0,0 +1,42 @@ +--- +title: Chaos Computer Club Berlin +date: "1970-01-01T00:00:00Z" +description: Recent content on Chaos Computer Club Berlin +params: + feedlink: https://berlin.ccc.de/index.xml + feedtype: rss + feedid: 457e385c8a687ed59921a18e883cf3eb + websites: + https://berlin.ccc.de/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://berlin.ccc.de/: true + last_post_title: Der Datengarten kehrt zurück! + last_post_description: Nach zweieinhalbjähriger Pause melden wir uns mit der Veranstaltungsreihe + Datengarten zurück, außer der Reihe diesmal an einem Donnerstag. Allerdings können + wir noch kein vorpandemisches + last_post_date: "2022-06-13T12:15:06+02:00" + last_post_link: https://berlin.ccc.de/post/2022/06/13/der-datengarten-kehrt-zur%C3%BCck/ + last_post_categories: [] + last_post_language: "" + last_post_guid: a16274a862ab6b30c22eaa3a914a270a + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: de +--- diff --git a/content/discover/feed-4581fa8400bde6a3ba9741dd6d2396a2.md b/content/discover/feed-4581fa8400bde6a3ba9741dd6d2396a2.md new file mode 100644 index 000000000..0153b9ead --- /dev/null +++ b/content/discover/feed-4581fa8400bde6a3ba9741dd6d2396a2.md @@ -0,0 +1,140 @@ +--- +title: Hair growing fast with hair dye +date: "1970-01-01T00:00:00Z" +description: Keep visiting to my blogspot and get all information about hair dye. +params: + feedlink: https://kedaiproton.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 4581fa8400bde6a3ba9741dd6d2396a2 + websites: + https://kedaiproton.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Your hair is being covered + last_post_description: |- + what color can i dye my hair after blue.Have you at any point contemplated the danger you are taking + when you sit in a beautician's seat while your hair is being covered with a + compound hair color? + last_post_date: "2022-02-01T17:14:00Z" + last_post_link: https://kedaiproton.blogspot.com/2022/02/your-hair-is-being-covered.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 4f990f9f2bcf29b479a89200c388fe7f + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4589ff5a53832e959cdfff523a3db8ce.md b/content/discover/feed-4589ff5a53832e959cdfff523a3db8ce.md deleted file mode 100644 index ef9090478..000000000 --- a/content/discover/feed-4589ff5a53832e959cdfff523a3db8ce.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Kev Quirk -date: "1970-01-01T00:00:00Z" -description: Public posts from @kev@fosstodon.org -params: - feedlink: https://fosstodon.org/@kev.rss - feedtype: rss - feedid: 4589ff5a53832e959cdfff523a3db8ce - websites: - https://fosstodon.org/@kev: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://hub.fosstodon.org/support: false - https://kevquirk.com/: true - https://social.lol/@kevquirk: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-458c8897add92387d40f027c78dd85b1.md b/content/discover/feed-458c8897add92387d40f027c78dd85b1.md index d7bfbfca2..a317c093e 100644 --- a/content/discover/feed-458c8897add92387d40f027c78dd85b1.md +++ b/content/discover/feed-458c8897add92387d40f027c78dd85b1.md @@ -1,6 +1,6 @@ --- title: Media services to transcode video and audio in different formats -date: "2024-02-08T12:27:29-08:00" +date: "2024-07-02T19:45:35-07:00" description: A GSoC work report params: feedlink: https://gstmediaservices.blogspot.com/feeds/posts/default @@ -12,19 +12,21 @@ params: recommended: [] recommender: [] categories: - - gsoc - - gst - - encodingprofiles - - ui - - dialogs - - plugins - - banshee - - pipeline - alpha + - banshee - bug - comparison + - dialogs + - encodingprofiles + - gsoc + - gst + - pipeline + - plugins - registry + - ui relme: + https://europanaotaocara.blogspot.com/: true + https://gstmediaservices.blogspot.com/: true https://www.blogger.com/profile/16090334046714792429: true last_post_title: An alpha for python version last_post_description: "" @@ -34,17 +36,22 @@ params: - alpha - gsoc - plugins + last_post_language: "" last_post_guid: b0a80c6317f0605601c6fe94af60c3f7 score_criteria: cats: 5 description: 3 + feedlangs: 0 postcats: 3 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 18 + score: 21 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-45a4490a218c65945c2f1ad71d63bc1c.md b/content/discover/feed-45a4490a218c65945c2f1ad71d63bc1c.md new file mode 100644 index 000000000..13f3be55b --- /dev/null +++ b/content/discover/feed-45a4490a218c65945c2f1ad71d63bc1c.md @@ -0,0 +1,58 @@ +--- +title: Python для себя +date: "1970-01-01T00:00:00Z" +description: Заметки от изучающего язык программирования Python +params: + feedlink: https://pythonfm.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 45a4490a218c65945c2f1ad71d63bc1c + websites: + https://pythonfm.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Django + - IDE + - Python + - git + - venv + - Боты + - Допматериалы + - Книги + - видео + - виртуальное окружение + - курсы + - модули + relme: + https://antilibreoffice.blogspot.com/: true + https://libreoffice-dev.blogspot.com/: true + https://pythonfm.blogspot.com/: true + https://www.blogger.com/profile/11694297935288423889: true + last_post_title: Некоторые полезные модули Python + last_post_description: Модуль array - позволяет работать с массивами в python. Массивы + очень похожи на списки, но с ограничением на тип + last_post_date: "2024-05-08T09:42:00Z" + last_post_link: https://pythonfm.blogspot.com/2024/05/python.html + last_post_categories: + - Python + - модули + last_post_language: "" + last_post_guid: 1473f936fafcc2c7569f43bc99eab622 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-45d8bb7424e04720267afd8681d80056.md b/content/discover/feed-45d8bb7424e04720267afd8681d80056.md new file mode 100644 index 000000000..6e1182ccd --- /dev/null +++ b/content/discover/feed-45d8bb7424e04720267afd8681d80056.md @@ -0,0 +1,50 @@ +--- +title: Just Jeremy +date: "1970-01-01T00:00:00Z" +description: just my thoughts +params: + feedlink: https://jeremy.bicha.net/feed/ + feedtype: rss + feedid: 45d8bb7424e04720267afd8681d80056 + websites: + https://jeremy.bicha.net/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Debian + - GNOME + - Linux + - Ubuntu + relme: + https://jeremy.bicha.net/: true + last_post_title: Ubuntu bug fix anniversary + last_post_description: I first installed Ubuntu when Ubuntu 6.06 LTS “Dapper Drake” + was released. I was brand new to Linux. This was Ubuntu’s first LTS release; the + very first release of Ubuntu was only a year and a + last_post_date: "2022-10-17T13:54:46Z" + last_post_link: https://jeremy.bicha.net/2022/10/17/ubuntu-bug-fix-anniversary/ + last_post_categories: + - Debian + - GNOME + - Linux + - Ubuntu + last_post_language: "" + last_post_guid: 841a0ca89831f7e9c41a936080c0c838 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-45d965a9dacc256b0a761bc7e0afb15f.md b/content/discover/feed-45d965a9dacc256b0a761bc7e0afb15f.md new file mode 100644 index 000000000..e1f1c00d5 --- /dev/null +++ b/content/discover/feed-45d965a9dacc256b0a761bc7e0afb15f.md @@ -0,0 +1,44 @@ +--- +title: A GeoSpatial World +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://ageoguy.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 45d965a9dacc256b0a761bc7e0afb15f + websites: + https://ageoguy.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://ageoguy.blogspot.com/: true + https://www.blogger.com/profile/11921226078659968838: true + last_post_title: Transformation de formats 3D (OBJ, PLY, STL, VTP) vers PostGIS + WKT POLYHEDRALSURFACE + last_post_description: "Cliquez sur cet icône pour choisir un fichier 3D à transformer. + \ \n Allez dans le répertoire d’installation de Pg3DImport puis + le sous-répertoire DATA, puis sélectionnez le" + last_post_date: "2014-09-09T16:00:00Z" + last_post_link: https://ageoguy.blogspot.com/2014/09/transformation-de-formats-3d-obj-ply.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 9ead18c0afbf749a26ec4d9e0cf5f8a4 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4601ca46465f81c53abbf7360ada84a5.md b/content/discover/feed-4601ca46465f81c53abbf7360ada84a5.md index c17e29abd..351bebc6a 100644 --- a/content/discover/feed-4601ca46465f81c53abbf7360ada84a5.md +++ b/content/discover/feed-4601ca46465f81c53abbf7360ada84a5.md @@ -13,23 +13,31 @@ params: recommender: [] categories: [] relme: + https://advent-of-code.xavd.id/: true + https://david.reviews/: true https://mastodon.social/@xavdid: true - last_post_title: 'david.reviews: the game "Dordogne"' + https://xavd.id/: true + last_post_title: 'david.reviews: the movie "Holes"' last_post_description: "" - last_post_date: "2024-06-02T00:00:00Z" - last_post_link: https://david.reviews/games/dordogne/ + last_post_date: "2024-07-07T00:00:00Z" + last_post_link: https://david.reviews/movies/holes-2003/ last_post_categories: [] - last_post_guid: 140bc7c2d87e0e66811b6f2af7b84aed + last_post_language: "" + last_post_guid: 67ed3a8d93927b50ea398d2b4579f3eb score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-4607fbda4ccb17673c7ae3a222f27b3f.md b/content/discover/feed-4607fbda4ccb17673c7ae3a222f27b3f.md new file mode 100644 index 000000000..0a0446f1c --- /dev/null +++ b/content/discover/feed-4607fbda4ccb17673c7ae3a222f27b3f.md @@ -0,0 +1,63 @@ +--- +title: In the Library with the Lead Pipe +date: "1970-01-01T00:00:00Z" +description: An open access, peer reviewed journal +params: + feedlink: https://www.inthelibrarywiththeleadpipe.org/feed/ + feedtype: rss + feedid: 4607fbda4ccb17673c7ae3a222f27b3f + websites: + https://www.inthelibrarywiththeleadpipe.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Uncategorized + - anxiety + - libraries + - mental health + - mental illness + - not alone notes + - obsessive compulsive disorder + - ocd + - public libraries + - sanism + relme: + https://hcommons.social/@libraryleadpipe: true + https://www.inthelibrarywiththeleadpipe.org/: true + last_post_title: What’s Missing in Conversations about Libraries and Mental Illness + last_post_description: In Brief It is inevitable that public librarians interact + with mentally ill patrons daily. We do our best to help find information and connect + patrons to resources, where appropriate. What is missing + last_post_date: "2024-06-19T16:58:05Z" + last_post_link: https://www.inthelibrarywiththeleadpipe.org/2024/conversations-about-libraries/ + last_post_categories: + - Uncategorized + - anxiety + - libraries + - mental health + - mental illness + - not alone notes + - obsessive compulsive disorder + - ocd + - public libraries + - sanism + last_post_language: "" + last_post_guid: c6d5ec44626965ad92b302194c069f4c + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-460f793b1e397d8be9a941e925ca7662.md b/content/discover/feed-460f793b1e397d8be9a941e925ca7662.md deleted file mode 100644 index 333b8b2bb..000000000 --- a/content/discover/feed-460f793b1e397d8be9a941e925ca7662.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Andy Baio -date: "1970-01-01T00:00:00Z" -description: Public posts from @andybaio@xoxo.zone -params: - feedlink: https://xoxo.zone/@andybaio.rss - feedtype: rss - feedid: 460f793b1e397d8be9a941e925ca7662 - websites: - https://xoxo.zone/@andybaio: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://waxy.org/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-460fb5919538a877af5c3757c3741d0f.md b/content/discover/feed-460fb5919538a877af5c3757c3741d0f.md deleted file mode 100644 index fe7bba793..000000000 --- a/content/discover/feed-460fb5919538a877af5c3757c3741d0f.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Articles by Charlotte Dann -date: "1970-01-01T00:00:00Z" -description: A blog about front end technologies and generative art -params: - feedlink: https://charlottedann.com/rss.xml - feedtype: rss - feedid: 460fb5919538a877af5c3757c3741d0f - websites: - https://charlottedann.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: [] - relme: - https://codepen.io/pouretrebelle: false - https://github.com/pouretrebelle: true - https://pouretrebelle.com/: false - https://twitter.com/charlotte_dann: false - https://www.goodreads.com/user/show/5008298-charlotte-dann: false - https://youtube.com/chareads: false - last_post_title: Soft-blob physics - last_post_description: "" - last_post_date: "2023-10-13T00:00:00Z" - last_post_link: https://charlottedann.com/article/soft-blob-physics - last_post_categories: [] - last_post_guid: 1cb414c5e94f5243002761f83a609581 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 15 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4613a939cda1abf83a89a7be3a298f42.md b/content/discover/feed-4613a939cda1abf83a89a7be3a298f42.md new file mode 100644 index 000000000..fd4ced58e --- /dev/null +++ b/content/discover/feed-4613a939cda1abf83a89a7be3a298f42.md @@ -0,0 +1,44 @@ +--- +title: Miscellany +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://pcwalton.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 4613a939cda1abf83a89a7be3a298f42 + websites: + https://pcwalton.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - bespin + - rust + relme: + https://pcwalton.blogspot.com/: true + last_post_title: The road ahead for Rust + last_post_description: As of yesterday evening, we have a self-hosting Rust compiler, + which means that the Rust compiler written in Rust can compile itself. The resulting + binary is identical to the compiler built by the + last_post_date: "2011-04-29T16:24:00Z" + last_post_link: https://pcwalton.blogspot.com/2011/04/road-ahead-for-rust.html + last_post_categories: [] + last_post_language: "" + last_post_guid: fe63569ebd4f92a96dafb153eb955dc0 + score_criteria: + cats: 2 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 12 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4620b758cc6e2955ba58b563069fb1de.md b/content/discover/feed-4620b758cc6e2955ba58b563069fb1de.md deleted file mode 100644 index 3f7b37b92..000000000 --- a/content/discover/feed-4620b758cc6e2955ba58b563069fb1de.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Pronouns.page -date: "1970-01-01T00:00:00Z" -description: Public posts from @PronounsPage@tech.lgbt -params: - feedlink: https://tech.lgbt/@PronounsPage.rss - feedtype: rss - feedid: 4620b758cc6e2955ba58b563069fb1de - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-462f5537cba04b6d28f2b4c21139f7cd.md b/content/discover/feed-462f5537cba04b6d28f2b4c21139f7cd.md new file mode 100644 index 000000000..e1ebc4153 --- /dev/null +++ b/content/discover/feed-462f5537cba04b6d28f2b4c21139f7cd.md @@ -0,0 +1,43 @@ +--- +title: Software Kompetenz der Zukunft +date: "1970-01-01T00:00:00Z" +description: Software Kompetenz der Zukunft 2011 +params: + feedlink: https://open-change-community.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 462f5537cba04b6d28f2b4c21139f7cd + websites: + https://open-change-community.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Conference + relme: + https://open-change-community.blogspot.com/: true + last_post_title: Open Forum 2011 - ready, set, change! + last_post_description: |- + Im Open Change-Forum findet sich eine erste Zusammenfassung von Eindrücken und Gedanken zur diesjährigen Konferenz in Stuttgart: + http://openchange.wordpress.com/2011/07/13/ready-set-change/ + last_post_date: "2011-07-13T19:16:00Z" + last_post_link: https://open-change-community.blogspot.com/2011/07/open-forum-2011-ready-set-change.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 48c86fae08da5294a75f431cd8cf19c7 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-46358f112a118a33b91f45545fbdea42.md b/content/discover/feed-46358f112a118a33b91f45545fbdea42.md new file mode 100644 index 000000000..6ddb35040 --- /dev/null +++ b/content/discover/feed-46358f112a118a33b91f45545fbdea42.md @@ -0,0 +1,42 @@ +--- +title: Emacs on Wai Hon's Blog +date: "1970-01-01T00:00:00Z" +description: Recent content in Emacs on Wai Hon's Blog +params: + feedlink: https://whhone.com/tags/emacs/index.xml + feedtype: rss + feedid: 46358f112a118a33b91f45545fbdea42 + websites: + https://whhone.com/tags/emacs/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://whhone.com/tags/emacs/: true + last_post_title: Options to Replace String in Large Scale + last_post_description: 10 years ago, when I became a software engineer, my mentor + showed me how to replace all occurrences of a string (or a regex) under a large + codebase effectively with a tool called codemod. It turned + last_post_date: "2023-10-25T00:00:00Z" + last_post_link: https://whhone.com/posts/large-scale-replace-string/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 2af14cd9c67b7c6a7c051ff63f3f93ef + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-465474efba01cc062d9e0a46d0deef34.md b/content/discover/feed-465474efba01cc062d9e0a46d0deef34.md deleted file mode 100644 index b7a9cc9b8..000000000 --- a/content/discover/feed-465474efba01cc062d9e0a46d0deef34.md +++ /dev/null @@ -1,52 +0,0 @@ ---- -title: Brad Frost -date: "2024-05-23T14:39:07Z" -description: Design Systems Consulting, Web Development, Workshops, and Music -params: - feedlink: https://feeds.feedburner.com/brad-frosts-blog - feedtype: atom - feedid: 465474efba01cc062d9e0a46d0deef34 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: - - post - - attention - - focus - - jonathan haidt - - mental health - - mobile - - personal - - productivity - relme: {} - last_post_title: Be gone, vile rectangle! - last_post_description: One day I’ll fulfill my dream of throwing my phone into the - ocean*, but for now I’m settling for throwing my phone in my basement. The Anxious - Generation by Jonathan Haidt articulates how the - last_post_date: "2024-05-23T14:39:07Z" - last_post_link: https://bradfrost.com/blog/post/be-gone-vile-rectangle/ - last_post_categories: - - post - - attention - - focus - - jonathan haidt - - mental health - - mobile - - personal - - productivity - last_post_guid: c31499025d449e542a4f8105421bf85b - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 14 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-465f3d82240b28fd8c6251e75043d8e1.md b/content/discover/feed-465f3d82240b28fd8c6251e75043d8e1.md new file mode 100644 index 000000000..1ef718031 --- /dev/null +++ b/content/discover/feed-465f3d82240b28fd8c6251e75043d8e1.md @@ -0,0 +1,139 @@ +--- +title: Lunk Alam At Jim +date: "2024-02-07T17:36:03-08:00" +description: Alarming at jim tell about something wrong +params: + feedlink: https://survivology101.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 465f3d82240b28fd8c6251e75043d8e1 + websites: + https://survivology101.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Noisy conditions + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Lunk Alarm Uses + last_post_description: "" + last_post_date: "2021-04-30T11:53:43-07:00" + last_post_link: https://survivology101.blogspot.com/2021/04/lunk-alarm-uses.html + last_post_categories: + - Noisy conditions + last_post_language: "" + last_post_guid: bdc3c0c59480e367b13d054b4a1d152c + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-46704162810ffc57383d66b3c079339e.md b/content/discover/feed-46704162810ffc57383d66b3c079339e.md deleted file mode 100644 index ecd6f2b81..000000000 --- a/content/discover/feed-46704162810ffc57383d66b3c079339e.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Michele's Blog -date: "2024-06-26T18:47:26Z" -description: "" -params: - feedlink: https://acksyn.org/index.atom - feedtype: atom - feedid: 46704162810ffc57383d66b3c079339e - websites: - https://acksyn.org/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - en - relme: {} - last_post_title: In Memory of Daniel Bristot de Oliveira - last_post_description: |- - This post falls in the category of things I never thought nor wanted to write: - we lost Daniel this week due to some probable heart failure. - I met Daniel in Red Hat's internal IRC #italy channel. It - last_post_date: "2024-06-26T09:33:34+02:00" - last_post_link: http://acksyn.org/posts/in-memory-of-daniel-bristot-de-oliveira/ - last_post_categories: - - en - last_post_guid: d7fd41834e91ff7a620ad3fc81352a69 - score_criteria: - cats: 0 - description: 0 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4685ae84966feff5e12e3b849531b6ea.md b/content/discover/feed-4685ae84966feff5e12e3b849531b6ea.md deleted file mode 100644 index aff2a17ef..000000000 --- a/content/discover/feed-4685ae84966feff5e12e3b849531b6ea.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Blog on Luke's Wild Website -date: "1970-01-01T00:00:00Z" -description: Recent content in Blog on Luke's Wild Website -params: - feedlink: https://www.lkhrs.com/index.xml - feedtype: rss - feedid: 4685ae84966feff5e12e3b849531b6ea - websites: - https://www.lkhrs.com/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Went to bookclub - last_post_description: Went to bookclub last night. It’s a secret music venue within - walking distance that you’d pass right on by if you didn’t know what to look for. - One of the smallest venues I’ve ever been to, - last_post_date: "2024-05-31T18:08:19-05:00" - last_post_link: https://www.lkhrs.com/blog/2024/went-to-bookclub/ - last_post_categories: [] - last_post_guid: 98398427856a3d20e6ad9d48ae9ad1fb - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-46955b5338285c39f113eeed6e5f1617.md b/content/discover/feed-46955b5338285c39f113eeed6e5f1617.md new file mode 100644 index 000000000..9757b3acc --- /dev/null +++ b/content/discover/feed-46955b5338285c39f113eeed6e5f1617.md @@ -0,0 +1,45 @@ +--- +title: Martin Pitt +date: "1970-01-01T00:00:00Z" +description: Recent content on Martin Pitt +params: + feedlink: https://piware.de/index.xml + feedtype: rss + feedid: 46955b5338285c39f113eeed6e5f1617 + websites: + https://piware.de/: true + https://piware.de/categories/debian/: false + https://piware.de/post/: false + https://www.piware.de/: false + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://piware.de/: true + last_post_title: A quarter on the Red Hat OSCI and Testing Farm team + last_post_description: For the last quarter I have worked in Red Hat’s Testing Farm + (TFT) and “Operating System CI” (OSCI) and teams, on a temporary rotation. TFT + develops and runs the Testing Farm (TF) + last_post_date: "2022-12-19T00:00:00Z" + last_post_link: https://piware.de/post/2022-12-19-quarter-in-osci-tf/ + last_post_categories: [] + last_post_language: "" + last_post_guid: be0fc0ca5c584fca630905aeea337143 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-469ad3f513bcce3e5b3ec7bc4c00851d.md b/content/discover/feed-469ad3f513bcce3e5b3ec7bc4c00851d.md new file mode 100644 index 000000000..1e301ba05 --- /dev/null +++ b/content/discover/feed-469ad3f513bcce3e5b3ec7bc4c00851d.md @@ -0,0 +1,52 @@ +--- +title: Die kleine Computer Fibel +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://computerfibel.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 469ad3f513bcce3e5b3ec7bc4c00851d + websites: + https://computerfibel.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Backup + - Daten + - Datensicherung + - Sicherung + relme: + https://computerfibel.blogspot.com/: true + https://unicase.blogspot.com/: true + https://www.blogger.com/profile/18196528196170889175: true + last_post_title: 'Bitte: Backup! Teil 2' + last_post_description: Interessant, was für Reaktionen der letzte Post ausgelöst + hat. Die seltensten sind "Ich mach schon ein Backup" oder "Ich habe mir jetzt + alles eingerichtet" - großes Lob! Viel öfter "Danke, aber + last_post_date: "2010-10-29T08:15:00Z" + last_post_link: https://computerfibel.blogspot.com/2010/10/bitte-backup-teil-2.html + last_post_categories: + - Backup + - Daten + - Datensicherung + - Sicherung + last_post_language: "" + last_post_guid: 0a85820c71a9ed79dc4ed3ad226c26ac + score_criteria: + cats: 4 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-46a654363d1186974f94c18f1119b378.md b/content/discover/feed-46a654363d1186974f94c18f1119b378.md new file mode 100644 index 000000000..635747bad --- /dev/null +++ b/content/discover/feed-46a654363d1186974f94c18f1119b378.md @@ -0,0 +1,40 @@ +--- +title: paulcapewell.com +date: "2024-06-12T00:00:00Z" +description: An RSS feed for posts at paulcapewell.com +params: + feedlink: https://paulcapewell.com/feed/ + feedtype: atom + feedid: 46a654363d1186974f94c18f1119b378 + websites: + https://paulcapewell.com/: false + blogrolls: [] + recommended: [] + recommender: + - https://roytang.net/blog/feed/rss/ + categories: [] + relme: {} + last_post_title: Some contacts + last_post_description: "" + last_post_date: "2024-06-12T00:00:00Z" + last_post_link: https://paulcapewell.com/blog/240612/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 3ef372f1a722b892f1cc178e03ddc5d7 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 1 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-46aacca35aaf7da016a3def2314c3e7b.md b/content/discover/feed-46aacca35aaf7da016a3def2314c3e7b.md deleted file mode 100644 index ce719d0c9..000000000 --- a/content/discover/feed-46aacca35aaf7da016a3def2314c3e7b.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: codeblog -date: "1970-01-01T00:00:00Z" -description: code is freedom -- patching my itch -params: - feedlink: https://outflux.net/blog/feed/ - feedtype: rss - feedid: 46aacca35aaf7da016a3def2314c3e7b - websites: - https://outflux.net/blog/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Blogging - - Kernel - - Security - relme: {} - last_post_title: Enable MTE on Pixel 8 - last_post_description: The Pixel 8 hardware (Tensor G3) supports the ARM Memory - Tagging Extension (MTE), and software support is available both in Android userspace - and the Linux kernel. This feature is a powerful defense - last_post_date: "2023-10-26T19:19:46Z" - last_post_link: https://outflux.net/blog/archives/2023/10/26/enable-mte-on-pixel-8/ - last_post_categories: - - Blogging - - Kernel - - Security - last_post_guid: 0b7ad355f43aef6d0aea6c2da4e2f765 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-46bd803ff2b0ec18148b07295de205ab.md b/content/discover/feed-46bd803ff2b0ec18148b07295de205ab.md deleted file mode 100644 index c29c67d54..000000000 --- a/content/discover/feed-46bd803ff2b0ec18148b07295de205ab.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Lene Saile -date: "1970-01-01T00:00:00Z" -description: Public posts from @lene@front-end.social -params: - feedlink: https://front-end.social/@lene.rss - feedtype: rss - feedid: 46bd803ff2b0ec18148b07295de205ab - websites: - https://front-end.social/@lene: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/madrilene: true - https://www.lene.dev/: true - https://www.lenesaile.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-46e300258015e04c063808f21179c5a9.md b/content/discover/feed-46e300258015e04c063808f21179c5a9.md index 805a4f7d2..db142ea44 100644 --- a/content/discover/feed-46e300258015e04c063808f21179c5a9.md +++ b/content/discover/feed-46e300258015e04c063808f21179c5a9.md @@ -13,9 +13,9 @@ params: recommender: - https://visitmy.website/feed.xml categories: - - Uncategorized - AI - Futures + - Uncategorized relme: {} last_post_title: 'Box111: Corp Wars' last_post_description: One of the things I’ve been really emphasising about this @@ -24,20 +24,25 @@ params: last_post_date: "2024-03-14T08:31:33Z" last_post_link: https://blog.tobiasrevell.com/2024/03/14/box111-corp-wars/ last_post_categories: - - Uncategorized - AI - Futures + - Uncategorized + last_post_language: "" last_post_guid: c2ec0b140f24721d40d5da9ce75065b6 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 16 + score: 20 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-46ff1333b85b583820f1ad27c437ee29.md b/content/discover/feed-46ff1333b85b583820f1ad27c437ee29.md deleted file mode 100644 index 9c8119f8a..000000000 --- a/content/discover/feed-46ff1333b85b583820f1ad27c437ee29.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: The Shining Path of Least Resistance -date: "1970-01-01T00:00:00Z" -description: LeastResistance.Net -params: - feedlink: https://leastresistance.wordpress.com/feed/ - feedtype: rss - feedid: 46ff1333b85b583820f1ad27c437ee29 - websites: - https://leastresistance.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Uncategorized - relme: {} - last_post_title: 'New Year: New Site' - last_post_description: I’ve decided to move my content over to https://mattray.github.io - since I’m primarily writing about technical topics and the Markdown-based Jekyll - workflow is pretty simple. I’ll leave this - last_post_date: "2019-02-07T02:56:55Z" - last_post_link: https://leastresistance.wordpress.com/2019/02/06/new-year-new-site/ - last_post_categories: - - Uncategorized - last_post_guid: c7ecfc6f38280af4cc2181338d227fa3 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4713658743bef55e7a28c0f120c8e071.md b/content/discover/feed-4713658743bef55e7a28c0f120c8e071.md deleted file mode 100644 index abae3a3ae..000000000 --- a/content/discover/feed-4713658743bef55e7a28c0f120c8e071.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Anil Dash -date: "1970-01-01T00:00:00Z" -description: Public posts from @anildash@me.dm -params: - feedlink: https://me.dm/@anildash.rss - feedtype: rss - feedid: 4713658743bef55e7a28c0f120c8e071 - websites: - https://me.dm/@anildash: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://anildash.com/: true - https://glitch.com/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4727dbf59f833a058dd3e51b3d0714c7.md b/content/discover/feed-4727dbf59f833a058dd3e51b3d0714c7.md new file mode 100644 index 000000000..eb415d653 --- /dev/null +++ b/content/discover/feed-4727dbf59f833a058dd3e51b3d0714c7.md @@ -0,0 +1,42 @@ +--- +title: Cozinheiro de Domingo +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://cozinheirodedomingo.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 4727dbf59f833a058dd3e51b3d0714c7 + websites: + https://cozinheirodedomingo.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://cozinheirodedomingo.blogspot.com/: true + last_post_title: Assando carnes no forno doméstico + last_post_description: Não tenho tido muito tempo de cozinhar. Tenho feito algumas + coisas aqui e ali, mas nunca lembro de postar. Hoje lembrei do blog meio por acaso + e resolvi postar o que estou fazendo agora. É bem + last_post_date: "2012-11-11T16:51:00Z" + last_post_link: https://cozinheirodedomingo.blogspot.com/2012/11/assando-carnes-no-forno-domestico.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 0c8c75c5fa0c7198408d74627fe55424 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-473250d18fad96c97e7215b16b1da456.md b/content/discover/feed-473250d18fad96c97e7215b16b1da456.md deleted file mode 100644 index 932bae666..000000000 --- a/content/discover/feed-473250d18fad96c97e7215b16b1da456.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: '@neugierig.bsky.social - neu•gierig' -date: "1970-01-01T00:00:00Z" -description: Ein Podcast & Blog über Kreativität, Technologie, Arbeit und Menschen - hinter ihren Pseudonymen und Avataren. Von und mit Marc Thiele. -params: - feedlink: https://bsky.app/profile/did:plc:44uxsubklpgsgr2o3nxuhm6i/rss - feedtype: rss - feedid: 473250d18fad96c97e7215b16b1da456 - websites: - https://bsky.app/profile/neugierig.bsky.social: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-473865bbe021085c30bd7c4fea8c9a16.md b/content/discover/feed-473865bbe021085c30bd7c4fea8c9a16.md deleted file mode 100644 index e33d6d263..000000000 --- a/content/discover/feed-473865bbe021085c30bd7c4fea8c9a16.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Nicholas Danes (he/him/his) -date: "1970-01-01T00:00:00Z" -description: Public posts from @ndanes@mast.hpc.social -params: - feedlink: https://mast.hpc.social/@ndanes.rss - feedtype: rss - feedid: 473865bbe021085c30bd7c4fea8c9a16 - websites: - https://mast.hpc.social/@ndanes: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://ndanes.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-473c0071ed25ac6c0c3fc23c84394685.md b/content/discover/feed-473c0071ed25ac6c0c3fc23c84394685.md new file mode 100644 index 000000000..50348cebf --- /dev/null +++ b/content/discover/feed-473c0071ed25ac6c0c3fc23c84394685.md @@ -0,0 +1,43 @@ +--- +title: Benjamin Bouvier's world +date: "2024-07-08T00:00:00Z" +description: Technical blog and random musings. +params: + feedlink: https://bouvier.cc/atom.xml + feedtype: atom + feedid: 473c0071ed25ac6c0c3fc23c84394685 + websites: + https://bouvier.cc/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://bouvier.cc/: true + https://github.com/bnjbvr: true + https://notes.bouvier.cc/: true + https://tutut.delire.party/@bnjbvr: true + last_post_title: 'Hetzner: cheap auction servers, and how to find them' + last_post_description: "" + last_post_date: "2024-07-08T00:00:00Z" + last_post_link: https://bouvier.cc/hetzner-auction-server-script/ + last_post_categories: [] + last_post_language: "" + last_post_guid: e5ad6c7ddb93692ec6166c996a571770 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-4743ba4839f82cb17b517f942a36ae4f.md b/content/discover/feed-4743ba4839f82cb17b517f942a36ae4f.md deleted file mode 100644 index 669dcb24e..000000000 --- a/content/discover/feed-4743ba4839f82cb17b517f942a36ae4f.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: the morning paper -date: "1970-01-01T00:00:00Z" -description: a random walk through Computer Science research, by Adrian Colyer -params: - feedlink: https://blog.acolyer.org/feed/ - feedtype: rss - feedid: 4743ba4839f82cb17b517f942a36ae4f - websites: - https://blog.acolyer.org/: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: - - Uncategorized - relme: {} - last_post_title: The ants and the pheromones - last_post_description: I’m super excited about the new chapter emerging in our research - on a programmable cloud. This is what comes after serverless, people. In this - thread, a few recent talks/papers on the vision. First - last_post_date: "2021-02-08T06:00:00Z" - last_post_link: https://blog.acolyer.org/2021/02/08/the-ants-and-the-pheromones/ - last_post_categories: - - Uncategorized - last_post_guid: e48fd895ec46d3b94ee43fa6f7af31aa - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 14 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-474e93baa78154570e46a43a98e20882.md b/content/discover/feed-474e93baa78154570e46a43a98e20882.md deleted file mode 100644 index baaacdb06..000000000 --- a/content/discover/feed-474e93baa78154570e46a43a98e20882.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Comments for Matt Mullenweg -date: "1970-01-01T00:00:00Z" -description: Unlucky in Cards -params: - feedlink: https://ma.tt/comments/feed/ - feedtype: rss - feedid: 474e93baa78154570e46a43a98e20882 - websites: - https://ma.tt/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Melt Your Butter by Chris Koerner - last_post_description: This too is genuinely one of my favorite airplane travel - hacks. I felt like a genius when I discovered it. - last_post_date: "2024-06-04T01:53:06Z" - last_post_link: https://ma.tt/2024/06/melt-your-butter/#comment-598771 - last_post_categories: [] - last_post_guid: eb277bbb71eda73be7bf6885be87d583 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4777cbb3b6bec51bc05994034116606a.md b/content/discover/feed-4777cbb3b6bec51bc05994034116606a.md new file mode 100644 index 000000000..cc8cdf291 --- /dev/null +++ b/content/discover/feed-4777cbb3b6bec51bc05994034116606a.md @@ -0,0 +1,40 @@ +--- +title: My GSoC Blog +date: "2024-07-08T02:28:31-07:00" +description: "" +params: + feedlink: https://sudhanshut.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 4777cbb3b6bec51bc05994034116606a + websites: + https://sudhanshut.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://sudhanshut.blogspot.com/: true + last_post_title: 'GSoC 2024: Week 3-4 Report' + last_post_description: "" + last_post_date: "2024-07-08T02:27:59-07:00" + last_post_link: https://sudhanshut.blogspot.com/2024/07/gsoc-2024-week-3-4-report.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 8f1fb2f2c51f81dca0026b583588be87 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-477d603f47e89c3a6f5587921b12728e.md b/content/discover/feed-477d603f47e89c3a6f5587921b12728e.md new file mode 100644 index 000000000..9a2bb6c50 --- /dev/null +++ b/content/discover/feed-477d603f47e89c3a6f5587921b12728e.md @@ -0,0 +1,52 @@ +--- +title: /dev/random +date: "2024-03-14T05:59:19-07:00" +description: "" +params: + feedlink: https://helderfoo.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 477d603f47e89c3a6f5587921b12728e + websites: + https://helderfoo.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - android + - canvas + - graphics + - html5 + - javascript + - native + - python + - qt + - web + relme: + https://helderfoo.blogspot.com/: true + https://speedcrunch.blogspot.com/: true + https://www.blogger.com/profile/06430233725902328852: true + last_post_title: Installing Ubuntu on a MSI GS60 6QE (Ghost Pro) laptop (and fixing + issues) + last_post_description: "" + last_post_date: "2016-06-30T07:42:37-07:00" + last_post_link: https://helderfoo.blogspot.com/2016/06/installing-ubuntu-on-msi-gs60-6qe-ghost.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 8151010649bc1600b4f47eff0f17379d + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-477dc76b46ada9e3200697d54d4f9942.md b/content/discover/feed-477dc76b46ada9e3200697d54d4f9942.md index 930c1bffc..e12a03f98 100644 --- a/content/discover/feed-477dc76b46ada9e3200697d54d4f9942.md +++ b/content/discover/feed-477dc76b46ada9e3200697d54d4f9942.md @@ -1,6 +1,6 @@ --- title: R. S. Doiel Blog -date: "2024-05-10T00:00:00Z" +date: "2024-07-08T00:00:00Z" description: Robert's ramblings and wonderigs params: feedlink: https://rsdoiel.github.io/rss.xml @@ -11,36 +11,36 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: [] relme: - https://bsky.app/profile/rsdoiel.bsky.social: false + https://github.com/rsdoiel: true + https://rsdoiel.github.io/: true https://tilde.zone/@rsdoiel: true - last_post_title: Building Lagrange on Raspberry Pi OS - last_post_description: These are my quick notes on building the Lagrange Gemini - browser on Raspberry Pi OS. They are based on instructions I found at . These - are in French and I don't speak or read French. My loss. The - last_post_date: "2024-05-10T00:00:00Z" - last_post_link: https://rsdoiel.github.io/blog/2024/05/10/building-lagrange-on-pi-os.html + last_post_title: Web GUI and Deno + last_post_description: My notes on two Web GUI modules available for Deno. + last_post_date: "2024-07-08T00:00:00Z" + last_post_link: https://rsdoiel.github.io/blog/2024/07/08/webgui_and_deno.html last_post_categories: [] - last_post_guid: 4f4147a5156e6b302197596b8140ee83 + last_post_language: "" + last_post_guid: e644e2082bc68e5398b1269d8f678682 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-478ec104baa73113b4af7132e137ed88.md b/content/discover/feed-478ec104baa73113b4af7132e137ed88.md deleted file mode 100644 index cca01341b..000000000 --- a/content/discover/feed-478ec104baa73113b4af7132e137ed88.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Retro Garden -date: "1970-01-01T00:00:00Z" -description: Retro Gaming & Video Games Reviews, News and Features -params: - feedlink: https://www.retrogarden.co.uk/feed/ - feedtype: rss - feedid: 478ec104baa73113b4af7132e137ed88 - websites: - https://www.retrogarden.co.uk/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - News - relme: {} - last_post_title: Evercade Announce New Consoles, Tomb Raider & Thalamus Collection - for 2024 - last_post_description: Blaze Entertainment – the makers of the popular Retro themed - lineup the Evercade – has announced three new collections within the past week. - Along with their announcement in February that 64 Bit - last_post_date: "2024-04-23T13:40:05Z" - last_post_link: https://www.retrogarden.co.uk/news/evercade-announce-new-consoles-tomb-raider-thalamus-collection-for-2024/ - last_post_categories: - - News - last_post_guid: 4bea6bcd175357b90444f133877806a9 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-47a522910c35005f72bbc42ac2afc246.md b/content/discover/feed-47a522910c35005f72bbc42ac2afc246.md deleted file mode 100644 index 471ca0d23..000000000 --- a/content/discover/feed-47a522910c35005f72bbc42ac2afc246.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: 'Filippo Valsorda :go:' -date: "1970-01-01T00:00:00Z" -description: Public posts from @filippo@abyssdomain.expert -params: - feedlink: https://abyssdomain.expert/@filippo.rss - feedtype: rss - feedid: 47a522910c35005f72bbc42ac2afc246 - websites: - https://abyssdomain.expert/@filippo: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://filippo.io/: true - https://twitter.com/FiloSottile: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-47b030e84ccc9d9269f5155a06485893.md b/content/discover/feed-47b030e84ccc9d9269f5155a06485893.md index a732f576b..69eb46656 100644 --- a/content/discover/feed-47b030e84ccc9d9269f5155a06485893.md +++ b/content/discover/feed-47b030e84ccc9d9269f5155a06485893.md @@ -15,27 +15,36 @@ params: - https://blog.numericcitizen.me/feed.xml - https://blog.numericcitizen.me/podcast.xml - https://rknight.me/subscribe/posts/rss.xml - categories: [] + categories: + - link relme: + https://birchtree.me/: true https://isfeeling.social/@matt: true - last_post_title: Welcome to Comfort Zone! - last_post_description: I'm excited to announce Comfort Zone, a new podcast featuring - myself, Christopher Lawley, and Niléane!Comfort Zone is the newest member of the - MacStories family, and we're extremely excited to be - last_post_date: "2024-06-04T13:45:32Z" - last_post_link: https://birchtree.me/blog/welcome-to-comfort-zone/ - last_post_categories: [] - last_post_guid: 50ce59e31d9b0ec64e93f7aac9ce1d8a + https://quickreviews.app/: true + last_post_title: VR is hovering (and what does a “big” product mean anymore?) + last_post_description: 'Benedict Evans: The VR Winter Continuesit’s obvious that + the devices will get better, lighter and cheaper, but much less obvious whether + that’s enough. How many people will care? We should be' + last_post_date: "2024-07-08T23:55:09Z" + last_post_link: https://birchtree.me/blog/vr-is-hovering-and-what-does-a-big-product-mean-anymore/ + last_post_categories: + - link + last_post_language: "" + last_post_guid: a7a171ce4fa539aed6e9c3b98b0e86c1 score_criteria: cats: 0 description: 3 - postcats: 0 + feedlangs: 0 + postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 19 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-47b8e5e88d557b33e4d49103b926c4c0.md b/content/discover/feed-47b8e5e88d557b33e4d49103b926c4c0.md new file mode 100644 index 000000000..4ba915cb9 --- /dev/null +++ b/content/discover/feed-47b8e5e88d557b33e4d49103b926c4c0.md @@ -0,0 +1,47 @@ +--- +title: Benoit Langlois +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://blanglois.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 47b8e5e88d557b33e4d49103b926c4c0 + websites: + https://blanglois.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - eclipse + - egf + - emf + - generation chain + relme: + https://blanglois.blogspot.com/: true + https://www.blogger.com/profile/07648291610715878543: true + last_post_title: EGF at EclipseDay Paris 2011 + last_post_description: 'What are complex generations and how to deal with? The talk + "complex generations with EGF" presented at the EclipseDay Paris 2011 is now available + here.Video link of the two presented EGF portfolios:' + last_post_date: "2011-11-10T00:37:00Z" + last_post_link: https://blanglois.blogspot.com/2011/11/egf-at-eclipseday-paris-2011.html + last_post_categories: [] + last_post_language: "" + last_post_guid: bbc1be97804ea8e62755222b62798303 + score_criteria: + cats: 4 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-47c5b203842969b1c8fb8d5077056ef8.md b/content/discover/feed-47c5b203842969b1c8fb8d5077056ef8.md new file mode 100644 index 000000000..6997fe3eb --- /dev/null +++ b/content/discover/feed-47c5b203842969b1c8fb8d5077056ef8.md @@ -0,0 +1,210 @@ +--- +title: ProLibreOffice +date: "2024-07-05T12:28:06-07:00" +description: Об использовании, развитии и проблемах офисного пакета LibreOffice +params: + feedlink: https://antilibreoffice.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 47c5b203842969b1c8fb8d5077056ef8 + websites: + https://antilibreoffice.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - "2021" + - "2022" + - "24.2" + - "24.8" + - "7.0" + - "7.1" + - "7.2" + - "7.3" + - "7.4" + - "7.5" + - "7.6" + - ARM + - AVX + - Android + - Apple M1 + - Astra + - Base + - BaseAlt + - Basic + - Beta + - Branding + - CODE + - Calc + - CiB + - Colibre + - Collabora + - Collabora Online + - DDoS + - Draw + - Firebird + - GSoC + - Glade + - HiDPI + - Impress + - Jumbo sheets + - KDE 5 + - LibOCon 2019 + - LibOCon 2020 + - LibreOffice Online + - LibreOffice не запускается + - MSI + - Math + - Membership Committee + - OpenGL + - PDF + - PPTX + - Python + - QA + - Retina + - SIMD + - Si-GUI + - Skia + - SmartArt + - Soft Edge + - TDF + - Windows + - Windows 10 говно + - Windows 7 + - Writer + - XLOOKUP + - XLSX + - gerrit + - graphic stack + - macOS + - mold + - perf + - Автотекст + - Автофильтр + - Багзилла + - Боковая панель + - Брендинг + - Будущее + - Быстрый поиск + - В организациях + - Валюта + - Вандалы + - Версии + - Видео + - Волонтеры + - Выборы + - ГОСТ + - Диаграммы + - Дизайн + - Документация + - Донаты + - Дубликат блога + - ЕСКД + - Закладки + - Значки + - Интерфейс + - Кириллица + - Команда LibreOffice + - Конференция + - Локализация + - Макросы + - Маркетинг + - Мысли + - Навигатор + - Непечатаемые символы + - Новости + - Нумерация страниц + - Нумерация строк + - Обновление + - Обучение + - Объявления + - Опросы + - Отслеживать изменения + - Отчёты + - Оформление + - Пароли + - Переводы + - Подсветка + - Портим документы + - Презентации + - Приёмы работы + - Программисты + - Производительность + - Прошлое + - Разделы + - Разработка + - Расширения + - Релизы + - С++ + - Совместимость с MS Office + - Сообщество + - Спарклайны + - Справка + - Сравнение с MS Office + - Сравнение с альтернативами + - Статистика + - Стили + - Страницы + - Странности + - Таблицы + - Табуляция + - Тени + - Удаление + - Условное форматирование + - Форматирование текста + - Формулы + - Фото + - Функционал + - Цвета + - Шаблоны + - Экспорт + - видеолекция + - гиперссылки + - динамические массивы + - исправление багов винды + - кавычки + - компиляция + - конкурс + - нумерация абзацев + - объединённые ячейки + - перекрестные ссылки + - путь боли + - результаты + - сводные таблицы + - сноски + - сраная политика + - тёмная тема + - установка + - форум + - функции + relme: + https://antilibreoffice.blogspot.com/: true + https://libreoffice-dev.blogspot.com/: true + https://pythonfm.blogspot.com/: true + https://www.blogger.com/profile/11694297935288423889: true + last_post_title: Функция LET тоже будет добавлена в LibreOffice Calc + last_post_description: "" + last_post_date: "2024-06-05T03:33:44-07:00" + last_post_link: https://antilibreoffice.blogspot.com/2024/06/let-libreoffice-calc.html + last_post_categories: + - "24.8" + - Calc + - функции + last_post_language: "" + last_post_guid: 4c091552a0d2b6cddeeb7065048665fa + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-47d1c01d230790b2369a870cf0e98cec.md b/content/discover/feed-47d1c01d230790b2369a870cf0e98cec.md deleted file mode 100644 index ed9a95c53..000000000 --- a/content/discover/feed-47d1c01d230790b2369a870cf0e98cec.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: StackHPC -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://www.stackhpc.com/feeds/stackhpc.rss.xml - feedtype: rss - feedid: 47d1c01d230790b2369a870cf0e98cec - websites: - https://www.stackhpc.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Workloads - - openstack - - placement - relme: {} - last_post_title: Hypervisor Isolation in OpenStack - last_post_description: A short guide for isolating an OpenStack project to an exclusive - set of hypervisors. - last_post_date: "2024-06-24T10:00:00+01:00" - last_post_link: https://www.stackhpc.com/hypervisor-isolation.html - last_post_categories: - - Workloads - - openstack - - placement - last_post_guid: 4ea82860ac1d7db758346a9eee368f42 - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-47e49ae7be0062333179bdae5656d5cc.md b/content/discover/feed-47e49ae7be0062333179bdae5656d5cc.md new file mode 100644 index 000000000..3f6852480 --- /dev/null +++ b/content/discover/feed-47e49ae7be0062333179bdae5656d5cc.md @@ -0,0 +1,42 @@ +--- +title: Ruby Central +date: "1970-01-01T00:00:00Z" +description: Supporting the Ruby Community Since 2001 +params: + feedlink: https://rubycentral.org/news/rss/ + feedtype: rss + feedid: 47e49ae7be0062333179bdae5656d5cc + websites: + https://rubycentral.org/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: [] + relme: {} + last_post_title: 'RubyConf 2024 Presale Tickets: UPDATE!' + last_post_description: "" + last_post_date: "2024-06-26T17:52:29Z" + last_post_link: https://rubycentral.org/news/rubyconf-2024-presale-tickets-update/ + last_post_categories: [] + last_post_language: "" + last_post_guid: b142a7590dc456b3dff1f67f17b4b86d + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-47e614dc94df11badf7078185ac8f2d4.md b/content/discover/feed-47e614dc94df11badf7078185ac8f2d4.md index 74c69e5ea..9375671f6 100644 --- a/content/discover/feed-47e614dc94df11badf7078185ac8f2d4.md +++ b/content/discover/feed-47e614dc94df11badf7078185ac8f2d4.md @@ -17,26 +17,34 @@ params: categories: - Weekly Notes relme: + https://github.com/thejeshgn: true https://social.thej.in/@thej: true - last_post_title: Weekly Notes 22/2024 - last_post_description: It's that time of the year (Weekly Notes 21/2023) again. - I am in Chennai for Paradox. I like these yearly visits. The year 2023/24 has - been exceptional. Some of the students who had completed the - last_post_date: "2024-05-31T13:22:40Z" - last_post_link: https://thejeshgn.com/2024/05/31/weekly-notes-22-2024/ + https://thejeshgn.com/: true + https://thejeshgn.com/about/: true + last_post_title: Weekly Notes 27/2024 + last_post_description: |- + Welcome to the second half of 2024. This year is flying by. Days feel slow, but months and weeks are speeding. + The post Weekly Notes 27/2024 first appeared on Thejesh GN. + last_post_date: "2024-07-05T13:57:59Z" + last_post_link: https://thejeshgn.com/2024/07/05/weekly-notes-27-2024/ last_post_categories: - Weekly Notes - last_post_guid: c1a619d9090fa58c1050de689e7d1ebd + last_post_language: "" + last_post_guid: 1d88d70ef38930ab4188e8b3723fd9f7 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 11 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-47ef9323382cc19323b187d7fb27c0db.md b/content/discover/feed-47ef9323382cc19323b187d7fb27c0db.md new file mode 100644 index 000000000..345b73a80 --- /dev/null +++ b/content/discover/feed-47ef9323382cc19323b187d7fb27c0db.md @@ -0,0 +1,44 @@ +--- +title: Assassino Suicida +date: "2024-03-07T20:02:40-08:00" +description: "" +params: + feedlink: https://assassinosuicida.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 47ef9323382cc19323b187d7fb27c0db + websites: + https://assassinosuicida.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://assassinosuicida.blogspot.com/: true + https://gta02-core-news.blogspot.com/: true + https://www.blogger.com/profile/17602200301602248416: true + https://zpuino.blogspot.com/: true + https://zxinterfacez.blogspot.com/: true + last_post_title: 'IoT: Idea for future' + last_post_description: "" + last_post_date: "2014-04-30T11:30:40-07:00" + last_post_link: https://assassinosuicida.blogspot.com/2014/04/iot-idea-for-future.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 7c87482ab16157e5d270dfd615296bf0 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-47f62c0511a2ad6af0a28e3d66a211e7.md b/content/discover/feed-47f62c0511a2ad6af0a28e3d66a211e7.md deleted file mode 100644 index 310487e4a..000000000 --- a/content/discover/feed-47f62c0511a2ad6af0a28e3d66a211e7.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for Jan Schmidt -date: "1970-01-01T00:00:00Z" -description: Coding blog - GStreamer, OpenHMD mostly -params: - feedlink: https://noraisin.net/diary/?feed=comments-rss2 - feedtype: rss - feedid: 47f62c0511a2ad6af0a28e3d66a211e7 - websites: - https://noraisin.net/diary/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Rift CV1 – Adventures in Kalman filtering Part 2 by - Erik Dixon - last_post_description: Do you think CPU processing speed might be a bottleneck for - kalman filtering? I'm tempted to move the matrix multiplication functions to run - on the GPU to see if that helps. - last_post_date: "2024-03-28T20:51:42Z" - last_post_link: https://noraisin.net/diary/?p=1012#comment-67908 - last_post_categories: [] - last_post_guid: 9fe67daa61d082a703f175c06518176a - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4803bba003449e9a52827f3f67bdc3a4.md b/content/discover/feed-4803bba003449e9a52827f3f67bdc3a4.md deleted file mode 100644 index 1677fb6fa..000000000 --- a/content/discover/feed-4803bba003449e9a52827f3f67bdc3a4.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Chris Aldrich -date: "1970-01-01T00:00:00Z" -description: Public posts from @chrisaldrich@mastodon.social -params: - feedlink: https://mastodon.social/@chrisaldrich.rss - feedtype: rss - feedid: 4803bba003449e9a52827f3f67bdc3a4 - websites: - https://mastodon.social/@chrisaldrich: true - https://mastodon.social/@chrisaldrich/: false - https://mastodon.social/users/chrisaldrich: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://boffosocko.com/: true - https://boffosocko.com/about/social-media-accounts-and-links/: true - https://toot.wales/web/@chrisaldrich: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-480a44ced55bd9b8bd7970034a48e233.md b/content/discover/feed-480a44ced55bd9b8bd7970034a48e233.md index f604bb9e3..dd58af911 100644 --- a/content/discover/feed-480a44ced55bd9b8bd7970034a48e233.md +++ b/content/discover/feed-480a44ced55bd9b8bd7970034a48e233.md @@ -34,16 +34,19 @@ params: - https://www.patrickrhone.net/feed/ - https://www.swiss-miss.com/feed - https://xkcd.com/atom.xml - - https://blog.strategicedge.co.uk/atom.xml - - https://blog.strategicedge.co.uk/index.rdf - - https://blog.strategicedge.co.uk/rss.xml + - https://bakadesuyo.com/comments/feed/ - https://calnewport.com/feed/podcast - https://causasyazares.substack.com/feed - https://jarche.com/comments/feed/ + - https://nesslabs.com/comments/feed - https://raulhernandezgonzalez.com/comments/feed/ - https://rebeccatoh.co/comments/feed/ - https://robertoferraro.substack.com/feed + - https://timharford.com/comments/feed/ + - https://waitbutwhy.com/comments/feed + - https://waitbutwhy.com/homepage/feed - https://www.patrickrhone.net/comments/feed/ + - https://www.scotthyoung.com/blog/comments/feed/ - https://www.scotthyoung.com/blog/feed/ - https://www.swiss-miss.com/feed/atom - https://xkcd.com/rss.xml @@ -51,13 +54,9 @@ params: - https://frankmeeuwsen.com/feed.xml categories: [] relme: - https://canasto.es/: false https://github.com/jeroensangers: true + https://jeroensangers.com/: true https://keybase.io/jeroensangers: true - https://linkedin.com/in/sangers/: false - https://micro.blog/jeroensangers: false - https://reddit.com/user/beltzanl: false - https://twitter.com/JeroenSangers: false last_post_title: Do not set SMART goals last_post_description: 'The SMART acronym: is not based on scientific theory; is not consistent with empirical evidence; does not consider what type of goal is @@ -65,17 +64,22 @@ params: last_post_date: "2024-02-28T10:04:26+02:00" last_post_link: https://jeroensangers.com/2024/02/28/do-not-set.html last_post_categories: [] + last_post_language: "" last_post_guid: 52ef1f01fa48421297538c28573c0d19 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 10 relme: 2 title: 3 website: 2 - score: 22 + score: 26 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-480d01be967716d63e678efadcbb3122.md b/content/discover/feed-480d01be967716d63e678efadcbb3122.md deleted file mode 100644 index 779db5873..000000000 --- a/content/discover/feed-480d01be967716d63e678efadcbb3122.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: WP Tavern -date: "1970-01-01T00:00:00Z" -description: The WP Tavern Jukebox is a podcast for the WordPress community. We interview - people who are pushing change in how WordPress evolves. Plugins, Blocks, Themes, - Community, Events, Accessibility and -params: - feedlink: https://wptavern.com/feed/podcast/wp-tavern - feedtype: rss - feedid: 480d01be967716d63e678efadcbb3122 - websites: - https://wptavern.com/series/wp-tavern: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - News - - Technology - relme: {} - last_post_title: '#122 – Adam Zielinski on How Playground Is Transforming WordPress - Website Creation' - last_post_description: On the podcast today we have Adam Zielinski. He works as - a WordPress developer at Automattic and in this episode, we talk about Playground, - a groundbreaking project that is redefined the way we - last_post_date: "2024-05-29T14:00:00Z" - last_post_link: https://wptavern.com/podcast/122-adam-zielinski-on-how-playground-is-transforming-wordpress-website-creation - last_post_categories: - - playground - - podcast - last_post_guid: b3eda603ba084684e97853cbead9329e - score_criteria: - cats: 2 - description: 3 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 12 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-4844fb3fa9eea4a56a479f1aeb314f0e.md b/content/discover/feed-4844fb3fa9eea4a56a479f1aeb314f0e.md new file mode 100644 index 000000000..d431835c8 --- /dev/null +++ b/content/discover/feed-4844fb3fa9eea4a56a479f1aeb314f0e.md @@ -0,0 +1,144 @@ +--- +title: Ddositng Vs Leptop +date: "1970-01-01T00:00:00Z" +description: Ddosing Vs Leptop who will be grater. +params: + feedlink: https://dantonewac.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 4844fb3fa9eea4a56a479f1aeb314f0e + websites: + https://dantonewac.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Ddosing have many options + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: DDosing Vs Loptop + last_post_description: |- + How would I be able to deal with secure my worker against + these assaults? + +  You can use many techniques to attle, stop, and even + forestall DDoS and DOS assaults. You can depend on a firewall. Indeed + last_post_date: "2021-04-25T20:02:00Z" + last_post_link: https://dantonewac.blogspot.com/2021/04/ddosing-vs-loptop.html + last_post_categories: + - Ddosing have many options + last_post_language: "" + last_post_guid: 720cb470101711a316a9f50db02b75d6 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-48730c7f4511112cce6bd6556db47e3a.md b/content/discover/feed-48730c7f4511112cce6bd6556db47e3a.md new file mode 100644 index 000000000..69bc385ae --- /dev/null +++ b/content/discover/feed-48730c7f4511112cce6bd6556db47e3a.md @@ -0,0 +1,56 @@ +--- +title: Marko Lalic +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://mlalic.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 48730c7f4511112cce6bd6556db47e3a + websites: + https://mlalic.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Debian + - Django + - Google Summer of Code + - HTTP/2 + - Open Source + - Package Tracking System + - Python + - Rust + relme: + https://jabhay832.blogspot.com/: true + https://mlalic.blogspot.com/: true + https://www.blogger.com/profile/15030366957025845249: true + last_post_title: solicit - an HTTP/2 Library for Rust + last_post_description: |- + For quite some time now, I've been following Rust, + a new(ish) programming language by Mozilla. It's been around for a while, + but recently it's been attracting a lot of buzz. Around the new year, + last_post_date: "2015-03-12T17:55:00Z" + last_post_link: https://mlalic.blogspot.com/2015/03/solicit-http2-library-for-rust.html + last_post_categories: + - HTTP/2 + - Open Source + - Rust + last_post_language: "" + last_post_guid: 94c9093ae269079e84e6f6439cf2afdb + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-487a92797cb0c7d2042f5247989490f9.md b/content/discover/feed-487a92797cb0c7d2042f5247989490f9.md new file mode 100644 index 000000000..5fbff6af1 --- /dev/null +++ b/content/discover/feed-487a92797cb0c7d2042f5247989490f9.md @@ -0,0 +1,51 @@ +--- +title: ongoing by Tim Bray +date: "2024-06-29T10:22:03-07:00" +description: ongoing fragmented essay by Tim Bray +params: + feedlink: https://www.tbray.org/ongoing/ongoing.atom + feedtype: atom + feedid: 487a92797cb0c7d2042f5247989490f9 + websites: + https://www.tbray.org/ongoing/: false + blogrolls: [] + recommended: [] + recommender: + - http://scripting.com/rss.xml + - http://scripting.com/rssNightly.xml + categories: + - Arts + - Arts/Music + - Music + - The World + relme: {} + last_post_title: Lounge Penguin + last_post_description: Lounge, as in a jazz club. Penguin, as in GoGo Pengin, a + piano/bass/drums trio. We caught their show at Jazz Alley in Seattle last + week. Maybe you should go hit a jazz lounge sometime + last_post_date: "2024-06-25T15:58:34-07:00" + last_post_link: https://www.tbray.org/ongoing/When/202x/2024/06/23/Lounge-Penguin + last_post_categories: + - Arts + - Arts/Music + - Music + - The World + last_post_language: "" + last_post_guid: 5cfa1015cfb603d360d96d48df64817f + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 1 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-4885168a08f63515b272c7bf57237d0d.md b/content/discover/feed-4885168a08f63515b272c7bf57237d0d.md index 5348de00d..60c41b4c4 100644 --- a/content/discover/feed-4885168a08f63515b272c7bf57237d0d.md +++ b/content/discover/feed-4885168a08f63515b272c7bf57237d0d.md @@ -7,57 +7,48 @@ params: feedtype: rss feedid: 4885168a08f63515b272c7bf57237d0d websites: - https://www.zylstra.org/blog: true + http://www.zylstra.org/blog/: false + https://www.zylstra.org/: false https://www.zylstra.org/blog/: false - https://zylstra.org/: false - https://zylstra.org/blog: false blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ - https://frankmeeuwsen.com/feed.xml - - https://hacdias.com/feed.xml - - https://www.manton.org/feed - https://www.manton.org/feed.xml - https://www.manton.org/podcast.xml categories: - RSS Only - weeknotes - relme: - https://github.com/tonzyl: false - https://keybase.io/ton: false - https://micro.blog/ton: false - https://proto.tzyl.nl/wp/: false - https://twitter.com/tonzylstra: false - https://www.flickr.com/people/tonz: false - https://www.zylstra.org/blog: true - last_post_title: Week Notes 22-24 - last_post_description: Last week was too much, so this week I aimed to take it slower, - but it was still an intensive week both work wise and at home. This week I Had - a for now weekly session with a psychologist. Made some - last_post_date: "2024-06-02T21:36:12+02:00" - last_post_link: https://www.zylstra.org/blog/2024/06/week-notes-22-24-2/ + relme: {} + last_post_title: Week Notes 27-24 + last_post_description: This week was far too busy with appointments (and so will + be next week). I felt more or less ok, but my concentration was off, mixing up + appointments and forgetting important tasks. After next week I + last_post_date: "2024-07-07T12:38:35Z" + last_post_link: https://www.zylstra.org/blog/2024/07/week-notes-27-24/ last_post_categories: - RSS Only - weeknotes - last_post_guid: 74cc00bb2907dfddd59b8fd0e87bfc26 + last_post_language: "" + last_post_guid: bcfe86da61e2aef32d550f0d86675183 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 2 + posts: 3 promoted: 5 promotes: 0 - relme: 2 + relme: 0 title: 3 - website: 2 - score: 17 + website: 1 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-488d15918c9e96be53e5f613d31ddf0e.md b/content/discover/feed-488d15918c9e96be53e5f613d31ddf0e.md deleted file mode 100644 index 0faa147b7..000000000 --- a/content/discover/feed-488d15918c9e96be53e5f613d31ddf0e.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Comments for Spinning -date: "1970-01-01T00:00:00Z" -description: Open source. Distributed computing. @spinningmatt -params: - feedlink: https://spinningmatt.wordpress.com/comments/feed/ - feedtype: rss - feedid: 488d15918c9e96be53e5f613d31ddf0e - websites: - https://spinningmatt.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: 'Comment on A protocol mismatch: Some unnecessary Starter->Shadow - communication by spinningmatt' - last_post_description: |- - In reply to Daniel Bavrin. - - It was probably https://github - last_post_date: "2014-08-15T12:07:36Z" - last_post_link: https://spinningmatt.wordpress.com/2011/05/01/a-protocol-mismatch-some-unnecessary-starter-shadow-communication/#comment-6581 - last_post_categories: [] - last_post_guid: 467374317378a522e3954e7ff88ba875 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-48940dfaefb2c2bda06bbdfbf03c6bc9.md b/content/discover/feed-48940dfaefb2c2bda06bbdfbf03c6bc9.md index 33ee33d30..1d8e294dd 100644 --- a/content/discover/feed-48940dfaefb2c2bda06bbdfbf03c6bc9.md +++ b/content/discover/feed-48940dfaefb2c2bda06bbdfbf03c6bc9.md @@ -15,29 +15,33 @@ params: categories: - Society & Culture relme: - https://github.com/toddgrotenhuis: false - https://instagram.com/toddgrotenhuis: false - https://micro.blog/toddgrotenhuis: false - https://social.lol/@todd: false - https://twitter.com/toddgrotenhuis: false + https://blog.grotenhuis.info/: true + https://blog.grotenhuis.info/public-notes/: true + https://github.com/toddgrotenhuis: true + https://todd.grotenhuis.info/: true last_post_title: Bird Talk last_post_description: |- Bird Talk Transcript - last_post_date: "2024-05-11T15:13:19-07:00" + last_post_date: "2024-05-11T18:13:19-04:00" last_post_link: https://blog.grotenhuis.info/2024/05/11/bird-talk.html last_post_categories: [] + last_post_language: "" last_post_guid: 971c3c55d34046638a88669875740f5e score_criteria: cats: 1 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 10 + score: 15 ispodcast: true isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-48af6d5a482ceb420f4bea55c2440911.md b/content/discover/feed-48af6d5a482ceb420f4bea55c2440911.md new file mode 100644 index 000000000..375a4e3c8 --- /dev/null +++ b/content/discover/feed-48af6d5a482ceb420f4bea55c2440911.md @@ -0,0 +1,62 @@ +--- +title: Python, Zope and Plone Experiments +date: "2024-03-13T07:50:14-03:00" +description: Blog para postar exemplos de código e estudos utilizando a linguagem + de programação Python, o framework Zope e o CMS Plone. +params: + feedlink: https://python-blog.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 48af6d5a482ceb420f4bea55c2440911 + websites: + https://python-blog.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Associação Python Brasil + - Ciência + - Colaboração + - Engenharia de Software + - Eventos + - Five + - Grupo de Usuários + - Linguagem de Programação + - Lisp + - Manipulação de arquivos + - Plone + - Python + - RelStorage + - Scheme + - Social Network Service + - Threads + - ZODB + - Zope + - buildout + - pythonbrasil + - twitter + relme: + https://python-blog.blogspot.com/: true + last_post_title: '18 de junho agora é #dornelesday' + last_post_description: "" + last_post_date: "2011-06-18T22:01:57-03:00" + last_post_link: https://python-blog.blogspot.com/2011/06/18-de-junho-agora-e-dornelesday.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 27c8362d820151b06f6f4f0ffad1563d + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-48b07591c54bbb55b54f8891c7a06c97.md b/content/discover/feed-48b07591c54bbb55b54f8891c7a06c97.md deleted file mode 100644 index 1bd017ea1..000000000 --- a/content/discover/feed-48b07591c54bbb55b54f8891c7a06c97.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: OpenCost — open source cost monitoring for cloud native environments Blog -date: "2024-04-30T00:00:00Z" -description: OpenCost — open source cost monitoring for cloud native environments - Blog -params: - feedlink: https://www.opencost.io/blog/atom.xml - feedtype: atom - feedid: 48b07591c54bbb55b54f8891c7a06c97 - websites: - https://www.opencost.io/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - external costs - - IT cost monitoring - - Datadog costs - - IT costs - relme: {} - last_post_title: Introducing OpenCost Plugins - last_post_description: OpenCost banner - last_post_date: "2024-04-30T00:00:00Z" - last_post_link: https://opencost.io/blog/introducing-opencost-plugins - last_post_categories: - - external costs - - IT cost monitoring - - Datadog costs - - IT costs - last_post_guid: 6ab68465f97846e3c71c51f2ef5de06e - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-48b414395fb2c079fac8aeaa42f0f18b.md b/content/discover/feed-48b414395fb2c079fac8aeaa42f0f18b.md new file mode 100644 index 000000000..c7f4409c6 --- /dev/null +++ b/content/discover/feed-48b414395fb2c079fac8aeaa42f0f18b.md @@ -0,0 +1,44 @@ +--- +title: SpiderMonkey JavaScript/WebAssembly Engine +date: "2024-06-28T15:34:47Z" +description: SpiderMonkey is Mozilla's JavaScript and WebAssembly Engine, used in + Firefox, Servo and various other projects. It is written in C++ and Rust. +params: + feedlink: https://spidermonkey.dev/feed.xml + feedtype: atom + feedid: 48b414395fb2c079fac8aeaa42f0f18b + websites: + https://spidermonkey.dev/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://mozilla.social/@SpiderMonkey: true + https://spidermonkey.dev/: true + last_post_title: SpiderMonkey Newsletter (Firefox 126-127) + last_post_description: Hello and welcome to our newest newsletter. As the northern + hemisphere warms and the southern hemisphere cools, we write to talk about what’s + happened in the world of SpiderMonkey in the + last_post_date: "2024-05-15T17:00:00Z" + last_post_link: https://spidermonkey.dev/blog/2024/05/15/newsletter-firefox-126-127.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 2af5d60b16fd33dde43ea8d9665d4ad7 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-48c3ba43d429b90119c0d25d2f932b7c.md b/content/discover/feed-48c3ba43d429b90119c0d25d2f932b7c.md deleted file mode 100644 index 6134da362..000000000 --- a/content/discover/feed-48c3ba43d429b90119c0d25d2f932b7c.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Julia Evans -date: "1970-01-01T00:00:00Z" -description: Public posts from @b0rk@jvns.ca -params: - feedlink: https://social.jvns.ca/@b0rk.rss - feedtype: rss - feedid: 48c3ba43d429b90119c0d25d2f932b7c - websites: - https://social.jvns.ca/@b0rk: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://jvns.ca/: true - https://wizardzines.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-48e0e516b2cff16d5611f17abe193e87.md b/content/discover/feed-48e0e516b2cff16d5611f17abe193e87.md new file mode 100644 index 000000000..43a86ecf9 --- /dev/null +++ b/content/discover/feed-48e0e516b2cff16d5611f17abe193e87.md @@ -0,0 +1,46 @@ +--- +title: Adventures in a Pure World +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://abuiles.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 48e0e516b2cff16d5611f17abe193e87 + websites: + https://abuiles.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Darcs + - GSoC + - Haskell + relme: + https://abuiles.blogspot.com/: true + https://www.blogger.com/profile/17210582918012436677: true + last_post_title: GSoC Week 12 + last_post_description: Wow, this is my last gsoc related entry, I'm publishing earlier + because I won't be around during the weekend.I mentioned last week that we had + know a better mechanism to handle bad cache, during this + last_post_date: "2010-08-12T02:36:00Z" + last_post_link: https://abuiles.blogspot.com/2010/08/gsoc-week-12.html + last_post_categories: [] + last_post_language: "" + last_post_guid: c45f47d39107968740a833261c6a6431 + score_criteria: + cats: 3 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-48e36097f931b6f6fa2364cc85d6b028.md b/content/discover/feed-48e36097f931b6f6fa2364cc85d6b028.md new file mode 100644 index 000000000..4c15428e0 --- /dev/null +++ b/content/discover/feed-48e36097f931b6f6fa2364cc85d6b028.md @@ -0,0 +1,49 @@ +--- +title: Bob's development blog +date: "2024-07-08T19:10:38+12:00" +description: Musings on open-source, GNOME, Ubuntu etc +params: + feedlink: https://bobthegnome.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 48e36097f931b6f6fa2364cc85d6b028 + websites: + https://bobthegnome.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - gitlab + - gnome + - snap + - snapd + - ubuntu + - ubuntu-core + relme: + https://bobthegnome.blogspot.com/: true + https://draft.blogger.com/profile/06377999550703204187: true + last_post_title: GUADEC 2019 - Thessaloniki + last_post_description: "" + last_post_date: "2019-09-05T11:34:59+12:00" + last_post_link: https://bobthegnome.blogspot.com/2019/09/guadec-2019-thessaloniki.html + last_post_categories: + - gnome + - ubuntu + last_post_language: "" + last_post_guid: 209313993bb45efa2ef359eeaed95646 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-48ec6b1e4f6a1efad3c7509007383c6c.md b/content/discover/feed-48ec6b1e4f6a1efad3c7509007383c6c.md new file mode 100644 index 000000000..115892db6 --- /dev/null +++ b/content/discover/feed-48ec6b1e4f6a1efad3c7509007383c6c.md @@ -0,0 +1,245 @@ +--- +title: Adrian Chadd's Ramblings +date: "2024-05-17T21:41:20-07:00" +description: "" +params: + feedlink: https://adrianchadd.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 48ec6b1e4f6a1efad3c7509007383c6c + websites: + https://adrianchadd.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 1551 drive + - "5170" + - 6510T + - "802.11" + - 802.11ac + - 802.11h + - 802.11n + - "80286" + - 8devices + - A-MSDU + - AR5210 + - AR8327 + - AR9100 + - AR9132 + - AR9170 + - ATF + - BGP + - IPv4 + - Iusca + - Linux + - MSDU + - PCI + - QCA9558 + - RTL8188SU + - RTL8192SU + - TS-430S + - TS-440S + - UDP + - acorn + - adsb + - amateur + - amiga + - amiga 1000 + - amiga 2000 + - amiga 500 + - amigaos + - amplifier + - amstrad + - anycast + - apple + - aprs + - ar9331 + - ar9344 + - ar9380 + - arduino + - arm + - armsrace + - as250 + - ath10k + - atheros + - atheros 802.11n + - avr + - ax25 + - bitx + - bluetooth + - books + - broadcom + - cache + - cacheboy + - cacheboy ipv6 + - caching + - carambola + - carambola-2 + - cardbus + - cdn + - censorship + - chelsio + - commodore + - commodore 16 + - commodore plus/4 + - compsci + - concurrency + - coss + - cpc + - cpc464 + - cpc6128 + - cyberduck + - cygwin + - ddio + - dfs + - dns + - dnsmasq + - downtime + - dragonflybsd + - dropbear + - dwds + - electron + - electronics + - embedded + - emulator + - ethernet + - fail + - family + - fcc + - filtering + - firefox + - freebsd + - geoip + - git + - github + - glibc + - google + - hamradio + - heinlein + - holiday + - http + - hwpmc + - ibm + - ibook + - intel + - internet + - ipv6 + - kenwood + - libevent + - libevhtp + - life + - lighttpd + - logic + - lua + - lusca + - meatpies + - meraki + - mesh + - microsoft + - mindwave + - mips + - modularity + - mozilla + - nat + - nbn + - net80211 + - netflix + - news + - newyork + - nnrp + - nntp + - nocleanfeed + - norse + - numa + - olpc + - openbsd + - opengl + - openpower + - opensource + - openvpn + - openwrt + - oprofile + - packet radio + - part15 + - pc/at + - performance + - pmc + - power8 + - powerpc + - powersave + - profiling + - programming + - proxy + - quagga + - qualcomm + - retrocomputing + - rfi + - rss + - rsu + - rtl-sdr + - sandy bridge + - scheduling + - sdl + - security + - slashdot + - solar + - sparky + - squid + - sudoroom + - sugarlabs + - tdma + - terriblefire + - threading + - timers + - tproxy + - ubiqiti + - ubiquity + - ubitx + - unit-testing + - university + - usb + - usenet + - videolan + - waste + - wccp + - wds + - wiki + - windows + - windowsupdates + - wishlist + relme: + https://adrianchadd.blogspot.com/: true + https://cacheboy.blogspot.com/: true + https://lusca-cache.blogspot.com/: true + https://www.blogger.com/profile/17496219706861321916: true + https://xenionhosting.blogspot.com/: true + last_post_title: On "repairing this commodore 1551 drive" and "don't plug in the + head cable backwards" + last_post_description: "" + last_post_date: "2024-04-24T19:11:29-07:00" + last_post_link: https://adrianchadd.blogspot.com/2024/04/on-repairing-this-commodore-1551-drive.html + last_post_categories: + - 1551 drive + - 6510T + - commodore + - commodore 16 + - commodore plus/4 + last_post_language: "" + last_post_guid: 7ed1b696d85cc5dbb8aa0add67868021 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-48faaa28960f9e9750b41f459058688a.md b/content/discover/feed-48faaa28960f9e9750b41f459058688a.md deleted file mode 100644 index f7e6320b9..000000000 --- a/content/discover/feed-48faaa28960f9e9750b41f459058688a.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: GStreamer – Gkiagia’s Blog -date: "1970-01-01T00:00:00Z" -description: 'Permanently moved to: https://gkiagia.gr/' -params: - feedlink: https://gkiagia.wordpress.com/category/gstreamer-2/feed/ - feedtype: rss - feedid: 48faaa28960f9e9750b41f459058688a - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - GStreamer - relme: {} - last_post_title: 'ipcpipeline: Splitting a GStreamer pipeline into multiple processes' - last_post_description: Earlier this year I worked on a certain GStreamer plugin - that is called “ipcpipeline”. This plugin provides elements that make it possible - to interconnect GStreamer pipelines that run in - last_post_date: "2017-11-17T13:25:04Z" - last_post_link: https://gkiagia.wordpress.com/2017/11/17/ipcpipeline-splitting-a-gstreamer-pipeline-into-multiple-processes/ - last_post_categories: - - GStreamer - last_post_guid: 24f5749fd0c06c60943c55b5494a863b - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-49016f36968f9f74bc2eb3b26741ed47.md b/content/discover/feed-49016f36968f9f74bc2eb3b26741ed47.md new file mode 100644 index 000000000..4aa0ec3eb --- /dev/null +++ b/content/discover/feed-49016f36968f9f74bc2eb3b26741ed47.md @@ -0,0 +1,46 @@ +--- +title: Informatics and engineering +date: "2024-03-12T23:51:24-07:00" +description: Reports from the software front +params: + feedlink: https://informatics-science.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 49016f36968f9f74bc2eb3b26741ed47 + websites: + https://informatics-science.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - eclipse e4 indigo + - eclipse e4 osgi self + - eclipse e4 self eclipsecon osgi + - scala eclipse e4 osgi + - self + relme: + https://informatics-science.blogspot.com/: true + https://www.blogger.com/profile/14259735131084627450: true + last_post_title: Back from ECE/OSGi Community Event 2012 + last_post_description: "" + last_post_date: "2012-10-29T06:15:35-07:00" + last_post_link: https://informatics-science.blogspot.com/2012/10/my-eclipsecon-europe-osgi-community.html + last_post_categories: [] + last_post_language: "" + last_post_guid: c4d2b500bd68331d0f674fc5beadad91 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-49047a830c2a9a850a5030613c831b9a.md b/content/discover/feed-49047a830c2a9a850a5030613c831b9a.md new file mode 100644 index 000000000..b861f2878 --- /dev/null +++ b/content/discover/feed-49047a830c2a9a850a5030613c831b9a.md @@ -0,0 +1,139 @@ +--- +title: Good Quality Chesses +date: "2024-02-07T10:25:42-08:00" +description: Every body is worried about qualities of chees here are many. +params: + feedlink: https://astrofame.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 49047a830c2a9a850a5030613c831b9a + websites: + https://astrofame.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Quality of Chess Have a matter. + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Good quality Cheeses + last_post_description: "" + last_post_date: "2021-04-27T10:59:40-07:00" + last_post_link: https://astrofame.blogspot.com/2021/04/good-quality-cheeses.html + last_post_categories: + - Quality of Chess Have a matter. + last_post_language: "" + last_post_guid: 9531957f06de455bccb331368455f136 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-490a54262dd04c539a86c7c61e14e489.md b/content/discover/feed-490a54262dd04c539a86c7c61e14e489.md new file mode 100644 index 000000000..3c7f55413 --- /dev/null +++ b/content/discover/feed-490a54262dd04c539a86c7c61e14e489.md @@ -0,0 +1,46 @@ +--- +title: Groovie, baby +date: "2024-02-19T16:29:15Z" +description: Discussion of The 7th Guest and other Groovie engine games in ScummVM +params: + feedlink: https://t7gre.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 490a54262dd04c539a86c7c61e14e489 + websites: + https://t7gre.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - milestone + - picture + - tech + - video + relme: + https://spookyandroid.blogspot.com/: true + https://t7gre.blogspot.com/: true + https://www.blogger.com/profile/14337030496107875313: true + last_post_title: Happy birthday + last_post_description: "" + last_post_date: "2010-08-30T09:54:49+01:00" + last_post_link: https://t7gre.blogspot.com/2010/08/happy-birthday.html + last_post_categories: [] + last_post_language: "" + last_post_guid: c2fe263e811d2dca4a858936a184569e + score_criteria: + cats: 4 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4910ff51848192e7784c58da2148dc58.md b/content/discover/feed-4910ff51848192e7784c58da2148dc58.md deleted file mode 100644 index f202df0a5..000000000 --- a/content/discover/feed-4910ff51848192e7784c58da2148dc58.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Comments for ribbonfarm -date: "1970-01-01T00:00:00Z" -description: constructions in magical thinking -params: - feedlink: https://ribbonfarm.com/comments/feed/ - feedtype: rss - feedid: 4910ff51848192e7784c58da2148dc58 - websites: - https://www.ribbonfarm.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on My Post-AI Writing by jon - last_post_description: amazing knowledge share Abdul - last_post_date: "2024-06-04T08:20:17Z" - last_post_link: https://www.ribbonfarm.com/2024/03/08/my-post-ai-writing/#comment-297283 - last_post_categories: [] - last_post_guid: b31305948ae37994a28edf6570e7dbbe - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-49300f6fec0d0581424c496ab7e5d471.md b/content/discover/feed-49300f6fec0d0581424c496ab7e5d471.md new file mode 100644 index 000000000..1be430e99 --- /dev/null +++ b/content/discover/feed-49300f6fec0d0581424c496ab7e5d471.md @@ -0,0 +1,47 @@ +--- +title: Commentaires pour Carl Chenet's Blog +date: "1970-01-01T00:00:00Z" +description: Free Software Indie Hacker +params: + feedlink: https://carlchenet.com/comments/feed/ + feedtype: rss + feedid: 49300f6fec0d0581424c496ab7e5d471 + websites: + https://carlchenet.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://carlchenet.com/: true + https://gitlab.com/chaica/: true + https://mastodon.social/@carlchenet: true + https://pixelfed.social/chaica: true + last_post_title: Commentaires sur Les mauvaises raisons de migrer vers le cloud + par Carl Chenet + last_post_description: |- + En réponse à Xataz. + + C'est exactement ça, j'ai eu connaissance de gros retours arrière. Je n'en + last_post_date: "2023-08-08T07:50:36Z" + last_post_link: https://carlchenet.com/les-mauvaises-raisons-de-migrer-vers-le-cloud/#comment-20186 + last_post_categories: [] + last_post_language: "" + last_post_guid: 166b73b3e8ab8d7e1d82a786e759b4ab + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4930a1f4104a4bc614dbf8696685c3b0.md b/content/discover/feed-4930a1f4104a4bc614dbf8696685c3b0.md index 8afc9a698..2c06333ea 100644 --- a/content/discover/feed-4930a1f4104a4bc614dbf8696685c3b0.md +++ b/content/discover/feed-4930a1f4104a4bc614dbf8696685c3b0.md @@ -14,46 +14,60 @@ params: - http://scripting.com/rss.xml - http://scripting.com/rssNightly.xml categories: - - Link post - - Donald Trump - - Florida Times-Union - - Gannett - - IndyStar - - local news - - McClatchy - - print newspapers - - printing press - - Ventura County Star + - Aaron Dworkin + - Bridge Detroit + - Featured Art + - Institute for Poetjournalism + - Jenn White + - John Bebow + - LeVar Burton + - Poetjournalism + - Regular post + - Sphinx Organization + - Tennyson + - University of Michigan + - Verse News Network + - Walt Whitman + - poetry relme: {} - last_post_title: For most news outlets, Trump’s conviction was front-page news. - What about local chains? - last_post_description: On Friday, May 31, front pages around the world blasted the - historic news that a former president of the United States and current leading - presidential candidate had, for the first time, become a - last_post_date: "2024-06-03T19:58:20Z" - last_post_link: https://www.niemanlab.org/2024/06/for-most-news-outlets-trumps-conviction-was-front-page-news-what-about-local-chains/ + last_post_title: “Poetjournalism” slouches forth from Michigan to be born + last_post_description: For Aaron Dworkin, poet, news is not that far from his butter + and bread of verse. Instead, he says, they’re siblings, of a kind. Combined, they + make a form anew, one which he calls (and here one + last_post_date: "2024-07-08T18:38:24Z" + last_post_link: https://www.niemanlab.org/2024/07/poetjournalism-slouches-forth-from-michigan-to-be-born/ last_post_categories: - - Link post - - Donald Trump - - Florida Times-Union - - Gannett - - IndyStar - - local news - - McClatchy - - print newspapers - - printing press - - Ventura County Star - last_post_guid: 6baab5b32f637c598f2eff39ee3fe98a + - Aaron Dworkin + - Bridge Detroit + - Featured Art + - Institute for Poetjournalism + - Jenn White + - John Bebow + - LeVar Burton + - Poetjournalism + - Regular post + - Sphinx Organization + - Tennyson + - University of Michigan + - Verse News Network + - Walt Whitman + - poetry + last_post_language: "" + last_post_guid: a3b5fd40cb44ce700da1eb73aaa49f5c score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-497a80198aa201bc32bf715403d40298.md b/content/discover/feed-497a80198aa201bc32bf715403d40298.md deleted file mode 100644 index 8a437b003..000000000 --- a/content/discover/feed-497a80198aa201bc32bf715403d40298.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Two's Complement -date: "1970-01-01T00:00:00Z" -description: Public posts from @twoscomplement@hachyderm.io -params: - feedlink: https://hachyderm.io/@twoscomplement.rss - feedtype: rss - feedid: 497a80198aa201bc32bf715403d40298 - websites: - https://hachyderm.io/@TwosComplement: false - https://hachyderm.io/@twoscomplement: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/approved: false - https://www.twoscomplement.org/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-497be3f3213f8f681fd5eda73305e93c.md b/content/discover/feed-497be3f3213f8f681fd5eda73305e93c.md deleted file mode 100644 index ad746fdad..000000000 --- a/content/discover/feed-497be3f3213f8f681fd5eda73305e93c.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for the morning paper -date: "1970-01-01T00:00:00Z" -description: a random walk through Computer Science research, by Adrian Colyer -params: - feedlink: https://blog.acolyer.org/comments/feed/ - feedtype: rss - feedid: 497be3f3213f8f681fd5eda73305e93c - websites: - https://blog.acolyer.org/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: 'Comment on Serverless in the wild: characterizing and optimising - the serverless workload at a large cloud provider by Stuff The Internet Says On - Scalability For March 27th, 2020 - Amazon Web Services' - last_post_description: '[…] Serverless in the wild: characterizing and optimising - the serverless workload at [Azure] a large clo… […]' - last_post_date: "2020-03-27T21:56:55Z" - last_post_link: https://blog.acolyer.org/2020/03/20/serverless-in-the-wild/#comment-6033 - last_post_categories: [] - last_post_guid: 551463a3115176af5153c24b2b142b35 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-498ab3a562902b2b0156aaead3503758.md b/content/discover/feed-498ab3a562902b2b0156aaead3503758.md new file mode 100644 index 000000000..1b748f3d3 --- /dev/null +++ b/content/discover/feed-498ab3a562902b2b0156aaead3503758.md @@ -0,0 +1,142 @@ +--- +title: DDosing Vs 5G +date: "1970-01-01T00:00:00Z" +description: Ddosing is not better then 5g. +params: + feedlink: https://lumierefilms.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 498ab3a562902b2b0156aaead3503758 + websites: + https://lumierefilms.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Ddosing vs 5g let see. + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Ddosing Vs 5G + last_post_description: |- + Your drain and firewalls need time to break down the traffic + to isolate it based on acceptable site traffic and fake traffic. It + additionally can't ensure against significant assaults, mainly when it + last_post_date: "2021-04-25T20:09:00Z" + last_post_link: https://lumierefilms.blogspot.com/2021/04/ddosing-vs-5g.html + last_post_categories: + - Ddosing vs 5g let see. + last_post_language: "" + last_post_guid: 1b2075c60db1866e1d26852b30282f0e + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-49925d76b0d70f3e8232dc6d1c964a53.md b/content/discover/feed-49925d76b0d70f3e8232dc6d1c964a53.md deleted file mode 100644 index 4f3600fbb..000000000 --- a/content/discover/feed-49925d76b0d70f3e8232dc6d1c964a53.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Mark Sutherland -date: "1970-01-01T00:00:00Z" -description: Public posts from @marksuth@mastodon.social -params: - feedlink: https://mastodon.social/@marksuth.rss - feedtype: rss - feedid: 49925d76b0d70f3e8232dc6d1c964a53 - websites: - https://mastodon.social/@marksuth: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://marksuth.dev/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4996db4d9509e9c55e08ad41f7b8ba2b.md b/content/discover/feed-4996db4d9509e9c55e08ad41f7b8ba2b.md index d36c22400..b39c80a8e 100644 --- a/content/discover/feed-4996db4d9509e9c55e08ad41f7b8ba2b.md +++ b/content/discover/feed-4996db4d9509e9c55e08ad41f7b8ba2b.md @@ -14,31 +14,18 @@ params: categories: - '["i-webthings"]' relme: - https://directory.jenett.org/: true + https://bulltown.2022.joejenett.com/: true https://directory.joejenett.com/: true - https://github.com/joejenett: false - https://iwebthings.jenett.org/: true + https://fediverse-webring-enthusiasts.glitch.me/profiles/jenett_toot.community/index.html: true + https://github.com/joejenett: true + https://ideas.joejenett.com/: true https://iwebthings.joejenett.com/: true - https://jenett.org/: true - https://joe.jenett.org/: true - https://joe.joejenett.com/: false https://joejenett.com/: true https://joejenett.github.io/i.webthings/: true - https://linkscatter.jenett.org/: false - https://linkscatter.joejenett.com/: false - https://mastodon.online/@iwebthings: false - https://mastodon.online/@jenett: false - https://micro.blog/joejenett: false - https://photo.jenett.org/: false - https://photo.joejenett.com/: false - https://pointers.dailywebthing.com/: false - https://simply.jenett.org/: true + https://linkscatter.joejenett.com/: true + https://photo.joejenett.com/: true https://simply.joejenett.com/: true - https://the.dailywebthing.com/: false - https://toot.community/@jenett: false - https://twitter.com/iwebthings: false - https://twitter.com/joejenett: false - https://wiki.jenett.org/: true + https://toot.community/@jenett: true https://wiki.joejenett.com/: true last_post_title: we’re heading home! last_post_description: This is the last update to be made to the temporary “joejenett.github.io/i.webthings” @@ -48,17 +35,22 @@ params: last_post_link: https://joejenett.github.io/i.webthings/were-heading-home/ last_post_categories: - '["i-webthings"]' + last_post_language: "" last_post_guid: 43a85de29e2128f92f3d7be67d5a6a4e score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 1 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 11 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-499f305e165b30f81eb21e204b5dd035.md b/content/discover/feed-499f305e165b30f81eb21e204b5dd035.md new file mode 100644 index 000000000..7b9925e6b --- /dev/null +++ b/content/discover/feed-499f305e165b30f81eb21e204b5dd035.md @@ -0,0 +1,51 @@ +--- +title: fnordig +date: "1970-01-01T00:00:00Z" +description: A blog about Rust, data and my life. +params: + feedlink: https://fnordig.de/feed.xml + feedtype: rss + feedid: 499f305e165b30f81eb21e204b5dd035 + websites: + https://fnordig.de/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://fnordig.de/: true + https://github.com/badboy: true + https://hachyderm.io/@jer: true + last_post_title: A playground for Hare + last_post_description: |- + I built a thing: + + Hare Playground + + And this is what it looks like:1 + + It's an online playground for the Hare programming language. + Code is sent to the server for compilation and execution. + It responds + last_post_date: "2024-06-04T22:59:00+02:00" + last_post_link: https://fnordig.de/2024/06/04/playground-for-hare + last_post_categories: [] + last_post_language: "" + last_post_guid: bea0487d77e099a5ad0919d68c37c8b8 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-49ae509981366ef7d25c80ae839fa613.md b/content/discover/feed-49ae509981366ef7d25c80ae839fa613.md deleted file mode 100644 index ddba3b76c..000000000 --- a/content/discover/feed-49ae509981366ef7d25c80ae839fa613.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: openstack – Surfing Complexity -date: "2013-11-30T17:25:20Z" -description: Lorin Hochstein's ramblings about software, complex systems, and incidents. -params: - feedlink: https://surfingcomplexity.blog/category/openstack/feed/atom/ - feedtype: atom - feedid: 49ae509981366ef7d25c80ae839fa613 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - openstack - relme: {} - last_post_title: Adopt an op - last_post_description: 'Here’s a modest proposal: a program to pair up individual - OpenStack developers with OpenStack operators to encourage better information - flow from ops to devs. Heres’s how it might work. Operators' - last_post_date: "2013-11-30T17:25:20Z" - last_post_link: https://surfingcomplexity.blog/2013/11/30/adopt-an-op/ - last_post_categories: - - openstack - last_post_guid: d20c4b977d0402fccc5d0b165cbdfd82 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-49d7e480626f2358324a279d0951ed0e.md b/content/discover/feed-49d7e480626f2358324a279d0951ed0e.md deleted file mode 100644 index 27ffdb33b..000000000 --- a/content/discover/feed-49d7e480626f2358324a279d0951ed0e.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: René Hesse -date: "1970-01-01T00:00:00Z" -description: Public posts from @hesse@mastodon.social -params: - feedlink: https://mastodon.social/@hesse.rss - feedtype: rss - feedid: 49d7e480626f2358324a279d0951ed0e - websites: - https://mastodon.social/@hesse: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://flip.de/: true - https://renehesse.de/: true - https://www.threads.net/@renehesse: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-49da491f2730538b9dc69f71b558eefa.md b/content/discover/feed-49da491f2730538b9dc69f71b558eefa.md new file mode 100644 index 000000000..5bb89db8a --- /dev/null +++ b/content/discover/feed-49da491f2730538b9dc69f71b558eefa.md @@ -0,0 +1,44 @@ +--- +title: Blog - 3d6 Down the Line +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://www.3d6downtheline.com/blog?format=rss + feedtype: rss + feedid: 49da491f2730538b9dc69f71b558eefa + websites: + https://www.3d6downtheline.com/blog/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: [] + relme: {} + last_post_title: 3d6 Down the Line 2023 Year in Review + last_post_description: "The five members of 3d6 Down the Line have enjoyed a great + year of gaming, \nand we’ve been privileged to shepherd in substantial growth + for our channel \nand brand." + last_post_date: "2023-12-21T22:29:42Z" + last_post_link: https://www.3d6downtheline.com/blog/3d6-down-the-line-2023-year-in-review + last_post_categories: [] + last_post_language: "" + last_post_guid: 288cc8f315b26219e470757c26107150 + score_criteria: + cats: 0 + description: 0 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-49dac0f7340293f53b7c0928aadfedaa.md b/content/discover/feed-49dac0f7340293f53b7c0928aadfedaa.md new file mode 100644 index 000000000..80bb34cc0 --- /dev/null +++ b/content/discover/feed-49dac0f7340293f53b7c0928aadfedaa.md @@ -0,0 +1,56 @@ +--- +title: Talk Python To Me +date: "2024-07-01T00:00:00-08:00" +description: Talk Python to Me is a weekly podcast hosted by developer and entrepreneur + Michael Kennedy. We dive deep into the popular packages and software developers, + data scientists, and incredible hobbyists +params: + feedlink: https://talkpython.fm/episodes/rss + feedtype: rss + feedid: 49dac0f7340293f53b7c0928aadfedaa + websites: + https://talkpython.fm/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Technology + relme: + https://fosstodon.org/@mkennedy: true + https://fosstodon.org/@talkpython: true + https://github.com/mikeckennedy: true + https://mkennedy.codes/: true + https://talkpython.fm/: true + https://training.talkpython.fm/: true + last_post_title: '#468: Python Trends Episode 2024' + last_post_description: |- + Shiny course at Talk Python: talkpython.fm/shiny + + Jodie Burchell: @t_redactyl + Carol on Mastodon: @willingc@hachyderm.io + Paul Everitt: @paulweveritt + Watch this episode on YouTube: youtube.com + Episode + last_post_date: "2024-07-01T00:00:00-08:00" + last_post_link: https://talkpython.fm/episodes/show/468/python-trends-episode-2024 + last_post_categories: + - Technology + last_post_language: "" + last_post_guid: 5f6670b9379c0418896e940b515ecefb + score_criteria: + cats: 1 + description: 3 + feedlangs: 1 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: true + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-49dd41cc080f0f9aad5c0d1d6e39d401.md b/content/discover/feed-49dd41cc080f0f9aad5c0d1d6e39d401.md new file mode 100644 index 000000000..be4e79e94 --- /dev/null +++ b/content/discover/feed-49dd41cc080f0f9aad5c0d1d6e39d401.md @@ -0,0 +1,42 @@ +--- +title: Posts on Dieter's blog +date: "1970-01-01T00:00:00Z" +description: Recent content in Posts on Dieter's blog +params: + feedlink: https://dieter.plaetinck.be/posts/index.xml + feedtype: rss + feedid: 49dd41cc080f0f9aad5c0d1d6e39d401 + websites: + https://dieter.plaetinck.be/posts/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://dieter.plaetinck.be/posts/: true + last_post_title: A New Beginning + last_post_description: |- + For close to a decade, I dedicated myself to building out Grafana Labs and subsequently took some personal time to recharge. + I came out of these experiences as a different person, and am ready to + last_post_date: "2024-02-22T09:15:47+02:00" + last_post_link: https://dieter.plaetinck.be/posts/a-new-beginning/ + last_post_categories: [] + last_post_language: "" + last_post_guid: dc25ccf468adc1a11e089bec920688de + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-4a0b8d4642ce13ccaa71a267e2101087.md b/content/discover/feed-4a0b8d4642ce13ccaa71a267e2101087.md new file mode 100644 index 000000000..fad6e7f87 --- /dev/null +++ b/content/discover/feed-4a0b8d4642ce13ccaa71a267e2101087.md @@ -0,0 +1,49 @@ +--- +title: Purism +date: "1970-01-01T00:00:00Z" +description: High-quality computers that protect your freedom and privacy +params: + feedlink: https://puri.sm/feed/ + feedtype: rss + feedid: 4a0b8d4642ce13ccaa71a267e2101087 + websites: + https://puri.sm/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Service Offering + - Software + relme: + https://librem.one/: true + https://puri.sm/: true + https://social.librem.one/@doublerainbows: true + https://social.librem.one/@purism: true + last_post_title: PureOS Optional Subscription Added to Advance Development + last_post_description: 'PureOS—the alternative convergent operating system by Purism—is + adding an optional subscription to advance development. The three monthly subscription + tiers are: PureOS Subscription Standard $5' + last_post_date: "2024-07-01T15:56:50Z" + last_post_link: https://puri.sm/posts/pureos-optional-subscription-added-to-advance-development/ + last_post_categories: + - Service Offering + - Software + last_post_language: "" + last_post_guid: ab930c7766c157963da433c041edf075 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-4a195876e6eed0bbeafc17c73f6961ab.md b/content/discover/feed-4a195876e6eed0bbeafc17c73f6961ab.md new file mode 100644 index 000000000..aea3ced83 --- /dev/null +++ b/content/discover/feed-4a195876e6eed0bbeafc17c73f6961ab.md @@ -0,0 +1,73 @@ +--- +title: Geospatial Elucubrations +date: "1970-01-01T00:00:00Z" +description: A blog on spatial analysis, raster management in PostGIS and other related + things. +params: + feedlink: https://geospatialelucubrations.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 4a195876e6eed0bbeafc17c73f6961ab + websites: + https://geospatialelucubrations.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - CMS + - Django + - Drupal + - FME + - GDAL + - GIS + - GeoDjango + - GeoNode + - MapAlgebra + - MediaWiki + - PostGIS + - PostGIS Add-ons + - Raster + - SharePoint + - Union + - analysis + - database + - information system + - raster2pgsql + - rasterization + - semantic + - web + - wiki + relme: + https://geospatialelucubrations.blogspot.com/: true + https://www.blogger.com/profile/17199173181807664396: true + last_post_title: A guide to the rasterization of vector coverages in PostGIS + last_post_description: A frequent question since the beginning of the PostGIS Raster + adventure has been "How can I convert my geometry table to a raster coverage?" (here + also). People often describe the way to rasterize + last_post_date: "2014-05-13T14:47:00Z" + last_post_link: https://geospatialelucubrations.blogspot.com/2014/05/a-guide-to-rasterization-of-vector.html + last_post_categories: + - PostGIS + - PostGIS Add-ons + - Raster + - Union + - analysis + - rasterization + last_post_language: "" + last_post_guid: 5de91001e753ef94d603933ce971f2a1 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4a1bdcb7cd910715fafd5be725117b7f.md b/content/discover/feed-4a1bdcb7cd910715fafd5be725117b7f.md deleted file mode 100644 index 3713e00c3..000000000 --- a/content/discover/feed-4a1bdcb7cd910715fafd5be725117b7f.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Dan Gillmor -date: "1970-01-01T00:00:00Z" -description: Public posts from @dangillmor@mastodon.social -params: - feedlink: https://mastodon.social/@dangillmor.rss - feedtype: rss - feedid: 4a1bdcb7cd910715fafd5be725117b7f - websites: - https://mastodon.social/@dangillmor: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://dangillmor.com/: true - https://www.techdirt.com/2023/01/04/journalists-and-others-should-leave-twitter-heres-how-they-can-get-started/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4a23320a32843e1777037d586fa1f101.md b/content/discover/feed-4a23320a32843e1777037d586fa1f101.md deleted file mode 100644 index 229e6485d..000000000 --- a/content/discover/feed-4a23320a32843e1777037d586fa1f101.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: '@rsdoiel.bsky.social - R. S. Doiel' -date: "1970-01-01T00:00:00Z" -description: I am a human. I wrote music and prose. I write software for libraries - and archives. -params: - feedlink: https://bsky.app/profile/did:plc:nbdlhw2imk2m2yqhwxb5ycgy/rss - feedtype: rss - feedid: 4a23320a32843e1777037d586fa1f101 - websites: - https://bsky.app/profile/rsdoiel.bsky.social: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4a2335a79de7b067c80fc8d7318e71a6.md b/content/discover/feed-4a2335a79de7b067c80fc8d7318e71a6.md index 2d0b1a5d5..907a1903b 100644 --- a/content/discover/feed-4a2335a79de7b067c80fc8d7318e71a6.md +++ b/content/discover/feed-4a2335a79de7b067c80fc8d7318e71a6.md @@ -11,13 +11,13 @@ params: blogrolls: [] recommended: [] recommender: + - https://colinwalker.blog/dailyfeed.xml + - https://colinwalker.blog/livefeed.xml - https://jabel.blog/feed.xml - https://jabel.blog/podcast.xml categories: [] relme: - https://instagram.com/anniemueller: false - https://micro.blog/Annie: false - https://twitter.com/anniemueller: false + https://annie.micro.blog/: true last_post_title: From flexibility to structure last_post_description: I started freelance writing because of the flexibility.For all the years my kids were babies, and on through several years of homeschooling, @@ -25,17 +25,22 @@ params: last_post_date: "2024-05-07T17:24:24-05:00" last_post_link: https://annie.micro.blog/2024/05/07/from-flexibility-to.html last_post_categories: [] + last_post_language: "" last_post_guid: 88ca2962292ec31ee5b50ce568e81f3f score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 11 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-4a44683b8bf17204384aeb260779d50a.md b/content/discover/feed-4a44683b8bf17204384aeb260779d50a.md deleted file mode 100644 index 2235062d5..000000000 --- a/content/discover/feed-4a44683b8bf17204384aeb260779d50a.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Clearleft | Blog -date: "2024-06-04T15:15:19+01:00" -description: The latest news from Clearleft -params: - feedlink: https://clearleft.com/posts/rss.xml - feedtype: rss - feedid: 4a44683b8bf17204384aeb260779d50a - websites: - https://clearleft.com/: false - https://clearleft.com/thinking/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: A modern approach to browser support - last_post_description: Just recently, some front-end code we delivered to a client - was making its way through acceptance testing. We were slightly surprised to discover - that their standards required our code to be - last_post_date: "2024-06-03T19:10:00+01:00" - last_post_link: https://clearleft.com/thinking/a-modern-approach-to-browser-support - last_post_categories: [] - last_post_guid: 92c2abfea561a95f56d7ba1dab018016 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4a628b6cab1c1aa62254f8eed5ad7a78.md b/content/discover/feed-4a628b6cab1c1aa62254f8eed5ad7a78.md new file mode 100644 index 000000000..4f1d90aab --- /dev/null +++ b/content/discover/feed-4a628b6cab1c1aa62254f8eed5ad7a78.md @@ -0,0 +1,144 @@ +--- +title: elisa gayle is good Wife +date: "1970-01-01T00:00:00Z" +description: Know about Elisa gayle. +params: + feedlink: https://cintiatransexblog.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 4a628b6cab1c1aa62254f8eed5ad7a78 + websites: + https://cintiatransexblog.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Local codes + - elisa gayle is very good wife. + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Area code Vs Local Code + last_post_description: |- + The interaction is comparative for Android + clients; go to your new calls and snap "subtleties" and snap + "block number." They are complementary inside the USA, + Canada, and all nations using the North + last_post_date: "2021-11-13T13:42:00Z" + last_post_link: https://cintiatransexblog.blogspot.com/2021/11/area-code-vs-local-code.html + last_post_categories: + - Local codes + last_post_language: "" + last_post_guid: 40a363eb17bba4380986d5accf9e5f4b + score_criteria: + cats: 2 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4a8c7c967207cb771329cc8df4546dc2.md b/content/discover/feed-4a8c7c967207cb771329cc8df4546dc2.md deleted file mode 100644 index 83543e023..000000000 --- a/content/discover/feed-4a8c7c967207cb771329cc8df4546dc2.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Comments for Lucy Bellwood -date: "1970-01-01T00:00:00Z" -description: The online home of Adventure Cartoonist Lucy Bellwood -params: - feedlink: https://lucybellwood.com/comments/feed/ - feedtype: rss - feedid: 4a8c7c967207cb771329cc8df4546dc2 - websites: - https://lucybellwood.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4a93bcaa2a7718969152f1a0ef6a3d40.md b/content/discover/feed-4a93bcaa2a7718969152f1a0ef6a3d40.md new file mode 100644 index 000000000..06a5504ab --- /dev/null +++ b/content/discover/feed-4a93bcaa2a7718969152f1a0ef6a3d40.md @@ -0,0 +1,41 @@ +--- +title: Caolán McNamara +date: "2024-04-30T01:33:34-07:00" +description: "" +params: + feedlink: https://caolanm.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 4a93bcaa2a7718969152f1a0ef6a3d40 + websites: + https://caolanm.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://caolanm.blogspot.com/: true + https://www.blogger.com/profile/01095733023264403205: true + last_post_title: coverity 2022.6.0 and LibreOffice + last_post_description: "" + last_post_date: "2024-02-11T10:02:50-08:00" + last_post_link: https://caolanm.blogspot.com/2024/02/coverity-202260-and-libreoffice.html + last_post_categories: [] + last_post_language: "" + last_post_guid: c03d515a78eafb4dc8a4a66d52491738 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4aa60bcb1a6bf8c1d8959c46a20f75ce.md b/content/discover/feed-4aa60bcb1a6bf8c1d8959c46a20f75ce.md deleted file mode 100644 index 4808ef7b1..000000000 --- a/content/discover/feed-4aa60bcb1a6bf8c1d8959c46a20f75ce.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: OpenStack – Ryan D Lane -date: "1970-01-01T00:00:00Z" -description: A blog with rants about DevOps. -params: - feedlink: https://feeds.feedburner.com/RyanLanesBlog_openstack - feedtype: rss - feedid: 4aa60bcb1a6bf8c1d8959c46a20f75ce - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Devops - - LDAP - - MediaWiki - - OpenStack - - Virtualization - - Wikimedia - relme: {} - last_post_title: Per-project users and groups (aka service groups) - last_post_description: In Wikimedia Labs, we’re using OpenStack with heavy LDAP - integration. With this integration we have a concept of global groups and users. - When a user registers with Labs, the user’s account - last_post_date: "2013-06-27T18:51:14Z" - last_post_link: https://blog.ryandlane.com/2013/06/27/per-project-users-and-groups-aka-service-groups/ - last_post_categories: - - Devops - - LDAP - - MediaWiki - - OpenStack - - Virtualization - - Wikimedia - last_post_guid: 0bf93260720e776122b9d572a1c78247 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4ab787a9e5f967176efd3ae49e9bb847.md b/content/discover/feed-4ab787a9e5f967176efd3ae49e9bb847.md new file mode 100644 index 000000000..2d7f99f46 --- /dev/null +++ b/content/discover/feed-4ab787a9e5f967176efd3ae49e9bb847.md @@ -0,0 +1,42 @@ +--- +title: Python on Humberto Rocha +date: "1970-01-01T00:00:00Z" +description: Recent content in Python on Humberto Rocha +params: + feedlink: https://humberto.io/pt-br/tags/python/index.xml + feedtype: rss + feedid: 4ab787a9e5f967176efd3ae49e9bb847 + websites: + https://humberto.io/pt-br/tags/python/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://humberto.io/pt-br/tags/python/: true + last_post_title: Desbravando o pygame 5 - Movimento e Colisão + last_post_description: O movimento é uma característica que está presente na maioria + dos jogos. Ao saltar entre plataformas, atirar contra a horda de inimigos, pilotar + uma nave espacial e correr pelas estradas estamos + last_post_date: "2019-09-10T00:00:00Z" + last_post_link: https://humberto.io/pt-br/blog/desbravando-o-pygame-5-movimento-e-colisao/ + last_post_categories: [] + last_post_language: "" + last_post_guid: a8b2f6ec5b71f344a7463eff42a02730 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: pt +--- diff --git a/content/discover/feed-4acb10e8f0145d2a51a6b28c177b1387.md b/content/discover/feed-4acb10e8f0145d2a51a6b28c177b1387.md deleted file mode 100644 index 8027065a3..000000000 --- a/content/discover/feed-4acb10e8f0145d2a51a6b28c177b1387.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Obsidian -date: "1970-01-01T00:00:00Z" -description: Public posts from @obsidian@mas.to -params: - feedlink: https://mas.to/@obsidian.rss - feedtype: rss - feedid: 4acb10e8f0145d2a51a6b28c177b1387 - websites: - https://mas.to/@obsidian: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://obsidian.md/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4acd021b760c85edb7126e06afdc5b47.md b/content/discover/feed-4acd021b760c85edb7126e06afdc5b47.md new file mode 100644 index 000000000..718e6f125 --- /dev/null +++ b/content/discover/feed-4acd021b760c85edb7126e06afdc5b47.md @@ -0,0 +1,52 @@ +--- +title: Linkage +date: "1970-01-01T00:00:00Z" +description: |- + updated daily because if I can't find at least one website to share every day, I need to turn in my Internet license! + + | Pronouns: he/him + | Occupatio... +params: + feedlink: https://linkage.lol/feed/?type=rss + feedtype: rss + feedid: 4acd021b760c85edb7126e06afdc5b47 + websites: + https://linkage.lol/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://amerpie.lol/: true + https://amerpie.omg.lol/: true + https://amerpie2.micro.blog/: true + https://amerpiegateway.micro.blog/: true + https://apps.louplummer.lol/: true + https://linkage.lol/: true + https://louplummer.lol/: true + https://social.lol/@amerpie: true + last_post_title: Unsplash, Royalty Free Photography + last_post_description: Unsplash.com is a source for high-quality, royalty-free photography + for use by bloggers and wen designers + last_post_date: "2024-07-08T12:30:00Z" + last_post_link: https://linkage.lol/unsplash-royalty-free-photography/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 48470f9d71bab8feda163923901d779e + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4acf31ed289d76143d184e3becbf6a89.md b/content/discover/feed-4acf31ed289d76143d184e3becbf6a89.md deleted file mode 100644 index 120548721..000000000 --- a/content/discover/feed-4acf31ed289d76143d184e3becbf6a89.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Giles Turnbull -date: "1970-01-01T00:00:00Z" -description: Public posts from @gilest@mastodon.me.uk -params: - feedlink: https://mastodon.me.uk/@gilest.rss - feedtype: rss - feedid: 4acf31ed289d76143d184e3becbf6a89 - websites: - https://mastodon.me.uk/@gilest: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://agilecommshandbook.com/: true - https://gilest.org/: true - https://usethehumanvoice.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4ad26c9069efe11645babfec2ee98e83.md b/content/discover/feed-4ad26c9069efe11645babfec2ee98e83.md index 481ec607c..2b1a0a02b 100644 --- a/content/discover/feed-4ad26c9069efe11645babfec2ee98e83.md +++ b/content/discover/feed-4ad26c9069efe11645babfec2ee98e83.md @@ -8,32 +8,35 @@ params: feedid: 4ad26c9069efe11645babfec2ee98e83 websites: https://andysylvester.com/: true - https://www.andysylvester.com/: false blogrolls: [] recommended: [] recommender: [] categories: [] relme: - https://github.com/andysylvester: false - https://twitter.com/AndySylvester99: false - last_post_title: Comment on Some choices for how to host a podcast and create a - podcast feed by Andy - last_post_description: In 2017, I wrote a post with the title “We have great tools - to create – are we creating great things?”. It was in reference… - last_post_date: "2024-05-14T18:34:52-07:00" - last_post_link: https://andysylvester.com/2024/05/14/are-we-creating-great-things/ + https://andysylvester.com/: true + last_post_title: Comment on Open letter to Dave Winer’s call to develop feed-based + social media apps by Andy + last_post_description: Dave Winer again calls for “a twitter-like system built with + feeds, with all their limits”. In May 2023, I created My Status Tool (Github repo)… + last_post_date: "2024-07-06T17:00:59-07:00" + last_post_link: https://andysylvester.com/2024/07/06/call-for-twitter-like-systems-based-on-feeds/ last_post_categories: [] - last_post_guid: 0132f149893baa53462bd33b0faf8055 + last_post_language: "" + last_post_guid: 2b60aa3bd4b20b8b61c0a5795efed6e3 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 9 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-4ae6648303f2f6cc5a0de0e33c784cc3.md b/content/discover/feed-4ae6648303f2f6cc5a0de0e33c784cc3.md new file mode 100644 index 000000000..a8b104af9 --- /dev/null +++ b/content/discover/feed-4ae6648303f2f6cc5a0de0e33c784cc3.md @@ -0,0 +1,60 @@ +--- +title: Strangerke's Sandbox +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://strangerke.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 4ae6648303f2f6cc5a0de0e33c784cc3 + websites: + https://strangerke.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Dark Things + - EFH + - GSoC + - Hopkins + - Kingdom + - MADS + - Mortevielle + - Rex + - Robin + - ScummVM + - StarTrek + - Translation + - TsAGE + - Voyeur + - Wasteland + relme: + https://strangerke.blogspot.com/: true + https://www.blogger.com/profile/12856865024254202896: true + last_post_title: Escape from Hell + last_post_description: Time flies, I didn't notice that my last post is already + 3years old... In the meantime, I have worked on several engines, with other devs... + But today, I passed an important step in the development + last_post_date: "2023-01-23T22:05:00Z" + last_post_link: https://strangerke.blogspot.com/2023/01/escape-from-hell.html + last_post_categories: + - EFH + - ScummVM + last_post_language: "" + last_post_guid: c7e8c110ed31ab47d33b56a00f3ef6f1 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4b0082742284dbb31686e18556feebe0.md b/content/discover/feed-4b0082742284dbb31686e18556feebe0.md new file mode 100644 index 000000000..732a13dc4 --- /dev/null +++ b/content/discover/feed-4b0082742284dbb31686e18556feebe0.md @@ -0,0 +1,44 @@ +--- +title: GHC on SPARC +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://ghcsparc.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 4b0082742284dbb31686e18556feebe0 + websites: + https://ghcsparc.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://failuresinfishkeeping.blogspot.com/: true + https://ghcsparc.blogspot.com/: true + https://www.blogger.com/profile/08287674468193351664: true + last_post_title: Memory Barriers and GHC 6.12.1 + last_post_description: I've moved to UNSW (University of New South Wales) to help + with the DPH (Data Parallel Haskell) project. The first order of business has + been to make a SPARC/Solaris binary release for 6.12.1.It + last_post_date: "2010-02-15T00:13:00Z" + last_post_link: https://ghcsparc.blogspot.com/2010/02/memory-barriers-and-ghc-6121.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 12cdeebd1eef7dbf8568b63cce2cff94 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4b0a304fc10c105693247852621900e3.md b/content/discover/feed-4b0a304fc10c105693247852621900e3.md deleted file mode 100644 index bb797f6ee..000000000 --- a/content/discover/feed-4b0a304fc10c105693247852621900e3.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: entropy bound -date: "2024-06-29T17:18:44-04:00" -description: physical reflections and refractions at the boundaries of science and - culture...but really, things can only get so out of hand. -params: - feedlink: https://www.blogger.com/feeds/6836726/posts/default?alt=atom - feedtype: atom - feedid: 4b0a304fc10c105693247852621900e3 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Milestone - last_post_description: "" - last_post_date: "2010-10-14T11:41:34-04:00" - last_post_link: https://entropybound.blogspot.com/2010/10/milestone.html - last_post_categories: [] - last_post_guid: 3c5e9f19a67bd1402d766a31411379da - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4b2c0e5a3ea5ef0da90de6ee018cd660.md b/content/discover/feed-4b2c0e5a3ea5ef0da90de6ee018cd660.md new file mode 100644 index 000000000..758203e20 --- /dev/null +++ b/content/discover/feed-4b2c0e5a3ea5ef0da90de6ee018cd660.md @@ -0,0 +1,44 @@ +--- +title: Cabal Testing Summer of Code +date: "2023-11-15T09:25:04-08:00" +description: "" +params: + feedlink: https://cabaltest.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 4b2c0e5a3ea5ef0da90de6ee018cd660 + websites: + https://cabaltest.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - alsa-mixer + - cabal + relme: + https://cabaltest.blogspot.com/: true + https://www.blogger.com/profile/00544931944194441070: true + last_post_title: Introducing alsa-mixer + last_post_description: "" + last_post_date: "2011-01-06T17:17:14-08:00" + last_post_link: https://cabaltest.blogspot.com/2011/01/introducing-alsa-mixer.html + last_post_categories: + - alsa-mixer + last_post_language: "" + last_post_guid: db77c410c908b4ca1c8b3ae0fd27ea02 + score_criteria: + cats: 2 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4b4754278a2b12a9e4df3d622107fd22.md b/content/discover/feed-4b4754278a2b12a9e4df3d622107fd22.md new file mode 100644 index 000000000..705697cc4 --- /dev/null +++ b/content/discover/feed-4b4754278a2b12a9e4df3d622107fd22.md @@ -0,0 +1,49 @@ +--- +title: Criezy's Blog +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://criezy.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 4b4754278a2b12a9e4df3d622107fd22 + websites: + https://criezy.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Broken Sword + - Mission Supernova + - NSDockTilePlugIn + - OS X + - ScummVM + - translation + relme: + https://criezy.blogspot.com/: true + https://www.blogger.com/profile/06034157834254576896: true + last_post_title: GSoC 2019 mentor summit lightning talk + last_post_description: Following the participation of ScummVM to the Google Summer + of code this summer we were invited to send two mentors to the Mentors Summit + in Munich in October. I was selected to go with Arnaud + last_post_date: "2019-11-10T19:02:00Z" + last_post_link: https://criezy.blogspot.com/2019/11/gsoc-2019-mentor-summit-lightning-talk.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 245a953ec9cfd00cfe5517def0454ab9 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4b5303ed462e33429a4466d6b021a90c.md b/content/discover/feed-4b5303ed462e33429a4466d6b021a90c.md deleted file mode 100644 index 302967c29..000000000 --- a/content/discover/feed-4b5303ed462e33429a4466d6b021a90c.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Comments for Whatever -date: "1970-01-01T00:00:00Z" -description: TIME TO REGISTER TO VOTE -params: - feedlink: https://whatever.scalzi.com/comments/feed/ - feedtype: rss - feedid: 4b5303ed462e33429a4466d6b021a90c - websites: - https://whatever.scalzi.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: 'Comment on New Music: Fraternal Twins 1&2 by Mike Woodhouse' - last_post_description: |- - Weird? Dunno about that. At least, not necessarily the weirdest, see https://en.wikipedia.org/wiki/The_Utopia_Strong - note that one of the founders is a six-time world snooker champion. - ANyway, a - last_post_date: "2024-06-04T10:59:43Z" - last_post_link: https://whatever.scalzi.com/2024/06/02/new-music-fraternal-twins-12/#comment-934179 - last_post_categories: [] - last_post_guid: 06d35e7e520a5f7bc66bec11b8fd8b5c - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4b6e488a9f69261f9d41cc772a0dda75.md b/content/discover/feed-4b6e488a9f69261f9d41cc772a0dda75.md new file mode 100644 index 000000000..09580abc6 --- /dev/null +++ b/content/discover/feed-4b6e488a9f69261f9d41cc772a0dda75.md @@ -0,0 +1,85 @@ +--- +title: Eclipsetacy +date: "1970-01-01T00:00:00Z" +description: A committer's take on issues related to Eclipse. +params: + feedlink: https://eclipsetacy.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 4b6e488a9f69261f9d41cc772a0dda75 + websites: + https://eclipsetacy.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - apache + - book + - book release + - book review + - brand + - cascon + - committer + - community + - conference + - cvs + - del.icio.us + - digg + - eclipse + - eclipse articles + - eclipse rt + - eclipse rt day + - eclipse series + - eclipse web tools platform + - eclipsecon + - epl + - error message + - fsoss + - ibm + - license + - open source + - presentation + - project collaboration + - relationship + - slashdot + - slides + - social bookmarking + - soft skills + - svn + - team + - ws-i + - wsdl validator + - wtp + relme: + https://eclipsetacy.blogspot.com/: true + https://lookbeyondthecode.blogspot.com/: true + https://www.blogger.com/profile/10420435504140055673: true + last_post_title: 'Eclipse: Empowering the Universal Platform Technical Briefing' + last_post_description: 'IBM has put together a technical briefing entitled Eclipse: + Empowering the Universal Platform that provides an introduction to Eclipse - the + platform, the foundation, and the ecosystem. This is a' + last_post_date: "2009-12-01T17:01:00Z" + last_post_link: https://eclipsetacy.blogspot.com/2009/12/eclipse-empowering-universal-platform.html + last_post_categories: + - eclipse + - ibm + - presentation + - slides + last_post_language: "" + last_post_guid: f83ef3ac50709a249057100507bd2f9e + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4b8e53a073ada80ab670585ec053c188.md b/content/discover/feed-4b8e53a073ada80ab670585ec053c188.md index 49e8fc571..21159af20 100644 --- a/content/discover/feed-4b8e53a073ada80ab670585ec053c188.md +++ b/content/discover/feed-4b8e53a073ada80ab670585ec053c188.md @@ -14,29 +14,34 @@ params: - https://jeroensangers.com/feed.xml - https://jeroensangers.com/podcast.xml categories: - - Become A Great Leader - - Master The Workplace + - Live The Good Life + - Miscellaneous Awesome relme: {} - last_post_title: 'This Is How To Be A Great Manager: 4 Powerful Secrets From Research' - last_post_description: What makes companies great? Gallup did research to find out - — real research. They surveyed 24 companies in 12 different industries measuring - productivity, profitability, employee retention and - last_post_date: "2024-05-27T05:02:20Z" - last_post_link: https://bakadesuyo.com/2024/05/manager/?utm_source=rss&utm_medium=rss&utm_campaign=manager + last_post_title: 'How To Be More Resilient: 6 Steps To Success When Life Gets Hard' + last_post_description: Sometimes life doesn’t just hand you lemons — it pelts you + with them like you’re in a citrus fruit dodgeball game. Yeah, we’re talking about + when you have to deal with grief, like the death + last_post_date: "2024-07-07T19:19:57Z" + last_post_link: https://bakadesuyo.com/2024/07/how-to-be-more-resilient/?utm_source=rss&utm_medium=rss&utm_campaign=how-to-be-more-resilient last_post_categories: - - Become A Great Leader - - Master The Workplace - last_post_guid: 40598d4307cbf7487759f74b56188c13 + - Live The Good Life + - Miscellaneous Awesome + last_post_language: "" + last_post_guid: 0f108bbdfd2d1168ca4acbfd099bd54a score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 2 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 15 + score: 19 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-4ba7ba168dfd0bf3e129761ca6f75655.md b/content/discover/feed-4ba7ba168dfd0bf3e129761ca6f75655.md new file mode 100644 index 000000000..f6ea18d6c --- /dev/null +++ b/content/discover/feed-4ba7ba168dfd0bf3e129761ca6f75655.md @@ -0,0 +1,42 @@ +--- +title: Patrick Dubroy's blog +date: "1970-01-01T00:00:00Z" +description: programming, usability & interaction design +params: + feedlink: https://dubroy.com/blog/rss.xml + feedtype: rss + feedid: 4ba7ba168dfd0bf3e129761ca6f75655 + websites: + https://dubroy.com/blog/: false + blogrolls: [] + recommended: [] + recommender: + - https://alexsci.com/blog/rss.xml + categories: [] + relme: {} + last_post_title: Playing like a kid again + last_post_description: For the last 13 years, I’ve done the same thing almost every + Monday night. At 9pm, I head out to a small sports club on the outskirts of Munich + to play 5-a-side soccer. Many players have left, and + last_post_date: "2024-06-30T00:00:00Z" + last_post_link: https://dubroy.com/blog/playing-like-a-kid-again + last_post_categories: [] + last_post_language: "" + last_post_guid: ecea9d20b4753b319558b9eb430c5962 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 1 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-4bc045734348a084f402a7c18bf77624.md b/content/discover/feed-4bc045734348a084f402a7c18bf77624.md new file mode 100644 index 000000000..e16ab296f --- /dev/null +++ b/content/discover/feed-4bc045734348a084f402a7c18bf77624.md @@ -0,0 +1,50 @@ +--- +title: No Inspiration +date: "2024-03-19T23:37:58+01:00" +description: "" +params: + feedlink: https://cfergeau.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 4bc045734348a084f402a7c18bf77624 + websites: + https://cfergeau.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - GNOME + - gsoc + - hacking + - libgpod + - libgpod hacking + - mandriva + - personal + - red hat + - rhythmbox + - spice + relme: + https://cfergeau.blogspot.com/: true + last_post_title: SPICE on OSX, take 2 + last_post_description: "" + last_post_date: "2013-03-25T10:48:40+01:00" + last_post_link: https://cfergeau.blogspot.com/2013/03/spice-on-osx-take-2.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 3ae4c3eb036ae9d3355ff48c958ed99a + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4bc27ae6647bc4e4d4361be71f780a8e.md b/content/discover/feed-4bc27ae6647bc4e4d4361be71f780a8e.md deleted file mode 100644 index a2b2fb93f..000000000 --- a/content/discover/feed-4bc27ae6647bc4e4d4361be71f780a8e.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: OpenStack – Any QP -date: "1970-01-01T00:00:00Z" -description: Cloud Messaging Topics -params: - feedlink: https://anyqp.wordpress.com/category/openstack/feed/ - feedtype: rss - feedid: 4bc27ae6647bc4e4d4361be71f780a8e - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - OpenStack - - Messaging - - Oslo.Messaging - - qdrouterd - - TripleO - relme: {} - last_post_title: Configuring Hybrid Messaging for TripleO - last_post_description: TripleO Messaging The OpenStack oslo.messaging library provides - RPC and Notification messaging communication patterns for control plane services. - The RPC interface is used for interactive invocation - last_post_date: "2018-07-30T20:37:16Z" - last_post_link: https://anyqp.wordpress.com/2018/07/30/__trashed/ - last_post_categories: - - OpenStack - - Messaging - - Oslo.Messaging - - qdrouterd - - TripleO - last_post_guid: 323c4ff7cbcdb91eea4a76bfbbeaaca3 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4bcf6f14dde98567350da74ecefcb365.md b/content/discover/feed-4bcf6f14dde98567350da74ecefcb365.md new file mode 100644 index 000000000..6fdf41601 --- /dev/null +++ b/content/discover/feed-4bcf6f14dde98567350da74ecefcb365.md @@ -0,0 +1,48 @@ +--- +title: Sporadic Dispatches +date: "1970-01-01T00:00:00Z" +description: Stuff that wants to get out of my head. +params: + feedlink: https://sporadicdispatches.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 4bcf6f14dde98567350da74ecefcb365 + websites: + https://sporadicdispatches.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - apps + - google + - ietf + - innovation + - mozilla + - webrtc + relme: + https://sporadicdispatches.blogspot.com/: true + last_post_title: 'An Open Letter to Tim Cook: Apple and the Environment' + last_post_description: Dear Mr. Cook:I watched your March Event 2016 Keynote speech + with great interest, and applaud your principled stance on encryption, as well + as the amazing steps Apple is taking toward environmental + last_post_date: "2016-03-23T18:15:00Z" + last_post_link: https://sporadicdispatches.blogspot.com/2016/03/an-open-letter-to-tim-cook-apple-and.html + last_post_categories: [] + last_post_language: "" + last_post_guid: ca48372e319ad9394e55399afab41216 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4bd64068b4ed584d409a30a104f96e3b.md b/content/discover/feed-4bd64068b4ed584d409a30a104f96e3b.md deleted file mode 100644 index 8a9311998..000000000 --- a/content/discover/feed-4bd64068b4ed584d409a30a104f96e3b.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Mark Sutherland -date: "2024-05-27T12:44:00+01:00" -description: Web Developer based in Leicester, UK -params: - feedlink: https://marksuth.dev/feed/photos.xml - feedtype: rss - feedid: 4bd64068b4ed584d409a30a104f96e3b - websites: - https://marksuth.dev/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://codepen.io/marksuth: false - https://github.com/marksuth: true - https://marksuth.dev/: true - https://mastodon.social/@marksuth: true - https://medium.com/@marksuth: false - https://twitter.com/marksuth: false - https://www.discogs.com/user/marksuth: false - https://www.linkedin.com/in/marksuth: false - last_post_title: Boston Stump - last_post_description: 'Location: Boston, Lincolnshire' - last_post_date: "2024-05-27T12:44:00+01:00" - last_post_link: https://marksuth.dev/photos/2024/05/boston-stump - last_post_categories: [] - last_post_guid: 528eb92e67537a1585dda553223f0b05 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4bf405f7c186518a53b1a7fc15ea4123.md b/content/discover/feed-4bf405f7c186518a53b1a7fc15ea4123.md index 467cf223b..f3e263225 100644 --- a/content/discover/feed-4bf405f7c186518a53b1a7fc15ea4123.md +++ b/content/discover/feed-4bf405f7c186518a53b1a7fc15ea4123.md @@ -13,1250 +13,101 @@ params: recommended: [] recommender: [] categories: - - Politics - - Environment - - Punk - - skateboarding - - GEF - - Photography - - Science - - Art - - documentary - - Video - - protest - - Music - - hip-hop - - '"school of Life"' - - capitalism - - inspiration - - away memes - - philosophy - - humor - - culture - - vegan - - Dump - - film - - religion - - hip hop - - history - - BLACK FLAG - - education - - occupy wall street - - TV - - Interview - - Noam Chomsky - - movies - - vintage - - Books - - animation - - punk rock - - food - - health - - Henry Rollins - - Beastie Boys - - instagram - - technology - - health care - - activism - - future - - government - - media - - Rare Photos - - economy - - comedy - - life - - obama - - psychology - - youth - - internet - - DJ - - Public Enemy - - DogTown - - Architecture - - Ian MacKaye - - Jonathan Toubin - - bernie sanders - - corporations - - economics - - school of life - - Revolution - - pbs - - politcs - - Fugazi - - Run-DMC - - civil rights - - exhibition - - my rules - - republikkkan - - NYC - - Space - - New York City - - classic - - street art - - Baseball - - Democracy - - Jay Adams - - hiphop - - propaganda - - sociology - - Michael Moore - - Shepard Fairey - - conservatives - - ignorance - - rock 'n' roll - - kids - - vegetarian - - Ice-T - - New York - - UK - - washington DC - - Design - - Earth - - athiest - - away tunes - - cars - - nature - - photographs - - Ian Svenonius - - Jello Biafra - - advertising - - animal rights - - animals - - civil liberties - - socialism - - DEVO - - FUCK GUNS - - Graffiti - - literature - - Bad brains - - Live - - Minor Threat - - amerikkka - - rap - - rockNroll - - work - - 1970's - - Chuck D. - - Feminism - - Talk - - fox news - - keith morris - - law - - race - - Banksy - - Jonathan Toubin DJ - - climate change - - conspiracy theories - - guns - - opinion - - sex pistols - - book signing - - children - - communication - - cornel west - - planet - - racism - - radio - - greed - - holiday - - insanity - - justice - - movie - - rock'N'roll - - short film - - usa - - wu-tang clan - - '#OWS' - - "1977" - - Business - - Daily Show - - NASA - - YouTube - - Z-Boys - - away - - black culture - - consumerism - - dead kennedys - - fascism - - ramones - - surfing - - tony alva - - xmas - - 45's - - Africa - - Apple - - Beatles - - Def Jam - - GREENPEACE - - News - - War - - automobiles - - away. meme - - diet - - energy - - factory farming - - lance Mountain - - los angeles - - martin sprouse - - marx - - mash-up - - old school - - security - - violence - - 1960's - - BBC - - Funk - - Japan - - NRA - - Podcast - - Pussy riot - - Ralph Nader - - Woody Allen - - buzzcocks - - clouds - - corruption - - feel the bern - - india - - nuclear power - - stacy peralta - - "2016" - - DUMP. politics - - ENVIRONMENTALISM - - Global Warming - - Intelligence - - MLK - - Rick Rubin - - Work + Capitalism - - california - - chuck dukowski - - community - - gangs - - george orwell - - humans - - jon stewart - - karl marx - - organic - - press - - publishing - - truth - - universe - - BOOK - - CBGB's - - Dock Ellis - - Fela Kuti - - OG - - Soul Proprietor - - bullshit - - censorship - - christmas - - circle jerks - - classic music - - classic vinyl - - folk music - - hardcore - - hardcore punk - - john oliver - - live music - - national geographic - - production - - rare - - russia - - the idealist - - viral - - water - - women - - Archive - - Death - - Dolphins - - Entertainment - - Financial Crisis - - KRS-One - - LL Cool J - - Liars - - MC5 - - New York Night Train - - RIP - - Rakim - - SNL - - SkateBoarder - - Soul Train - - advice - - american history - - animal agriculture - - badass - - comics - - corporatocracy - - depression - - dischord - - dope - - eric b. and rakim - - fast food - - faux news - - human nature - - james bond - - jazz - - jimi hendrix - - language - - liberal - - mash-up remixes - - military industrial complex - - music business - - public library - - recording - - records - - robots - - self - - style - - t-shirt - - terrorism - - the Simpsons - - united states of america - - vote - - voting - - weather - - zephyr - - "1976" - - "1985" - - 70's - - CHANGE - - Crass - - Facebook - - Family - - HR - - Heavy Metal - - Hero - - IG - - Jeff Ho - - London - - NPR - - Ocean - - Sundance - - Thanksgiving - - Together Forever - - Travel - - Whales - - african american - - american - - atheism - - bicycle - - brain - - charity - - china - - civil disobedience - - climate - - conservative - - digital technology - - drugs - - electric car - - event - - flag - - flight - - home - - lecture - - money - - peta - - police violence - - politicians - - progressive - - robert Reich - - russell simmons - - skateboarding hall of fame - - society - - sports - - target video - - taxes - - the beatles - - thieves - - trees - - visual traveling - - 60's - - 80's - - Afro beat - - BEEF - - Black Panthers - - Black Sabbath - - Campaign Finance Reform - - Chain and the Gang - - Democracy Now - - Dr.Seuss - - Einstein - - Jam Master jay - - Jim Muir - - King Tee - - PMA - - R.I.P. - - Rollins - - Sly and the family stone - - Suicidal Tendencies - - a tribe called quest - - acting - - asshole - - assholes - - basketball - - beauty - - birds - - c. r. stecyk - - clothing - - creativity - - debate - - educational - - ethics - - ferguson - - fun - - germany - - hall of fame - - hollywood - - hot rods - - images - - lies - - martin luther king jr. - - music video - - nazi - - parody - - photo - - photo manipulation - - pirates - - president - - public spaces - - ramps - - reading - - recognize - - revolutionary - - run dmc - - safety - - satire - - shit - - shithead - - skate - - smoking - - social commentary - - social media - - stephen colbert - - steve olson - - straight edge - - surveillance - - the Spiv - - 1st amendment - - 35mm film. photography - - AdRock - - Alexandria Ocasio-Cortez - - Arté TV - - DIY - - Danzig - - Ezio - - FBI - - FUCK THE NRA - - Freud - - Friends - - Fuck You All - - GREEN - - MLB - - Mark Gonzales - - Mars - - Native American - - OCCUPY - - Peggy Oki - - Plato - - Q&A - - Rodney Mullen - - Sea Shepherd - - Single Payer - - Snoop Dogg - - Tesla - - USSR - - Union - - Wall Street - - X-Clan - - age - - alcohol - - anarchy - - angela davis - - atheist - - automation - - bad ass - - banks - - birthday - - brooklyn - - camera - - cherry hill - - chomsky - - civilization - - collaboration - - commentary - - commercials - - computers - - cool stuff - - daredevils - - detroit - - dog town - - downloading - - driving - - duane peters - - election - - elizabeth warren - - equality - - eyes - - fascist - - football - - genetically modified - - genius - - glen E. Friedman - - god - - golden era - - good - - google - - grand master flash - - graphic - - hope - - humanitarian - - idiots - - ill - - independent - - information - - innovation - - insects - - integrity - - interesting - - james brown - - john lennon - - knowledge - - little league - - malcolm x - - manners - - marriage - - mike watt - - new book - - no guns - - oil - - peanuts - - physics - - planets - - plant based diet - - plutocracy - - police - - power - - prank - - privacy - - rebel culture - - rebellion - - resistance - - riots - - roberto clemente - - sex - - shogo kubo - - ska - - skateboarder magazine - - sleep - - snow - - sound - - stars - - students - - stupidity - - subway - - super heroes - - supreme court - - surf culture - - tea party - - the damned - - tony hawk - - transportation - - vinyl - - vision - - waste - - wisdom - - workers - - x-mas - - yauch - - "1971" - - "1978" - - "1979" - - "1981" - - "1982" - - "1984" - - A.O.C. - - Alec mackaye - - Alfred Hitchcock - - Alva - - Apocalypse - - BDP - - Brendan Canty - - CIA - - Daily Party Platter - - Descendents - - Earthquake - - Elon Musk - - Fanzine - - Fuck - - Glenn Danzig - - Guitar Hero - - Guy Picciotto - - Hoax - - Ice cube - - Ireland - - Joe Lally - - John Robbins - - John kricfuluci - - Johnny Rotten - - Juxtapoz - - LA - - Lance - - Led Zeppelin - - MAD magazine - - Madonna - - NSA - - Nazism - - Nietzsche - - P.O.S. - - Pepsi - - Pete Shelly - - Pittsburgh - - Poland - - Print - - Seth Meyers - - Simpsons - - Skateparks - - Skatistan - - TED - - The story of stuff - - Universal Health Care - - Wayne Kramer - - YES MEN - - adam yauch - - agribusiness - - air pollution - - album cover - - america - - amnesty international - - anthropology - - astronomy - - b-boy - - beats - - black lives matter - - blues - - boing boing - - bones brigade - - burning flags press - - cinematography - - cities - - compassion - - confederate flag - - congress - - consciousness - - constitution - - cool - - copyright - - craft - - creationism - - creative - - currency - - dance - - dangerous Minds - - democrats - - dez cadena - - dischord records - - disney - - dreams - - elvis costello - - empathy - - evel knievel - - evolution - - extreme - - extreme sports - - facts - - fashion - - feminist - - finance - - fireworks - - france - - freedom of speech - - fuck you heroes - - gay - - george clinton - - graffiti rock - - graphics - - greg Ginn - - gun violence - - healthcare - - honor - - humanity - - idealisim - - idealism - - idealist - - ideas - - iggy pop - - incarceration - - insane - - john stewart - - kkk - - know your roots - - kodachrome - - labor - - law enforcement - - liar - - light - - lightning - - lyrics - - marxism - - mcdonalds - - meat - - military - - minutemen - - misfits - - monsanto - - moon - - murder - - museum - - nationalism - - new wave - - nuclear testing - - nuclear weapons - - nukes - - oldschoool - - olympics - - parenting - - peace - - philanthropy - - photograph - - pittsburgh pirates - - pizza - - poetry - - political theory - - pool skating - - pop music - - reality - - recordings - - recycle - - reggae - - ren and stimpy - - resilience - - respect - - seinfeld - - skateboarding history - - slayer - - snowboarding - - social justice - - solar power - - solar system - - soul - - south africa - - spike lee - - stories - - study - - sunday sermon - - surfer - - sustainable living - - swearing - - syria - - t-shirts - - thanksgiving meme's - - the CRAMPS - - time - - time lapse - - traffic - - tricks - - turntablism - - twitter - - waves - - womens rights - - wugazi - - yoko ono - - z-boy - - zephyr team - - © - - '#OccupyWallSt' - - '#occupywallstreet' - - "1963" - - "1969" - - "1970" - - 1980s - - "1986" - - "2017" - - 3 chord politics - - 35mm film - - 4th of july - - 99% - - AC/DC - - ACLU - - Adam Horovitz - - Aerosmith - - Afghanistan - - Al Barile - - Alice Cooper - - Allison Wolfe - - American masters - - Anthony Pirog - - Archaeology - - Auschwitz - - BOX - - Beatniks - - Bill maher - - Biscuits - - Black panther - - Bobby Piercy - - Boogie Down Productions - - C.R. Stecyk III - - CDC - - COMPETITION - - California Über Alles - - Chris Rock - - Chuck Biscuits - - Colin Kaepernick - - Country - - D. Boon - - D.O.A. - - DC - - DJ Nu Mark - - DNC - - DVD - - Darwin - - Dave Chappelle - - Detroit sound - - Drunk - - Dukowski - - Eastern Philosophy - - Era - - Ethical - - Fat Boys - - Fela - - GLAM - - GMF - - GMO - - GZA - - Glenn Greenwald - - Go-Go - - Gun Control - - Guy Debord - - H.R. - - Iceland - - Janis Joplin - - Jerry Casale - - KRS-1 - - Keep your eyes open - - Kent senatore - - Kool Herc - - LIFE magazine - - LP - - LSD - - Legal - - Legend - - Leonardo da Vinci - - MARCH - - MONOPOLISM - - MTV - - Make Up - - Make-up - - Mark Mothersbaugh - - Martin Scorsese - - Max Weber - - Medicare - - Metzger - - Mike Tyson - - Milo - - NOU - - NWA - - Nate Dogg - - Neil Blender - - New Yorker - - OBEY GIANT - - OWS - - PC - - PIL - - POTUS - - Pier 62 - - Police Brutality - - RESIST - - Raymond Pettibon - - Renaissance - - Roma - - SCIENCE FICTION - - SS Decontrol - - SST - - Saturday Night - - School Life Monday - - Schooly D. - - Situationist International - - Slavery - - Snoop - - Softball - - Space exploration - - Stephen hawking - - TRAP - - TRUSTBUSTING - - The Allegory of the Cave - - The Daily Show - - The Intercept - - UN - - UTFO - - WE ARE ALL DEVO - - Wake up - - Western Philosophy - - Wu tang clan - - Z-Flex - - abuse of power - - activist - - adjusters - - aesthetics - - aging - - air - - album art - - aliens - - american bandstand - - angelicas kitchen - - animal liberation - - anti-fascist - - anti-war - - asia - - athletes - - attitude - - austerity - - australia - - b-boying - - backyard ramp - - badge - - beat box - - behavior - - beliefs - - bible - - bicycles - - big boys - - bill moyers - - black nationalism - - boards - - book stores - - border - - bratmobile - - break dancing - - burger - - campaign - - cancer - - car culture - - carl dix - - carnivore - - cartoons - - cell phones - - child abuse - - childhood - - classic battle rap - - cold - - cold war - - color - - comic books - - coming out - - comments - - commercial - - communism - - con - - conspiracy - - corporate greed - - cows milk - - crazy legs - - creatives - - criminals - - cruelty - - cuba - - curiosity - - darby crash - - dean Delray - - death metal - - demo - - devil - - dick clark - - disaster - - discussion - - dogtown & Z-Boys - - donald trump - - drones - - ecology - - eddie elguera - - egypt - - election 2016 - - elections - - emo - - etiquette - - evil - - fake - - fame - - fear - - fight ignorance - - film making - - films - - first world - - flyers - - fox - - fracking - - freedom of the press - - freestyle - - fuck all conservatives - - fundamentalism - - funny - - gangster - - garage - - gaza - - germs - - girls - - godfather - - gopro - - graphic design - - guitar - - halloween - - hank shocklee - - hard core - - highways - - hobby - - hollis - - homeless - - honda - - human interest - - human rights - - hygiene - - idiot - - iggy - - inebriated - - information commodity - - infrastructure - - injustice - - institutionalized - - introspection - - investment - - iran - - iraq - - it takes a nation of millions to hold us back - - italy - - jaywalking - - jesus - - jobs - - john lydon - - kent sherwood - - kenter - - killer mike - - last week tonight - - leadership - - legendary - - lego - - lie - - lifestyle - - lightening - - linguistics - - liverpool - - living - - logos - - love - - luddites - - lying - - magazine - - magic - - malcolm McLaren - - manchester - - meaning - - medical science - - medicine - - memorial - - memory - - mental health - - milk - - mods - - morals - - movie stars - - muhammad ali - - names - - narcissist - - nas - - nazi trump fuck off - - nerds - - net neutrality - - new year - - night train - - noir - - non-violence - - novelty - - nutrition - - "off" - - old people - - oliver stone - - olson - - parks - - pee wee herman - - pee-wee herman - - people - - perspective - - peyote cody - - pharma - - pin - - piracy - - pizzanista - - plant based - - poet - - political correctness - - pollution - - pop - - pop culture - - poseur - - positive - - positive force - - poverty - - powell peralta - - presidential election - - projection - - public transportation - - puerto rico - - punk 1960's - - putin - - radicals - - rakim allah - - rant - - rape - - reagan - - real estate - - rebel - - reservation - - responsibility - - reunion - - review - - right wing - - riot grrrl - - rise above - - robert DeNiro - - rock - - rock n' roll - - roller coaster - - rolling jubilee - - sampling - - scandal - - school - - school D. - - school house rock - - schools - - selfies - - separation of church and state - - shit head - - shitpreme - - shopping - - sight - - skateBoarder imagine - - skateboarding saves - - slalom - - slick rick - - smog - - social Skills - - social security - - solutions - - south park - - speak out - - special effects - - specials - - spiderman - - spirituality - - star wars - - steve jobs - - storms - - strike debt - - student loans - - subculture - - summer - - superstition - - swimming - - tax - - tech - - techno - - the Specials - - the clash - - the evens - - the guardian - - the new york times - - the scream - - the stooges - - this is america - - thrasher - - tom groholski - - tour - - toys - - treacherous three - - trends - - trivia - - trouble funk - - tupac Shakur - - turkey - - two tone - - tyranny - - unions - - unreleased - - us - - values - - vegetation - - venice - - wall - - war on drugs - - warfare - - wealth - - wi-fi - - wikileaks - - wild life - - wild style - - william f. buckley - - win - - winston Smith - - wood - - writing - - wrong - '"in the moment"' + - '"school of Life"' - '#BlackLivesMatter' - '#DELETEFACEBOOK' + - '#OWS' + - '#OccupyWallSt' - '#RealTalk' - '#THISISMYLANE' - '#YESONB' - '#handsup' - '#occupy' + - '#occupywallstreet' - '#real. NYC' + - $ - . 3 chord politics - 1% - 100% - 1000fps - 12th street and broadway - 1920's + - 1960's + - "1963" - "1965" - "1966" - "1967" - "1968" + - "1969" + - "1970" + - 1970's - 1970s + - "1971" - "1972" - "1973" - "1975" + - "1976" + - "1977" + - "1978" + - "1979" - "1980" - 1980's + - 1980s + - "1981" + - "1982" - "1983" + - "1984" + - "1985" + - "1986" - "1987" - "1988" - 1990s + - 1st amendment - 1st pub - 2.13.61 - "2010" - 2010 lists - "2012" - "2013" + - "2016" + - "2017" - 2018 TSUNAMI - "2019" - "2020" - 20th century - 21st century + - 3 chord politics - 3-3 - 3/11 - 35mm + - 35mm film + - 35mm film. photography - "360" - 3D - 3d printing - 42nd street + - 45's + - 4th of july - 5% - "50" - 60 minutes + - 60's - 60s + - 70's - "77" + - 80's - 9/11 + - 99% - '@Nationalschoolwalkout' - A look Back at DogTown and Z-Boys - 'A look Back: Dogtown and Z-Boys' + - A.O.C. - A/B SPLITTING - A7 - ABC-TV + - AC/DC + - ACLU - ACTION HUNGER - AI - AJIT PAI @@ -1266,16 +117,30 @@ params: - APPS-AND-SOFTWARE - ART OF RAP - ATTENTION HIJACKING + - AdRock - Adam Bomb + - Adam Horovitz - Adams - Adolescents + - Aerosmith + - Afghanistan + - Africa - African American skateboarders + - Afro beat + - Al Barile - Al FlipSide + - Alec mackaye + - Alexandria Ocasio-Cortez + - Alfred Hitchcock - Algorithms + - Alice Cooper + - Allison Wolfe + - Alva - Amazing - Amchitka - American dream - American indian + - American masters - Amery Smith - Amsterdam - Amy Goodman @@ -1283,10 +148,18 @@ params: - Anonymous - Another Music in a different kitchen - Ansel Adams + - Anthony Pirog - Anton Chekhov + - Apocalypse - Apocalypse Now + - Apple + - Archaeology + - Architecture + - Archive - Arlington Va + - Art - Arte + - Arté TV - Ashly Judd - Astrology - Atari Teenage Riot @@ -1294,22 +167,35 @@ params: - Auguste Comte - Augustine - Aurora Borealis + - Auschwitz - Avengers - B&W - BAD + - BBC + - BDP + - BEEF - BG + - BLACK FLAG - BMX + - BOOK - BOOKS / COMPETITION / GODWINS LAW + - BOX - BUSINESS / CITIZENS UNITED / ELECTIONS - BUSY BEE - Bad Azz + - Bad brains - Baltimore + - Banksy - Bannon - Barbara Kruger - Barcelona - Barry White + - Baseball - Batman + - Beastie Boys - BeastieBoys + - Beatles + - Beatniks - Ben Nordberg - Berkeley - Bestie Boys @@ -1321,8 +207,13 @@ params: - Biggie Smalls - Bill Daniel - Bill de Blasio + - Bill maher - Billy Ruff - Binder clip + - Biscuits + - Black Panthers + - Black Sabbath + - Black panther - Blackfish - Blaise Pascal - Blu @@ -1331,30 +222,43 @@ params: - Bob Hunter - Bob Mohr - Bob Woodward + - Bobby Piercy - Boethius - Bolster - Bon Scott + - Boogie Down Productions + - Books - Boom box - Boston - Bowie - Boys - Brenadan canty + - Brendan Canty - British petroleum - Bronx - Brother Jay - Bruce Lee + - Business + - C.R. Stecyk III - CABLE COMPANY FUCKERY - CALEXIT - CBGB + - CBGB's - CC - CCCP - CD + - CDC - CHAMATH PALIHAPITIYA + - CHANGE + - CIA + - COMPETITION - COOP - COP21 - COUNTERFACTUALS - COVID19-19 - CYCLING + - California Über Alles + - Campaign Finance Reform - Canada - Candide Thovex - Captain Paul Watson @@ -1362,42 +266,64 @@ params: - Carpool Karaoke - Cassimus - Cey Adams + - Chain and the Gang - Charlie Blair - Cheech and Chong - Childish gambino - Childrens programing + - Chris Rock - Christian Hosoi + - Chuck Biscuits - Chuck D + - Chuck D. - Chung King house of Metal - Cindy Sheehan - Clash - Class War - Cleveland + - Colin Kaepernick - Columbus day - Comedy Central - Concert - Conspiracies - Copenhagen + - Country - Covid-19 + - Crass - Cuck D. - Curb Your Enthusiasm - D E V O + - D. Boon - D.Boon - D.I.Y. + - D.O.A. + - DC - DEFINANCIALIZATION / ELECTIONS - DESERT + - DEVO - DIVERSITY + - DIY + - DJ - DJ Lord + - DJ Nu Mark - DJ RED ALERT - DJ's - DJing + - DNC - DOOMSDAY - DUMO - DUMP. Noam Chomsky + - DUMP. politics + - DVD - Daewon Song + - Daily Party Platter + - Daily Show - Dan Mancina - Daniel Beltrá - Danny Lyon + - Danzig + - Darwin + - Dave Chappelle - Dave Roth - David Attenborough - David Lee Roth @@ -1406,14 +332,24 @@ params: - De-evolution - Dead Boys - Dear Kennedys + - Death - DeathRow - Debut - Decline movie + - Def Jam + - Democracy + - Democracy Now - Denis Kucinich + - Descendents + - Design + - Detroit sound - Dinosaur - Dinosaurs - Divine Styler + - Dock Ellis + - DogTown - Dogtown- The Legend of the z-boys + - Dolphins - Don Cornelius - Don Rickles - Donald Clover @@ -1422,56 +358,95 @@ params: - Dr. DeMento. radio - Dr. KNow - Dr. Octagon + - Dr.Seuss + - Drunk - Dublin + - Dukowski + - Dump - Dylan to me - EBOOKS + - ENVIRONMENTALISM - ENVY - EPA - ETW - EXISTENTIALISM - Earl Liberty + - Earth + - Earthquake - Earthsave + - Eastern Philosophy - Economic Demand - Ecstasy - Ed Templeton - Edvard Munch - Edward Snowden + - Einstein - El-Hajj Malik El-Shabazz + - Elon Musk - Emil Cioran - Emma Gonzalez NO GUNS + - Entertainment + - Environment - Epicurus + - Era - Eric Dressen - Eric Matthies - Eric Pritchard + - Ethical - Eugenics - Evens - Extra strength posse + - Ezio - FACEBOOK-EXEC + - FBI - FCC - FKE NEWS - FLOSS - FOIA - FTW + - FUCK GUNS + - FUCK THE NRA - FULLY AUTOMATED LUXURY COMMUNISM - FUTURISM - FVK + - Facebook - Fake News - Fall + - Family + - Fanzine + - Fat Boys + - Fela + - Fela Kuti + - Feminism + - Financial Crisis - Flash - Flavor - Foreclosure - Fred Rogers - Freddie Gray - Freelancers Union + - Freud + - Friends + - Fuck - Fuck Trump + - Fuck You All + - Fugazi + - Funk - Funky Drummer - Funky Four Plus One - G-20 - G.E.F. + - GEF + - GLAM + - GMF + - GMO - GO BUCS - GOAT - GOAT Def Jam - GOP + - GREEN + - GREENPEACE + - GZA - Games - Gary Harris - Gary Harris RIP @@ -1481,7 +456,12 @@ params: - George Barris - Geraldo Rivera - Ginsberg + - Glenn Danzig + - Glenn Greenwald - Global Protest Movements + - Global Warming + - Go-Go + - Graffiti - Grandmaster Caz - Green New Deal - Green Party @@ -1490,12 +470,19 @@ params: - Greyson fletcher - Guantanamo School Of Medicine - Gucci Time + - Guitar Hero + - Gun Control - Gustave Flaubert + - Guy Debord - Guy Mariano + - Guy Picciotto + - H + - H.R. - HAPPY MUTANTS - HBO - HISTORY OF IDEAS - HOMELESSNESS + - HR - HYPERTEXT - Ha Ha - Haitian Earthquake @@ -1503,12 +490,16 @@ params: - Hardcore chronicles - Harley Flanagan - Harry Allen + - Heavy Metal - Hells Angels - Henry - Henry Chalfant - Henry David Thoreau + - Henry Rollins - Herman hesse + - Hero - High Five + - Hoax - Holocaust - Hopsin - Horace Panter @@ -1518,18 +509,27 @@ params: - Hurricane - Hüsker Dü - I can't breathe + - IG - IK - INDIGENOUS PEOPLE - IPS - Ian F Svenonius - Ian F Svenonius - punk + - Ian MacKaye + - Ian Svenonius + - Ice cube + - Ice-T + - Iceland - Impala - In on the kill taker - Indonesia + - Intelligence - International Womans day + - Interview - Interviews - Inti Carboni - Iraq war + - Ireland - Irish pop punk - Isaac Hayes - It's Like That @@ -1541,10 +541,14 @@ params: - Jaffee - Jakarta - Jam + - Jam Master jay - James Corden - James Joyce - Janette beckman + - Janis Joplin + - Japan - Jason Mizell + - Jay Adams - Jay Boy - Jay Smith - Jay Z @@ -1552,104 +556,152 @@ params: - Jean-Jacques Rousseau - Jeb Corliss - Jeff Grosso + - Jeff Ho - Jeff Nelson - Jeffrey Wright + - Jello Biafra - Jeremy Scahill + - Jerry Casale - Jim Carrey + - Jim Muir - Jimmy Plumer - Joe Corré - Joe Kennedy 3rd + - Joe Lally - Joey Ramone - Joey Shithead - John Locke + - John Robbins - John Ruskin - John Sinclair + - John kricfuluci - Johnny Cash - Johnny Ive + - Johnny Rotten + - Jonathan Toubin + - Jonathan Toubin DJ - Jony Ive - Josh Harrison - Juice Magazine - Just Jay + - Juxtapoz - KIDS NOT GUNS + - KRS-1 + - KRS-One - KXLU - KYEO - Kafka - Kareem Abdul Jabbar - Kate Schellenbach + - Keep your eyes open - Keith Albertan - Keith Levine - Kennedy center + - Kent senatore - Kenter Canyon School - Kerry king - Keynes - Kid Rock - Kim Cespedes - King James Cassimus + - King Tee + - Kool Herc - Kool Keith - Krush Groove - L Train - L.A. PUNK. Punk Rock + - LA - LA PUNK - LATE STAGE CAPITALISM - LATIN AMERICA - LGBTQ - LIBRARIES + - LIFE magazine - LITERAL FASCISM - LL COOL Jm Public Enemy + - LL Cool J - LL CoolJ - LOST + - LP - LP. art + - LSD - La ZAD - Labron James - Lagos + - Lance - Langston Hughes - Lao Tzu - Larry David - Larry King - Late late Show - Le Tigre + - Led Zeppelin + - Legal + - Legend + - Leonardo da Vinci - Lester Rodney - Liam Morgan + - Liars - Libertarianism - Licensed to Ill + - Live - Live and direct + - London - Lorax - Love train - Luck - Lydon - Lyndal Golding - Lyre Bird + - MAD magazine + - MARCH - MAY DAY - MC Lyte + - MC5 - MC5. Video - MC6 - MCA - MCA Day - MIT + - MLB + - MLK + - MONOPOLISM - MTA + - MTV - MURS - MY RULES. London - Machiavelli - Mackaye + - Madonna - Magazine cover + - Make Up + - Make-up - Malcolm McClaren - Malcolm Young - Manufacturing Consent - Marina skatepark - Marine Mammals - Mario Cuomo + - Mark Gonzales + - Mark Mothersbaugh + - Mars - Martial Arts + - Martin Scorsese - Marty Grimes - Marvel Comics - Maryland - Matt Taibbi + - Max Weber - Maya Angelou + - Medicare - Meme - Messthetics - Messthetics's - Metal - Method Man + - Metzger - Michael Bennet + - Michael Moore - Michael More - Michael Rapport - Micke Alba @@ -1658,8 +710,11 @@ params: - Mike D. Adam Horovitz - Mike McGill - Mike Muir + - Mike Tyson - Millennial + - Milo - Milo Aukerman + - Minor Threat - Minute Men - Mixing - Moby @@ -1670,8 +725,10 @@ params: - Mr. Motherbaugh - Mr. Rogers - Mug Shots + - Music - My war - NADYA TOLOKNO + - NASA - NASCAR - NATION OF ULYSSES - NBA. Pro Sports @@ -1679,35 +736,62 @@ params: - NO SKateboarding - NO TROLLS - NOT PC + - NOU + - NPR + - NRA + - NSA + - NWA + - NYC - NYC subway performer - NYPD - NYU - NYtimes - Nadya Tolokonnikova - Nancy Barile + - Nate Dogg + - Native American + - Nazism + - Neil Blender - Neil deGrasse Tyson - Netherlands + - New York + - New York City + - New York Night Train - New York Times - New York new York + - New Yorker + - News + - Nietzsche - Nina Mariah - No Airport + - Noam Chomsky - Norma-Jean Wofford - Nugent - O'Jays - OBEY + - OBEY GIANT + - OCCUPY + - OG - OUTDOOR INDUSTRY + - OWS + - Ocean - Old city - Oldschool - Origins - Orwell + - P.O.S. - P2P - PARKLAND - PATAGONIA - PBS. MY RULES + - PC - PE - PETAm - PIKETTY + - PIL + - PMA - PMRC + - POTUS - PRINCE - PSK - PUBLIC BANK LA @@ -1717,29 +801,48 @@ params: - Paul Haven - Paul Schrader - Paul's Boutique + - Peggy Oki + - Pepsi - Peralta - Peru + - Pete Shelly - Philharmonic + - Photography - Physicians Committee for Responsible Medicine + - Pier 62 - Pilgrim + - Pittsburgh - Plastic + - Plato - Pledge of Allegiance + - Podcast + - Poland + - Police Brutality - Police building + - Politics - Portlandia - Positive Mental Attitude - Predictions - Press and Media + - Print - Promise school - Psychiatry - Psychotherapy + - Public Enemy - Public Image Ltd. + - Punk + - Pussy riot + - Q&A - Queen Elizabeth - Quincy Jones - R&B + - R.I.P. - RAINFOREST - RBG - REAGANOMICS COMES HOME TO ROOST - RESCUING CAPITALISM + - RESIST + - RIP - RISD - ROA - ROB BLISS @@ -1748,18 +851,25 @@ params: - RZA - Racist - Raising Hell + - Rakim - Rally + - Ralph Nader - Rammellzee - Ramomes - Rand + - Rare Photos - Ravi Shankar + - Raymond Pettibon - Raymond Scott - Redondo beach - Reich + - Renaissance - Republicangovernment - Revere + - Revolution - Rhyme Syndicate - Richard hell + - Rick Rubin - Rick and Morty - Ricky Powell - Ride @@ -1769,27 +879,35 @@ params: - Robert De Niro - Robert Redford - Rockers + - Rodney Mullen - Roger Moore + - Rollins + - Roma - Romanticism - Ron Reyes - Roxanne Roxanne - Roxanne Shanté - Ru Paul - Run The Jewels + - Run-DMC - RunDmc - Russ Howell - S.S. Decontrol - S.S.DeControl - SCHOLARSHIP + - SCIENCE FICTION - SEAN PARKER - SEEDS - SF - SILICON VALLEY - SIMS - SLITS + - SNL - SNOBS - SOCIAL-MEDIA-COMPANIES + - SS Decontrol - SSD + - SST - SXE - Saccharine Trust - Sacha Baron Cohen @@ -1801,34 +919,59 @@ params: - San Pedro - Sandy - Sartre + - Saturday Night - Saturn - Saul Bass + - School Life Monday + - Schooly D. + - Science - Scott Truax + - Sea Shepherd - Segregation - Senator + - Seth Meyers - Sex Stains + - Shepard Fairey - Simon Sinek + - Simpsons - Sinatra - Sinead O'Connor + - Single Payer - Siouxsie + - Situationist International - SkateBoard + - SkateBoarder - Skateistan + - Skateparks + - Skatistan + - Slavery - Sly Stone + - Sly and the family stone - Snakes + - Snoop + - Snoop Dogg - Snoop Doggy Dogg - Snowden - Socrates + - Softball - Solidarity - Sonics + - Soul Proprietor + - Soul Train + - Space + - Space exploration - SpaceX - Spock - Stecyk + - Stephen hawking - Steve Cutts - Steve Soto - Stimulators - Stoics - Strength + - Suicidal Tendencies - Sun Ra + - Sundance - Sunday - Super Fly - Super-X @@ -1837,36 +980,49 @@ params: - Susannah Mushatt Jones - T-Shirt. Jay Adams - T.S.O.L + - TED - THE GONZ - THE MET - TOnyAlva - TRANSPARENCY + - TRAP - TRUMPISM + - TRUSTBUSTING + - TV - TV Special - TV. Documentary - Taibbi + - Talk - Taoism - Tea Party Revenge Porn - Ted Nugent - Televangelists - Ten years - Terry Hall + - Tesla + - Thanksgiving + - The Allegory of the Cave - The Brouhaha - The Creator - The Creep + - The Daily Show + - The Intercept - The Messthetics - The Superman + - The story of stuff - They Live - Thrasher magazine - Tiananmen Square - Tibet - Tim Kerr - Tiny Desk + - Together Forever - Tolstoy - Tom Jones - Tom Sims - Tommy Ryan - Tragedy + - Travel - Trespassing - Triumph - Turning Point ramp @@ -1875,11 +1031,17 @@ params: - UCLA - UFO - UFO's + - UK - UMAIR HAQUE + - UN - US Army - USPOLI + - USSR + - UTFO - Ultramagnetic. MC - Unconscious + - Union + - Universal Health Care - Universal healthcare - Uno - VAL @@ -1893,6 +1055,7 @@ params: - Venice beach - Vermeer - Vicki Vickers + - Video - Video Home Recorder - Vietnam - Virgin America @@ -1901,17 +1064,24 @@ params: - Vivian Maier - Vivienne Westwood - Voltaire + - WE ARE ALL DEVO - WEAPONIZED ENGAGEMENT - WEB THEORY - WHITE PRIVILEGE - WTF? - WWW. views + - Wake up + - Wall Street - Wall Street Journal - Wally Inouye + - War + - Wayne Kramer - Wendy bearer - Wentzle Ruml IV - Wes Humpston + - Western Philosophy - Westwood + - Whales - Whip - White Nationalism - Whitney Cummings @@ -1919,59 +1089,105 @@ params: - Whole Foods - Wide world of sports - Will Ferrell + - Woody Allen + - Work + Capitalism + - Wu tang clan - Wyatt Cenac - Wyoming + - X + - X-Clan - X-Men + - YES MEN - YVON CHOUINARD - Yamakasi + - YouTube - Z-3 MC's + - Z-Boys + - Z-Flex - ZBOYS - ZZ TOP + - a tribe called quest - aaron swartz - abolishing nuclear weapons - abolishing nuclear weapons . film - abuse + - abuse of power - accident + - acting - action adventure - action now magazine + - activism + - activist + - adam yauch - adbusters - addiction + - adjusters - adults + - advertising + - advice - aerial photography + - aesthetics - african + - african american - african americans - afrocentric + - age + - aging + - agribusiness - agriculture + - air + - air pollution - airwaves - al Jaffee - al jazeera - al oliver - album + - album art + - album cover + - alcohol - alfred E. newman + - aliens - all ways fodder for the con - alt-right - alt. right - amazon.com - ambassadors + - america + - american + - american bandstand - american culture - american diet + - american history - amerikka + - amerikkka + - amnesty international - amy farina - anarchism - anarchist + - anarchy - anatomy - ancient societies - and magazine - andy kessler - andy warhol + - angela davis + - angelicas kitchen + - animal agriculture - animal farm + - animal liberation + - animal rights + - animals + - animation - animations - another world is possible - antarctica - anthem + - anthropology + - anti-fascist - anti-imperialist - anti-semitism - anti-violence + - anti-war - anti-war. no nukes - antibiotics - antropologie @@ -1983,34 +1199,59 @@ params: - arrow - art direction - arts + - asia + - asshole + - assholes + - astronomy + - atheism + - atheist + - athiest - athlete + - athletes - atifa - atmosphere - attempted robbery + - attitude - audio + - austerity - austraila + - australia - authoritarianism - authority - autobiography - autobiography punk + - automation - automobile fatalities + - automobiles - awards + - away + - away memes + - away tunes + - away. meme - awe - awesome + - b-boy + - b-boying - baby - baby paul cullen - back story - backstage - backyard + - backyard ramp - bacteria + - bad ass - bad food + - badass + - badge - bail out - balance - banking + - banks - banter - bart simpson - base junping - baseball Major League baseball + - basketball - basketball. sportsmanship - baskin robbins - bass @@ -2018,11 +1259,21 @@ params: - bbd - beach culture - beastie boys book + - beat box + - beats + - beauty - beetles + - behavior - being nice. + - beliefs - believe her - bernie + - bernie sanders - biases + - bible + - bicycle + - bicycles + - big boys - big brother - big brother politics. laws - big cities @@ -2032,78 +1283,113 @@ params: - bikinis - bill - bill Murray + - bill moyers - bill stevenson - bill withers - billy yeron - biography + - birds - birth + - birthday - birthday post - black bloc + - black culture - black friday - black history month + - black lives matter + - black nationalism - blaxploitation - blindness - blog - blondie + - blues - bo diddley + - boards - bob avakian - bob burnquist - bob hoskins - body - body count - boice + - boing boing - boingboing - bomb squad - bombing Hills + - bones brigade - book making + - book signing + - book stores - bookstore - bootlegs + - border - botany - bots - boxing - boy - boy in the bubble - boycots + - brain - brains + - bratmobile - brave new films - brazil + - break dancing - breaking + - brooklyn - brotherhood - buckminster fuller - buddha - bugging - bugs - bugs bunny + - bullshit - bummer + - burger - burger king - burial + - burning flags press - bush + - buzzcocks - c-span + - c. r. stecyk - c.r. stecyk lll - cable - cadillac wheels + - california - cambodia + - camera - camera phones + - campaign - camus + - cancer - canyon jump + - capitalism - capitalism advertising - captivity - car crash + - car culture - card - card against humanity - cards - career + - carl dix - carl reiner - carl sagan - carlsbad california - carnival + - carnivore - carol kaye - carpenter trade - carrots + - cars - cartoon soundtraks + - cartoons - caterpillar - celebrity + - cell phones + - censorship - center + - charity - charles Dickens - charles manson - charlie brown @@ -2112,28 +1398,51 @@ params: - cheap skates - check your head - chemicals + - cherry hill - chicago - child + - child abuse - child labor + - childhood - childhood idols + - children - children music - children story - chillaxing + - china + - chomsky - christian - christian hose + - christmas + - chuck dukowski - cigarettes - cinema + - cinematography + - circle jerks + - cities - citizens united - city government - city living + - civil disobedience + - civil liberties + - civil rights + - civilization - class + - classic + - classic battle rap + - classic music - classic rock + - classic vinyl - classsic - clemente + - climate + - climate change - climbing - close talker - closing + - clothing - cloud appreciation society + - clouds - clouds. recognize - cloudspotting - cnn @@ -2143,50 +1452,98 @@ params: - coincidence - cointelpro - coke + - cold + - cold war - coldwar - colin m day + - collaboration - collectables - collecting - college + - color - color. paint - columbia house - column - combo + - comedy + - comic books + - comics - coming of age + - coming out - commencement - comment + - commentary + - comments + - commercial + - commercials + - communication - communications + - communism - communist + - community - companions + - compassion - computer + - computers + - con - coney island + - confederate flag - confidence + - congress - conman + - consciousness + - conservative + - conservatives + - conspiracy + - conspiracy theories + - constitution - consumer society + - consumerism - consumers - contest - cookbook - cookie + - cool + - cool stuff + - copyright + - cornel west - corner air - corny - coronavirus + - corporate greed + - corporations + - corporatocracy - correspondents' dinner + - corruption - cover song - cow puss - cows + - cows milk - cowspiracy + - craft - craig stecyk - crass commercialism + - crazy legs - crazy shit - crd-mags + - creationism + - creative - creative commons + - creatives + - creativity + - criminals - cris dawson - criterion collection - criticism - crosswalks - crowds + - cruelty - cruelty free + - cuba - cults + - culture + - curiosity + - currency - current listening - current skating - curse words @@ -2196,18 +1553,26 @@ params: - daggers - dalai lama - damned + - dance - dance hall - dancing - danger + - dangerous Minds + - darby crash - dare devils. + - daredevils - dave markey - david bowie - david letterman - dayglo - dead + - dead kennedys - dead prez + - dean Delray - death by car + - death metal - death.mortality + - debate - debt - decent - decision making @@ -2215,27 +1580,41 @@ params: - def jam. beastie boys - defensive - deficit + - demo - demo tape + - democrats - demonstrations + - depression - descendants - desegregated - desperate - dessert + - detroit - development + - devil + - dez cadena - diapers - dick cavett + - dick clark + - diet - diet for a new america - digital life + - digital technology - dignity - diplomacy + - disaster - disaster Control - discharge + - dischord - dischord house + - dischord records - discipline - disco + - discussion - discussion. talk - disease - dishonesty + - disney - dissent - distractions - distress @@ -2243,25 +1622,36 @@ params: - distrust - divorce - do it yourself + - documentary - documentary photographs - documenting - documents - dog + - dog town - dog town the legend of the z-boys + - dogtown & Z-Boys - dominos - don't sit back - don'ts + - donald trump - doodle + - dope - doug E. Fresh - downhill + - downloading - doze - dr. seuss - drama - drawing + - dreams - drill sergeant - drinking - driverless + - driving + - drones - drought + - drugs + - duane peters - dumb people - dumbass - dumbing down @@ -2270,136 +1660,230 @@ params: - e-z listening - east village - echo + - ecology - economic inequality + - economics + - economy + - eddie elguera - editor - editorial + - education + - educational - educational film. film + - egypt + - election + - election 2016 + - elections - electoral college + - electric car - electric cars - electricty + - elizabeth warren - ellen oneil + - elvis costello - emancipation - emma goldman + - emo - emotions + - empathy - empire - employment - end of the world - endangered species + - energy - engineer - engineering - environnent + - equality - equity + - eric b. and rakim - eric garner - essay - esteem - etc. - ethic + - ethics - ethiopia + - etiquette - europe + - evel knievel + - event + - evil + - evolution - exercise + - exhibition - expanded editions - extinction - extra extra + - extreme + - extreme sports - eye sight + - eyes - face book + - factory farming - factory farms + - facts - faith + - fake - false news - false self + - fame - fan - far right - farm sanctuary - farming - farms + - fascism + - fascist + - fashion + - fast food - father - father and son + - faux news - faux science + - fear - feed + - feel the bern + - feminist + - ferguson - fertility - fife dawg - fifty cent - fight back + - fight ignorance + - film + - film making + - films - final level + - finance - fios outage + - fireworks - first amendment + - first world - fiscal cliff + - flag - flags - flat earth + - flight - flip - flooding + - flyers - flying - fog - folk + - folk music + - food - foot prints + - football - for the people - forced marriage - forgiveness - fort reno - fossils - foundation + - fox + - fox news + - fracking + - france - frank nasworthy - fraud - free speech censorship - freedom + - freedom of speech + - freedom of the press + - freestyle - friend - friendship + - fuck all conservatives - fuck dump - fuck the police - fuck these shitheads + - fuck you heroes - fucked - fugazi joe lally - fukushima - fulfillment + - fun + - fundamentalism - fundamentalists - funk master wizard wiz - funkadelic - funky + - funny + - future - future cars - game - game show + - gangs + - gangster + - garage - garbage - garbage. sugar - gardens - gary owens + - gay - gay pride in the city - gay rights + - gaza - gemany - gene research + - genetically modified - genetics + - genius - gentrification - geography - george carlin + - george clinton - george forman - george hurley - george lucas - george martin + - george orwell + - germany + - germs - gerrymandering - gift - gil scott-heron - giraffe + - girls - girls first - glasses + - glen E. Friedman - glen e. friedman book signing event - glove - gluttony - gnarly - go go music - go-go's + - god - god save the queen - god? + - godfather - godzilla + - golden era + - good - good use - goodfellas - goodwill + - google - google Doodle + - gopro - gordon willis - gossip + - government - government shutdown + - graffiti rock - gramercy - grand canyon + - grand master flash + - graphic + - graphic design + - graphics - graphs - gravity + - greed - greeting cards + - greg Ginn - greg sergeant - grief - groceries @@ -2407,21 +1891,33 @@ params: - group think - grown up - grown ups + - guitar - guitar army - gun law + - gun violence + - guns - guy fawkes - haa haa - habitat - hackers + - hall of fame + - halloween + - hank shocklee - happiness - happy birthday - happy holidays + - hard core - hard rock - hard times + - hardcore + - hardcore punk - harlem globetrotters - harley - hate - hawaii + - health + - health care + - healthcare - hearing - heat - heavens to betsy @@ -2432,25 +1928,48 @@ params: - herbivore - heroes - high school + - highways - hip + - hip hop - hip hope + - hip-hop + - hiphop - hippie culture + - history - hitchhiking + - hobby - hobie - hobo life - holLand + - holiday + - hollis - hollis queens + - hollywood + - home - home purchase + - homeless + - honda - hong kong + - honor - hop + - hope + - hot rods - housing - howard stern - human - human existence - human flying - human genealogy + - human interest + - human nature + - human rights + - humanitarian + - humanity + - humans + - humor - hungary - hungry + - hygiene - hype - hypocrisy - hysteria @@ -2460,99 +1979,183 @@ params: - ice - icon - icons + - idealisim + - idealism + - idealist + - ideas - ideology + - idiot + - idiots + - iggy + - iggy pop - ignoramus + - ignorance - ignorant - ikea + - ill - illuminati - illustration + - images - immigration - immune system - impeach - imperialism - impossible burger - improvement + - incarceration - incredible - independence day + - independent + - india - inductees 2019 - industrialized + - inebriated - inequality - infection - infographics + - information + - information commodity + - infrastructure + - injustice - inner ear + - innovation - innovator + - insane + - insanity + - insects + - inspiration - inspiring + - instagram - instagram GEF - instalation + - institutionalized - instrumental - instruments + - integrity - intellectual - intellectuals - intelligent life + - interesting - international + - internet + - introspection - investigation - investigative reporting + - investment - involvement + - iran + - iraq - irony - islam - islamophobia - israel + - it takes a nation of millions to hold us back - italia - italian + - italy - jacked + - james bond + - james brown - james cameron + - jaywalking + - jazz - jem cohen - jerry casle - jerry seinfeld + - jesus - jesus christ - jim hightower + - jimi hendrix - jingoism - job + - jobs - john carpenter + - john lennon + - john lydon + - john oliver - john oliver. Dalai Lama + - john stewart - john waters - johnny cotton + - jon stewart - joseph simmons - journalism - journey - judgement - junk food - junkyard band + - justice - justin timberlake - k-1000 + - karl marx - kate - kathleen Hanna - keith Norris + - keith morris + - kent sherwood - kent state + - kenter + - kids + - killer mike - killings - kindness - kite surfing + - kkk + - know your roots + - knowledge + - kodachrome - kodak - kool moe dee - la weekly - label + - labor + - lance Mountain - landscape + - language - lasers - last poets + - last week tonight - latin + - law + - law enforcement - leader + - leadership - learning + - lecture - left + - legendary + - lego - lesbian - lesson - lets lynch the landlord + - liar + - liberal - liberation + - lie + - lies + - life - life hack + - lifestyle + - light + - lightening + - lightning - lil nas x - liner notes + - linguistics - lion - lion vs wildebeest - listening + - literature - litter bug + - little league - little steven + - live music + - liverpool + - living - living space - local customs - logo + - logos - long form video - lonodon MY RULES - loom @@ -2560,24 +2163,42 @@ params: - looting - lords of dogtown - lorna doom + - los angeles - loser - louis C.K.. Hilary + - love - love letters - love police - lsayer + - luddites - lunar expeditions + - lying - lyle preslar + - lyrics - machines - madness + - magazine - magazines + - magic - making a difference + - malcolm McLaren + - malcolm x - malcom x - malfunction - malibu - man + - manchester - manipulation + - manners - mark anderson + - marriage + - martin luther king jr. + - martin sprouse + - marx + - marxism - mary poppins + - mash-up + - mash-up remixes - mashup - mass transit - master mix @@ -2586,12 +2207,21 @@ params: - maxine waters - mayor - mc + - mcdonalds - mean + - meaning + - meat + - media - medicade - medical debt + - medical science - medicare for all + - medicine - meditation + - memorial - memorial event + - memory + - mental health - mental illness - merch - merchandising @@ -2600,11 +2230,17 @@ params: - microbanking - microsoft - migrants + - mike watt - miles davis - militarization + - military + - military industrial complex + - milk - minds - mini-doc - minute earth + - minutemen + - misfits - misinformation - missing words - mission @@ -2617,80 +2253,127 @@ params: - modern art - modern society - modernbkating + - mods + - money - mongolia - monopoly + - monsanto - monty python + - moon + - morals - morons - mosquitos - mother jones - motor city - motorcycle - motorhead + - movie + - movie stars + - movies + - muhammad ali - muir + - murder - muscle + - museum - museum of natural history - museums + - music business - music culture + - music video - music. Eric garner - musicians + - my rules - myth - nadya riot + - names - naomi klein + - narcissist + - nas - nation - nation magazine - nation skate + - national geographic - national parks + - nationalism - native americans + - nature + - nazi - nazi fascists - nazi punks fuck off + - nazi trump fuck off - nazis - neftali williams - negro league - neil young - nelson mandela - neoliberal + - nerds + - net neutrality - network TV - new York Public Library - new alliance + - new book - new fly shit - new music - new school - new shit + - new wave - new works + - new year - new year. - newly expanded - newsmen - newspapers - next generation - nice guy + - night train - night vision - nightlife - nirvana - no fellings + - no guns - no snow - no-no a documentary + - noir - noise - noise pollution + - non-violence - norway - nostalgia - not a communist - not a socialist - not punk - nourishment + - novelty + - nuclear power + - nuclear testing - nuclear waste + - nuclear weapons - nude + - nukes + - nutrition + - obama - obamacare - obit + - occupy wall street - ocean life - october + - "off" - off meat - off the grid living - office - ohio + - oil - ol' dirty bastard + - old people + - old school - old tunes - oldest person alive + - oldschoool + - oliver stone - ollie + - olson + - olympics - op ed - op-doc - op-ed @@ -2698,8 +2381,10 @@ params: - opening day - opening titles - opera + - opinion - optimism - options + - organic - organizing - orson wells - oxford @@ -2711,9 +2396,12 @@ params: - paper airplane - paraplegic - pardon + - parenting - park - parkour + - parks - parliment + - parody - parody Ice-T - parties - party @@ -2724,12 +2412,18 @@ params: - patriotism - paul Mccartney - pauls boutique + - pbs + - peace - peace sign - peaceful protest + - peanuts - pedestrians - pedro Reyes + - pee wee herman + - pee-wee herman - pentagon - pentax + - people - people of profits - perceived democracy - perception @@ -2738,58 +2432,103 @@ params: - personal - personal grooming - personality + - perspective + - peta - petition + - peyote cody + - pharma - phenom - phife dawg + - philanthropy - philly + - philosophy - phones + - photo + - photo manipulation + - photograph + - photographs - photos - photozine + - physics - pimpin' ain't easy + - pin - pinball - pink - pipeline + - piracy + - pirates - piss - pitch fork - pitchfork + - pittsburgh pirates + - pizza + - pizzanista - plan - plane + - planet - planet earth + - planets + - plant based + - plant based diet - playlist + - plutocracy + - poet + - poetry - point loma - poison + - police + - police violence - policy + - politcs - polite - politeness + - political correctness - political philosophy - political science - political science / rule of law / separation of powers + - political theory + - politicians - politics. - politics. chomsky - poll + - pollution - pool riding + - pool skating - poor + - pop + - pop culture - pop life + - pop music - pope - popular photography - population - porn - portraits - portraiture + - poseur + - positive + - positive force - 'positive force: More than a witness' - post modern art - poster - posters - pov + - poverty + - powell peralta + - power - power pop - practical jokes - practice - prague + - prank - pranks - pregnancy - prejudice - premiere + - president + - presidential election - presidents + - press - press. pinocchio - prevention - pride @@ -2797,89 +2536,155 @@ params: - printing - prison - prison industrial complex + - privacy - privatization - pro sports - problems - producer - producer. - producing + - production - professional sports - progress + - progressive + - projection + - propaganda - prophets of rage + - protest - provocateur - psa - psychoanalysis + - psychology - public - public enemy. black panthers - public enemy. dock ellis + - public library - public parks - public safety - public service + - public spaces + - public transportation - publicity + - publishing + - puerto rico + - punk 1960's - punk hiphop - punk pop + - punk rock - pure self + - putin - q-tip - quarantine - queen - quest love + - r + - race + - racism - radiation - radical + - radicals + - radio - raiders of the lost ark - rain + - rakim allah - ramellzee + - ramones - ramp - ramp. + - ramps - random acts of kindness + - rant + - rap - rap battle + - rape + - rare - re-use - readers + - reading + - reagan - real - real change + - real estate - real talk - real time + - reality - reason + - rebel + - rebel culture - rebelión + - rebellion - recession + - recognize - record - record clubs - record release - record reviews + - recording + - recordings + - records + - recycle - recycling - red alert + - reggae - reggie watts - regulation - rehab - reissue - relationships - relgion + - religion + - ren and stimpy - repost + - republikkkan - republikkkans - res + - reservation + - resilience + - resistance + - respect + - responsibility - restaurants - retrospective + - reunion - revenge - revenge. poachers + - review - revolt - revolutionarie + - revolutionary - rhyme - rich - richard belzer - rick ross - right brigade + - right wing - rights of spring - riot + - riot grrrl + - riots + - rise above - rituals - roads + - robert DeNiro + - robert Reich - roberto + - roberto clemente + - robots + - rock + - rock 'n' roll - rock n roll + - rock n' roll - rock steady crew + - rock'N'roll - rock'n'o;; - rockNRoll. John Lennon + - rockNroll - rockabilly - rocking - rodney dangerfield + - roller coaster - roller skates + - rolling jubilee - rolling stones - royalty - rude @@ -2887,16 +2692,21 @@ params: - rudolph - ruins - rule of law + - run dmc - run_DMC - running + - russell simmons + - russia - russian - sHAME - sacrifice - sad - sadistic - sadness + - safety - sale - sample + - sampling - san diego - san francisco - sand @@ -2907,17 +2717,24 @@ params: - sassy - satan - satellite + - satire - satisfaction - satre - saturday morning - savant + - scandal - scared - scarface - scary + - school - school D + - school D. + - school house rock + - school of life - school of life monday - school shooting - schooling + - schools - science. academics - science. life. creepy - science. pain @@ -2926,89 +2743,148 @@ params: - scum - search engines - sec pistols + - security - sedition + - seinfeld + - self - self actualization - self awareness - self defense - self expression + - selfies - senior citizen - senseless violence + - separation of church and state - separation of powers - serenity - sesame street - seven deadly sins + - sex + - sex pistols - sexual orientation - sharks - shawn kerri - shell - shindig + - shit - shit animation + - shit head + - shithead + - shitpreme - shoes + - shogo kubo + - shopping - shopping carts + - short film - short fim - shovel - sick + - sight - signs - silent movie - silly - singalong - siri - sixties + - ska + - skate - skate and destroy - skate culture - skate rock + - skateBoarder imagine + - skateboarder magazine + - skateboarding + - skateboarding hall of fame + - skateboarding history + - skateboarding saves - skating - skiing - skills - sky diving + - slalom + - slayer + - sleep - sleep. tired of the bullshit - sleeper + - slick rick - slot car racing - smarts + - smog + - smoking - snake river - snob - snobbery + - snow - snow boarding - snow. powder + - snowboarding - social + - social Skills - social beings + - social commentary - social democrat + - social justice + - social media - social network + - social security + - socialism + - society + - sociology - soda + - solar power + - solar system - solution + - solutions + - soul + - sound - sound effects - soundtrack + - south africa - south bay - south central + - south park - soylent green - space travel - space x - spaces - spain - spanish + - speak out - speak up - speaking out + - special effects - special effects. mad max + - specials - speech + - spiderman + - spike lee + - spirituality - spoken word - sponsor - sport. law + - sports - spring - springa - sprorts - spying - squirrels + - stacy peralta - stadiums - stamps - stan lee - stand up - star trek + - star wars + - stars - starvation - 'state of the union #SOTU #FeelTheBern' - stedicam + - stephen colbert - stephen egerton - steve alba - steve caballero + - steve jobs + - steve olson - steven colbert - steven spielberg - stevie caballero @@ -3018,41 +2894,75 @@ params: - stone roses - stooges - storage + - stories + - storms - story + - straight edge - streams + - street art - street skating - streets + - strike debt + - student loans - student protests + - students - studio + - study - stunts - stupid + - stupidity + - style + - subculture + - subway - subway system - subways - success - suckers - suicidal - suicide + - summer - summer vacation continues - sun - sundance film festival + - sunday sermon - super 8 + - super heroes - super rich - supermarket + - superstition + - supreme court + - surf culture + - surfer - surfers journal + - surfing - surrealism + - surveillance - survival - survivor - sustainability + - sustainable living + - swearing - sweden - sweet - sweets + - swimming - symbol - symbols - synth + - syria + - t-shirt + - t-shirts - taking advantage + - target video - tavis smiley + - tax + - taxes - taxi driver + - tea party - teach + - tech + - techno + - technology - teenage - teenagers - telephone @@ -3060,20 +2970,33 @@ params: - temperature - temples - terrance malik + - terrorism - texting + - thanksgiving meme's + - the CRAMPS - the Matrix - the Monkees + - the Simpsons + - the Specials + - the Spiv - the Whisky - the beat + - the beatles - the bomb squad + - the clash - the cloud appreciation society + - the damned - the end is near + - the evens - the exorcist - the forms - the fuck you heroes - the gong + - the guardian + - the idealist - the last word - the meters + - the new york times - the normal - the president is responsible - the pudding @@ -3081,20 +3004,27 @@ params: - the ritz - the royals - the saints + - the scream - the selector + - the stooges - the unspeakable - the warriors - therapy - thief + - thieves - think tanks - thinkers + - this is america - thought + - thrasher - thrashin' skateboarding embarrassing moments - three finger ring - thrill seekers - thug life - tie - tigers + - time + - time lapse - times square - times they are a changin' - timothy leary @@ -3103,40 +3033,66 @@ params: - tipping - toasting - tokyo + - tom groholski + - tony alva + - tony hawk - tool - top gear - tornado + - tour - tourism - toxic + - toys - tracy marrow - trader joes - trading cards + - traffic - tragic - trailer - train - trains + - transportation + - treacherous three + - trees + - trends - trent reznor - tribecca film festival - tribute - trickle down + - tricks - triptych + - trivia - trolls + - trouble funk - trumps + - truth - truth and power - tulsa + - tupac Shakur + - turkey - turntables + - turntablism - tv party + - twitter - two party system + - two tone - txes - type + - tyranny - ultramagnetic MC's - unauthorized + - unions - united states + - united states of america + - universe - university - unknown + - unreleased - unsigned - upland - urban living + - us + - usa - usausausa - utopia - vacations @@ -3144,13 +3100,18 @@ params: - vagina - valentines day - value + - values - various - vatican + - vegan - vegan.organic + - vegetarian + - vegetation - vehicle - vehicles - velour - venezuela + - venice - venues - verizon - veteran @@ -3158,28 +3119,45 @@ params: - vid - video days - village Voice + - vintage - vintage film + - vinyl + - violence + - viral + - vision - vison - visual + - visual traveling - vocabulary - voice assistant - volkswagen + - vote + - voting - waiting room - walk of shame + - wall - wallstreet - walmart - wannabe + - war on drugs - war propaganda + - warfare - warm + - washington DC - washington square park + - waste - wasteland + - water - waterslide - watt on bass - watts - wave pool + - waves - we eat art + - wealth - weapon - weapons + - weather - website - well being - wellness @@ -3190,21 +3168,34 @@ params: - white boy - white castle - white nationalists + - wi-fi + - wikileaks + - wild life + - wild style - wildlife + - william f. buckley + - win - windows - winfsuit - wing suit - wingsuit + - winston Smith - winter + - wisdom - wise tale - woman - woman march + - women - womens + - womens rights + - wood - woodstock - woody guthrie - word - words + - work - work + capitalism status + - workers - world - world championships - world cup @@ -3214,24 +3205,37 @@ params: - world wars - worldwide - worry + - writing + - wrong + - wu-tang clan + - wugazi - ww2 - x-head + - x-mas - x-rated - x. punk. baseball. classics - xenophobia + - xmas + - yauch - yellow submarine - yesterday & Today + - yoko ono - you are not so smart - young - young music - young people + - youth - youth culture - youth first + - z-boy + - zephyr + - zephyr team - ziggy - zine reports + - © - ‘Anarchy in the UK’ relme: - https://www.blogger.com/profile/01146744056187558931: true + https://idealistpropaganda.blogspot.com/: true last_post_title: My exhibition is up in Paris July 20th-August 6th last_post_description: |- Merci and thank you to all that made the opening night in Paris. A great time and inspiration for all! @@ -3240,17 +3244,22 @@ params: last_post_date: "2023-07-28T13:25:00Z" last_post_link: https://idealistpropaganda.blogspot.com/2023/07/burning-flags-photo-exhibition-in-paris.html last_post_categories: [] + last_post_language: "" last_post_guid: bde146c265ff65e47c373b8a4bd83115 score_criteria: cats: 5 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-4bfd7f0b33fb1a74b01edda1f243f322.md b/content/discover/feed-4bfd7f0b33fb1a74b01edda1f243f322.md index 6ee039552..76996b4af 100644 --- a/content/discover/feed-4bfd7f0b33fb1a74b01edda1f243f322.md +++ b/content/discover/feed-4bfd7f0b33fb1a74b01edda1f243f322.md @@ -16,7 +16,7 @@ params: categories: - Arts relme: - https://podcasts.social/@neugierig_fm: false + https://neu-gierig.letscast.fm/: true last_post_title: Die menschliche Seite herauskehren – Sven Saro last_post_description: Sven Saro und ich tauschen uns öfter via Textnachricht oder Email aus. Nicht nur, weil unsere Interessen und die Neugier, die uns treibt sich @@ -24,17 +24,22 @@ params: last_post_date: "2023-12-28T13:30:00+01:00" last_post_link: https://neu-gierig.fm/podcast/die-menschliche-seite-herauskehren-sven-saro last_post_categories: [] + last_post_language: "" last_post_guid: f62e833ba00ecf20a24d53ada9cc0a43 score_criteria: cats: 1 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 10 + score: 15 ispodcast: true isnoarchive: false + innetwork: true + language: de --- diff --git a/content/discover/feed-4c0d9f01c90ffc1bfe4cd30e4109c873.md b/content/discover/feed-4c0d9f01c90ffc1bfe4cd30e4109c873.md new file mode 100644 index 000000000..12772a0ab --- /dev/null +++ b/content/discover/feed-4c0d9f01c90ffc1bfe4cd30e4109c873.md @@ -0,0 +1,48 @@ +--- +title: araujo's blog +date: "1970-01-01T00:00:00Z" +description: free from side-effects +params: + feedlink: https://araujoluis.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 4c0d9f01c90ffc1bfe4cd30e4109c873 + websites: + https://araujoluis.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - gentoo + - haskell + - himerge + - programing + relme: + https://araujoluis.blogspot.com/: true + https://www.blogger.com/profile/03804288532569108100: true + last_post_title: Himerge (and Haskell) out to the street! + last_post_description: Long ago I decided to help taking Haskell a bit more outside + of its own walls; I mean, it is not fair that Haskell applications and tools _only_ + have to be used by Haskell programmers (this is + last_post_date: "2008-08-17T02:17:00Z" + last_post_link: https://araujoluis.blogspot.com/2008/08/himerge-and-haskell-out-to-street.html + last_post_categories: + - haskell + last_post_language: "" + last_post_guid: 89812f33c10130b73dceee123f6bf892 + score_criteria: + cats: 4 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4c1077a8dc6956ef2d1a4550d26aa896.md b/content/discover/feed-4c1077a8dc6956ef2d1a4550d26aa896.md new file mode 100644 index 000000000..1ee11b14c --- /dev/null +++ b/content/discover/feed-4c1077a8dc6956ef2d1a4550d26aa896.md @@ -0,0 +1,137 @@ +--- +title: Friendly Area Code +date: "2024-03-08T12:50:30-08:00" +description: Well come to my blog here you will read all about area code and its prospects. +params: + feedlink: https://livmciver.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 4c1077a8dc6956ef2d1a4550d26aa896 + websites: + https://livmciver.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Street All Area Code + last_post_description: "" + last_post_date: "2022-01-06T09:52:57-08:00" + last_post_link: https://livmciver.blogspot.com/2022/01/street-all-area-code.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 63f99321ba926fb4afe566e1e52196d4 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4c2d0675102b4747d074678fb96b2671.md b/content/discover/feed-4c2d0675102b4747d074678fb96b2671.md new file mode 100644 index 000000000..91d46fb2b --- /dev/null +++ b/content/discover/feed-4c2d0675102b4747d074678fb96b2671.md @@ -0,0 +1,48 @@ +--- +title: コンピューターで Goofying +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://goofing-with-computer.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 4c2d0675102b4747d074678fb96b2671 + websites: + https://goofing-with-computer.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://goofing-and-tweaking.blogspot.com/: true + https://goofing-with-computer.blogspot.com/: true + https://goofying-with-debian.blogspot.com/: true + https://osamu-aoki.blogspot.com/: true + https://osamu-in-japan.blogspot.com/: true + https://www.blogger.com/profile/12377163704610747036: true + last_post_title: Banggoodでの購買経験メモ(3) + last_post_description: |- + はてさて、トラッキングがかかっていない時計キットは今日朝、郵便受けに入っていることに気づきました。 + + 驚いたのはその発送元がスエーデンで + last_post_date: "2015-07-25T05:51:00Z" + last_post_link: https://goofing-with-computer.blogspot.com/2015/07/banggood3.html + last_post_categories: [] + last_post_language: "" + last_post_guid: b96a9f826a6bd2a2275ea7aea4df8511 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4c2ec75970be30c745cc96060431d30b.md b/content/discover/feed-4c2ec75970be30c745cc96060431d30b.md deleted file mode 100644 index fef46733b..000000000 --- a/content/discover/feed-4c2ec75970be30c745cc96060431d30b.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Tom Morris -date: "1970-01-01T00:00:00Z" -description: Public posts from @tommorris@mastodon.social -params: - feedlink: https://mastodon.social/@tommorris.rss - feedtype: rss - feedid: 4c2ec75970be30c745cc96060431d30b - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4c4df02b3b74b2e67770b32acdfc6441.md b/content/discover/feed-4c4df02b3b74b2e67770b32acdfc6441.md deleted file mode 100644 index a404c2f2f..000000000 --- a/content/discover/feed-4c4df02b3b74b2e67770b32acdfc6441.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Bjorn Franke -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://www.bjornfranke.nl/feed/ - feedtype: rss - feedid: 4c4df02b3b74b2e67770b32acdfc6441 - websites: - https://www.bjornfranke.nl/: true - blogrolls: [] - recommended: [] - recommender: - - https://frankmeeuwsen.com/feed.xml - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4c69d3ab9a68394c3c1ca2a28371a13c.md b/content/discover/feed-4c69d3ab9a68394c3c1ca2a28371a13c.md deleted file mode 100644 index 3428fb726..000000000 --- a/content/discover/feed-4c69d3ab9a68394c3c1ca2a28371a13c.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Linear Blog -date: "1970-01-01T00:00:00Z" -description: Updates from the Linear team. -params: - feedlink: https://linear.app/rss/blog.xml - feedtype: rss - feedid: 4c69d3ab9a68394c3c1ca2a28371a13c - websites: - https://linear.app/blog: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: How we built multi-region support for Linear - last_post_description: Linear now supports hosting workspace data in Europe. In - this post, we outline why we decided to support multiple regions and how we tackled - the project. - last_post_date: "2024-05-23T14:14:06Z" - last_post_link: https://linear.app/blog/how-we-built-multi-region-support-for-linear - last_post_categories: [] - last_post_guid: 7e261d679efbc72a5f35a2b1bb5b71d9 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4c7c701d3c309dc1f5778efb6128310d.md b/content/discover/feed-4c7c701d3c309dc1f5778efb6128310d.md deleted file mode 100644 index 3adb2b3ee..000000000 --- a/content/discover/feed-4c7c701d3c309dc1f5778efb6128310d.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: tamaNOTchi -date: "1970-01-01T00:00:00Z" -description: Public posts from @tamaNOTchi@toot.melonland.net -params: - feedlink: https://toot.melonland.net/@tamaNOTchi.rss - feedtype: rss - feedid: 4c7c701d3c309dc1f5778efb6128310d - websites: - https://toot.melonland.net/@tamaNOTchi: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://tamanotchi.world/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4c9c7254adac057fbe80c76d30820393.md b/content/discover/feed-4c9c7254adac057fbe80c76d30820393.md deleted file mode 100644 index 51a7d7689..000000000 --- a/content/discover/feed-4c9c7254adac057fbe80c76d30820393.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: OpenStack – Hype Cycles -date: "1970-01-01T00:00:00Z" -description: Things that catch my eye; open source, photography, technology, and more -params: - feedlink: https://hypecycles.com/category/OpenStack/feed/ - feedtype: rss - feedid: 4c9c7254adac057fbe80c76d30820393 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - OpenStack - relme: {} - last_post_title: My presentation at OpenStack Summit in Sydney - last_post_description: Davanum Srinivas (dims) and I did a presentation at OpenStack - Summit in Sydney. The slides from the presentation are here. - last_post_date: "2017-11-08T05:26:45Z" - last_post_link: https://hypecycles.com/2017/11/08/my-presentation-at-openstack-summit-in-sydney/ - last_post_categories: - - OpenStack - last_post_guid: a6a5b82200b4aff042ac64b647a85d4c - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4c9eb35f7dd54f0fec965ad4ceff7ac0.md b/content/discover/feed-4c9eb35f7dd54f0fec965ad4ceff7ac0.md index 386fa8f4d..7e26d42da 100644 --- a/content/discover/feed-4c9eb35f7dd54f0fec965ad4ceff7ac0.md +++ b/content/discover/feed-4c9eb35f7dd54f0fec965ad4ceff7ac0.md @@ -14,7 +14,8 @@ params: categories: - Tech - python - relme: {} + relme: + https://www.jpichon.net/: true last_post_title: Extracting reviews from Goodreads into Markdown pages last_post_description: |- In early 2020, it became really difficult to read books. I'm slowly starting to @@ -25,17 +26,22 @@ params: last_post_categories: - Tech - python + last_post_language: "" last_post_guid: b444ec1335a6ac26f8c146bfa53f9cd5 score_criteria: cats: 0 description: 0 + feedlangs: 0 postcats: 2 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 7 + score: 12 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-4cae6a4f98c09dac6a7724fffd3c097f.md b/content/discover/feed-4cae6a4f98c09dac6a7724fffd3c097f.md deleted file mode 100644 index 00904e512..000000000 --- a/content/discover/feed-4cae6a4f98c09dac6a7724fffd3c097f.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: openstack – Head in the Clouds -date: "2014-09-25T09:53:18Z" -description: Just another WordPress.com site -params: - feedlink: https://ahsalkeld.wordpress.com/category/openstack/feed/atom/ - feedtype: atom - feedid: 4cae6a4f98c09dac6a7724fffd3c097f - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - openstack - relme: {} - last_post_title: Deap dive into using Heat Alarms - last_post_description: So this is just some output from me debugging how Heat’s - alarms work with the other parts of OpenStack (warts-n-all). First some histroy - Way back, Heat needed alarms to be able to do autoscaling - last_post_date: "2014-09-25T09:53:18Z" - last_post_link: https://ahsalkeld.wordpress.com/2014/09/25/deap-dive-into-using-heat-alarms/ - last_post_categories: - - openstack - last_post_guid: df6d89e34c8972a470c1830ef677269e - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4cd79a4462667bba18bd9a9b58672a17.md b/content/discover/feed-4cd79a4462667bba18bd9a9b58672a17.md deleted file mode 100644 index 3dd9e7c0a..000000000 --- a/content/discover/feed-4cd79a4462667bba18bd9a9b58672a17.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Graham Hayes -date: "1970-01-01T00:00:00Z" -description: Public posts from @graham@mastodon.ie -params: - feedlink: https://mastodon.ie/@graham.rss - feedtype: rss - feedid: 4cd79a4462667bba18bd9a9b58672a17 - websites: - https://mastodon.ie/@graham: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://gra.ham.ie/: true - https://graham.hayes.ie/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4d031172069e32a3dc833e561278a2de.md b/content/discover/feed-4d031172069e32a3dc833e561278a2de.md index fcbf3829e..cfe4b044f 100644 --- a/content/discover/feed-4d031172069e32a3dc833e561278a2de.md +++ b/content/discover/feed-4d031172069e32a3dc833e561278a2de.md @@ -1,6 +1,6 @@ --- title: Russell Davies -date: "2024-05-25T13:45:42+01:00" +date: "2024-07-01T20:59:05+01:00" description: |- Semi-retiring About | Feed | Archive | Findings @@ -19,24 +19,29 @@ params: - https://visitmy.website/feed.xml categories: [] relme: {} - last_post_title: Tumbling around in the back seat - last_post_description: 'Related and unrelated, as is the way of blogging. I''ve - been sitting on the harbour beach in Portree, reading this piece in the New Yorker - about Judith Butler. It starts like this: "In January, the' - last_post_date: "2024-05-25T13:45:42+01:00" - last_post_link: https://russelldavies.typepad.com/planning/2024/05/tumbling-around-in-the-back-seat.html + last_post_title: Imagined design + last_post_description: There are elevated pipe systems all over Berlin. The pipes + run alongside the streets and over the roads and look very industrial. For some + reason, something half-remembered or half- read, I became + last_post_date: "2024-07-01T20:59:05+01:00" + last_post_link: https://russelldavies.typepad.com/planning/2024/07/imagined-design.html last_post_categories: [] - last_post_guid: 94111290a23994bdfb117e78819e7688 + last_post_language: "" + last_post_guid: 712ab0f2bb8e8ad8d6730872f7501379 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 11 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-4d0a2fdd80131c12caaf56605986fc94.md b/content/discover/feed-4d0a2fdd80131c12caaf56605986fc94.md new file mode 100644 index 000000000..bce493b8b --- /dev/null +++ b/content/discover/feed-4d0a2fdd80131c12caaf56605986fc94.md @@ -0,0 +1,543 @@ +--- +title: TSDgeos' blog +date: "1970-01-01T00:00:00Z" +description: A blog about random things and sometimes about my work translating and + developing KDE and anything +params: + feedlink: https://tsdgeos.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 4d0a2fdd80131c12caaf56605986fc94 + websites: + https://tsdgeos.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - "15" + - "15.08" + - "16.08" + - "1984" + - "2009" + - "2010" + - "2011" + - "2012" + - "2014" + - 2nd bag + - 3g dongle + - "4.10" + - "4.11" + - "4.12" + - "4.13" + - "4.14" + - "4.3" + - "4.4" + - "4.6" + - 4.6.4 + - "4.7" + - "5.4" + - Adobe-Japan2 + - Apple + - Benq + - Bulgarian + - C++ + - C++11 + - CVE + - Denver + - FLOSS + - FP937s+ + - George Orwell + - Hebrew + - Hindi + - IRC + - Icelandic + - KDE Qt5 Patch Collection + - Kannada + - Libre Application Summit + - Maithili + - Messages.sh + - PS2 + - Q_FOREACH + - Qt Quick + - RArray + - RENFE + - RThread + - S60 + - STACK + - Symbian + - Translators + - Wallon + - XF86XK_TouchpadToggle + - Z10 + - active + - aditel + - adobe + - aer lingus + - ahtec + - airport + - akademy + - akademy-es + - akonadi + - alaska + - alignment + - amd 64 + - ampliware + - annotations + - apemit + - apn + - arc + - asan + - ateneatech + - ati + - ballot paper + - barcelona + - battery + - berlin + - berlios + - bilbao + - birthday + - blackberry + - blinken + - blog + - blogs + - board + - bomber + - book + - buenos presagios + - bug + - bugs.kde.org + - bugzilla + - build order + - caliu + - call for papers + - canon + - canonical + - capacity + - catalan + - cd + - certification + - changelog + - changelogs + - chm + - chmk + - chmlib + - clang + - closed source + - cmake + - cmap + - comment + - community + - compal + - conan + - consistency + - coruña + - cpu + - craigslist + - crash + - cryptography + - css + - cups + - ddrescue + - debian + - debugging + - decorations + - deprecated + - designer + - desktop summit + - devdays + - diagonal + - digikam + - dinner + - disambiguation + - donate + - donations + - driver + - drm + - dublin + - dvd + - eagain + - ebook-tools + - eclipse + - ecryptfs + - electronics + - email + - epub + - erase + - español + - etseib + - european union + - events + - evince + - extracomment + - fan + - fedora + - fglrx + - fib + - fiber + - firefox + - firmware + - flathub + - flatpak + - foreach + - fork + - format + - forms + - forum + - free software + - freenode + - freeze + - frisian + - fundraising + - fuzzing + - g++ + - games + - gardening + - gcc + - gcds + - gcompris + - gdb + - ggz + - ghostscript + - git + - git mr + - github + - gitlab + - gitorious + - gluon + - gnome + - go + - good omens + - gopher + - gpg + - gphoto + - gpl + - gpul + - gran canaria desktop summit + - graphics + - grep + - gs + - gsoc + - gtali + - gtk + - guadalinex + - gujarati + - gutsy + - hardy + - harmattan + - hd + - helgrind + - hp + - hplip + - html + - i18n + - iberia + - inheritance + - inkscape + - intel + - interlingua + - internationalization + - interview + - iparty + - iphone + - isp + - ixus + - ixus 850 + - jargon + - jaunty + - jointhegame + - jornadespl + - jpeg2000 + - junior job + - k3b + - kalzium + - kate + - kde + - kde 4 + - kde 4.0.0 + - kde 4.10 + - kde 4.14 + - kde 4.2 + - kde 4.7 + - kde 4.8 + - kde 4.9 + - kde applications + - kde españa + - kde frameworks + - kde gear + - kde sc + - kde-edu + - kde4 + - kdeblog + - kdeedu + - kdegames + - kdelibs + - kdemail + - kdm + - kernel + - keyboard + - kf5 + - kgeography + - khtml + - kile + - kio + - kiriki + - knetwalk + - kolourpaint + - konq-kubuntu.rc + - konqueror + - konsole + - konversation + - kparts + - kpdf + - kpovmodeler + - krecipes + - kreversi + - ktank + - ktouchpadenabler + - ktubering + - ktuberling + - kubuntu + - kwallet + - kwalleteditor + - l10n + - labtec + - laptop + - lcms + - lfs + - libdvdcss + - libgs + - libraries + - libre software world conference + - libspectre + - life + - linex + - linux + - linux from scratch + - linux magazine + - lists + - lswc + - lts + - madrid + - maemo + - maemon + - mailing list + - malaga + - mandriva + - manifesto + - mechanics + - meego + - meego conference + - mercè molist + - merge + - milan + - miraveo + - modern art + - monitor + - move semantics + - mozilla + - multimania + - multitouch + - munich + - municipal elections + - n9 + - n900 + - n950 + - neil gaiman + - networkmanager + - nokia + - nuremberg + - okular + - onboarding + - openc++ + - openjpeg + - opensource + - opensuse + - oss-fuzz + - ossbarcamp + - oxford university press + - pam + - paris + - patches + - pdf + - pdftk + - pdftotext + - perl + - phabricator + - php + - picasa + - planet + - plasma + - pledgie + - plugins + - policy + - politics + - poll + - pompidou + - poppler + - poppler-data + - postcards + - postscript + - print + - printing + - prison break + - promo + - ps + - psc 1610 + - pthread + - qca + - qdeepcopy + - qfile + - qgraphicsitem + - qgraphicsscene + - qgraphicsview + - qimage + - qjsvalue + - qml + - qmllint + - qt + - qt3support + - qt4 + - qt4 dance + - qtcs + - qtest + - qvariant + - r300 + - r3v + - radeon + - randa + - raster + - release + - release party + - release schedule + - release team + - relicensing + - remote + - renault + - results + - reviewboard + - rgb32 + - rsibreak + - ryanair + - save + - scam + - schedule + - scribus + - search engines + - security + - segovia + - signal + - signatures + - sjfonts + - slides + - soc + - software freedom day + - solid + - spain + - spanish + - specs + - speed + - sprint + - square trade + - stable + - step + - streaming + - strigi + - strikeout + - stringstream + - subversion + - supporting member + - survey + - suse + - svg + - svn + - swindle + - system settings + - talk + - talks + - tampere + - taxipilot + - temperature + - termens + - terminal 2 + - terry pratchett + - text selection + - theme + - thread + - tiff + - tiled rendering + - top 10 + - touch + - touch screen + - touchpad + - toursim + - trambaix + - translate + - translation + - tui + - turing + - ubuntu + - ufocoders + - unicode + - unit testing + - universal + - upc + - valencia + - valgrind + - video + - videos + - viena + - vienna + - viewer + - vigo + - virtuoso + - vlc + - volunteer + - warning + - warranty + - wcgrep + - web + - web developer + - web shortcuts + - website + - windows + - wish + - workshop + - x11 + - xinput + - xml + - xpdfrc + - xps + - ya.com + - yahtzee + - zaragoza + relme: + https://blinkenharmattan.blogspot.com/: true + https://flagsquiz.blogspot.com/: true + https://tsdgeos-es.blogspot.com/: true + https://tsdgeos.blogspot.com/: true + https://www.blogger.com/profile/12001470108926138921: true + last_post_title: KDE Gear 24.08 release schedule + last_post_description: This is the release schedule the release team agreed on  + https://community.kde.org/Schedules/KDE_Gear_24.08_ScheduleDependency freeze is + in around 4 weeks (July 18) and feature freeze one after that + last_post_date: "2024-06-14T17:38:00Z" + last_post_link: https://tsdgeos.blogspot.com/2024/06/kde-gear-2408-release-schedule.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 8a3fafa2f742b769650997f7ba56cafd + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4d1fa86c540dae00423b84f98c0439f3.md b/content/discover/feed-4d1fa86c540dae00423b84f98c0439f3.md new file mode 100644 index 000000000..b758baeb3 --- /dev/null +++ b/content/discover/feed-4d1fa86c540dae00423b84f98c0439f3.md @@ -0,0 +1,143 @@ +--- +title: SnapChats Setting +date: "1970-01-01T00:00:00Z" +description: SnapChat and its setting both are difficult to know +params: + feedlink: https://miawb.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 4d1fa86c540dae00423b84f98c0439f3 + websites: + https://miawb.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Change the Setting of snap chat + - pools of Angels + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Angel on Pool + last_post_description: |- + Seeing the holy angel number 333 is a specific event. It + might seem like just an incident, however many individuals see it frequently, + and it has a wide range of implications. Beneath, we take a + last_post_date: "2021-11-13T13:52:00Z" + last_post_link: https://miawb.blogspot.com/2021/11/angel-on-pool.html + last_post_categories: + - pools of Angels + last_post_language: "" + last_post_guid: b000093e18c502ae4ed4b327106ab2e5 + score_criteria: + cats: 2 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4d423a17c398ba7b7c097812228069b6.md b/content/discover/feed-4d423a17c398ba7b7c097812228069b6.md deleted file mode 100644 index fb53778fb..000000000 --- a/content/discover/feed-4d423a17c398ba7b7c097812228069b6.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Rob Hirschfeld -date: "1970-01-01T00:00:00Z" -description: Public posts from @zehicle@hachyderm.io -params: - feedlink: https://hachyderm.io/@zehicle.rss - feedtype: rss - feedid: 4d423a17c398ba7b7c097812228069b6 - websites: - https://hachyderm.io/@zehicle: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://rackn.com/: false - https://robhirschfeld.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4d44f3af5405fef1e9298b0d605634ba.md b/content/discover/feed-4d44f3af5405fef1e9298b0d605634ba.md new file mode 100644 index 000000000..18492f506 --- /dev/null +++ b/content/discover/feed-4d44f3af5405fef1e9298b0d605634ba.md @@ -0,0 +1,43 @@ +--- +title: Performance Improvements for the Graph Module of Sagemath +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://borassisagemath.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 4d44f3af5405fef1e9298b0d605634ba + websites: + https://borassisagemath.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://borassisagemath.blogspot.com/: true + https://www.blogger.com/profile/18314533837023556703: true + last_post_title: Conclusion of the Main Part of the Project + last_post_description: |- + Hi! + In this post, I will summarize the results obtained with the inclusion in Sage of Boost and igraph libraries. This was the main part of my Google Summer of Code project, and it was completed + last_post_date: "2015-08-16T13:59:00Z" + last_post_link: https://borassisagemath.blogspot.com/2015/08/conclusion-of-main-part-of-project.html + last_post_categories: [] + last_post_language: "" + last_post_guid: c004cd68e36209a7241d9fb956116d9c + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4d5421bd3b8dc88fb569b2aeabeed022.md b/content/discover/feed-4d5421bd3b8dc88fb569b2aeabeed022.md new file mode 100644 index 000000000..9ef29d7d3 --- /dev/null +++ b/content/discover/feed-4d5421bd3b8dc88fb569b2aeabeed022.md @@ -0,0 +1,46 @@ +--- +title: When I Visited a Baptist Church +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://whenivisitedabaptistchurch.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 4d5421bd3b8dc88fb569b2aeabeed022 + websites: + https://whenivisitedabaptistchurch.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://adventuresofamathphd.blogspot.com/: true + https://extendingmatroidfunctionality.blogspot.com/: true + https://taraadrift.blogspot.com/: true + https://whenivisitedabaptistchurch.blogspot.com/: true + https://www.blogger.com/profile/03187790486376807341: true + last_post_title: Day One + last_post_description: I used to work doing Home Health Care. Often, on my way to + work, I would drive by a Baptist Church. I had never visited a Church other than + my own. So one day as I was going to work, I decided to + last_post_date: "2013-10-28T04:18:00Z" + last_post_link: https://whenivisitedabaptistchurch.blogspot.com/2013/10/day-one.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 4c1fda11a531b689f076862bfabf4418 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4d5ce4e93a36af8595bac69bedf46309.md b/content/discover/feed-4d5ce4e93a36af8595bac69bedf46309.md new file mode 100644 index 000000000..705ab95ab --- /dev/null +++ b/content/discover/feed-4d5ce4e93a36af8595bac69bedf46309.md @@ -0,0 +1,41 @@ +--- +title: ANy's Argument +date: "2024-03-05T16:06:14+01:00" +description: Weblog by Alexander Nyßen +params: + feedlink: https://nyssen.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 4d5ce4e93a36af8595bac69bedf46309 + websites: + https://nyssen.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://nyssen.blogspot.com/: true + https://www.blogger.com/profile/10639254413012056611: true + last_post_title: GEF4 + 1 = GEF 5 + last_post_description: "" + last_post_date: "2017-02-09T18:13:04+01:00" + last_post_link: https://nyssen.blogspot.com/2017/02/gef4-1-gef-5.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 2a681300d1a7a41c5a2c3cf4a5152a98 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4d6f67d55e9ce64fc9fdfa68ebf5dda0.md b/content/discover/feed-4d6f67d55e9ce64fc9fdfa68ebf5dda0.md index 54bbebaa7..4d8952f12 100644 --- a/content/discover/feed-4d6f67d55e9ce64fc9fdfa68ebf5dda0.md +++ b/content/discover/feed-4d6f67d55e9ce64fc9fdfa68ebf5dda0.md @@ -33,36 +33,39 @@ params: - https://www.michalzelazny.com/feed/ - https://blog.numericcitizen.me/podcast.xml - https://excited-pixels.com/comments/feed/ - - https://www.manton.org/podcast.xml - https://manuelmoreale.com/feed/instagram - - https://mastodon.social/tags/mjtsaiupdate.rss - - https://mjtsai.com/blog/comments/feed/ - https://om.co/comments/feed/ - https://www.feedio.co/@thenewsprint/feed - https://www.curtisfamily.org.uk/comments/feed/ + - https://www.michalzelazny.com/feed recommender: [] categories: - Technology relme: - https://micro.blog/numericcitizen: false - last_post_title: First Narrated Blog Post Experiment - last_post_description: 'Hi everyone. I might be late to the party, but I finally - sat down for a few minutes to test Micro.blog’s new feature: narrated blog posts. - It is strange because this is my first use and I cannot' - last_post_date: "2024-06-02T14:50:13-04:00" - last_post_link: https://blog.numericcitizen.me/2024/06/02/first-narrated-blog.html + https://blog.numericcitizen.me/: true + last_post_title: Pondering + last_post_description: In a week, I’ll be preparing to fly to Croatia for a three-week + vacation with my wife. I’m still considering several aspects of the trip. How + much blogging should I do during this time? Should I + last_post_date: "2024-06-15T23:18:04+02:00" + last_post_link: https://blog.numericcitizen.me/2024/06/15/ponedring.html last_post_categories: [] - last_post_guid: 5a37ef00a8716b91cb71b3bf461194c5 + last_post_language: "" + last_post_guid: 2345c068e7a7f92ba090c422f0cf5d20 score_criteria: cats: 1 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 10 - relme: 1 + relme: 2 title: 3 website: 2 - score: 20 + score: 25 ispodcast: true isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-4d70324f3296d7317005d530f13f774e.md b/content/discover/feed-4d70324f3296d7317005d530f13f774e.md new file mode 100644 index 000000000..bf99b383e --- /dev/null +++ b/content/discover/feed-4d70324f3296d7317005d530f13f774e.md @@ -0,0 +1,42 @@ +--- +title: Nibble Stew +date: "2024-07-08T23:12:54+03:00" +description: A gathering of development thoughts of Jussi Pakkanen. Some of you may + know him as the creator of the Meson build system. jpakkane at gmail dot com +params: + feedlink: https://nibblestew.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 4d70324f3296d7317005d530f13f774e + websites: + https://nibblestew.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://draft.blogger.com/profile/03370287682352908292: true + https://nibblestew.blogspot.com/: true + last_post_title: Advanced text features and PDF + last_post_description: "" + last_post_date: "2024-06-24T20:35:14+03:00" + last_post_link: https://nibblestew.blogspot.com/2024/06/advanced-text-features-and-pdf.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 67881d85bbb1aef5a0331d362b01a161 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4d74689d08f1a3da595b21387679bf10.md b/content/discover/feed-4d74689d08f1a3da595b21387679bf10.md new file mode 100644 index 000000000..b4f2f6448 --- /dev/null +++ b/content/discover/feed-4d74689d08f1a3da595b21387679bf10.md @@ -0,0 +1,41 @@ +--- +title: Jeff Zych's Internet Nook +date: "2024-04-12T16:45:00Z" +description: Jeff is a product design leader, coder, writer, and letterer. He writes + about design, books, technology, creativity, and any other topics that interest + him. +params: + feedlink: https://jlzych.com/feed.xml + feedtype: atom + feedid: 4d74689d08f1a3da595b21387679bf10 + websites: {} + blogrolls: [] + recommended: [] + recommender: + - https://visitmy.website/feed.xml + categories: [] + relme: {} + last_post_title: Don’t let a linear design process snuff out your sparks of inspiration + last_post_description: "" + last_post_date: "2024-04-12T16:45:00Z" + last_post_link: http://jlzych.com/2024/04/12/don-t-let-a-linear-design-process-snuff-out-your-sparks-of-inspiration/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 12b13b7a3719aaa61802edd3dcc90f75 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 0 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4d88ab5d7bd3074727a1dc1c7d6abbd6.md b/content/discover/feed-4d88ab5d7bd3074727a1dc1c7d6abbd6.md new file mode 100644 index 000000000..d37603d47 --- /dev/null +++ b/content/discover/feed-4d88ab5d7bd3074727a1dc1c7d6abbd6.md @@ -0,0 +1,125 @@ +--- +title: Routine Revelations +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://frankmcpherson.blog/feed.xml + feedtype: rss + feedid: 4d88ab5d7bd3074727a1dc1c7d6abbd6 + websites: + https://frankmcpherson.blog/: true + blogrolls: + - https://frankmcpherson.blog/.well-known/recommendations.opml + recommended: + - http://scripting.com/rss.xml + - https://andysylvester.com/feed/ + - https://bicycleforyourmind.com/feed.rss + - https://blogs.harvard.edu/doc/feed/ + - https://boffosocko.com/feed/ + - https://buzzmachine.com/feed/ + - https://crookedtimber.org/feed/ + - https://feeds.feedburner.com/BrazenCareerist + - https://feeds.feedburner.com/NicholasBate + - https://feeds.kottke.org/main + - https://feeds.scottlowe.org/slowe/content/feed/ + - https://frankmcpherson.blog/feed.xml + - https://freedom-to-tinker.com/feed/ + - https://intellectualoid.com/feed/ + - https://jabberwocking.com/feed/ + - https://jvns.ca/atom.xml + - https://kimberlyhirsh.com/feed/ + - https://ma.tt/feed/ + - https://memex.naughtons.org/feed + - https://mitchw.blog/feed.xml + - https://om.co/feed/ + - https://pluralistic.net/feed/ + - https://prologuist.blogspot.com/rss.xml + - https://taoofmac.com/feed + - https://www.baty.net/index.xml + - https://www.jeffgeerling.com/blog.xml + - https://www.manton.org/feed + - https://www.stonekettle.com/feeds/posts/default + - https://andysylvester.com/comments/feed/ + - https://baty.net/feed + - https://blog.penelopetrunk.com/comments/feed/ + - https://blog.penelopetrunk.com/feed/ + - https://blog.scottlowe.org/feed.xml + - https://boffosocko.com/category/mathematics/feed/ + - https://boffosocko.com/category/microcast/feed/ + - https://boffosocko.com/category/podcast/feed/ + - https://boffosocko.com/category/science/information-theory/feed/ + - https://boffosocko.com/comments/feed/ + - https://boffosocko.com/home/feed/ + - https://boffosocko.com/instagram.xml + - https://boffosocko.com/kind/annotation/feed/ + - https://boffosocko.com/kind/article/feed/ + - https://boffosocko.com/kind/bookmark/feed/ + - https://boffosocko.com/kind/checkin/feed/ + - https://boffosocko.com/kind/eat,drink/feed/ + - https://boffosocko.com/kind/favorite/feed/ + - https://boffosocko.com/kind/follow/feed/ + - https://boffosocko.com/kind/issue/feed/ + - https://boffosocko.com/kind/jam/feed/ + - https://boffosocko.com/kind/like/feed/ + - https://boffosocko.com/kind/listen/feed/ + - https://boffosocko.com/kind/note/feed/ + - https://boffosocko.com/kind/photo/feed/ + - https://boffosocko.com/kind/reply/feed/ + - https://boffosocko.com/kind/repost/feed/ + - https://boffosocko.com/kind/rsvp/feed/ + - https://boffosocko.com/kind/watch/feed/ + - https://boffosocko.com/kind/wish/feed/ + - https://boffosocko.com/linkblog.xml + - https://boffosocko.com/microblog.xml + - https://boffosocko.com/read.xml + - https://granary-demo.appspot.com/url?hub=https%3A//bridgy-fed.superfeedr.com/&input=html&output=atom&url=http%3A//www.boffosocko.com/blog/ + - https://stream.boffosocko.com/content/all?_t=rss + - https://doc.searls.com/comments/feed/ + - https://doc.searls.com/feed/ + - https://freedom-to-tinker.com/comments/feed/ + - https://intellectualoid.com/comments/feed/ + - https://jabberwocking.com/comments/feed/ + - https://kimberlyhirsh.com/feed.xml + - https://kimberlyhirsh.com/podcast.xml + - https://ma.tt/comments/feed/ + - https://memex.naughtons.org/comments/feed/ + - https://memex.naughtons.org/feed/ + - https://om.co/comments/feed/ + - https://pluralistic.net/comments/feed/ + - https://prologuist.blogspot.com/feeds/posts/default + - https://prologuist.blogspot.com/feeds/posts/default?alt=rss + - https://taoofmac.com/atom.xml + - https://www.manton.org/feed.xml + - https://www.manton.org/podcast.xml + - https://www.stonekettle.com/feeds/posts/default?alt=rss + recommender: + - https://frankmcpherson.blog/feed.xml + categories: [] + relme: + https://frankmcpherson.blog/: true + last_post_title: A People's AI + last_post_description: Over the last year we’ve seen Microsoft, Google, and now + Apple demonstrate what they are doing with AI. As a somewhat casual observer, + it seems to me all of these announcements fall in what I will + last_post_date: "2024-06-13T10:24:37-04:00" + last_post_link: https://frankmcpherson.blog/2024/06/13/a-peoples-ai.html + last_post_categories: [] + last_post_language: "" + last_post_guid: e0b3515e8d7996b1ac52c9b79c4bae49 + score_criteria: + cats: 0 + description: 0 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 10 + relme: 2 + title: 3 + website: 2 + score: 26 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-4d92032ff4cfacc31e62d66129f5dbb6.md b/content/discover/feed-4d92032ff4cfacc31e62d66129f5dbb6.md deleted file mode 100644 index 97e2371af..000000000 --- a/content/discover/feed-4d92032ff4cfacc31e62d66129f5dbb6.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Scott H Young -date: "1970-01-01T00:00:00Z" -description: Learn faster, achieve more -params: - feedlink: https://www.scotthyoung.com/blog/feed/ - feedtype: rss - feedid: 4d92032ff4cfacc31e62d66129f5dbb6 - websites: - https://www.scotthyoung.com/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - General - relme: {} - last_post_title: Talking About Getting Better - last_post_description: |- - Some of my recent podcast appearances discussing Get Better at Anything. - The post Talking About Getting Better appeared first on Scott H Young. - last_post_date: "2024-05-28T16:31:22Z" - last_post_link: https://www.scotthyoung.com/blog/2024/05/28/talking-about-getting-better/ - last_post_categories: - - General - last_post_guid: 7c707878463b8a7359e098544b0b8611 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4dbada09ad558c3633e44af47a428e65.md b/content/discover/feed-4dbada09ad558c3633e44af47a428e65.md index 8d91be23f..774d45ca4 100644 --- a/content/discover/feed-4dbada09ad558c3633e44af47a428e65.md +++ b/content/discover/feed-4dbada09ad558c3633e44af47a428e65.md @@ -1,6 +1,6 @@ --- title: Peter Rukavina's Weblog -date: "2024-06-03T15:37:50-03:00" +date: "2024-07-08T10:46:30-03:00" description: The personal weblog of Peter Rukavina, a Charlottetown, Prince Edward Island, Canada-based printer, writer and developer. params: @@ -16,36 +16,33 @@ params: categories: - Society & Culture relme: - https://drupal.org/user/17600: false https://github.com/reinvented/: true - https://orcid.org/0000-0002-7690-4909: false https://ruk.ca/: true - https://speakerdeck.com/reinvented: false - https://vimeo.com/ruk: false - https://wiki.ruk.ca/: false - https://www.youtube.com/reinvented: false - last_post_title: Shipping Offcut - last_post_description: |- - Thank you to everyone who ordered Offcut notebooks: they sold out in three days. - - Here’s a stack of envelopes ready for posting to Charlottetown, Stratford, Halifax, Toronto, Calgary, and The - last_post_date: "2024-06-03T15:37:50-03:00" - last_post_link: https://ruk.ca/content/shipping-offcut + last_post_title: The Serrazzano Box + last_post_description: Over on the This Box is for Good site, I just posted a detailed + description of the box we designed and printed in Serrazzano, Italy in late April. + last_post_date: "2024-07-08T10:46:30-03:00" + last_post_link: https://ruk.ca/content/serrazzano-box last_post_categories: - - Notebook - - Offcut - - Shopping - last_post_guid: e495363c8ce6a06ebe45deda3739de57 + - Italy + - Serrazzano + - This Box is for Good + last_post_language: "" + last_post_guid: d51257dd5ba040676260ad493869728f score_criteria: cats: 1 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 19 + score: 23 ispodcast: true isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-4dc1db683d9ca9c609e12295898c78b8.md b/content/discover/feed-4dc1db683d9ca9c609e12295898c78b8.md deleted file mode 100644 index 3a359a5f8..000000000 --- a/content/discover/feed-4dc1db683d9ca9c609e12295898c78b8.md +++ /dev/null @@ -1,142 +0,0 @@ ---- -title: Davidlohr Bueso -date: "2024-03-28T19:30:44-07:00" -description: "" -params: - feedlink: https://www.blogger.com/feeds/5789291509148224079/posts/default?redirect=false - feedtype: atom - feedid: 4dc1db683d9ca9c609e12295898c78b8 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - foss.in - - translations - - v4.14 - - barriers - - partx - - books - - limits - - prlimit - - lpc - - ulimit - - caching - - gpt - - research - - master boot record - - partition tables - - virtualization - - userspace mutexes - - v4.20 - - futex - - memory model - - block devices - - mmu - - caches - - SMP - - kernel - - v4.19 - - store release - - util-linux - - dos - - hash tables - - memory management - - C programming - - assembler - - systems - - disks - - v4.18 - - conference - - trinity - - VMX - - efi - - locks - - shadow pages - - stressing software - - development - - architecture - - processor - - v5.2 - - operating systems - - lslocks - - concurrency - - fdisk - - linux inode filename filesystem symlinks - - critique - - data structures - - cpuid - - numa - - v5.1 - - kvm - - resources - - performance - - labels - - google summer of code - - target fuzzing - - algorithms - - tags - - lslk - - load acquire - - unix - - cpu - - v5.0 - - contention - - fuzzy testing - - linux kernel - - v4.17 - - synchronization - - plumbers - - cxl - - process - - Intel - - v4.16 - - compute express link - - hardware - - scalability - - security - - linux - - performance-goodies - - computer science - - associateve - - tasks - - ept - - memory - - TLB - - sun - - attributes - - paging - - LPC 2015 - - x86 - - mbr - - system call - - auditing - - v4.15 - - india - relme: {} - last_post_title: 'LPC 2023: CXL Microconference' - last_post_description: "" - last_post_date: "2023-12-01T11:14:50-08:00" - last_post_link: https://blog.stgolabs.net/2023/12/lpc-2023-cxl-microconference.html - last_post_categories: - - linux - - compute express link - - plumbers - - kernel - - memory - - cxl - - lpc - last_post_guid: 9296f634ee4c383fc1a83075968b1717 - score_criteria: - cats: 5 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4dc3eba3f21f0601a942bf1c3fe276b1.md b/content/discover/feed-4dc3eba3f21f0601a942bf1c3fe276b1.md deleted file mode 100644 index 1cf049dbb..000000000 --- a/content/discover/feed-4dc3eba3f21f0601a942bf1c3fe276b1.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: Within WordPress with Remkus -date: "1970-01-01T00:00:00Z" -description: A podcast featuring interview with folks active in the WordPress Community - on the whole, but with a special focus on performance every now and then. -params: - feedlink: https://remkusdevries.com/feed/podcast/all - feedtype: rss - feedid: 4dc3eba3f21f0601a942bf1c3fe276b1 - websites: - https://remkusdevries.com/within-wordpress/all/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Technology - relme: - https://instagram.com/remkusdevries: false - https://profiles.wordpress.org/DeFries: false - https://remkusdevries.com/about/: false - https://social.devries.frl/@remkus: false - https://twitter.com/remkusdevries: false - https://www.linkedin.com/in/jrdevries: false - https://www.youtube.com/@remkusdevries: false - last_post_title: 'Inside WordPress Security: Conversations with security veteran - Tom Raef' - last_post_description: This comprehensive conversation delves into the world of - WordPress security through the lens of Tom Raef, a seasoned security expert with - a history dating back to the inception of personal computing. - last_post_date: "2024-05-03T11:59:45Z" - last_post_link: https://remkusdevries.com/podcast/inside-wordpress-security-conversations-with-security-veteran-tom-raef/ - last_post_categories: [] - last_post_guid: 8e6fa1c41ceebb2b7f8bb9ade8d5277c - score_criteria: - cats: 1 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 10 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-4dc905707ad8a284be9911c886cd46bf.md b/content/discover/feed-4dc905707ad8a284be9911c886cd46bf.md deleted file mode 100644 index 4b7a4e5fb..000000000 --- a/content/discover/feed-4dc905707ad8a284be9911c886cd46bf.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: IETF DNSOP WG -date: "1970-01-01T00:00:00Z" -description: Public posts from @ietf_wg_dnsop@hachyderm.io -params: - feedlink: https://hachyderm.io/@ietf_wg_dnsop.rss - feedtype: rss - feedid: 4dc905707ad8a284be9911c886cd46bf - websites: - https://hachyderm.io/@ietf_wg_dnsop: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/approved/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4ddb8cef30aa4e7a56c78186a323b77b.md b/content/discover/feed-4ddb8cef30aa4e7a56c78186a323b77b.md deleted file mode 100644 index 5fbb18514..000000000 --- a/content/discover/feed-4ddb8cef30aa4e7a56c78186a323b77b.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: '@marcthiele.bsky.social - Marc Thiele' -date: "1970-01-01T00:00:00Z" -description: Founder/organiser of beyond tellerrand . Co-Founder of Smashing Conference. -params: - feedlink: https://bsky.app/profile/did:plc:54psnzd24pxw6lij3pxthrpn/rss - feedtype: rss - feedid: 4ddb8cef30aa4e7a56c78186a323b77b - websites: - https://bsky.app/profile/marcthiele.bsky.social: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4de330330361c334d865b5f85d44557f.md b/content/discover/feed-4de330330361c334d865b5f85d44557f.md index aaaf3a10e..d7fea3151 100644 --- a/content/discover/feed-4de330330361c334d865b5f85d44557f.md +++ b/content/discover/feed-4de330330361c334d865b5f85d44557f.md @@ -11,34 +11,34 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: [] relme: {} - last_post_title: Saturday Morning Breakfast Cereal - Backstory - last_post_description: 'Click here to go see the bonus panel!Hovertext:Right before - you kill Hitler in Wolfenstein, you get a 60 hour biography, which deeply enhances - the experience.Today''s News:' - last_post_date: "2024-06-03T13:55:03-04:00" - last_post_link: https://www.smbc-comics.com/comic/backstory + last_post_title: Saturday Morning Breakfast Cereal - Like that + last_post_description: Click here to go see the bonus panel!Hovertext:Trying to + write more realistic dialog these days. + last_post_date: "2024-07-08T14:06:21-04:00" + last_post_link: https://www.smbc-comics.com/comic/like-that last_post_categories: [] - last_post_guid: 13251c108e4cbd6ef9df6686a1571f22 + last_post_language: "" + last_post_guid: 271fc7a4bc6eec0d18bc80416219ef2d score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-4de5ede8efd35d010b46465e3a6d692b.md b/content/discover/feed-4de5ede8efd35d010b46465e3a6d692b.md deleted file mode 100644 index 4473d8037..000000000 --- a/content/discover/feed-4de5ede8efd35d010b46465e3a6d692b.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Sara Hendren -date: "1970-01-01T00:00:00Z" -description: design researcher, writer, artist, professor at northeastern university -params: - feedlink: https://ablerism.micro.blog/podcast.xml - feedtype: rss - feedid: 4de5ede8efd35d010b46465e3a6d692b - websites: - https://ablerism.micro.blog/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Society & Culture - relme: - https://micro.blog/ablerism: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 1 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 10 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-4e17463556e19d4c8bd66f3450e50846.md b/content/discover/feed-4e17463556e19d4c8bd66f3450e50846.md new file mode 100644 index 000000000..6577c93d4 --- /dev/null +++ b/content/discover/feed-4e17463556e19d4c8bd66f3450e50846.md @@ -0,0 +1,46 @@ +--- +title: Micro FOSS +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://microfoss.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 4e17463556e19d4c8bd66f3450e50846 + websites: + https://microfoss.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - cfdisk + - linux + - partisi + relme: + https://microfoss.blogspot.com/: true + last_post_title: Membuat Partisi Di System Operasi Linux Menggunakan Cfdisk + last_post_description: "" + last_post_date: "2018-12-24T07:16:00Z" + last_post_link: https://microfoss.blogspot.com/2018/12/membuat-partisi-di-system-operasi-linux.html + last_post_categories: + - cfdisk + - linux + - partisi + last_post_language: "" + last_post_guid: b076ca208691b35fa8b0c828e628ba74 + score_criteria: + cats: 3 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4e2078300a943ae62dfec01307f1a134.md b/content/discover/feed-4e2078300a943ae62dfec01307f1a134.md new file mode 100644 index 000000000..eef50dc22 --- /dev/null +++ b/content/discover/feed-4e2078300a943ae62dfec01307f1a134.md @@ -0,0 +1,45 @@ +--- +title: Blinken For Harmattan +date: "2024-03-13T01:01:03+01:00" +description: Blinken For Harmattan is a port of the Blinken KDE educational game for + Nokia N9 and N950 phones +params: + feedlink: https://blinkenharmattan.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 4e2078300a943ae62dfec01307f1a134 + websites: + https://blinkenharmattan.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://blinkenharmattan.blogspot.com/: true + https://flagsquiz.blogspot.com/: true + https://tsdgeos-es.blogspot.com/: true + https://tsdgeos.blogspot.com/: true + https://www.blogger.com/profile/12001470108926138921: true + last_post_title: Blinken for Harmattan + last_post_description: "" + last_post_date: "2011-11-03T19:37:38+01:00" + last_post_link: https://blinkenharmattan.blogspot.com/2011/10/blinken-for-harmattan.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 9297ccfd43c7d98815ae6a7a0a5f73b0 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4e261707e029b6c4700255801ee404e7.md b/content/discover/feed-4e261707e029b6c4700255801ee404e7.md new file mode 100644 index 000000000..38ce5d348 --- /dev/null +++ b/content/discover/feed-4e261707e029b6c4700255801ee404e7.md @@ -0,0 +1,137 @@ +--- +title: Skinny Area Code +date: "2024-03-13T12:30:31-07:00" +description: you can find here all about 800 area code so keep visiting to my blogspot. +params: + feedlink: https://erisherondalebooks.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 4e261707e029b6c4700255801ee404e7 + websites: + https://erisherondalebooks.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: World Area Code + last_post_description: "" + last_post_date: "2022-01-17T04:14:07-08:00" + last_post_link: https://erisherondalebooks.blogspot.com/2022/01/world-area-code.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 6e75fb38aaa2840b66b8e0679b776560 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4e283761572637132d5c3c544910bef0.md b/content/discover/feed-4e283761572637132d5c3c544910bef0.md new file mode 100644 index 000000000..81407a285 --- /dev/null +++ b/content/discover/feed-4e283761572637132d5c3c544910bef0.md @@ -0,0 +1,117 @@ +--- +title: Thomas Leigh Universe +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://thomasleighuniverse.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 4e283761572637132d5c3c544910bef0 + websites: + https://thomasleighuniverse.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Android + - Anki + - Apple + - AquaMail + - Blogger + - Chrome + - Doogie-Style + - Evelyn + - GMail + - GNU/Linux + - IT + - MIUI + - Muminki + - My Desktop + - My Taste + - OoBE + - Open Live Writer + - Pidgin + - Pleasure List + - Vero + - Vivaldi + - Windows + - angielski + - blog + - download + - english + - entuzjastyczny + - film + - fotoblog + - fotografia + - how-to + - jQuery + - kawa + - kulinarnie + - kwiaty + - makro + - medytacja + - melancholijny + - mile zaskoczony + - minorowy + - neutralny + - podcast + - podekscytowany + - pogodny + - pozytywny + - przytłumiony + - refleksyjny + - rozwój duchowy + - rozwój osobisty + - rośliny + - samotny + - smutny + - sny + - spokojny + - szczęśliwy + - ucieszony + - uradowany + - web-design + - wizja + - wywiad + - zadowolony + - zamyślony + - zmęczony + relme: + https://aboutthomasleigh.blogspot.com/: true + https://handynewsreader.blogspot.com/: true + https://jaktamjaponski.blogspot.com/: true + https://moliumpodcast.blogspot.com/: true + https://smartthemesfor.blogspot.com/: true + https://thomascafepodcast.blogspot.com/: true + https://thomasleighthemes.blogspot.com/: true + https://thomasleighuniverse.blogspot.com/: true + https://www.blogger.com/profile/01268074830941697525: true + https://zrodlokreacji.blogspot.com/: true + last_post_title: Co naprawdę potrafi Twój smartfon? + last_post_description: Kiedyś, jeszcze przed smartfonowymi czasami, bardzo przydatną + funkcją w telefonie było dla Mnie odrzucanie połączeń spoza listy kontaktów - + jak również ukrytych numerów. Niestety, nie + last_post_date: "2018-07-31T19:37:00Z" + last_post_link: https://thomasleighuniverse.blogspot.com/2018/07/co-naprawde-potrafi-twoj-smartfon.html + last_post_categories: + - Android + - IT + - spokojny + last_post_language: "" + last_post_guid: 3606bae5020cf73bc501a996b1dcee9a + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4e2fee4e15f7f57cb5164ae00261e899.md b/content/discover/feed-4e2fee4e15f7f57cb5164ae00261e899.md new file mode 100644 index 000000000..84eedea98 --- /dev/null +++ b/content/discover/feed-4e2fee4e15f7f57cb5164ae00261e899.md @@ -0,0 +1,47 @@ +--- +title: Double Rainbows All The Way (@doublerainbows@librem.one) +date: "1970-01-01T00:00:00Z" +description: |- + 25 Posts, 13 Following, 76 Followers · Boosts, changelogs and speculation from the Librem One team. + + See @purism for big announcements, and our following list for projects that we're excited +params: + feedlink: https://social.librem.one/@doublerainbows.rss + feedtype: rss + feedid: 4e2fee4e15f7f57cb5164ae00261e899 + websites: + https://social.librem.one/@doublerainbows: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://librem.one/: true + https://puri.sm/: true + https://social.librem.one/@doublerainbows: true + https://social.librem.one/@purism: true + last_post_title: 'doublerainbows: We have a status pag' + last_post_description: We have a status page! https://status.librem.oneEvery time + you hit F5, a sysadmin gets their coffee. + last_post_date: "2020-05-07T12:53:56Z" + last_post_link: https://social.librem.one/@doublerainbows/104127269230465170 + last_post_categories: [] + last_post_language: "" + last_post_guid: 6a54ed8617eeaf2457abd5753e05fbd2 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4e3842001378d2b593cf733fb4864104.md b/content/discover/feed-4e3842001378d2b593cf733fb4864104.md new file mode 100644 index 000000000..fea90d5d7 --- /dev/null +++ b/content/discover/feed-4e3842001378d2b593cf733fb4864104.md @@ -0,0 +1,56 @@ +--- +title: pwuxtest +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://pwuxtest.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 4e3842001378d2b593cf733fb4864104 + websites: + https://pwuxtest.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://pweclipse.blogspot.com/: true + https://pwuxtest.blogspot.com/: true + https://www.blogger.com/profile/13481600474889179891: true + last_post_title: Hello world, or at least blog readers + last_post_description: |- + There's always opportunities to start a new blog, but this was pretty straight forward. + + Welcome to my blogger test blog. + + ItemDescription + + + + oneitem one + twoitem two + + + + Table 1: items + last_post_date: "2016-11-28T20:12:00Z" + last_post_link: https://pwuxtest.blogspot.com/2016/11/hello-world-or-at-least-blog-readers.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 62da9cd10234065245fb25578504493d + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4e39b5fbe35c5a2c38714e591be1fb60.md b/content/discover/feed-4e39b5fbe35c5a2c38714e591be1fb60.md index 60e4ac525..b75cce1d1 100644 --- a/content/discover/feed-4e39b5fbe35c5a2c38714e591be1fb60.md +++ b/content/discover/feed-4e39b5fbe35c5a2c38714e591be1fb60.md @@ -15,6 +15,8 @@ params: recommender: [] categories: [] relme: + https://catdynamics.blogspot.com/: true + https://vesturislendingar.blogspot.com/: true https://www.blogger.com/profile/16082399006335997861: true last_post_title: extended rationing last_post_description: |- @@ -25,17 +27,22 @@ params: last_post_date: "2020-03-25T05:27:00Z" last_post_link: https://catdynamics.blogspot.com/2020/03/extended-rationing.html last_post_categories: [] + last_post_language: "" last_post_guid: 61eeb9cdab9cc1610056315d8a135fe5 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-4e3b0c8befb31ea390e2162edb685c3a.md b/content/discover/feed-4e3b0c8befb31ea390e2162edb685c3a.md deleted file mode 100644 index c8ae08434..000000000 --- a/content/discover/feed-4e3b0c8befb31ea390e2162edb685c3a.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Daryl activity -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://gitlab.com/DarylSum.atom - feedtype: atom - feedid: 4e3b0c8befb31ea390e2162edb685c3a - websites: - https://gitlab.com/DarylSum: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4e458839bae25b7aed37ab0e6bb22d6f.md b/content/discover/feed-4e458839bae25b7aed37ab0e6bb22d6f.md new file mode 100644 index 000000000..101c1d5ce --- /dev/null +++ b/content/discover/feed-4e458839bae25b7aed37ab0e6bb22d6f.md @@ -0,0 +1,49 @@ +--- +title: Comments for commonplace.net +date: "1970-01-01T00:00:00Z" +description: Data. The final frontier. +params: + feedlink: https://commonplace.net/comments/feed/ + feedtype: rss + feedid: 4e458839bae25b7aed37ab0e6bb22d6f + websites: + https://commonplace.net/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://commonplace.net/: true + https://lukaskoster.nl/: true + https://masto.ai/@lukask: true + https://www.openstreetmap.org/user/lukask99: true + last_post_title: Comment on Infrastructure for heritage institutions by Maarten + Brinkerink + last_post_description: |- + Hey Lukas, + + The picture you paint looks all too familiar to me. Very curious to learn about your progress and to share ideas about putting this topic higher on the agenda in our sector. + + Best + last_post_date: "2019-07-23T05:40:46Z" + last_post_link: https://commonplace.net/2795/comment-page-1/#comment-1383205 + last_post_categories: [] + last_post_language: "" + last_post_guid: cab64ba69c47198c73c2900dc21659e5 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4e4d91828fcb967efc5b6f90d008d0d2.md b/content/discover/feed-4e4d91828fcb967efc5b6f90d008d0d2.md new file mode 100644 index 000000000..dc3e3e970 --- /dev/null +++ b/content/discover/feed-4e4d91828fcb967efc5b6f90d008d0d2.md @@ -0,0 +1,50 @@ +--- +title: Irreal +date: "1970-01-01T00:00:00Z" +description: The minds had long ago come up with a proper name for it; they called + it the Irreal, but they thought of it as Infinite Fun. That was what they really + knew it as. The Land of Infinite Fun. --Iain M. +params: + feedlink: https://irreal.org/blog/?feed=rss2 + feedtype: rss + feedid: 4e4d91828fcb967efc5b6f90d008d0d2 + websites: + https://irreal.org/blog/: false + blogrolls: [] + recommended: [] + recommender: + - https://taonaw.com/categories/emacs-org-mode/feed.xml + - https://taonaw.com/feed.xml + - https://taonaw.com/podcast.xml + categories: + - Emacs + - General + relme: {} + last_post_title: Is Emacs Bloated? + last_post_description: Icy-Repair8024 says he’s a new Emacs user who started using + it believing that Emacs was a “lightweight” editor but upon discovering all its + features now believes it’s bloated and wonders if + last_post_date: "2024-07-08T15:45:22Z" + last_post_link: https://irreal.org/blog/?p=12296 + last_post_categories: + - Emacs + - General + last_post_language: "" + last_post_guid: 551983189a8221bec22ddcbe3f527196 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 2 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 1 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-4e5d884dc24d928215e1658b6e8fbbb4.md b/content/discover/feed-4e5d884dc24d928215e1658b6e8fbbb4.md deleted file mode 100644 index a94f9062e..000000000 --- a/content/discover/feed-4e5d884dc24d928215e1658b6e8fbbb4.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: 'Kees Cook :tux:' -date: "1970-01-01T00:00:00Z" -description: Public posts from @kees@fosstodon.org -params: - feedlink: https://fosstodon.org/@kees.rss - feedtype: rss - feedid: 4e5d884dc24d928215e1658b6e8fbbb4 - websites: - https://fosstodon.org/@kees: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git/: false - https://github.com/kees: true - https://outflux.net/blog: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4e607a59aa29b209f0c325f195a6a230.md b/content/discover/feed-4e607a59aa29b209f0c325f195a6a230.md deleted file mode 100644 index 72448cb2d..000000000 --- a/content/discover/feed-4e607a59aa29b209f0c325f195a6a230.md +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: Botwiki -date: "1970-01-01T00:00:00Z" -description: Cataloging the world of creative bots, clumsy AI, and machine ethics -params: - feedlink: https://botwiki.org/feed - feedtype: rss - feedid: 4e607a59aa29b209f0c325f195a6a230 - websites: - https://botwiki.org/: true - https://botwiki.org/author/stefan: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - '@waldoj@mastodon.social' - - botsin.space - - email - - generative - - phrase - - text - relme: - https://mastodon.social/@botwiki: true - last_post_title: I Hope This Email Finds You - last_post_description: I hope this bot finds you well. - last_post_date: "2024-04-19T19:59:52Z" - last_post_link: https://botwiki.org/bot/i-hope-this-email-finds-you/ - last_post_categories: - - '@waldoj@mastodon.social' - - botsin.space - - email - - generative - - phrase - - text - last_post_guid: 9779cc74ec500624baacf7ef0e7c35e5 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4e66e7bae726d8871680a3e25283b9b6.md b/content/discover/feed-4e66e7bae726d8871680a3e25283b9b6.md new file mode 100644 index 000000000..0495ee09c --- /dev/null +++ b/content/discover/feed-4e66e7bae726d8871680a3e25283b9b6.md @@ -0,0 +1,75 @@ +--- +title: Cacheboy Development +date: "2024-03-21T09:42:19-07:00" +description: "" +params: + feedlink: https://cacheboy.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 4e66e7bae726d8871680a3e25283b9b6 + websites: + https://cacheboy.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - BGP + - TPROXY + - anycast + - as250 + - cacheboy + - cacheboy ipv6 + - cdn + - cyberduck + - dns + - downtime + - freebsd + - geoip + - ipv6 + - lighttpd + - lusca + - mozilla + - news + - nnrp + - nntp + - olpc + - oprofile + - performance + - proxy + - quagga + - squid + - sugarlabs + - usenet + - videolan + - wiki + - wishlist + relme: + https://adrianchadd.blogspot.com/: true + https://cacheboy.blogspot.com/: true + https://lusca-cache.blogspot.com/: true + https://www.blogger.com/profile/17496219706861321916: true + https://xenionhosting.blogspot.com/: true + last_post_title: Where's cacheboy been hiding? + last_post_description: "" + last_post_date: "2011-07-15T19:13:19-07:00" + last_post_link: https://cacheboy.blogspot.com/2011/07/wheres-cacheboy-been-hiding.html + last_post_categories: + - cacheboy + last_post_language: "" + last_post_guid: d1903150cbd4d871d2bf3809a88c9f9b + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4e80092e45baa1855e93b8e6d880bd12.md b/content/discover/feed-4e80092e45baa1855e93b8e6d880bd12.md deleted file mode 100644 index 023c6b8ad..000000000 --- a/content/discover/feed-4e80092e45baa1855e93b8e6d880bd12.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: OpenStack – dronopenstack -date: "1970-01-01T00:00:00Z" -description: openstack project -params: - feedlink: https://dronopenstack.wordpress.com/category/openstack/feed/ - feedtype: rss - feedid: 4e80092e45baa1855e93b8e6d880bd12 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - OpenStack - - open source - relme: {} - last_post_title: the place of a non-developer in the openstack community - last_post_description: For a while now, I have been contemplating the role of non-developers - in the community. As a non-developer I sometimes find it hard to navigate in the - open source community and find that people often - last_post_date: "2014-07-10T14:25:20Z" - last_post_link: https://dronopenstack.wordpress.com/2014/07/10/the-place-of-a-non-developer-in-the-openstack-community/ - last_post_categories: - - OpenStack - - open source - last_post_guid: 400b546e5d3c35b8e4e7ef18e3146682 - score_criteria: - cats: 0 - description: 3 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4ee786c25e4bb31a14ca0ecb0d43aabf.md b/content/discover/feed-4ee786c25e4bb31a14ca0ecb0d43aabf.md deleted file mode 100644 index 048c20114..000000000 --- a/content/discover/feed-4ee786c25e4bb31a14ca0ecb0d43aabf.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Harold Jarche -date: "1970-01-01T00:00:00Z" -description: Public posts from @harold@mastodon.social -params: - feedlink: https://mastodon.social/@harold.rss - feedtype: rss - feedid: 4ee786c25e4bb31a14ca0ecb0d43aabf - websites: - https://mastodon.social/@harold: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://jarche.com/: true - https://www.linkedin.com/in/jarche/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4ef4f60b6d2bdbfaa898405092a6df41.md b/content/discover/feed-4ef4f60b6d2bdbfaa898405092a6df41.md new file mode 100644 index 000000000..1d5f5a083 --- /dev/null +++ b/content/discover/feed-4ef4f60b6d2bdbfaa898405092a6df41.md @@ -0,0 +1,55 @@ +--- +title: Abstract Absurdities +date: "2024-02-20T04:27:33-08:00" +description: "" +params: + feedlink: https://abstractabsurd.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 4ef4f60b6d2bdbfaa898405092a6df41 + websites: + https://abstractabsurd.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - C# + - arrows + - bitterness + - bluetooth + - emo + - epigram + - frp + - games + - haskell + - laziness + - matrioshka + - oh crap that was dumb + - performance + - security + relme: + https://abstractabsurd.blogspot.com/: true + https://www.blogger.com/profile/09820771070038676909: true + last_post_title: 'Weight Loss: When Hungry, Eat' + last_post_description: "" + last_post_date: "2010-01-27T18:35:27-08:00" + last_post_link: https://abstractabsurd.blogspot.com/2010/01/weight-loss-when-hungry-eat.html + last_post_categories: [] + last_post_language: "" + last_post_guid: ac01e36b99f6a8a8b9bef6c1c2f57b06 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4efc8639217c5c02ad74da02461ae907.md b/content/discover/feed-4efc8639217c5c02ad74da02461ae907.md deleted file mode 100644 index 066ccc9c6..000000000 --- a/content/discover/feed-4efc8639217c5c02ad74da02461ae907.md +++ /dev/null @@ -1,230 +0,0 @@ ---- -title: Technodrone -date: "2024-03-05T18:32:34+02:00" -description: Going Virtual In The Physical World -params: - feedlink: https://technodrone.blogspot.com/feeds/posts/default/-/OpenStack - feedtype: atom - feedid: 4efc8639217c5c02ad74da02461ae907 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - VMware - - Miscellaneous - - Administration - - vSphere - - ESX - - Management - - VMworld - - Virtualization - - vCenter - - Tools - - Troubleshooting - - Cloud - - Powershell - - Scripting - - OpenStack - - PowerCLI - - AWS - - Microsoft - - ESX4i - - Windows - - Automation - - Summit - - Blogger - - DevOps - - Security - - Upgrade - - Architecture - - Server - - Active Directory - - ESX3i - - "4.1" - - Design - - Hyper-V - - Appliances - - Learning - - Licensing - - VMotion - - 3 things - - ESXi - - Speaker - - Converter - - Storage - - Workstation - - vExpert - - Book - - Communities - - Scripting Games - - VCDX - - culture - - vCloud - - Announcement - - Lab - - MJTV - - Orchestration - - re:Invent - - Amazon - - Beta - - Certification - - Ravello - - VMUG - - Whitebox - - Performance - - Razor - - TechFieldDay - - docker - - voting - - "5.5" - - Contest - - NSX - - Orchestrator - - Podcast - - ELB - - haproxy - - 3 pillars - - "6.0" - - Career - - Cisco - - Linux - - Network - - OpenIndiana - - Operations - - Rant - - Server 2008 - - Stencil - - VCP - - Vancouver - - Visio - - presentation - - loadbalancer - - "2014" - - "5.1" - - ACI - - Atlanta - - Heartbeat - - SDN - - UCS - - VCAP - - VI Toolkit - - bio - - vSphere Hypervisor - - 3syllables - - AMI - - Ansible - - CFP - - Cluster - - DevOpsDays - - Developer - - GO - - Kosher - - Kubernetes - - Mac - - Puppet - - RackSpace - - Reality - - Redhat - - S3 - - SCVMM - - SlideDeck - - Terraform - - Tokyo - - VSAN - - Veertu - - author - - conference - - esxcli - - opinion - - service - - sponsor - - vCLI - - vFabric - - "2017" - - "2018" - - AUC - - Agile - - Analysis - - Associate - - Certificates - - CiscoSP360 - - Cost - - Crusade - - CyberArk - - Fling - - Fusion - - General Session - - Goals - - Hosting - - Hyperic - - Hypervisor - - Java - - Juno - - Leanpub - - MDA - - Marvin - - Outposts - - Personal - - Petri - - Professional - - RVC - - Religion - - Roundtable - - SSL - - Scale - - Show - - SysOps - - Teched - - Technology - - Twitter - - VMCI - - VMTN - - VPN - - Zimbra - - beginning - - chromebook - - cloudwalkabout - - containers - - dvfabric - - elections - - git - - guest - - hyper9 - - ibm - - ignite - - interview - - legacy - - misc - - new - - notsupported - - profile - - reflection - - review - - social - - technodrone - - vKernel - - vagrant - relme: {} - last_post_title: Installing OpenStack CLI clients on Mac OSX - last_post_description: "" - last_post_date: "2018-08-19T12:19:47+03:00" - last_post_link: https://technodrone.blogspot.com/2015/03/installing-openstack-cli-clients-on-mac.html - last_post_categories: - - Administration - - Mac - - OpenStack - last_post_guid: 8e3900443bb2752d81c9503ab30d00f0 - score_criteria: - cats: 5 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 14 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4f16dc60ba4a1be45ca269f170654397.md b/content/discover/feed-4f16dc60ba4a1be45ca269f170654397.md new file mode 100644 index 000000000..4239919e3 --- /dev/null +++ b/content/discover/feed-4f16dc60ba4a1be45ca269f170654397.md @@ -0,0 +1,44 @@ +--- +title: Aditya Athalye writes and works here. +date: "1970-01-01T00:00:00Z" +description: Aditya Athalye writes and works here, at evalapply.org. +params: + feedlink: https://www.evalapply.org/index.xml + feedtype: rss + feedid: 4f16dc60ba4a1be45ca269f170654397 + websites: + https://www.evalapply.org/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: [] + relme: {} + last_post_title: Writing maketh the 10x Developer. More so the 10x development team. + last_post_description: Writing is thinking. Software is peoples' thoughts on repeat. + Developers who can pen their thoughts clearly multiply their impact. This matters + even more in group work. Common sense rules; no + last_post_date: "2024-04-05T00:00:00Z" + last_post_link: https://www.evalapply.org/posts/writing-maketh-the-10x-developer/index.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 6a395b6b5bb5ed421d95122a9acd2210 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-4f1f1aa24b5acf74eecef54355fa9570.md b/content/discover/feed-4f1f1aa24b5acf74eecef54355fa9570.md new file mode 100644 index 000000000..e50a12af4 --- /dev/null +++ b/content/discover/feed-4f1f1aa24b5acf74eecef54355fa9570.md @@ -0,0 +1,52 @@ +--- +title: On TopLink +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://ontoplink.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 4f1f1aa24b5acf74eecef54355fa9570 + websites: + https://ontoplink.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Dali + - JPA + - JPA TopLink Essentials + - JPA TopLink Migration + - Oracle TopLink Essentials JPA Session + - TopLink + - first + relme: + https://onpersistence.blogspot.com/: true + https://ontoplink.blogspot.com/: true + https://shaunmsmith.blogspot.com/: true + https://www.blogger.com/profile/03444889032778621661: true + last_post_title: We've Moved! + last_post_description: Quoting myself over at onpersistence.blogspot.com:With the + open sourcing of Oracle TopLink in the EclipseLink (Eclipse Persistence Services) + Project at Eclipse I thought I'd better get back to + last_post_date: "2008-01-30T15:17:00Z" + last_post_link: https://ontoplink.blogspot.com/2008/01/weve-moved.html + last_post_categories: [] + last_post_language: "" + last_post_guid: d3dfb771ed3922feab7a72c84e897fca + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4f3fdba818374d9498db4f68e99d8bea.md b/content/discover/feed-4f3fdba818374d9498db4f68e99d8bea.md deleted file mode 100644 index 3a0359d21..000000000 --- a/content/discover/feed-4f3fdba818374d9498db4f68e99d8bea.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Manu activity -date: "2023-09-24T14:22:44Z" -description: "" -params: - feedlink: https://gitlab.com/manu_faktur.atom - feedtype: atom - feedid: 4f3fdba818374d9498db4f68e99d8bea - websites: - https://gitlab.com/manu_faktur: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://manuelgrabowski.de/: false - last_post_title: Manu commented on merge request !127566 at GitLab.org / GitLab - last_post_description: Hi @dfrazao-gitlab, @l.rosa – one of the migrations here - wasn't able to complete on my single-node Omnibus instance. The instance was on - 16.3.4 and I do every upgrade on it. It has almost no data - last_post_date: "2023-09-24T14:22:44Z" - last_post_link: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/127566 - last_post_categories: [] - last_post_guid: cdc626d81d2972b08fb29e560609bb76 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4f4c803a077793d76c70f594750c0569.md b/content/discover/feed-4f4c803a077793d76c70f594750c0569.md new file mode 100644 index 000000000..e4593f5ca --- /dev/null +++ b/content/discover/feed-4f4c803a077793d76c70f594750c0569.md @@ -0,0 +1,139 @@ +--- +title: Uber Fun Refresh +date: "1970-01-01T00:00:00Z" +description: This blog is collection of Uber meme. Share for aware. +params: + feedlink: https://memoryrefresh.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 4f4c803a077793d76c70f594750c0569 + websites: + https://memoryrefresh.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Get Numberless Collection on Uber Meme + last_post_description: Uber The ever-developing on-request transportation administration + which altered the taxi business the whole way across the world. The Uber plan + of action is an enormous achievement. It was received + last_post_date: "2020-11-22T10:33:00Z" + last_post_link: https://memoryrefresh.blogspot.com/2020/11/get-numberless-collection-on-uber-meme.html + last_post_categories: [] + last_post_language: "" + last_post_guid: d70008c38c890dff4b4a7204baa10418 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4f4d52c0c9fe49146cf8c417b70ed141.md b/content/discover/feed-4f4d52c0c9fe49146cf8c417b70ed141.md new file mode 100644 index 000000000..052d404e0 --- /dev/null +++ b/content/discover/feed-4f4d52c0c9fe49146cf8c417b70ed141.md @@ -0,0 +1,44 @@ +--- +title: Information Flaneur - Information Flaneur +date: "1970-01-01T00:00:00Z" +description: Libraries, information, computation. +params: + feedlink: https://www.hughrundle.net/rss.xml + feedtype: rss + feedid: 4f4d52c0c9fe49146cf8c417b70ed141 + websites: + https://www.hughrundle.net/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - work + relme: + https://www.hughrundle.net/: true + last_post_title: Don't bring me solutions, bring me problems + last_post_description: A couple of weeks ago Emilia Bell published The problem with + solutions, an interesting take on some of the problems with the management mantra + I encountered a lot in my earlier years in the + last_post_date: "2024-07-07T00:00:00Z" + last_post_link: https://www.hughrundle.net/dont-bring-me-solution-bring-me-problems/ + last_post_categories: + - work + last_post_language: "" + last_post_guid: 363ec553e6ade833272d363ef38ef91c + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-4f51e19a7f336e788924f9dce6666bd2.md b/content/discover/feed-4f51e19a7f336e788924f9dce6666bd2.md new file mode 100644 index 000000000..3ca2811e0 --- /dev/null +++ b/content/discover/feed-4f51e19a7f336e788924f9dce6666bd2.md @@ -0,0 +1,139 @@ +--- +title: Lunk Alarms Sound +date: "2024-03-13T01:45:41-07:00" +description: Sound of lunk alarm is irritating a lot but..... +params: + feedlink: https://antrenmanlarlamatematik.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 4f51e19a7f336e788924f9dce6666bd2 + websites: + https://antrenmanlarlamatematik.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - sound is so bad.. + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Sound Of Lunk Alarm + last_post_description: "" + last_post_date: "2021-05-02T09:02:01-07:00" + last_post_link: https://antrenmanlarlamatematik.blogspot.com/2021/05/sound-of-lunk-alarm.html + last_post_categories: + - sound is so bad.. + last_post_language: "" + last_post_guid: eea1e421bf7936213ab25d522e5d118e + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4f5f8f8dee340a5038ed0d205f5bc71e.md b/content/discover/feed-4f5f8f8dee340a5038ed0d205f5bc71e.md index 6ccab90a8..a767960d9 100644 --- a/content/discover/feed-4f5f8f8dee340a5038ed0d205f5bc71e.md +++ b/content/discover/feed-4f5f8f8dee340a5038ed0d205f5bc71e.md @@ -12,24 +12,30 @@ params: recommended: [] recommender: [] categories: [] - relme: {} + relme: + https://thegreenland.eu/: true last_post_title: 'Reactie op Event: 5 sterren voor open algoritmen, doe mee! door Ruud Steltenpool' last_post_description: Hoe kom ik ook aan zo'n mok? last_post_date: "2023-12-22T09:46:53Z" last_post_link: https://thegreenland.eu/2023/10/event-5-sterren-voor-open-algoritmen-doe-mee/#comment-60258 last_post_categories: [] + last_post_language: "" last_post_guid: c23cd3e0e60abbf952f642467c65e604 score_criteria: cats: 0 description: 0 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 5 + score: 10 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-4f6e601f186744fba83b9a6466781c0e.md b/content/discover/feed-4f6e601f186744fba83b9a6466781c0e.md new file mode 100644 index 000000000..7b21c63dc --- /dev/null +++ b/content/discover/feed-4f6e601f186744fba83b9a6466781c0e.md @@ -0,0 +1,43 @@ +--- +title: Linux scripts and bits for fun +date: "2024-03-13T21:08:15-07:00" +description: "" +params: + feedlink: https://linuxbitsandscripts.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 4f6e601f186744fba83b9a6466781c0e + websites: + https://linuxbitsandscripts.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://flosslinuxblog.blogspot.com/: true + https://linuxbitsandscripts.blogspot.com/: true + https://poetryandstuffforfun.blogspot.com/: true + https://www.blogger.com/profile/17644077996431326998: true + last_post_title: dd - useful flags + last_post_description: "" + last_post_date: "2019-09-08T11:48:24-07:00" + last_post_link: https://linuxbitsandscripts.blogspot.com/2019/09/dd-useful-flags.html + last_post_categories: [] + last_post_language: "" + last_post_guid: b7f02659850d71bda093f994137c03b9 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4f8f3d4f90a53391d199d24205b6a857.md b/content/discover/feed-4f8f3d4f90a53391d199d24205b6a857.md index 1d3c91242..710bfc134 100644 --- a/content/discover/feed-4f8f3d4f90a53391d199d24205b6a857.md +++ b/content/discover/feed-4f8f3d4f90a53391d199d24205b6a857.md @@ -13,26 +13,32 @@ params: recommender: - https://visitmy.website/feed.xml categories: - - Vickypedia + - Blog relme: {} - last_post_title: 41. Changeable - last_post_description: Intermediate-level GOV.UK prototype kit, power and policy, - bubble diagrams - last_post_date: "2024-05-31T07:34:52Z" - last_post_link: https://www.vickyteinaki.com/newsletter/41-changeable/ + last_post_title: A plea for the lost practice of information architecture + last_post_description: How the Winchester Mystery house shows us what we risk if + we conflate agile with constant bottom-up iteration and don't do any information + architecture. + last_post_date: "2024-07-01T19:08:51Z" + last_post_link: https://www.vickyteinaki.com/blog/a-plea-for-the-lost-practice-of-information-architecture/ last_post_categories: - - Vickypedia - last_post_guid: ba7d8e740091378d7d35dba7fa2554c3 + - Blog + last_post_language: "" + last_post_guid: 7964df3aa87760be2316f5a3d52d96d3 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 14 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-4fa306aee782ad22e744ea2d49df75bb.md b/content/discover/feed-4fa306aee782ad22e744ea2d49df75bb.md new file mode 100644 index 000000000..ef2d7e67f --- /dev/null +++ b/content/discover/feed-4fa306aee782ad22e744ea2d49df75bb.md @@ -0,0 +1,98 @@ +--- +title: Sev's ScummVM notes +date: "2024-03-14T06:19:26+02:00" +description: ScummVM development and whatnot from ScummVM team leader +params: + feedlink: https://sev-notes.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 4fa306aee782ad22e744ea2d49df75bb + websites: + https://sev-notes.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - DIG + - FM-TOWNS + - FSF + - Kanji + - agi + - bugs + - coroutines + - development + - discworld + - documentation + - donation + - downloads + - dw1 + - eBay + - enhancements + - gob + - gsoc + - history + - humongous entertainment + - ihnm + - ite + - james woodcock + - kyra3 + - kyrandia + - lawyers + - lec + - ludde + - m4 + - made engine + - mads + - mistic soft + - music + - original sources + - planetplanet + - portability + - ports + - refactoring + - reinherit + - rendering + - reverse engineering + - saga + - sarien + - screenshots + - scumm + - scummvm + - sf.net + - sourceforge + - steam + - strigeus + - tinsel + - trial + - wii + - woodruff + - yamaha + - zak + relme: + https://sev-notes.blogspot.com/: true + https://www.blogger.com/profile/17558861558880090861: true + last_post_title: Trying Patreon waters + last_post_description: 'In the years I had the numerous requests to add a Patreon + page. There you go: https://www.patreon.com/_sev. It is a way to support me personally + (if you care) and if there will be at least several' + last_post_date: "2021-12-03T00:05:06+02:00" + last_post_link: https://sev-notes.blogspot.com/2021/12/trying-patreon-waters.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 04a17dad3497471840efde38169673f0 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4faef0258b2cbd7edf6b630707928f42.md b/content/discover/feed-4faef0258b2cbd7edf6b630707928f42.md deleted file mode 100644 index c4a87772e..000000000 --- a/content/discover/feed-4faef0258b2cbd7edf6b630707928f42.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: Stefan Bohacek -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://stefanbohacek.com/feed - feedtype: rss - feedid: 4faef0258b2cbd7edf6b630707928f42 - websites: - https://stefanbohacek.com/: true - https://stefanbohacek.com/contact/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Fediverse - - sharing buttons - - web development - relme: - https://github.com/stefanbohacek: true - https://soundcloud.com/stefanbohacek: false - https://stefanbohacek.com/contact/: false - https://stefanbohacek.online/@stefan: true - last_post_title: Fediverse share button - last_post_description: Share with the fediverse! - last_post_date: "2024-05-17T16:53:56Z" - last_post_link: https://stefanbohacek.com/project/fediverse-sharing-button/ - last_post_categories: - - Fediverse - - sharing buttons - - web development - last_post_guid: 5c89c85f9c77f4c19585f348b92d2286 - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4fc5a596aacff2dac8dd4cb6725f6d45.md b/content/discover/feed-4fc5a596aacff2dac8dd4cb6725f6d45.md new file mode 100644 index 000000000..6ead5f760 --- /dev/null +++ b/content/discover/feed-4fc5a596aacff2dac8dd4cb6725f6d45.md @@ -0,0 +1,44 @@ +--- +title: sachagoat +date: "1970-01-01T00:00:00Z" +description: The feed of updates to sachagoat +params: + feedlink: https://sachagoat.blot.im/feed.rss + feedtype: rss + feedid: 4fc5a596aacff2dac8dd4cb6725f6d45 + websites: + https://sachagoat.blot.im/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: [] + relme: {} + last_post_title: 'Re-inventing the Wilderness: Part 6 - Landmarks' + last_post_description: In this blog series, I will dissect the spatial elements + of wilderness environments and explore how tabletop-friendly prep and mechanics + could be leveraged to revise exploration procedures. If + last_post_date: "2024-06-15T18:37:30Z" + last_post_link: https://sachagoat.blot.im/re-inventing-the-wilderness-part-6-landmarks + last_post_categories: [] + last_post_language: "" + last_post_guid: 2d46f07c8495ffc105c9523383106ab8 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4fd0353732f437cb7810f37db6bf3d88.md b/content/discover/feed-4fd0353732f437cb7810f37db6bf3d88.md deleted file mode 100644 index d72c84516..000000000 --- a/content/discover/feed-4fd0353732f437cb7810f37db6bf3d88.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Jack Baty - Everything -date: "2024-06-04T12:51:51Z" -description: "" -params: - feedlink: https://baty.net/everything.rss - feedtype: atom - feedid: 4fd0353732f437cb7810f37db6bf3d88 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://kevq.uk/feed - - https://kevq.uk/feed.xml - - https://kevq.uk/feed/ - - https://kevquirk.com/feed - categories: [] - relme: {} - last_post_title: Speed is my enemy - last_post_description: "" - last_post_date: "2024-06-02T14:14:56Z" - last_post_link: https://baty.net/2024/06/speed-is-my-enemy/ - last_post_categories: [] - last_post_guid: aef2ed38b4e972b2cee666244f411b9c - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-4fd2412845d69cf3caacb839cc104c3b.md b/content/discover/feed-4fd2412845d69cf3caacb839cc104c3b.md index c22a32905..f4ec53055 100644 --- a/content/discover/feed-4fd2412845d69cf3caacb839cc104c3b.md +++ b/content/discover/feed-4fd2412845d69cf3caacb839cc104c3b.md @@ -14,332 +14,17 @@ params: recommended: [] recommender: [] categories: - - TV - - Poly 101 - - legal - - activism - - polyamory - - Canada - - open marriage - - books - - research - - kids - - advice columns - - polygamy - - Australia/NZ - - Friday Polynews Roundup - - U.K. - - millennials - - Show Your Parents - - marriage - - conferences - - critics of poly - - New York - - college - - gay - - gay/bi - - celebrities - - The Best - - UK - - history - - SF Bay Area - - therapists - - Europe - - The Next Generation - - tabloids - - politics - - '#PolyamoryNews' - - '#Polyamory' - - Kamala Devi - - movies/plays - - polys of color - - radio - - triad - - Seattle - - Jenny Block - - bisexual - - religion/spirituality - - Covid-19 - - '#polyactivism' - - feminism - - Wash. DC region - - jealousy - - '#PolyLegal' - - Latin America - - 'Polyamory: Married & Dating' - - coming out - - dating - - holidays - - '#PolyintheMedia' - - humor - - Boston - - South Africa - - comics - - polyfamilies - - '#polyfamilies' - - China/Pacific - - Español - - Professor Marston movie - - Showtime Season 1 - - children of polyamory - - monogamy - - plays - - poly - - '#PolyamoryintheNews' - - Chicago - - Dan Savage - - Ireland - - Oregon - - Showtime Season 2 - - Wonder Woman - - history of polyamory - - poly parenting - - '#Poly101' - - Florida - - Jewish - - Português - - Tristan Taormino - - anthropology - - black & poly - - metamours - - Book reviews by me - - Deborah Anapol - - Deutsch - - Ethical Slut - - Loving More - - You Me Her - - convention - - lesbian - - '#PolyamoryActivism' - - India/South Asia - - New Culture - - advice - - leftist/anarchist - - relationship anarchy - - science fiction - - swinging - - theory - - '#PolyamoryBooks' - - Brazil - - Sierra Black - - 'Supreme Court: Obergefell' - - Valentine's Day - - tech - - Colorado - - Franklin Veaux - - Français - - Southeast - - advertising - - art - - children - - coronavirus - - עברית - - '#PolyParenting' - - '#enm' - - polyamory books - - polyamory on TV - - '#OPEN' - - '#PolyNews' - - Chris Megan Leigh Ann - - STDs - - intentional community - - movies - - quads - - unicorn - - '#OpenRelationshipBooks' - - '#PolyNormalization' - - '#PolyamoryTV' - - '#metamours' - - BDSM - - Buddhist - - Diana Adams - - Israel - - More Than Two - - Nederlands - - Somerville - - Ukraine - - carrie jenkins - - compersion - - poly-mono - - polyamory flag - - reality show - - songs - - speeches by me - - triads - - video - - weddings - - '#CoupleToThrouple' - - '#PolyOnTV' - - '#PolyRights' - - '#PolyamoryFlag' - - Ask Amy - - Cambridge - - Dear Margo - - Jaiya - - Janet Hardy - - Looks Like Love to Me - - Metamour Day - - Nico Tortorella - - Russia - - Terisa Greenan - - Trigonometry series - - Trump - - What polyamory principles offer everyone - - aging - - agreements - - autobiographies - - discrimination against polyamory - - music - - queer - - '#NewPolyamoryFlag' - - '#OpenMarriage' - - '#PolyAndChristian' - - '#PolyAndQueer' - - '#PolyDating' - - '#PolyHistory' - - '#PolyamoryFinances' - - '#PolyamoryHistory' - - '#PolyamoryLegal' - - '#PolyamoryLegislation' - - '#PolyamoryRights' - - '#abuseinpoly' - - '#cnm #openrelationship' - - '#polycule' - - Atlanta Poly Weekend - - Blake Wilson - - Eve Rickert - - Hacienda Villa - - Ixi Kirkilis - - Joe Spurr - - Kansas City - - Multi-Love - - Norsk - - Poly Living - - Polyamory Day - - Ruban Nielson - - 'Supreme Court: Windsor' - - Svenska - - Trigonometry - - Zaeli Kane - - academia - - asexual - - couple privilege - - critics of polyamory - - definition of polyamory - - domestic partnerships - - future of polyamory - - monogamish - - new polyamory flag - - poly dating - - polyamory history - - polyandry - - solo poly - - today show - - unicorns - - по-русски - - '#BadPolyamory' - - '#Black&Poly' - - '#ChildrenOfPolyamory' - - '#Masyanya' - - '#MetamourDay' - - '#PandemicPolyamory' - - '#PolyAndPsychedelics' - - '#PolyDomesticPartnerships' - - '#PolyFinances' - - '#PolyHolidays' - - '#PolyRecognition' - - '#PolyWeddings' - - '#PolyamorousFlag' - - '#Polyamory rights' - - '#PolyamoryBandwagon' - - '#PolyamoryDay' - - '#PolyamorySA' - - '#PolyamoryUkraine' - - '#PolyandCovid' - - '#QueerPolyamory' - - '#SeekingBrotherHusband' - - '#Solopoly' - - '#metamour #MetamourDay' - - '#openrelationship' - - '#polyamoryandneurodiversity' - - '#polyfidelity' - - '#throuples' - - '#triads' - - Alyce Grillet - - Arlington MA - - Brother Husbands - - Caroline Giuliani - - Colombia - - Danske - - Dedeker Winston - - Destination America - - Fox - - HBO - - Heinlein - - Hidden in America - - Japan - - Kimchi Cuddles - - Lisa Ling - - Matt Bullen - - Mississippi - - Morning Glory Zell-Ravenheart - - NRE - - New Mexico - - Oberon Zell - - Open - - Our America - - PLAC - - Page Turner - - Philadelphia - - Poly celebrities - - |- - Polyamory Legal - Advocacy Coalition - - Polyamory Week - - Polysecure - - San Diego - - Sartre - - Sex at Dawn - - She's Gotta Have It - - Sister Wives - - TNG - - Tamron Hall - - Terri Conley - - The Bachelor - - Three Dads and a Baby - - Tilda Swinton - - Unitarian Universalist - - Unknown Mortal Orchestra - - Utah - - Utopia - - abuse - - abusers - - atheism - - christian poly - - death - - definition of open relationship - - misuse of "polyamory" - - philosophy - - poetry - - poly and christian - - poly flag - - poly weddings - - poly101 - - polyamorous food trucks - - polyamory conventions - - polyamory in the military - - polycon - - polyfi - - polyfidelity - - skepticism - - threesomes - '#AlexAlberto' - '#ArchieComics' - '#BadPoly' + - '#BadPolyamory' + - '#Black&Poly' - '#CNM' - '#Challengers' - '#ChallengersMovie' + - '#ChildrenOfPolyamory' - '#ChosenFamily' + - '#CoupleToThrouple' - '#CoupletToThrouple' - '#CrappyPoly' - '#Datinga Couple' @@ -363,110 +48,229 @@ params: - '#MFMF' - '#MaBelleMyBeauty' - '#MarkMaryAndSomeOtherPeople' + - '#Masyanya' - '#MemorialDay' + - '#MetamourDay' - '#MonogamyAgreements' - '#MoreMemoirofOpenMarriage' - '#MoreaMemoirofOpenMarriage' - '#NRE' - '#NationalAnthemMovie' + - '#NewPolyamoryFlag' - '#NewToPolyamory' - '#NormalizePolyamory' + - '#OPEN' + - '#OpenMarriage' + - '#OpenRelationshipBooks' + - '#PandemicPolyamory' - '#Poly10' + - '#Poly101' + - '#PolyAndChristian' + - '#PolyAndPsychedelics' + - '#PolyAndQueer' - '#PolyBooks' - '#PolyChristmas' - '#PolyComics' - '#PolyCommitmentCeremony' + - '#PolyDating' + - '#PolyDomesticPartnerships' - '#PolyElders' + - '#PolyFinances' + - '#PolyGreenFlags' - '#PolyHandfasting' + - '#PolyHistory' + - '#PolyHolidays' - '#PolyKidsBooks' + - '#PolyLegal' + - '#PolyMono' - '#PolyNeurodiversity' + - '#PolyNews' + - '#PolyNormalization' + - '#PolyOnTV' - '#PolyOverTheHolidays' - '#PolyPandemic' + - '#PolyParenting' + - '#PolyRecognition' - '#PolyResearch' + - '#PolyRights' - '#PolyUkraine' - '#PolyVacation' - '#PolyVeto' + - '#PolyWeddings' + - '#PolyamorousFlag' + - '#Polyamory' + - '#Polyamory rights' + - '#PolyamoryActivism' + - '#PolyamoryBandwagon' + - '#PolyamoryBooks' - '#PolyamoryChristmas' + - '#PolyamoryDay' + - '#PolyamoryFinances' + - '#PolyamoryFlag' + - '#PolyamoryHistory' + - '#PolyamoryLegal' + - '#PolyamoryLegislation' - '#PolyamoryMoneyManagement' - '#PolyamoryMovies' + - '#PolyamoryNews' - '#PolyamoryResearch' + - '#PolyamoryRights' + - '#PolyamorySA' - '#PolyamorySongs' - '#PolyamoryStories' - '#PolyamoryStyles' + - '#PolyamoryTV' + - '#PolyamoryUkraine' + - '#PolyamoryintheNews' - '#PolyandAging' + - '#PolyandCovid' - '#PolyfamilyFinances' - '#Polyfamory' - '#PolygamyInTheBible' + - '#PolyintheMedia' - '#PolyintheMedia. #PolyamoryNews' + - '#QueerAnimals' + - '#QueerPolyamory' - '#RelationshipAgreements' - '#Riverdale' + - '#SeekingBrotherHusband' - '#SnugglePilePoly' + - '#Solopoly' + - '#SuccessfulPoly' - '#TeenPoly' - '#ThreeDadsAndaBaby' - '#UCC' - '#UUPoly' - '#WhatPolyamoryOffersThe Monogamous' - '#WhyIsPolyamoryPopular?' + - '#abuseinpoly' - '#activism' + - '#cnm #openrelationship' - '#compersion' + - '#enm' - '#facebooklimitslove' - '#group marriage' + - '#metamour #MetamourDay' + - '#metamours' - '#nonmonogamyvisibility' - '#oly101' + - '#openrelationship' - '#po' - '#poly' - '#poly kids books' + - '#polyactivism' - '#polyamorous' + - '#polyamoryandneurodiversity' + - '#polyandAI' - '#polycons' + - '#polycule' - '#polycules' + - '#polyfamilies' + - '#polyfidelity' - '#polylessons' - '#polymilitary' - '#polynavy' - '#threesomes' - '#threeways' - '#throuple' + - '#throuples' + - '#triads' - '#unicorns' - Allena Gabosch + - Alyce Grillet - Amanda Palmer - Amelia Earhart + - Arlington MA - Ashley Madison - Ashli Babbitt + - Ask Amy - Asperger's + - Atlanta Poly Weekend + - Australia/NZ + - BDSM - BIPOC - Bella Thorne - Big Bang Theory - Black Lives Matter - Black Poly Nation + - Blake Wilson + - Book reviews by me + - Boston - Brady Williams family + - Brazil - Britney Spears + - Brother Husbands + - Buddhist + - Cambridge + - Canada - Capitol riot + - Caroline Giuliani - Charlie Sheen + - Chicago + - China/Pacific - Chris Envy Angela Ashley polyamory polyamorous + - Chris Megan Leigh Ann - Christopher Ryan - Christopher Smith - Clare Verduyn + - Colombia + - Colorado - Covic-19 + - Covid-19 - Covidc-19 - Craig Ivey - Cunning Minx + - Dan Savage + - Danske - David Brooks + - Dear Margo + - Deborah Anapol - Dedeker + - Dedeker Winston + - Destination America - Details magazine + - Deutsch + - Diana Adams - Disabilities - Elf Lyons + - Español + - Ethical Slut + - Europe + - Eve Rickert - Facebook + - Florida + - Fox + - Franklin Veaux + - Français - Friday Polyamory News Roundup + - Friday Polynews Roundup - Gaby Dunn - Gen Z + - HBO + - Hacienda Villa + - Heinlein - Helen Fisher + - Hidden in America - India + - India/South Asia - Iran + - Ireland + - Israel + - Ixi Kirkilis + - Jaiya + - Janet Hardy + - Japan - Jase Lindgren + - Jenny Block - Jenny Yuen - Jerry Falwell - Jessica Fern + - Jewish + - Joe Spurr - Joseph Freeney - Juneteenth + - Kamala Devi + - Kansas City - Karen Ruskin - Kate Robards - Kathy Labriola @@ -474,12 +278,17 @@ params: - Katie Hill - Ken Haslam - Kim Tallbear + - Kimchi Cuddles - Kinsey Institute - Kitty Striker - LGBT - Lady Gaga + - Latin America - Leanna Yau + - Lisa Ling + - Looks Like Love to Me - Love Sex and Neighbors + - Loving More - MTV - Ma Belle My Beauty - Magyar @@ -487,79 +296,196 @@ params: - Mark Sanford - Marty Klein - Mary Crumpton + - Matt Bullen - Megyn Kelly + - Metamour Day - Minneapolis + - Mississippi - Mo'Nique + - More Than Two + - Morning Glory Zell-Ravenheart - Moses Sumney + - Multi-Love - My Five Wives - NBC Out + - NRE + - Nederlands - Neil Gaiman + - New Culture + - New Mexico - New Monogamy + - New York + - Nico Tortorella - Nikki Haley affair - Nikki Haley cheating - Nikki Haley extramarital - No Exit + - Norsk + - Oberon Zell - Oneida Colony + - Open - Oprah Winfrey + - Oregon + - Our America + - PLAC + - Page Turner - Paul Dalgarno + - Philadelphia - Philippines - Polska - Polski + - Poly 101 + - Poly Living - Poly Philia + - Poly celebrities - Poly novel + - Polyamory Day - Polyamory Foundation + - |- + Polyamory Legal + Advocacy Coalition - Polyamory Legal Advocacy Coalition - Polyamory Today + - Polyamory Week + - 'Polyamory: Married & Dating' - Polylogues + - Polysecure + - Português + - Professor Marston movie - R. Crumb - Rachel Krantz - Rebecca Walker - Right to Family Amendment Act of 2021 - Robyn Trask - Roswell + - Ruban Nielson - Ruby Bouie Johnson + - Russia + - SF Bay Area + - STDs - STIs + - San Diego - Sara Valta + - Sartre + - Seattle - Sex Ed + - Sex at Dawn - Shameless + - She's Gotta Have It - Show Me What You Got + - Show Your Parents + - Showtime Season 1 + - Showtime Season 2 + - Sierra Black - Simone de Beauvoir + - Sister Wives + - Somerville + - South Africa + - Southeast - Spain - Stage 3 polyamory - Stephen Snyder - Steve Pavlina + - 'Supreme Court: Obergefell' + - 'Supreme Court: Windsor' + - Svenska - TEDx - TLC + - TNG + - TV + - Tamron Hall - Tana Mongeau - Teen Poly + - Terisa Greenan + - Terri Conley - Texas - Thanksgiving + - The Bachelor + - The Best - The L Word + - The Next Generation - The Politician - The Polyamorists Next Door - The State of Affairs - There Is No 'I' in Threesome + - Three Dads and a Baby + - Tilda Swinton - Tolstoy + - Trigonometry + - Trigonometry series + - Tristan Taormino - True Life + - Trump - Two Boyfriends and a Baby + - U.K. + - UK - UUPA + - Ukraine + - Unitarian Universalist - United Church of Christ + - Unknown Mortal Orchestra + - Utah + - Utopia - Utopia show + - Valentine's Day + - Wash. DC region - Wednesday Martin - Wendy-O Matik + - What polyamory principles offer everyone - Will and Jada Pinkett Smith - Wisconsin + - Wonder Woman - World Polyamory Association - X-Men + - You Me Her + - Zaeli Kane + - abuse + - abusers + - academia + - activism + - advertising + - advice + - advice columns + - aging + - agreements + - anthropology + - art + - asexual + - atheism - attachment theory in polyamory + - autobiographies + - bisexual + - black & poly + - books + - carrie jenkins + - celebrities - cheating + - children + - children of polyamory + - christian poly - christianity and polyamory - civil union of 3 - co-housing + - college + - comics + - coming out - communication - communication skills + - compersion + - conferences + - convention - corona cuddling + - coronavirus + - couple privilege - covid + - critics of poly + - critics of polyamory + - dating + - death + - definition of open relationship + - definition of polyamory + - discrimination against polyamory + - domestic partnerships - dying - early poly in the media - economics @@ -568,97 +494,179 @@ params: - esther perel - eye-gazing - falling in love + - feminism - feminism in polyamory + - future of polyamory - game changer + - gay - gay triads + - gay/bi - geek - gingrich + - history + - history of polyamory + - holidays - house hunters + - humor - infidelity rate - infinity heart + - intentional community + - jealousy - jewelry/pins/clothing + - kids + - leftist/anarchist + - legal - 'legal; #PolyBerkeley' - 'legal; #PolyOakland' + - lesbian + - marriage - merch + - metamours + - millennials + - misuse of "polyamory" + - monogamish + - monogamy + - movies + - movies/plays + - music + - new polyamory flag - nikki haley - north dakota + - open marriage - pandemic - pansexual - parenting + - philosophy - pi day - pickup artist - platonic + - plays - podcasts + - poetry - poliamor + - politics + - poly - poly & neurodiversity - poly and childbirth + - poly and christian - poly and pregnancy - poly animals - poly as orientation - poly conference + - poly dating + - poly flag - poly humor + - poly parenting - poly shaming + - poly weddings + - poly-mono + - poly101 - polyaffectivity - polyamorous flag + - polyamorous food trucks + - polyamory - polyamory and class - polyamory as a spiritual path + - polyamory books - polyamory community + - polyamory conventions + - polyamory flag - polyamory flag stolen - polyamory groups + - polyamory history + - polyamory in the military - polyamory memes - polyamory news + - polyamory on TV - polyamory rights - polyamory symbols - polyamproud + - polyandry + - polycon - polycule - polydar + - polyfamilies + - polyfi + - polyfidelity + - polygamy - polygamy. Mormon + - polys of color - problem poly + - quads + - queer + - radio + - reality show + - relationship anarchy + - religion/spirituality + - research + - science fiction - sex-positive organizations - showtime - siren + - skepticism + - solo poly + - songs - sophie lucido johnson - spaceflight + - speeches by me + - swinging - tab + - tabloids + - tech + - theory + - therapists + - threesomes - threeways - throuples + - today show - trans + - triad + - triads - uniao poliafetiva + - unicorn + - unicorns + - video - webseries + - weddings - wife swap. Gina John Loudon - will folks - woodhull - zoning - Íslensku + - по-русски + - עברית - 日本語 relme: - https://www.blogger.com/profile/16008171792811719945: true - last_post_title: Finally, a genuinely poly movie coming (queer too). The last word - on the "Challengers" movie. Six new fiction books for summer reading. The AARP - gets it. And, many upcoming events. + https://polyinthemedia.blogspot.com/: true + last_post_title: Green flags to watch for in poly dating. The great poly/queer overlap. + Co-living. And, a total heartwarmer. last_post_description: "" - last_post_date: "2024-06-02T21:24:00Z" - last_post_link: https://polyinthemedia.blogspot.com/2024/06/finally-genuinely-poly-movie-queer-too.html + last_post_date: "2024-07-03T13:00:00Z" + last_post_link: https://polyinthemedia.blogspot.com/2024/07/green-flags-to-watch-for-in-poly-dating.html last_post_categories: - - '#polyactivism' - - '#Polyamory' - - '#Challengers' - - '#enm' - - '#PolyamoryMovies' - - books - - '#activism' - - '#NationalAnthemMovie' - last_post_guid: 4f4030b825f566c7f99b20a84361cf0a + - '#PolyGreenFlags' + - '#PolyMono' + - '#PolyamoryNews' + - '#PolyamoryintheNews' + - '#PolyintheMedia' + - '#QueerAnimals' + - '#QueerPolyamory' + last_post_language: "" + last_post_guid: 7dbdbf7f57d57a8125d113dadc1b6f0b score_criteria: cats: 5 description: 3 + feedlangs: 0 postcats: 3 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 18 + score: 21 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-4fd94efc44c061a8597efa8445b895ba.md b/content/discover/feed-4fd94efc44c061a8597efa8445b895ba.md new file mode 100644 index 000000000..9b2f9bcda --- /dev/null +++ b/content/discover/feed-4fd94efc44c061a8597efa8445b895ba.md @@ -0,0 +1,43 @@ +--- +title: localghost +date: "2024-05-12T00:00:00Z" +description: Sophie builds fun things out of HTML, CSS & JavaScript, and writes blog + posts about tech and mental health. +params: + feedlink: https://localghost.dev/feed.xml + feedtype: atom + feedid: 4fd94efc44c061a8597efa8445b895ba + websites: + https://localghost.dev/: false + blogrolls: [] + recommended: [] + recommender: + - https://frankmeeuwsen.com/feed.xml + - https://joeross.me/feed.xml + - https://rknight.me/subscribe/posts/rss.xml + categories: [] + relme: {} + last_post_title: Different ways to mock third-party integrations in Jest + last_post_description: "" + last_post_date: "2024-05-12T00:00:00Z" + last_post_link: https://localghost.dev/blog/different-ways-to-mock-third-party-integrations-in-jest/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 37e5bd8661b5c311e5f2f721b2cb2247 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 1 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-4ffc6847ff33e69f755af4cfea3933c3.md b/content/discover/feed-4ffc6847ff33e69f755af4cfea3933c3.md new file mode 100644 index 000000000..2935bd70f --- /dev/null +++ b/content/discover/feed-4ffc6847ff33e69f755af4cfea3933c3.md @@ -0,0 +1,65 @@ +--- +title: Initial Charge +date: "1970-01-01T00:00:00Z" +description: A daily weblog written and produced by Mike Rockwell which focuses on + Apple products, mobile applications, the web, and other geek-related topics. +params: + feedlink: https://initialcharge.net/feed/ + feedtype: rss + feedid: 4ffc6847ff33e69f755af4cfea3933c3 + websites: + https://initialcharge.net/: true + https://initialcharge.net/about/: false + https://initialcharge.net/projects/: false + https://initialcharge.net/support/: false + blogrolls: [] + recommended: [] + recommender: + - https://blog.numericcitizen.me/feed.xml + - https://blog.numericcitizen.me/podcast.xml + categories: + - Eugen Rochko + - Linked List + - Mastodon + - Online Publishing + - Open Web + relme: + https://initialcharge.net/: true + https://initialcharge.net/about/: true + https://initialcharge.net/projects/: true + https://initialcharge.net/support/: true + https://libertynode.cam/mike: true + https://libertynode.net/@initialcharge: true + https://libertynode.net/@mike: true + https://mdrockwell.net/: true + last_post_title: Introducing the fediverse:creator Tag + last_post_description: 'Eugen Rochko: To reinforce and encourage Mastodon as the + go-to place for journalism, we’re launching a new feature today. You will notice + that underneath some links shared on Mastodon, the author' + last_post_date: "2024-07-06T13:41:00Z" + last_post_link: https://initialcharge.net/2024/07/fediverse-creator-tag/ + last_post_categories: + - Eugen Rochko + - Linked List + - Mastodon + - Online Publishing + - Open Web + last_post_language: "" + last_post_guid: 010fdd274c2eb5bbbbd0d50b23962f7f + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 22 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-4ffe9c307d4fa211812749a251fbcdea.md b/content/discover/feed-4ffe9c307d4fa211812749a251fbcdea.md deleted file mode 100644 index ebd99c209..000000000 --- a/content/discover/feed-4ffe9c307d4fa211812749a251fbcdea.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Experience.Computer -date: "1970-01-01T00:00:00Z" -description: "Experience.Computer is slow radio about high tech. \nA podcast about - aphantasia, creativity, and the imagination. experience.computer" -params: - feedlink: https://api.substack.com/feed/podcast/2115741.rss - feedtype: rss - feedid: 4ffe9c307d4fa211812749a251fbcdea - websites: - https://experience.computer/podcast: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Arts - - Society & Culture - relme: {} - last_post_title: Kirsten Lepore - last_post_description: Jay Springett leads director and animator Kirsten Lepore - through a series of imaginative exercises. Then they discuss:* The process of - creating animation * The physicality of stop motion animation* - last_post_date: "2024-03-11T14:11:09Z" - last_post_link: https://experience.computer/p/kirsten-lepore - last_post_categories: [] - last_post_guid: 637b2c8e78bcebd0d389b8b455cf1b0d - score_criteria: - cats: 2 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 10 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-501f6ff7da2c254a8d69e18dac88213e.md b/content/discover/feed-501f6ff7da2c254a8d69e18dac88213e.md new file mode 100644 index 000000000..e484a98c5 --- /dev/null +++ b/content/discover/feed-501f6ff7da2c254a8d69e18dac88213e.md @@ -0,0 +1,43 @@ +--- +title: UFO Spares with Tony Warriner +date: "1970-01-01T00:00:00Z" +description: The ups and downs of my week in game development, with thoughts on the + creativity and the wider games industry. +params: + feedlink: https://tonywarriner.substack.com/feed + feedtype: rss + feedid: 501f6ff7da2c254a8d69e18dac88213e + websites: + https://tonywarriner.substack.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://tonywarriner.substack.com/: true + last_post_title: Progress! + last_post_description: Hi everyone! I’ve been running a devlog for my current projects + over on itch.io, but people started asking if they could subscribe… then I remembered + I have this substack. I’m basically + last_post_date: "2024-06-14T15:39:36Z" + last_post_link: https://tonywarriner.substack.com/p/progress + last_post_categories: [] + last_post_language: "" + last_post_guid: a6fbff0389287f539b8b7dc8b6e2895c + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-502cb861ecb02c5aafd5997f9cc14e79.md b/content/discover/feed-502cb861ecb02c5aafd5997f9cc14e79.md deleted file mode 100644 index 1ec91c075..000000000 --- a/content/discover/feed-502cb861ecb02c5aafd5997f9cc14e79.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Comments for Head in the Clouds -date: "1970-01-01T00:00:00Z" -description: Just another WordPress.com site -params: - feedlink: https://ahsalkeld.wordpress.com/comments/feed/ - feedtype: rss - feedid: 502cb861ecb02c5aafd5997f9cc14e79 - websites: - https://ahsalkeld.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Deap dive into using Heat Alarms by Ramon Caposole - last_post_description: Thanks very nice blog!| - last_post_date: "2017-04-30T19:20:00Z" - last_post_link: https://ahsalkeld.wordpress.com/2014/09/25/deap-dive-into-using-heat-alarms/#comment-165 - last_post_categories: [] - last_post_guid: d53914221e48f356e1966efb36b4d885 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-503ed7a82b1997a3c25d78fb2a7afbe8.md b/content/discover/feed-503ed7a82b1997a3c25d78fb2a7afbe8.md new file mode 100644 index 000000000..f73140671 --- /dev/null +++ b/content/discover/feed-503ed7a82b1997a3c25d78fb2a7afbe8.md @@ -0,0 +1,41 @@ +--- +title: malcolm +date: "2024-03-13T15:09:13Z" +description: Haskell Programmer +params: + feedlink: https://nhc98.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 503ed7a82b1997a3c25d78fb2a7afbe8 + websites: + https://nhc98.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://nhc98.blogspot.com/: true + https://www.blogger.com/profile/08863672971675777868: true + last_post_title: We are hiring Functional Programmers. + last_post_description: "" + last_post_date: "2017-02-13T19:51:27Z" + last_post_link: https://nhc98.blogspot.com/2017/02/we-are-hiring-functional-programmers.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 78edb40a067e554e99535742831f7325 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-504bc001c334e40eb2e189fa427c6fc1.md b/content/discover/feed-504bc001c334e40eb2e189fa427c6fc1.md new file mode 100644 index 000000000..4e57a3828 --- /dev/null +++ b/content/discover/feed-504bc001c334e40eb2e189fa427c6fc1.md @@ -0,0 +1,46 @@ +--- +title: Listening to Art +date: "1970-01-01T00:00:00Z" +description: Field recordings of visual art. By William Denton. +params: + feedlink: https://listeningtoart.org/feed/issues-mp3.xml + feedtype: rss + feedid: 504bc001c334e40eb2e189fa427c6fc1 + websites: + https://listeningtoart.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Art + - Sound + relme: + https://cosocial.ca/@wdenton: true + https://github.com/wdenton: true + https://listeningtoart.org/: true + https://staplr.org/: true + https://www.miskatonic.org/: true + last_post_title: '12.12: Marcel Duchamp, Fountain' + last_post_description: '12.12: Marcel Duchamp, Fountain' + last_post_date: "2023-05-01T08:00:00-04:00" + last_post_link: https://listeningtoart.org/12.12/ + last_post_categories: [] + last_post_language: "" + last_post_guid: c5f605993fff50c599e2412a1685463c + score_criteria: + cats: 2 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-50520411b847c711b0ea038500ef3b54.md b/content/discover/feed-50520411b847c711b0ea038500ef3b54.md deleted file mode 100644 index d18a6bd8e..000000000 --- a/content/discover/feed-50520411b847c711b0ea038500ef3b54.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Daryl Sun -date: "1970-01-01T00:00:00Z" -description: Public posts from @darylsun@social.lol -params: - feedlink: https://social.lol/@darylsun.rss - feedtype: rss - feedid: 50520411b847c711b0ea038500ef3b54 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5061ee11243cd5a28953102efdde9456.md b/content/discover/feed-5061ee11243cd5a28953102efdde9456.md deleted file mode 100644 index 76f8c1653..000000000 --- a/content/discover/feed-5061ee11243cd5a28953102efdde9456.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Comments for Felipe Contreras -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://felipec.wordpress.com/comments/feed/ - feedtype: rss - feedid: 5061ee11243cd5a28953102efdde9456 - websites: - https://felipec.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Proof that the Git project doesn’t allow criticism by - FelipeC - last_post_description: |- - In reply to David Barros. - - Moreover, I didn’t break the norms. - The Git - last_post_date: "2024-06-21T00:14:57Z" - last_post_link: https://felipec.wordpress.com/2024/03/04/proof-that-the-git-project-doesnt-allow-criticism/#comment-50233 - last_post_categories: [] - last_post_guid: 16bb4dfba9345781c4fe1c33972a1d8f - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-506c225d5eb24ee77b1a1181462bbce6.md b/content/discover/feed-506c225d5eb24ee77b1a1181462bbce6.md deleted file mode 100644 index e0985ea8c..000000000 --- a/content/discover/feed-506c225d5eb24ee77b1a1181462bbce6.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for Nottingham Hackspace -date: "1970-01-01T00:00:00Z" -description: Nottinghack is a Nottingham based group for hackers, makers and crafty - creatives! -params: - feedlink: https://nottinghack.org.uk/comments/feed/ - feedtype: rss - feedid: 506c225d5eb24ee77b1a1181462bbce6 - websites: - https://nottinghack.org.uk/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://hachyderm.io/@nottinghack: true - last_post_title: Comment on AGM 2019 – Results by December 2019 Newsletter – Nottingham - Hackspace - last_post_description: '[…] Read more […]' - last_post_date: "2019-12-28T02:14:18Z" - last_post_link: https://nottinghack.org.uk/agm-2019-results/#comment-1645 - last_post_categories: [] - last_post_guid: 115f353b4c6eb0fda378974079e381fb - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-506cd0cf149aa67dcacb69848ae84406.md b/content/discover/feed-506cd0cf149aa67dcacb69848ae84406.md new file mode 100644 index 000000000..f42977438 --- /dev/null +++ b/content/discover/feed-506cd0cf149aa67dcacb69848ae84406.md @@ -0,0 +1,42 @@ +--- +title: Information Flaneur - Links +date: "1970-01-01T00:00:00Z" +description: Libraries, information, computation. +params: + feedlink: https://www.hughrundle.net/links/rss.xml + feedtype: rss + feedid: 506cd0cf149aa67dcacb69848ae84406 + websites: + https://www.hughrundle.net/links/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://www.hughrundle.net/links/: true + last_post_title: Pop Culture + last_post_description: Covello believes that the combined expenditure of all parts + of the generative AI boom — data centers, utilities and applications — will cost + a trillion dollars in the next several years alone, + last_post_date: "2024-07-09T07:05:10+10:00" + last_post_link: https://www.hughrundle.net/links/35bb638d52033885e9a96f523bbb318a/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 2c4a7615229cbb72bcb0b6daa1abe4cc + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-50892503feac281deb2999e2af901578.md b/content/discover/feed-50892503feac281deb2999e2af901578.md deleted file mode 100644 index dd06304ae..000000000 --- a/content/discover/feed-50892503feac281deb2999e2af901578.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: GitHub -date: "1970-01-01T00:00:00Z" -description: Public posts from @github@hachyderm.io -params: - feedlink: https://hachyderm.io/@github.rss - feedtype: rss - feedid: 50892503feac281deb2999e2af901578 - websites: - https://hachyderm.io/@github: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/approved: true - https://github.com/: true - https://github.com/github: false - https://www.youtube.com/github: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5098805bcd71a69ceb40f19fd008a431.md b/content/discover/feed-5098805bcd71a69ceb40f19fd008a431.md new file mode 100644 index 000000000..75b81ab06 --- /dev/null +++ b/content/discover/feed-5098805bcd71a69ceb40f19fd008a431.md @@ -0,0 +1,70 @@ +--- +title: Past Midnight +date: "2024-04-01T08:00:51+02:00" +description: '...thoughts on people and software' +params: + feedlink: https://feeds.feedburner.com/PastMidnight + feedtype: atom + feedid: 5098805bcd71a69ceb40f19fd008a431 + websites: + https://blog.astithas.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - C++ + - CVS + - FireStatus + - FreeBSD + - GWT + - Greece + - Java + - JavaScript + - Linux + - Mac + - Subversion + - VC + - WebDAV + - business + - copyright + - databases + - economy + - gss + - jobs + - movies + - mozilla + - open-source + - personal + - programming + - software + - startups + - web + relme: + https://blog.astithas.com/: true + last_post_title: Feeling safer online with Firefox + last_post_description: "" + last_post_date: "2017-01-13T14:50:39+02:00" + last_post_link: http://blog.astithas.com/2017/01/feeling-safer-online-with-firefox.html + last_post_categories: + - mozilla + - software + - web + last_post_language: "" + last_post_guid: d1e920661547cb20fedc45a90cdd3e3b + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5098f4a613fe532b040dd897648cb6df.md b/content/discover/feed-5098f4a613fe532b040dd897648cb6df.md new file mode 100644 index 000000000..6cf85c707 --- /dev/null +++ b/content/discover/feed-5098f4a613fe532b040dd897648cb6df.md @@ -0,0 +1,50 @@ +--- +title: Snap Happy +date: "2024-07-09T03:27:54Z" +description: |- + Hi, I'm Alexandra + + + + Welcome to my photography blog, here you'll find photos of: + + The places I've been + The things I've seen<... +params: + feedlink: https://snaphappy.me/feed/ + feedtype: atom + feedid: 5098f4a613fe532b040dd897648cb6df + websites: + https://snaphappy.me/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://alexandrawolfe.ca/: true + https://snaphappy.me/: true + https://social.lol/@alexandra: true + last_post_title: Half a Door + last_post_description: "" + last_post_date: "2024-07-08T19:26:45Z" + last_post_link: https://snaphappy.me/half-a-door/ + last_post_categories: [] + last_post_language: "" + last_post_guid: f2fa87e368549be94cdedc1e492620a2 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-509ced6c2a8d3ba8b28d8e8f67e54ce6.md b/content/discover/feed-509ced6c2a8d3ba8b28d8e8f67e54ce6.md deleted file mode 100644 index 8c7c87dfe..000000000 --- a/content/discover/feed-509ced6c2a8d3ba8b28d8e8f67e54ce6.md +++ /dev/null @@ -1,55 +0,0 @@ ---- -title: The Art of Mastery -date: "1970-01-01T00:00:00Z" -description: Self-Improvement Tips to Master Life and Become The Best Version of Yourself -params: - feedlink: https://theartofmastery.com/feed/ - feedtype: rss - feedid: 509ced6c2a8d3ba8b28d8e8f67e54ce6 - websites: - https://fold.cm/profile/chrisaldrich: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Leadership and Management - - Personal Development - - 2023Goals - - AchievingSuccess - - CareerGoals - - GoalSetting - - PositiveThinking - - PracticalTips - - RealisticGoals - - TimeManagement - relme: {} - last_post_title: 8 Practical Tips for Setting and Reaching Smart Goals in 2023 - last_post_description: Setting smart goals is a great way to stay motivated and - make progress towards something that means something to you. ... Read more - last_post_date: "2022-12-22T18:19:57Z" - last_post_link: https://theartofmastery.com/8-practical-tips-for-setting-and-reaching-smart-goals-in-2023/ - last_post_categories: - - Leadership and Management - - Personal Development - - 2023Goals - - AchievingSuccess - - CareerGoals - - GoalSetting - - PositiveThinking - - PracticalTips - - RealisticGoals - - TimeManagement - last_post_guid: c1e7b60648e62d9703b6c7cf24186c26 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-50ca0d0faa3e9e2b708026366893d8fa.md b/content/discover/feed-50ca0d0faa3e9e2b708026366893d8fa.md deleted file mode 100644 index ef3994285..000000000 --- a/content/discover/feed-50ca0d0faa3e9e2b708026366893d8fa.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: OpenStack – toabctl's blog -date: "1970-01-01T00:00:00Z" -description: Just another weblog -params: - feedlink: https://toabctl.wordpress.com/tag/openstack/feed/ - feedtype: rss - feedid: 50ca0d0faa3e9e2b708026366893d8fa - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-50cbc57b05a905619489787d53ee3063.md b/content/discover/feed-50cbc57b05a905619489787d53ee3063.md deleted file mode 100644 index fd2f27f79..000000000 --- a/content/discover/feed-50cbc57b05a905619489787d53ee3063.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Kubernetes Contributors – Kubernetes Community -date: "1970-01-01T00:00:00Z" -description: Recent content in Kubernetes Community on Kubernetes Contributors -params: - feedlink: https://www.kubernetes.dev/index.xml - feedtype: rss - feedid: 50cbc57b05a905619489787d53ee3063 - websites: - https://www.kubernetes.dev/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://hachyderm.io/@K8sContributors: true - last_post_title: 'Blog: Introducing Hydrophone' - last_post_description: |- - In the ever-changing landscape of Kubernetes, ensuring that clusters operate as intended is - essential. This is where conformance testing becomes crucial, verifying that a Kubernetes cluster - meets the - last_post_date: "2024-05-23T00:00:00Z" - last_post_link: https://www.kubernetes.dev/blog/2024/05/23/introducing-hydrophone/ - last_post_categories: [] - last_post_guid: 5b3503a019da6599d6f91e3df8830a77 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-510af60c0806f09e3e08ce4cbf98d0d2.md b/content/discover/feed-510af60c0806f09e3e08ce4cbf98d0d2.md new file mode 100644 index 000000000..51bb3a357 --- /dev/null +++ b/content/discover/feed-510af60c0806f09e3e08ce4cbf98d0d2.md @@ -0,0 +1,46 @@ +--- +title: Stories by Mark Mayo on Medium +date: "1970-01-01T00:00:00Z" +description: Stories by Mark Mayo on Medium +params: + feedlink: https://medium.com/feed/@mmayo + feedtype: rss + feedid: 510af60c0806f09e3e08ce4cbf98d0d2 + websites: + https://medium.com/@mmayo?source=rss-5c6a321cb3bd------2: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - fediverse + - ios + - mastodon + relme: + https://medium.com/@mmayo?source=rss-5c6a321cb3bd------2: true + last_post_title: Why I’m all-in on the fediverse + last_post_description: "" + last_post_date: "2023-02-24T17:04:05Z" + last_post_link: https://medium.com/@mmayo/why-im-all-in-on-the-fediverse-ca5b22ec230d?source=rss-5c6a321cb3bd------2 + last_post_categories: + - fediverse + - ios + - mastodon + last_post_language: "" + last_post_guid: 72813bff75f3d64b4192b6c3c991b2e9 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-511137299bda49e99a022152e3cc3368.md b/content/discover/feed-511137299bda49e99a022152e3cc3368.md new file mode 100644 index 000000000..ff029d8cc --- /dev/null +++ b/content/discover/feed-511137299bda49e99a022152e3cc3368.md @@ -0,0 +1,44 @@ +--- +title: Blog +date: "1970-01-01T00:00:00Z" +description: Recent content on Blog +params: + feedlink: https://stephan.lachnit.xyz/index.xml + feedtype: rss + feedid: 511137299bda49e99a022152e3cc3368 + websites: + https://stephan.lachnit.xyz/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://github.com/stephanlachnit: true + https://stephan.lachnit.xyz/: true + last_post_title: Setting up fast Debian package builds using sbuild, mmdebstrap + and apt-cacher-ng + last_post_description: |- + In this post I will give a quick tutorial on how to set up fast Debian package builds using sbuild with mmdebstrap and apt-cacher-ng. + The usual tool for building Debian packages is dpkg-buildpackage, + last_post_date: "2023-02-08T19:49:11+01:00" + last_post_link: https://stephan.lachnit.xyz/posts/2023-02-08-debian-sbuild-mmdebstrap-apt-cacher-ng/ + last_post_categories: [] + last_post_language: "" + last_post_guid: c9a75d0c01447783772f3644369a122c + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-511507c935dd92f3b0e47308596fd215.md b/content/discover/feed-511507c935dd92f3b0e47308596fd215.md deleted file mode 100644 index c8fd9647a..000000000 --- a/content/discover/feed-511507c935dd92f3b0e47308596fd215.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Compiler Explorer -date: "1970-01-01T00:00:00Z" -description: Public posts from @compiler_explorer@hachyderm.io -params: - feedlink: https://hachyderm.io/@compiler_explorer.rss - feedtype: rss - feedid: 511507c935dd92f3b0e47308596fd215 - websites: - https://hachyderm.io/@compiler_explorer: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/approved: true - https://github.com/compiler-explorer/compiler-explorer: false - https://godbolt.org/: true - https://www.patreon.com/mattgodbolt: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-51167df258d83cc167c5d60a688cdfe8.md b/content/discover/feed-51167df258d83cc167c5d60a688cdfe8.md index 7f9a5536e..e6f792e10 100644 --- a/content/discover/feed-51167df258d83cc167c5d60a688cdfe8.md +++ b/content/discover/feed-51167df258d83cc167c5d60a688cdfe8.md @@ -1,6 +1,6 @@ --- title: Better Simple -date: "2024-05-23T20:23:51Z" +date: "2024-06-26T22:47:01Z" description: "" params: feedlink: https://www.better-simple.com/atom.xml @@ -13,27 +13,41 @@ params: recommender: - https://alexsci.com/blog/rss.xml categories: - - django + - Design + - Programming + - Project assessment + - Software engineering + - programming relme: https://fosstodon.org/@CodenameTim: true - last_post_title: Django Commons - A home for community-maintained Django packages - last_post_description: A community run GitHub organization to support community-maintained - third-party Django packages. - last_post_date: "2024-05-22T00:00:00Z" - last_post_link: https://www.better-simple.com/django/2024/05/22/looking-for-help-django-commons/ + https://www.better-simple.com/: true + last_post_title: How to assess a software project + last_post_description: An walk-through of how to breakdown a project to understand + the size and scope. + last_post_date: "2024-06-19T00:00:00Z" + last_post_link: https://www.better-simple.com/programming/2024/06/19/how-to-assess-a-software-project/ last_post_categories: - - django - last_post_guid: 6a23ee41cbeb999bc73f015a8ff2e391 + - Design + - Programming + - Project assessment + - Software engineering + - programming + last_post_language: "" + last_post_guid: 084717f39a96d59c981a516f5d0e7a3c score_criteria: cats: 0 description: 0 - postcats: 1 + feedlangs: 0 + postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 13 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-51248e76d4bd327096042b8a6112539e.md b/content/discover/feed-51248e76d4bd327096042b8a6112539e.md deleted file mode 100644 index ea9af6639..000000000 --- a/content/discover/feed-51248e76d4bd327096042b8a6112539e.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: knuspermagier.de -date: "1970-01-01T00:00:00Z" -description: Der private Blog von Philipp Waldhauer -params: - feedlink: https://knuspermagier.de/feed - feedtype: rss - feedid: 51248e76d4bd327096042b8a6112539e - websites: - https://knuspermagier.de/: true - blogrolls: [] - recommended: [] - recommender: - - https://jlelse.blog/.min.rss - - https://jlelse.blog/.rss - - https://jlelse.blog/index.xml - categories: [] - relme: - https://github.com/pwaldhauer: true - https://norden.social/@pwa: true - last_post_title: Für eine direkte Tailscale-Verbindung sorgen - last_post_description: Wenn man mal über das Tailscale-Netz auf seine NAS zugreifen - will und merkt, dass es total langsam ist, könnte es daran liegen, dass man keine - direkte Verbindung aufgebaut bekommen hat und alles - last_post_date: "2024-05-05T12:25:00+02:00" - last_post_link: https://knuspermagier.de/posts/2024/f-r-eine-direkte-tailscale-verbindung-sorgen - last_post_categories: [] - last_post_guid: 5525aedc8feff623fb840f25b5a64b5e - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 15 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-512f99867182050bc0955506e9185c5e.md b/content/discover/feed-512f99867182050bc0955506e9185c5e.md new file mode 100644 index 000000000..fd8f71a79 --- /dev/null +++ b/content/discover/feed-512f99867182050bc0955506e9185c5e.md @@ -0,0 +1,41 @@ +--- +title: la timeline di LIFO +date: "2024-07-09T03:15:01Z" +description: Updates from LIFO on Social GL-Como +params: + feedlink: https://social.gl-como.it/feed/lifo/activity + feedtype: atom + feedid: 512f99867182050bc0955506e9185c5e + websites: + https://social.gl-como.it/profile/lifo: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://social.gl-como.it/profile/lifo: true + last_post_title: E giusto giusto stasera, abbiam parlato di programmi per smaneggiare + sottotitoli all'incontro del LU... + last_post_description: "" + last_post_date: "2021-11-04T21:45:12Z" + last_post_link: https://social.gl-como.it/display/3e3ce0df-7561-8454-6832-4b8802814739 + last_post_categories: [] + last_post_language: "" + last_post_guid: 982318f26147b3dd7f1206e580c2f30b + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5145566f88440cc897dd3e9da2759919.md b/content/discover/feed-5145566f88440cc897dd3e9da2759919.md new file mode 100644 index 000000000..42c067ad8 --- /dev/null +++ b/content/discover/feed-5145566f88440cc897dd3e9da2759919.md @@ -0,0 +1,48 @@ +--- +title: nominolo's Blog +date: "2024-03-08T03:33:17+01:00" +description: "" +params: + feedlink: https://nominolo.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 5145566f88440cc897dd3e9da2759919 + websites: + https://nominolo.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Haskell + - Lisp + - Tutorial + - Virtual Machines + - darcs + - git + relme: + https://nominolo.blogspot.com/: true + https://www.blogger.com/profile/04274984206279511399: true + last_post_title: Beyond Package Version Policies + last_post_description: "" + last_post_date: "2012-08-17T17:14:41+02:00" + last_post_link: https://nominolo.blogspot.com/2012/08/beyond-package-version-policies.html + last_post_categories: + - Haskell + last_post_language: "" + last_post_guid: 74a3aea04b149900f070e3666712e6e5 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5152a128e1713dd5625d813832badb2d.md b/content/discover/feed-5152a128e1713dd5625d813832badb2d.md new file mode 100644 index 000000000..ab8a8e479 --- /dev/null +++ b/content/discover/feed-5152a128e1713dd5625d813832badb2d.md @@ -0,0 +1,58 @@ +--- +title: Josef "Jeff" Sipek +date: "2024-04-07T00:08:00Z" +description: Wasting time effectively +params: + feedlink: https://blahg.josefsipek.net/?feed=atom + feedtype: atom + feedid: 5152a128e1713dd5625d813832badb2d + websites: + https://blahg.josefsipek.net/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - AVR + - Atmel + - Electronics + - FreeBSD + - OCXO + - PPS + - chrony + - timekeeping + relme: + https://blahg.josefsipek.net/: true + last_post_title: Unsynchronized PPS Experiment + last_post_description: Late last summer I decided to do a simple experiment—feed + my server a PPS signal that wasn’t synchronized to any timescale. The idea was + to give chrony a reference that is more stable than the + last_post_date: "2024-04-07T00:08:00Z" + last_post_link: https://blahg.josefsipek.net/?p=611 + last_post_categories: + - AVR + - Atmel + - Electronics + - FreeBSD + - OCXO + - PPS + - chrony + - timekeeping + last_post_language: "" + last_post_guid: b9c02da604e09c51c03a98bedb1d89cc + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-515997a4955498fa8cec85e60fd90ff8.md b/content/discover/feed-515997a4955498fa8cec85e60fd90ff8.md new file mode 100644 index 000000000..3433dffd0 --- /dev/null +++ b/content/discover/feed-515997a4955498fa8cec85e60fd90ff8.md @@ -0,0 +1,49 @@ +--- +title: The Audacity to Code +date: "2024-03-14T10:22:30-07:00" +description: "" +params: + feedlink: https://kirkmcdonald.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 515997a4955498fa8cec85e60fd90ff8 + websites: + https://kirkmcdonald.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - D Conference 2007 + - D programming language + - DSource + - Go programming language + - PySoy + - Pyd + - Python + relme: + https://kirkmcdonald.blogspot.com/: true + https://www.blogger.com/profile/04406863919785076582: true + last_post_title: On the Compilation of Go Packages + last_post_description: "" + last_post_date: "2009-11-13T11:29:28-08:00" + last_post_link: https://kirkmcdonald.blogspot.com/2009/11/on-compilation-of-go-packages.html + last_post_categories: + - Go programming language + last_post_language: "" + last_post_guid: f987033537b11accd7b8455a663dc058 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-51794d81aa9a8172ce0ca6211f2d7bd8.md b/content/discover/feed-51794d81aa9a8172ce0ca6211f2d7bd8.md new file mode 100644 index 000000000..6552fc5b3 --- /dev/null +++ b/content/discover/feed-51794d81aa9a8172ce0ca6211f2d7bd8.md @@ -0,0 +1,50 @@ +--- +title: emptywheel +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://www.emptywheel.net/feed/ + feedtype: rss + feedid: 51794d81aa9a8172ce0ca6211f2d7bd8 + websites: + https://www.emptywheel.net/: false + blogrolls: [] + recommended: [] + recommender: + - http://scripting.com/rss.xml + - http://scripting.com/rssNightly.xml + categories: + - 2024 Presidential Election + - Kevin O'Connor + - Peter Baker + relme: {} + last_post_title: Peter Baker Argues Joe Biden Is Unfit because Peter Baker Is Too + Lazy to Read the Homework + last_post_description: Peter Baker read a report saying that Biden's physician added + a movement disorder neurologic specialist to treat Biden's gait problem, and instead + concluded that the movement disorder neurologic + last_post_date: "2024-07-08T19:22:35Z" + last_post_link: https://www.emptywheel.net/2024/07/08/peter-baker-argues-joe-biden-is-unfit-because-peter-baker-is-too-lazy-to-read-the-homework/ + last_post_categories: + - 2024 Presidential Election + - Kevin O'Connor + - Peter Baker + last_post_language: "" + last_post_guid: 4e99bff1863b8afc0f19377eaba12a7c + score_criteria: + cats: 0 + description: 0 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 1 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-517a7a89084853c56a90b45a287676a4.md b/content/discover/feed-517a7a89084853c56a90b45a287676a4.md new file mode 100644 index 000000000..fbd13161b --- /dev/null +++ b/content/discover/feed-517a7a89084853c56a90b45a287676a4.md @@ -0,0 +1,47 @@ +--- +title: Eclipse Summer of Code +date: "2024-06-10T07:54:47Z" +description: "" +params: + feedlink: https://eclipse-soc.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 517a7a89084853c56a90b45a287676a4 + websites: + https://eclipse-soc.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Improving Eclipse Search + - Integate and Connect your Clients + - Status + - eclipse + - soc + relme: + https://eclipse-soc.blogspot.com/: true + https://irbull.blogspot.com/: true + https://www.blogger.com/profile/02668098567506210626: true + last_post_title: A disruptive technology for code generation + last_post_description: "" + last_post_date: "2008-06-18T14:50:55Z" + last_post_link: https://eclipse-soc.blogspot.com/2008/06/disruptive-technology-for-code.html + last_post_categories: [] + last_post_language: "" + last_post_guid: aa1be725dbbf200280333e937bd33166 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5190de89ee4518b0e1f1a84e1016856f.md b/content/discover/feed-5190de89ee4518b0e1f1a84e1016856f.md index 9a39f9594..0d3ffa9b7 100644 --- a/content/discover/feed-5190de89ee4518b0e1f1a84e1016856f.md +++ b/content/discover/feed-5190de89ee4518b0e1f1a84e1016856f.md @@ -16,24 +16,28 @@ params: - http://scripting.com/rssNightly.xml categories: [] relme: {} - last_post_title: They looked from Google to OpenAI, and back again, and couldn't - tell them apart - last_post_description: Bad things happen when hubristic aims collide at the midpoint - of ambitions - last_post_date: "2024-05-31T07:45:31Z" - last_post_link: https://socialwarming.substack.com/p/they-looked-from-google-to-openai + last_post_title: election night is calling + last_post_description: Plus AI video gets sporty with Wimbledon, gymnastics and + cycling + last_post_date: "2024-07-05T07:45:45Z" + last_post_link: https://socialwarming.substack.com/p/election-night-is-calling last_post_categories: [] - last_post_guid: a8c84505d538d42d08dc80f29e413025 + last_post_language: "" + last_post_guid: 86db652fc0c360b9b5f369c7164cb252 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-5193cdbee399c8cf31890a165da46c47.md b/content/discover/feed-5193cdbee399c8cf31890a165da46c47.md new file mode 100644 index 000000000..251719acf --- /dev/null +++ b/content/discover/feed-5193cdbee399c8cf31890a165da46c47.md @@ -0,0 +1,65 @@ +--- +title: 4urIT +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://4urit.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 5193cdbee399c8cf31890a165da46c47 + websites: + https://4urit.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - AtlanMod "atlantic zoo" + - CDO + - DSL + - MOSkitt + - Model analysis + - chad fowler + - complexity + - complexity elegant wrong + - model repository + - modeling versioning + - openarchitectureware + - papyrus + - semantic versioning + - the passionate programmer + - topcased + relme: + https://4urit.blogspot.com/: true + https://huggenberg.blogspot.com/: true + https://madmeiersadventures.blogspot.com/: true + https://madmeierscloud.blogspot.com/: true + https://madmeierslife.blogspot.com/: true + https://madmeierstwike.blogspot.com/: true + https://mmsketches.blogspot.com/: true + https://www.blogger.com/profile/14628306885093928732: true + last_post_title: Model Analysis / Transformation + last_post_description: |- + Here are a bunch of links which are interesting: +  Mola + last_post_date: "2010-10-16T18:50:00Z" + last_post_link: https://4urit.blogspot.com/2010/10/model-analysis-transformation.html + last_post_categories: + - Model analysis + last_post_language: "" + last_post_guid: b81bf47d2f7300d8238018b17a3a6457 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-51a07728ed3d92b98a36ae7aec0a0145.md b/content/discover/feed-51a07728ed3d92b98a36ae7aec0a0145.md deleted file mode 100644 index 0b4a2e8bc..000000000 --- a/content/discover/feed-51a07728ed3d92b98a36ae7aec0a0145.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Comments for Dan Q -date: "1970-01-01T00:00:00Z" -description: 'Personal blog of Dan Q: hacker, magician, geocacher, gamer...' -params: - feedlink: https://danq.uk/comments/feed/ - feedtype: rss - feedid: 51a07728ed3d92b98a36ae7aec0a0145 - websites: - https://danq.uk/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on [Article] Woke Kids by Katie Sutton - last_post_description: I mean, I'm not entirely surprised with a family like yours - around her. - last_post_date: "2024-06-02T15:53:45+01:00" - last_post_link: https://danq.me/2024/06/02/woke-kids/#comment-249520 - last_post_categories: [] - last_post_guid: 861cadf99b5ab5b08457bbd4e948d318 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-51b02eedddb6a899a6d040f6e766a566.md b/content/discover/feed-51b02eedddb6a899a6d040f6e766a566.md new file mode 100644 index 000000000..9a224d3d8 --- /dev/null +++ b/content/discover/feed-51b02eedddb6a899a6d040f6e766a566.md @@ -0,0 +1,145 @@ +--- +title: DIY & dragons +date: "2024-07-08T01:37:12-07:00" +description: "" +params: + feedlink: https://diyanddragons.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 51b02eedddb6a899a6d040f6e766a566 + websites: + https://diyanddragons.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - 5e + - actual play + - adventure + - advice + - appendix n + - art & illustration + - b/x-ish + - barrowmaze + - bernie the flumph + - black powder black magic + - boardgames + - bon mots + - book cover trends + - book review + - books i want to read + - campaigns i want to run + - castle gargantua + - challenges + - characters i want to play + - cities + - combat + - comics + - community projects + - conversations + - crawl-thulhu + - dark sun + - dcc + - downtime + - dungeon alphabet dozen + - dungeons & decorators + - dungeons i want to explore + - endless forms most beautiful + - equipment + - factions + - fantasy heartbreak workshop + - games i want to play + - gfa + - glog + - grotesque & dungeonesque + - hallways + - horned king + - i2to + - index + - interplanetary fantasy + - island of the blue giants + - jrpg - snes + - kansas city + - lego rpg contest + - lesserton & mor + - links + - long quotes + - maps + - mausritter + - mcc - broken moon + - mechanics i want to use + - miscellany + - monsters i want to fight + - music + - my art + - my brilliant friends + - mycetes-thrax + - mystery & intrigue + - night garden at the vanishing oasis + - non-core + - nostalgia + - nutcracker princesses + - occupations + - our world - lost world + - papers & pencils + - pathfinder + - patrons + - player art + - prismatic wasteland + - procedural generation + - procedural generation demonstration + - psychedelic cosmonauts + - public domain art + - reader suggestions + - redlands - rotlands + - resource management + - resurrection of wormwood + - reviews + - rhythmic gymnastics + - roadside picnic basket book club + - ryuutama + - scifi remix + - secret santicorn + - shadows of brimstone + - shameless self-promotion + - sorcerers skull + - spells i want to cast + - star trek + - tolkienian science fantasy + - treasures i want to steal + - undermountain + - urutsk + - wizard city + - worldbuilding + - worm god + relme: + https://diyanddragons.blogspot.com/: true + last_post_title: Helpful Links for the LEGO RPG Jam + last_post_description: "" + last_post_date: "2024-05-31T10:27:54-07:00" + last_post_link: https://diyanddragons.blogspot.com/2024/05/helpful-links-for-lego-rpg-jam.html + last_post_categories: + - community projects + - lego rpg contest + - links + last_post_language: "" + last_post_guid: 8de2d11e588e622bbdf4c88d2cf0f1a1 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 23 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-51b4d41aaa65349ce99e17ae1b485f4c.md b/content/discover/feed-51b4d41aaa65349ce99e17ae1b485f4c.md deleted file mode 100644 index 261bef048..000000000 --- a/content/discover/feed-51b4d41aaa65349ce99e17ae1b485f4c.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Backloggery -date: "1970-01-01T00:00:00Z" -description: Public posts from @backloggery@hachyderm.io -params: - feedlink: https://hachyderm.io/@backloggery.rss - feedtype: rss - feedid: 51b4d41aaa65349ce99e17ae1b485f4c - websites: - https://hachyderm.io/@Backloggery: false - https://hachyderm.io/@backloggery: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://backloggery.com/: false - https://community.hachyderm.io/approved: false - https://www.patreon.com/backloggery: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-51c017c68fdb9df3dbd314b83ab38e4d.md b/content/discover/feed-51c017c68fdb9df3dbd314b83ab38e4d.md new file mode 100644 index 000000000..bf25dda17 --- /dev/null +++ b/content/discover/feed-51c017c68fdb9df3dbd314b83ab38e4d.md @@ -0,0 +1,40 @@ +--- +title: Eka Badakachi Diary +date: "2024-04-26T12:08:19-07:00" +description: "" +params: + feedlink: https://eka-badakachi-diary.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 51c017c68fdb9df3dbd314b83ab38e4d + websites: + https://eka-badakachi-diary.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://eka-badakachi-diary.blogspot.com/: true + last_post_title: Eka Badakachi Diary + last_post_description: "" + last_post_date: "2006-06-06T00:38:00-07:00" + last_post_link: https://eka-badakachi-diary.blogspot.com/2006/06/eka-badakachi-diary.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 5ff73648eac55b154fa24d37e4fbd168 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-51c60d9f0eb8dad85bad3efb44bde1fe.md b/content/discover/feed-51c60d9f0eb8dad85bad3efb44bde1fe.md deleted file mode 100644 index 7b5507aac..000000000 --- a/content/discover/feed-51c60d9f0eb8dad85bad3efb44bde1fe.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Comments for heyokyay -date: "1970-01-01T00:00:00Z" -description: Comics -params: - feedlink: https://heyokyay.com/comments/feed/ - feedtype: rss - feedid: 51c60d9f0eb8dad85bad3efb44bde1fe - websites: - https://heyokyay.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-51cba66c5af8fcde97e6bc467ac33a2a.md b/content/discover/feed-51cba66c5af8fcde97e6bc467ac33a2a.md new file mode 100644 index 000000000..6a16ac65c --- /dev/null +++ b/content/discover/feed-51cba66c5af8fcde97e6bc467ac33a2a.md @@ -0,0 +1,137 @@ +--- +title: Typed Logic +date: "2024-07-07T13:37:56-07:00" +description: Incorporates strong typing over predicate logic programming, and, conversely, + incorporates predicate logic programming into strongly typed functional languages. The + style of predicate logic is from +params: + feedlink: https://logicaltypes.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 51cba66c5af8fcde97e6bc467ac33a2a + websites: + https://logicaltypes.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 1HaskellADay + - 1Liner + - AWS + - Data Structures + - Dependent Types + - Dylan + - GraphConnect2015 + - Gödel numbering + - HBase + - Hadoop + - Idris + - Kleisli arrows + - LogicalTypes + - WIP + - abstract nonsense + - arrow + - artificial intelligence + - atozchallenge + - bayesian classifiers + - big data + - business + - case study + - category theory + - clark kent + - cloud + - combinatory logic + - comonad + - conference + - continuations + - design patterns + - difference lists + - education + - efficiency + - either + - exercise + - family + - football + - fuzzy + - graph theory + - haskell + - housekeeping + - inquiry + - install + - introduction + - intuitionistic logic + - java + - knowledge + - knowledge engineering + - learning + - libraries + - license + - mathematics + - maybe + - meetup + - memoization + - mission statement + - monad + - monad transformers + - monadplus + - money + - monoid + - news + - nondeterminism + - on-the-job + - operations + - outliers + - parsing + - pensées + - philosophy + - physics + - poem + - problem-solving + - prolog + - proof + - reading list + - rule-based programming + - superman + - survey + - syntax + - testing + - the 'real world' + - the crazy ones + - theory + - tuple + - unification + - wisdom + - work + - κ-calculus + relme: + https://dauclair.blogspot.com/: true + https://halo-legendz.blogspot.com/: true + https://logicaltypes.blogspot.com/: true + https://odst-geophf.blogspot.com/: true + https://twilight-dad.blogspot.com/: true + https://www.blogger.com/profile/09936874508556500234: true + last_post_title: November, 2021 1HaskellADay 1Liners + last_post_description: "" + last_post_date: "2021-11-09T16:12:11-08:00" + last_post_link: https://logicaltypes.blogspot.com/2021/11/november-2021-1haskelladay-1liners.html + last_post_categories: + - 1HaskellADay + - 1Liner + last_post_language: "" + last_post_guid: dac57f9579684c2275dcb084da5a31d8 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-51cd084c0ef535f2c2435ed3c8a76806.md b/content/discover/feed-51cd084c0ef535f2c2435ed3c8a76806.md deleted file mode 100644 index 9c8053984..000000000 --- a/content/discover/feed-51cd084c0ef535f2c2435ed3c8a76806.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Heiko Bielinski -date: "1970-01-01T00:00:00Z" -description: Public posts from @heibie@mastodon.social -params: - feedlink: https://mastodon.social/@heibie.rss - feedtype: rss - feedid: 51cd084c0ef535f2c2435ed3c8a76806 - websites: - https://mastodon.social/@heibie: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://bielinski.de/: true - https://einfachautofreileben.de/: false - https://instagram.com/heibie: false - https://twitter.com/heibie: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-51d1812800beb90ed55c07450a200881.md b/content/discover/feed-51d1812800beb90ed55c07450a200881.md new file mode 100644 index 000000000..3f2711d6e --- /dev/null +++ b/content/discover/feed-51d1812800beb90ed55c07450a200881.md @@ -0,0 +1,139 @@ +--- +title: Chegg And Bubble +date: "2024-02-07T22:15:43-08:00" +description: Chegg is not like college +params: + feedlink: https://pasarnomorjitu.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 51d1812800beb90ed55c07450a200881 + websites: + https://pasarnomorjitu.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Chegg is a college + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: What Is Chegg + last_post_description: "" + last_post_date: "2021-05-06T11:18:33-07:00" + last_post_link: https://pasarnomorjitu.blogspot.com/2021/05/what-is-chegg.html + last_post_categories: + - Chegg is a college + last_post_language: "" + last_post_guid: 3df5c6f359b8f4637d1bd4aeda8f61ef + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-51e83d65136bd92d52992e78c8c66eb1.md b/content/discover/feed-51e83d65136bd92d52992e78c8c66eb1.md new file mode 100644 index 000000000..ab44605d7 --- /dev/null +++ b/content/discover/feed-51e83d65136bd92d52992e78c8c66eb1.md @@ -0,0 +1,41 @@ +--- +title: Del-Alt-Ctrl +date: "2024-06-30T13:15:55-07:00" +description: "" +params: + feedlink: https://delaltctrl.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 51e83d65136bd92d52992e78c8c66eb1 + websites: + https://delaltctrl.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://delaltctrl.blogspot.com/: true + https://www.blogger.com/profile/18263589361673145166: true + last_post_title: When Rigor becomes Rigor Mortis + last_post_description: "" + last_post_date: "2011-09-05T23:24:26-07:00" + last_post_link: https://delaltctrl.blogspot.com/2011/09/when-rigor-becomes-rigor-mortis.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 9f4bda4dfcd8ff93ba99c628896bcb47 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-51e8bcaa24e02cf767d463af67c1a90a.md b/content/discover/feed-51e8bcaa24e02cf767d463af67c1a90a.md deleted file mode 100644 index ee7f317fe..000000000 --- a/content/discover/feed-51e8bcaa24e02cf767d463af67c1a90a.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: arnar -date: "1970-01-01T00:00:00Z" -description: Public posts from @arnar@vivaldi.net -params: - feedlink: https://social.vivaldi.net/@arnar.rss - feedtype: rss - feedid: 51e8bcaa24e02cf767d463af67c1a90a - websites: - https://social.vivaldi.net/@arnar: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://vivaldi.com/team/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-51f072454d6614eaf13941f235725bf9.md b/content/discover/feed-51f072454d6614eaf13941f235725bf9.md deleted file mode 100644 index 0242ba6af..000000000 --- a/content/discover/feed-51f072454d6614eaf13941f235725bf9.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: David Johnson -date: "1970-01-01T00:00:00Z" -description: An Englishman abroad | Aspiring meditator and writer | HSP | he/him -params: - feedlink: https://www.crossingthethreshold.net/podcast.xml - feedtype: rss - feedid: 51f072454d6614eaf13941f235725bf9 - websites: - https://www.crossingthethreshold.net/: true - https://www.crossingthethreshold.net/about/: false - https://www.crossingthethreshold.net/behind-the-thoughts/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Society & Culture - relme: - https://micro.blog/crossingthethreshold: false - https://social.lol/@ctt: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 1 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 11 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-5209cedc19d30b463b6a20235ff197e4.md b/content/discover/feed-5209cedc19d30b463b6a20235ff197e4.md deleted file mode 100644 index 0e8bfb8ff..000000000 --- a/content/discover/feed-5209cedc19d30b463b6a20235ff197e4.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: OddBird -date: "1970-01-01T00:00:00Z" -description: Public posts from @OddBird@front-end.social -params: - feedlink: https://front-end.social/@OddBird.rss - feedtype: rss - feedid: 5209cedc19d30b463b6a20235ff197e4 - websites: - https://front-end.social/@OddBird: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://www.oddbird.net/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-520ed1992dab886c51f3a05d9129480e.md b/content/discover/feed-520ed1992dab886c51f3a05d9129480e.md new file mode 100644 index 000000000..f7303d9a0 --- /dev/null +++ b/content/discover/feed-520ed1992dab886c51f3a05d9129480e.md @@ -0,0 +1,85 @@ +--- +title: Java Persistence Performance +date: "1970-01-01T00:00:00Z" +description: A blog on Java, performance, scalability, concurrency, object-relational + mapping (ORM), Java Persistence API (JPA), persistence, databases, caching, Oracle, + MySQL, NoSQL, XML, JSON, EclipseLink, +params: + feedlink: https://java-persistence-performance.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 520ed1992dab886c51f3a05d9129480e + websites: + https://java-persistence-performance.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - batch + - batch-fetch + - benchmark + - cache + - cluster + - concurrency + - eclipselink + - hierarchical + - history + - index + - java + - join-fetch + - jpa + - jpql + - json + - jvm + - kryo + - lists + - maps + - mongo-db + - moxy + - no-sql + - partitioning + - pof + - reflection + - sequence + - serialization + - sql + - synchronized + - tuning + - volatile + - xml + relme: + https://draft.blogger.com/profile/07275512393744882781: true + https://java-persistence-performance.blogspot.com/: true + last_post_title: Optimizing Java Serialization - Java vs XML vs JSON vs Kryo vs + POF + last_post_description: Perhaps I'm naive, but I always thought Java serialization + must surely be the fastest and most efficient way to serialize Java objects into + binary form. After all, Java is on it's 7th major release, + last_post_date: "2013-08-13T15:52:00Z" + last_post_link: https://java-persistence-performance.blogspot.com/2013/08/optimizing-java-serialization-java-vs.html + last_post_categories: + - eclipselink + - json + - kryo + - moxy + - pof + - serialization + - xml + last_post_language: "" + last_post_guid: 83cd91e4dcb28b4bf2043767b006608c + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-522a5e913f26b4e045ed906ab4195b32.md b/content/discover/feed-522a5e913f26b4e045ed906ab4195b32.md new file mode 100644 index 000000000..f0fa9694c --- /dev/null +++ b/content/discover/feed-522a5e913f26b4e045ed906ab4195b32.md @@ -0,0 +1,44 @@ +--- +title: Xoltar +date: "1970-01-01T00:00:00Z" +description: A blog by Bryn Keller about simplicity and clarity in software and in + life +params: + feedlink: https://www.xoltar.org/rss.xml + feedtype: rss + feedid: 522a5e913f26b4e045ed906ab4195b32 + websites: + https://www.xoltar.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://github.com/xoltar: true + https://www.xoltar.org/: true + last_post_title: 'Machine learning, drones, and whales: A great combination!' + last_post_description: 'Last June, a simple question changed my life: “Hey Bryn, + what do you know about whales?” Of course like most people, my answer was “Not + much,” but that marked the beginning of an important' + last_post_date: "2018-04-26T00:00:00Z" + last_post_link: http://www.xoltar.org/posts/2018-04-26-whale-expedition/index.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 1cca07ab41a90f496da0a6ece84bc7af + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-52360a334472eeb6cebc4d7ce089f9e9.md b/content/discover/feed-52360a334472eeb6cebc4d7ce089f9e9.md deleted file mode 100644 index c9cef97c6..000000000 --- a/content/discover/feed-52360a334472eeb6cebc4d7ce089f9e9.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Collider Blog -date: "1970-01-01T00:00:00Z" -description: Commentary on Research at the Tevatron and the LHC -params: - feedlink: https://muon.wordpress.com/feed/ - feedtype: rss - feedid: 52360a334472eeb6cebc4d7ce089f9e9 - websites: - https://muon.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Particle Physics - relme: {} - last_post_title: ATLAS empirical electron-muon test - last_post_description: What is relatively new is that this analysis looks at charge - and flavor in the hopes of observing a telltale deviation from the standard model. - last_post_date: "2021-12-27T20:59:52Z" - last_post_link: https://muon.wordpress.com/2021/12/27/atlas-empirical-electron-muon-test/ - last_post_categories: - - Particle Physics - last_post_guid: 18e349c3cf7e37b553c778637b021bc4 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-524fe1e0fadfa5c0e734edaeb6fc123d.md b/content/discover/feed-524fe1e0fadfa5c0e734edaeb6fc123d.md new file mode 100644 index 000000000..27375bb9b --- /dev/null +++ b/content/discover/feed-524fe1e0fadfa5c0e734edaeb6fc123d.md @@ -0,0 +1,56 @@ +--- +title: Wizard Thief Fighter +date: "1970-01-01T00:00:00Z" +description: and the fabulous journeys of the stratometaship +params: + feedlink: https://www.wizardthieffighter.com/feed/ + feedtype: rss + feedid: 524fe1e0fadfa5c0e734edaeb6fc123d + websites: + https://www.wizardthieffighter.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - Roleplaytime + - UVG + - car battles + - golem + - osr + - racing + relme: {} + last_post_title: Exploding Autogolems + last_post_description: Recently, someone on the stratometaship (my patreon discord + server) asked about thoughts on person-to-vehicle damage. Now, while I’ve always + had a fondness for RIFTS-style megadamage … I + last_post_date: "2024-06-05T03:03:15Z" + last_post_link: https://www.wizardthieffighter.com/2024/exploding-autogolems/ + last_post_categories: + - Roleplaytime + - UVG + - car battles + - golem + - osr + - racing + last_post_language: "" + last_post_guid: b9b27cd59878341642a9aec85788b096 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-52547e700346a44685aaa7adfdbfd005.md b/content/discover/feed-52547e700346a44685aaa7adfdbfd005.md deleted file mode 100644 index 66a1cb928..000000000 --- a/content/discover/feed-52547e700346a44685aaa7adfdbfd005.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Vimeo / Paul Downey’s videos -date: "2008-11-28T07:31:49-05:00" -description: Videos uploaded by Paul Downey on Vimeo. -params: - feedlink: https://vimeo.com/pdowney/videos/rss - feedtype: rss - feedid: 52547e700346a44685aaa7adfdbfd005 - websites: - https://vimeo.com/pdowney/videos: true - https://www.vimeo.com/pdowney: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Geofabrik - last_post_description: Nice movie built using JQuery and static images - last_post_date: "2008-11-28T07:31:49-05:00" - last_post_link: https://vimeo.com/2369437 - last_post_categories: [] - last_post_guid: f0575ae04371a8ea1229a15b7ca36969 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-52549915cc83f84f4db22f0bd57abcab.md b/content/discover/feed-52549915cc83f84f4db22f0bd57abcab.md deleted file mode 100644 index ab0784e2a..000000000 --- a/content/discover/feed-52549915cc83f84f4db22f0bd57abcab.md +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: Trains for Europe -date: "1970-01-01T00:00:00Z" -description: New night trains for cross-border routes -params: - feedlink: https://trainsforeurope.eu/feed/ - feedtype: rss - feedid: 52549915cc83f84f4db22f0bd57abcab - websites: - https://trainsforeurope.eu/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Analysis - - Denmark - - European Union - - Germany - - Sweden - relme: - https://gruene.social/@jon: true - last_post_title: A different solution for night trains – a flexible leasing and - operations company? - last_post_description: From the start of this Trains for Europe campaign I have - argued that the absence of enough couchette cars and sleeping cars is the main - constraint on the expansion of night train services. You cannot - last_post_date: "2022-10-12T14:57:30Z" - last_post_link: https://trainsforeurope.eu/a-different-solution-for-night-trains-a-flexible-leasing-and-operations-company/ - last_post_categories: - - Analysis - - Denmark - - European Union - - Germany - - Sweden - last_post_guid: e93be8cdbcd89e36cac80f1440cd5ed5 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-525ca01b7a1fff43427dfeeb75314f1f.md b/content/discover/feed-525ca01b7a1fff43427dfeeb75314f1f.md new file mode 100644 index 000000000..eae2e4eb8 --- /dev/null +++ b/content/discover/feed-525ca01b7a1fff43427dfeeb75314f1f.md @@ -0,0 +1,39 @@ +--- +title: Zach Leatherman +date: "2024-06-30T00:00:00Z" +description: A web development blog written by @zachleat. +params: + feedlink: https://www.zachleat.com/web/feed + feedtype: atom + feedid: 525ca01b7a1fff43427dfeeb75314f1f + websites: {} + blogrolls: [] + recommended: [] + recommender: + - https://rknight.me/subscribe/posts/rss.xml + categories: [] + relme: {} + last_post_title: The Smorgasbord of Windows Terminal… Windows + last_post_description: "" + last_post_date: "2024-06-30T00:00:00Z" + last_post_link: https://www.zachleat.com/web/smorgasbord-windows-terminal/ + last_post_categories: [] + last_post_language: "" + last_post_guid: d7bfda3b71bac00390d743f4a9aebe57 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 0 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-527897d63cb79737f1e15ce8362b4ace.md b/content/discover/feed-527897d63cb79737f1e15ce8362b4ace.md new file mode 100644 index 000000000..24a99efac --- /dev/null +++ b/content/discover/feed-527897d63cb79737f1e15ce8362b4ace.md @@ -0,0 +1,42 @@ +--- +title: Mobalada Web +date: "2023-06-20T09:33:20-03:00" +description: |- + Mobalada Web: Protótipo Social de interagir e procurar as melhores baladas da sua cidade + (Atualmente: Recife - PE - Brasil) +params: + feedlink: https://mobalada.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 527897d63cb79737f1e15ce8362b4ace + websites: + https://mobalada.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://mobalada.blogspot.com/: true + last_post_title: Bares e boates + last_post_description: "" + last_post_date: "2006-12-17T20:29:36-03:00" + last_post_link: https://mobalada.blogspot.com/2006/12/bares-e-boates.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 64635a99d3dc1d6c019675cef4eced4f + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-528e951f39b1f4ed80f39df4051609f1.md b/content/discover/feed-528e951f39b1f4ed80f39df4051609f1.md new file mode 100644 index 000000000..0c4e0c07e --- /dev/null +++ b/content/discover/feed-528e951f39b1f4ed80f39df4051609f1.md @@ -0,0 +1,43 @@ +--- +title: Following Flo +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://following-flo.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 528e951f39b1f4ed80f39df4051609f1 + websites: + https://following-flo.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://following-flo.blogspot.com/: true + https://www.blogger.com/profile/12987550199172473173: true + last_post_title: JWT moved to Eclipse SOA + last_post_description: 'The Eclipse SOA top-level project has a new member: the + Java Workflow Tooling (JWT) project finished the Move Review successfully. JWT + aims to build design time, development time and runtime workflow' + last_post_date: "2010-03-17T21:14:00Z" + last_post_link: https://following-flo.blogspot.com/2010/03/jwt-moved-to-eclipse-soa.html + last_post_categories: [] + last_post_language: "" + last_post_guid: f758e4f679a9d1f441621963c80f1c7c + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-52b44f93bf7f8a9f9acc62670780df7c.md b/content/discover/feed-52b44f93bf7f8a9f9acc62670780df7c.md new file mode 100644 index 000000000..7977bd609 --- /dev/null +++ b/content/discover/feed-52b44f93bf7f8a9f9acc62670780df7c.md @@ -0,0 +1,40 @@ +--- +title: Hidde's blog +date: "2024-04-10T00:00:00Z" +description: Posts about HTML, CSS, JavaScript, accessibility and browsers from the + perspective of a curious front-end developer. +params: + feedlink: https://hidde.blog/feed + feedtype: atom + feedid: 52b44f93bf7f8a9f9acc62670780df7c + websites: {} + blogrolls: [] + recommended: [] + recommender: + - https://visitmy.website/feed.xml + categories: [] + relme: {} + last_post_title: Styleguides for better front-ends + last_post_description: "" + last_post_date: "2013-11-18T00:00:00Z" + last_post_link: https://hidde.blog/styleguides-for-better-front-ends/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 1cebb8ede5c589ceb3c6a7ba91ed9009 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 0 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-52c96fde6273d329dd84556fbc72e475.md b/content/discover/feed-52c96fde6273d329dd84556fbc72e475.md new file mode 100644 index 000000000..f3e2fa275 --- /dev/null +++ b/content/discover/feed-52c96fde6273d329dd84556fbc72e475.md @@ -0,0 +1,61 @@ +--- +title: Comments for Josh Betz +date: "1970-01-01T00:00:00Z" +description: "Made with \U0001F9C0 in Madison" +params: + feedlink: https://josh.blog/comments/feed + feedtype: rss + feedid: 52c96fde6273d329dd84556fbc72e475 + websites: + https://josh.blog/: true + blogrolls: + - https://josh.blog/.well-known/recommendations.opml + recommended: + - http://scripting.com/rss.xml + - https://aaron.blog/feed/ + - https://auth0.com/blog/rss.xml + - https://danielbachhuber.com/feed/ + - https://daringfireball.net/feeds/main + - https://github.blog/feed/ + - https://josepha.blog/feed/ + - https://kareem.substack.com/feed + - https://ma.tt/feed/ + - https://ntietz.com/atom.xml + - https://simonwillison.net/atom/everything/ + - https://www.theverge.com/apple/rss/index.xml + - https://aaron.blog/comments/feed/ + - https://danielbachhuber.com/comments/feed/ + - https://github.blog/comments/feed/ + - https://josepha.blog/comments/feed/ + - https://ma.tt/comments/feed/ + - https://www.theverge.com/rss/apple/index.xml + - https://www.theverge.com/rss/index.xml + recommender: [] + categories: [] + relme: + https://josh.blog/: true + last_post_title: Comment on Blogrolls by SoapDog + last_post_description:

Add-on approved for #firefox

Chaplain TIG. + + What a kind response! Good luck to your students. + last_post_date: "2022-05-16T20:07:30Z" + last_post_link: https://andromedayelton.com/2022/05/16/tech-screens-how-do-they-work/comment-page-1/#comment-7636 + last_post_categories: [] + last_post_language: "" + last_post_guid: 1102fcc773cd3386041ada74d4e25b1b + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5746af0d50f596564b2af8d479d4e0a0.md b/content/discover/feed-5746af0d50f596564b2af8d479d4e0a0.md new file mode 100644 index 000000000..80ad93390 --- /dev/null +++ b/content/discover/feed-5746af0d50f596564b2af8d479d4e0a0.md @@ -0,0 +1,49 @@ +--- +title: From the Inside Looking In +date: "2024-03-06T01:26:32+11:00" +description: "" +params: + feedlink: https://fromtheinsidelookingin.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 5746af0d50f596564b2af8d479d4e0a0 + websites: + https://fromtheinsidelookingin.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - conference + - foss4g + - live dvd + - postgis + - pug + - speaking + - udig + relme: + https://fromtheinsidelookingin.blogspot.com/: true + https://www.blogger.com/profile/03665634055399186741: true + last_post_title: PostGIS in Action + last_post_description: "" + last_post_date: "2010-05-20T12:58:03+10:00" + last_post_link: https://fromtheinsidelookingin.blogspot.com/2010/05/postgis-in-action.html + last_post_categories: + - postgis + last_post_language: "" + last_post_guid: c36fb7e0008474470845a52de74a3f11 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-574b8db0fd0ccc915d70e3f7bd115b17.md b/content/discover/feed-574b8db0fd0ccc915d70e3f7bd115b17.md index 12d6b980a..e31dc1327 100644 --- a/content/discover/feed-574b8db0fd0ccc915d70e3f7bd115b17.md +++ b/content/discover/feed-574b8db0fd0ccc915d70e3f7bd115b17.md @@ -1,5 +1,5 @@ --- -title: Mitch W +title: Mitch Wagner date: "1970-01-01T00:00:00Z" description: "" params: @@ -10,28 +10,35 @@ params: https://mitchw.blog/: true blogrolls: [] recommended: [] - recommender: [] + recommender: + - https://frankmcpherson.blog/feed.xml categories: [] relme: - https://micro.blog/MitchW: false - last_post_title: Where's a good place to post links, and just links? - last_post_description: I like the idea of having a public record of noteworthy and - interesting things I’ve read, watched and listened to, but I’d rather reserve - mitchw.blog for my own creations and thoughts. Other - last_post_date: "2024-06-02T08:51:26-07:00" - last_post_link: https://mitchw.blog/2024/06/02/wheres-a-good.html + https://mitchw.blog/: true + last_post_title: 37Signals, the company behind Basecamp and HEY, is introducing + Writebook open source software for publishing books on the Internet + last_post_description: |- + You know, it’s really easy to publish short form content on a variety of social platforms. And individual blog posts on a number of other platforms. These are solved problems. + But it’s + last_post_date: "2024-07-08T06:27:00-07:00" + last_post_link: https://mitchw.blog/2024/07/08/signals-the-company.html last_post_categories: [] - last_post_guid: d6b3e15ac29c0cf70290d0f1d8615b06 + last_post_language: "" + last_post_guid: f505d1e6b9b942ff12ca780794eae02a score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 - promoted: 0 + posts: 3 + promoted: 5 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 6 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-574bd8eabb709309da5a92cdab39070d.md b/content/discover/feed-574bd8eabb709309da5a92cdab39070d.md new file mode 100644 index 000000000..622a3d6f4 --- /dev/null +++ b/content/discover/feed-574bd8eabb709309da5a92cdab39070d.md @@ -0,0 +1,50 @@ +--- +title: Blinken For Harmattan +date: "1970-01-01T00:00:00Z" +description: Blinken For Harmattan is a port of the Blinken KDE educational game for + Nokia N9 and N950 phones +params: + feedlink: https://blinkenharmattan.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 574bd8eabb709309da5a92cdab39070d + websites: + https://blinkenharmattan.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://blinkenharmattan.blogspot.com/: true + https://flagsquiz.blogspot.com/: true + https://tsdgeos-es.blogspot.com/: true + https://tsdgeos.blogspot.com/: true + https://www.blogger.com/profile/12001470108926138921: true + last_post_title: Blinken for Harmattan + last_post_description: |- + Blinken for Harmattan is a port of the Blinken KDE educational game for Nokia N9 and N950 phones. + + + + Download it on the Nokia Store now! + last_post_date: "2011-10-28T23:34:00Z" + last_post_link: https://blinkenharmattan.blogspot.com/2011/10/blinken-for-harmattan.html + last_post_categories: [] + last_post_language: "" + last_post_guid: dd9f8e31b787105b95f177765de55e3b + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-574d9e14160e65c93b559ce615f52650.md b/content/discover/feed-574d9e14160e65c93b559ce615f52650.md deleted file mode 100644 index 30fe29a96..000000000 --- a/content/discover/feed-574d9e14160e65c93b559ce615f52650.md +++ /dev/null @@ -1,52 +0,0 @@ ---- -title: '# where we turn Perl inside out' -date: "1970-01-01T00:00:00Z" -description: our $blog = Perl::Blog->new; -params: - feedlink: https://niceperl.blogspot.com/feeds/posts/default?alt=rss - feedtype: rss - feedid: 574d9e14160e65c93b559ce615f52650 - websites: - https://niceperl.blogspot.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - perl - - cpan - - metacpan - - perl6 - - stackoverflow - - php - - dancer - - graphic design - - idea - - ironman - - parrot - - perl metacpan - - phyton - - rakudo - relme: {} - last_post_title: (di) 10 great CPAN modules released last week - last_post_description: "Updates for great CPAN modules released last week. A module - is considered great if its favorites count is greater or equal than 12.\n\nCGI - - Handle Common Gateway Interface requests and responses\n\n " - last_post_date: "2024-06-23T14:34:00Z" - last_post_link: https://niceperl.blogspot.com/2024/06/di-10-great-cpan-modules-released-last.html - last_post_categories: - - cpan - - perl - last_post_guid: afe2114ea07b7ef19220bf5ff3244171 - score_criteria: - cats: 5 - description: 3 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 15 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-577e17c4d12446664d6c1e6a3cb5dad7.md b/content/discover/feed-577e17c4d12446664d6c1e6a3cb5dad7.md new file mode 100644 index 000000000..47c9fdbba --- /dev/null +++ b/content/discover/feed-577e17c4d12446664d6c1e6a3cb5dad7.md @@ -0,0 +1,54 @@ +--- +title: /dev/random +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://helderfoo.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 577e17c4d12446664d6c1e6a3cb5dad7 + websites: + https://helderfoo.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - android + - canvas + - graphics + - html5 + - javascript + - native + - python + - qt + - web + relme: + https://helderfoo.blogspot.com/: true + https://speedcrunch.blogspot.com/: true + https://www.blogger.com/profile/06430233725902328852: true + last_post_title: Installing Ubuntu on a MSI GS60 6QE (Ghost Pro) laptop (and fixing + issues) + last_post_description: This guide explains how I managed to install Ubuntu 16.04 + (Xenial Xerus) on a MSI GS60 6QE (Ghost Pro) laptop, equipped with a Qualcomm + Atheros QCA6174 802.11ac [168c:0003] wireless chipset and a + last_post_date: "2016-06-30T14:42:00Z" + last_post_link: https://helderfoo.blogspot.com/2016/06/installing-ubuntu-on-msi-gs60-6qe-ghost.html + last_post_categories: [] + last_post_language: "" + last_post_guid: d32a12f95295d053e1a5923f00960e24 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5796e2c8b118c5d404d48ede826779e7.md b/content/discover/feed-5796e2c8b118c5d404d48ede826779e7.md deleted file mode 100644 index 11947e513..000000000 --- a/content/discover/feed-5796e2c8b118c5d404d48ede826779e7.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: 'Simon Willison''s Weblog: Entries' -date: "2024-05-29T10:51:56Z" -description: "" -params: - feedlink: https://simonwillison.net/atom/entries/ - feedtype: atom - feedid: 5796e2c8b118c5d404d48ede826779e7 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: - - ai - - openai - - generativeai - - chatgpt - - llms - relme: {} - last_post_title: 'Training is not the same as chatting: ChatGPT and other LLMs don''t - remember everything you say' - last_post_description: |- - I'm beginning to suspect that one of the most common misconceptions about LLMs such as ChatGPT involves how "training" works. - A common complaint I see about these tools is that people don't want to - last_post_date: "2024-05-29T10:51:56Z" - last_post_link: https://simonwillison.net/2024/May/29/training-not-chatting/ - last_post_categories: - - ai - - openai - - generativeai - - chatgpt - - llms - last_post_guid: 1f197e0fdf3ff044a4fc5e64a2d0fc10 - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-579914ede0e03f5c5fb4f87f46c985cc.md b/content/discover/feed-579914ede0e03f5c5fb4f87f46c985cc.md new file mode 100644 index 000000000..79331b75c --- /dev/null +++ b/content/discover/feed-579914ede0e03f5c5fb4f87f46c985cc.md @@ -0,0 +1,41 @@ +--- +title: Nokia Carbide.c++ on Eclipse +date: "2024-03-14T05:04:48-06:00" +description: Building Nokia's C++ tools on Eclipse +params: + feedlink: https://nokiacarbideoneclipse.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 579914ede0e03f5c5fb4f87f46c985cc + websites: + https://nokiacarbideoneclipse.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://nokiacarbideoneclipse.blogspot.com/: true + https://www.blogger.com/profile/13632672249607934353: true + last_post_title: Update on Carbide, EDC, Symbian, Nokia + last_post_description: "" + last_post_date: "2011-05-16T13:01:21-06:00" + last_post_link: https://nokiacarbideoneclipse.blogspot.com/2011/05/update-on-carbide-edc-symbian-nokia.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 0bc04444bf2b359c10c9ca87e88ca04c + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-57cae8a5fc39f999c7ec786ad0b31854.md b/content/discover/feed-57cae8a5fc39f999c7ec786ad0b31854.md index 308ae41a4..91b28d379 100644 --- a/content/discover/feed-57cae8a5fc39f999c7ec786ad0b31854.md +++ b/content/discover/feed-57cae8a5fc39f999c7ec786ad0b31854.md @@ -13,73 +13,62 @@ params: recommended: [] recommender: - http://scripting.com/rss.xml + - http://scripting.com/rssNightly.xml + - https://frankmcpherson.blog/feed.xml + - https://roytang.net/blog/feed/rss/ + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + - https://taonaw.com/categories/emacs-org-mode/feed.xml + - https://taonaw.com/feed.xml + - https://taonaw.com/podcast.xml categories: + - 'Pluralistic: >Austin Grossman''s ''Fight Me'' (01 Jul 2024) the-big-genx-chill' - Uncategorized - - accounting tricks - - adjusted operating income - - antitrust - - aoi - - corruption - - credit mobilier - - financial engineering - - flywheels - - guillotine watch - - Joe Berchtold - - kickbacks - - live nation - - matt stoller - - mego - - Michael Rapino - - monopolism - - monopoly - - poormouthing - - shell game - - take rate - - ticketmaster - - trustbusting + - austin grossman + - books + - coming of age + - generational war + - gift guide + - middle age + - reviews + - science fiction + - superheroes relme: {} - last_post_title: 'Pluralistic: Ticketmaster jacks us for billions so it can pocket - millions (03 Jun 2024)' - last_post_description: 'Today''s links Ticketmaster jacks us for billions so it - can pocket millions: Corruption is unimaginably wasteful. Hey look at this: Delights - to delectate. This day in history: 2004, 2009, 2014, 2019,' - last_post_date: "2024-06-03T16:35:58Z" - last_post_link: https://pluralistic.net/2024/06/03/aoi-aoi-oh/ + last_post_title: 'Pluralistic: Austin Grossman''s ''Fight Me'' (01 Jul 2024)' + last_post_description: 'Today''s links Austin Grossman''s ''Fight Me'': Gen-X superheroes, + aging badly. Hey look at this: Delights to delectate. This day in history: 2004, + 2009, 2014 Upcoming appearances: Where to find me.' + last_post_date: "2024-07-01T12:41:40Z" + last_post_link: https://pluralistic.net/2024/07/01/the-big-genx-chill/ last_post_categories: + - 'Pluralistic: >Austin Grossman''s ''Fight Me'' (01 Jul 2024) the-big-genx-chill' - Uncategorized - - accounting tricks - - adjusted operating income - - antitrust - - aoi - - corruption - - credit mobilier - - financial engineering - - flywheels - - guillotine watch - - Joe Berchtold - - kickbacks - - live nation - - matt stoller - - mego - - Michael Rapino - - monopolism - - monopoly - - poormouthing - - shell game - - take rate - - ticketmaster - - trustbusting - last_post_guid: 24ac3fff46bb64f89a7968badac6c76d + - austin grossman + - books + - coming of age + - generational war + - gift guide + - middle age + - reviews + - science fiction + - superheroes + last_post_language: "" + last_post_guid: ce4ca7d6d6e9c75a25d1a2cb64098c27 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 16 + score: 20 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-57cd3e5228fa915bab312e66ff39cb79.md b/content/discover/feed-57cd3e5228fa915bab312e66ff39cb79.md new file mode 100644 index 000000000..114c13e23 --- /dev/null +++ b/content/discover/feed-57cd3e5228fa915bab312e66ff39cb79.md @@ -0,0 +1,63 @@ +--- +title: Conquering Entropy +date: "1970-01-01T00:00:00Z" +description: Creating order out of chaos +params: + feedlink: https://conquering-entropy.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 57cd3e5228fa915bab312e66ff39cb79 + websites: + https://conquering-entropy.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - bird-dog + - birds + - chuck gliders + - contact cleaner + - covering + - fixes + - fuselage + - gliders + - glueing + - kit + - plane + - senator + - tailplane + - telescope + - tissue + - tools + - undercarriage + - vintage computers + - wakefield + - webcam + - wing + relme: + https://conquering-entropy.blogspot.com/: true + last_post_title: West Wings "de Havilland D.H. 80A Puss Moth" - wings and tail completed + last_post_description: 4 weeks in and I've now completed the major construction + work on the wings, tail plane and tail of the de Haviland D.H 80A Puss Moth.   + Now onto the fuselage! + last_post_date: "2017-02-13T19:28:00Z" + last_post_link: https://conquering-entropy.blogspot.com/2017/02/west-wings-de-havilland-dh-80a-puss_13.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 28cd325edb5afcbe37045a0c5c912de6 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-57ced4b4eb0bb75de05fa61de3e59c24.md b/content/discover/feed-57ced4b4eb0bb75de05fa61de3e59c24.md index 0817ff5aa..c6a6204df 100644 --- a/content/discover/feed-57ced4b4eb0bb75de05fa61de3e59c24.md +++ b/content/discover/feed-57ced4b4eb0bb75de05fa61de3e59c24.md @@ -14,34 +14,37 @@ params: categories: - TV & Film relme: - https://bugle.lol/@family: false - https://bugle.lol/@wegotfamily: false - https://castro.fm/itunes/1695398667: false - https://mastodon.design/@DavidDarnes: false - https://mastodon.design/@daviddarnes: false - https://open.spotify.com/show/3qziz3DuqmPJ4tOokJLhU6: false - https://overcast.fm/itunes1695398667: false - https://pca.st/itunes/1695398667: false - https://podcasts.apple.com/us/podcast/we-got-family/id1695398667: false + https://beep.town/@echofeedamplify: true + https://echofeed.app/: true + https://github.com/rknightuk: true + https://help.echofeed.app/amplify/: true + https://mastodon.macstories.net/@ruminate: true + https://rknight.me/: true + https://ruminatepodcast.com/: true https://social.lol/@robb: true - https://wegot.family/feed.xml: false + https://wegot.family/: true last_post_title: 05 - Superfast! last_post_description: "✨\U0001F3CE️ Get your exclusive We Got Family Stickers here\n\nSuperfast! (2015) - IMDb\nMeet the Spartans (2008) - IMDb" last_post_date: "2023-09-17T09:25:09Z" last_post_link: https://wegot.family/5/ last_post_categories: [] + last_post_language: "" last_post_guid: 867cc2a36a7f698a7bd56453e1cd94a3 score_criteria: cats: 1 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 11 + score: 15 ispodcast: true isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-57d0cdbf38a6cb9e96168f21bcd1b7c3.md b/content/discover/feed-57d0cdbf38a6cb9e96168f21bcd1b7c3.md index b5dd5edbe..5530be645 100644 --- a/content/discover/feed-57d0cdbf38a6cb9e96168f21bcd1b7c3.md +++ b/content/discover/feed-57d0cdbf38a6cb9e96168f21bcd1b7c3.md @@ -1,6 +1,6 @@ --- title: Derek Kedziora -date: "2024-06-01T14:05:27+02:00" +date: "2024-07-06T12:21:35+02:00" description: The place on the web where I do more procrastinating than writing params: feedlink: https://derekkedziora.com/feed.xml @@ -11,36 +11,39 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: - notes relme: + https://derekkedziora.com/: true https://mstdn.social/@derekkedziora: true - last_post_title: Complexity vs. simplicity - last_post_description: 'Another good read: Simplicity is An Advantage but Sadly - Complexity Sells Better.' - last_post_date: "2024-06-01T14:04:00+02:00" - last_post_link: https://derekkedziora.com/notes/2024-06-01-complexity-vs-simplicity + last_post_title: Intensive practice + last_post_description: I don’t like the word retreat when talking about a period + of intensive practice. It feels too closed off, whereas the point of intestive + practice is to return to the world, albeit with a different + last_post_date: "2024-07-05T21:13:00+02:00" + last_post_link: https://derekkedziora.com/notes/2024-07-05-intensive-practice last_post_categories: - notes - last_post_guid: 5bf2643725083fdb1c680a749ceb8f8a + last_post_language: "" + last_post_guid: 85441925366f5f3d61b0aea8df24d99e score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 16 + score: 19 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-57d4e2a8bcee9c965fc3559c7d770c61.md b/content/discover/feed-57d4e2a8bcee9c965fc3559c7d770c61.md index 7008c5fca..19b42a565 100644 --- a/content/discover/feed-57d4e2a8bcee9c965fc3559c7d770c61.md +++ b/content/discover/feed-57d4e2a8bcee9c965fc3559c7d770c61.md @@ -1,44 +1,47 @@ --- title: Jim Nielsen’s Notes -date: "2024-06-02T02:26:00Z" +date: "2024-07-08T13:28:00Z" description: "" params: feedlink: https://notes.jim-nielsen.com/feed.xml feedtype: rss feedid: 57d4e2a8bcee9c965fc3559c7d770c61 websites: - https://jim-nielsen.com/: false https://notes.jim-nielsen.com/: true https://www.jim-nielsen.com/: false blogrolls: [] recommended: [] recommender: [] - categories: - - writing + categories: [] relme: - https://dribbble.com@jimniels/: false - https://github.com/jimniels: false + https://blog.jim-nielsen.com/: true https://mastodon.social/@jimniels: true - https://twitter.com/jimniels: false - last_post_title: Controversial thoughts on networked note-taking - last_post_description: just writing down notes is all that really matters. Any tool - that allows you to compose and save text will do. It is the act of writing, not - the act of linking or reading or revisiting, that - last_post_date: "2024-06-02T02:26:00Z" - last_post_link: https://sean.voisen.org/notes/2024-05-29-controversial-thoughts-on-networked-note-taking - last_post_categories: - - writing - last_post_guid: 9f1c5aa566923691c1a000b9066d2a9d + https://notes.jim-nielsen.com/: true + https://www.jim-nielsen.com/: true + last_post_title: The gift of accountability + last_post_description: |- + Love this change in how we frame of accountability from “the one who gets the blame” to “the one who tells the story of where and why things went wrong”. + + our knee-jerk response to the + last_post_date: "2024-07-08T13:28:00Z" + last_post_link: https://everythingchanges.us/blog/the-gift-of-accountability/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 728f12de1300fac1636f82425a8d5886 score_criteria: cats: 0 description: 0 - postcats: 1 + feedlangs: 1 + postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 8 + score: 11 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-57f38eb3c32795e22b046473279cd2c5.md b/content/discover/feed-57f38eb3c32795e22b046473279cd2c5.md index 3e88d1696..18a5d160b 100644 --- a/content/discover/feed-57f38eb3c32795e22b046473279cd2c5.md +++ b/content/discover/feed-57f38eb3c32795e22b046473279cd2c5.md @@ -1,6 +1,6 @@ --- title: Auth0 Blog -date: "2024-05-29T16:00:00Z" +date: "2024-07-04T15:04:00Z" description: Company Updates, Technology Articles from Auth0 params: feedlink: https://auth0.com/blog/rss.xml @@ -11,26 +11,33 @@ params: blogrolls: [] recommended: [] recommender: + - https://josh.blog/comments/feed - https://josh.blog/feed categories: [] relme: {} - last_post_title: Introducing the Auth0 Session Management API - last_post_description: Let’s take an overview of the new Session Management API, - which allows you to manage your user sessions. - last_post_date: "2024-05-29T16:00:00Z" - last_post_link: https://auth0.com/blog/introducing-session-management-api/ + last_post_title: An Overview of Commonly Used Access Control Paradigms + last_post_description: When you are working on a complex web application, at some + point, you’ll want to restrict or grant access. In this post we'll explore some + of the most commonly used access control paradigms. + last_post_date: "2024-07-04T15:04:00Z" + last_post_link: https://auth0.com/blog/an-overview-of-commonly-used-access-control-paradigms/ last_post_categories: [] + last_post_language: "" last_post_guid: 178dff822bc1da8a0725cf83ff97aa4c score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-582367d5c32e1638d6aca23c5b092a4f.md b/content/discover/feed-582367d5c32e1638d6aca23c5b092a4f.md new file mode 100644 index 000000000..2a21ad1b4 --- /dev/null +++ b/content/discover/feed-582367d5c32e1638d6aca23c5b092a4f.md @@ -0,0 +1,61 @@ +--- +title: Dreammaster's disassembly blog +date: "2024-03-13T14:43:14+11:00" +description: A blog about my interests in diassembling old adventure games, and what + I'm up to +params: + feedlink: https://dm-notes.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 582367d5c32e1638d6aca23c5b092a4f + websites: + https://dm-notes.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - AGS + - Glk + - Hopkins + - Legend + - MADS + - Might&Magic + - Ringworld + - ScummGlk + - ScummVM + - ScummVM Glk + - Sherlock + - Starship Titanic + - Tony + - Ultima + - Xeen + - disassembly + - tSage + relme: + https://dm-notes.blogspot.com/: true + https://www.blogger.com/profile/09618034545788778027: true + last_post_title: Christmas 2023 holiday roundup + last_post_description: "" + last_post_date: "2024-01-15T04:54:39+11:00" + last_post_link: https://dm-notes.blogspot.com/2024/01/christmas-2023-holiday-roundup.html + last_post_categories: + - ScummVM + - disassembly + last_post_language: "" + last_post_guid: 9b96ccbca35c9a1dc6d8fcc19bf43779 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-583a286c50e546122b9b677e90a74b1f.md b/content/discover/feed-583a286c50e546122b9b677e90a74b1f.md deleted file mode 100644 index 973d75b11..000000000 --- a/content/discover/feed-583a286c50e546122b9b677e90a74b1f.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Causas y Azares -date: "1970-01-01T00:00:00Z" -description: Sobre las causas y los azares. Un dominical con las mejores lecturas - de la semana, los temas importantes que no reciben tanta atención y alguna obsesión -params: - feedlink: https://causasyazares.substack.com/feed - feedtype: rss - feedid: 583a286c50e546122b9b677e90a74b1f - websites: - https://causasyazares.substack.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Tímidos éxitos del anti turismo cuando el cine ya no es central - en nuestra cultura - last_post_description: 'También: Las películas no son buenos memes ni la sala es - instagrameable; La enorme suerte al elegir carrera de no tener vocación ni una - pasión a la que seguir;' - last_post_date: "2024-06-02T07:58:41Z" - last_post_link: https://causasyazares.substack.com/p/timidos-exitos-del-anti-turismo-cuando - last_post_categories: [] - last_post_guid: 8f3328814f775b4a0baecd04df2d828c - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-58451a04e801f9433a3a4c872a8dc6de.md b/content/discover/feed-58451a04e801f9433a3a4c872a8dc6de.md deleted file mode 100644 index b06401eb6..000000000 --- a/content/discover/feed-58451a04e801f9433a3a4c872a8dc6de.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Release notes from FreshRSS -date: "2024-05-23T09:41:56Z" -description: "" -params: - feedlink: https://freshrss.org/feeds/all.atom.xml - feedtype: atom - feedid: 58451a04e801f9433a3a4c872a8dc6de - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - - https://danq.me/comments/feed/ - - https://danq.me/feed/ - - https://danq.me/kind/article/feed/ - - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ - categories: [] - relme: {} - last_post_title: FreshRSS 1.24.0 - last_post_description: "" - last_post_date: "2024-05-23T09:54:57Z" - last_post_link: https://github.com/FreshRSS/FreshRSS/releases/tag/1.24.0 - last_post_categories: [] - last_post_guid: 1ae3af7622cac7d4ee9fdbeed2ccd3eb - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5848c4dee9bfc8961e66496a7d1a63e5.md b/content/discover/feed-5848c4dee9bfc8961e66496a7d1a63e5.md new file mode 100644 index 000000000..74fe4ad62 --- /dev/null +++ b/content/discover/feed-5848c4dee9bfc8961e66496a7d1a63e5.md @@ -0,0 +1,594 @@ +--- +title: Mariuz's Blog +date: "1970-01-01T00:00:00Z" +description: Programmer 4 life +params: + feedlink: https://mapopa.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 5848c4dee9bfc8961e66496a7d1a63e5 + websites: + https://mapopa.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - '#LazarusBook #chapter1' + - '#LazarusBook #chapter2' + - '#firebird' + - '#gsoc2015' + - '#libreoffice' + - -fPIC + - .forward + - /etc + - 2g2 + - 3d rage pro + - 3gp + - AppVeyor + - BSD + - Beer facts + - Chris Rock + - Ganymede + - Haikuos + - HowTo + - LISP + - LinkedIn + - Lubuntu + - MOTU + - Master Of The Universe + - Parangelion 2009 + - QEMU + - RMS. GNU + - Romania + - SQL:2003 + - Stallman + - Transport Tycoon Deluxe + - WebPositive + - X Forward + - Xc3028 + - abrowser + - acpi + - activerecord + - adodb + - aircrack-ng + - amd + - amd64 + - amr + - android + - android-x86 + - ansi c + - apache + - apache 2.2 + - apc + - apparmor + - appliance + - apt + - arora + - asus + - atheros + - ati + - audacious + - avant-window-navigator + - batman + - bazaar + - benchmarks + - bind9 + - blog tutorial + - bochs + - bonie++ + - bookmarks + - borkstation + - borland + - boston + - boxlinks + - bug + - bugzilla + - bush + - buttons + - c api + - c# + - c++ + - cache control + - cacti + - cake php + - cakephp + - cast + - cbq + - centos + - cfq + - cgi + - chrome + - chromium + - clang++ + - claud book + - claws + - clipse + - cloudbook + - cms + - compiz + - composite + - coreutils + - cpp + - cpus + - crashkernel + - crosscompiling + - csplit + - css + - customize + - cvs + - cx23885 + - dark + - dark silhouettes + - date + - dbd-interbase + - debian + - debian arm + - debian experimental + - debian stable + - dell vostro + - delphi + - delphi programming + - designos + - devuan + - distcc + - distributedssh + - disturbed monkeys + - django + - dmesg + - dns + - doom + - dosbox + - dosemu + - dot-forward + - dovecot + - dream htc + - drm + - dstat + - du + - dual display + - dyndns + - ecli + - eclipse + - eeexubuntu + - egit + - eliberatica + - eog + - epiphany + - error + - everex + - evolution + - example + - ext3 + - ext4 + - extract + - fail + - fastcgi + - fbcon 2010 + - fbexport + - feisty + - festy fawn + - ffmpeg + - final + - firebird + - firebird 2.0 + - firebird 2.1 + - firebird 2.5 + - firebird 3.0 + - firebird build + - firebird conference + - firebirdsql + - firebug + - firefox + - firefox 2.0 + - firefox 3.0 + - fireruby + - flamerobin + - flamerobin 0.8.5 + - flamerobin 0.9.0 + - flaps + - flash + - flash 64 + - flash10 + - flash64 + - fleps + - flv live streaming + - fpc + - fpc 2.2.x + - fpm + - frames + - free pascal + - free time + - freebsd + - freemind + - fuse + - g++ + - gbox + - geek pr0n + - gems + - gigabyte + - gingerbread + - git + - glibc + - gmail.com + - gnome + - gnome-gegl2 + - gnu + - good pr + - goodbye-microsoft + - google + - google app + - gp3 + - gpc3 + - grub + - grub2 + - gsl + - gsoc2015 + - gtk + - gutsy + - gwibber + - gzip + - happy birthday + - hardy + - haxors + - hosting + - hp 4000 + - htb + - htbtools + - html5 + - i386 + - ibase + - iceweasel + - icq + - icu + - ie6 + - ie7 + - ie8 + - inbox + - inet + - inmures.ro + - innodb + - intel + - interbase + - ipython + - isc + - itrepid + - jabber + - jaun + - java + - java script + - jaws + - jdbc + - jeos + - joins + - jquery + - jre6 + - json + - kFreeBSD + - kde4 + - kde4.2 + - kernel + - kernel 2.5.x + - kernel 2.6.26 + - kernel 2.6.27 + - kernel 2.6.28 + - kernel 2.6.30 + - kernel 2.6.x + - kernel vanilla + - kexec + - killie + - komodo + - komposer + - konqueror + - kubuntu + - kvm + - kvm-linux + - lamp + - lazarus + - lazarus 0.9.26 + - leadtek pvr2200 + - lemp + - lenny + - libdbi + - libdbi-drivers + - libreoffice + - libvirt + - libvirt-manager + - lighttpd + - linus + - linus torvalds + - linux + - linux 0.0.1 + - linux 3.x.x + - linuz + - llvm + - load balancer + - locales + - locked + - lug mures + - lulu.com + - lwn + - lxde + - mach64 + - madwifi + - man + - matrix + - mcrypt + - mdb2 + - memcache + - mencode + - mencoder + - mercurial + - merge + - microsoft + - migrate ext3 to ext4 + - mingw + - mod_expires + - modules + - monitor + - mono + - mono 2.0 + - mono 2.6 + - moonlight + - movable type + - mozilla + - mp3 + - mp4 + - mplayer + - mta + - music tracker + - my$QL + - mysql + - mysql2firebird + - nat + - net + - netbooks + - nginix + - nginx + - nmap + - nokia + - nokia 810 + - non3d + - noop + - nouveau + - nsfw + - nvidia drivers 180 + - ogg + - oo pascal + - openchrome + - opengl + - opengl rocks + - openoffice 3.0 + - openorrifice + - openssh + - openssl + - openttd + - oracle + - oracle sux + - oszoo + - oxygen + - pacpl + - panoramic view + - parrot 0.6.3 + - pascal + - patents + - pda + - pdo + - perl + - perl6 + - phenom x3 + - php + - php 4 + - php 5 + - php 5.3 + - php ide + - php.net + - php5 + - php5.3 + - php6 + - phpbb3 + - phpmyfaq + - pidgin + - plaboy + - playogg + - plumbers + - pop3 + - postfix + - postgresql + - powertop + - prince of persia + - privoxy + - pulse + - pvm + - pxe + - pyroom + - python + - qemu manager + - qmail + - qmailanalog + - qml + - qt + - qt 4.7 + - qt4 + - qt4.5 + - qtcreator + - quake + - quake 1 + - raid + - rails + - rants + - reactos + - recordmydesktop + - reea.net + - release party + - reverse + - rip nokia + - ripping + - ror + - rtfm + - ruby + - rubyforge + - rubyonfire + - samba + - schedulers + - scroolkeeper + - search applicance + - sed + - sekrity + - selinux + - sendmail + - sharp + - shorewall + - sid + - silverlight + - sis + - sixcore + - skype + - slackware + - smbfs + - snaps + - snmp + - snow + - soap + - softpedia + - songbird + - sourceforge + - sponsor + - sql server 2008 + - sqlite + - ssh + - ssh tunnel + - sshfs + - stable + - stats + - streaming + - subclipse + - suhosin-patch + - super classic + - super server + - svk + - svn + - sylpheed + - targu mures + - tc + - tcc + - tccboot + - tentakel + - terminal + - testing + - tests + - themes + - theora + - thunderbird + - timestamp + - timstamp + - tiobe + - todo reading + - tor + - tpch + - tube + - turboc + - turboc 2.0 + - tutorial + - tux sacrifice + - tuxguitar + - typo3 + - ubufox + - ubuntu + - ubuntu 6.10 live cd + - ubuntu gutsy + - ubuntu hardy heron + - ubuntu intrepid ibex + - ubuntu jaunty + - ubuntu lite + - ubuntu live cd + - ubuntu server + - ubuntustudio + - ue4 + - unetbootin + - unicode + - unicode art + - unrealengine + - upgrade + - use firebird + - usesql + - utf art + - uuid + - v4l + - v4l-dvb-experimental + - v4lctl + - v8 + - vai + - vanilla + - vcl4php + - vederi + - veto files + - via + - virtualbox + - vista + - vlc + - vlc nightly + - vlc streaming + - vmstat + - vmware + - voodoo + - vorbis + - vsftp + - vulcanians + - web20 + - webcam + - webgl + - webkit + - webkitgtk + - why git + - wibrain + - windmill + - windows + - wine + - winfast 2000 xp global + - wireless + - wma + - wordpress + - worm + - wubi + - x264 + - x4 + - x64 + - x86 + - xawtv + - xen + - xfce + - xfce4 + - xmms + - xmpp + - xul + - xulrunner + - youtube + - zaurus + - zul + relme: + https://firebirdnews.blogspot.com/: true + https://mapopa.blogspot.com/: true + https://www.blogger.com/profile/09862886782232467681: true + last_post_title: Firebird 5.0 Is Released + last_post_description: "" + last_post_date: "2024-01-25T10:28:00Z" + last_post_link: https://mapopa.blogspot.com/2024/01/firebird-50-is-released.html + last_post_categories: [] + last_post_language: "" + last_post_guid: e2a7358a03fc8921ec5bb9e008c41880 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-58491314a1f9256f17c2bb8b8acdc05e.md b/content/discover/feed-58491314a1f9256f17c2bb8b8acdc05e.md deleted file mode 100644 index 73432c406..000000000 --- a/content/discover/feed-58491314a1f9256f17c2bb8b8acdc05e.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Comments for An und für sich -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://itself.blog/comments/feed/ - feedtype: rss - feedid: 58491314a1f9256f17c2bb8b8acdc05e - websites: - https://itself.blog/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on My Brief Career as a Painter by Elias - last_post_description: |- - -

This was great! I'm constantly impressed by how much you do and your willingness to try something new. I know this is about the painting, but I had to smile at both - last_post_date: "2024-05-30T01:59:32Z" - last_post_link: https://itself.blog/2024/05/28/my-brief-career-as-a-painter/#comment-61687 - last_post_categories: [] - last_post_guid: 70d2577ef201a43d39868b16f7af4e24 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-58649e3cb4457829eaae02c7a45798b1.md b/content/discover/feed-58649e3cb4457829eaae02c7a45798b1.md deleted file mode 100644 index 55fce4231..000000000 --- a/content/discover/feed-58649e3cb4457829eaae02c7a45798b1.md +++ /dev/null @@ -1,52 +0,0 @@ ---- -title: The Open Sourcerer -date: "1970-01-01T00:00:00Z" -description: Jeff on technology, business and society -params: - feedlink: https://fortintam.com/blog/feed/ - feedtype: rss - feedid: 58649e3cb4457829eaae02c7a45798b1 - websites: - https://fortintam.com/blog/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Free/Open-Source software - - Planet GNOME - - GNOME - - GNOME Calendar - - productivity - - programming - - standards - - test-driven development - relme: {} - last_post_title: Help us make GNOME Calendar rock-solid by expanding the test suite! - last_post_description: GNOME Calendar 45 will be a groundbreaking release in terms - of UX (more on that later?), performance, and to some extent, reliability (we’ve - at least solved two complex crashers recently, including - last_post_date: "2023-09-06T14:12:43Z" - last_post_link: https://fortintam.com/blog/call-for-help-writing-gnome-calendar-compliance-unit-tests/ - last_post_categories: - - Free/Open-Source software - - Planet GNOME - - GNOME - - GNOME Calendar - - productivity - - programming - - standards - - test-driven development - last_post_guid: b638a1a1fd6a711d68b6dbeb54bc6cb3 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-587451366a94f025296b3b4c3365a96c.md b/content/discover/feed-587451366a94f025296b3b4c3365a96c.md deleted file mode 100644 index fff3ab888..000000000 --- a/content/discover/feed-587451366a94f025296b3b4c3365a96c.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Trent Walton -date: "1970-01-01T00:00:00Z" -description: Public posts from @TrentWalton@mastodon.social -params: - feedlink: https://mastodon.social/@TrentWalton.rss - feedtype: rss - feedid: 587451366a94f025296b3b4c3365a96c - websites: - https://mastodon.social/@TrentWalton: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://echowolfmusic.com/: false - https://luroapp.com/: false - https://trentwalton.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5889e0b2eee181163ee460b9c5fb8768.md b/content/discover/feed-5889e0b2eee181163ee460b9c5fb8768.md deleted file mode 100644 index 5d080c8e4..000000000 --- a/content/discover/feed-5889e0b2eee181163ee460b9c5fb8768.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Coder's Block -date: "1970-01-01T00:00:00Z" -description: Will Boyd's portfolio and web development blog. -params: - feedlink: https://codersblock.com/rss.xml - feedtype: rss - feedid: 5889e0b2eee181163ee460b9c5fb8768 - websites: - https://codersblock.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: [] - relme: - https://front-end.social/@lonekorean: true - last_post_title: Anchor Links and How to Make Them Awesome - last_post_description: Anchor links (also called jump links) are an easy way to - provide in-page navigation. For example, a table of contents could use anchor - links to take readers straight to various sections in a page - last_post_date: "2024-05-20T00:00:00Z" - last_post_link: https://codersblock.com/blog/anchor-links-and-how-to-make-them-awesome/ - last_post_categories: [] - last_post_guid: 692f5a7562eb43786e9ce66ca640767e - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 15 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-58a36bf73202fa99e4b2aa7f31fc7dcb.md b/content/discover/feed-58a36bf73202fa99e4b2aa7f31fc7dcb.md new file mode 100644 index 000000000..51897a8ca --- /dev/null +++ b/content/discover/feed-58a36bf73202fa99e4b2aa7f31fc7dcb.md @@ -0,0 +1,41 @@ +--- +title: Comments for QGIS.org blog +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://blog.qgis.org/comments/feed/ + feedtype: rss + feedid: 58a36bf73202fa99e4b2aa7f31fc7dcb + websites: + https://blog.qgis.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://blog.qgis.org/: true + last_post_title: Comment on QGIS 3.12 București is released! by Isah AbdulGaniyu + last_post_description: I have tried to install this software several times but not + working on my system, Lenovo IdeaPad 110 + last_post_date: "2020-06-27T05:09:20Z" + last_post_link: https://blog.qgis.org/2020/02/26/qgis-3-12-bucuresti-is-released/comment-page-1/#comment-1345 + last_post_categories: [] + last_post_language: "" + last_post_guid: 00513534bc365b2b1e75701b7fb361e6 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-58b4f638f6ec743c329529aab15f8de5.md b/content/discover/feed-58b4f638f6ec743c329529aab15f8de5.md deleted file mode 100644 index 08f6ec426..000000000 --- a/content/discover/feed-58b4f638f6ec743c329529aab15f8de5.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for James Bottomley's random Pages -date: "1970-01-01T00:00:00Z" -description: A collection of information -params: - feedlink: https://blog.hansenpartnership.com/comments/feed/ - feedtype: rss - feedid: 58b4f638f6ec743c329529aab15f8de5 - websites: - https://blog.hansenpartnership.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Solving the Looming Developer Liability Problem by jejb - last_post_description: |- - In reply to Anon. - - I think the problem with that one is that it's not an OSI approved - last_post_date: "2024-05-11T15:25:24Z" - last_post_link: https://blog.hansenpartnership.com/solving-the-looming-developer-liability-problem/#comment-214222 - last_post_categories: [] - last_post_guid: fe6894294549dc448383175362ea5e25 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-58cb4aa1198ef9f1bab14b52f9abf83a.md b/content/discover/feed-58cb4aa1198ef9f1bab14b52f9abf83a.md deleted file mode 100644 index 7a5e8c54e..000000000 --- a/content/discover/feed-58cb4aa1198ef9f1bab14b52f9abf83a.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: blogs.perl.org -date: "2024-06-30T02:45:27Z" -description: "" -params: - feedlink: https://blogs.perl.org/atom.xml - feedtype: atom - feedid: 58cb4aa1198ef9f1bab14b52f9abf83a - websites: - https://blogs.perl.org/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: '# Perl Weekly Challenge 275: Replace Digits' - last_post_description: "" - last_post_date: "2024-06-30T02:45:27Z" - last_post_link: https://blogs.perl.org/users/laurent_r/2024/06/-perl-weekly-challenge-275-replace-digits.html - last_post_categories: [] - last_post_guid: 11a14098be73caa5a8e03a28a9c5daec - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-58e71099f6c473e5f9f2b4657b4d27cd.md b/content/discover/feed-58e71099f6c473e5f9f2b4657b4d27cd.md new file mode 100644 index 000000000..1d9ce2fda --- /dev/null +++ b/content/discover/feed-58e71099f6c473e5f9f2b4657b4d27cd.md @@ -0,0 +1,47 @@ +--- +title: Stories by Aaron Davis on Medium +date: "1970-01-01T00:00:00Z" +description: Stories by Aaron Davis on Medium +params: + feedlink: https://medium.com/feed/@mrkrndvs + feedtype: rss + feedid: 58e71099f6c473e5f9f2b4657b4d27cd + websites: + https://medium.com/@mrkrndvs: false + https://medium.com/@mrkrndvs?source=rss-9428bb390fa6------2: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - individual + - podcast + - seth-godin + relme: + https://medium.com/@mrkrndvs?source=rss-9428bb390fa6------2: true + last_post_title: I See You (Akimbo) + last_post_description: "" + last_post_date: "2018-03-06T20:12:40Z" + last_post_link: https://medium.com/@mrkrndvs/i-see-you-akimbo-61c1ddd63d0?source=rss-9428bb390fa6------2 + last_post_categories: + - individual + - podcast + - seth-godin + last_post_language: "" + last_post_guid: bbdfa97eb11d69ce59f77142efe07192 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-58e9162e2e2b45ac6146cf610968f7b3.md b/content/discover/feed-58e9162e2e2b45ac6146cf610968f7b3.md new file mode 100644 index 000000000..16767ac14 --- /dev/null +++ b/content/discover/feed-58e9162e2e2b45ac6146cf610968f7b3.md @@ -0,0 +1,46 @@ +--- +title: Micro FOSS +date: "2024-02-07T01:58:04-08:00" +description: "" +params: + feedlink: https://microfoss.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 58e9162e2e2b45ac6146cf610968f7b3 + websites: + https://microfoss.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - cfdisk + - linux + - partisi + relme: + https://microfoss.blogspot.com/: true + last_post_title: Membuat Partisi Di System Operasi Linux Menggunakan Cfdisk + last_post_description: "" + last_post_date: "2018-12-23T23:16:30-08:00" + last_post_link: https://microfoss.blogspot.com/2018/12/membuat-partisi-di-system-operasi-linux.html + last_post_categories: + - cfdisk + - linux + - partisi + last_post_language: "" + last_post_guid: 13b962c7d0077a0882e97e0ccca18faf + score_criteria: + cats: 3 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5909eb10ed96d6631b0cd300313294cc.md b/content/discover/feed-5909eb10ed96d6631b0cd300313294cc.md new file mode 100644 index 000000000..96d52522d --- /dev/null +++ b/content/discover/feed-5909eb10ed96d6631b0cd300313294cc.md @@ -0,0 +1,53 @@ +--- +title: Self-Referential +date: "2024-03-14T15:18:35+02:00" +description: Reflections on JNode, Java, software developement and other things of + interest +params: + feedlink: https://lsantha.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 5909eb10ed96d6631b0cd300313294cc + websites: + https://lsantha.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - eos + - first post + - fosdem + - java quine + - jedit + - jnode + - openjdk + - self-reference + - swing + - swtswing + relme: + https://lsantha.blogspot.com/: true + https://www.blogger.com/profile/07461860174464006430: true + last_post_title: Why JNode? + last_post_description: "" + last_post_date: "2009-03-08T16:33:54+02:00" + last_post_link: https://lsantha.blogspot.com/2009/03/why-jnode.html + last_post_categories: + - jnode + last_post_language: "" + last_post_guid: 39eeb334800c47245be15a77043f01a3 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5921b3e4bd7b5542b1391f3ee0ea1cca.md b/content/discover/feed-5921b3e4bd7b5542b1391f3ee0ea1cca.md deleted file mode 100644 index 2202ebffb..000000000 --- a/content/discover/feed-5921b3e4bd7b5542b1391f3ee0ea1cca.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: StackHPC -date: "2024-06-24T10:00:00+01:00" -description: "" -params: - feedlink: https://www.stackhpc.com/feeds/all.atom.xml - feedtype: atom - feedid: 5921b3e4bd7b5542b1391f3ee0ea1cca - websites: - https://www.stackhpc.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Workloads - - openstack - - placement - relme: {} - last_post_title: Hypervisor Isolation in OpenStack - last_post_description: A short guide for isolating an OpenStack project to an exclusive - set of hypervisors. - last_post_date: "2024-06-24T10:00:00+01:00" - last_post_link: https://www.stackhpc.com/hypervisor-isolation.html - last_post_categories: - - Workloads - - openstack - - placement - last_post_guid: 4e66bde1cc5845c49de2d9874848b884 - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-592bc99d82547e4b338a0c61e73b8344.md b/content/discover/feed-592bc99d82547e4b338a0c61e73b8344.md new file mode 100644 index 000000000..b586457ed --- /dev/null +++ b/content/discover/feed-592bc99d82547e4b338a0c61e73b8344.md @@ -0,0 +1,139 @@ +--- +title: Lunk Alarm Is Next Level Technology +date: "2024-02-20T17:25:42-08:00" +description: Next level technology is base on what you want +params: + feedlink: https://asianpsychiatry.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 592bc99d82547e4b338a0c61e73b8344 + websites: + https://asianpsychiatry.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Lunk Alarm And Browser + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Lunk Alarm Technology + last_post_description: "" + last_post_date: "2021-05-12T11:28:15-07:00" + last_post_link: https://asianpsychiatry.blogspot.com/2021/05/lunk-alarm-technology.html + last_post_categories: + - Lunk Alarm And Browser + last_post_language: "" + last_post_guid: 87fd06074a79536724a71f31c19edce0 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-593b33aee7c8fe046905e0177a68c741.md b/content/discover/feed-593b33aee7c8fe046905e0177a68c741.md index 1422b7e25..b89ef7041 100644 --- a/content/discover/feed-593b33aee7c8fe046905e0177a68c741.md +++ b/content/discover/feed-593b33aee7c8fe046905e0177a68c741.md @@ -12,7 +12,8 @@ params: recommended: [] recommender: [] categories: [] - relme: {} + relme: + https://speakerdeck.com/aaronpk: true last_post_title: Targeted Logout - OAuth Security Workshop 2023 last_post_description: |- Presented at the OAuth Security Workshop @@ -21,17 +22,22 @@ params: last_post_date: "2023-08-24T00:00:00-04:00" last_post_link: https://speakerdeck.com/aaronpk/targeted-logout-oauth-security-workshop-2023 last_post_categories: [] + last_post_language: "" last_post_guid: d716da7c93f7c3f38074139037c92084 score_criteria: cats: 0 description: 0 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 5 + score: 10 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-593c819d35cb203e81dc6e336c0feac1.md b/content/discover/feed-593c819d35cb203e81dc6e336c0feac1.md deleted file mode 100644 index 35a39b6d3..000000000 --- a/content/discover/feed-593c819d35cb203e81dc6e336c0feac1.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Chris Lovie-Tyler -date: "1970-01-01T00:00:00Z" -description: Learning to see -params: - feedlink: https://chrislt.art/feed/ - feedtype: rss - feedid: 593c819d35cb203e81dc6e336c0feac1 - websites: - https://chrislt.art/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Thoughts - relme: {} - last_post_title: Speed wobbles - last_post_description: In art and blogging, I quite frequently get what I call speed - wobbles. This is a cover-all term for a case of perfectionism, self doubt, FOMO - (“maybe I should be on Substack”), fear of what - last_post_date: "2024-06-04T01:05:01Z" - last_post_link: https://chrislt.art/speed-wobbles/ - last_post_categories: - - Thoughts - last_post_guid: 8e56e6ae28ac0314b44b736698d2d295 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-595ec2f7406912d618fbf0540f58d89e.md b/content/discover/feed-595ec2f7406912d618fbf0540f58d89e.md new file mode 100644 index 000000000..0f10439c0 --- /dev/null +++ b/content/discover/feed-595ec2f7406912d618fbf0540f58d89e.md @@ -0,0 +1,40 @@ +--- +title: Exploring Painting +date: "2024-02-08T05:59:27Z" +description: A beginner artist explores painting +params: + feedlink: https://exploringpainting.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 595ec2f7406912d618fbf0540f58d89e + websites: + https://exploringpainting.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://exploringpainting.blogspot.com/: true + last_post_title: Summer Time. Acrylics on canvas. + last_post_description: "" + last_post_date: "2021-08-20T23:06:19+01:00" + last_post_link: https://exploringpainting.blogspot.com/2021/08/summer-time-acrylics-on-canvas.html + last_post_categories: [] + last_post_language: "" + last_post_guid: c2c8edf866a824e92a44f5aaa92cba04 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-596546cdd999c5fffd6536e6d13cc254.md b/content/discover/feed-596546cdd999c5fffd6536e6d13cc254.md deleted file mode 100644 index f4936b825..000000000 --- a/content/discover/feed-596546cdd999c5fffd6536e6d13cc254.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: swissmiss -date: "1970-01-01T00:00:00Z" -description: swissmiss is an online garden (aka design blog) run by Tina Roth Eisenberg, - a Swiss designer gone NYC. -params: - feedlink: https://www.swiss-miss.com/feed/atom - feedtype: rss - feedid: 596546cdd999c5fffd6536e6d13cc254 - websites: - https://www.swiss-miss.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - quotes - relme: {} - last_post_title: Less Afraid - last_post_description: “It’s hard not to be afraid. Be less afraid.” – Susan Sontag - (via) - last_post_date: "2024-06-01T18:51:58Z" - last_post_link: https://www.swiss-miss.com/2024/06/less-afraid.html - last_post_categories: - - quotes - last_post_guid: 7a94bc584e83192397e7a96cf92c9fae - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-59a2bef5bdc274e4ce5c73b2701125b3.md b/content/discover/feed-59a2bef5bdc274e4ce5c73b2701125b3.md new file mode 100644 index 000000000..f14e0e143 --- /dev/null +++ b/content/discover/feed-59a2bef5bdc274e4ce5c73b2701125b3.md @@ -0,0 +1,41 @@ +--- +title: Software Kompetenz der Zukunft +date: "2024-03-13T18:41:52+01:00" +description: Software Kompetenz der Zukunft 2011 +params: + feedlink: https://open-change-community.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 59a2bef5bdc274e4ce5c73b2701125b3 + websites: + https://open-change-community.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Conference + relme: + https://open-change-community.blogspot.com/: true + last_post_title: Open Forum 2011 - ready, set, change! + last_post_description: "" + last_post_date: "2011-07-13T21:16:21+02:00" + last_post_link: https://open-change-community.blogspot.com/2011/07/open-forum-2011-ready-set-change.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 97ecbb5d51ec090740e7da7aecb11f79 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-59a919d4db6d5b3e1ba4a1e98a856d15.md b/content/discover/feed-59a919d4db6d5b3e1ba4a1e98a856d15.md deleted file mode 100644 index 392f28fe9..000000000 --- a/content/discover/feed-59a919d4db6d5b3e1ba4a1e98a856d15.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: Gowers's Weblog -date: "1970-01-01T00:00:00Z" -description: Mathematics related discussions -params: - feedlink: https://gowers.wordpress.com/feed/ - feedtype: rss - feedid: 59a919d4db6d5b3e1ba4a1e98a856d15 - websites: - https://gowers.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - complexity - - Computing - - Demystifying proofs - - News - - polymath - relme: {} - last_post_title: Announcing an automatic theorem proving project - last_post_description: I am very happy to say that I have recently received a generous - grant from the Astera Institute to set up a small group to work on automatic theorem - proving, in the first instance for about three - last_post_date: "2022-04-28T09:41:22Z" - last_post_link: https://gowers.wordpress.com/2022/04/28/announcing-an-automatic-theorem-proving-project/ - last_post_categories: - - complexity - - Computing - - Demystifying proofs - - News - - polymath - last_post_guid: 17b3f30e71d32b40fa56bf69e1c0aa5e - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-59cd402f922bd469f53471f1d35c472b.md b/content/discover/feed-59cd402f922bd469f53471f1d35c472b.md deleted file mode 100644 index 0efe8fded..000000000 --- a/content/discover/feed-59cd402f922bd469f53471f1d35c472b.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Sindre Sorhus — Apps -date: "1970-01-01T00:00:00Z" -description: Quality crafted apps -params: - feedlink: https://sindresorhus.com/rss-apps.xml - feedtype: rss - feedid: 59cd402f922bd469f53471f1d35c472b - websites: - https://sindresorhus.com/: true - https://sindresorhus.com/apps: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://instagram.com/sindresorhus: false - https://mastodon.social/@sindresorhus: false - https://twitter.com/sindresorhus: false - https://unsplash.com/@sindresorhus: false - last_post_title: Week Number - last_post_description: The current week number in your menu bar - last_post_date: "2024-05-19T00:00:00Z" - last_post_link: https://sindresorhus.com/week-number - last_post_categories: [] - last_post_guid: cb6baff67fb2c0960d381e1744778e9b - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-59ea712290018997ade187fbf15a6745.md b/content/discover/feed-59ea712290018997ade187fbf15a6745.md new file mode 100644 index 000000000..cdceb11ba --- /dev/null +++ b/content/discover/feed-59ea712290018997ade187fbf15a6745.md @@ -0,0 +1,47 @@ +--- +title: White Tuesdays +date: "1970-01-01T00:00:00Z" +description: My blog on GNOME, programming, maps and stuff. +params: + feedlink: https://whitetuesdays.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 59ea712290018997ade187fbf15a6745 + websites: + https://whitetuesdays.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - code + - gnome + - gsoc + - guadec + - maps + relme: + https://whitetuesdays.blogspot.com/: true + last_post_title: The history behind the venue for this years GUADEC + last_post_description: My good friend Jonas wrote a nice little piece on the history + behind the Folkets Hus and Folkets Park-movement and their relation with the labour + movement here. Interesting read in general I'd say, + last_post_date: "2015-07-22T20:01:00Z" + last_post_link: https://whitetuesdays.blogspot.com/2015/07/the-history-behind-venue-for-this-years.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 2d8b4cf4fcde83bca989a174ca86dbe6 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5a101cac0f8434bdcf54c72e8db7dd57.md b/content/discover/feed-5a101cac0f8434bdcf54c72e8db7dd57.md index 9d964cf25..d15b1ffd2 100644 --- a/content/discover/feed-5a101cac0f8434bdcf54c72e8db7dd57.md +++ b/content/discover/feed-5a101cac0f8434bdcf54c72e8db7dd57.md @@ -14,7 +14,7 @@ params: - https://alexsci.com/blog/rss.xml categories: [] relme: - https://soylent.green/@paul: false + https://notes.pault.ag/: true last_post_title: Domo Arigato, Mr. debugfs last_post_description: |- Years ago, at what I think I remember was DebConf 15, I hacked for a while @@ -25,17 +25,22 @@ params: last_post_date: "2024-04-13T09:27:00-04:00" last_post_link: https://notes.pault.ag/debugfs/ last_post_categories: [] + last_post_language: "" last_post_guid: 785e089f6770626ff08ff454f7c8358f score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 14 + score: 19 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-5a265fc06b95ec7450c2fa60c790a595.md b/content/discover/feed-5a265fc06b95ec7450c2fa60c790a595.md deleted file mode 100644 index 6e63033ca..000000000 --- a/content/discover/feed-5a265fc06b95ec7450c2fa60c790a595.md +++ /dev/null @@ -1,70 +0,0 @@ ---- -title: OpenStack in Production - Archives -date: "1970-01-01T00:00:00Z" -description: Now moved to http://techblog.web.cern.ch -params: - feedlink: https://openstack-in-production.blogspot.com/feeds/posts/default?alt=rss - feedtype: rss - feedid: 5a265fc06b95ec7450c2fa60c790a595 - websites: - https://openstack-in-production.blogspot.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - openstack - - cern - - kubernetes - - kvm - - magnum - - HS06 - - badblocks - - bsod - - ceph - - ceph openstack cern - - cern openstack hyperv kvm numa - - cinder - - cpuburn - - cvmfs - - docker - - ec2 - - eos - - fernet - - fio - - glance - - hdfs - - htcondor - - iperf. iperf3 - - ironic - - keystone - - liberty - - mesos - - mistral - - openlab - - os_type - - rackspace - - swarm - - uuid - - windows - relme: {} - last_post_title: OpenStack In Production - moving to a new home - last_post_description: During 2011 and 2012, CERN IT took a new approach to how - to manage the infrastructure for analysing the data from the LHC and other experiments. - The Agile Infrastructure project was formed covering - last_post_date: "2019-01-19T09:31:00Z" - last_post_link: https://openstack-in-production.blogspot.com/2019/01/openstack-in-production-moving-to-new.html - last_post_categories: [] - last_post_guid: b6d9d4258decb4c955041ec10c6419e3 - score_criteria: - cats: 5 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5a300811a82470a41247a4ede76e4f73.md b/content/discover/feed-5a300811a82470a41247a4ede76e4f73.md new file mode 100644 index 000000000..e189758a6 --- /dev/null +++ b/content/discover/feed-5a300811a82470a41247a4ede76e4f73.md @@ -0,0 +1,144 @@ +--- +title: Area Code location +date: "1970-01-01T00:00:00Z" +description: The Blog is all about area code and its prospect. Stay with us. +params: + feedlink: https://fantasticoempernambuco.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 5a300811a82470a41247a4ede76e4f73 + websites: + https://fantasticoempernambuco.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 800 Area code related to. + - area code + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Digital Areas Code + last_post_description: |- + Would I be able to send an instant message + to an 800 number?You can send instant messages to 844 + numbers if it is enlisted as a "text empowered" number. Complementary + content informing can be used to + last_post_date: "2021-11-12T08:08:00Z" + last_post_link: https://fantasticoempernambuco.blogspot.com/2021/11/digital-areas-code.html + last_post_categories: + - 800 Area code related to. + last_post_language: "" + last_post_guid: f91860267d69b5fdce51c8f5e4d1a3ca + score_criteria: + cats: 2 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5a309c5cba349f1c1343fc1ee6e4a504.md b/content/discover/feed-5a309c5cba349f1c1343fc1ee6e4a504.md deleted file mode 100644 index 5585796d9..000000000 --- a/content/discover/feed-5a309c5cba349f1c1343fc1ee6e4a504.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Vimeo / Dave Letorey’s videos -date: "2024-03-28T06:37:33-04:00" -description: Videos uploaded by Dave Letorey on Vimeo. -params: - feedlink: https://vimeo.com/dletorey/videos/rss - feedtype: rss - feedid: 5a309c5cba349f1c1343fc1ee6e4a504 - websites: - https://vimeo.com/dletorey: false - https://vimeo.com/dletorey/videos: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: The trench coat museum - Yard Act - last_post_description: Recorded at Hammersmith Apollo on the last night of their - Dream Job tour 27 March 2024 - last_post_date: "2024-03-28T06:37:33-04:00" - last_post_link: https://vimeo.com/928335236 - last_post_categories: [] - last_post_guid: 1bab82a3b03d596592d5fc6f6e88a495 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5a32e77ff4a4e2f955e4f348dcb9f10d.md b/content/discover/feed-5a32e77ff4a4e2f955e4f348dcb9f10d.md deleted file mode 100644 index e14b23bb5..000000000 --- a/content/discover/feed-5a32e77ff4a4e2f955e4f348dcb9f10d.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: 'Comments on: Front Page' -date: "1970-01-01T00:00:00Z" -description: Author Services and More -params: - feedlink: https://boffosocko.com/publishing/front/feed/ - feedtype: rss - feedid: 5a32e77ff4a4e2f955e4f348dcb9f10d - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5a55921a16166860e46be51fe4359b76.md b/content/discover/feed-5a55921a16166860e46be51fe4359b76.md deleted file mode 100644 index 5d795842b..000000000 --- a/content/discover/feed-5a55921a16166860e46be51fe4359b76.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Viajando à Europa por menos -date: "2023-11-15T07:09:10-08:00" -description: "" -params: - feedlink: https://europanaotaocara.blogspot.com/feeds/posts/default - feedtype: atom - feedid: 5a55921a16166860e46be51fe4359b76 - websites: - https://europanaotaocara.blogspot.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://www.blogger.com/profile/16090334046714792429: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5a662ffa0da33de32d3b53aad03d8343.md b/content/discover/feed-5a662ffa0da33de32d3b53aad03d8343.md deleted file mode 100644 index 3a09b8a9e..000000000 --- a/content/discover/feed-5a662ffa0da33de32d3b53aad03d8343.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Chris Shiflett -date: "1970-01-01T00:00:00Z" -description: Public posts from @shiflett@mastodon.social -params: - feedlink: https://mastodon.social/@shiflett.rss - feedtype: rss - feedid: 5a662ffa0da33de32d3b53aad03d8343 - websites: - https://mastodon.social/@shiflett: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://shiflett.org/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5a987e98f1eb614a88ddda896c857f59.md b/content/discover/feed-5a987e98f1eb614a88ddda896c857f59.md new file mode 100644 index 000000000..8c463e100 --- /dev/null +++ b/content/discover/feed-5a987e98f1eb614a88ddda896c857f59.md @@ -0,0 +1,423 @@ +--- +title: Tech insights +date: "2024-07-06T21:31:07-07:00" +description: "" +params: + feedlink: https://lifeofpenguin.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 5a987e98f1eb614a88ddda896c857f59 + websites: + https://lifeofpenguin.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 3 body problem + - 3D model + - 3D render + - AR + - ASM + - ATI Theater remote + - AWS API + - AWS EC2 + - AWS S3 + - Analytics + - Android Marshmallow + - Animation + - Arabic + - Augmented Reality + - Bengali + - Builder + - CCU + - CEDET + - CID Font + - CSS + - CWM recovery + - Chinese + - Circle Packing + - DB + - DTH + - DTH India + - DVB-C + - DVB-S + - DVB-T + - DVBSky S960 + - DWH&BI + - Dance Central + - Denon + - Denon 2113 + - EDE + - EPG + - Electronic Program Guide + - Elisp snippets + - FBP + - Facebook + - Formula Editor + - GIOChannel + - GNU Linux + - GNU/MINIX + - GeM OS + - Gujarati + - HP3545 + - HTML + - HTML entity + - HTPC + - Hebrew + - Hershey font + - Hindi + - IBM + - IBM Watson + - IDE + - IVR + - Interactive + - IoT + - JSON Path + - Japanese + - Java IDE + - Kannada + - Kent + - Kent maintenance + - Kinect + - Kinect Adventures + - Kodi + - Korean + - LISP interpreter + - LNB + - Linux + - Mi Red 2 Prime + - MinixFS + - Molly kernel + - Motion gaming + - Mozilla Readability + - Mozilla reader mode + - Multiselect + - MySQL + - OMS + - Oculus + - OffscreenWindow + - OpenCV + - Outline view + - PCB + - PDF + - PDF form + - REST API test + - RF Remote + - RO + - SDL + - SES + - SMIL + - SPICE + - STB + - SVG + - SVG 2 + - SVG animation + - SVG font + - Samsung Gear VR + - Satellite Dish + - Semantic + - TV + - Tamil + - Television + - UPnP + - VR + - VRML + - Vim + - Virtual Reality + - Water Purifier + - Windows + - XBMC + - XPath + - Xbox + - Xbox 360 + - Xbox 360 with Kinect + - Xorg + - adblock + - alembic + - amazon api + - aspell + - assembly language + - audio + - auto-suggest + - background + - bigbasket + - blank wallpaper + - bootable + - braille + - browser + - bubble graph + - build + - business intelligence + - c++ + - calc + - calculator + - call tree + - cbr + - cbz + - chronological view + - cms + - code format + - comic book reader + - comics + - comics builder + - compose emoji + - condition variable + - context menu + - cool effect + - cross-compile + - customer care + - data entry + - data science + - data warehousing + - database + - debain stretch + - debian + - desktop widget + - devanagari + - dictionary + - display engine + - donut + - draw + - drupal integration + - ebook + - ecommerce + - editing + - electronics + - elisp + - elle + - eltorrito + - emacs + - emacs theme + - emacsen + - email + - embed application + - emms + - face detection + - fancy fonts + - fastboot + - ffap + - ffmpeg + - file explorer + - filter + - find file at point + - firefox + - firefox reader view + - firefox tags + - flatten + - floating window + - flow based programming + - font-lock + - forms mode + - g++ + - gVim + - gerber + - gestures + - ghostscript + - git + - git graph + - git log + - gnu + - gnu emacs + - gnuplot + - google + - gradient + - grid-tie inverter + - grub + - grub2 + - gtk + - gtkplug + - gtksocket + - hard disk image + - hibernate + - hit-a-hint + - home appliances + - hyperbole + - i18n + - icons + - image library + - image magnifier + - inline-size + - inverter + - java + - javascript + - jee + - jiomart + - jit + - just in time + - kids + - lazy load + - learning exercise + - learning workbook + - lg tv + - librsvg + - line number + - linearized + - listenbrainz + - live preview + - magit + - magnify + - map + - matching game + - maths + - micro emacs + - minix + - minix filesystem + - miracast + - mission control + - mood lighting + - mp3 tag + - mpv + - multimedia editing + - multithread + - multitouch + - mutex + - ncurses + - nested ifdef + - netflix + - ngspice + - nmcli + - no wallpaper + - note taking + - oauth2 + - offscreen rendering + - order management system + - org-mode + - org-roam + - otc/ttc + - otf/ttf + - pattern recognition + - php + - piechart + - presentation + - print + - print CJK + - print image + - print unicode + - privacy + - pwm + - radar + - random color + - random face + - random number + - rclone + - reddit + - retail + - reveal.js + - rgb led + - rpi + - scatter plot + - schematics + - screen casting + - screen mirroring + - scribble + - senator + - shadow + - sheet music + - shell + - shop + - shopping app + - simulation + - slideshow + - slow + - snooping + - social media client + - solar + - spellcheck + - spider plot + - spreadsheet + - sprite sheet + - srecode + - stock heatmap + - streaming media + - stroke font + - surf browser + - swipe + - swype + - symbol library + - syntax-highlight + - table + - tag explorer + - tailor pattern + - telecom + - terminal + - text book + - text sort + - text wrap + - textpath + - thesaurus + - thread + - time series + - time wheel + - tinylisp + - tracking + - tramp + - transliteration + - transponder + - tree widget + - truetype font + - tshirt pattern + - tumblr + - tuning + - twitter + - type hierarchy + - url accelerator + - url hint + - vi + - video + - visualization + - vlc + - weather + - web + - webkit + - webkit2gtk + - webkitgtk2 + - webos + - wheel of time + - widget + - widgets + - wifi display + - wifi p2p + - wpa_cli + - wpa_supplicant + - wrl + - wysiwyg print + - xembed + - xfce + - xfdashboard + - xmltv + - xwidget + - ytdl + - zoom + relme: + https://lifeofpenguin.blogspot.com/: true + last_post_title: Text along a path (GNU Emacs) + last_post_description: "" + last_post_date: "2024-07-06T21:30:33-07:00" + last_post_link: https://lifeofpenguin.blogspot.com/2024/06/text-along-path-gnu-emacs.html + last_post_categories: + - CSS + - SVG + - SVG 2 + - gnu emacs + - inline-size + - librsvg + - text wrap + - textpath + last_post_language: "" + last_post_guid: c2bfef39e73d01ee317d79966139aec7 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5aa619027d1c85d3c55b2ea0249aea1b.md b/content/discover/feed-5aa619027d1c85d3c55b2ea0249aea1b.md new file mode 100644 index 000000000..15466980f --- /dev/null +++ b/content/discover/feed-5aa619027d1c85d3c55b2ea0249aea1b.md @@ -0,0 +1,56 @@ +--- +title: The Grace and Paul Pottscast +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://pottscast.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 5aa619027d1c85d3c55b2ea0249aea1b + websites: + https://pottscast.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Announcement + - Commentary + - Encore Presentation + - Episode + - Field Recording + - Hot Take + relme: + https://armstrong-collection.blogspot.com/: true + https://geeklikemetoo.blogspot.com/: true + https://geekversusguitar.blogspot.com/: true + https://hodgecast.blogspot.com/: true + https://pottscast.blogspot.com/: true + https://praisecurseandrecurse.blogspot.com/: true + https://thebooksthatwroteme.blogspot.com/: true + https://www.blogger.com/profile/04401509483200614806: true + last_post_title: Retiring This Blog + last_post_description: Beginning in May of 2023, I am no longer planning to add + new posts to this blog. All new podcast episodes will have blog posts on my podcast + archive page. + last_post_date: "2023-05-19T00:33:00Z" + last_post_link: https://pottscast.blogspot.com/2023/05/retiring-this-blog.html + last_post_categories: + - Announcement + last_post_language: "" + last_post_guid: ee18a9d9e9aff4e24ecd3cdee2437223 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5aae5155d7cb7e1afea9e300c56b200e.md b/content/discover/feed-5aae5155d7cb7e1afea9e300c56b200e.md deleted file mode 100644 index 1693a24c7..000000000 --- a/content/discover/feed-5aae5155d7cb7e1afea9e300c56b200e.md +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: Arun's blog -date: "1970-01-01T00:00:00Z" -description: Hack it -params: - feedlink: https://arunsag.wordpress.com/feed/ - feedtype: rss - feedid: 5aae5155d7cb7e1afea9e300c56b200e - websites: - https://arunsag.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - conference - - fedora - - flock - - confernce - - flock15 - - rochester - relme: {} - last_post_title: Flock 2015 – Report Day0 and Day1 - last_post_description: 'Day 0: I almost missed my flight at the san jose airport, - My flight was supposed to take off by 2:55. There was a big queue at the airport - around 2:30 pm.  I cleared TSA around 2:40 pm. It was' - last_post_date: "2015-08-18T23:46:54Z" - last_post_link: https://arunsag.wordpress.com/2015/08/18/flock-2015-report-day0-and-day1/ - last_post_categories: - - conference - - fedora - - flock - - confernce - - flock15 - - rochester - last_post_guid: fe1add57d3bee5d29aa96ad1ba4ae004 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5aafb5a80aeb0695abd4ef66124d6a58.md b/content/discover/feed-5aafb5a80aeb0695abd4ef66124d6a58.md deleted file mode 100644 index decbbd7ab..000000000 --- a/content/discover/feed-5aafb5a80aeb0695abd4ef66124d6a58.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: "Mike Kuketz \U0001F6E1" -date: "1970-01-01T00:00:00Z" -description: Public posts from @kuketzblog@social.tchncs.de -params: - feedlink: https://social.tchncs.de/@kuketzblog.rss - feedtype: rss - feedid: 5aafb5a80aeb0695abd4ef66124d6a58 - websites: - https://social.tchncs.de/@kuketzblog: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://www.kuketz-blog.de/: true - https://www.kuketz-blog.de/chat/: true - https://www.kuketz-forum.de/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5ac78907060b622124d5a124845f313a.md b/content/discover/feed-5ac78907060b622124d5a124845f313a.md deleted file mode 100644 index 837166e14..000000000 --- a/content/discover/feed-5ac78907060b622124d5a124845f313a.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Adam Keys is Learning -date: "1970-01-01T00:00:00Z" -description: Telling a joke, trying to, or making a joke of myself. Engineering lead - and full-stack developer. Porsches, Disney parks, pub quiz, Star Wars, Destiny, - music, television. We should all write more -params: - feedlink: https://til.therealadam.com/podcast.xml - feedtype: rss - feedid: 5ac78907060b622124d5a124845f313a - websites: - https://til.therealadam.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Society & Culture - relme: - https://github.com/therealadam: true - https://micro.blog/therealadam: false - https://twitter.com/therealadam: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 1 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 11 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-5adc01517a8cdaa3300fe68c0723c5a5.md b/content/discover/feed-5adc01517a8cdaa3300fe68c0723c5a5.md deleted file mode 100644 index 2abc9456d..000000000 --- a/content/discover/feed-5adc01517a8cdaa3300fe68c0723c5a5.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: strandlines -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://strandlines.blog/feed/ - feedtype: rss - feedid: 5adc01517a8cdaa3300fe68c0723c5a5 - websites: - https://strandlines.blog/: true - blogrolls: [] - recommended: [] - recommender: - - https://colinwalker.blog/dailyfeed.xml - - https://colinwalker.blog/livefeed.xml - categories: [] - relme: - https://micro.blog/@strandlines: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5ae2909164d5fe91af9b610bf0ddbc5e.md b/content/discover/feed-5ae2909164d5fe91af9b610bf0ddbc5e.md new file mode 100644 index 000000000..51720736a --- /dev/null +++ b/content/discover/feed-5ae2909164d5fe91af9b610bf0ddbc5e.md @@ -0,0 +1,76 @@ +--- +title: ויזו'אל חופשי +date: "1970-01-01T00:00:00Z" +description: גרפיקה ועולם פתוח +params: + feedlink: https://free-visual.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 5ae2909164d5fe91af9b610bf0ddbc5e + websites: + https://free-visual.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Bullet + - Cuda + - Cycles + - Darktable + - GIMP + - GIMP 2.8 + - Linux + - LuxRender + - Tracker + - blender + - compositing + - kde + - krita + - yafa-ray + - אזור בחירה + - בלנדר + - גימפ + - מודולי צבע + - מידול + - מנוע רינדור + - מסכה + - מצלמה + - עריכת תמונות + - פיסול + - קהילה + - קוד פתוח + - תאורה + - תוספים + - תלת מימד + relme: + https://free-visual.blogspot.com/: true + https://www.blogger.com/profile/02468277215955199582: true + last_post_title: חבר חדש Darktable, או איך לעשות Post Production בכמה שניות + last_post_description: "" + last_post_date: "2014-04-13T08:49:00Z" + last_post_link: https://free-visual.blogspot.com/2014/04/darktable-post-production.html + last_post_categories: + - Darktable + - מודולי צבע + - מצלמה + - עריכת תמונות + - קוד פתוח + - תאורה + last_post_language: "" + last_post_guid: 11978f5eafef2b9674d3dddc7b58fc77 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5af3f0f1a7d73cb4e7bfce55cd693985.md b/content/discover/feed-5af3f0f1a7d73cb4e7bfce55cd693985.md new file mode 100644 index 000000000..3e73c3e3f --- /dev/null +++ b/content/discover/feed-5af3f0f1a7d73cb4e7bfce55cd693985.md @@ -0,0 +1,51 @@ +--- +title: Lukas Kosters Ruimte +date: "1970-01-01T00:00:00Z" +description: Stukjes over Haarlem, stadsgeschiedenis, cartografie, en dergelijke +params: + feedlink: https://lukaskoster.nl/feed/ + feedtype: rss + feedid: 5af3f0f1a7d73cb4e7bfce55cd693985 + websites: + https://lukaskoster.nl/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Haarlemse Stukjes + - haarlem + - vestingwerken + relme: + https://commonplace.net/: true + https://lukaskoster.nl/: true + https://masto.ai/@lukask: true + https://www.openstreetmap.org/user/lukask99: true + last_post_title: De twee Kruispoorten van Haarlem + last_post_description: De Haarlemse Kruispoort werd tijdens het Beleg van Haarlem + (1572-1573) verwoest. Net als andere beschadigde en verwoeste verdedigingswerken + werd de Kruispoort na enige jaren herbouwd, maar niet op + last_post_date: "2021-11-08T10:32:32Z" + last_post_link: https://lukaskoster.nl/816/ + last_post_categories: + - Haarlemse Stukjes + - haarlem + - vestingwerken + last_post_language: "" + last_post_guid: f7eb9cc323242c29ff9ba370b849ff2b + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: nl +--- diff --git a/content/discover/feed-5b00a83ed6f2031864407c19121765df.md b/content/discover/feed-5b00a83ed6f2031864407c19121765df.md index 2ac425608..ae193d50e 100644 --- a/content/discover/feed-5b00a83ed6f2031864407c19121765df.md +++ b/content/discover/feed-5b00a83ed6f2031864407c19121765df.md @@ -15,31 +15,30 @@ params: categories: [] relme: https://github.com/jthingelstad: true - https://mastodon.social/@jamiethingelstad: true - https://micro.blog/jthingelstad: false - https://t.me/jthingelstad: false - https://twitter.com/thingles: false - https://weekly.thingelstad.com/: false - https://www.linkedin.com/in/jthingelstad/: false https://www.thingelstad.com/: true - last_post_title: 'Omni Show 136: How Jamie Thingelstad Uses OmniFocus' - last_post_description: Episode 136 of the Omni Show podcast just showed up with - me as the guest! I recorded this a couple weeks ago with Andrew Mason and it is - great to see it live. The Omni Show is also trying out video - last_post_date: "2024-06-03T22:20:21+01:00" - last_post_link: https://www.thingelstad.com/2024/06/03/omni-show-how.html + last_post_title: Fiber Installed at Cabin + last_post_description: I met with Bevcomm on July 1 2023 to give them the go ahead + to install fiber at our cabin. They thought it would take about a year and today + — one year and two days later — it was installed and + last_post_date: "2024-07-03T21:23:20-05:00" + last_post_link: https://www.thingelstad.com/2024/07/03/fiber-installed-at.html last_post_categories: [] - last_post_guid: 0267d4f7fabd3555790c11fa381e5993 + last_post_language: "" + last_post_guid: 8225443707f6ee0b128cafa29d8c2856 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 12 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-5b0e57fb14a40f8fbb1794c8ddeb2eda.md b/content/discover/feed-5b0e57fb14a40f8fbb1794c8ddeb2eda.md deleted file mode 100644 index e38d5e0cf..000000000 --- a/content/discover/feed-5b0e57fb14a40f8fbb1794c8ddeb2eda.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: 'Matt Langford :prami:' -date: "1970-01-01T00:00:00Z" -description: Public posts from @matthew@social.lol -params: - feedlink: https://social.lol/@matthew.rss - feedtype: rss - feedid: 5b0e57fb14a40f8fbb1794c8ddeb2eda - websites: - https://social.lol/@matthew: true - https://social.lol/@matthew/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://matthew.omg.lol/: true - https://twitter.com/mattslangford: false - https://www.mattlangford.com/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5b11a832d82b33d1671164b3c0040bda.md b/content/discover/feed-5b11a832d82b33d1671164b3c0040bda.md deleted file mode 100644 index 2acddd306..000000000 --- a/content/discover/feed-5b11a832d82b33d1671164b3c0040bda.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Ruarí Ødegaard -date: "1970-01-01T00:00:00Z" -description: Public posts from @ruario@vivaldi.net -params: - feedlink: https://social.vivaldi.net/@ruario.rss - feedtype: rss - feedid: 5b11a832d82b33d1671164b3c0040bda - websites: - https://social.vivaldi.net/@ruario: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://oulipo.social/@ruario: true - https://social.vivaldi.net/@vivaldiversiontracker: false - https://velocipederider.com/@ruari: true - https://vivaldi.com/team/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5b122f40f76be40e7e6420ac06200441.md b/content/discover/feed-5b122f40f76be40e7e6420ac06200441.md new file mode 100644 index 000000000..a047863d0 --- /dev/null +++ b/content/discover/feed-5b122f40f76be40e7e6420ac06200441.md @@ -0,0 +1,53 @@ +--- +title: Eclipse by Planetary Transits +date: "2024-03-05T02:47:24-08:00" +description: "" +params: + feedlink: https://henrik-eclipse.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 5b122f40f76be40e7e6420ac06200441 + websites: + https://henrik-eclipse.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Eclipse Sweden + - b3 + - buckminster + - cloudsmith + - eclipse + - eclipse spaces publishing xdrive plugin bundle OSGi + - xtext + relme: + https://eclipse-buckminster.blogspot.com/: true + https://henrik-eclipse.blogspot.com/: true + https://henrik-lindberg.blogspot.com/: true + https://www.blogger.com/profile/18131140901733897033: true + last_post_title: Implementing Date Support with Quickfix using Xtext + last_post_description: "" + last_post_date: "2010-05-19T15:22:23-07:00" + last_post_link: https://henrik-eclipse.blogspot.com/2010/05/implementing-date-support-with-quickfix.html + last_post_categories: + - b3 + - eclipse + - xtext + last_post_language: "" + last_post_guid: 92cde09374f90ca05ee5c5b88425e5b4 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5b14758c28602ed281c23385c0c4f055.md b/content/discover/feed-5b14758c28602ed281c23385c0c4f055.md deleted file mode 100644 index 87fc217a2..000000000 --- a/content/discover/feed-5b14758c28602ed281c23385c0c4f055.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: '@snarfed.org - Ryan' -date: "1970-01-01T00:00:00Z" -description: https://snarfed.org -params: - feedlink: https://bsky.app/profile/did:plc:fdme4gb7mu7zrie7peay7tst/rss - feedtype: rss - feedid: 5b14758c28602ed281c23385c0c4f055 - websites: - https://bsky.app/profile/snarfed.org: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5b3877205055fd2248927b7b51329f5f.md b/content/discover/feed-5b3877205055fd2248927b7b51329f5f.md new file mode 100644 index 000000000..ac6e95415 --- /dev/null +++ b/content/discover/feed-5b3877205055fd2248927b7b51329f5f.md @@ -0,0 +1,47 @@ +--- +title: Life with Linux +date: "2024-03-05T14:17:47+02:00" +description: "" +params: + feedlink: https://life-with-linux.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 5b3877205055fd2248927b7b51329f5f + websites: + https://life-with-linux.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Fedora + - Free Software + - Linux + - Microsoft + - OLPC + - hardware + relme: + https://life-with-linux.blogspot.com/: true + https://www.blogger.com/profile/00302498410948542598: true + last_post_title: Sick PCs should be banned from the net + last_post_description: "" + last_post_date: "2010-10-08T23:05:38+02:00" + last_post_link: https://life-with-linux.blogspot.com/2010/10/sick-pcs-should-be-banned-from-net.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 709ffcf61980cfe1f50da83c7a3665ff + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5b3fcedb1e41e967ba8194e5cf6ba8ea.md b/content/discover/feed-5b3fcedb1e41e967ba8194e5cf6ba8ea.md deleted file mode 100644 index a35ad7794..000000000 --- a/content/discover/feed-5b3fcedb1e41e967ba8194e5cf6ba8ea.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Thomas Gigold -date: "2024-06-02T13:47:01Z" -description: Ãœber das Netz, das Leben und den ganzen Rest -params: - feedlink: https://gigold.me/rss - feedtype: rss - feedid: 5b3fcedb1e41e967ba8194e5cf6ba8ea - websites: - https://gigold.de/: false - https://gigold.me/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://gigold.me/: true - https://github.com/gigold01: true - https://mastodon.social/@gigold: false - https://www.threads.net/@gigold: false - last_post_title: Wochenendliste 22/24 - last_post_description: "" - last_post_date: "2024-06-02T13:47:01Z" - last_post_link: https://gigold.me/blog/wochenendliste-22-24 - last_post_categories: [] - last_post_guid: 22c6bf13c4596267284876c1e79f04a0 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5b45a0e2030c6f76fa7ddd7b62cde4b3.md b/content/discover/feed-5b45a0e2030c6f76fa7ddd7b62cde4b3.md deleted file mode 100644 index ce06aa701..000000000 --- a/content/discover/feed-5b45a0e2030c6f76fa7ddd7b62cde4b3.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: PaulStamatiou.com - Technology, Design and Photography -date: "2023-10-20T04:39:45Z" -description: "" -params: - feedlink: https://paulstamatiou.com/posts.xml - feedtype: atom - feedid: 5b45a0e2030c6f76fa7ddd7b62cde4b3 - websites: - https://paulstamatiou.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: [] - relme: - https://stammy.design/@stammy: true - https://twitter.com/Stammy: false - last_post_title: Stocketa - last_post_description: "" - last_post_date: "2023-10-16T16:00:00Z" - last_post_link: https://paulstamatiou.com/stocketa/ - last_post_categories: [] - last_post_guid: e76dbb256169725044abe53dba2fed23 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 12 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5b4b0f7afaebba77c5c1e21853698e28.md b/content/discover/feed-5b4b0f7afaebba77c5c1e21853698e28.md new file mode 100644 index 000000000..f6c624a1f --- /dev/null +++ b/content/discover/feed-5b4b0f7afaebba77c5c1e21853698e28.md @@ -0,0 +1,48 @@ +--- +title: Commentaires pour Fabián Rodríguez, « MagicFab » +date: "1970-01-01T00:00:00Z" +description: Consultant et conférencier en logiciels libres et GNU/Linux basé à Montréal, + Québec (Canada) +params: + feedlink: https://magicfab.ca/comments/feed/ + feedtype: rss + feedid: 5b4b0f7afaebba77c5c1e21853698e28 + websites: + https://magicfab.ca/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://legoutdulibre.com/: true + https://magicfab.ca/: true + https://mastodon.social/@magicfab: true + https://mastodon.social/@magicfab/tagged/images: true + last_post_title: 'Commentaires sur L’extension « Disable #Google Fonts » pour #WordPress + – un #GAFAM de moins sur mon site par MagicFab' + last_post_description: |- + En effet, je crois que c'est rendu pas mal pire surtout pour ce qui est des librairies Javascript. + + Je crois que ton lien pourrait servir à faire une "checklist" même si incomplète de ce qu'un + last_post_date: "2018-10-04T10:45:11Z" + last_post_link: https://magicfab.ca/2018/10/lextension-disable-google-fonts-pour-wordpress-un-gafam-de-moins-sur-mon-site/comment-page-1/#comment-8883 + last_post_categories: [] + last_post_language: "" + last_post_guid: 662536ae76d9b80735d87728a990a89d + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5b683aaf42ba8721cc1c32319ed7ee8a.md b/content/discover/feed-5b683aaf42ba8721cc1c32319ed7ee8a.md deleted file mode 100644 index 73f5550f8..000000000 --- a/content/discover/feed-5b683aaf42ba8721cc1c32319ed7ee8a.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Gus -date: "1970-01-01T00:00:00Z" -description: Public posts from @ggus@mastodon.social -params: - feedlink: https://mastodon.social/@ggus.rss - feedtype: rss - feedid: 5b683aaf42ba8721cc1c32319ed7ee8a - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5b8b317fa0768d8af327ecd9c92b0f80.md b/content/discover/feed-5b8b317fa0768d8af327ecd9c92b0f80.md deleted file mode 100644 index dff594cdb..000000000 --- a/content/discover/feed-5b8b317fa0768d8af327ecd9c92b0f80.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: rgdd.se -date: "1970-01-01T00:00:00Z" -description: Recent content on rgdd.se -params: - feedlink: https://www.rgdd.se/index.xml - feedtype: rss - feedid: 5b8b317fa0768d8af327ecd9c92b0f80 - websites: - https://www.rgdd.se/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: 'We released a thing: st-1.0.0' - last_post_description: |- - We released a thing: st-1.0.0 Rasmus Dahlberg, 2024-05-12. - On Thursday this week, the System Transparency project announced st-1.0.0. It is a collection of stable, tested, and documented components - last_post_date: "2024-05-12T00:00:00Z" - last_post_link: https://www.rgdd.se/post/we-released-a-thing-st-1.0.0/ - last_post_categories: [] - last_post_guid: 9445693ff344f16342c78df3efde2908 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5b9366f0f068a2b8cc36ebd256dcb944.md b/content/discover/feed-5b9366f0f068a2b8cc36ebd256dcb944.md deleted file mode 100644 index 5acc613f7..000000000 --- a/content/discover/feed-5b9366f0f068a2b8cc36ebd256dcb944.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Always Twisted -date: "1970-01-01T00:00:00Z" -description: Slightly bizarre ramblings of a front-end developer. -params: - feedlink: https://alwaystwisted.com/rss.php - feedtype: rss - feedid: 5b9366f0f068a2b8cc36ebd256dcb944 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: [] - relme: {} - last_post_title: Design Tokens, Components, and 24Ways - last_post_description: It’s nearly Christmas, It’s time for 24ways. This year my - article was all about Design Tokens - last_post_date: "2019-12-14T12:00:00Z" - last_post_link: http://alwaystwisted.com/articles/design-tokens-components-and-24ways - last_post_categories: [] - last_post_guid: 233b3830d8c4156185b44d2d3d619686 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5b99d0636a30d7ae3abba66c7b896a95.md b/content/discover/feed-5b99d0636a30d7ae3abba66c7b896a95.md new file mode 100644 index 000000000..b77c1b830 --- /dev/null +++ b/content/discover/feed-5b99d0636a30d7ae3abba66c7b896a95.md @@ -0,0 +1,45 @@ +--- +title: Will's Python Notebook +date: "1970-01-01T00:00:00Z" +description: Things I've learned while coding in python. +params: + feedlink: https://willpython.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 5b99d0636a30d7ae3abba66c7b896a95 + websites: + https://willpython.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - asyncore asynchat threading + relme: + https://willpython.blogspot.com/: true + last_post_title: '"top" in an animated GIF' + last_post_description: |- + I noticed a lot of animated GIFs showing up in my Google+ feed recently.  Mainly it was cats. + + + I thought, why not render "top" output as an animated GIF?  It's not the most practical thing, but it + last_post_date: "2013-03-10T21:25:00Z" + last_post_link: https://willpython.blogspot.com/2013/03/top-in-animated-gif.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 0e1ffe5a3a683de549d89cec86d75cea + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5ba3ac9c0e8d097fa89c3127b161b6a2.md b/content/discover/feed-5ba3ac9c0e8d097fa89c3127b161b6a2.md new file mode 100644 index 000000000..7dff2711b --- /dev/null +++ b/content/discover/feed-5ba3ac9c0e8d097fa89c3127b161b6a2.md @@ -0,0 +1,42 @@ +--- +title: tripediac +date: "2024-03-13T07:08:48-07:00" +description: "" +params: + feedlink: https://tripediac.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 5ba3ac9c0e8d097fa89c3127b161b6a2 + websites: + https://tripediac.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://gsoc-sage-lattices.blogspot.com/: true + https://tripediac.blogspot.com/: true + https://www.blogger.com/profile/13654908322659541350: true + last_post_title: New design + last_post_description: "" + last_post_date: "2008-12-21T16:15:28-08:00" + last_post_link: https://tripediac.blogspot.com/2008/12/new-design.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 0fae1d09beeb462a1e7cf343ad363c13 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5bd26cdef6829316ad35f672b3e977a1.md b/content/discover/feed-5bd26cdef6829316ad35f672b3e977a1.md new file mode 100644 index 000000000..4df2af629 --- /dev/null +++ b/content/discover/feed-5bd26cdef6829316ad35f672b3e977a1.md @@ -0,0 +1,92 @@ +--- +title: FLOSSLinux +date: "2024-06-03T18:38:04+01:00" +description: Random musings about Free/Libre/Open Source Software - and also about + Linux and the way that the world is, gadgets and trends +params: + feedlink: https://flosslinuxblog.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 5bd26cdef6829316ad35f672b3e977a1 + websites: + https://flosslinuxblog.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 3G + - Apache + - Blog + - Bluetooth + - Book + - Cambridge + - Canonical + - Cost of "old machines" + - Debian + - FLOSS + - Familiarity + - First post + - GSM + - Hell freezes + - Laptop ACPI + - Lessons in file saving + - Linux radio ad. + - Microsoft + - PDF + - Philosophical ramblings + - RHCT + - Sheevaplug SoC + - Sheevaplug ideas + - Sheevaplug ideas? + - Social media + - Squeeze + - Squeeze 6.0 + - UKUUG conference + - Useful stuff - cross platform + - Windows install + - added extras + - advice + - barbeque + - booting + - chilli popcorn + - community + - demo + - effort + - file system + - gateway + - licence + - manifesto + - mirror + - release + - source code + - wifi + - wisdom of crowds + relme: + https://flosslinuxblog.blogspot.com/: true + https://linuxbitsandscripts.blogspot.com/: true + https://poetryandstuffforfun.blogspot.com/: true + https://www.blogger.com/profile/17644077996431326998: true + last_post_title: Lessons from (and for) colleagues - and, implicitly, how NOT to + get on + last_post_description: "" + last_post_date: "2024-02-12T22:13:41Z" + last_post_link: https://flosslinuxblog.blogspot.com/2024/02/lessons-from-and-for-colleagues-and.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 81d05b8a9f21516134c175a962bb53d4 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5bd7a469141efac35e9b827c836a572d.md b/content/discover/feed-5bd7a469141efac35e9b827c836a572d.md index ee596866e..3aafe5e8f 100644 --- a/content/discover/feed-5bd7a469141efac35e9b827c836a572d.md +++ b/content/discover/feed-5bd7a469141efac35e9b827c836a572d.md @@ -13,7 +13,9 @@ params: recommender: [] categories: [] relme: + https://buttondown.email/pepysdiary: true https://mastodon.social/@samuelpepys: true + https://www.pepysdiary.com/: true last_post_title: The Time Traveller’s Guide to Restoration Britain last_post_description: |- The past is a foreign country. They do things differently there @@ -21,17 +23,22 @@ params: last_post_date: "2023-02-28T15:10:31Z" last_post_link: https://www.pepysdiary.com/indepth/2023/02/28/guide-restoration-britain/ last_post_categories: [] + last_post_language: "" last_post_guid: 899ce61887d322c06ae5169d6d3d2cee score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-5bd8a69e95bd2cbf1d4d100e58b894e9.md b/content/discover/feed-5bd8a69e95bd2cbf1d4d100e58b894e9.md deleted file mode 100644 index d2a2d5e37..000000000 --- a/content/discover/feed-5bd8a69e95bd2cbf1d4d100e58b894e9.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Comments for PRINT Magazine -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://www.printmag.com/comments/feed/ - feedtype: rss - feedid: 5bd8a69e95bd2cbf1d4d100e58b894e9 - websites: - https://www.printmag.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5bf2e3a38b788af12feae968b5de23e2.md b/content/discover/feed-5bf2e3a38b788af12feae968b5de23e2.md new file mode 100644 index 000000000..4ba568e32 --- /dev/null +++ b/content/discover/feed-5bf2e3a38b788af12feae968b5de23e2.md @@ -0,0 +1,50 @@ +--- +title: Stories by Ekansh Jha on Medium +date: "1970-01-01T00:00:00Z" +description: Stories by Ekansh Jha on Medium +params: + feedlink: https://medium.com/feed/@ekanshjha + feedtype: rss + feedid: 5bf2e3a38b788af12feae968b5de23e2 + websites: + https://medium.com/@ekanshjha?source=rss-60cecad88924------2: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - gsoc + - libreoffice + - open-source + - software-development + - unit-testing + relme: + https://medium.com/@ekanshjha?source=rss-60cecad88924------2: true + last_post_title: Google Summer of Code — Final Submission + last_post_description: "" + last_post_date: "2018-08-12T19:13:23Z" + last_post_link: https://medium.com/@ekanshjha/google-summer-of-code-final-submission-6368ac46fcc?source=rss-60cecad88924------2 + last_post_categories: + - gsoc + - libreoffice + - open-source + - software-development + - unit-testing + last_post_language: "" + last_post_guid: 0c94d4c5672d264975481dc923f9ccc3 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5bf87e5e7ce2204835f8af2e5b9a3f11.md b/content/discover/feed-5bf87e5e7ce2204835f8af2e5b9a3f11.md deleted file mode 100644 index 4ff4989d6..000000000 --- a/content/discover/feed-5bf87e5e7ce2204835f8af2e5b9a3f11.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: ahojo -date: "1970-01-01T00:00:00Z" -description: Public posts from @ahojo@vivaldi.net -params: - feedlink: https://social.vivaldi.net/@ahojo.rss - feedtype: rss - feedid: 5bf87e5e7ce2204835f8af2e5b9a3f11 - websites: - https://social.vivaldi.net/@ahojo: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://vivaldi.com/team/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5c0bd5e622dfb328362c2a960fa40c26.md b/content/discover/feed-5c0bd5e622dfb328362c2a960fa40c26.md new file mode 100644 index 000000000..f5fe9a19f --- /dev/null +++ b/content/discover/feed-5c0bd5e622dfb328362c2a960fa40c26.md @@ -0,0 +1,46 @@ +--- +title: Extending Matroid Functionality Google Summer of Code 2016 +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://extendingmatroidfunctionality.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 5c0bd5e622dfb328362c2a960fa40c26 + websites: + https://extendingmatroidfunctionality.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://adventuresofamathphd.blogspot.com/: true + https://extendingmatroidfunctionality.blogspot.com/: true + https://taraadrift.blogspot.com/: true + https://whenivisitedabaptistchurch.blogspot.com/: true + https://www.blogger.com/profile/03187790486376807341: true + last_post_title: Overview of what was done + last_post_description: |- + My project has been extending the functionality of SageMath in a matroid direction. + As part of my application, and before the summer officially started, I worked on two tickets: https://trac + last_post_date: "2016-08-22T14:18:00Z" + last_post_link: https://extendingmatroidfunctionality.blogspot.com/2016/08/overview-of-what-was-done.html + last_post_categories: [] + last_post_language: "" + last_post_guid: dc98cb12070d254ecd171bcf182101d7 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5c0ce55ace037857e83fb9dd05c41c74.md b/content/discover/feed-5c0ce55ace037857e83fb9dd05c41c74.md deleted file mode 100644 index 9daea127d..000000000 --- a/content/discover/feed-5c0ce55ace037857e83fb9dd05c41c74.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Kilian Valkhof -date: "1970-01-01T00:00:00Z" -description: Front-end & user experience developer -params: - feedlink: https://kilianvalkhof.com/feed/ - feedtype: rss - feedid: 5c0ce55ace037857e83fb9dd05c41c74 - websites: - https://kilianvalkhof.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Javascript - relme: - https://mastodon.social/@Kilian: true - https://news.ycombinator.com/user?id=kilian: false - https://twitter.com/kilianvalkhof: false - https://www.linkedin.com/in/kilianvalkhof: false - last_post_title: The problem with new URL(), and how URL.parse() fixes that - last_post_description: As someone building a browser I need to parse a lot of URLs. - Partially to validate them, but also to normalize them or get specific parts out - of the URL. The URL API in browsers lets you do that, but - last_post_date: "2024-04-24T10:09:13Z" - last_post_link: https://kilianvalkhof.com/2024/javascript/the-problem-with-new-url-and-how-url-parse-fixes-that/ - last_post_categories: - - Javascript - last_post_guid: f5068e5a282d6971728ccd2dd5e039bc - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5c1985c726bda514fb16a70db458f742.md b/content/discover/feed-5c1985c726bda514fb16a70db458f742.md new file mode 100644 index 000000000..175eaf8da --- /dev/null +++ b/content/discover/feed-5c1985c726bda514fb16a70db458f742.md @@ -0,0 +1,139 @@ +--- +title: The Dwan of Nyquil Meme +date: "1970-01-01T00:00:00Z" +description: Best Nyquil Meme is here. Hope You like it. +params: + feedlink: https://esirkalemler1.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 5c1985c726bda514fb16a70db458f742 + websites: + https://esirkalemler1.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Nyquil Meme is Love + last_post_description: Young medication misuse and adolescent liquor addiction ruin + a teenager's life and destroy their family. The high school years are described + by hazard taking conduct and impulsivity. An illustration + last_post_date: "2020-12-03T20:16:00Z" + last_post_link: https://esirkalemler1.blogspot.com/2020/12/nyquil-meme-is-love.html + last_post_categories: [] + last_post_language: "" + last_post_guid: a34bb0dfcc1117e857c2315824a6445f + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5c3579397c0ca28812fa4e3a8ac50404.md b/content/discover/feed-5c3579397c0ca28812fa4e3a8ac50404.md new file mode 100644 index 000000000..efc220cd2 --- /dev/null +++ b/content/discover/feed-5c3579397c0ca28812fa4e3a8ac50404.md @@ -0,0 +1,61 @@ +--- +title: Smart Themes - unikatowe szablony Blogger +date: "2024-03-13T04:49:00-07:00" +description: "" +params: + feedlink: https://smartthemesfor.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 5c3579397c0ca28812fa4e3a8ac50404 + websites: + https://smartthemesfor.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Bąbelek Facebook + - News + - Podpowiedzi Kontekstowe + - Przewracanie Stron + - Smart Tools + - Strona Powitalna + - Tag Slider + - Wiadomość Powitalna + - Z upływem czasu + - Złote Myśli + relme: + https://aboutthomasleigh.blogspot.com/: true + https://handynewsreader.blogspot.com/: true + https://jaktamjaponski.blogspot.com/: true + https://moliumpodcast.blogspot.com/: true + https://smartthemesfor.blogspot.com/: true + https://thomascafepodcast.blogspot.com/: true + https://thomasleighthemes.blogspot.com/: true + https://thomasleighuniverse.blogspot.com/: true + https://www.blogger.com/profile/01268074830941697525: true + https://zrodlokreacji.blogspot.com/: true + last_post_title: Tag Slider + last_post_description: "" + last_post_date: "2016-09-14T15:05:22-07:00" + last_post_link: https://smartthemesfor.blogspot.com/2016/09/tag-slider.html + last_post_categories: + - Smart Tools + - Tag Slider + last_post_language: "" + last_post_guid: a582225c677d22b146b882ed6e8250d9 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5c35f599ddb5a50109b6b08ab7b23635.md b/content/discover/feed-5c35f599ddb5a50109b6b08ab7b23635.md new file mode 100644 index 000000000..783c8c1b8 --- /dev/null +++ b/content/discover/feed-5c35f599ddb5a50109b6b08ab7b23635.md @@ -0,0 +1,139 @@ +--- +title: Lunk Alarms Benefits +date: "2024-03-19T11:29:34-07:00" +description: Lunk alarm is getting worse at Gym +params: + feedlink: https://shotcit.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 5c35f599ddb5a50109b6b08ab7b23635 + websites: + https://shotcit.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Alarm at evening + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Lunk Alarms Benefits + last_post_description: "" + last_post_date: "2021-05-01T10:56:51-07:00" + last_post_link: https://shotcit.blogspot.com/2021/05/lunk-alarms-benefits.html + last_post_categories: + - Alarm at evening + last_post_language: "" + last_post_guid: 119be756193acbe25118b9ec0afb5b4a + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5c3f2b06571d83df096234326ded294f.md b/content/discover/feed-5c3f2b06571d83df096234326ded294f.md deleted file mode 100644 index 27503441c..000000000 --- a/content/discover/feed-5c3f2b06571d83df096234326ded294f.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: 'Comments on: Home' -date: "1970-01-01T00:00:00Z" -description: Ben Frain – author and web developer -params: - feedlink: https://benfrain.com/home/feed/ - feedtype: rss - feedid: 5c3f2b06571d83df096234326ded294f - websites: - https://benfrain.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5c4bb87b83484ec56b476cbbb0fc1cce.md b/content/discover/feed-5c4bb87b83484ec56b476cbbb0fc1cce.md deleted file mode 100644 index b4e086783..000000000 --- a/content/discover/feed-5c4bb87b83484ec56b476cbbb0fc1cce.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: John's Micro.Blog -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://abbamoses.micro.blog/feed.xml - feedtype: rss - feedid: 5c4bb87b83484ec56b476cbbb0fc1cce - websites: - https://abbamoses.micro.blog/: true - blogrolls: [] - recommended: [] - recommender: - - https://jabel.blog/feed.xml - - https://jabel.blog/podcast.xml - categories: [] - relme: - https://micro.blog/JohnBrady: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5c4cb405d7b204a36f5ad578537afe5b.md b/content/discover/feed-5c4cb405d7b204a36f5ad578537afe5b.md new file mode 100644 index 000000000..4fbd4712d --- /dev/null +++ b/content/discover/feed-5c4cb405d7b204a36f5ad578537afe5b.md @@ -0,0 +1,44 @@ +--- +title: Meta Ideas +date: "2024-03-08T21:28:13-03:00" +description: Ever had some strange idea that you think was neat... but never had the + time to think it all properly? And what when you want to resume working on the subject... + but can't remember exactly where did +params: + feedlink: https://metaideas.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 5c4cb405d7b204a36f5ad578537afe5b + websites: + https://metaideas.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://metaideas.blogspot.com/: true + last_post_title: A solid balloon + last_post_description: 'Weird idea. I just had to post it somewhere. Think about + it: carbon nanospheres are strong, and light. Can they be vacuum-filled? (I''m + wondering if I even can write it like this, but it seems that' + last_post_date: "2004-11-11T08:24:19-03:00" + last_post_link: https://metaideas.blogspot.com/2004/11/solid-balloon.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 991eee3b2ee1ba05dae8c232f05b7572 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5c4fae2b4395b733fceaf882b03821cb.md b/content/discover/feed-5c4fae2b4395b733fceaf882b03821cb.md new file mode 100644 index 000000000..df027a620 --- /dev/null +++ b/content/discover/feed-5c4fae2b4395b733fceaf882b03821cb.md @@ -0,0 +1,54 @@ +--- +title: blog.meinstrohballenhaus.at +date: "1970-01-01T00:00:00Z" +description: Ökologisch und nachhaltig leben +params: + feedlink: https://strohlehmholz.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 5c4fae2b4395b733fceaf882b03821cb + websites: + https://strohlehmholz.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Design + - Grundbuch + - Kaufvertrag + - Kompost + - Komposttoilette + - Konzept + - Video + relme: + https://deathhasnodominion.blogspot.com/: true + https://designeratorblog.blogspot.com/: true + https://strohlehmholz.blogspot.com/: true + https://www.blogger.com/profile/10055440678413337531: true + last_post_title: Grundbuch und Kaufvertrags Hilfe + last_post_description: Ein Notar verlangt in der Regel 3% des Kaufpreises der Immobilie + als Honorar. Dazu können noch etwaige Treuhänderhonorare kommen, die wieder 1 + bis 2 % des Kaufpreises ausmachen können. Bei 100,000 + last_post_date: "2012-11-22T11:58:00Z" + last_post_link: https://strohlehmholz.blogspot.com/2012/11/grundbuch-und-kaufvertrags-hilfe.html + last_post_categories: + - Grundbuch + - Kaufvertrag + last_post_language: "" + last_post_guid: 06b56f2fe61da081be10654e0fdaff4d + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5c8bea1b7174267a855915362b683bbb.md b/content/discover/feed-5c8bea1b7174267a855915362b683bbb.md deleted file mode 100644 index fc12e6c03..000000000 --- a/content/discover/feed-5c8bea1b7174267a855915362b683bbb.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Robert McQueen -date: "1970-01-01T00:00:00Z" -description: Public posts from @ramcq@nondeterministic.computer -params: - feedlink: https://nondeterministic.computer/@ramcq.rss - feedtype: rss - feedid: 5c8bea1b7174267a855915362b683bbb - websites: - https://nondeterministic.computer/@ramcq: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://ramcq.net/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5c9efd708108b328beb692c4bb95c0ff.md b/content/discover/feed-5c9efd708108b328beb692c4bb95c0ff.md new file mode 100644 index 000000000..29d1b5a2e --- /dev/null +++ b/content/discover/feed-5c9efd708108b328beb692c4bb95c0ff.md @@ -0,0 +1,139 @@ +--- +title: Dda Depit +date: "2024-03-19T22:34:35-07:00" +description: All About Dda Debit and its benefit at one plate form so don't miss it. +params: + feedlink: https://meile-svajoti.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 5c9efd708108b328beb692c4bb95c0ff + websites: + https://meile-svajoti.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Aditional facts about area codes + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Area Codes And their Facts + last_post_description: "" + last_post_date: "2021-11-12T00:24:10-08:00" + last_post_link: https://meile-svajoti.blogspot.com/2021/11/area-codes-and-their-facts.html + last_post_categories: + - Aditional facts about area codes + last_post_language: "" + last_post_guid: 9e944679b7c12c4a9b4b4db19aa6861d + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5cc28f64132f951447f34092b3c29c75.md b/content/discover/feed-5cc28f64132f951447f34092b3c29c75.md new file mode 100644 index 000000000..9b6da2866 --- /dev/null +++ b/content/discover/feed-5cc28f64132f951447f34092b3c29c75.md @@ -0,0 +1,55 @@ +--- +title: fr_esnel | lense_rf +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://mitch-sonies.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 5cc28f64132f951447f34092b3c29c75 + websites: + https://mitch-sonies.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Buckminster + - Build + - Cloudsmith + - Eclipse + - Modeling + - Platform + relme: + https://mitch-sonies.blogspot.com/: true + https://www.blogger.com/profile/15537242570858268889: true + last_post_title: Can we build it? Yes we can! + last_post_description: Thomas Hallgren, Michal Ruzicka, and Kenn have been toiling + away since EclipseCon (Michal fulltime, Thomas and Kenn intermittently) on the + committer community's build problems. We haven't been + last_post_date: "2010-07-13T17:24:00Z" + last_post_link: https://mitch-sonies.blogspot.com/2010/07/can-we-build-it-yes-we-can.html + last_post_categories: + - Buckminster + - Build + - Cloudsmith + - Eclipse + - Modeling + - Platform + last_post_language: "" + last_post_guid: 7fcb3566154fd7b55e16b8bb115358e3 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5cd3085a60f3bae159ce042035a1e3de.md b/content/discover/feed-5cd3085a60f3bae159ce042035a1e3de.md index 119d6437d..3fa17082b 100644 --- a/content/discover/feed-5cd3085a60f3bae159ce042035a1e3de.md +++ b/content/discover/feed-5cd3085a60f3bae159ce042035a1e3de.md @@ -1,6 +1,6 @@ --- title: niqwithq -date: "2024-05-25T12:44:26Z" +date: "2024-07-08T13:25:52Z" description: I write a blog about Accessibility, User Experience Design & Productivity. New posts are released bi-weekly on Fridays. params: @@ -13,34 +13,39 @@ params: blogrolls: [] recommended: [] recommender: - - https://hacdias.com/feed.xml - - https://kevq.uk/feed - - https://kevq.uk/feed.xml - - https://kevq.uk/feed/ - https://kevquirk.com/feed + - https://kevquirk.com/feed/ + - https://kevquirk.com/notes-feed categories: [] - relme: {} - last_post_title: The More Menu + relme: + https://niqwithq.com/: true + last_post_title: Blog Post Sequels last_post_description: |- - You might have heard of the hamburger menu. - It's a user interface element that you can find all over the web. - It's represented by three horizontal lines and when clicked, it opens up a menu. + I love the idea of blog post sequels: - Its - last_post_date: "2024-05-18T00:00:00Z" - last_post_link: https://niqwithq.com/posts/the-more-menu + Write about a certain topic on your blog. + Let some time pass. + Revisit old ideas of yours and that certain topic you wrote about. + Write about it again with a new + last_post_date: "2024-07-08T00:00:00Z" + last_post_link: https://niqwithq.com/posts/blog-post-sequels last_post_categories: [] - last_post_guid: 7e0157c2fd54a51162350159d0b9d732 + last_post_language: "" + last_post_guid: bb156edab57966309e422ddaf1b6ddf4 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 13 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-5cd33e4b509319a1cae600cf94c4abae.md b/content/discover/feed-5cd33e4b509319a1cae600cf94c4abae.md deleted file mode 100644 index da0133d1b..000000000 --- a/content/discover/feed-5cd33e4b509319a1cae600cf94c4abae.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: OpenStack – It’s always more complicated -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://dague.net/category/openstack/feed/ - feedtype: rss - feedid: 5cd33e4b509319a1cae600cf94c4abae - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - OpenStack - - devstack - - systemd - relme: {} - last_post_title: In praise of systemd - last_post_description: There was definitely a lot of hate around systemd in the - Linux community over the last few years as all the Linux distros moved over to - it. Things change all the time, and I personally never - last_post_date: "2017-03-30T12:16:09Z" - last_post_link: https://dague.net/2017/03/30/in-praise-of-systemd/ - last_post_categories: - - OpenStack - - devstack - - systemd - last_post_guid: bb8add44f6b4e6391aa63e8037111435 - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5ce9e8403267ef3d0b6fb426ff613481.md b/content/discover/feed-5ce9e8403267ef3d0b6fb426ff613481.md new file mode 100644 index 000000000..0b6a864c6 --- /dev/null +++ b/content/discover/feed-5ce9e8403267ef3d0b6fb426ff613481.md @@ -0,0 +1,49 @@ +--- +title: Music Theory for Everyone +date: "2024-03-13T04:19:59-07:00" +description: "" +params: + feedlink: https://musictheoryforeveryone.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 5ce9e8403267ef3d0b6fb426ff613481 + websites: + https://musictheoryforeveryone.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - kids + - music theory + relme: + https://alchymiastudio.blogspot.com/: true + https://happstack.blogspot.com/: true + https://learnhaskell.blogspot.com/: true + https://musictheoryforeveryone.blogspot.com/: true + https://nhlab.blogspot.com/: true + https://www.blogger.com/profile/18373967098081701148: true + last_post_title: Online Music Lessons and Games for Kids + last_post_description: "" + last_post_date: "2009-01-14T11:40:46-08:00" + last_post_link: https://musictheoryforeveryone.blogspot.com/2009/01/online-music-lessons-and-games-for-kids.html + last_post_categories: + - kids + - music theory + last_post_language: "" + last_post_guid: 595a242891d870724e299e59ef87e3dc + score_criteria: + cats: 2 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5d017cf3df4845836c01d3a419118726.md b/content/discover/feed-5d017cf3df4845836c01d3a419118726.md deleted file mode 100644 index 24a5c9a19..000000000 --- a/content/discover/feed-5d017cf3df4845836c01d3a419118726.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Ben Borgers -date: "1970-01-01T00:00:00Z" -description: Ben Borgers’ personal website. -params: - feedlink: https://ben.page/rss - feedtype: rss - feedid: 5d017cf3df4845836c01d3a419118726 - websites: - https://ben.page/: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: [] - relme: {} - last_post_title: Donating forks to the dining hall - last_post_description: "" - last_post_date: "2024-05-29T00:00:00Z" - last_post_link: https://ben.page/forks/ - last_post_categories: [] - last_post_guid: c6ebfb1c6dbb96fa8c5dd69066e0589a - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5d1bffead9fa096df4ce1117f52487de.md b/content/discover/feed-5d1bffead9fa096df4ce1117f52487de.md deleted file mode 100644 index 300b3062a..000000000 --- a/content/discover/feed-5d1bffead9fa096df4ce1117f52487de.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: John O'Nolan -date: "1970-01-01T00:00:00Z" -description: Public posts from @johnonolan@mastodon.xyz -params: - feedlink: https://mastodon.xyz/@johnonolan.rss - feedtype: rss - feedid: 5d1bffead9fa096df4ce1117f52487de - websites: - https://mastodon.xyz/@johnonolan: true - blogrolls: [] - recommended: [] - recommender: - - http://scripting.com/rss.xml - - http://scripting.com/rssNightly.xml - categories: [] - relme: - https://john.onolan.org/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 14 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5d3650d37bab801e18bb09fa9a99ca22.md b/content/discover/feed-5d3650d37bab801e18bb09fa9a99ca22.md new file mode 100644 index 000000000..c130c94f8 --- /dev/null +++ b/content/discover/feed-5d3650d37bab801e18bb09fa9a99ca22.md @@ -0,0 +1,55 @@ +--- +title: vanitasvitae's blog +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://blog.jabberhead.tk/feed/ + feedtype: rss + feedid: 5d3650d37bab801e18bb09fa9a99ca22 + websites: + https://blog.jabberhead.tk/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Allgemein + - democracy + - occupation + - police + - protest + - treehouse + relme: + https://blog.jabberhead.tk/: true + https://github.com/vanitasvitae: true + last_post_title: An Antidote to Apathy + last_post_description: Learning how to climb a tree as a form of protest feels massively + self-effective. Suddenly, you are no longer simply part of a protest that comes + and goes and is mostly ignored by those in power. + last_post_date: "2024-03-21T13:44:51Z" + last_post_link: https://blog.jabberhead.tk/2024/03/21/an-antidote-to-apathy/ + last_post_categories: + - Allgemein + - democracy + - occupation + - police + - protest + - treehouse + last_post_language: "" + last_post_guid: 99158048e09f991862b07adb953d0e63 + score_criteria: + cats: 0 + description: 0 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-5d446050f578f240bf3466a913db86f4.md b/content/discover/feed-5d446050f578f240bf3466a913db86f4.md deleted file mode 100644 index a8fdac55d..000000000 --- a/content/discover/feed-5d446050f578f240bf3466a913db86f4.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Molly White -date: "1970-01-01T00:00:00Z" -description: Public posts from @molly0xfff@hachyderm.io -params: - feedlink: https://hachyderm.io/@molly0xfff.rss - feedtype: rss - feedid: 5d446050f578f240bf3466a913db86f4 - websites: - https://hachyderm.io/@molly0xfff: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://citationneeded.news/: true - https://twitter.com/molly0xFFF: false - https://www.mollywhite.net/: true - https://www.mollywhite.net/linktree: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5d63a264fd645d4bce6e386f9e3bbb5d.md b/content/discover/feed-5d63a264fd645d4bce6e386f9e3bbb5d.md new file mode 100644 index 000000000..b84c399d7 --- /dev/null +++ b/content/discover/feed-5d63a264fd645d4bce6e386f9e3bbb5d.md @@ -0,0 +1,129 @@ +--- +title: Konfetti Explorations +date: "1970-01-01T00:00:00Z" +description: "Hi! I'm Marisabel! \U0001F44B Puertorican living the Dutch life. This + is my personal web garden to make things grow. : I write about life, words and + colors. Sometimes about my kids." +params: + feedlink: https://marisabel.nl/feeds/blog.php + feedtype: rss + feedid: 5d63a264fd645d4bce6e386f9e3bbb5d + websites: + https://marisabel.nl/: true + https://marisabel.nl/public/blog.php: false + blogrolls: + - https://marisabel.nl/public/feeds/feed.opml + recommended: + - https://alexandrawolfe.ca/feed/ + - https://aramzs.xyz/writing/feed.xml + - https://birming.com/feed/ + - https://blogofthe.day/feed.xml + - https://buttondown.email/ownyourweb/rss + - https://cmdr-nova.online/rss + - https://darch.dk/feed/page:feed.xml + - https://dominikhofer.me/rss.xml + - https://exploration.work/index.xml + - https://feeds.feedburner.com/68131 + - https://flower.codes/feed.xml + - https://gersande.com/blog/rss/ + - https://granary.io/url?input=html&output=rss&url=https%3A//jamesg.blog + - https://ingrids.space/index.xml + - https://iwebthings.joejenett.com/feed.atom + - https://jessicajournals.com/index.xml + - https://kaushiksamba.bearblog.dev/feed/?type=rss + - https://lazybear.io/index.xml + - https://longest.voyage/index.xml + - https://manuelmoreale.com/feed/rss + - https://martinschuhmann.com/feed/ + - https://mary.codes/rss.xml + - https://matanabudy.com/feed/ + - https://mattstein.com/rss.xml + - https://mfashby.net/index.xml + - https://michal.sapka.me/index.xml + - https://mxb.dev/notes/feed.xml + - https://nora.codes/index.xml + - https://notes.ashsmash.com/rss + - https://notes.jeddacp.com/feed + - https://rachsmith.com/feed.xml + - https://rebeccatoh.co/feed/ + - https://ritaottramstad.com/feed/ + - https://robertkingett.com/feed/ + - https://saneboat.com/posts_feed + - https://scottnesbitt.online/feed.xml + - https://squeaki.sh/rss.xml + - https://starbreaker.org/feeds/everything.xml + - https://stephango.com/feed.xml + - https://subtle-echo.pika.page/posts_feed + - https://tangiblelife.net/feed.rss + - https://theresmiling.eu/rss.xml + - https://theunderground.blog/feed.xml + - https://thoughts.uncountable.uk/feed/ + - https://timharek.no/feed.xml + - https://wand3r.net/feed/ + - https://winnielim.org/feed/ + - https://www.softlandings.world/feed.rss + - https://www.zylstra.org/blog/category/metablogging/feed/ + - https://yiming.dev/rss.xml + - https://alexandrawolfe.ca/feed/?type=rss + - https://birming.com/feed/?type=rss + - https://cmdr-nova.online/comments/feed/ + - https://cmdr-nova.online/feed/ + - https://iwebthings.joejenett.com/feed.xml + - https://iwebthings.joejenett.com/iwd.atom + - https://jamesg.blog/feeds/posts.xml + - https://kaushiksamba.bearblog.dev/feed/ + - https://manuelmoreale.com/feed/instagram + - https://martinschuhmann.com/feed/?type=rss + - https://matanabudy.com/feed/?type=rss + - https://mxb.dev/feed.xml + - https://notes.ashsmash.com/rss.xml + - https://notes.jeddacp.com/feed/ + - https://notes.jeddacp.com/feed/?type=rss + - https://rachsmith.com/rss/ + - https://rebeccatoh.co/comments/feed/ + - https://wand3r.net/feed/?type=rss + - https://winnielim.org/feed/?cat=2%2C4%2C8 + recommender: [] + categories: + - ideas + - julyreply2024 + - notes + - reactions + relme: + https://github.com/immarisabel: true + https://github.com/immarisabel/: true + https://im.marisabel.nl/: true + https://indieweb.social/@immarisabel: true + https://marisabel.nl/: true + https://marisabel.nl/public/blog.php: true + last_post_title: 'RE:My Notebook: A Place For My Ideas To Grow.' + last_post_description: |- + This is in reply to Jame's post on how he grows his ideas. + Hi James, + I love your idea of keeping an idea notebook in a single file! I started something similar a while ago —a sort of bullet journal + last_post_date: "2024-07-08T00:00:00Z" + last_post_link: https://marisabel.nl/public/blog/RE:My_Notebook_A_Place_For_My_Ideas_To_Grow + last_post_categories: + - ideas + - julyreply2024 + - notes + - reactions + last_post_language: "" + last_post_guid: e85dca578f38cb7629064d956da30de6 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 10 + relme: 2 + title: 3 + website: 2 + score: 27 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-5d6a5dfbddc5e645a33c2d68e4b1b5d3.md b/content/discover/feed-5d6a5dfbddc5e645a33c2d68e4b1b5d3.md index f242141a5..23bdeca96 100644 --- a/content/discover/feed-5d6a5dfbddc5e645a33c2d68e4b1b5d3.md +++ b/content/discover/feed-5d6a5dfbddc5e645a33c2d68e4b1b5d3.md @@ -1,60 +1,56 @@ --- title: simply. -date: "2024-06-01T11:47:28Z" +date: "2024-07-07T23:19:59Z" description: it’s personal and micro – simply. params: feedlink: https://simply.joejenett.com/feed.xml feedtype: atom feedid: 5d6a5dfbddc5e645a33c2d68e4b1b5d3 websites: - https://simply.jenett.org/: false https://simply.joejenett.com/: true - https://simply.micro.jenett.org/: false - https://simply.personal.jenett.org/: false blogrolls: [] recommended: [] recommender: [] categories: - '["personal"]' relme: - https://bsky.app/profile/jenett.bsky.social: false + https://bulltown.2022.joejenett.com/: true https://directory.joejenett.com/: true + https://fediverse-webring-enthusiasts.glitch.me/profiles/jenett_toot.community/index.html: true https://github.com/joejenett: true https://ideas.joejenett.com/: true https://iwebthings.joejenett.com/: true - https://jenett.org/: true - https://joe.joejenett.com/: false https://joejenett.com/: true https://joejenett.github.io/i.webthings/: true - https://linkscatter.joejenett.com/: false - https://mastodon.online/@iwebthings: false - https://mastodon.online/@jenett: false - https://micro.blog/joejenett: false + https://linkscatter.joejenett.com/: true https://photo.joejenett.com/: true - https://pointers.dailywebthing.com/: false https://simply.joejenett.com/: true - https://the.dailywebthing.com/: false https://toot.community/@jenett: true https://wiki.joejenett.com/: true - last_post_title: whataya mean - pulled a Jack? - last_post_description: I recently shared a ‘plain text note-taking assistant’ at - the hub and decided to give Jack a heads-up before publishing the post - if for - no other reason, it was a chance to razz him a bit (yet - last_post_date: "2024-05-28T12:52:06Z" - last_post_link: https://simply.joejenett.com/whataya-mean-pulled-a-jack/ + last_post_title: Lonita’s Creative Idea of the Day + last_post_description: In his late teens, he would sometimes travel from school + in Gainesville to home in Miami Beach for the weekend. His BMW had a faring and + windshield and was great for the 6-hour trip. He loved that + last_post_date: "2024-06-12T18:26:53Z" + last_post_link: https://simply.joejenett.com/creative-idea-of-the-day/ last_post_categories: - '["personal"]' - last_post_guid: a9b5f30b7b4b1e1e51002707ef64d2bb + last_post_language: "" + last_post_guid: cd69e79b6dcb8bb2ee9c4349e6f6e9b4 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 1 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 11 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-5d70894680486ed68fc24b3ee06e1d00.md b/content/discover/feed-5d70894680486ed68fc24b3ee06e1d00.md new file mode 100644 index 000000000..f5e3e1c5e --- /dev/null +++ b/content/discover/feed-5d70894680486ed68fc24b3ee06e1d00.md @@ -0,0 +1,141 @@ +--- +title: Twin numbers of angels +date: "1970-01-01T00:00:00Z" +description: Keep visiting to my blogspot and get all information about angels number. +params: + feedlink: https://bisnislogerr.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 5d70894680486ed68fc24b3ee06e1d00 + websites: + https://bisnislogerr.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Your 888 Angel Number in Relationships + last_post_description: |- + There are various types of 888 angel number heavenly messenger numbers. Some + amount to nothing, while others are signs from our heavenly messengers. + + does planet fitness have showers.The number 333 + last_post_date: "2022-01-23T11:10:00Z" + last_post_link: https://bisnislogerr.blogspot.com/2022/01/your-888-angel-number-in-relationships.html + last_post_categories: [] + last_post_language: "" + last_post_guid: d87be14d340e1db892fc6d794c1ef30b + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5d956069bbafe9b248f719b2a47b73e5.md b/content/discover/feed-5d956069bbafe9b248f719b2a47b73e5.md index 545dd2c3a..e71c12e6b 100644 --- a/content/discover/feed-5d956069bbafe9b248f719b2a47b73e5.md +++ b/content/discover/feed-5d956069bbafe9b248f719b2a47b73e5.md @@ -14,59 +14,46 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: - - Journal - - Art - ASCII + - Art + - Journal relme: - https://developers.google.com/profile/u/pfefferle: false https://github.com/pfefferle: true https://gitlab.com/pfefferle: true - https://indieweb.org/User:Notiz.blog: false https://mastodon.social/@pfefferle: true - https://micro.blog/pfefferle: false - https://microformats.org/wiki/User:Pfefferle: false - https://notiz.blog/about/: false - https://openwebpodcast.de/: false - https://packagist.org/packages/pfefferle/: false - https://pfefferle.tumblr.com/: false - https://profiles.wordpress.org/pfefferle: false - https://twitter.com/pfefferle: false - https://wordpress.tv/speakers/matthias-pfefferle/: false - https://www.crunchbase.com/person/matthias-pfefferle: false - https://www.flickr.com/people/pfefferle: false - https://www.linkedin.com/in/pfefferle/: false - https://www.npmjs.com/~pfefferle: false - https://www.slideshare.net/pfefferle: false - https://www.xing.com/profile/Matthias_Pfefferle: false + https://notiz.blog/: true + https://notiz.blog/about/: true + https://profiles.wordpress.org/pfefferle/: true last_post_title: ASCIIerle last_post_description: 'Ich besitze jetzt einen echten Doctor Popular! Thanks a lot @docpop ❤️ …und hier noch zwei weitere Versionen:' last_post_date: "2024-06-02T14:51:16Z" last_post_link: https://notiz.blog/2024/06/02/asciierle/ last_post_categories: - - Journal - - Art - ASCII + - Art + - Journal + last_post_language: "" last_post_guid: 893d304a64376b3f2cc474810cc25bbf score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 18 + score: 22 ispodcast: false isnoarchive: false + innetwork: true + language: de --- diff --git a/content/discover/feed-5d9cbcb18374af7faec2ed837d3b48e8.md b/content/discover/feed-5d9cbcb18374af7faec2ed837d3b48e8.md new file mode 100644 index 000000000..8d73cccf3 --- /dev/null +++ b/content/discover/feed-5d9cbcb18374af7faec2ed837d3b48e8.md @@ -0,0 +1,44 @@ +--- +title: hypatia dot ca +date: "1970-01-01T00:00:00Z" +description: Leigh Honeywell's Blog +params: + feedlink: https://hypatia.ca/feed/ + feedtype: rss + feedid: 5d9cbcb18374af7faec2ed837d3b48e8 + websites: + https://hypatia.ca/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - adhd + relme: + https://hypatia.ca/: true + last_post_title: My ADHD founder toolbox + last_post_description: Since I last wrote about ADHD at length, I’ve had a zillion + conversations with people about it and heard from over a dozen people who’d pursued + diagnosis after reading some of my yammerings. + last_post_date: "2022-03-04T04:47:55Z" + last_post_link: https://hypatia.ca/2022/03/03/my-adhd-founder-toolbox/ + last_post_categories: + - adhd + last_post_language: "" + last_post_guid: 6410725a06219b2a22770c7a4c26d190 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-5db59d850f0abf352cd792493959f7e1.md b/content/discover/feed-5db59d850f0abf352cd792493959f7e1.md deleted file mode 100644 index 42af277af..000000000 --- a/content/discover/feed-5db59d850f0abf352cd792493959f7e1.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Zach Alberico -date: "2024-06-01T19:54:33Z" -description: Zach Alberico's blog for thoughts on software and work in the Bay Area -params: - feedlink: https://zalberico.com/feed.xml - feedtype: atom - feedid: 5db59d850f0abf352cd792493959f7e1 - websites: - https://zalberico.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: - - essay - relme: {} - last_post_title: Tlon, Urbit, and Clawing Back Computing Freedom - last_post_description: The web as it was meant to be - last_post_date: "2022-09-28T00:00:00Z" - last_post_link: https://zalberico.com/essay/2022/09/28/tlon-urbit-computing-freedom.html - last_post_categories: - - essay - last_post_guid: 81c6fb161ebdbc570026c554ca3de4fb - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 14 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5dc2fe54a88652936320a1874fe32602.md b/content/discover/feed-5dc2fe54a88652936320a1874fe32602.md index 7208f45c5..73ed6f58e 100644 --- a/content/discover/feed-5dc2fe54a88652936320a1874fe32602.md +++ b/content/discover/feed-5dc2fe54a88652936320a1874fe32602.md @@ -1,6 +1,6 @@ --- title: Hogg's Research -date: "2024-06-29T04:57:37-04:00" +date: "2024-07-08T04:02:57-04:00" description: galaxies, stellar dynamics, exoplanets, and fundamental astronomy params: feedlink: https://hoggresearch.blogspot.com/feeds/posts/default @@ -12,324 +12,333 @@ params: recommended: [] recommender: [] categories: - - talking - - star - - model - - data - - bayes - - statistics - - spectroscopy - - seminar - - writing - - imaging - - code - - exoplanet - - sdss - - Milky Way - - galaxy - - practice - - meeting - - time - - dynamics - - calibration - - astrometry - - gaia - - cosmology - - photometry - - not research - - machine learning - - radial velocity - - chemistry - - kinematics - - mathematics - - information - - graphical model - - Kepler - - literature - - substructure - - MCMC - - regression - - quasar - - optimization - - linear algebra - - philosophy - - proposal - - TheCannon - - computing - - large-scale structure - - decision - - Gaussian process - - disk - - binary star - - noise - - visualization - - telescope - - galex - - dark sector - - funding - - catalog - - star formation - - travel - - theory - - gravitational lensing - - gravity - - LTFDFCF - - thinking - - hardware - - causation - - black hole - - asteroseismology - - clustering - - dust - - supernova - - point-spread function - - HARPS - - halo - - classification - - life - - proper motion - - LSST - - TESS - - search - - gastrophysics - - particle physics - - reading - - Solar System - - group theory - - meta data - - atlas - - nucleosynthesis - - cluster - - tractor - - engineering - - electricity and magnetism - - spitzer - - cosmography - - experiment - - panstarrs - - interstellar medium - - open science - - web 2.0 - - wise - - white dwarf - - EXPRES - - microscopy - - project management - 2mass - - HST + - ALMA + - API + - ASASSN + - Bart - CDM - - geometry - - merging - - testing - - Terra Hunting - - observing - - radio - - fundamental astronomy - - intergalactic medium - - database + - Cassini + - Chandra + - CoRoT + - DESI + - EXPRES - Earth - Euclid - - baryon acoustic feature - - pulsar - - eating - - GALAH - - signal processing - - comet - - politics - - LAMOST - - citizen science - - email - - phase space - - brown dwarf - - transparency - - LIGO - - environment + - FRBs - Fermi - - Planck - - Sun + - GALAH + - Gaussian process + - HARPS - HMF - - PHAT - - interferometry - - planet - - robot - - cosmic ray - - parallax - - thermodynamics + - HST - Herschel - - atomic physics - - design - - gamma-ray burst - - minor planet - - thresher - - nuclear physics - - primus - - rave - - ultraviolet - JWST - - charge-coupled device - - compressed sensing - - evolution - - refereeing - - relativity - - roweis - - accretion - - causality - - interpolation - - neuroscience - - selection function - - units - - digital camera - - hipparcos - - history - - inflation - - quantum mechanics - - sailing - - text - - amateur - - biology - - deep learning - - diffraction - - drinking - - optics - - WFIRST - - archive - - education - - string theory - - anthropic - - archetype - - architecture - - discussion - - hacking - - usno-b - - API - - dissertation - - intelligence - - music - - osss - - reproducibility - - science - - astrobiology - - coffee - - pipeline - - spherex - - teaching - - weather + - KNN + - Kepler + - LAMOST - LHC - - WMAP - - ad hockery - - anthropology - - climate - - correlation - - density estimation - - diagnosis - - editing - - geology - - mentoring - - post-starburst - - social media - - ALMA - - Bart - - DESI - - P1640 - - apass - - compression - - confusion - - demographics - - ethics - - fail - - farm machinery - - learning - - outreach - - scattering - - sonification - - x-ray - - Cassini - - Chandra + - LIGO - LISA - - Moon - - NuSTAR - - PTF - - Saturn - - ZTF - - administration - - aliens - - balloon - - bullshit - - daft - - flickr - - frequentism - - gambling - - game theory - - nasa - - plasma - - press - - procrastination - - sound - - vlt-sphere - - ASASSN - - CoRoT - - FRBs - - KNN - LMIRcam + - LSST + - LTFDFCF - Local Group + - MCMC + - Milky Way + - Moon + - NuSTAR + - P1640 + - PHAT - PLATO + - PTF + - Planck - SDO - SVM + - Saturn + - Solar System + - Sun + - TESS + - Terra Hunting + - TheCannon - VLA + - WFIRST + - WMAP - Willman 1 + - ZTF + - accretion + - ad hockery + - administration - advice + - aliens + - amateur + - anthropic + - anthropology + - apass + - archetype + - architecture + - archive - askap + - asteroseismology + - astrobiology - astrology + - astrometry + - atlas + - atomic physics + - balloon + - baryon acoustic feature + - bayes + - binary star + - biology + - black hole + - brown dwarf + - bullshit + - calibration + - catalog + - causality + - causation - chaos monkey + - charge-coupled device + - chemistry + - citizen science + - classification + - climate - clothing + - cluster + - clustering + - code + - coffee - combinatorics + - comet + - compressed sensing + - compression + - computing - condensed matter + - confusion + - correlation + - cosmic ray + - cosmography + - cosmology + - daft + - dark sector + - data + - database + - decision + - deep learning + - demographics + - density estimation + - design + - diagnosis + - diffraction + - digital camera + - discussion + - disk + - dissertation - documentation - dragonfly + - drinking + - dust + - dynamics + - eating + - editing + - education + - electricity and magnetism + - email - emotions + - engineering + - environment + - ethics - ethnography + - evolution - exomoon + - exoplanet + - experiment + - fail + - farm machinery + - flickr + - frequentism - frisbee + - fundamental astronomy + - funding + - gaia + - galaxy + - galex + - gambling - game + - game theory + - gamma-ray burst + - gastrophysics - gauge + - geology + - geometry + - graphical model + - gravitational lensing + - gravity - group meeting + - group theory + - hacking + - halo - handicapping + - hardware + - hipparcos + - history + - imaging + - inflation + - information + - intelligence + - interferometry + - intergalactic medium + - interpolation + - interstellar medium + - kinematics + - large-scale structure - law + - learning + - life + - linear algebra + - literature + - machine learning - making + - mathematics + - meeting + - mentoring + - merging + - meta data + - microscopy + - minor planet + - model + - music + - nasa + - neuroscience + - noise + - not research + - nuclear physics + - nucleosynthesis + - observing + - open science + - optics + - optimization + - osss + - outreach + - panstarrs + - parallax + - particle physics + - phase space + - philosophy - phone + - photometry + - pipeline + - planet + - plasma - point cloud + - point-spread function - polarization - polemic + - politics + - post-starburst + - practice + - press + - primus + - procrastination + - project management + - proper motion + - proposal + - pulsar + - quantum mechanics + - quasar + - radial velocity + - radio - rant + - rave + - reading + - refereeing + - regression - regret + - relativity + - reproducibility - ring + - robot + - roweis + - sailing + - scattering + - science + - sdss + - search + - selection function - semantics + - seminar + - signal processing + - social media + - sonification + - sound + - spectroscopy + - spherex + - spitzer + - star + - star formation + - statistics - storytime + - string theory + - substructure + - supernova - swift + - talking + - teaching + - telescope + - testing + - text + - theory + - thermodynamics + - thinking + - thresher + - time - topology + - tractor + - transparency + - travel - ukidss + - ultraviolet + - units + - usno-b - virtual observatory + - visualization + - vlt-sphere - volcanism - water - weapons + - weather + - web 2.0 + - white dwarf + - wise + - writing + - x-ray relme: + https://hoggideas.blogspot.com/: true + https://hoggmaker.blogspot.com/: true + https://hoggresearch.blogspot.com/: true + https://hoggteaching.blogspot.com/: true https://www.blogger.com/profile/18398397408280534592: true last_post_title: submitted! last_post_description: "" last_post_date: "2024-03-16T16:28:07-04:00" last_post_link: https://hoggresearch.blogspot.com/2024/03/submitted.html last_post_categories: [] + last_post_language: "" last_post_guid: 67788bf4d1331d6dbd0f942a13f62025 score_criteria: cats: 5 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-5dd71206cb485e946b81fc6d5bea3d54.md b/content/discover/feed-5dd71206cb485e946b81fc6d5bea3d54.md new file mode 100644 index 000000000..c2eac182b --- /dev/null +++ b/content/discover/feed-5dd71206cb485e946b81fc6d5bea3d54.md @@ -0,0 +1,43 @@ +--- +title: Eclipse Ecosystem +date: "2024-03-13T00:55:52-04:00" +description: A blog devoted to promoting the Eclipse ecosystem +params: + feedlink: https://feeds.feedburner.com/EclipseEcosystem + feedtype: atom + feedid: 5dd71206cb485e946b81fc6d5bea3d54 + websites: + https://eclipse-ecosystem.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - eclipse trianing working group survey + - eclipsecon + relme: + https://eclipse-ecosystem.blogspot.com/: true + https://www.blogger.com/profile/11341499982780049728: true + last_post_title: Back to Oracle! + last_post_description: "" + last_post_date: "2011-04-28T15:01:15-04:00" + last_post_link: http://eclipse-ecosystem.blogspot.com/2011/04/back-to-oracle.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 8b96727b0c0bc6c7b5a81f11ca867122 + score_criteria: + cats: 2 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5de99516068bda8d8a9c7f6e7551fa04.md b/content/discover/feed-5de99516068bda8d8a9c7f6e7551fa04.md deleted file mode 100644 index d3e9ce12c..000000000 --- a/content/discover/feed-5de99516068bda8d8a9c7f6e7551fa04.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Rasmus Dahlberg -date: "1970-01-01T00:00:00Z" -description: Public posts from @rgdd@mastodon.social -params: - feedlink: https://mastodon.social/@rgdd.rss - feedtype: rss - feedid: 5de99516068bda8d8a9c7f6e7551fa04 - websites: - https://mastodon.social/@rgdd: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://www.rgdd.se/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5decf6c23ba23b1eb864323a5b866e7b.md b/content/discover/feed-5decf6c23ba23b1eb864323a5b866e7b.md deleted file mode 100644 index 926c8783d..000000000 --- a/content/discover/feed-5decf6c23ba23b1eb864323a5b866e7b.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Zach Leatherman’s Activity Feed -date: "1970-01-01T00:00:00Z" -description: One centralized feed of Eleventy activity across the web. -params: - feedlink: https://zachleat.com/follow/ - feedtype: rss - feedid: 5decf6c23ba23b1eb864323a5b866e7b - websites: - https://zachleat.com/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: 'Mastodon: June 2, 2024 at 3:53:14 PM UTC' - last_post_description: “pause the game—the dungeon master has to go potty” is something - that was just announced at my house - last_post_date: "2024-06-02T15:53:14Z" - last_post_link: https://fediverse.zachleat.com/@zachleat/112547829789340148 - last_post_categories: [] - last_post_guid: 65675c76cb26e09c7bfd9e55d7cc82eb - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5e13ec389224d172baa4cf4f658bb525.md b/content/discover/feed-5e13ec389224d172baa4cf4f658bb525.md index a34a60d22..497a478ab 100644 --- a/content/discover/feed-5e13ec389224d172baa4cf4f658bb525.md +++ b/content/discover/feed-5e13ec389224d172baa4cf4f658bb525.md @@ -14,35 +14,42 @@ params: - https://blog.numericcitizen.me/feed.xml - https://blog.numericcitizen.me/podcast.xml categories: - - Weatherblog - - rain - - spring - - weather summary - - weymouth + - Astronomy + - astrophotography + - nebula + - telescope + - vespera2 + - vulpecula relme: {} - last_post_title: Weather — Spring 2024 - last_post_description: March – May 2024 was slightly milder than average, windier - than expected and much wetter. There was one frost in Spring this year, early - in March, but the average temperatures in march and April - last_post_date: "2024-06-02T09:22:10Z" - last_post_link: https://www.curtisfamily.org.uk/weatherblog/weather-spring-2024/ + last_post_title: The Dumbbell Nebula + last_post_description: This is a famous planetary nebula in the constellation Vulpecula + and the first image I have published that I captured in my back garden with my + Vespera 2 smart telescope. A planetary nebula has + last_post_date: "2024-07-07T16:28:05Z" + last_post_link: https://www.curtisfamily.org.uk/science/astronomy/the-dumbbell-nebula/ last_post_categories: - - Weatherblog - - rain - - spring - - weather summary - - weymouth - last_post_guid: 13614bccf8711b45cc5d95fc6c907f4c + - Astronomy + - astrophotography + - nebula + - telescope + - vespera2 + - vulpecula + last_post_language: "" + last_post_guid: 60305313e0e19d7a49481e1625b53978 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 16 + score: 20 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-5e391bd02782f66a0726ab29fbebb96b.md b/content/discover/feed-5e391bd02782f66a0726ab29fbebb96b.md new file mode 100644 index 000000000..9f97a793c --- /dev/null +++ b/content/discover/feed-5e391bd02782f66a0726ab29fbebb96b.md @@ -0,0 +1,139 @@ +--- +title: Ddos Function +date: "1970-01-01T00:00:00Z" +description: Want to know all function about ddos simply scroll down. +params: + feedlink: https://aix-administration.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 5e391bd02782f66a0726ab29fbebb96b + websites: + https://aix-administration.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: All Function of Ddos + last_post_description: Do you give point-by-point assault reports of is ddosing + illegal? Each DDoS security supplier will do this unique; some may have customer + dashboards that permit you to screen continuously, others + last_post_date: "2021-04-08T06:17:00Z" + last_post_link: https://aix-administration.blogspot.com/2021/04/all-function-of-ddos.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 3aca0cd9f054199129d8530961882221 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5e49492995f5e19e4dc7ac39549fd73e.md b/content/discover/feed-5e49492995f5e19e4dc7ac39549fd73e.md new file mode 100644 index 000000000..9380e812f --- /dev/null +++ b/content/discover/feed-5e49492995f5e19e4dc7ac39549fd73e.md @@ -0,0 +1,120 @@ +--- +title: Graphics and FPL +date: "2024-07-08T23:07:38+02:00" +description: A blog about graphics, demoscene, functional programming languages and + some other IT materials. +params: + feedlink: https://phaazon.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 5e49492995f5e19e4dc7ac39549fd73e + websites: + https://phaazon.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 32-bit + - 3D + - KISS + - abstract + - alignment + - ast + - borrowing + - buffers + - bug + - compiler + - contravariant + - cubemap + - demoscene + - design + - directx + - divisible + - dropchecker + - elegancy + - environment + - existential + - framebuffer + - framework + - frameworks + - free + - functor + - gadt + - geometries + - git + - glsl + - gpipe + - graphics + - haskell + - haskell openal pkg-config + - hlsl + - impure + - index + - intel + - interfacing + - io + - lambdacube + - lexer + - lifetimes + - luminance + - meta + - obj + - opengl + - outline + - parser + - phaazon + - postmortem + - principle + - prompt + - pure + - quantification + - reader + - release + - render + - revision + - rust + - sample + - shader + - shading + - shell + - side-effects + - software + - soon + - spir-v + - ssbo + - stackage + - stash + - terminal + - texture + - tutorial + - ubo + - uniform + - vertex + - wavefront + - zsh + relme: + https://phaazon.blogspot.com/: true + https://www.blogger.com/profile/06180476773002153033: true + last_post_title: State of luminance + last_post_description: "" + last_post_date: "2017-09-14T17:58:40+02:00" + last_post_link: https://phaazon.blogspot.com/2017/09/state-of-luminance.html + last_post_categories: [] + last_post_language: "" + last_post_guid: b6db3d230a1d078fd9fd657384aef3d3 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5e7164dbbfc3ca4d35121f83ca6d2f4c.md b/content/discover/feed-5e7164dbbfc3ca4d35121f83ca6d2f4c.md new file mode 100644 index 000000000..e005596ee --- /dev/null +++ b/content/discover/feed-5e7164dbbfc3ca4d35121f83ca6d2f4c.md @@ -0,0 +1,52 @@ +--- +title: All Things Halo +date: "2024-02-07T19:18:28-08:00" +description: "" +params: + feedlink: https://odst-geophf.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 5e7164dbbfc3ca4d35121f83ca6d2f4c + websites: + https://odst-geophf.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - commentary + - introduction + - philosophy + - realism + - writing + relme: + https://dauclair.blogspot.com/: true + https://halo-legendz.blogspot.com/: true + https://logicaltypes.blogspot.com/: true + https://odst-geophf.blogspot.com/: true + https://twilight-dad.blogspot.com/: true + https://www.blogger.com/profile/09936874508556500234: true + last_post_title: The meaninglessness of the 'K/D ratio' + last_post_description: "" + last_post_date: "2011-01-13T12:05:55-08:00" + last_post_link: https://odst-geophf.blogspot.com/2011/01/meaninglessness-of-kd-ratio.html + last_post_categories: + - philosophy + - realism + last_post_language: "" + last_post_guid: 608a2f4988e77ef869b48b076b4ea4e7 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5e780fdd6f09bdcaf056099e918a72b5.md b/content/discover/feed-5e780fdd6f09bdcaf056099e918a72b5.md new file mode 100644 index 000000000..f4cc97e86 --- /dev/null +++ b/content/discover/feed-5e780fdd6f09bdcaf056099e918a72b5.md @@ -0,0 +1,46 @@ +--- +title: Feed of "Ross A. Baker" +date: "2024-07-09T03:20:19Z" +description: FOSS and Functional Programming enthusiast. Pronouns are he/him. +params: + feedlink: https://git.rossabaker.com/ross.rss + feedtype: rss + feedid: 5e780fdd6f09bdcaf056099e918a72b5 + websites: + https://git.rossabaker.com/ross: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://codeberg.org/rossabaker: true + https://git.rossabaker.com/ross: true + https://github.com/rossabaker: true + https://rossabaker.com/: true + https://social.rossabaker.com/@ross: true + last_post_title: Ross A. Baker pushed to znc-1.9 at ross/cromulent + last_post_description: |- + 156b277ef4ba768086e5bb3f00f1b1d571579c04 + Switch to a ZNC that builds + last_post_date: "2024-07-05T15:18:55Z" + last_post_link: https://git.rossabaker.com/ross/cromulent/commit/156b277ef4ba768086e5bb3f00f1b1d571579c04 + last_post_categories: [] + last_post_language: "" + last_post_guid: 21d22a0acd0620e5ce206eb27a64a838 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5e7fc90eefe72caec7b8f7b2d57bcfab.md b/content/discover/feed-5e7fc90eefe72caec7b8f7b2d57bcfab.md deleted file mode 100644 index a643eb4d2..000000000 --- a/content/discover/feed-5e7fc90eefe72caec7b8f7b2d57bcfab.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Comments for Tracy Durnell -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://tracydurnell.com/comments/feed/ - feedtype: rss - feedid: 5e7fc90eefe72caec7b8f7b2d57bcfab - websites: - https://tracydurnell.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: 'Comment on Weeknotes: May 25-31, 2024 by Tracy Durnell' - last_post_description: "In reply to Reilly - Spitzfaden.\n\nI thought it was fun! It does have an awesome cover \U0001F604" - last_post_date: "2024-06-01T20:51:35-07:00" - last_post_link: https://tracydurnell.com/2024/05/31/weeknotes-may-25-31-2024/#comment-8820 - last_post_categories: [] - last_post_guid: ce62090b982cf6c7281e76ced7a80acc - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5e8c877b2d00ebe55d4b1559cb7e3ce2.md b/content/discover/feed-5e8c877b2d00ebe55d4b1559cb7e3ce2.md index 63a7fbe08..f555bc7ec 100644 --- a/content/discover/feed-5e8c877b2d00ebe55d4b1559cb7e3ce2.md +++ b/content/discover/feed-5e8c877b2d00ebe55d4b1559cb7e3ce2.md @@ -16,25 +16,30 @@ params: categories: - Uncategorized relme: {} - last_post_title: Today’s Out of Context Observation on Culture and Snobbery - last_post_description: 'It is thus: “Some people who have trained themselves to - have their emotional catharsis through sophisticated art get annoyed at untrained - people having an emotional catharsis through' - last_post_date: "2024-06-03T12:26:34Z" - last_post_link: https://whatever.scalzi.com/2024/06/03/todays-out-of-context-observation-on-culture-and-snobbery/ + last_post_title: Today’s New Inadvisable Yet Inevitable Purchase + last_post_description: Surprise! It’s a guitar! Now, let’s be honest, who doesn’t + need a guitar commemorating Antoine de Saint-Exupéry’s immortal novella? That + person is not me. Also, I until this moment didn’t + last_post_date: "2024-07-08T22:29:34Z" + last_post_link: https://whatever.scalzi.com/2024/07/08/todays-new-inadvisable-yet-inevitable-purchase/ last_post_categories: - Uncategorized - last_post_guid: f17aa0c0bf71470c88c6c3fba41d00a9 + last_post_language: "" + last_post_guid: 1fa5c68f5437aa898421322a3bf5576f score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 14 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-5eb5f568c84ffa9cfd7308478d1a7977.md b/content/discover/feed-5eb5f568c84ffa9cfd7308478d1a7977.md deleted file mode 100644 index 11e6aa88e..000000000 --- a/content/discover/feed-5eb5f568c84ffa9cfd7308478d1a7977.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Living Out Loud -date: "2024-06-04T11:30:00Z" -description: "" -params: - feedlink: https://louplummer.lol/feed.atom - feedtype: atom - feedid: 5eb5f568c84ffa9cfd7308478d1a7977 - websites: - https://louplummer.lol/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://social.lol/@amerpie: true - last_post_title: On Work - last_post_description: I've been working in some way or another since having a paper - route in the sixth grade. I tried to retire in 2020 and that turned into a disaster - when I felt totally lost without something to do. In - last_post_date: "2024-06-04T00:49:25Z" - last_post_link: https://louplummer.lol/post/on-work - last_post_categories: [] - last_post_guid: 400e7806c8e98c851edb56fc7584a3b0 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5ecd5be1ed243dd041fa8bdf25b93648.md b/content/discover/feed-5ecd5be1ed243dd041fa8bdf25b93648.md new file mode 100644 index 000000000..07c20cfae --- /dev/null +++ b/content/discover/feed-5ecd5be1ed243dd041fa8bdf25b93648.md @@ -0,0 +1,42 @@ +--- +title: Space Oddity +date: "1970-01-01T00:00:00Z" +description: Random lousy cell phone snapshots. +params: + feedlink: https://tychomagneticanomalyone.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 5ecd5be1ed243dd041fa8bdf25b93648 + websites: + https://tychomagneticanomalyone.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://flygdynamikern.blogspot.com/: true + https://tychomagneticanomalyone.blogspot.com/: true + https://www.blogger.com/profile/14027110650075268096: true + last_post_title: Canal, Bogor Botanical Garden + last_post_description: "" + last_post_date: "2012-08-10T16:59:00Z" + last_post_link: https://tychomagneticanomalyone.blogspot.com/2012/08/canal-bogor-botanical-garden.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 3e5668cde2fbda021924d76b66d6aa06 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5eda7cdae1d7daac7c3b4dbc204b9a0b.md b/content/discover/feed-5eda7cdae1d7daac7c3b4dbc204b9a0b.md index 8168d1ad5..19bea20d6 100644 --- a/content/discover/feed-5eda7cdae1d7daac7c3b4dbc204b9a0b.md +++ b/content/discover/feed-5eda7cdae1d7daac7c3b4dbc204b9a0b.md @@ -10,14 +10,10 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: [] relme: {} last_post_title: Get a load of this category @@ -25,17 +21,22 @@ params: last_post_date: "2024-04-19T22:37:39Z" last_post_link: https://jerz.us/micro/97 last_post_categories: [] + last_post_language: "" last_post_guid: 60bcd911027899c96df1a79d2070acbd score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 11 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-5eec68cb292752437e3289d798dc9aec.md b/content/discover/feed-5eec68cb292752437e3289d798dc9aec.md new file mode 100644 index 000000000..4636a313e --- /dev/null +++ b/content/discover/feed-5eec68cb292752437e3289d798dc9aec.md @@ -0,0 +1,40 @@ +--- +title: all that's past is prologue... +date: "2024-07-08T20:40:37-05:00" +description: "" +params: + feedlink: https://prologuist.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 5eec68cb292752437e3289d798dc9aec + websites: + https://prologuist.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://prologuist.blogspot.com/: true + last_post_title: The Quick Fix - a Build Post + last_post_description: "" + last_post_date: "2024-07-08T20:40:03-05:00" + last_post_link: https://prologuist.blogspot.com/2024/07/the-quick-fix-build-post.html + last_post_categories: [] + last_post_language: "" + last_post_guid: e1642b650930cfc4b5d2f0a1ed9af897 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5f03a284c3e260f4b0bd7afebc6114f1.md b/content/discover/feed-5f03a284c3e260f4b0bd7afebc6114f1.md new file mode 100644 index 000000000..9ce0c483c --- /dev/null +++ b/content/discover/feed-5f03a284c3e260f4b0bd7afebc6114f1.md @@ -0,0 +1,42 @@ +--- +title: Python on TBNL +date: "1970-01-01T00:00:00Z" +description: Recent content in Python on TBNL +params: + feedlink: https://www.tibobeijen.nl/tags/python/index.xml + feedtype: rss + feedid: 5f03a284c3e260f4b0bd7afebc6114f1 + websites: + https://www.tibobeijen.nl/tags/python/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://www.tibobeijen.nl/tags/python/: true + last_post_title: Generating https urls in Django using CloudFront + last_post_description: |- + TL;DR: Configure CloudFront to set the Cloudfront-Forwarded-Proto in order to allow a Django application to know the client’s request protocol. + Recently, while developing an API that makes use of + last_post_date: "2017-10-26T20:00:00+02:00" + last_post_link: https://www.tibobeijen.nl/2017/10/26/django-https-urls-cloudfront/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 976fa92e329b31541beeedd116908e79 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-5f1371224898b8a59c641047c11e93a6.md b/content/discover/feed-5f1371224898b8a59c641047c11e93a6.md new file mode 100644 index 000000000..c1b35059c --- /dev/null +++ b/content/discover/feed-5f1371224898b8a59c641047c11e93a6.md @@ -0,0 +1,40 @@ +--- +title: Me, myself, and whoever comes along +date: "2024-03-07T18:52:37-08:00" +description: "" +params: + feedlink: https://carribeiro.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 5f1371224898b8a59c641047c11e93a6 + websites: + https://carribeiro.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://carribeiro.blogspot.com/: true + last_post_title: Automating Web Access + last_post_description: "" + last_post_date: "2007-07-26T05:47:09-07:00" + last_post_link: https://carribeiro.blogspot.com/2007/07/automating-web-access.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 6233a094b0c3c84ef0c5a1d9c6f1ecb9 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5f23f91d9bb6f65d1a17b8fe68ecbfe4.md b/content/discover/feed-5f23f91d9bb6f65d1a17b8fe68ecbfe4.md deleted file mode 100644 index 985de64f8..000000000 --- a/content/discover/feed-5f23f91d9bb6f65d1a17b8fe68ecbfe4.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: diamond geezer -date: "2024-06-04T07:00:32+01:00" -description: Life viewed from London E3 -params: - feedlink: https://diamondgeezer.blogspot.com/atom.xml - feedtype: atom - feedid: 5f23f91d9bb6f65d1a17b8fe68ecbfe4 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://visitmy.website/feed.xml - categories: [] - relme: {} - last_post_title: Bakerloo 40 - last_post_description: "" - last_post_date: "2024-06-04T00:09:17+01:00" - last_post_link: http://diamondgeezer.blogspot.com/2024/06/bakerloo-40.html - last_post_categories: [] - last_post_guid: 2f8e439ff2dad280d09cb7110fe5e5eb - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5f39284321a560b72c4a2b441f5cf5e9.md b/content/discover/feed-5f39284321a560b72c4a2b441f5cf5e9.md new file mode 100644 index 000000000..484922f87 --- /dev/null +++ b/content/discover/feed-5f39284321a560b72c4a2b441f5cf5e9.md @@ -0,0 +1,140 @@ +--- +title: Angel of Delivery +date: "2024-02-08T05:26:33-08:00" +description: "" +params: + feedlink: https://craftygalslife.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 5f39284321a560b72c4a2b441f5cf5e9 + websites: + https://craftygalslife.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - here we go + - to wright way + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: final Link Building + last_post_description: "" + last_post_date: "2022-02-28T10:11:20-08:00" + last_post_link: https://craftygalslife.blogspot.com/2022/02/fianl.html + last_post_categories: + - to wright way + last_post_language: "" + last_post_guid: 7d242b213c40f9cafd0c7f3361ca1649 + score_criteria: + cats: 2 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5f4be4857b5439e4c3d5f7f8ca23cd4c.md b/content/discover/feed-5f4be4857b5439e4c3d5f7f8ca23cd4c.md index accb4ad9d..cf74dbbe1 100644 --- a/content/discover/feed-5f4be4857b5439e4c3d5f7f8ca23cd4c.md +++ b/content/discover/feed-5f4be4857b5439e4c3d5f7f8ca23cd4c.md @@ -13,25 +13,32 @@ params: recommender: [] categories: [] relme: + https://jarche.com/: true https://mastodon.social/@harold: true - last_post_title: 'Comment on The Seek > Sense > Share Framework by Gazette 22 : - Le développement professionnel' - last_post_description: '[…] le modèle Seek-sense-share de Harold Jarche est présenté - ici : https://jarche.com/2014/02/the-seek-sense-share-framework/ […]' - last_post_date: "2024-05-29T08:27:09Z" - last_post_link: https://jarche.com/2014/02/the-seek-sense-share-framework/#comment-364311 + last_post_title: Comment on Seek > Sense > Share by The Blog and Wiki Combo – Interdependent + Thoughts + last_post_description: '[…] wikis are the original social software. My blog emerged + as a personal knowledge management tool (Harold Jarche is the go-to source for + PKM). Knowledge management to me has always been a very' + last_post_date: "2024-07-06T19:02:04Z" + last_post_link: https://jarche.com/pkm/#comment-365136 last_post_categories: [] - last_post_guid: 13966f2d5228a11d8c29f623eec0c282 + last_post_language: "" + last_post_guid: e6db8e0645376a6e3553d9dc065172d5 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-5f5128954e4a1baf2b65b3222f3d0b8c.md b/content/discover/feed-5f5128954e4a1baf2b65b3222f3d0b8c.md deleted file mode 100644 index a6b2b2308..000000000 --- a/content/discover/feed-5f5128954e4a1baf2b65b3222f3d0b8c.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Chris Coyier -date: "1970-01-01T00:00:00Z" -description: Web craftsman, blogger, author, speaker. -params: - feedlink: https://chriscoyier.net/feed - feedtype: rss - feedid: 5f5128954e4a1baf2b65b3222f3d0b8c - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://kevq.uk/feed - - https://kevq.uk/feed.xml - - https://kevq.uk/feed/ - - https://kevquirk.com/feed - categories: - - Uncategorized - relme: {} - last_post_title: Multipage Version - last_post_description: Super cool zine from Mat. Me, I like HTML, and I wanted to - do something with a little texture to it. So I asked a bunch of people way more - talented than I am if they were down to contribute to a zine - last_post_date: "2024-05-29T17:12:45Z" - last_post_link: https://chriscoyier.net/2024/05/29/multipage-version/ - last_post_categories: - - Uncategorized - last_post_guid: 99d99524da3ce94154b785024d75b4a5 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 12 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5f5586c3125e8f1586ec08519b1260a4.md b/content/discover/feed-5f5586c3125e8f1586ec08519b1260a4.md new file mode 100644 index 000000000..4cfd551f0 --- /dev/null +++ b/content/discover/feed-5f5586c3125e8f1586ec08519b1260a4.md @@ -0,0 +1,46 @@ +--- +title: araujo's blog +date: "2024-03-13T12:52:06-07:00" +description: free from side-effects +params: + feedlink: https://araujoluis.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 5f5586c3125e8f1586ec08519b1260a4 + websites: + https://araujoluis.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - gentoo + - haskell + - himerge + - programing + relme: + https://araujoluis.blogspot.com/: true + https://www.blogger.com/profile/03804288532569108100: true + last_post_title: Himerge (and Haskell) out to the street! + last_post_description: "" + last_post_date: "2008-08-16T22:02:31-07:00" + last_post_link: https://araujoluis.blogspot.com/2008/08/himerge-and-haskell-out-to-street.html + last_post_categories: + - haskell + last_post_language: "" + last_post_guid: bf997abd068a6c99be088cb9e4ab7bac + score_criteria: + cats: 4 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5f55b41190f46e0eb6341e7e14a7ad81.md b/content/discover/feed-5f55b41190f46e0eb6341e7e14a7ad81.md deleted file mode 100644 index d2b62369c..000000000 --- a/content/discover/feed-5f55b41190f46e0eb6341e7e14a7ad81.md +++ /dev/null @@ -1,85 +0,0 @@ ---- -title: /var/log/lifelog Michael's log of life -date: "2024-03-12T20:55:30-07:00" -description: "" -params: - feedlink: https://lifelog.michaeldavies.org/feeds/posts/default/-/openstack - feedtype: atom - feedid: 5f55b41190f46e0eb6341e7e14a7ad81 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - linux.conf.au - - openstack - - ironic - - python - - development - - dhcp - - nuc - - speaking - - testing - - cfp - - deployment - - linux-australia - - meta - - snippet - - talks - - LCA TV - - adsl - - ansible - - apt - - barcelona - - blink - - conference - - containers - - continuous integration - - junkcode - - keysigning - - life - - linux debian packages vidyo - - mac - - mock - - multiarch - - network - - oshotd - - ploa - - podman - - python3 - - quay.io - - smtp - - summit - - tdd - - testr - - tox - - travel - - ubuntu - - virtualenv - relme: {} - last_post_title: Speaking at the OpenStack Summit in Barcelona - last_post_description: "" - last_post_date: "2016-11-10T16:29:38-08:00" - last_post_link: https://lifelog.michaeldavies.org/2016/11/openstack-summit-barcelona.html - last_post_categories: - - ansible - - barcelona - - ironic - - openstack - - speaking - - summit - - travel - last_post_guid: 16ff84d6a0e10cf47758d11b0eb5eafd - score_criteria: - cats: 5 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5f5ba210348db2779b4572a1c1015b6c.md b/content/discover/feed-5f5ba210348db2779b4572a1c1015b6c.md new file mode 100644 index 000000000..c3efe444c --- /dev/null +++ b/content/discover/feed-5f5ba210348db2779b4572a1c1015b6c.md @@ -0,0 +1,79 @@ +--- +title: Eclipse Communication Framework +date: "2024-03-12T21:29:22-07:00" +description: Blog for the Eclipse Communication Framework Project (ECF) +params: + feedlink: https://eclipseecf.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 5f5ba210348db2779b4572a1c1015b6c + websites: + https://eclipseecf.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - RCP + - RSA + - asyncremoteservices + - bndtools + - ecilpse + - eclipse + - eclipse. remoteservices + - foundation + - gogo + - grpc + - hazelcast + - iot + - java8 + - jax-rs + - kepler + - open source + - osgi + - osgi RSA + - osgi services + - osgi. RSA + - protobuf + - python + - raspberry pi + - remoteserivces + - remoteserviceadmin + - remoteserviceadmn + - remoteservices + - rest + - rsa remoteservices + - security + - tragedy of the commons + relme: + https://eclipseecf.blogspot.com/: true + https://www.blogger.com/profile/15783631237186844143: true + last_post_title: OSGi Services with gRPC - Let's be reactive + last_post_description: "" + last_post_date: "2021-10-19T19:54:57-07:00" + last_post_link: https://eclipseecf.blogspot.com/2021/10/osgi-services-with-grpc-lets-be-reactive.html + last_post_categories: + - bndtools + - eclipse + - grpc + - osgi + - protobuf + - remoteserivces + - remoteserviceadmin + last_post_language: "" + last_post_guid: f76f14e29f97dcd27f13fb8eeea6fec5 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5f5c77a248cd71014345b672deb32a5c.md b/content/discover/feed-5f5c77a248cd71014345b672deb32a5c.md new file mode 100644 index 000000000..273df0786 --- /dev/null +++ b/content/discover/feed-5f5c77a248cd71014345b672deb32a5c.md @@ -0,0 +1,76 @@ +--- +title: Michael Spector's Blog +date: "2024-05-24T02:35:06-07:00" +description: "" +params: + feedlink: https://spektom.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 5f5c77a248cd71014345b672deb32a5c + websites: + https://spektom.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Airflow + - BigData + - Docker + - ETL + - Hadoop + - Mesos + - Pentaho + - REST + - Spark + - Yarn + - build + - continuous integration + - eclipse + - eclipsecon + - gef + - hudson + - java + - joking + - learning + - magic + - p2 + - pdt + - php + - php 5.3 + - profiling + - python + - rcp + - spring + - swt + - thoughts + - tips + relme: + https://spektom.blogspot.com/: true + https://www.blogger.com/profile/15105460784540339083: true + last_post_title: 'Profiling Spark Applications: The Easy Way' + last_post_description: "" + last_post_date: "2017-09-27T21:26:09-07:00" + last_post_link: https://spektom.blogspot.com/2017/06/profiling-spark-applications-easy-way.html + last_post_categories: + - Airflow + - BigData + - Spark + - profiling + last_post_language: "" + last_post_guid: a50b384a5bd31d4a90f9e0a034770060 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5f631a9cb85bc91d9a95486ea5d28195.md b/content/discover/feed-5f631a9cb85bc91d9a95486ea5d28195.md new file mode 100644 index 000000000..71db157f9 --- /dev/null +++ b/content/discover/feed-5f631a9cb85bc91d9a95486ea5d28195.md @@ -0,0 +1,43 @@ +--- +title: Merks' Meanderings +date: "2024-07-08T22:47:29+02:00" +description: The opinions expressed here are my own, not someone else's. If they + seem rational, that's purely coincidental and you are likely reading far too much + between the lines. +params: + feedlink: https://ed-merks.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 5f631a9cb85bc91d9a95486ea5d28195 + websites: + https://ed-merks.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://ed-merks.blogspot.com/: true + https://www.blogger.com/profile/05000982591510437551: true + last_post_title: No Java? No Problem! + last_post_description: "" + last_post_date: "2020-08-18T09:50:06+02:00" + last_post_link: https://ed-merks.blogspot.com/2020/08/no-java-no-problem.html + last_post_categories: [] + last_post_language: "" + last_post_guid: ad97678fa0711bdd9da78af93c07ae7c + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5f8f9abb3b64535820f3f359c50f62c8.md b/content/discover/feed-5f8f9abb3b64535820f3f359c50f62c8.md deleted file mode 100644 index bc760b4f5..000000000 --- a/content/discover/feed-5f8f9abb3b64535820f3f359c50f62c8.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: Miranda Zhang Tech Blog -date: "1970-01-01T00:00:00Z" -description: IT related stuff -params: - feedlink: https://mirandazhangq.wordpress.com/feed/ - feedtype: rss - feedid: 5f8f9abb3b64535820f3f359c50f62c8 - websites: - https://mirandazhangq.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - OpenStack - - OPW - - OWP - - Uncategorized - - API reference - - EC2 API - - endpoints - relme: {} - last_post_title: Wish List, Common Misunderstanding, Undocumented – OpenStack Identity - API – Authentication, Add User - last_post_description: I have came across the following issues during my intern - work which is all about OpenStack API. 1 Wish List 1.1 Port Number I find it inconvenient - that port number is not documented within the API - last_post_date: "2014-02-10T12:41:03Z" - last_post_link: https://mirandazhangq.wordpress.com/2014/02/10/wish-list-common-misunderstanding-undocumented-openstack-identity-api-authentication-add-user/ - last_post_categories: - - OpenStack - - OPW - - OWP - - Uncategorized - - API reference - - EC2 API - - endpoints - last_post_guid: f147318ae6fbe543f91c742d7170cd0f - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5fb0dc5e73e01b68ead413c1b568f54c.md b/content/discover/feed-5fb0dc5e73e01b68ead413c1b568f54c.md deleted file mode 100644 index aeeb68dbc..000000000 --- a/content/discover/feed-5fb0dc5e73e01b68ead413c1b568f54c.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Sia Karamalegos -date: "1970-01-01T00:00:00Z" -description: Public posts from @sia@front-end.social -params: - feedlink: https://front-end.social/@sia.rss - feedtype: rss - feedid: 5fb0dc5e73e01b68ead413c1b568f54c - websites: - https://front-end.social/@sia: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://games.sia.codes/: false - https://sia.codes/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5fb5b459a8a8b9ef2a9679b4c073da38.md b/content/discover/feed-5fb5b459a8a8b9ef2a9679b4c073da38.md deleted file mode 100644 index c1f6c3fb3..000000000 --- a/content/discover/feed-5fb5b459a8a8b9ef2a9679b4c073da38.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Xe Iaso's blog -date: "1970-01-01T00:00:00Z" -description: Thoughts and musings from Xe Iaso -params: - feedlink: https://xeiaso.net/blog.rss - feedtype: rss - feedid: 5fb5b459a8a8b9ef2a9679b4c073da38 - websites: - https://xeiaso.net/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://bsky.app/profile/xeiaso.net: false - https://github.com/Xe: true - https://keybase.io/xena: true - https://pony.social/@cadey: true - https://t.me/miamorecadenza: false - https://www.linkedin.com/in/xe-iaso: false - https://www.patreon.com/cadey: false - https://www.twitch.tv/princessxen: false - irc://irc.libera.chat/: false - last_post_title: I'm in SF this week! - last_post_description: I have exclusive Xesite stickers. - last_post_date: "2024-06-02T00:00:00Z" - last_post_link: https://xeiaso.net/notes/2024/im-in-sf-this-week/ - last_post_categories: [] - last_post_guid: 7ed8787e4d52de601fd81d2adbc70d2b - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5fbb896e48db39ac638b7a066be9c016.md b/content/discover/feed-5fbb896e48db39ac638b7a066be9c016.md new file mode 100644 index 000000000..5cd5cec5b --- /dev/null +++ b/content/discover/feed-5fbb896e48db39ac638b7a066be9c016.md @@ -0,0 +1,40 @@ +--- +title: Zettelkasten.de +date: "2024-06-26T06:10:00Z" +description: "" +params: + feedlink: https://zettelkasten.de/feed + feedtype: atom + feedid: 5fbb896e48db39ac638b7a066be9c016 + websites: {} + blogrolls: [] + recommended: [] + recommender: + - http://scripting.com/rss.xml + - http://scripting.com/rssNightly.xml + categories: [] + relme: {} + last_post_title: 'The Zettelkasten in Action: My Book on Habit' + last_post_description: "" + last_post_date: "2024-06-26T06:10:00Z" + last_post_link: https://zettelkasten.de/posts/zettelkasten-in-action-book-on-habit/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 6cc4cc70856f721b57924eaca0cb9c9f + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 0 + score: 11 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5fbcb136749b823318d8096d6816e91d.md b/content/discover/feed-5fbcb136749b823318d8096d6816e91d.md new file mode 100644 index 000000000..51f71c521 --- /dev/null +++ b/content/discover/feed-5fbcb136749b823318d8096d6816e91d.md @@ -0,0 +1,170 @@ +--- +title: Mind the Gap +date: "2024-03-14T01:56:50Z" +description: "" +params: + feedlink: https://underlap.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 5fbcb136749b823318d8096d6816e91d + websites: + https://underlap.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Apache + - Apple mail + - Aries + - BigDecimal + - Buildpack + - CICS + - CORBA + - CaseInsensitiveMap + - CloudFoundry + - Dolphin + - EBR + - EEG + - EclipeRT + - Eclipse + - EclipseRT + - Enterprise + - Equinox + - FFDC + - Felix + - Free Burma + - Gemini + - Geronimo + - GlassFish + - Gradle + - Grails + - Harmony + - Hotspot + - IIOP + - Interface21 + - JBoss + - JCP + - JDK 7 + - JSIG + - JSR 277 + - JSR 291 + - JSR 294 + - JVM + - Java + - Java 7 + - Java 8 + - Java EE + - Jetty + - Jigsaw + - Juju + - Karaf + - Libra + - Mac OS X + - Mule + - Netweaver Cloud + - Newton + - OPS4J + - OSGi + - Open Source + - OpenJDK + - Oracle + - Osxa + - Pax Exam + - Pax Tipi + - RAP + - RFC 66 + - Refactoring + - Ruby + - SAP + - SCA + - SOA + - SOAP + - Scala + - SourceTree + - Spring + - SpringSource + - SpringSource Application Platform OSGi + - Structure101 + - Ubuntu + - VMware + - Virgo + - WebLogic + - WebSphere + - agile + - charm + - cloning + - cloud + - deadlock + - dependency injection + - design + - design patterns + - diagnostics + - dm Server + - docker + - eclipsecon + - error + - example + - git + - gitx + - go# + - go++ + - go-2 + - go-II + - golang + - google apps + - interfaces + - interoperation + - jconsole + - jps + - kernel + - libcontainer + - logging + - maven + - nano + - p2 + - plans + - release + - scrum + - services + - simplicity + - snaps + - software design + - spike + - subsystems + - sunbug + - survey + - tutorial + - vCenter + - vSphere + - vert.x + - warden + - web services + relme: + https://about.me/glyn.normington: true + https://glynblog.blogspot.com/: true + https://underlap.blogspot.com/: true + https://winchesterflyfishing.blogspot.com/: true + https://www.blogger.com/profile/08741529390385812080: true + last_post_title: Hello Fediverse + last_post_description: "" + last_post_date: "2023-12-09T14:10:22Z" + last_post_link: https://underlap.blogspot.com/2022/02/hello-fediverse.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 00b5c61b94e66d82f439df757cf2e1cc + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5fd02f8ff1687211d0c61074a689d350.md b/content/discover/feed-5fd02f8ff1687211d0c61074a689d350.md deleted file mode 100644 index 996d2ac8e..000000000 --- a/content/discover/feed-5fd02f8ff1687211d0c61074a689d350.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Matthew Lyon -date: "1970-01-01T00:00:00Z" -description: Public posts from @mattly@hachyderm.io -params: - feedlink: https://hachyderm.io/@mattly.rss - feedtype: rss - feedid: 5fd02f8ff1687211d0c61074a689d350 - websites: - https://hachyderm.io/@mattly: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://lyonheart.us/: true - https://social.bitwig.community/@mattly: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5fd1af37608bfa2607cdc2e835c4ad2d.md b/content/discover/feed-5fd1af37608bfa2607cdc2e835c4ad2d.md index a37491d86..4848fdf89 100644 --- a/content/discover/feed-5fd1af37608bfa2607cdc2e835c4ad2d.md +++ b/content/discover/feed-5fd1af37608bfa2607cdc2e835c4ad2d.md @@ -11,16 +11,13 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: [] - relme: {} + relme: + https://mijndertstuij.nl/: true last_post_title: Default apps 2024 last_post_description: 'Here''s a fun new thing in the blogosphere: sharing your default apps. I saw a few people I follow do it and borrowed the format, as one @@ -28,17 +25,22 @@ params: last_post_date: "2024-02-19T00:00:00Z" last_post_link: https://mijndertstuij.nl/posts/default-apps-2024/ last_post_categories: [] + last_post_language: "" last_post_guid: 1c4a4b4f9d6dd0cb6b3c81de522101dc score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 13 + score: 19 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-5fe6be6934663ce2f19dc790cb9afb9d.md b/content/discover/feed-5fe6be6934663ce2f19dc790cb9afb9d.md deleted file mode 100644 index 23a182c4e..000000000 --- a/content/discover/feed-5fe6be6934663ce2f19dc790cb9afb9d.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for codeblog -date: "1970-01-01T00:00:00Z" -description: code is freedom -- patching my itch -params: - feedlink: https://outflux.net/blog/comments/feed/ - feedtype: rss - feedid: 5fe6be6934663ce2f19dc790cb9afb9d - websites: - https://outflux.net/blog/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on security things in Linux v5.10 by Frank - last_post_description: |- - Happy to see a new entry here! Looking forward to all the missing entries for 5.1{1..8} ;-) - - Thanks for these summaries, I didn't know about nosymfollow before. - last_post_date: "2022-04-06T19:20:39Z" - last_post_link: https://outflux.net/blog/archives/2022/04/04/security-things-in-linux-v5-10/comment-page-1/#comment-4200 - last_post_categories: [] - last_post_guid: 3b6bef2ebf92d2d1d622471973bdef37 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5ff82852a34cbe4ddbebdcd9513b2a22.md b/content/discover/feed-5ff82852a34cbe4ddbebdcd9513b2a22.md new file mode 100644 index 000000000..c51f519f2 --- /dev/null +++ b/content/discover/feed-5ff82852a34cbe4ddbebdcd9513b2a22.md @@ -0,0 +1,42 @@ +--- +title: Steve Baskauf's blog +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://baskauf.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 5ff82852a34cbe4ddbebdcd9513b2a22 + websites: + https://baskauf.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://baskauf.blogspot.com/: true + last_post_title: Building an Omeka website on AWS + last_post_description: Several years ago, I was given access to the digital files + of Bassett Associates, a landscape architectural firm that operated for over 60 + years in Lima, Ohio. This award-winning firm, which + last_post_date: "2023-08-06T21:03:00Z" + last_post_link: https://baskauf.blogspot.com/2023/08/building-omeka-website-on-aws.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 749b7b3f878360a922a8c5c631efdd34 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-5ff96a19b0a30cb627ea2499e4f2abe0.md b/content/discover/feed-5ff96a19b0a30cb627ea2499e4f2abe0.md deleted file mode 100644 index ba188eb4b..000000000 --- a/content/discover/feed-5ff96a19b0a30cb627ea2499e4f2abe0.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Polypane Blog -date: "1970-01-01T00:00:00Z" -description: A stand-alone browser and devtool that helps you build better sites in - less time. All the tools you need in one app. -params: - feedlink: https://polypane.app/rss.xml - feedtype: rss - feedid: 5ff96a19b0a30cb627ea2499e4f2abe0 - websites: - https://polypane.app/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Capturing screenshots in Polypane - last_post_description: 'Sharing in-progress work, pointing out a bug, or clarifying - which area you''re talking about: as a developer you''re sharing screenshots all…' - last_post_date: "2024-05-28T00:00:00Z" - last_post_link: https://polypane.app/blog/capturing-screenshots-in-polypane/ - last_post_categories: [] - last_post_guid: cc0754a6cf784a14688dcf65332f2708 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-5ffaea76302561d522d486847ea9b3d2.md b/content/discover/feed-5ffaea76302561d522d486847ea9b3d2.md deleted file mode 100644 index c4b6db7a1..000000000 --- a/content/discover/feed-5ffaea76302561d522d486847ea9b3d2.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Brickset -date: "1970-01-01T00:00:00Z" -description: LEGO news from Brickset -params: - feedlink: https://brickset.com/feed/ - feedtype: rss - feedid: 5ffaea76302561d522d486847ea9b3d2 - websites: - https://brickset.com/: true - https://brickset.com/sets/40220-1/London-Bus: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Jungle Explorer Base Camp to feature interactive brick - last_post_description: |- - A new product has cropped up at LEGO.com that appears to be part of a beta test, in which families in the UK are invited to participate. - - 60691 Jungle Explorer Base Camp, which "includes an - last_post_date: "2024-06-04T12:30:00Z" - last_post_link: http://brickset.com/article/110597 - last_post_categories: [] - last_post_guid: a59fcf8ab179773f724a8bfb55e7ad8e - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6009b1232f8985c99cab858893980b4c.md b/content/discover/feed-6009b1232f8985c99cab858893980b4c.md deleted file mode 100644 index ed735c928..000000000 --- a/content/discover/feed-6009b1232f8985c99cab858893980b4c.md +++ /dev/null @@ -1,50 +0,0 @@ ---- -title: Personal – Thoughts From Eric -date: "1970-01-01T00:00:00Z" -description: Things that Eric A. Meyer, CSS expert, writes about on his personal Web - site; it's largely Web standards and Web technology, but also various bits of culture, - politics, personal observations, and -params: - feedlink: https://meyerweb.com/eric/thoughts/category/personal/rss2/full - feedtype: rss - feedid: 6009b1232f8985c99cab858893980b4c - websites: - https://meyerweb.com/: false - https://meyerweb.com/eric/thoughts: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - CSS - - Design - - Projects - relme: - https://codepen.io/meyerweb: false - https://dribbble.com/meyerweb: false - https://flickr.com/photos/meyerweb/: false - https://github.com/meyerweb: false - https://mastodon.social/@meyerweb: false - https://www.linkedin.com/in/meyerweb: false - last_post_title: Once Upon a Browser - last_post_description: I am pleased to inform you that I’m back on my generative - art BS again. - last_post_date: "2024-01-02T16:22:01Z" - last_post_link: https://meyerweb.com/eric/thoughts/2024/01/02/once-upon-a-browser/ - last_post_categories: - - CSS - - Design - - Projects - last_post_guid: be5ba80ff74bf00f8cb49636358b7ccc - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 12 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6011679642a5e3256ef75814a45450c9.md b/content/discover/feed-6011679642a5e3256ef75814a45450c9.md new file mode 100644 index 000000000..132434a9d --- /dev/null +++ b/content/discover/feed-6011679642a5e3256ef75814a45450c9.md @@ -0,0 +1,42 @@ +--- +title: planet-gnome on Ivan Molodetskikh’s Webpage +date: "1970-01-01T00:00:00Z" +description: Recent content in planet-gnome on Ivan Molodetskikh’s Webpage +params: + feedlink: https://bxt.rs/tags/planet-gnome/index.xml + feedtype: rss + feedid: 6011679642a5e3256ef75814a45450c9 + websites: + https://bxt.rs/tags/planet-gnome/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://bxt.rs/tags/planet-gnome/: true + last_post_title: Just How Much Faster Are the GNOME 46 Terminals? + last_post_description: |- + VTE (Virtual TErminal library) is the library underpinning various GNOME terminal emulators. + It provides a GTK widget that shows a terminal view, which is used in apps like GNOME Terminal, Console, + last_post_date: "2024-04-06T12:00:00+04:00" + last_post_link: https://bxt.rs/blog/just-how-much-faster-are-the-gnome-46-terminals/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 1c80f790d376afd8862547713325629e + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-60129f7864870ebceb6878932e972e1c.md b/content/discover/feed-60129f7864870ebceb6878932e972e1c.md deleted file mode 100644 index 3ab88cce6..000000000 --- a/content/discover/feed-60129f7864870ebceb6878932e972e1c.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: A little place I know in Cape Town -date: "2023-06-20T22:09:19-07:00" -description: "" -params: - feedlink: https://alittleplaceiknowincapetown.blogspot.com/feeds/posts/default - feedtype: atom - feedid: 60129f7864870ebceb6878932e972e1c - websites: - https://alittleplaceiknowincapetown.blogspot.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://www.blogger.com/profile/11667852535983804885: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6050bb7a9dee969dff7547739335f02b.md b/content/discover/feed-6050bb7a9dee969dff7547739335f02b.md new file mode 100644 index 000000000..303fed287 --- /dev/null +++ b/content/discover/feed-6050bb7a9dee969dff7547739335f02b.md @@ -0,0 +1,77 @@ +--- +title: sanguinehearts +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://sanguinehearts.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 6050bb7a9dee969dff7547739335f02b + websites: + https://sanguinehearts.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - "6502" + - Afraid of the dark + - CD PROJEKT + - CDPROJEKT + - Loom + - PC Engine + - Scumm + - ScummVM + - TG16 + - Teen Agent + - TeenAgent + - apple 2 + - apple ii + - assembly + - disassembly + - fmv + - horrorsoft + - lucasarts + - maniac mansion + - metropolis software + - personal nightmare + - reverse engineering + - scummvm personal nightmare horrorsoft + - speaker + - umv + relme: + https://sanguinehearts.blogspot.com/: true + https://www.blogger.com/profile/11114084552664045753: true + last_post_title: Maniac Mansion Apple II beeper + last_post_description: Hi, it has been a long time since my last update.TeenAgent + has been implemented into the main trunk of ScummVM, however it is not based upon + my engine, instead Vladimir approached the ScummVM team a + last_post_date: "2010-02-08T00:43:00Z" + last_post_link: https://sanguinehearts.blogspot.com/2010/02/maniac-mansion-apple-ii-beeper.html + last_post_categories: + - "6502" + - Scumm + - ScummVM + - apple 2 + - apple ii + - assembly + - maniac mansion + - reverse engineering + - speaker + last_post_language: "" + last_post_guid: 1fdeaf06f62199677b6ff4688a955f24 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-606f087838bab784fc0a6ebb14704f25.md b/content/discover/feed-606f087838bab784fc0a6ebb14704f25.md new file mode 100644 index 000000000..8698bf53e --- /dev/null +++ b/content/discover/feed-606f087838bab784fc0a6ebb14704f25.md @@ -0,0 +1,144 @@ +--- +title: City Area Code +date: "1970-01-01T00:00:00Z" +description: Code of all Area keep visiting to mY page. +params: + feedlink: https://wisebohostory.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 606f087838bab784fc0a6ebb14704f25 + websites: + https://wisebohostory.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Old Area Code + last_post_description: |- + Selling Melania Trump, 833 area code One NFT at a Time. + The Reason Every N.F.L. Season finisher Team Will Lose + + + + The Visions of Penélope Cruz. Keep perusing + the whole story. Mr. Herndon said the + last_post_date: "2022-01-14T08:34:00Z" + last_post_link: https://wisebohostory.blogspot.com/2022/01/old-area-code.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 25bde80fda5d1602893b8a951947969b + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-60759dd7bf23375d6560236baaeb26e9.md b/content/discover/feed-60759dd7bf23375d6560236baaeb26e9.md new file mode 100644 index 000000000..9b003f35d --- /dev/null +++ b/content/discover/feed-60759dd7bf23375d6560236baaeb26e9.md @@ -0,0 +1,46 @@ +--- +title: Carla Sella (Letozaf_ ) +date: "1970-01-01T00:00:00Z" +description: Be curious. Read widely. Try new things. What people call intelligence + just boils down to curiosity (Aaron Swartz). +params: + feedlink: https://carla-sella.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 60759dd7bf23375d6560236baaeb26e9 + websites: + https://carla-sella.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://carla-sella.blogspot.com/: true + last_post_title: RockWork the Ubuntu clockwork for the Pebble smartwatch + last_post_description: |- + RockWork is a community driven project that aims to provide an open-source unofficial + app to be able to use a Pebble smartwatch on an Ubuntu phone/device. + + + You can find it on Launchpad here + last_post_date: "2016-01-15T21:11:00Z" + last_post_link: https://carla-sella.blogspot.com/2016/01/rockwork-ubuntu-clockwork-for-pebble.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 864a735259c0232ef2ea24b02a609bbc + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-60b7807ec4c6e287950b520aa37bac30.md b/content/discover/feed-60b7807ec4c6e287950b520aa37bac30.md deleted file mode 100644 index 6ebd16ac2..000000000 --- a/content/discover/feed-60b7807ec4c6e287950b520aa37bac30.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Remkus de Vries -date: "1970-01-01T00:00:00Z" -description: Public posts from @remkus@devries.frl -params: - feedlink: https://social.devries.frl/@remkus.rss - feedtype: rss - feedid: 60b7807ec4c6e287950b520aa37bac30 - websites: - https://social.devries.frl/@remkus: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://profiles.wordpress.org/DeFries: false - https://remkusdevries.com/: true - https://truerthannorth.com/: false - https://www.youtube.com/@remkusdevries: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-60bda9cc6a0acf436635089af5ee8ce0.md b/content/discover/feed-60bda9cc6a0acf436635089af5ee8ce0.md index 157707b72..5c5b990f2 100644 --- a/content/discover/feed-60bda9cc6a0acf436635089af5ee8ce0.md +++ b/content/discover/feed-60bda9cc6a0acf436635089af5ee8ce0.md @@ -12,9 +12,10 @@ params: recommended: [] recommender: [] categories: - - fedora - advogato + - fedora relme: + https://mjg59.dreamwidth.org/: true https://nondeterministic.computer/@mjg59: true last_post_title: SSH agent extensions as an arbitrary RPC mechanism last_post_description: A while back, I wrote about using the SSH agent protocol @@ -23,19 +24,24 @@ params: last_post_date: "2024-06-12T02:57:36Z" last_post_link: https://mjg59.dreamwidth.org/69646.html last_post_categories: - - fedora - advogato + - fedora + last_post_language: "" last_post_guid: 717c9d199746410f9dc4f5a693df31d1 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 2 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 12 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-60c44686d8c6606967fdb1d2f26bb7b3.md b/content/discover/feed-60c44686d8c6606967fdb1d2f26bb7b3.md deleted file mode 100644 index 00f59c0ae..000000000 --- a/content/discover/feed-60c44686d8c6606967fdb1d2f26bb7b3.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Thomas Gigold -date: "1970-01-01T00:00:00Z" -description: Public posts from @gigold@mastodon.social -params: - feedlink: https://mastodon.social/@gigold.rss - feedtype: rss - feedid: 60c44686d8c6606967fdb1d2f26bb7b3 - websites: - https://mastodon.social/@gigold: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://gigold.de/: false - https://gigold.de/instagram: false - https://gigold.de/strava: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-60f3d30361439f5810c1240b5db017da.md b/content/discover/feed-60f3d30361439f5810c1240b5db017da.md new file mode 100644 index 000000000..9878d1dca --- /dev/null +++ b/content/discover/feed-60f3d30361439f5810c1240b5db017da.md @@ -0,0 +1,137 @@ +--- +title: Nyquil Memes in Deep Sky +date: "2024-03-05T12:29:03-08:00" +description: There Are a lots of meme in world but we have deep sky of Nyquil Memes. +params: + feedlink: https://deepsky28.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 60f3d30361439f5810c1240b5db017da + websites: + https://deepsky28.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Nyquil Memes Are Famous in Sky + last_post_description: "" + last_post_date: "2020-12-07T03:29:26-08:00" + last_post_link: https://deepsky28.blogspot.com/2020/12/nyquil-memes-are-famous-in-sky.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 9de0276c898bae0775ca7c4ad46e79c2 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-61007f5c8cfb6ac1c8e89da80d3f4a97.md b/content/discover/feed-61007f5c8cfb6ac1c8e89da80d3f4a97.md new file mode 100644 index 000000000..2b7cb5820 --- /dev/null +++ b/content/discover/feed-61007f5c8cfb6ac1c8e89da80d3f4a97.md @@ -0,0 +1,42 @@ +--- +title: Core Dumped +date: "1970-01-01T00:00:00Z" +description: Recent content on Core Dumped +params: + feedlink: https://coredumped.dev/index.xml + feedtype: rss + feedid: 61007f5c8cfb6ac1c8e89da80d3f4a97 + websites: + https://coredumped.dev/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://coredumped.dev/: true + last_post_title: 'Bump Allocation: Up or Down?' + last_post_description: Back in 2019, Nick Fitzgerald published always bump downwards, + an article making the case that for bump allocators, bumping “down” (towards lower + addresses) is better than bumping up. The biggest + last_post_date: "2024-03-25T00:00:00Z" + last_post_link: https://coredumped.dev/2024/03/25/bump-allocation-up-or-down/ + last_post_categories: [] + last_post_language: "" + last_post_guid: fd90b56eaf50fe38bec736f3664175d2 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-610e45fb8228b116cfdfe371cf7b2944.md b/content/discover/feed-610e45fb8228b116cfdfe371cf7b2944.md index a06f2a0bf..3fe88ddc3 100644 --- a/content/discover/feed-610e45fb8228b116cfdfe371cf7b2944.md +++ b/content/discover/feed-610e45fb8228b116cfdfe371cf7b2944.md @@ -13,6 +13,7 @@ params: recommender: [] categories: [] relme: + https://oxcsnicho-stamp.blogspot.com/: true https://www.blogger.com/profile/12969254229589522030: true last_post_title: mpegtsmux status report (1) last_post_description: It's been a while since the last post ;) People may wonder @@ -21,17 +22,22 @@ params: last_post_date: "2009-06-29T14:16:00Z" last_post_link: https://oxcsnicho-stamp.blogspot.com/2009/06/its-been-while-since-last-post-people.html last_post_categories: [] + last_post_language: "" last_post_guid: 9f83470eb195ed430dd5c454fe528da4 score_criteria: cats: 0 description: 0 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 7 + score: 10 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-6111e5da33a78118c108ea155e2bf501.md b/content/discover/feed-6111e5da33a78118c108ea155e2bf501.md deleted file mode 100644 index 29761d68d..000000000 --- a/content/discover/feed-6111e5da33a78118c108ea155e2bf501.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: Seirdy activity -date: "2024-06-01T23:15:26Z" -description: "" -params: - feedlink: https://gitlab.com/Seirdy.atom - feedtype: atom - feedid: 6111e5da33a78118c108ea155e2bf501 - websites: - https://gitlab.com/Seirdy: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://seirdy.one/: true - last_post_title: Seirdy pushed to project branch master at Seirdy / seirdy.one - last_post_description: |- - Seirdy - (0892b9dd) - - at - 01 Jun 23:15 - - - Badges updates! - - - ... and - 1 more commit - last_post_date: "2024-06-01T23:15:26Z" - last_post_link: https://gitlab.com/Seirdy/seirdy.one/-/compare/fcbd50e7ab99f3bef4b7cc279b23532bad49f14f...0892b9dd90ee04937a8997bc93c59f846556c78d - last_post_categories: [] - last_post_guid: 7412e75f3407de51c5b8296f84c215d8 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-611ef0727193def267ace016be074ddf.md b/content/discover/feed-611ef0727193def267ace016be074ddf.md new file mode 100644 index 000000000..ec3bc5c15 --- /dev/null +++ b/content/discover/feed-611ef0727193def267ace016be074ddf.md @@ -0,0 +1,43 @@ +--- +title: Ubuntu on desentropia +date: "1970-01-01T00:00:00Z" +description: Recent content in Ubuntu on desentropia +params: + feedlink: https://desentropia.com/tags/ubuntu/index.xml + feedtype: rss + feedid: 611ef0727193def267ace016be074ddf + websites: + https://desentropia.com/tags/ubuntu/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://desentropia.com/tags/ubuntu/: true + last_post_title: Como descargar y ver series o peliculas gratis en esta Cuarentena + last_post_description: |- + En estos nuevos días en los que vivimos una situación muy fuera de lo común en el mundo quiero ayudar a aquellas personas que quieran entretenerse un poco con el Septimo arte. + + No entraré en + last_post_date: "2020-04-11T14:58:18-05:00" + last_post_link: https://desentropia.com/2020/04/11/como-descargar-y-ver-series-o-peliculas-gratis-en-esta-cuarentena/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 62bed0ff9f9241620de63443fc7c5f03 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-613d8017a9f5377304b69e452fd309f5.md b/content/discover/feed-613d8017a9f5377304b69e452fd309f5.md index 2958cfeff..d6d7a716d 100644 --- a/content/discover/feed-613d8017a9f5377304b69e452fd309f5.md +++ b/content/discover/feed-613d8017a9f5377304b69e452fd309f5.md @@ -14,13 +14,9 @@ params: categories: - posts relme: - https://github.com/alvarolopez: false + https://alvarolopez.github.io/: true https://keybase.io/aloga: true - https://linkedin.com/in/lopezgarciaalvaro: false https://mas.to/@aloga: true - https://orcid.org/0000-0002-0013-4602: false - https://twitter.com/alvaretas: false - https://www.researchgate.net/profile/Alvaro_Lopez-Garcia: false last_post_title: 'Working remotely: Asynchronous vs synchronous communications' last_post_description: |- I am normally involved in several research projects, collaborating with people @@ -30,17 +26,22 @@ params: last_post_link: http://alvarolopez.github.io/posts/2021/03/23/working-remotely-asynchronous-vs-synchronous-communications/ last_post_categories: - posts + last_post_language: "" last_post_guid: 43b0d2d542846d92e8bb63aec81ed5f6 score_criteria: cats: 0 description: 0 + feedlangs: 0 postcats: 1 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 8 + score: 11 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-614ff416a1f6a87ef7631efe5e4931e0.md b/content/discover/feed-614ff416a1f6a87ef7631efe5e4931e0.md deleted file mode 100644 index 30ad7c25f..000000000 --- a/content/discover/feed-614ff416a1f6a87ef7631efe5e4931e0.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: CJ Chilvers -date: "1970-01-01T00:00:00Z" -description: I help creators stay sane and productive one newsletter at a time. -params: - feedlink: https://cjchilvers.com/blog?format=rss - feedtype: rss - feedid: 614ff416a1f6a87ef7631efe5e4931e0 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://colinwalker.blog/dailyfeed.xml - - https://colinwalker.blog/livefeed.xml - categories: - - publishing - - blogging - - newsletters - relme: {} - last_post_title: Embrace the carnage. - last_post_description: The web is back.Or, is it on its back?Google and OpenAI have - been racing to see who can replace the web for you. Google isn’t even hiding it - anymore.From Platformer via Daring Fireball:“This new - last_post_date: "2024-05-18T11:45:50Z" - last_post_link: https://www.cjchilvers.com/blog/embrace-the-carnage/ - last_post_categories: - - publishing - - blogging - - newsletters - last_post_guid: 71e670b84a5fadda76feeb329d0e55ed - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 14 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6164acb0b8c49b6f36e28e4b6f0e7887.md b/content/discover/feed-6164acb0b8c49b6f36e28e4b6f0e7887.md deleted file mode 100644 index 6b64d5d2e..000000000 --- a/content/discover/feed-6164acb0b8c49b6f36e28e4b6f0e7887.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Comments for Tricky Cloud -date: "1970-01-01T00:00:00Z" -description: A blog about OpenStack, and other cloudy stuff -params: - feedlink: https://trickycloud.wordpress.com/comments/feed/ - feedtype: rss - feedid: 6164acb0b8c49b6f36e28e4b6f0e7887 - websites: - https://trickycloud.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Deploying Ironic in OpenStack Newton with TripleO by - Deploying Ironic in OpenStack Newton with TripleO - OpenStack Superuser - last_post_description: '[…] post first appeared on the Tricky Cloud blog. Superuser - is always interested in community content, email: […]' - last_post_date: "2017-02-21T15:35:22Z" - last_post_link: https://trickycloud.wordpress.com/2017/01/15/deploying-ironic-in-openstack-newton/comment-page-1/#comment-862 - last_post_categories: [] - last_post_guid: 545932047b0db1a4719d18f3b96bf27e - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-616aa01bde64b34d2ff62e409e20e43c.md b/content/discover/feed-616aa01bde64b34d2ff62e409e20e43c.md index 228e080b4..12c46a576 100644 --- a/content/discover/feed-616aa01bde64b34d2ff62e409e20e43c.md +++ b/content/discover/feed-616aa01bde64b34d2ff62e409e20e43c.md @@ -14,26 +14,34 @@ params: categories: - issue relme: + https://github.com/hamatti: true + https://hamatti.org/: true https://mastodon.world/@hamatti: true - last_post_title: 'Syntax Error #14: I don''t know' - last_post_description: Approaching debugging sessions with humility and leaving - your assumptions at the door can lead to quicker and less stressful process. In - today's newsletter, I write about the importance of saying "I - last_post_date: "2024-05-17T09:45:14Z" - last_post_link: https://www.syntaxerror.tech/syntax-error-14-i-dont-know/ + https://www.syntaxerror.tech/: true + last_post_title: 'Syntax Error #15: Walking the walk' + last_post_description: I started a new job a few weeks ago and in the middle of + figuring out the new job, new codebase, new tools and new environment, I made + a few silly bugs while in development. It put my debugging core + last_post_date: "2024-06-17T10:43:48Z" + last_post_link: https://www.syntaxerror.tech/syntax-error-15-walking-the-walk/ last_post_categories: - issue - last_post_guid: 1b383802a74aeaed96fc9b49fb6561d9 + last_post_language: "" + last_post_guid: 51a70779012e2efd7871a890ee7350d3 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 1 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 11 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-616ece4361608fcbcc539161e209ad54.md b/content/discover/feed-616ece4361608fcbcc539161e209ad54.md deleted file mode 100644 index f34818838..000000000 --- a/content/discover/feed-616ece4361608fcbcc539161e209ad54.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Of Particular Significance -date: "1970-01-01T00:00:00Z" -description: Conversations About Science with Theoretical Physicist Matt Strassler -params: - feedlink: https://profmattstrassler.com/feed/ - feedtype: rss - feedid: 616ece4361608fcbcc539161e209ad54 - websites: - https://profmattstrassler.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Public Outreach - - Waves In An Impossible Sea - - WavesInAnImpossibleSea - relme: {} - last_post_title: Speaking Event Today in Lenox, MA - last_post_description: 'For those of you currently in western Massachusetts or eastern - upstate New York, some news: I’ll be speaking about my book today, Monday, June - 24th, 5:30 pm, in Lenox, MA. At this free event, held' - last_post_date: "2024-06-24T13:03:36Z" - last_post_link: https://profmattstrassler.com/2024/06/24/speaking-event-today-in-lenox-ma/ - last_post_categories: - - Public Outreach - - Waves In An Impossible Sea - - WavesInAnImpossibleSea - last_post_guid: 5fbcb0116e4dc566e66ae08075476d9a - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-618213cf98ae19f6a3043c0cf9fde859.md b/content/discover/feed-618213cf98ae19f6a3043c0cf9fde859.md new file mode 100644 index 000000000..ba869c054 --- /dev/null +++ b/content/discover/feed-618213cf98ae19f6a3043c0cf9fde859.md @@ -0,0 +1,47 @@ +--- +title: Robert Kingett +date: "1970-01-01T00:00:00Z" +description: A fabulously blind romance author. +params: + feedlink: https://robertkingett.com/feed/ + feedtype: rss + feedid: 618213cf98ae19f6a3043c0cf9fde859 + websites: + https://robertkingett.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php + categories: + - Blog and journal. + - Random thoughts + relme: {} + last_post_title: I Will Luddite AI + last_post_description: Many people ask me what my position on AI is. Personally, + I think men should read some romance novels before telling investors that chatbots + from the early days of computing are going to turn us all + last_post_date: "2024-07-07T02:55:21Z" + last_post_link: https://robertkingett.com/posts/6593/ + last_post_categories: + - Blog and journal. + - Random thoughts + last_post_language: "" + last_post_guid: 975430780abc9b881524175d6cee5c11 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 2 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-6184b8548e4d2f0cc3f461c5be727d51.md b/content/discover/feed-6184b8548e4d2f0cc3f461c5be727d51.md deleted file mode 100644 index 8a70f7ec5..000000000 --- a/content/discover/feed-6184b8548e4d2f0cc3f461c5be727d51.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: The Blog -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://ajya.github.io/feeds/all.rss.xml - feedtype: rss - feedid: 6184b8548e4d2f0cc3f461c5be727d51 - websites: - https://ajya.github.io/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - outreachy - - openstack - relme: {} - last_post_title: 'Outreachy: Summary' - last_post_description: |- - This is the last blog post about my Outreachy internship that will summarize what I have done. - These are the 'main' additions to sushy and sushy tools project: - - initial version for BIOS resource - last_post_date: "2018-08-31T21:00:00+03:00" - last_post_link: https://ajya.github.io/outreachy-summary.html - last_post_categories: - - outreachy - - openstack - last_post_guid: f7610225d1da9fbfb9c71b1b4df98023 - score_criteria: - cats: 0 - description: 0 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-61869ea29a8b1b020f2653b32569f0dd.md b/content/discover/feed-61869ea29a8b1b020f2653b32569f0dd.md deleted file mode 100644 index 2d8ffec67..000000000 --- a/content/discover/feed-61869ea29a8b1b020f2653b32569f0dd.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for Nicolas' Blog -date: "1970-01-01T00:00:00Z" -description: Yet another Open Source developer blog -params: - feedlink: https://ndufresne.ca/comments/feed/ - feedtype: rss - feedid: 61869ea29a8b1b020f2653b32569f0dd - websites: - https://ndufresne.ca/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on GStreamer support for the RIST Specification by Nicolas - last_post_description: |- - In reply to DEIVENDRAN CHINNACHAMY. - - The inclusion of RIST in the builds has now - last_post_date: "2021-01-01T23:12:55Z" - last_post_link: https://ndufresne.ca/2019/04/gstreamer-support-for-the-rist-specification/comment-page-1/#comment-17458 - last_post_categories: [] - last_post_guid: 836f9879e084ec3d9bea664f6ced6632 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6194cf81d9cc4677e106364d7ed25f85.md b/content/discover/feed-6194cf81d9cc4677e106364d7ed25f85.md index 79486ef6e..c288cccbf 100644 --- a/content/discover/feed-6194cf81d9cc4677e106364d7ed25f85.md +++ b/content/discover/feed-6194cf81d9cc4677e106364d7ed25f85.md @@ -14,32 +14,38 @@ params: - https://colinwalker.blog/dailyfeed.xml - https://colinwalker.blog/livefeed.xml categories: - - AI - - social video - Social Media + - Threads + - fediverse + - mastodon relme: https://masto.onemanandhisblog.com/@adders: true - https://micro.blog/adders: false - last_post_title: 'Social videos: No, AI can''t do them by itself' - last_post_description: That AI isn't putting you out of a job yet — but it might - be about to change it… - last_post_date: "2024-05-24T17:07:59Z" - last_post_link: https://onemanandhisblog.com/2024/05/social-videos-no-ai-cant-do-them-by-itself/ + https://onemanandhisblog.com/: true + last_post_title: Mastodon loves journalism — and even Threads is warming to it + last_post_description: A glimpse into a possible social media future for journalism. + last_post_date: "2024-07-03T17:26:51Z" + last_post_link: https://onemanandhisblog.com/2024/07/mastodon-loves-journalism-and-even-threads-is-warming-to-it/ last_post_categories: - - AI - - social video - Social Media - last_post_guid: bb256509297d742f4c8c53ac45928a47 + - Threads + - fediverse + - mastodon + last_post_language: "" + last_post_guid: 8e73e928ec5639e58e386071d470f4fd score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 18 + score: 21 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-61a94025d87b544bb3104f1508c59c20.md b/content/discover/feed-61a94025d87b544bb3104f1508c59c20.md deleted file mode 100644 index 52dfb7a4d..000000000 --- a/content/discover/feed-61a94025d87b544bb3104f1508c59c20.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Jon Worth -date: "1970-01-01T00:00:00Z" -description: Independent railway commentator -params: - feedlink: https://jonworth.eu/feed/ - feedtype: rss - feedid: 61a94025d87b544bb3104f1508c59c20 - websites: - https://jonworth.eu/: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: - - Analysis - - European Union - relme: - https://gruene.social/@jon: true - last_post_title: Schlimmer geht immer – rumours about the transport portfolio in - the next European Commission - last_post_description: “Schlimmer geht immer” the Germans say. “It can always get - worse” As regular readers of this blog know, I am not the biggest fan of current - European Commissioner for Transport, Adina-Ioana - last_post_date: "2024-05-23T17:36:13Z" - last_post_link: https://jonworth.eu/schlimmer-geht-immer-rumours-about-the-transport-portfolio-in-the-next-european-commission/ - last_post_categories: - - Analysis - - European Union - last_post_guid: d5c8cdccc80e06773a9fe1121cf90789 - score_criteria: - cats: 0 - description: 3 - postcats: 2 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 17 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-61d91e7dc638171edc9a9528b3efe62d.md b/content/discover/feed-61d91e7dc638171edc9a9528b3efe62d.md deleted file mode 100644 index 0c61f07a1..000000000 --- a/content/discover/feed-61d91e7dc638171edc9a9528b3efe62d.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: R. S. Doiel -date: "1970-01-01T00:00:00Z" -description: Public posts from @rsdoiel@tilde.zone -params: - feedlink: https://tilde.zone/@rsdoiel.rss - feedtype: rss - feedid: 61d91e7dc638171edc9a9528b3efe62d - websites: - https://tilde.zone/@rsdoiel: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/rsdoiel: true - https://rsdoiel.github.io/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-61e1ada7f554731009dda539afc22996.md b/content/discover/feed-61e1ada7f554731009dda539afc22996.md new file mode 100644 index 000000000..19a05b473 --- /dev/null +++ b/content/discover/feed-61e1ada7f554731009dda539afc22996.md @@ -0,0 +1,176 @@ +--- +title: Stonekettle Station +date: "2024-07-08T17:44:36-05:00" +description: Don't just embrace the crazy, sidle up next to it and lick its ear. +params: + feedlink: https://www.stonekettle.com/feeds/posts/default + feedtype: atom + feedid: 61e1ada7f554731009dda539afc22996 + websites: + https://www.stonekettle.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://frankmcpherson.blog/feed.xml + categories: + - Alaska State Fair. Anemone. More Stupid + - Deep Thunder and Firey Angels + - Fraud Stonekette Merchandise + - Goals + - Plans + - Retired Life + - Stonekettle Station + - Things + - Things Hunter S. Thompson would do if he was still alive + - Things I blog about when I don't have anything to blog about + - Things I do + - Things I do at night + - Things I do for fun + - Things I do in the shop + - Things I do instead of writing + - Things I do so you don't have to + - Things I do to get motivated + - Things I do to save money + - Things I don't care about + - Things I don't forget + - Things I find Interesting + - Things I find just plain weird + - Things I find pathetic + - Things I like + - Things I like to eat + - Things I remember + - Things I used to do for a living + - Things I would rather not be doing + - Things I'm reading right now + - Things I'm thinking about + - Things Just Things + - Things about Sarah Palin + - Things about Stonekettle Station + - Things about Terrorism + - Things about cats + - Things about kids + - Things about music + - Things about the military + - Things happen + - Things in Alaska + - Things that I do for fun + - Things that I don't understand + - Things that I don't want to do - but have to anyway + - Things that I find Ironic + - Things that I love about Alaska + - Things that I should be doing + - Things that I want + - Things that amaze me + - Things that amuse and nauseate me + - Things that amuse me + - Things that both amuse and irritate me + - Things that chap my ass + - Things that concern me + - Things that confound me + - Things that confuse me + - Things that creep me out + - Things that depress me + - Things that entertain me + - Things that frustrate me + - Things that get hijacked + - Things that have to do with Alaska + - Things that hurt me + - Things that irritate me + - Things that just keep pissing me off + - Things that leave a funny taste in your mouth. + - Things that leave me cold + - Things that make living in Alaska fun + - Things that make me a little sceptical + - Things that make me apprehensive + - Things that make me go hmmm + - Things that make me insane + - Things that make me just want to get stinking drunk + - Things that make me mad with power + - Things that make me sleepy + - Things that make me want to poke my eyes out + - Things that make me want to punch people in the mouth + - Things that make my blood BOIL + - Things that make my head hurt + - Things that need to be said + - Things that offend me + - Things that perplex me + - Things that piss me off + - Things that revolt me + - Things that tickle me + - Things to do in Denver when you're dead + - Things to think about + - Trump + - UEU + - and Just Fading Away + - cell phones + - immigration + - politics + - thing abouts politics + - things I do by request + - things I do for you + - things I do so you'll know me better + - things I do to get a cool sticker + - things I do to make you dance so dance monkeys dance + - things I do to stick it to the man + - things I do with cool people I meet online + - things I get in the mail + - things I have to do but don't want to + - things I look forward to + - things I think are just plain cool + - things I use my blog for that I probably shouldn't but it's my blog so I will + if I want to + - things I'm listening to + - things about Michigan + - things about bailouts + - things about bowls + - things about pirates + - things about politics + - things about religion + - things about scifi + - things about the law + - things about top ten lists + - things about vacation + - things in the kitchen + - things that I'm not looking forward to + - things that amus me + - things that are all shiny + - things that concern writing + - things that fill me with disgust + - things that have to do with blogging + - things that have to do with camels + - things that have to with politics + - things that keep me busy + - things that make me crazy + - things that make me happy + - things that make me jealous + - things that make me laugh hysterically + - things that piss me off. NOT gay porn - go somewhere else. + - things that sadden me + - things that vex me mightily + - things various and sundry + relme: + https://www.stonekettle.com/: true + last_post_title: Raggedy Man + last_post_description: "" + last_post_date: "2024-07-05T14:15:06-05:00" + last_post_link: https://www.stonekettle.com/2024/07/raggedy-man.html + last_post_categories: [] + last_post_language: "" + last_post_guid: be31fd6dbadf3e8c5f3ec56f70c16b92 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 23 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-61ebe023bc77cf2d020dcc613bb0e8c9.md b/content/discover/feed-61ebe023bc77cf2d020dcc613bb0e8c9.md deleted file mode 100644 index bcc6edc5d..000000000 --- a/content/discover/feed-61ebe023bc77cf2d020dcc613bb0e8c9.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: PITN backup copy -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://polyinthemedia-backup.blogspot.com/feeds/posts/default?alt=rss - feedtype: rss - feedid: 61ebe023bc77cf2d020dcc613bb0e8c9 - websites: - https://polyinthemedia-backup.blogspot.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://www.blogger.com/profile/16008171792811719945: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-61f2e244be05ab76b2f9f816885f1b38.md b/content/discover/feed-61f2e244be05ab76b2f9f816885f1b38.md deleted file mode 100644 index e07e61533..000000000 --- a/content/discover/feed-61f2e244be05ab76b2f9f816885f1b38.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for Chris Lovie-Tyler -date: "1970-01-01T00:00:00Z" -description: Learning to see -params: - feedlink: https://chrislt.art/comments/feed/ - feedtype: rss - feedid: 61f2e244be05ab76b2f9f816885f1b38 - websites: - https://chrislt.art/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Towards North Piha by Chris Lovie-Tyler - last_post_description: |- - In reply to Graham McQuade. - - Thanks, Graham! - last_post_date: "2024-06-04T08:57:20Z" - last_post_link: https://chrislt.art/towards-north-piha/#comment-39 - last_post_categories: [] - last_post_guid: 819c71ed870af3cf8fab341f0de1694f - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-61f6724684dcbda134604096ee60e427.md b/content/discover/feed-61f6724684dcbda134604096ee60e427.md new file mode 100644 index 000000000..9b4796c10 --- /dev/null +++ b/content/discover/feed-61f6724684dcbda134604096ee60e427.md @@ -0,0 +1,47 @@ +--- +title: alerios (english version) +date: "2024-02-03T04:45:17-05:00" +description: Libre Software, IP Telephony, Colombia and other thoughts... +params: + feedlink: https://alerios-en.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 61f6724684dcbda134604096ee60e427 + websites: + https://alerios-en.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - debian + - medellin + - windows + relme: + https://alerios-en.blogspot.com/: true + https://alerios.blogspot.com/: true + https://www.blogger.com/profile/17804942289789120050: true + last_post_title: 2011 Colombian Mini-DebConf + last_post_description: "" + last_post_date: "2011-09-28T12:16:27-05:00" + last_post_link: https://alerios-en.blogspot.com/2011/09/2011-colombian-mini-debconf.html + last_post_categories: + - debian + - medellin + last_post_language: "" + last_post_guid: 051db63a303f9fb1ff8e1afee2ff805b + score_criteria: + cats: 3 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-620a9db2e4074dfc2f7375b7d177aedb.md b/content/discover/feed-620a9db2e4074dfc2f7375b7d177aedb.md deleted file mode 100644 index e25a461a5..000000000 --- a/content/discover/feed-620a9db2e4074dfc2f7375b7d177aedb.md +++ /dev/null @@ -1,58 +0,0 @@ ---- -title: 4 gravitons -date: "1970-01-01T00:00:00Z" -description: The trials and tribulations of four gravitons and a physicist -params: - feedlink: https://4gravitons.com/feed/ - feedtype: rss - feedid: 620a9db2e4074dfc2f7375b7d177aedb - websites: - https://4gravitons.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Amplitudes Methods - - academia - - amplitudes - - black hole - - gravity - - LIGO - - mathematics - - particle physics - - quantum field theory - - quantum gravity - - string theory - relme: {} - last_post_title: Amplitudes 2024, Continued - last_post_description: I’ve now had time to look over the rest of the slides from - the Amplitudes 2024 conference, so I can say something about Thursday and Friday’s - talks. Thursday was gravity-focused. Zvi Bern’s - last_post_date: "2024-06-28T16:00:00Z" - last_post_link: https://4gravitons.com/2024/06/28/amplitudes-2024-continued/ - last_post_categories: - - Amplitudes Methods - - academia - - amplitudes - - black hole - - gravity - - LIGO - - mathematics - - particle physics - - quantum field theory - - quantum gravity - - string theory - last_post_guid: c5ebab85009b4d2a5a5e76bb5a672438 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-620acea66296667e76f0662047d3dfa5.md b/content/discover/feed-620acea66296667e76f0662047d3dfa5.md deleted file mode 100644 index f6db6b557..000000000 --- a/content/discover/feed-620acea66296667e76f0662047d3dfa5.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Evert Pot -date: "1970-01-01T00:00:00Z" -description: Public posts from @evert@indieweb.social -params: - feedlink: https://indieweb.social/@evert.rss - feedtype: rss - feedid: 620acea66296667e76f0662047d3dfa5 - websites: - https://indieweb.social/@evert: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://evertpot.com/: true - https://github.com/evert: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-620f3c80c320f429177a3992be8c76ef.md b/content/discover/feed-620f3c80c320f429177a3992be8c76ef.md index b62e72c8b..19bedbe84 100644 --- a/content/discover/feed-620f3c80c320f429177a3992be8c76ef.md +++ b/content/discover/feed-620f3c80c320f429177a3992be8c76ef.md @@ -1,6 +1,6 @@ --- title: Blank On The Map -date: "2024-05-27T08:01:57+02:00" +date: "2024-07-07T20:42:40+02:00" description: Explorations of physics and whimsy. params: feedlink: https://blankonthemap.blogspot.com/feeds/posts/default @@ -12,66 +12,67 @@ params: recommended: [] recommender: [] categories: - - cosmology - - the universe - - physics - - CMB - - economics and politics - - particle physics - - science - - whimsy - - mountaineering + - BBC - BICEP - - CERN - - Higgs boson - - astronomy - - dark matter - - maps - - probability - Bayesian inference - - Eurozone - - Planck - - science education - - dark energy - - exploration - - geography - - inflation - - publishing - - biology - - peer review - - Himalayas - - India - - Krugman - - United States + - CERN + - CMB - Europe - - funding - - postdocs - - quasars - - supernovae - - BBC + - Eurozone + - Everest - George Osborne - Germany - Greece - - Merkel - - Nobel Prize - - Steven Weinberg - - Sun - - climbing - - neutrinos - - quantum mechanics - - Everest + - Higgs boson + - Himalayas + - India - Iran + - Krugman + - Merkel - Milky Way + - Nobel Prize - Olympics - Oxford interviews + - Planck + - Steven Weinberg + - Sun + - United States + - astronomy + - biology - blues + - climbing + - cosmology + - dark energy + - dark matter - dinosaurs + - economics and politics - evolution + - exploration + - funding - game theory + - geography - geology + - inflation + - maps + - mountaineering - multiverse + - neutrinos + - particle physics + - peer review + - physics + - postdocs + - probability - psychology + - publishing + - quantum mechanics + - quasars + - science + - science education + - supernovae + - the universe + - whimsy relme: + https://blankonthemap.blogspot.com/: true https://www.blogger.com/profile/07155102110438904961: true last_post_title: Change of scenery last_post_description: "" @@ -79,17 +80,22 @@ params: last_post_link: https://blankonthemap.blogspot.com/2015/10/change-of-scenery.html last_post_categories: - cosmology + last_post_language: "" last_post_guid: 70aece91f03c2107c353e039648002d4 score_criteria: cats: 5 description: 3 + feedlangs: 0 postcats: 1 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 16 + score: 19 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-621119edd5de4dd0864a5018d17eb7f4.md b/content/discover/feed-621119edd5de4dd0864a5018d17eb7f4.md new file mode 100644 index 000000000..d2a804b15 --- /dev/null +++ b/content/discover/feed-621119edd5de4dd0864a5018d17eb7f4.md @@ -0,0 +1,54 @@ +--- +title: Read Write Respond +date: "1970-01-01T00:00:00Z" +description: Read is to write, write is to respond +params: + feedlink: https://readwriterespond.com/feed/ + feedtype: rss + feedid: 621119edd5de4dd0864a5018d17eb7f4 + websites: + https://readwriterespond.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Health + - Norman Swan + - Politics + - Review + - Ways of Thinking + relme: + https://collect.readwriterespond.com/: true + https://github.com/mrkrndvs: true + https://readwriterespond.com/: true + last_post_title: 'REVIEW: So You Want To Live Younger Longer? (Dr. Norman Swan)' + last_post_description: So many things have bounced back now that COVID is magically + no longer a thing. However, one thing that remains in my life is the presence + of Dr Norman Swan (and Tegan Taylor) via the What's That + last_post_date: "2024-07-01T11:11:31Z" + last_post_link: https://readwriterespond.com/2024/07/review-so-you-want-to-live-younger-longer/ + last_post_categories: + - Health + - Norman Swan + - Politics + - Review + - Ways of Thinking + last_post_language: "" + last_post_guid: 1234c810dbf4c49f843f20feca65fa89 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-621a6a01af659c993d6a2dbd67c96f53.md b/content/discover/feed-621a6a01af659c993d6a2dbd67c96f53.md index 034a2e547..22035e7e2 100644 --- a/content/discover/feed-621a6a01af659c993d6a2dbd67c96f53.md +++ b/content/discover/feed-621a6a01af659c993d6a2dbd67c96f53.md @@ -14,125 +14,34 @@ params: recommender: [] categories: [] relme: - https://360.whatfettle.com/: false - https://about.me/psd: false - https://advogato.org/person/psd/: false - https://alpha.scraperwiki.com/profiles/psd/: false - https://blip.fm/psd: false + https://blog.whatfettle.com/: true https://blog.whatfettle.com/about/: true - https://brightkite.com/people/psd: false - https://channel9.msdn.com/Niners/psd/: false - https://del.icio.us/psd: false - https://developer.ribbit.com/profiles/psd/: false - https://digg.com/users/pdowney: false - https://disqus.com/people/psd/: false - https://djangopeople.net/psd/: false - https://favtape.com/lastfm/pdowney/recent: false - https://foursquare.com/user/psd: false - https://friendfeed.com/psd: false - https://getsatisfaction.com/people/psd/: false - https://github.com/psd: false - https://gowalla.com/users/psd: false - https://hi.im/psd: false - https://huffduffer.com/psd: false - https://identi.ca/psd: false - https://imdb.com/mymovies/list?l=1877021: false - https://isitbirthday.com/psd: false - https://jsdo.it/psd: false - https://jyte.com/claims?by=blog.whatfettle.com: false - https://lanyrd.com/people/psd/: false - https://londonist.com/profile/pauldowney: false - https://ma.gnolia.com/people/psd: false - https://mash.yahoo.com/profile.php?id=jlDMyaxx3SCOVqhTbZkNfvE: false - https://meme.yahoo.com/psd/: false - https://metaoptimize.com/qa/users/478/psd/: false - https://microformats.org/wiki/User:PaulDowney: false - https://my.opera.com/pdowney/about/: false - https://paper.li/psd: false - https://pauld.jaiku.com/: false - https://pdowney.hi5.com/: false - https://pdowney.stumbleupon.com/: false - https://plancast.com/psd: false - https://plazes.com/users/245740: false - https://plusplusbot.com/targets/psd: false - https://pownce.com/psd/: false - https://profiles.yahoo.com/u/PQNB4KKYRYOX7XCXR6UIM4IJFQ: false - https://psd.jottit.com/: false - https://psd.myvidoop.com/: false - https://psd.posterous.com/: false - https://psd.tumblr.com/: false - https://psdowney.livejournal.com/: false - https://reddit.com/user/pdowney/: false - https://runkeeper.com/user/psd/profile: false - https://socialthing.com/psd: false - https://solderpad.com/psd: false - https://speakerdeck.com/u/psd: false + https://github.com/psd: true + https://psd.tumblr.com/: true https://stackoverflow.com/users/213657/psd: true - https://tweetstats.com/graphs/psd: false - https://twimbler.com/psd: false - https://twitter.com/psd: false - https://twittermap.com/maps?mapstring=psd: false - https://upcoming.yahoo.com/user/56234/: false - https://userscripts.org/people/1575: false - https://weheartit.com/user/psd: false - https://www.amazon.co.uk/exec/obidos/registry/JIYMV8I6TBHV/ref=wl_em_to: false - https://www.backtype.com/psd: false - https://www.bloglines.com/public/psd: false - https://www.confabb.com/users/profile/9013: false - https://www.davidhasselhoff.com/profile/PaulDowney: false - https://www.designspark.com/users/psd: false - https://www.dopplr.com/traveller/psd: false - https://www.facebook.com/paul.downey: false - https://www.flickr.com/people/psd/: false - https://www.geekmap.co.uk/people/00bf-paul-downey: false - https://www.geocaching.com/profile/?guid=425d0058-d4d1-4a56-a19a-a7eae93e8e7a: false - https://www.geocaching.com/seek/nearest.aspx?ul=psd: false - https://www.goodreads.com/user/show/3725895: false - https://www.google.com/profiles/paul.s.downey: false - https://www.google.com/reader/shared/paul.s.downey: false - https://www.hunch.com/people/psd/profile/: false - https://www.last.fm/user/pdowney/: false - https://www.linkedin.com/in/pdowney: false - https://www.mahalo.com/member/Psd: false - https://www.meetup.com/members/7608028/: false - https://www.mybloglog.com/buzz/members/psd/: false - https://www.ohloh.net/accounts/15982: false - https://www.ourairports.com/members/psd/: false - https://www.plurk.com/user/psd: false - https://www.radiopop.co.uk/users/pdowney/: false - https://www.rummble.com/pauld: false - https://www.semanticoverflow.com/users/393/psd: false - https://www.slideshare.net/psd: false - https://www.spock.com/Paul-Downey-zyos1NX8: false - https://www.technorati.com/claim/mkazu9v6zx: false - https://www.technorati.com/search/http:/blog.whatfettle.com: false - https://www.thingiverse.com/psd: false - https://www.tiddlywiki.org/wiki/User:Psd: false - https://www.twine.com/user/psd/: false - https://www.twitterholic.com/twitter/psd: false - https://www.ustream.tv/pdowney: false - https://www.vimeo.com/pdowney: false - https://www.wildlifenearyou.com/psd/: false - https://www.xing.com/profile/Paul_Downey: false - https://youtube.com/psdowney: false - https://zootool.com/user/psd/: false + https://whatfettle.com/: true last_post_title: 'Comment on Part One: Who Am I? by Paul Downey' last_post_description: Ah, I need to make time to write part 2 which is about authentication, including distributed identity schemes. last_post_date: "2011-11-09T22:14:24Z" last_post_link: https://blog.whatfettle.com/2011/10/17/wai-way-wia-part-one/#comment-227530 last_post_categories: [] + last_post_language: "" last_post_guid: 30557245a3329f7c1f38b3b52a133e86 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-6227505e1db12d966d7dfa9e6bad7cd3.md b/content/discover/feed-6227505e1db12d966d7dfa9e6bad7cd3.md deleted file mode 100644 index 70fcebcdb..000000000 --- a/content/discover/feed-6227505e1db12d966d7dfa9e6bad7cd3.md +++ /dev/null @@ -1,85 +0,0 @@ ---- -title: Hachyderm Community – Specialized Accounts that have Verified with Hachyderm -date: "1970-01-01T00:00:00Z" -description: Recent content in Specialized Accounts that have Verified with Hachyderm - on Hachyderm Community -params: - feedlink: https://community.hachyderm.io/approved/index.xml - feedtype: rss - feedid: 6227505e1db12d966d7dfa9e6bad7cd3 - websites: - https://community.hachyderm.io/approved: false - https://community.hachyderm.io/approved/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://hachyderm.io/@AnySoftKeyboard: false - https://hachyderm.io/@Backloggery: false - https://hachyderm.io/@CodeAndSupply: true - https://hachyderm.io/@ConfBuddy: true - https://hachyderm.io/@CrowdSupply: true - https://hachyderm.io/@K8sContributors: false - https://hachyderm.io/@NottingHack: true - https://hachyderm.io/@OpenCost: true - https://hachyderm.io/@OrnithopterHosting: true - https://hachyderm.io/@ProjectJupyter: false - https://hachyderm.io/@SIGCPP: true - https://hachyderm.io/@ThingsDrawnByTextModels: true - https://hachyderm.io/@TwosComplement: false - https://hachyderm.io/@WomeninAIethics: false - https://hachyderm.io/@adminmagazine: true - https://hachyderm.io/@aurae: false - https://hachyderm.io/@barcampbangalore: false - https://hachyderm.io/@books2explore: false - https://hachyderm.io/@comocamp: true - https://hachyderm.io/@compiler_explorer: false - https://hachyderm.io/@coveragepy: false - https://hachyderm.io/@cowsay: true - https://hachyderm.io/@devopsdaysbham: false - https://hachyderm.io/@devopsdaysdc: false - https://hachyderm.io/@dokku: true - https://hachyderm.io/@fluiddyn: true - https://hachyderm.io/@flydotio: false - https://hachyderm.io/@github: false - https://hachyderm.io/@golang: false - https://hachyderm.io/@hachyderm: false - https://hachyderm.io/@hachyinfra: false - https://hachyderm.io/@hacktoberfest: false - https://hachyderm.io/@humaneguild: true - https://hachyderm.io/@hydrogen: true - https://hachyderm.io/@ietf_wg_dnsop: true - https://hachyderm.io/@macadminsopensource: true - https://hachyderm.io/@mariyadelano: false - https://hachyderm.io/@netobserv: true - https://hachyderm.io/@nivenly: false - https://hachyderm.io/@omnios: true - https://hachyderm.io/@oxidecomputer: false - https://hachyderm.io/@rOpenSci: true - https://hachyderm.io/@status_updates: false - https://hachyderm.io/@summitpgh: true - https://hachyderm.io/@tailscale: false - https://hachyderm.io/@tremolo: true - https://hachyderm.io/@vecka: true - https://hachyderm.io/@zellij: true - https://hachyderm.io/@zomg: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-622e3b0d1b2c9231afa441a22df52f04.md b/content/discover/feed-622e3b0d1b2c9231afa441a22df52f04.md deleted file mode 100644 index 92b7fb08d..000000000 --- a/content/discover/feed-622e3b0d1b2c9231afa441a22df52f04.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Buttersafe -date: "2024-05-30T04:25:27Z" -description: Updated Tuesdays and Thursdays -params: - feedlink: https://www.buttersafe.com/feed/atom/ - feedtype: atom - feedid: 622e3b0d1b2c9231afa441a22df52f04 - websites: - https://buttersafe.com/: false - https://www.buttersafe.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Comic - relme: {} - last_post_title: So Smooth - last_post_description: "" - last_post_date: "2024-05-30T04:25:27Z" - last_post_link: https://www.buttersafe.com/2024/05/30/so-smooth/ - last_post_categories: - - Comic - last_post_guid: be76114f23921b29431baebaa5496b74 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-62470ab85b16624016919d2257c79181.md b/content/discover/feed-62470ab85b16624016919d2257c79181.md deleted file mode 100644 index 74cd9fcc3..000000000 --- a/content/discover/feed-62470ab85b16624016919d2257c79181.md +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: openSUSE Lizards -date: "1970-01-01T00:00:00Z" -description: Blogs and Ramblings of the openSUSE Members -params: - feedlink: https://lizards.opensuse.org/feed/ - feedtype: rss - feedid: 62470ab85b16624016919d2257c79181 - websites: - https://lizards.opensuse.org/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Distribution - - Factory - - Hackweek - - Programming - - Systems Management - - YaST - relme: {} - last_post_title: Highlights of YaST Development Sprint 94 - last_post_description: After some time of silent work (our previous blog post was - published a month ago), the YaST Team is back with some news about the latest - development sprint and some Hack Week experiments. Those news - last_post_date: "2020-03-06T11:29:40Z" - last_post_link: https://lizards.opensuse.org/2020/03/06/yast-sprint-94/ - last_post_categories: - - Distribution - - Factory - - Hackweek - - Programming - - Systems Management - - YaST - last_post_guid: 66b3afcd9eacc191a7d4b3b95acc70ff - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-624e4d2929738d4314d98f2a6c66024c.md b/content/discover/feed-624e4d2929738d4314d98f2a6c66024c.md deleted file mode 100644 index 5de2288c5..000000000 --- a/content/discover/feed-624e4d2929738d4314d98f2a6c66024c.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Marie Gilles ☽ La Lune Mauve -date: "1970-01-01T00:00:00Z" -description: Public posts from @LaLuneMauve@eldritch.cafe -params: - feedlink: https://eldritch.cafe/@LaLuneMauve.rss - feedtype: rss - feedid: 624e4d2929738d4314d98f2a6c66024c - websites: - https://eldritch.cafe/@LaLuneMauve: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://lalunemauve.fr/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-624fcfb1b62207e3459a316a00bad6bb.md b/content/discover/feed-624fcfb1b62207e3459a316a00bad6bb.md new file mode 100644 index 000000000..62528641b --- /dev/null +++ b/content/discover/feed-624fcfb1b62207e3459a316a00bad6bb.md @@ -0,0 +1,137 @@ +--- +title: Nyquil Memes at it Best +date: "2024-03-14T02:27:36-07:00" +description: Here we have world best Nyquil meme Collection. +params: + feedlink: https://caminheiro-mg.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 624fcfb1b62207e3459a316a00bad6bb + websites: + https://caminheiro-mg.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Nyquil Meme is First Love + last_post_description: "" + last_post_date: "2020-11-28T10:18:49-08:00" + last_post_link: https://caminheiro-mg.blogspot.com/2020/11/nyquil-meme-is-first-love.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 9ab23b9ce4b62c50d04f51046f055ca5 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-625051561a35dcd40a7aeae42f2cdde6.md b/content/discover/feed-625051561a35dcd40a7aeae42f2cdde6.md new file mode 100644 index 000000000..68a7bedf1 --- /dev/null +++ b/content/discover/feed-625051561a35dcd40a7aeae42f2cdde6.md @@ -0,0 +1,52 @@ +--- +title: Mirek Długosz personal website +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://mirekdlugosz.com/blog/feeds/rss.xml + feedtype: rss + feedid: 625051561a35dcd40a7aeae42f2cdde6 + websites: + https://mirekdlugosz.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - AST + - Blog + - planet AST + - planet MoT + relme: + https://fosstodon.org/@mirekdlugosz: true + https://github.com/mirekdlugosz: true + https://mirekdlugosz.com/: true + last_post_title: AST Board of Directors elections are on! + last_post_description: |- + The Association for Software Testing yearly election process has started. We are looking for three people to join the Board. + Official announcement on AST site has all the details, including dates + last_post_date: "2024-07-08T21:38:06+02:00" + last_post_link: https://mirekdlugosz.com/blog/2024/ast-board-of-directors-elections-are-on/ + last_post_categories: + - AST + - Blog + - planet AST + - planet MoT + last_post_language: "" + last_post_guid: af0af64866c312ec8517cc143eea597b + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6254d38e2c67a533154d660bcd8931d9.md b/content/discover/feed-6254d38e2c67a533154d660bcd8931d9.md index e66f287d2..fbf8c5a5c 100644 --- a/content/discover/feed-6254d38e2c67a533154d660bcd8931d9.md +++ b/content/discover/feed-6254d38e2c67a533154d660bcd8931d9.md @@ -14,28 +14,36 @@ params: - http://scripting.com/rss.xml - http://scripting.com/rssNightly.xml categories: - - Tech + - Journalism + - Politics relme: + https://dangillmor.com/: true https://mastodon.social/@dangillmor: true - last_post_title: Come on, Ubuntu, please add a mono output audio setting - last_post_description: If you have a Mac or Windows computer, and for one reason - or another want to set your audio for mono playback, it couldn’t be simpler. Both - of those operating systems have simple toggles, as shown - last_post_date: "2024-05-21T23:46:45Z" - last_post_link: https://dangillmor.com/2024/05/21/come-on-ubuntu-please-add-a-mono-output-audio-setting/ + last_post_title: NY Times, how about obsessing on the dictatorship on our horizon? + last_post_description: The screenshot above is today’s installment in the New York + Times’ all-hands-on-deck campaign to get Biden to withdraw. I want to emphasize + — again — that I do not object to news + last_post_date: "2024-07-06T07:43:26Z" + last_post_link: https://dangillmor.com/2024/07/06/ny-times-how-about-obsessing-on-the-dictatorship-on-our-horizon/ last_post_categories: - - Tech - last_post_guid: 6d85aecf559eccc59e167682df8a720f + - Journalism + - Politics + last_post_language: "" + last_post_guid: 724238dd772d215704a10af84e15844f score_criteria: cats: 0 description: 3 - postcats: 1 + feedlangs: 1 + postcats: 2 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 16 + score: 21 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-6258554bb7ee3fd6c2142e14593103c4.md b/content/discover/feed-6258554bb7ee3fd6c2142e14593103c4.md deleted file mode 100644 index 9a96a9714..000000000 --- a/content/discover/feed-6258554bb7ee3fd6c2142e14593103c4.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Security Bulletins on Tailscale -date: "1970-01-01T00:00:00Z" -description: Recent security bulletins from Tailscale -params: - feedlink: https://tailscale.com/security-bulletins/index.xml - feedtype: rss - feedid: 6258554bb7ee3fd6c2142e14593103c4 - websites: - https://tailscale.com/: false - https://tailscale.com/blog/: false - https://tailscale.com/changelog/: false - https://tailscale.com/security-bulletins/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://hachyderm.io/@tailscale: false - last_post_title: TS-2024-006 - last_post_description: |- - Description: Tailnet SSO provider migration impacting invited users - What happened? - When tailnets are created, they are associated with an SSO - provider such as Google or Microsoft, requiring all - last_post_date: "2024-05-22T00:00:00Z" - last_post_link: https://tailscale.com/security-bulletins/#ts-2024-006 - last_post_categories: [] - last_post_guid: f2f8fe8839958d1b624c5c09f4f16674 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6262837232c2739e480def0b58a5b11a.md b/content/discover/feed-6262837232c2739e480def0b58a5b11a.md new file mode 100644 index 000000000..3728d7f9c --- /dev/null +++ b/content/discover/feed-6262837232c2739e480def0b58a5b11a.md @@ -0,0 +1,139 @@ +--- +title: Ddosing and Impact +date: "2024-03-13T23:15:55-07:00" +description: Knowing about Ddosing. Much more at one place. +params: + feedlink: https://frontinformation.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 6262837232c2739e480def0b58a5b11a + websites: + https://frontinformation.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ddosing is beautyful + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Ddos is Awesome + last_post_description: "" + last_post_date: "2021-04-16T09:20:37-07:00" + last_post_link: https://frontinformation.blogspot.com/2021/04/ddos-is-awesome.html + last_post_categories: + - ddosing is beautyful + last_post_language: "" + last_post_guid: f46fb9a908856de2b505f0d27b7bd2ba + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-626d62944021f6ea85206d223008e1ea.md b/content/discover/feed-626d62944021f6ea85206d223008e1ea.md new file mode 100644 index 000000000..6de453782 --- /dev/null +++ b/content/discover/feed-626d62944021f6ea85206d223008e1ea.md @@ -0,0 +1,42 @@ +--- +title: Emacs on but she's a girl... +date: "1970-01-01T00:00:00Z" +description: Recent content in Emacs on but she's a girl... +params: + feedlink: https://www.rousette.org.uk/tags/emacs/index.xml + feedtype: rss + feedid: 626d62944021f6ea85206d223008e1ea + websites: + https://www.rousette.org.uk/tags/emacs/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://www.rousette.org.uk/tags/emacs/: true + last_post_title: On the 'Emacs From Scratch' cycle + last_post_description: I think that using Emacs is a type of life-long project. + It is deep, famously all-encompassing, and there are uncountable interesting rabbit + holes to go down and endless tweaking which can be done. + last_post_date: "2024-06-09T16:55:35+01:00" + last_post_link: https://www.rousette.org.uk/archives/on-the-emacs-from-scratch-cycle/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 85056ba8b327819b02b9f2913b88e77d + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-628f6ecfc812a30a38a1b86e4833e7de.md b/content/discover/feed-628f6ecfc812a30a38a1b86e4833e7de.md deleted file mode 100644 index c22bffd61..000000000 --- a/content/discover/feed-628f6ecfc812a30a38a1b86e4833e7de.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Stardew Valley -date: "1970-01-01T00:00:00Z" -description: Stardew Valley -params: - feedlink: https://www.stardewvalley.net/feed/ - feedtype: rss - feedid: 628f6ecfc812a30a38a1b86e4833e7de - websites: - https://www.stardewvalley.net/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Uncategorized - relme: {} - last_post_title: The Stardew Valley Cookbook is now available! - last_post_description: |- - The Stardew Valley Cookbook is now available, wherever books are sold! - Featuring over 50 recipes from Stardew Valley, with photos, … - last_post_date: "2024-05-14T19:03:38Z" - last_post_link: https://www.stardewvalley.net/the-stardew-valley-cookbook-is-now-available/ - last_post_categories: - - Uncategorized - last_post_guid: 72d5b716ccb21e038b891c6bdafca514 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-62a61ddc4642da5b962cb3b6c45b9e42.md b/content/discover/feed-62a61ddc4642da5b962cb3b6c45b9e42.md new file mode 100644 index 000000000..423c07ed7 --- /dev/null +++ b/content/discover/feed-62a61ddc4642da5b962cb3b6c45b9e42.md @@ -0,0 +1,48 @@ +--- +title: Tim F. Brüggemann activity +date: "2024-07-06T15:52:14Z" +description: "" +params: + feedlink: https://gitlab.gnome.org/TibiIius.atom + feedtype: atom + feedid: 62a61ddc4642da5b962cb3b6c45b9e42 + websites: + https://gitlab.gnome.org/TibiIius: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://blog.timfb.dev/: true + https://github.com/TibiIius: true + https://gitlab.gnome.org/TibiIius: true + last_post_title: Tim F. Brüggemann deleted project branch fix-devcontainer at Tim + F. Brüggemann / FlatSync + last_post_description: |- + Tim F. Brüggemann + (c9866992) + + at + 06 Jul 15:52 + last_post_date: "2024-07-06T15:52:14Z" + last_post_link: https://gitlab.gnome.org/TibiIius/flatsync/-/commits/fix-devcontainer + last_post_categories: [] + last_post_language: "" + last_post_guid: 60c976a45aeb1fa28d243d6419fa6614 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-62bab5bdb44aa7b672cbc7e558d8f709.md b/content/discover/feed-62bab5bdb44aa7b672cbc7e558d8f709.md new file mode 100644 index 000000000..f4e86c6ad --- /dev/null +++ b/content/discover/feed-62bab5bdb44aa7b672cbc7e558d8f709.md @@ -0,0 +1,53 @@ +--- +title: Programming Barn +date: "2024-03-04T21:12:23-08:00" +description: Collection of notes on common problems and issues I faced while doing + day to day programming +params: + feedlink: https://akravets.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 62bab5bdb44aa7b672cbc7e558d8f709 + websites: + https://akravets.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - buckminster + - build + - builder + - ebook + - eclipse + - elcipse + - gmf + - html + - java + - ubuntu + - video + relme: + https://akravets.blogspot.com/: true + https://www.blogger.com/profile/10065832357793401789: true + last_post_title: Extracting icons from Eclipse directory + last_post_description: "" + last_post_date: "2015-08-10T08:07:07-07:00" + last_post_link: https://akravets.blogspot.com/2015/08/extracting-icons-from-eclipse-directory.html + last_post_categories: [] + last_post_language: "" + last_post_guid: b467233ee9fadffac61f790fbe884efe + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-62bc9dce28060cd74a4e7c648e84c66c.md b/content/discover/feed-62bc9dce28060cd74a4e7c648e84c66c.md new file mode 100644 index 000000000..0527dad86 --- /dev/null +++ b/content/discover/feed-62bc9dce28060cd74a4e7c648e84c66c.md @@ -0,0 +1,49 @@ +--- +title: The Call of the Wild +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://call-of-the-wild.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 62bc9dce28060cd74a4e7c648e84c66c + websites: + https://call-of-the-wild.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - canoeing + - geospatial + - whitewater + relme: + https://call-of-the-wild.blogspot.com/: true + https://lin-ear-th-inking.blogspot.com/: true + https://www.blogger.com/profile/02383381220154739793: true + last_post_title: Advice on buying a used whitewater canoe + last_post_description: "As to price... thats depends. More important than price + is condition.\n\n\n\nFlip it upside down and push on the side chines with your + weight, \ncalculating flex of hull. (Practice this first on a boat in" + last_post_date: "2012-01-14T03:40:00Z" + last_post_link: https://call-of-the-wild.blogspot.com/2012/01/advice-on-buying-used-whitewater-canoe.html + last_post_categories: + - canoeing + - whitewater + last_post_language: "" + last_post_guid: b681247d30a834d6371aec6160e44c48 + score_criteria: + cats: 3 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-62dbf2c3f68627d95838ee6e5a698b29.md b/content/discover/feed-62dbf2c3f68627d95838ee6e5a698b29.md deleted file mode 100644 index a25903a83..000000000 --- a/content/discover/feed-62dbf2c3f68627d95838ee6e5a698b29.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Thomas Michael Semmler -date: "1970-01-01T00:00:00Z" -description: Public posts from @nachtfunke@indieweb.social -params: - feedlink: https://indieweb.social/@nachtfunke.rss - feedtype: rss - feedid: 62dbf2c3f68627d95838ee6e5a698b29 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-62e3621de977744b0f3e933e492e2a5b.md b/content/discover/feed-62e3621de977744b0f3e933e492e2a5b.md deleted file mode 100644 index a5b50117f..000000000 --- a/content/discover/feed-62e3621de977744b0f3e933e492e2a5b.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: I'm just sayin -date: "1970-01-01T00:00:00Z" -description: Random thoughts, opinions and the occasional "how-to" -params: - feedlink: https://griffithscorner.wordpress.com/feed/ - feedtype: rss - feedid: 62e3621de977744b0f3e933e492e2a5b - websites: - https://griffithscorner.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Uncategorized - relme: {} - last_post_title: I’m moving to github.io and Jekyll - last_post_description: I’ve had j-griffith.github.io for a while and played with - Jekyll a bit.  I decided I wasn’t doing myself any favors having things posted - in multiple places, so it was time to consolidate. I’m - last_post_date: "2016-09-20T03:10:46Z" - last_post_link: https://griffithscorner.wordpress.com/2016/09/20/im-moving-to-github-io-and-jekyll/ - last_post_categories: - - Uncategorized - last_post_guid: ec73e304d7fbe4137050a1fc0da5d5a1 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-62f02048a89653855360f407327d7049.md b/content/discover/feed-62f02048a89653855360f407327d7049.md new file mode 100644 index 000000000..5afb448bb --- /dev/null +++ b/content/discover/feed-62f02048a89653855360f407327d7049.md @@ -0,0 +1,137 @@ +--- +title: Twin numbers of angels +date: "2024-02-08T06:09:04-08:00" +description: Keep visiting to my blogspot and get all information about angels number. +params: + feedlink: https://bisnislogerr.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 62f02048a89653855360f407327d7049 + websites: + https://bisnislogerr.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Your 888 Angel Number in Relationships + last_post_description: "" + last_post_date: "2022-01-23T03:10:16-08:00" + last_post_link: https://bisnislogerr.blogspot.com/2022/01/your-888-angel-number-in-relationships.html + last_post_categories: [] + last_post_language: "" + last_post_guid: d053ade2a2053611abeff49d3f4408a5 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-62f6ee6538ba222d83ab982678591b77.md b/content/discover/feed-62f6ee6538ba222d83ab982678591b77.md new file mode 100644 index 000000000..d35cbb697 --- /dev/null +++ b/content/discover/feed-62f6ee6538ba222d83ab982678591b77.md @@ -0,0 +1,128 @@ +--- +title: Yet Another Traveller Blog +date: "2024-07-01T03:42:14-07:00" +description: Traveller RPG blog (duh). Focusing primarily on Classic Traveller +params: + feedlink: https://travellerrpgblog.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 62f6ee6538ba222d83ab982678591b77 + websites: + https://travellerrpgblog.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - A-Z Blog Challenge + - Contact! + - Courier + - K'kree + - NPC + - System Defense Boat + - Traveller + - Vargr + - Zhodani + - adventure hook + - air/raft + - airlock + - alien + - ancients + - animal encounter + - anti-grav + - armory + - artifact + - bestiary + - bridge + - brig + - card game + - cargo + - combat + - common area + - conlang + - corridor + - crew lounge + - cryogenics + - deck plan + - design + - docking bay + - downloads + - drop pod + - dropship + - electronics bench + - encounter + - engineering + - equipment + - escape pod + - fighter + - fresher + - galley + - gaming aid + - garage + - geomorph + - hangar + - humor + - hydroponics + - illustration + - interdiction + - iris valve + - lab + - landing bay + - launch + - low berth + - medical + - merchant + - miniatures + - piracy + - prison + - referee emulator + - repair bay + - robot + - ship's locker + - solo gaming + - space station + - star system + - starport + - starship + - stateroom + - steerage + - technology + - trader + - turret + - undersea + - urban + - weapon + - xboat + - yacht + relme: + https://travellerrpgblog.blogspot.com/: true + last_post_title: Happy May Day! - New geomorph sampler pack + last_post_description: "" + last_post_date: "2024-05-08T02:40:12-07:00" + last_post_link: https://travellerrpgblog.blogspot.com/2024/05/happy-may-day-new-geomorph-sampler-pack.html + last_post_categories: + - Traveller + - deck plan + - downloads + - gaming aid + - geomorph + last_post_language: "" + last_post_guid: 3b0e7c668cc4b4a4d369244a1899fdfc + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 26 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-62f7172ac00e31e4b5fd8329ed3e8180.md b/content/discover/feed-62f7172ac00e31e4b5fd8329ed3e8180.md deleted file mode 100644 index fe0239f17..000000000 --- a/content/discover/feed-62f7172ac00e31e4b5fd8329ed3e8180.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Jon Worth Euroblog -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://euroblog.jonworth.eu/feed/ - feedtype: rss - feedid: 62f7172ac00e31e4b5fd8329ed3e8180 - websites: - https://euroblog.jonworth.eu/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Technology - relme: - https://gruene.social/@jon: true - last_post_title: Where do we do digital EU politics now? - last_post_description: When Donald Tusk, then President of the European Council, - wanted to send a public message to set the tone of the Brexit negotiations in - 2018 – he took to Twitter, and quoted Freddie Mercury. It was - last_post_date: "2024-02-16T16:57:31Z" - last_post_link: https://euroblog.jonworth.eu/where-do-we-do-digital-eu-politics-now/ - last_post_categories: - - Technology - last_post_guid: fa3fe77c29aa178d84a940a4a298d1df - score_criteria: - cats: 0 - description: 0 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-62f8899abc176d7fd4964d23fa79f5fa.md b/content/discover/feed-62f8899abc176d7fd4964d23fa79f5fa.md deleted file mode 100644 index 7553186b1..000000000 --- a/content/discover/feed-62f8899abc176d7fd4964d23fa79f5fa.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: 'Comments on: Boffo Socko' -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://chrisaldrich.wordpress.com/boffo-socko/feed/ - feedtype: rss - feedid: 62f8899abc176d7fd4964d23fa79f5fa - websites: - https://chrisaldrich.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6303b18a5a4f0ad6ce4fbbad3da25c53.md b/content/discover/feed-6303b18a5a4f0ad6ce4fbbad3da25c53.md index a6bf30277..f5834eedc 100644 --- a/content/discover/feed-6303b18a5a4f0ad6ce4fbbad3da25c53.md +++ b/content/discover/feed-6303b18a5a4f0ad6ce4fbbad3da25c53.md @@ -16,6 +16,7 @@ params: - https://analogoffice.net/feed.xml - https://arcadeblogger.com/feed/ - https://blogs.harvard.edu/doc/feed/ + - https://boffosocko.com/feed/ - https://brainbaking.com/index.xml - https://colinwalker.blog/livefeed.xml - https://craigmod.com/index.xml @@ -63,12 +64,37 @@ params: - https://arcadeblogger.com/comments/feed/ - https://austinkleon.com/comments/feed/ - https://austinkleon.com/feed/ - - https://doc.searls.com/comments/feed/ - - https://doc.searls.com/feed/ + - https://boffosocko.com/category/mathematics/feed/ + - https://boffosocko.com/category/microcast/feed/ + - https://boffosocko.com/category/podcast/feed/ + - https://boffosocko.com/category/science/information-theory/feed/ + - https://boffosocko.com/comments/feed/ + - https://boffosocko.com/home/feed/ + - https://boffosocko.com/instagram.xml + - https://boffosocko.com/kind/annotation/feed/ + - https://boffosocko.com/kind/article/feed/ + - https://boffosocko.com/kind/bookmark/feed/ + - https://boffosocko.com/kind/checkin/feed/ + - https://boffosocko.com/kind/eat,drink/feed/ + - https://boffosocko.com/kind/favorite/feed/ + - https://boffosocko.com/kind/follow/feed/ + - https://boffosocko.com/kind/issue/feed/ + - https://boffosocko.com/kind/jam/feed/ + - https://boffosocko.com/kind/like/feed/ + - https://boffosocko.com/kind/listen/feed/ + - https://boffosocko.com/kind/note/feed/ + - https://boffosocko.com/kind/photo/feed/ + - https://boffosocko.com/kind/reply/feed/ + - https://boffosocko.com/kind/repost/feed/ + - https://boffosocko.com/kind/rsvp/feed/ + - https://boffosocko.com/kind/watch/feed/ + - https://boffosocko.com/kind/wish/feed/ + - https://boffosocko.com/linkblog.xml + - https://boffosocko.com/microblog.xml + - https://boffosocko.com/read.xml - https://granary-demo.appspot.com/url?hub=https%3A//bridgy-fed.superfeedr.com/&input=html&output=atom&url=http%3A//www.boffosocko.com/blog/ - https://stream.boffosocko.com/content/all?_t=rss - https://colinwalker.blog/dailyfeed.xml - - https://dougbelshaw.com/blog/comments/feed/ - https://idealistpropaganda.blogspot.com/feeds/posts/default?alt=rss - https://indieweb.org/wiki/index.php?feed=atom&title=Special%3ARecentChanges - https://infullflow.net/comments/feed/ @@ -82,14 +108,13 @@ params: - https://localghost.dev/podcasts.xml - https://localghost.dev/recipes.xml - https://longnow.org/ideas/ - - https://ochtendgrijs.be/comments/feed/ - - https://remkusdevries.com/feed/ - - https://remkusdevries.com/feed/podcast + - https://rkvssr.nl/comments/feed/ - https://robinrendle.com/cascadefeed.xml - https://robinrendle.com/essayfeed.xml - https://robinrendle.com/newsletterfeed.xml - https://ruk.ca/comments/rss - https://ruk.ca/rss/podcast.xml + - https://thehistoryoftheweb.com/comments/feed/ - https://tomcritchlow.com/feed.xml - https://tracydurnell.com/comments/feed/ - https://granary.io/url?hub=https%3A//bridgy-fed.superfeedr.com/&input=html&output=atom&url=https%3A//werd.io/content/all/ @@ -100,7 +125,6 @@ params: - https://www.neondystopia.com/?feed=comments-rss2 - https://www.neondystopia.com/?feed=rss2 - https://www.pelicancrossing.net/netwars/index.xml - - https://www.zylstra.org/blog/comments/feed/ - https://zijperspace.nl/comments/feed/ recommender: - https://colinwalker.blog/dailyfeed.xml @@ -109,26 +133,33 @@ params: - https://jeroensangers.com/podcast.xml categories: [] relme: + https://frankmeeuwsen.com/: true + https://indieweb.org/User:Diggingthedigital.com: true https://indieweb.social/@frank: true - https://micro.blog/frank: false - last_post_title: Digitale Autonomie, een gesprek met Kirsten Jassies - last_post_description: Afgelopen maandag was ik te gast in de fantastische werfkelder/studio - van Kirsten Jassies. Zij heeft een Podcast over Social Media en ik mocht een uurtje - komen praten over wat mij fascineert in de - last_post_date: "2024-05-29T21:55:33+02:00" - last_post_link: https://frankmeeuwsen.com/2024/05/29/digitale-autonomie-een.html + last_post_title: Highlighting authors on Mastodon + last_post_description: |- + Mastodon added a nice feature for journalists and bloggers: when you share a link to an article or blogpost, it adds a direct link to the author’s fediverse profile as well. + + For now this only + last_post_date: "2024-07-03T08:17:49+02:00" + last_post_link: https://frankmeeuwsen.com/2024/07/03/highlighting-authors-on.html last_post_categories: [] - last_post_guid: 55553feca15c3eb8e7e53032d626173a + last_post_language: "" + last_post_guid: 653b15d7985e56f40f2b8a0dc98df9d2 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 10 relme: 2 title: 3 website: 2 - score: 22 + score: 26 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-631a65bb590127704a489567ea5bdfed.md b/content/discover/feed-631a65bb590127704a489567ea5bdfed.md new file mode 100644 index 000000000..20f24488b --- /dev/null +++ b/content/discover/feed-631a65bb590127704a489567ea5bdfed.md @@ -0,0 +1,42 @@ +--- +title: Summers on Haskell and {Eclipse,Emacs} +date: "2024-03-12T18:17:47-07:00" +description: "" +params: + feedlink: https://serras-haskell-gsoc.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 631a65bb590127704a489567ea5bdfed + websites: + https://serras-haskell-gsoc.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://serras-haskell-gsoc.blogspot.com/: true + https://www.blogger.com/profile/07270771729166536980: true + https://youngracketeer.blogspot.com/: true + last_post_title: Using Emacs for Haskell development + last_post_description: "" + last_post_date: "2014-08-24T03:48:21-07:00" + last_post_link: https://serras-haskell-gsoc.blogspot.com/2014/08/using-emacs-for-haskell-development.html + last_post_categories: [] + last_post_language: "" + last_post_guid: dd0c4ad16596724096a6cc4aacf7a47c + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-632ca13bba9a57a916f4eabf3f4c5a2f.md b/content/discover/feed-632ca13bba9a57a916f4eabf3f4c5a2f.md deleted file mode 100644 index 402f9eda7..000000000 --- a/content/discover/feed-632ca13bba9a57a916f4eabf3f4c5a2f.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Jack Baty -date: "1970-01-01T00:00:00Z" -description: Public posts from @jbaty@social.lol -params: - feedlink: https://social.lol/@jbaty.rss - feedtype: rss - feedid: 632ca13bba9a57a916f4eabf3f4c5a2f - websites: - https://social.lol/@jbaty: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://baty.blog/: true - https://baty.net/: false - https://daily.baty.net/: true - https://wiki.baty.net/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-633cbc7f56ceae2f24073ef654071d27.md b/content/discover/feed-633cbc7f56ceae2f24073ef654071d27.md deleted file mode 100644 index b69aa752f..000000000 --- a/content/discover/feed-633cbc7f56ceae2f24073ef654071d27.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Comments for Curtin University -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://www.curtin.edu.au/comments/feed/ - feedtype: rss - feedid: 633cbc7f56ceae2f24073ef654071d27 - websites: - https://www.curtin.edu.au/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-634a6c23faa87eef185fdc49bb09f2e6.md b/content/discover/feed-634a6c23faa87eef185fdc49bb09f2e6.md new file mode 100644 index 000000000..0419cbaff --- /dev/null +++ b/content/discover/feed-634a6c23faa87eef185fdc49bb09f2e6.md @@ -0,0 +1,126 @@ +--- +title: /dev/loki +date: "2024-07-08T08:07:13+02:00" +description: openSUSE, Linux, RPM/packaging, development (Java, C++, PHP, ..) or whatever +params: + feedlink: https://feeds.feedburner.com/dev-loki + feedtype: atom + feedid: 634a6c23faa87eef185fdc49bb09f2e6 + websites: + https://dev-loki.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - EU + - FOSS + - NX + - amarok + - attachmate + - bash + - blender + - board + - collectd + - community + - conference + - deluge + - democracyplayer + - design + - eclipse + - ecology + - ecosia + - elections + - enigmail + - fonts + - fosdem + - freshmeat.net + - froscon + - gaim + - gnome + - groklaw + - hermes + - howto + - irc + - irssi + - java + - jetty + - kde + - life + - linux + - lxde + - meeting + - miro + - mono + - mplayer + - mysql + - novell + - openjdk + - opensource + - opensuse + - opensuse build service + - opensuse conference + - opensuse-community + - oracle + - osc + - packaging + - packman + - perl + - personal + - petition + - php + - pidgin + - planetsuse + - planning + - politics + - postgresql + - python + - rpm + - rtorrent + - screen + - search + - security + - sed + - smart + - smplayer + - softwareportal + - solr + - sudo + - swpats + - sysstat + - thomas + - thunderbird + - twitter + - vnc + - vnstat + - webpin + - wicket + - workshop + - wwf + - zypper + relme: + https://dev-loki.blogspot.com/: true + https://www.blogger.com/profile/15179032995691105618: true + last_post_title: Speaking of Packman mirrors... + last_post_description: "" + last_post_date: "2012-05-06T02:59:44+02:00" + last_post_link: http://dev-loki.blogspot.com/2012/05/speaking-of-packman-mirrors.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 4c38bfa554eb66bb0cad36a11055bd6f + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-635ed74df3767429a7a32810801bb39b.md b/content/discover/feed-635ed74df3767429a7a32810801bb39b.md new file mode 100644 index 000000000..244560f6e --- /dev/null +++ b/content/discover/feed-635ed74df3767429a7a32810801bb39b.md @@ -0,0 +1,137 @@ +--- +title: Mani Area Code +date: "2024-03-13T08:23:57-07:00" +description: Thanks to come here.Keep visiting to this page. +params: + feedlink: https://taisaomuacanhovincity.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 635ed74df3767429a7a32810801bb39b + websites: + https://taisaomuacanhovincity.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Town Area Code + last_post_description: "" + last_post_date: "2022-01-09T03:48:29-08:00" + last_post_link: https://taisaomuacanhovincity.blogspot.com/2022/01/town-area-code.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 8277a68681b2975998ac9fb624fc8177 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-636483a72a6c3e853199f8e523ad0398.md b/content/discover/feed-636483a72a6c3e853199f8e523ad0398.md new file mode 100644 index 000000000..9551d4936 --- /dev/null +++ b/content/discover/feed-636483a72a6c3e853199f8e523ad0398.md @@ -0,0 +1,50 @@ +--- +title: metablogging – Interdependent Thoughts +date: "1970-01-01T00:00:00Z" +description: by Ton Zijlstra +params: + feedlink: https://www.zylstra.org/blog/category/metablogging/feed/ + feedtype: rss + feedid: 636483a72a6c3e853199f8e523ad0398 + websites: {} + blogrolls: [] + recommended: [] + recommender: + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php + categories: + - Day to Day + - IndieWeb + - metablogging + - postkinds + relme: {} + last_post_title: Disabled PostKinds Plugin + last_post_description: I disabled the PostKinds WordPress plugin, created by David + Shanske. I stopped using it 3 years ago for new postings but disabling it then + would have broken many older postings. What makes the plugin + last_post_date: "2024-07-07T08:02:17Z" + last_post_link: https://www.zylstra.org/blog/2024/07/disabled-postkinds-plugin/ + last_post_categories: + - Day to Day + - IndieWeb + - metablogging + - postkinds + last_post_language: "" + last_post_guid: ac63f6ed439e2cad73b8d5362e05d066 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 0 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-636885c5600d6ac72bc209e7bf4060c8.md b/content/discover/feed-636885c5600d6ac72bc209e7bf4060c8.md deleted file mode 100644 index 6657e65d3..000000000 --- a/content/discover/feed-636885c5600d6ac72bc209e7bf4060c8.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Chris Aldrich -date: "1970-01-01T00:00:00Z" -description: Public posts from @chrisaldrich@hcommons.social -params: - feedlink: https://hcommons.social/@chrisaldrich.rss - feedtype: rss - feedid: 636885c5600d6ac72bc209e7bf4060c8 - websites: - https://hcommons.social/@chrisaldrich: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://boffosocko.com/: true - https://boffosocko.com/about/social-media-accounts-and-links/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6376712951b1d834ef338bc58bedbfaa.md b/content/discover/feed-6376712951b1d834ef338bc58bedbfaa.md new file mode 100644 index 000000000..77eec2fe5 --- /dev/null +++ b/content/discover/feed-6376712951b1d834ef338bc58bedbfaa.md @@ -0,0 +1,50 @@ +--- +title: Die kleine Computer Fibel +date: "2024-03-13T10:13:40-07:00" +description: "" +params: + feedlink: https://computerfibel.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 6376712951b1d834ef338bc58bedbfaa + websites: + https://computerfibel.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Backup + - Daten + - Datensicherung + - Sicherung + relme: + https://computerfibel.blogspot.com/: true + https://unicase.blogspot.com/: true + https://www.blogger.com/profile/18196528196170889175: true + last_post_title: 'Bitte: Backup! Teil 2' + last_post_description: "" + last_post_date: "2010-10-29T03:15:42-07:00" + last_post_link: https://computerfibel.blogspot.com/2010/10/bitte-backup-teil-2.html + last_post_categories: + - Backup + - Daten + - Datensicherung + - Sicherung + last_post_language: "" + last_post_guid: 3cf18051aa410430d97d23bf62dd6b05 + score_criteria: + cats: 4 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-637f9682cc33710cf82ea441cc9e6094.md b/content/discover/feed-637f9682cc33710cf82ea441cc9e6094.md new file mode 100644 index 000000000..427ba6d1f --- /dev/null +++ b/content/discover/feed-637f9682cc33710cf82ea441cc9e6094.md @@ -0,0 +1,72 @@ +--- +title: more indirection +date: "2024-02-07T16:57:26-05:00" +description: A blog on Scala, Swift and FP +params: + feedlink: https://moreindirection.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 637f9682cc33710cf82ea441cc9e6094 + websites: + https://moreindirection.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - anorm + - anorm-typed + - appcode + - apple + - cocoa + - combinators + - database + - dependencies + - functional-programming + - haskell + - haskell typing + - higher order functions + - i/o + - ide + - idea + - lift + - nodejs + - parallelism + - patterns + - play2 + - recursion + - sbt + - sbt-0.10 + - scala + - sql + - swift + - testing + - type-safety + relme: + https://moreindirection.blogspot.com/: true + https://www.blogger.com/profile/09749479501125035513: true + last_post_title: Working on the Swift compiler with Jetbrains AppCode + last_post_description: "" + last_post_date: "2015-12-24T08:17:01-05:00" + last_post_link: https://moreindirection.blogspot.com/2015/12/working-on-swift-compiler-with.html + last_post_categories: + - appcode + - ide + - swift + last_post_language: "" + last_post_guid: fc8ae26cdd1faee6ac037b5d7dce5d09 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-639cda04aeb971861143e24226bcace9.md b/content/discover/feed-639cda04aeb971861143e24226bcace9.md deleted file mode 100644 index 27021281e..000000000 --- a/content/discover/feed-639cda04aeb971861143e24226bcace9.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Comments for dronopenstack -date: "1970-01-01T00:00:00Z" -description: openstack project -params: - feedlink: https://dronopenstack.wordpress.com/comments/feed/ - feedtype: rss - feedid: 639cda04aeb971861143e24226bcace9 - websites: - https://dronopenstack.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on the place of a non-developer in the openstack community - by Liz Blanchard - last_post_description: |- - Hi Dafna, - - Thanks for posting this, I really enjoyed reading your thoughts and feel compelled to respond with my experience and ideas. - - As Kashyap mentioned, one role you might be able to play a big - last_post_date: "2014-07-14T20:37:26Z" - last_post_link: https://dronopenstack.wordpress.com/2014/07/10/the-place-of-a-non-developer-in-the-openstack-community/comment-page-1/#comment-7 - last_post_categories: [] - last_post_guid: edcdc98c54881a9e5e97dc185a5f80ae - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-63ca605b4b0b298d74d9da77aca8af23.md b/content/discover/feed-63ca605b4b0b298d74d9da77aca8af23.md deleted file mode 100644 index 0b8f57d66..000000000 --- a/content/discover/feed-63ca605b4b0b298d74d9da77aca8af23.md +++ /dev/null @@ -1,49 +0,0 @@ ---- -title: Geoff Graham -date: "1970-01-01T00:00:00Z" -description: I design. I develop. I do lots of things in between. -params: - feedlink: https://geoffgraham.me/feed - feedtype: rss - feedid: 63ca605b4b0b298d74d9da77aca8af23 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - - https://danq.me/comments/feed/ - - https://danq.me/feed/ - - https://danq.me/kind/article/feed/ - - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ - categories: - - Notes - - Anchor Positioning - - CSS - relme: {} - last_post_title: CSS Anchor Positioning in Practice – Winging It Live - last_post_description: Miriam Suzanne and James Stuckey Weber sat down to talk CSS - Anchor Positioning, one of those things I’m certainly aware of by nature of what - I do for a living but have not bothered to dedicate time - last_post_date: "2024-05-31T17:50:50Z" - last_post_link: https://geoffgraham.me/css-anchor-positioning-in-practice-winging-it-live/ - last_post_categories: - - Notes - - Anchor Positioning - - CSS - last_post_guid: d47449ef6d45548a9f6f13149dbd2ae1 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 14 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-63e18655eb95505487c7ca5b135c7039.md b/content/discover/feed-63e18655eb95505487c7ca5b135c7039.md new file mode 100644 index 000000000..866f9d486 --- /dev/null +++ b/content/discover/feed-63e18655eb95505487c7ca5b135c7039.md @@ -0,0 +1,54 @@ +--- +title: Spatialised +date: "1970-01-01T00:00:00Z" +description: Geospatial strategy, research, design and consulting +params: + feedlink: https://www.spatialised.net/feed/ + feedtype: rss + feedid: 63e18655eb95505487c7ca5b135c7039 + websites: + https://www.spatialised.net/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Arctic + - Cartography + - Research + - Sea ice + - open data + - visualisation + relme: + https://www.spatialised.net/: true + last_post_title: 'Cartography as code: Cartopy' + last_post_description: This story calls back a long way to my mapping roots. I started + out making scientific maps using the venerable Generic Mapping Tools (GMT) to + plot bathymetry, ship tracks, sampling stations. Almost + last_post_date: "2024-06-28T10:24:54Z" + last_post_link: https://www.spatialised.net/cartography-as-code-cartopy/ + last_post_categories: + - Arctic + - Cartography + - Research + - Sea ice + - open data + - visualisation + last_post_language: "" + last_post_guid: 1437d68c2b51bc731a8e8cf780b2f34e + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-63fd8ed6e0184997cc880dfaaac084d6.md b/content/discover/feed-63fd8ed6e0184997cc880dfaaac084d6.md deleted file mode 100644 index f7a3d292a..000000000 --- a/content/discover/feed-63fd8ed6e0184997cc880dfaaac084d6.md +++ /dev/null @@ -1,53 +0,0 @@ ---- -title: What's new -date: "1970-01-01T00:00:00Z" -description: Updates on my research and expository papers, discussion of open problems, - and other maths-related topics. By Terence Tao -params: - feedlink: https://terrytao.wordpress.com/feed/ - feedtype: rss - feedid: 63fd8ed6e0184997cc880dfaaac084d6 - websites: - https://terrytao.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - expository - - math.CO - - Ben Green - - Freddie Manners - - Luca Trevisan - - Polynomial Freiman-Ruzsa conjecture - - Shannon entropy - - Timothy Gowers - relme: {} - last_post_title: An abridged proof of Marton’s conjecture - last_post_description: '[This post is dedicated to Luca Trevisan, who recently passed - away due to cancer. Though far from his most significant contribution to the field, - I would like to mention that, as with most of my' - last_post_date: "2024-06-23T02:05:34Z" - last_post_link: https://terrytao.wordpress.com/2024/06/22/an-abridged-proof-of-martons-conjecture/ - last_post_categories: - - expository - - math.CO - - Ben Green - - Freddie Manners - - Luca Trevisan - - Polynomial Freiman-Ruzsa conjecture - - Shannon entropy - - Timothy Gowers - last_post_guid: 86562531d9d2e66f47599e3205401762 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-63fe8a3a97520c73f864fe9ccf7000fb.md b/content/discover/feed-63fe8a3a97520c73f864fe9ccf7000fb.md new file mode 100644 index 000000000..731e9a00e --- /dev/null +++ b/content/discover/feed-63fe8a3a97520c73f864fe9ccf7000fb.md @@ -0,0 +1,42 @@ +--- +title: David Burgess' Own Blog +date: "2024-03-13T14:41:45-07:00" +description: "" +params: + feedlink: https://da-bur.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 63fe8a3a97520c73f864fe9ccf7000fb + websites: + https://da-bur.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://da-bur.blogspot.com/: true + https://openbts.blogspot.com/: true + https://www.blogger.com/profile/14372434100222472756: true + last_post_title: YateBTS 3.0 is Here! + last_post_description: "" + last_post_date: "2014-05-06T14:48:19-07:00" + last_post_link: https://da-bur.blogspot.com/2014/05/yatebts-30-is-here.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 8f93da5b3dca7402766cd77ca7cd4953 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-64060a7d894fd5c3d430752a94ff170a.md b/content/discover/feed-64060a7d894fd5c3d430752a94ff170a.md deleted file mode 100644 index be97b4ddb..000000000 --- a/content/discover/feed-64060a7d894fd5c3d430752a94ff170a.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: 'DEV Community: perl' -date: "1970-01-01T00:00:00Z" -description: The latest articles tagged 'perl' on DEV Community. -params: - feedlink: https://dev.to/feed/tag/perl - feedtype: rss - feedid: 64060a7d894fd5c3d430752a94ff170a - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - perl - - docker - - release - - opensource - relme: {} - last_post_title: Release 0.9.0 of Ebirah - last_post_description: |- - I finally got around to making a release 0.9.0 of Ebirah. (0.8.0 was released October 2022) - - The Ebirah repository has see multiple updates, primarily targetting the infrastructure and all handled by - last_post_date: "2024-06-26T13:47:00Z" - last_post_link: https://dev.to/jonasbn/release-090-of-ebirah-1mio - last_post_categories: - - perl - - docker - - release - - opensource - last_post_guid: af2d2aa46e8e1ddd69f87bdb80bf41a5 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-640aadda16c23181059840cb0517b716.md b/content/discover/feed-640aadda16c23181059840cb0517b716.md new file mode 100644 index 000000000..4967c70c6 --- /dev/null +++ b/content/discover/feed-640aadda16c23181059840cb0517b716.md @@ -0,0 +1,43 @@ +--- +title: Addio Fornelli +date: "2024-02-20T12:08:52-08:00" +description: "" +params: + feedlink: https://addiofornelli.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 640aadda16c23181059840cb0517b716 + websites: + https://addiofornelli.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://addiofornelli.blogspot.com/: true + https://phatmuzak.blogspot.com/: true + https://www.blogger.com/profile/09970688239263362080: true + https://zinosat.blogspot.com/: true + last_post_title: Risotto alla zucca + last_post_description: "" + last_post_date: "2009-02-07T11:04:14-08:00" + last_post_link: https://addiofornelli.blogspot.com/2009/02/risotto-alla-zucca.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 5b6c6defa8d9d95f6bd2d8be2aef294a + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-641408f9bb5683f1139ce717e2eec5f6.md b/content/discover/feed-641408f9bb5683f1139ce717e2eec5f6.md deleted file mode 100644 index 8b29ee9b0..000000000 --- a/content/discover/feed-641408f9bb5683f1139ce717e2eec5f6.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Le blog d'alter way -date: "2024-06-26T10:00:00+02:00" -description: "" -params: - feedlink: https://blog.alterway.fr/feeds/all.atom.xml - feedtype: atom - feedid: 641408f9bb5683f1139ce717e2eec5f6 - websites: - https://blog.alterway.fr/: true - https://blog.alterway.fr/en/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Kubernetes - relme: {} - last_post_title: ': Kubernetes : plateforme "star" de l''IT et levier d''innovation - des entreprises' - last_post_description: 'Analyse de l''article d'' ITRNEWS : Kubernetes : plateforme - "star" de l''IT et levier d''innovation des entreprises' - last_post_date: "2024-06-26T10:00:00+02:00" - last_post_link: https://blog.alterway.fr/kubernetes-plateforme-star-de-lit-et-levier-dinnovation-des-entreprises.html - last_post_categories: - - Kubernetes - last_post_guid: b541795fe8b2f933dbb3f001f38efd6d - score_criteria: - cats: 0 - description: 0 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6418a97657f4d03e3b5d14b3dfa49976.md b/content/discover/feed-6418a97657f4d03e3b5d14b3dfa49976.md deleted file mode 100644 index 9feaa0966..000000000 --- a/content/discover/feed-6418a97657f4d03e3b5d14b3dfa49976.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Radio Blogpocket -date: "1970-01-01T00:00:00Z" -description: Las últimas noticias sobre el mundo de los blogs, WordPress y el editor - de bloques también conocido como Gutenberg. -params: - feedlink: https://www.blogpocket.com/feed/podcast/radio-blogpocket - feedtype: rss - feedid: 6418a97657f4d03e3b5d14b3dfa49976 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Technology - relme: {} - last_post_title: 'HECHO CON BLOQUES #53: Escritura mágica de Canva; Merlin; Hoja - de ruta WordPress 6.6; y mucho más' - last_post_description: Este episodio de HECHO CON BLOQUES se mencionan herramientas - como la "escritura mágica" de Canva para corregir errores y una extensión de Chrome - llamada Merlin que responde automáticamente a - last_post_date: "2024-05-24T06:55:51Z" - last_post_link: https://www.blogpocket.com/podcast/hecho-con-bloques-53/ - last_post_categories: [] - last_post_guid: 327642d14c026a6bc41872119a022466 - score_criteria: - cats: 1 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 7 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-641992369c7be23dc2a7d8e956ad9120.md b/content/discover/feed-641992369c7be23dc2a7d8e956ad9120.md new file mode 100644 index 000000000..5f18c626c --- /dev/null +++ b/content/discover/feed-641992369c7be23dc2a7d8e956ad9120.md @@ -0,0 +1,55 @@ +--- +title: Hyperspacial Gaming Reality +date: "2024-03-13T12:32:12-05:00" +description: Random thoughts and opinions on Mac gaming +params: + feedlink: https://hyperspatialgamingreality.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 641992369c7be23dc2a7d8e956ad9120 + websites: + https://hyperspatialgamingreality.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Apple + - Civilization III + - Diablo III + - StarCraft 2 + - World of Warcraft + - blizzard + - cataclysm + - horde + - iPhone + - nerf + - raiding + - starcraft + relme: + https://cpp-muttering.blogspot.com/: true + https://hyperspatialgamingreality.blogspot.com/: true + https://www.blogger.com/profile/16367423341141776840: true + last_post_title: When Will Blizzard Learn (Part 1 - reprise) + last_post_description: "" + last_post_date: "2010-12-13T15:45:58-06:00" + last_post_link: https://hyperspatialgamingreality.blogspot.com/2010/12/when-will-blizzard-learn-part-1-reprise.html + last_post_categories: + - World of Warcraft + last_post_language: "" + last_post_guid: b3dd46c2c2c3325de5ee40b23bca5e64 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6420c0cac773e19c5c86f13bfa871f6f.md b/content/discover/feed-6420c0cac773e19c5c86f13bfa871f6f.md deleted file mode 100644 index 30a01785e..000000000 --- a/content/discover/feed-6420c0cac773e19c5c86f13bfa871f6f.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Keith J Grant -date: "1970-01-01T00:00:00Z" -description: Public posts from @keithjgrant@front-end.social -params: - feedlink: https://front-end.social/@keithjgrant.rss - feedtype: rss - feedid: 6420c0cac773e19c5c86f13bfa871f6f - websites: - https://front-end.social/@keithjgrant: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://keithjgrant.com/: true - https://notes.keithjgrant.com/: true - https://www.manning.com/books/css-in-depth-second-edition?a_aid=kjg&a_bid=a7bc24da&chan=mm_mastodon: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-642729130cd19b3175a3099e486e4989.md b/content/discover/feed-642729130cd19b3175a3099e486e4989.md new file mode 100644 index 000000000..98df2482f --- /dev/null +++ b/content/discover/feed-642729130cd19b3175a3099e486e4989.md @@ -0,0 +1,48 @@ +--- +title: Flygdynamikern +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://flygdynamikern.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 642729130cd19b3175a3099e486e4989 + websites: + https://flygdynamikern.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - fad + - haskell + - haskell example + - space + relme: + https://flygdynamikern.blogspot.com/: true + https://tychomagneticanomalyone.blogspot.com/: true + https://www.blogger.com/profile/14027110650075268096: true + last_post_title: Haskell tools for satellite operations + last_post_description: Since 2013-04 the presenter has been supporting SSC (the + Swedish Space Corporation) in operating the telecommunications satellite “Sirius + 3” from its Mission Control Center in Kiruna. Functions + last_post_date: "2014-09-12T12:46:00Z" + last_post_link: https://flygdynamikern.blogspot.com/2014/09/haskell-tools-for-satellite-operations.html + last_post_categories: [] + last_post_language: "" + last_post_guid: c1b272b9d8eae6cf7c151b5ddfa227a5 + score_criteria: + cats: 4 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6474b51fac8f1fcd113eb7fde25b79e2.md b/content/discover/feed-6474b51fac8f1fcd113eb7fde25b79e2.md deleted file mode 100644 index d91bdf129..000000000 --- a/content/discover/feed-6474b51fac8f1fcd113eb7fde25b79e2.md +++ /dev/null @@ -1,50 +0,0 @@ ---- -title: '# where we turn Perl inside out' -date: "2024-06-25T11:04:37+02:00" -description: our $blog = Perl::Blog->new; -params: - feedlink: https://niceperl.blogspot.com/feeds/posts/default - feedtype: atom - feedid: 6474b51fac8f1fcd113eb7fde25b79e2 - websites: - https://niceperl.blogspot.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - perl - - cpan - - metacpan - - perl6 - - stackoverflow - - php - - dancer - - graphic design - - idea - - ironman - - parrot - - perl metacpan - - phyton - - rakudo - relme: {} - last_post_title: (di) 10 great CPAN modules released last week - last_post_description: "" - last_post_date: "2024-06-23T16:34:15+02:00" - last_post_link: https://niceperl.blogspot.com/2024/06/di-10-great-cpan-modules-released-last.html - last_post_categories: - - cpan - - perl - last_post_guid: dc9e74e47cc28ae053eca4004395dadf - score_criteria: - cats: 5 - description: 3 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 15 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-649a07aa871166718af00cfec0f7f8b3.md b/content/discover/feed-649a07aa871166718af00cfec0f7f8b3.md index 59ba993b1..8405e0d60 100644 --- a/content/discover/feed-649a07aa871166718af00cfec0f7f8b3.md +++ b/content/discover/feed-649a07aa871166718af00cfec0f7f8b3.md @@ -12,16 +12,13 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: [] - relme: {} + relme: + https://foreverliketh.is/blog/: true last_post_title: On the Fish in the Sea last_post_description: |- Image Details & Source @@ -30,17 +27,22 @@ params: last_post_date: "2024-05-02T14:00:00Z" last_post_link: https://foreverliketh.is/blog/on-the-fish-in-the-sea/ last_post_categories: [] + last_post_language: "" last_post_guid: 4bf9ac260325d36f3b30aa43480472c5 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 13 + score: 19 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-649afcfb6a29cb81ce2f79ec6573a400.md b/content/discover/feed-649afcfb6a29cb81ce2f79ec6573a400.md deleted file mode 100644 index 0278015a3..000000000 --- a/content/discover/feed-649afcfb6a29cb81ce2f79ec6573a400.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Sindre Sorhus — Blog -date: "1970-01-01T00:00:00Z" -description: Full-Time Open-Sourcerer & Aspiring Rebel -params: - feedlink: https://sindresorhus.com/rss.xml - feedtype: rss - feedid: 649afcfb6a29cb81ce2f79ec6573a400 - websites: - https://sindresorhus.com/: true - https://sindresorhus.com/apps: false - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: [] - relme: - https://instagram.com/sindresorhus: false - https://mastodon.social/@sindresorhus: false - https://twitter.com/sindresorhus: false - https://unsplash.com/@sindresorhus: false - last_post_title: 'New App: Week Number' - last_post_description: The current week number in your menu bar - last_post_date: "2024-05-19T00:00:00Z" - last_post_link: https://sindresorhus.com/week-number - last_post_categories: [] - last_post_guid: 3bd4b3edbb871c2c620b4748cec80c5d - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 14 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-64aa26b9aa30ed48a6fd9d21e1510c1a.md b/content/discover/feed-64aa26b9aa30ed48a6fd9d21e1510c1a.md deleted file mode 100644 index 03469fb48..000000000 --- a/content/discover/feed-64aa26b9aa30ed48a6fd9d21e1510c1a.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Leon Goes Outside -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://lmika.day/feed.xml - feedtype: rss - feedid: 64aa26b9aa30ed48a6fd9d21e1510c1a - websites: - https://lmika.day/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/lmika: false - https://micro.blog/lmika: false - https://twitter.com/_leonmika: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-64bb27f6d2ea3f6ec99c16c4f853f481.md b/content/discover/feed-64bb27f6d2ea3f6ec99c16c4f853f481.md deleted file mode 100644 index 0b2ba2866..000000000 --- a/content/discover/feed-64bb27f6d2ea3f6ec99c16c4f853f481.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: OpenStack – Nikhil Kathole -date: "1970-01-01T00:00:00Z" -description: Open source Enthusiast -params: - feedlink: https://nikhilkathole.wordpress.com/category/OpenStack/feed/ - feedtype: rss - feedid: 64bb27f6d2ea3f6ec99c16c4f853f481 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - OpenStack - relme: {} - last_post_title: Let’s OpenStack 2017, Pune - last_post_description: 'Indian OpenStack User Group hosted "Pune, Let''s OpenStack - 2017" event on 16th April, 2017 at Red Hat, Pune (India). The meetup was attended - by over 40 people from varied backgrounds: startups' - last_post_date: "2017-04-16T19:59:36Z" - last_post_link: https://nikhilkathole.wordpress.com/2017/04/16/lets-openstack-2017-pune/ - last_post_categories: - - OpenStack - last_post_guid: de7e1971335d5aee900c572862584e34 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-64bbdf7a929cb2d49acdd84511875285.md b/content/discover/feed-64bbdf7a929cb2d49acdd84511875285.md index 53284ceb2..80a70e3e4 100644 --- a/content/discover/feed-64bbdf7a929cb2d49acdd84511875285.md +++ b/content/discover/feed-64bbdf7a929cb2d49acdd84511875285.md @@ -11,15 +11,10 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ - - https://hacdias.com/feed.xml categories: [] relme: {} last_post_title: I Fight For The Users @@ -29,17 +24,22 @@ params: last_post_date: "2023-11-30T20:11:05Z" last_post_link: https://blog.codinghorror.com/i-fight-for-the-users/ last_post_categories: [] + last_post_language: "" last_post_guid: 0c575ede0da65374b871248ef2018b2e score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-64c02817f07e424decf27b75cc5aa2ac.md b/content/discover/feed-64c02817f07e424decf27b75cc5aa2ac.md new file mode 100644 index 000000000..ab18fe2b2 --- /dev/null +++ b/content/discover/feed-64c02817f07e424decf27b75cc5aa2ac.md @@ -0,0 +1,43 @@ +--- +title: "\U000131B1 softlandings" +date: "1970-01-01T00:00:00Z" +description: Feed for 𓆱 softlandings +params: + feedlink: https://www.softlandings.world/feed.rss + feedtype: rss + feedid: 64c02817f07e424decf27b75cc5aa2ac + websites: + https://www.softlandings.world/: true + blogrolls: [] + recommended: [] + recommender: + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php + categories: [] + relme: {} + last_post_title: Recently + last_post_description: |- + It’s late for a February recap but things rolled over into March and here we are, a February+ recap. + The days are getting milder temperature-wise, and noticeably longer too. The green things are + last_post_date: "2024-03-15T00:00:00-07:00" + last_post_link: https://www.softlandings.world/recently + last_post_categories: [] + last_post_language: "" + last_post_guid: b63f22ce30ce0ee9f8ddbf4e042e1c3c + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-64cbed824d0f625886b18f851c031542.md b/content/discover/feed-64cbed824d0f625886b18f851c031542.md deleted file mode 100644 index fd9a47a9d..000000000 --- a/content/discover/feed-64cbed824d0f625886b18f851c031542.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: James Sinclair -date: "1970-01-01T00:00:00Z" -description: Public posts from @jrsinclair@indieweb.social -params: - feedlink: https://indieweb.social/@jrsinclair.rss - feedtype: rss - feedid: 64cbed824d0f625886b18f851c031542 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-64d5de8c370bc991ef3583b2d8606b6e.md b/content/discover/feed-64d5de8c370bc991ef3583b2d8606b6e.md deleted file mode 100644 index 21e27eb78..000000000 --- a/content/discover/feed-64d5de8c370bc991ef3583b2d8606b6e.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Baty.net -date: "1970-01-01T00:00:00Z" -description: A blog about everything by Jack Baty -params: - feedlink: https://baty.net/rss/ - feedtype: rss - feedid: 64d5de8c370bc991ef3583b2d8606b6e - websites: - https://baty.net/: true - blogrolls: [] - recommended: [] - recommender: - - https://colinwalker.blog/dailyfeed.xml - - https://colinwalker.blog/livefeed.xml - categories: [] - relme: {} - last_post_title: Speed is my enemy - last_post_description: My brain isn't necessarily fast, but it's always in a hurry. - last_post_date: "2024-06-02T14:14:56Z" - last_post_link: https://baty.net/2024/06/speed-is-my-enemy/ - last_post_categories: [] - last_post_guid: e9e3f5aab73ccd3b6825209ba077926d - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-64f27c015ec5a6a7c15e30cd92e24b87.md b/content/discover/feed-64f27c015ec5a6a7c15e30cd92e24b87.md new file mode 100644 index 000000000..a89ca8f7a --- /dev/null +++ b/content/discover/feed-64f27c015ec5a6a7c15e30cd92e24b87.md @@ -0,0 +1,85 @@ +--- +title: Michal Čihař's Weblog, posts tagged by Debian +date: "2019-05-29T10:00:00Z" +description: Random thoughts about everything tagged by Debian +params: + feedlink: https://blog.cihar.com/archives/debian/index-atom.xml + feedtype: atom + feedid: 64f27c015ec5a6a7c15e30cd92e24b87 + websites: + https://blog.cihar.com/archives/debian/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Bicycle + - Books + - Coding + - Configs + - Crypto + - Czech + - Debian + - Django + - Enca + - English + - GPL + - Gammu + - Gentoo + - History + - Howto + - IMAP + - Japan + - Life + - Linux + - Mailbox + - Maps + - Meego + - Misc + - Odorik + - OpenWrt + - Photography + - Pubs + - SUSE + - StarDict + - Synology + - Travelling + - Ukolovnik + - Wammu + - Weblate + - Website + - photo-uploader + - phpMyAdmin + - python-gammu + - uTidylib + relme: + https://blog.cihar.com/archives/debian/: true + last_post_title: Spring cleanup + last_post_description: What you can probably spot from past posts on my blog, my + open source contributions are heavily focused on Weblate and I've phased out many + other activities. The main reason being reduced amount of + last_post_date: "2019-05-29T10:00:00Z" + last_post_link: https://blog.cihar.com/archives/2019/05/29/spring-cleanup/?utm_source=rss2 + last_post_categories: + - Debian + - English + - Gammu + - SUSE + last_post_language: "" + last_post_guid: 4a48a63e9aa4e2194b514272d14e865a + score_criteria: + cats: 5 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 22 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-64fdd6e9f357fed04a73085384caa101.md b/content/discover/feed-64fdd6e9f357fed04a73085384caa101.md deleted file mode 100644 index fcaa3bcb5..000000000 --- a/content/discover/feed-64fdd6e9f357fed04a73085384caa101.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: Zugpost -date: "1970-01-01T00:00:00Z" -description: Ein digitales Magazin und Newsletter über das Zugreisen -params: - feedlink: https://zugpost.org/rss/ - feedtype: rss - feedid: 64fdd6e9f357fed04a73085384caa101 - websites: - https://zugpost.org/: true - blogrolls: [] - recommended: [] - recommender: - - https://jlelse.blog/.min.rss - - https://jlelse.blog/.rss - - https://jlelse.blog/index.xml - categories: - - Unterwegs - - Nachtzug - - Schweden - relme: - https://mastodon.social/@zugpost: true - last_post_title: 'Aufwachen am See: Im Nachtzug durch Schweden' - last_post_description: Im Nachtzug von Umeå nach Göteborg kommen noch Schlafwagen - aus den 1960er Jahren zum Einsatz. Warum das nichts Schlechtes heißt, spürt man - am Morgen. - last_post_date: "2024-05-19T09:03:38Z" - last_post_link: https://zugpost.org/nachtzug-umea-goeteborg/ - last_post_categories: - - Unterwegs - - Nachtzug - - Schweden - last_post_guid: 508e4ac82fb6535ee33f0d5045addf16 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 18 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-65138ddacd08a1a1d5b32c54a0a09d23.md b/content/discover/feed-65138ddacd08a1a1d5b32c54a0a09d23.md deleted file mode 100644 index 84b12a0e0..000000000 --- a/content/discover/feed-65138ddacd08a1a1d5b32c54a0a09d23.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: frittiert.es -date: "1970-01-01T00:00:00Z" -description: It's all about the web here, at least that's what I'm trying to do. From - opinions and practical guides to development projects and web technologies. -params: - feedlink: https://frittiert.es/feed/page:feed.xml - feedtype: rss - feedid: 65138ddacd08a1a1d5b32c54a0a09d23 - websites: - https://frittiert.es/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://frittiert.es/: true - https://github.com/pftnhr: true - last_post_title: I'm sorry that nothing is happening here right now - last_post_description: Very little is happening here at the moment. That's partly - because I'm currently isolating myself from any news, and partly because I'm still - working on my own solution for posting on Bluesky and - last_post_date: "2024-05-28T10:18:05+02:00" - last_post_link: https://frittiert.es/articles/2024/05/i-m-sorry-that-nothing-is-happening-here-right-now - last_post_categories: [] - last_post_guid: 56b459b05da2ba777ce0738e641f70d7 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-65169e304906a5155d2026b9bf89de95.md b/content/discover/feed-65169e304906a5155d2026b9bf89de95.md new file mode 100644 index 000000000..38b09b37d --- /dev/null +++ b/content/discover/feed-65169e304906a5155d2026b9bf89de95.md @@ -0,0 +1,49 @@ +--- +title: 'DEV Community: Camptocamp Geospatial Solutions' +date: "1970-01-01T00:00:00Z" +description: The latest articles on DEV Community by Camptocamp Geospatial Solutions + (@camptocamp-geo). +params: + feedlink: https://dev.to/feed/camptocamp-geo + feedtype: rss + feedid: 65169e304906a5155d2026b9bf89de95 + websites: + https://dev.to/camptocamp-geo: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - opensource + - postgis + - postgres + relme: + https://dev.to/camptocamp-geo: true + last_post_title: Current trends in PostgreSQL - insights from PGConf.DE 2024 + last_post_description: Greetings, PostgreSQL enthusiasts! Last week, on the 12th + of April in Munich, we had the pleasure of participating in PGConf.DE-2024, a + conference fully dedicated to PostgreSQL, where DB experts and + last_post_date: "2024-04-16T06:47:03Z" + last_post_link: https://dev.to/camptocamp-geo/current-trends-in-postgresql-insights-from-pgconfde-2024-1f1c + last_post_categories: + - opensource + - postgis + - postgres + last_post_language: "" + last_post_guid: 7ec25642617ae2fc15d5d406ae97c437 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-65204cd9daaae6c40553568ba542f012.md b/content/discover/feed-65204cd9daaae6c40553568ba542f012.md new file mode 100644 index 000000000..f62f47697 --- /dev/null +++ b/content/discover/feed-65204cd9daaae6c40553568ba542f012.md @@ -0,0 +1,48 @@ +--- +title: 'תגובות לפוסט: "השגות שושן"' +date: "1970-01-01T00:00:00Z" +description: טעויות במילון אבן שושן והצעות לתיקונים +params: + feedlink: https://hasagot.wordpress.com/comments/feed/ + feedtype: rss + feedid: 65204cd9daaae6c40553568ba542f012 + websites: + https://hasagot.wordpress.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://aharoni.wordpress.com/: true + https://aprenent.wordpress.com/: true + https://haharoni.wordpress.com/: true + https://hasagot.wordpress.com/: true + https://meta.wikimedia.org/wiki/User:Amire80: true + https://wikis.world/@aharoni: true + last_post_title: 'תגובה לפוסט: "אודות" מאת "aharoni"' + last_post_description: |- + בתגובה על ענת חקשור. + + יש יתרונות לכל אחד מהם. אפשר להשתמש בשניהם למען השלמת + last_post_date: "2020-05-16T14:51:35Z" + last_post_link: https://hasagot.wordpress.com/about/#comment-374 + last_post_categories: [] + last_post_language: "" + last_post_guid: 7a8b56c75b81ce336e4491fa201d2daa + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-652dfb71bbc66dc87ea9f714bbe37710.md b/content/discover/feed-652dfb71bbc66dc87ea9f714bbe37710.md deleted file mode 100644 index 530f53cd6..000000000 --- a/content/discover/feed-652dfb71bbc66dc87ea9f714bbe37710.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: eay.cc -date: "1970-01-01T00:00:00Z" -description: Weblog von Stefan Grund -params: - feedlink: https://eay.cc/feed/ - feedtype: rss - feedid: 652dfb71bbc66dc87ea9f714bbe37710 - websites: - https://eay.cc/: true - https://eay.url.lol/blog: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - 08/15 - - games - - playstation - - sony - relme: - https://eay.social/@eay: true - https://github.com/stefangrund: false - https://micro.blog/eay: false - https://staging.bsky.app/profile/eay.social: false - https://stefangrund.de/: true - https://www.threads.net/@eay: false - last_post_title: Astro Bot - last_post_description: I don’t care about any of the announcements on Sony’s recent - State of Play, except the sequel to their fantastic & free jump’n’run »Astro’s - Playroom«. Coming to PS5 on September 6th. - last_post_date: "2024-05-31T21:10:36Z" - last_post_link: https://eay.cc/2024/astro-bot/ - last_post_categories: - - 08/15 - - games - - playstation - - sony - last_post_guid: 63bfa65427eaf8b14b3b5b476529c7f2 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-65393935cff2a54976ac0ebc41a5790a.md b/content/discover/feed-65393935cff2a54976ac0ebc41a5790a.md new file mode 100644 index 000000000..aaed526f1 --- /dev/null +++ b/content/discover/feed-65393935cff2a54976ac0ebc41a5790a.md @@ -0,0 +1,59 @@ +--- +title: The Dripping Tap +date: "2024-07-08T16:08:02-05:00" +description: Game Design TTRPG Blog +params: + feedlink: https://dripping-tap.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 65393935cff2a54976ac0ebc41a5790a + websites: + https://dripping-tap.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Dead Buddhas + - Design + - Dungeon + - Dungeon23 + - Errant + - GLOGtober + - GLoG + - Lore24 + - Mega Dungeon + - OSR + - Play Report + - Resources + - Silk Road + - Talzur + - Urban Fantasy + - YADN + relme: + https://dripping-tap.blogspot.com/: true + last_post_title: Covenant with a Succubus (Jewish Demon Queen) + last_post_description: "" + last_post_date: "2024-05-17T13:41:59-05:00" + last_post_link: https://dripping-tap.blogspot.com/2024/05/covenants-succubus.html + last_post_categories: + - Design + - Errant + - OSR + last_post_language: "" + last_post_guid: 518eae7de5d3957d2562ef7336c835d9 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-653af1c21e461e67f5d9d39a03b12122.md b/content/discover/feed-653af1c21e461e67f5d9d39a03b12122.md deleted file mode 100644 index b9b1c9c97..000000000 --- a/content/discover/feed-653af1c21e461e67f5d9d39a03b12122.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Dwi'n Rhys -date: "1970-01-01T00:00:00Z" -description: Freelance North Wales & Manchester WordPress Developer -params: - feedlink: https://dwinrhys.com/feed/ - feedtype: rss - feedid: 653af1c21e461e67f5d9d39a03b12122 - websites: - https://dwinrhys.com/: true - https://www.dwinrhys.com/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Deep Dives - relme: - https://toot.wales/@rhyswynne: true - last_post_title: Can WordPress run Doom? (of course it can, here’s how) - last_post_description: |- - Can WordPress run Doom? Yes. This post introduces the WP Doom plugin, and how to get it running in WP Playground. - The post Can WordPress run Doom? (of course it can, here’s how) appeared first on - last_post_date: "2024-05-08T09:49:04Z" - last_post_link: https://dwinrhys.com/2024/05/08/can-wordpress-run-doom-of-course-it-can-heres-how/ - last_post_categories: - - Deep Dives - last_post_guid: 7ffa27aac404088573688ddf75947657 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-653d32223f58197439f044302fc834f9.md b/content/discover/feed-653d32223f58197439f044302fc834f9.md new file mode 100644 index 000000000..8793312a0 --- /dev/null +++ b/content/discover/feed-653d32223f58197439f044302fc834f9.md @@ -0,0 +1,53 @@ +--- +title: LordHoto's World +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://lordhoto.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 653d32223f58197439f044302fc834f9 + websites: + https://lordhoto.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - AdLib + - GSoC 2008 + - GSoC 2009 + - Kyrandia + - Lands of Lore + - SCUMM + - ScummVM + relme: + https://lordhoto.blogspot.com/: true + https://www.blogger.com/profile/05066515259706942164: true + last_post_title: SCUMM v3/v4 AD resource player + last_post_description: A new blog post again, yay!Over the past weeks I used some + of my free time to implement a (standalone) player for SCUMM v3/v4 AdLib music + and sound effect resources. I published it in a git repo on + last_post_date: "2011-12-10T02:26:00Z" + last_post_link: https://lordhoto.blogspot.com/2011/12/scumm-v3v4-ad-resource-player.html + last_post_categories: + - AdLib + - SCUMM + - ScummVM + last_post_language: "" + last_post_guid: f9e708b0e085fc8a1e55c2d62884ab2a + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6563b55e1c0ad9cb06775ddc27d4136a.md b/content/discover/feed-6563b55e1c0ad9cb06775ddc27d4136a.md deleted file mode 100644 index f0dd79440..000000000 --- a/content/discover/feed-6563b55e1c0ad9cb06775ddc27d4136a.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: CommitStrip -date: "1970-01-01T00:00:00Z" -description: The blog relating the daily life of web agency developers -params: - feedlink: https://www.commitstrip.com/en/feed/ - feedtype: rss - feedid: 6563b55e1c0ad9cb06775ddc27d4136a - websites: - https://www.commitstrip.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - - https://jlelse.blog/.min.rss - - https://jlelse.blog/.rss - - https://jlelse.blog/index.xml - categories: [] - relme: {} - last_post_title: A whole new world - last_post_description: "" - last_post_date: "2022-12-09T15:17:55Z" - last_post_link: https://www.commitstrip.com/2022/12/09/a-whole-new-world/ - last_post_categories: [] - last_post_guid: 72625f712993e55a16d4d89fa56b8980 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-657e6a5bfe93d5d8bacf0f2051266d3a.md b/content/discover/feed-657e6a5bfe93d5d8bacf0f2051266d3a.md deleted file mode 100644 index 9a373838b..000000000 --- a/content/discover/feed-657e6a5bfe93d5d8bacf0f2051266d3a.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: anarcat -date: "1970-01-01T00:00:00Z" -description: Public posts from @Anarcat@kolektiva.social -params: - feedlink: https://kolektiva.social/@Anarcat.rss - feedtype: rss - feedid: 657e6a5bfe93d5d8bacf0f2051266d3a - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-657e9bb02100322a3b3e35b0b2ca83be.md b/content/discover/feed-657e9bb02100322a3b3e35b0b2ca83be.md new file mode 100644 index 000000000..3f4ffc1f9 --- /dev/null +++ b/content/discover/feed-657e9bb02100322a3b3e35b0b2ca83be.md @@ -0,0 +1,56 @@ +--- +title: EMACSPEAK The Complete Audio Desktop +date: "1970-01-01T00:00:00Z" +description: Here is where I plan to Blog Emacspeak tricks and introduce new features + as I implement them. +params: + feedlink: https://emacspeak.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 657e9bb02100322a3b3e35b0b2ca83be + websites: + https://emacspeak.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - "60.0" + - DreamDog + relme: + https://emacspeak.blogspot.com/: true + last_post_title: Emacspeak 60.0 (DreamDog) Unleashed! + last_post_description: |- + Announcing Emacspeak 60.0—DreamDog! + + + + + + To express oneself well is impactful, but only when one has + something impactful to express! (TVR on Conversational Interfaces) + + + + + 1. For Immediate Release + last_post_date: "2024-05-03T18:39:00Z" + last_post_link: https://emacspeak.blogspot.com/2024/05/emacspeak-600-dreamdog-unleashed.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 22020d6bf8056689b4cd3e1730e7032c + score_criteria: + cats: 2 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6587d10d464109851e038fea7f3eac50.md b/content/discover/feed-6587d10d464109851e038fea7f3eac50.md deleted file mode 100644 index 10dc310a2..000000000 --- a/content/discover/feed-6587d10d464109851e038fea7f3eac50.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Comments for Colin Devroe -date: "1970-01-01T00:00:00Z" -description: Photographer. Darkroom printer. Blogger. Antiquarian. Reverse Engineer. - Art curator. YouTuber, lol. Senior Product Manager at NerdPress. -params: - feedlink: https://cdevroe.com/comments/feed/ - feedtype: rss - feedid: 6587d10d464109851e038fea7f3eac50 - websites: - https://cdevroe.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Switcheroo – An open source Little Arc for Safari by - Colin Devroe - last_post_description: |- - In reply to simon. - - Hello Simon! I'll send you an invite to the GitHub repository to your email. Look for that. :) - last_post_date: "2024-03-20T13:45:29Z" - last_post_link: https://cdevroe.com/2024/03/19/switcheroo/#comment-5 - last_post_categories: [] - last_post_guid: de4efd57ac576ad21dc84a9ee3108314 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-659b841dc05b2d27ff2237033bb5d87c.md b/content/discover/feed-659b841dc05b2d27ff2237033bb5d87c.md new file mode 100644 index 000000000..16781b7c3 --- /dev/null +++ b/content/discover/feed-659b841dc05b2d27ff2237033bb5d87c.md @@ -0,0 +1,48 @@ +--- +title: Coreutils project status updates +date: "1970-01-01T00:00:00Z" +description: periodic coreutils project status +params: + feedlink: https://www.pixelbeat.org/patches/coreutils/rss2.xml + feedtype: rss + feedid: 659b841dc05b2d27ff2237033bb5d87c + websites: + https://www.pixelbeat.org/patches/coreutils/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - coreutils + - testing + - unix + - utilities + relme: + https://www.pixelbeat.org/patches/coreutils/: true + last_post_title: How the GNU coreutils are tested + last_post_description: Tools and techniques used to test coreutils + last_post_date: "2017-01-23T16:55:57Z" + last_post_link: http://www.pixelbeat.org/docs/coreutils-testing.html#1485190557 + last_post_categories: + - coreutils + - testing + - unix + - utilities + last_post_language: "" + last_post_guid: d3bc257386e6cb7aeb4477114c6f5e50 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-65a7e238267260824171973ef6787a71.md b/content/discover/feed-65a7e238267260824171973ef6787a71.md new file mode 100644 index 000000000..6d75abc58 --- /dev/null +++ b/content/discover/feed-65a7e238267260824171973ef6787a71.md @@ -0,0 +1,49 @@ +--- +title: λ-view +date: "2024-02-19T00:22:41-08:00" +description: experience programming through a functional lens... +params: + feedlink: https://lambda-view.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 65a7e238267260824171973ef6787a71 + websites: + https://lambda-view.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - blaze-builder + - bytestring + - haskell + - performance + - talk + relme: + https://lambda-view.blogspot.com/: true + https://www.blogger.com/profile/17873513558398372917: true + last_post_title: 'Talk: A guided tour through the bytestring library' + last_post_description: "" + last_post_date: "2012-01-20T15:28:23-08:00" + last_post_link: https://lambda-view.blogspot.com/2012/01/talk-guided-tour-through-bytestring.html + last_post_categories: + - bytestring + - haskell + - talk + last_post_language: "" + last_post_guid: aae653dc5493b8316387b1bba9467897 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-65ab85477b63cb64d50ae68eecc3e4c4.md b/content/discover/feed-65ab85477b63cb64d50ae68eecc3e4c4.md deleted file mode 100644 index 76f9df0a7..000000000 --- a/content/discover/feed-65ab85477b63cb64d50ae68eecc3e4c4.md +++ /dev/null @@ -1,53 +0,0 @@ ---- -title: Jan’s Blog -date: "1970-01-01T00:00:00Z" -description: On Web Development, WordPress, and More -params: - feedlink: https://jan.boddez.net/feed - feedtype: rss - feedid: 65ab85477b63cb64d50ae68eecc3e4c4 - websites: - https://jan.boddez.net/: true - https://jan.boddez.net/author/jan: false - blogrolls: [] - recommended: [] - recommender: - - https://frankmeeuwsen.com/feed.xml - - https://hacdias.com/feed.xml - categories: - - General - - 100Posts - - blogroll - - indieweb - - web feeds - - wordpress - relme: - https://github.com/janboddez: true - https://jan.boddez.net/author/jan: false - last_post_title: Blogrollin’ - last_post_description: I made my blogroll look a tiny bit nicer. I’m planning to - still add actual RSS or Atom links, and remove any duplicate entries. (They’re - there because I occasionally follow multiple versions of - last_post_date: "2024-05-19T21:23:55Z" - last_post_link: https://jan.boddez.net/articles/blogrollin - last_post_categories: - - General - - 100Posts - - blogroll - - indieweb - - web feeds - - wordpress - last_post_guid: 3db2befb1c0ea3e4b90d99691afa1239 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 18 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-65b26be21d600d892fe061495c2124b2.md b/content/discover/feed-65b26be21d600d892fe061495c2124b2.md deleted file mode 100644 index 7da5a1b5d..000000000 --- a/content/discover/feed-65b26be21d600d892fe061495c2124b2.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Feed of "Gabriel Garrido" -date: "2024-06-04T13:45:11Z" -description: Programmer, synthesizer fiddler, and tree planter from Costa Rica. -params: - feedlink: https://git.garrido.io/gabriel.rss - feedtype: rss - feedid: 65b26be21d600d892fe061495c2124b2 - websites: - https://git.garrido.io/gabriel: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Gabriel Garrido pushed to main at gabriel/mastodon-markdown-archive - last_post_description: |- - 858d9bbac66ae03a2c742e6360f61fc3ca4ce86d - Update README - last_post_date: "2024-05-19T21:19:40Z" - last_post_link: https://git.hq.ggpsv.com/gabriel/mastodon-markdown-archive/commit/858d9bbac66ae03a2c742e6360f61fc3ca4ce86d - last_post_categories: [] - last_post_guid: 1811036ede12cc8bc7a7141e1ab9caac - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-65b766e62cf66fa476d693ad3ebd9955.md b/content/discover/feed-65b766e62cf66fa476d693ad3ebd9955.md new file mode 100644 index 000000000..6a9038764 --- /dev/null +++ b/content/discover/feed-65b766e62cf66fa476d693ad3ebd9955.md @@ -0,0 +1,44 @@ +--- +title: the triketora press +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://triketora.com/feed/ + feedtype: rss + feedid: 65b766e62cf66fa476d693ad3ebd9955 + websites: + https://triketora.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://roytang.net/blog/feed/rss/ + categories: + - Uncategorized + relme: {} + last_post_title: 2023 Booklist + last_post_description: In February I left my beloved London flat that was so ideally + situated above a Waterstone’s (literally less than a minute out of my day to pop + in and buy a book, my bookshelves are still groaning + last_post_date: "2024-01-07T22:46:43Z" + last_post_link: https://triketora.com/2024/01/07/2023-booklist/ + last_post_categories: + - Uncategorized + last_post_language: "" + last_post_guid: 66605173b2dd4c5f1899218256b9bbe7 + score_criteria: + cats: 0 + description: 0 + feedlangs: 1 + postcats: 1 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-65b9bc78c74a612a9796c41d332762b9.md b/content/discover/feed-65b9bc78c74a612a9796c41d332762b9.md deleted file mode 100644 index d7101a7f7..000000000 --- a/content/discover/feed-65b9bc78c74a612a9796c41d332762b9.md +++ /dev/null @@ -1,49 +0,0 @@ ---- -title: openstack – Fleio Blog -date: "1970-01-01T00:00:00Z" -description: OpenStack billing system and control panel -params: - feedlink: https://fleio.com/blog/tag/openstack/feed/ - feedtype: rss - feedid: 65b9bc78c74a612a9796c41d332762b9 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Announcement - - OpenStack - - release - - fleio release - - openstack - - openstack billing - - stable - relme: {} - last_post_title: Fleio 2024.03.1 stable now available - last_post_description: We have just released Fleio version 2024.03.1, which is recommended - for your production environment. The main new features announced in 2024.03.0 - beta are OpenStack region management and pricing - last_post_date: "2024-03-19T09:15:55Z" - last_post_link: https://fleio.com/blog/2024/03/19/fleio-2024-03-1-stable-now-available/ - last_post_categories: - - Announcement - - OpenStack - - release - - fleio release - - openstack - - openstack billing - - stable - last_post_guid: 06ad2d3765a71a27714602c5fea94845 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-65c98bcbf7443e7c929cf66025337dc4.md b/content/discover/feed-65c98bcbf7443e7c929cf66025337dc4.md new file mode 100644 index 000000000..6f323c935 --- /dev/null +++ b/content/discover/feed-65c98bcbf7443e7c929cf66025337dc4.md @@ -0,0 +1,85 @@ +--- +title: 'YANUB: yet another (nearly) useless blog' +date: "2024-07-06T22:05:06+02:00" +description: A blog from a scientist and former Debian developer (and occasional book + writer)... Tricks for data handling, programming, debian administration and development, + command-line and many other joyful +params: + feedlink: https://vince-debian.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 65c98bcbf7443e7c929cf66025337dc4 + websites: + https://vince-debian.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - cmdline + - ctioga + - debian + - doxygen + - dvdcopy + - emacs + - france + - games + - git + - git-annex + - graphics + - hardware + - help-needed + - latex + - linux + - macbook + - macos + - meta-data + - metalloenzyme + - personal + - programming + - puzzle + - pymol + - qsoas + - qt4 + - quiz + - rants + - ruby + - science + - sciyag + - scm + - scripts + - software + - summary + - tioga + - tips-and-tricks + - tutorial + - utils + - webgen + - wine + relme: + https://vince-debian.blogspot.com/: true + last_post_title: QSoas version 3.3 is out + last_post_description: "" + last_post_date: "2024-04-22T12:50:08+02:00" + last_post_link: https://vince-debian.blogspot.com/2024/04/qsoas-version-33-is-out.html + last_post_categories: + - qsoas + - science + - software + last_post_language: "" + last_post_guid: 71795f67d3336e42ba2fd7e2d85aed5f + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-65e429887370a0e6fd040324e3d456c3.md b/content/discover/feed-65e429887370a0e6fd040324e3d456c3.md index 01ee5684a..e02b36c44 100644 --- a/content/discover/feed-65e429887370a0e6fd040324e3d456c3.md +++ b/content/discover/feed-65e429887370a0e6fd040324e3d456c3.md @@ -12,35 +12,66 @@ params: recommended: [] recommender: [] categories: - - Linguistics - - collective nouns + - Alistair Cooke + - Anne Sexton + - Henry Dreyfuss + - James Michener + - Marlon Brando + - Publishing + - Royal Quiet De Luxe + - Royal typewriters + - Stephen King + - Theodore Sturgeon + - Vera Nabokov + - Vladimir Nabokov - typewriter collecting + - typewriter history + - typewriter identification - typewriters - - typosphere - relme: {} - last_post_title: Collective Nouns for Typewriters and Typists - last_post_description: The traditional collective noun for a group of typists is - a “pool”, but this just doesn’t seem as creative or entertaining as many collective - nouns can potentially be. As a typewriter collector - last_post_date: "2024-05-25T19:16:52Z" - last_post_link: https://chrisaldrich.wordpress.com/2024/05/25/collective-nouns-for-typewriters-and-typists/ + - typewriters of authors + relme: + https://chrisaldrich.wordpress.com/: true + last_post_title: Users of the early Henry Dreyfuss Royal Quiet De Luxe Portable + Typewriters + last_post_description: Now that I’ve got exemplars of both the 1948 and 1949 Henry + Dreyfuss designed Royal Quiet De Luxe (QDL) typewriters, I’ve been delving into + others who would have used these iconic machines. The + last_post_date: "2024-06-25T17:17:14Z" + last_post_link: https://chrisaldrich.wordpress.com/2024/06/25/users-of-the-early-henry-dreyfuss-royal-quiet-de-luxe-portable-typewriters/ last_post_categories: - - Linguistics - - collective nouns + - Alistair Cooke + - Anne Sexton + - Henry Dreyfuss + - James Michener + - Marlon Brando + - Publishing + - Royal Quiet De Luxe + - Royal typewriters + - Stephen King + - Theodore Sturgeon + - Vera Nabokov + - Vladimir Nabokov - typewriter collecting + - typewriter history + - typewriter identification - typewriters - - typosphere - last_post_guid: e33fb4dfa0740a3993f31124bc7b42d8 + - typewriters of authors + last_post_language: "" + last_post_guid: 5fd91ef82f630e084cf1a06bb8ca25ac score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 8 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-6607bb13cd87a6636c1bb6b9c82e2b3c.md b/content/discover/feed-6607bb13cd87a6636c1bb6b9c82e2b3c.md index d96192508..ab7108f59 100644 --- a/content/discover/feed-6607bb13cd87a6636c1bb6b9c82e2b3c.md +++ b/content/discover/feed-6607bb13cd87a6636c1bb6b9c82e2b3c.md @@ -8,40 +8,50 @@ params: feedid: 6607bb13cd87a6636c1bb6b9c82e2b3c websites: https://www.schneier.com/: true - https://www.schneier.com/blog/: false blogrolls: [] recommended: [] recommender: - http://scripting.com/rss.xml - http://scripting.com/rssNightly.xml categories: + - DHS + - Microsoft + - Russia - Uncategorized - - bitcoin - - cryptocurrency - - passwords + - cyberattack + - cyberespionage + - national security policy relme: {} - last_post_title: Breaking a Password Manager - last_post_description: Interesting story of breaking the security of the RoboForm - password manager in order to recover a cryptocurrency wallet password.Grand and - Bruno spent months reverse engineering the version of the - last_post_date: "2024-06-04T11:08:16Z" - last_post_link: https://www.schneier.com/blog/archives/2024/06/breaking-a-password-manager.html + last_post_title: On the CSRB’s Non-Investigation of the SolarWinds Attack + last_post_description: ProPublica has a long investigative article on how the Cyber + Safety Review Board failed to investigate the SolarWinds attack, and specifically + Microsoft’s culpability, even though they were + last_post_date: "2024-07-08T17:59:33Z" + last_post_link: https://www.schneier.com/blog/archives/2024/07/on-the-csrbs-non-investigation-of-the-solarwinds-attack.html last_post_categories: + - DHS + - Microsoft + - Russia - Uncategorized - - bitcoin - - cryptocurrency - - passwords - last_post_guid: d2eedd579fe81a0599c9f95a7b384088 + - cyberattack + - cyberespionage + - national security policy + last_post_language: "" + last_post_guid: 82120ae6186a1762dfaf280f96922a86 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-6616009a9a36c9e60ccfc17e0378f466.md b/content/discover/feed-6616009a9a36c9e60ccfc17e0378f466.md deleted file mode 100644 index c74d899e2..000000000 --- a/content/discover/feed-6616009a9a36c9e60ccfc17e0378f466.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: '@martinfeld.bsky.social - Martin Feld' -date: "1970-01-01T00:00:00Z" -description: |- - Media researcher, podcaster and photographer - - https://martinfeld.info -params: - feedlink: https://bsky.app/profile/did:plc:dcan7lxng4ktcc5ytehyljt3/rss - feedtype: rss - feedid: 6616009a9a36c9e60ccfc17e0378f466 - websites: - https://bsky.app/profile/martinfeld.bsky.social: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-66282fce3d738e37e2f136994e883aec.md b/content/discover/feed-66282fce3d738e37e2f136994e883aec.md new file mode 100644 index 000000000..d94367525 --- /dev/null +++ b/content/discover/feed-66282fce3d738e37e2f136994e883aec.md @@ -0,0 +1,41 @@ +--- +title: Eclipse from the bottom up +date: "2024-03-06T22:30:54-08:00" +description: The view of the Eclipse world from the bottom of the stack +params: + feedlink: https://eclipselowdown.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 66282fce3d738e37e2f136994e883aec + websites: + https://eclipselowdown.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://eclipselowdown.blogspot.com/: true + https://www.blogger.com/profile/06492420263178417384: true + last_post_title: 'Compare Merge Viewer Example: Merging Word Documents' + last_post_description: "" + last_post_date: "2008-06-13T08:11:18-07:00" + last_post_link: https://eclipselowdown.blogspot.com/2008/06/compare-merge-viewer-example-merging.html + last_post_categories: [] + last_post_language: "" + last_post_guid: a7904c1a7d79c29db2513293b37301d6 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-66286a6a45e23bea9b415add5262cf30.md b/content/discover/feed-66286a6a45e23bea9b415add5262cf30.md new file mode 100644 index 000000000..5bad5cb9e --- /dev/null +++ b/content/discover/feed-66286a6a45e23bea9b415add5262cf30.md @@ -0,0 +1,139 @@ +--- +title: New Information About Area Code +date: "2024-03-05T01:54:44-08:00" +description: Does scam is legal? +params: + feedlink: https://viajeespiritu.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 66286a6a45e23bea9b415add5262cf30 + websites: + https://viajeespiritu.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Scam is everywhere. + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Area Code Scam + last_post_description: "" + last_post_date: "2021-10-17T04:03:35-07:00" + last_post_link: https://viajeespiritu.blogspot.com/2021/10/area-code-scam.html + last_post_categories: + - Scam is everywhere. + last_post_language: "" + last_post_guid: a717cff96ca602a52eef15f51ec8c83f + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-666094899202f7fea244e44bfa10179f.md b/content/discover/feed-666094899202f7fea244e44bfa10179f.md deleted file mode 100644 index b67bf7962..000000000 --- a/content/discover/feed-666094899202f7fea244e44bfa10179f.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: 'John Voorhees :premier:' -date: "1970-01-01T00:00:00Z" -description: Public posts from @johnvoorhees@macstories.net -params: - feedlink: https://mastodon.macstories.net/@johnvoorhees.rss - feedtype: rss - feedid: 666094899202f7fea244e44bfa10179f - websites: - https://mastodon.macstories.net/@johnvoorhees: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://appstories.net/: true - https://club.macstories.net/: true - https://macstories.net/: true - https://www.threads.net/@johnvoorhees: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-66642bd72a86ce5db1e976433b758a73.md b/content/discover/feed-66642bd72a86ce5db1e976433b758a73.md deleted file mode 100644 index c86ca21af..000000000 --- a/content/discover/feed-66642bd72a86ce5db1e976433b758a73.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Comments for OpenStack Blog -date: "1970-01-01T00:00:00Z" -description: Grid Dynamics Team -params: - feedlink: https://openstackgd.wordpress.com/comments/feed/ - feedtype: rss - feedid: 66642bd72a86ce5db1e976433b758a73 - websites: - https://openstackgd.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Preconditions for Common OpenStack Client Library by - Alejandro Cabrera - last_post_description: |- - I learned about this common library while working on the python-marconiclient project. I love the idea of having a single http client that can be composed into other clients. That's awesome! - - Thanks - last_post_date: "2013-07-12T22:16:00Z" - last_post_link: https://openstackgd.wordpress.com/2013/01/12/preconditions-for-common-openstack-client-library/#comment-1121 - last_post_categories: [] - last_post_guid: b0dfe28261f73190b1bdef53820f9a16 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-666749868e40e4d2b848bd7a392f930d.md b/content/discover/feed-666749868e40e4d2b848bd7a392f930d.md deleted file mode 100644 index e2e95c0cf..000000000 --- a/content/discover/feed-666749868e40e4d2b848bd7a392f930d.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: "" -date: "1970-01-01T00:00:00Z" -description: aligned words -params: - feedlink: https://kdave.github.io/rss-all.xml - feedtype: rss - feedid: 666749868e40e4d2b848bd7a392f930d - websites: - https://kdave.github.io/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Interactive sleep - last_post_description: |- - The sleep utility is something I’d hardly consider worth enhancing by - features, the task is simple to sleep for a given time. Nothing else is needed - when it’s used from scripts. However, it can - last_post_date: "2023-08-24T00:00:00+02:00" - last_post_link: https://kdave.github.io/interactive-sleep/ - last_post_categories: [] - last_post_guid: cbb97514e202caf8432168c01a46151f - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 0 - website: 2 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-666c5a0f5f128ccab71c74cd28b6592a.md b/content/discover/feed-666c5a0f5f128ccab71c74cd28b6592a.md deleted file mode 100644 index ac36c188f..000000000 --- a/content/discover/feed-666c5a0f5f128ccab71c74cd28b6592a.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Vivaldi -date: "1970-01-01T00:00:00Z" -description: Public posts from @vivaldibrowser@mastodon.online -params: - feedlink: https://mastodon.online/@vivaldibrowser.rss - feedtype: rss - feedid: 666c5a0f5f128ccab71c74cd28b6592a - websites: - https://mastodon.online/@vivaldibrowser: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://forum.vivaldi.net/: false - https://help.vivaldi.com/: false - https://vivaldi.com/: false - https://vivaldi.net/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-668bbc90bbedaef7c4d17f1bfd9cc76b.md b/content/discover/feed-668bbc90bbedaef7c4d17f1bfd9cc76b.md index a555d06e8..31d68b801 100644 --- a/content/discover/feed-668bbc90bbedaef7c4d17f1bfd9cc76b.md +++ b/content/discover/feed-668bbc90bbedaef7c4d17f1bfd9cc76b.md @@ -12,35 +12,37 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: - Culture relme: {} - last_post_title: Blooper Reel - 'The Most Misunderstood Philosopher in the World' - | Nebula Plus - last_post_description: We have fun on set hehehe - last_post_date: "2024-05-24T17:26:23Z" - last_post_link: https://nebula.tv/videos/philosophytube-blooper-reel-the-most-misunderstood-philosopher-in-the-world/ + last_post_title: 'Pride Stream & Fiction Book Recs (Stream Highlights #2)' + last_post_description: The highlight reel from my most recent livestream, talking + about the previous episode of the show ("I Read the Most Misunderstood Philosopher + in the World") and how we made it, plus some queer + last_post_date: "2024-06-10T22:34:50Z" + last_post_link: https://nebula.tv/videos/philosophytube-pride-stream-fiction-book-recs-stream-highlights-2/ last_post_categories: - Culture - last_post_guid: 06d29273834b4f6328dcbddf122fd55c + last_post_language: "" + last_post_guid: fcb37b3aaa2a327e476229fb03453117 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 14 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-66997f02fc1176b532cd06632315aa5a.md b/content/discover/feed-66997f02fc1176b532cd06632315aa5a.md new file mode 100644 index 000000000..52e2fd45c --- /dev/null +++ b/content/discover/feed-66997f02fc1176b532cd06632315aa5a.md @@ -0,0 +1,43 @@ +--- +title: .NET Developer in a Linux world +date: "1970-01-01T00:00:00Z" +description: This is a blog mostly about my personal projects and being a C#/.NET + advocate and making my C# code portable to other operating systems (Linux & OSX). +params: + feedlink: https://synced0.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 66997f02fc1176b532cd06632315aa5a + websites: + https://synced0.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://synced0.blogspot.com/: true + last_post_title: Jingle Call Addresses + last_post_description: Ok so now that I am back from Mexico I have come back to + some of these issues a bit fresher, I think I was getting a bit too consumed by + thinking and rethinking this process that I lost a bit of what + last_post_date: "2006-06-22T18:16:00Z" + last_post_link: https://synced0.blogspot.com/2006/06/jingle-call-addresses.html + last_post_categories: [] + last_post_language: "" + last_post_guid: c03dfc47f9d9e5609bd72c77200b5f97 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-66b7efac33a6ea6ad73f4de386c6b2f0.md b/content/discover/feed-66b7efac33a6ea6ad73f4de386c6b2f0.md deleted file mode 100644 index d84a1b4d7..000000000 --- a/content/discover/feed-66b7efac33a6ea6ad73f4de386c6b2f0.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: NearToTheSky -date: "1970-01-01T00:00:00Z" -description: Public posts from @NearToTheSky@vivaldi.net -params: - feedlink: https://social.vivaldi.net/@NearToTheSky.rss - feedtype: rss - feedid: 66b7efac33a6ea6ad73f4de386c6b2f0 - websites: - https://social.vivaldi.net/@NearToTheSky: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://vivaldi.com/team/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-66b8c156b6f4e0648e4b0cdbaeec742d.md b/content/discover/feed-66b8c156b6f4e0648e4b0cdbaeec742d.md deleted file mode 100644 index 72b54119f..000000000 --- a/content/discover/feed-66b8c156b6f4e0648e4b0cdbaeec742d.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Lars-Christian -date: "1970-01-01T00:00:00Z" -description: Public posts from @lars@mastodon.social -params: - feedlink: https://mastodon.social/@lars.rss - feedtype: rss - feedid: 66b8c156b6f4e0648e4b0cdbaeec742d - websites: - https://mastodon.social/@lars: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://lars-christian.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-66f7d56d5fded1e96d1896d5aaeae994.md b/content/discover/feed-66f7d56d5fded1e96d1896d5aaeae994.md deleted file mode 100644 index da503f3db..000000000 --- a/content/discover/feed-66f7d56d5fded1e96d1896d5aaeae994.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: HaakonR -date: "1970-01-01T00:00:00Z" -description: Public posts from @HaakonR@vivaldi.net -params: - feedlink: https://social.vivaldi.net/@HaakonR.rss - feedtype: rss - feedid: 66f7d56d5fded1e96d1896d5aaeae994 - websites: - https://social.vivaldi.net/@HaakonR: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://vivaldi.com/team/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-66fd930c5171784005d2fe469c3a4f29.md b/content/discover/feed-66fd930c5171784005d2fe469c3a4f29.md deleted file mode 100644 index d7065efd6..000000000 --- a/content/discover/feed-66fd930c5171784005d2fe469c3a4f29.md +++ /dev/null @@ -1,49 +0,0 @@ ---- -title: OpenStack – Kashyap Chamarthy -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://kashyapc.wordpress.com/tag/openstack/feed/ - feedtype: rss - feedid: 66fd930c5171784005d2fe469c3a4f29 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Uncategorized - - kvm - - libvirt - - OpenStack - - qcow2 - - qemu - - Virtualization - relme: {} - last_post_title: Documentation of QEMU Block Device Operations - last_post_description: QEMU Block Layer currently (as of QEMU 2.10) supports four - major kinds of live block device jobs – stream, commit, mirror, and backup. These - can be used to manipulate disk image chains to - last_post_date: "2017-10-24T12:06:29Z" - last_post_link: https://kashyapc.wordpress.com/2017/10/24/documentation-of-qemu-block-device-operations/ - last_post_categories: - - Uncategorized - - kvm - - libvirt - - OpenStack - - qcow2 - - qemu - - Virtualization - last_post_guid: bc4e9ad16512b9f5c42d23fff2948828 - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-66ff08558857c17ff96459b840f0c6d7.md b/content/discover/feed-66ff08558857c17ff96459b840f0c6d7.md new file mode 100644 index 000000000..0371737ea --- /dev/null +++ b/content/discover/feed-66ff08558857c17ff96459b840f0c6d7.md @@ -0,0 +1,52 @@ +--- +title: sHoUt wid Suvayu +date: "1970-01-01T00:00:00Z" +description: Free speech is to die for +params: + feedlink: https://suvayu.wordpress.com/feed/ + feedtype: rss + feedid: 66ff08558857c17ff96459b840f0c6d7 + websites: + https://suvayu.wordpress.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Diaries + - amsterdam + - graffiti + - map + - street art + relme: + https://suvayu.wordpress.com/: true + last_post_title: Urban graffiti + last_post_description: 'I love going around a city looking for street art.  It feels + like a treasure hunt.  You never know what you are going to get: a wonderful piece + of art that you love, art that you don’t quite like' + last_post_date: "2013-08-13T02:10:04Z" + last_post_link: https://suvayu.wordpress.com/2013/08/13/urban-graffiti/ + last_post_categories: + - Diaries + - amsterdam + - graffiti + - map + - street art + last_post_language: "" + last_post_guid: 901822dbf47b916a2f70c75cccba2b75 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-672ecaaba567d83704b79d0e77b725ad.md b/content/discover/feed-672ecaaba567d83704b79d0e77b725ad.md new file mode 100644 index 000000000..e646479fe --- /dev/null +++ b/content/discover/feed-672ecaaba567d83704b79d0e77b725ad.md @@ -0,0 +1,55 @@ +--- +title: Geointerpolations +date: "1970-01-01T00:00:00Z" +description: somewhat temporally correlated thoughts on open source geospatial technologies… +params: + feedlink: https://tylerickson.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 672ecaaba567d83704b79d0e77b725ad + websites: + https://tylerickson.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Eddy + - Geospatial Technologies + - Kiting + - Outhouse + - camping + - django + - geodjango + - kiteboarding + - pyKML conference + - python virtualenv pip pandas + - slicehost + relme: + https://tylerickson.blogspot.com/: true + https://www.blogger.com/profile/02304403253679244567: true + last_post_title: Getting ready for the PyCon Pandas tutorial + last_post_description: Today I received an email with a link to instructions for + preparing a computer for the PyCon Tutorial: Data analysis in Python with pandas, + complete with the following instructions for:Installing + last_post_date: "2012-02-27T22:43:00Z" + last_post_link: https://tylerickson.blogspot.com/2012/02/getting-ready-for-pycon-pandas-tutorial.html + last_post_categories: + - python virtualenv pip pandas + last_post_language: "" + last_post_guid: 83d67c74d8553095f752d3bd0457e6df + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6736a1b4cfe7b37dfe8a471b5feb8e7e.md b/content/discover/feed-6736a1b4cfe7b37dfe8a471b5feb8e7e.md new file mode 100644 index 000000000..522399f03 --- /dev/null +++ b/content/discover/feed-6736a1b4cfe7b37dfe8a471b5feb8e7e.md @@ -0,0 +1,42 @@ +--- +title: Frank Chimero +date: "1970-01-01T00:00:00Z" +description: Frank Chimero’s Personal Website +params: + feedlink: https://frankchimero.com/feed.xml + feedtype: rss + feedid: 6736a1b4cfe7b37dfe8a471b5feb8e7e + websites: + https://frankchimero.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://roytang.net/blog/feed/rss/ + categories: [] + relme: {} + last_post_title: The Green Ray + last_post_description: 'Last week, early morning, the sky flushed that fuzzy summer + cirrus peach: I wake up inspired to send a brief newsletter with one nice idea. + An admirable goal—let’s finally get to writing! But of' + last_post_date: "2021-08-31T00:00:00Z" + last_post_link: https://frankchimero.com/blog/2021/the-green-ray/ + last_post_categories: [] + last_post_language: "" + last_post_guid: b9b1af7ec86ff552fcec2b8c8d95baa2 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-674c821ceab308023abe43729d2f298e.md b/content/discover/feed-674c821ceab308023abe43729d2f298e.md deleted file mode 100644 index 66fd32b4b..000000000 --- a/content/discover/feed-674c821ceab308023abe43729d2f298e.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: ~emersion/gamja refs -date: "1970-01-01T00:00:00Z" -description: Git refs for ~emersion/gamja -params: - feedlink: https://git.sr.ht/~emersion/gamja/refs/rss.xml - feedtype: rss - feedid: 674c821ceab308023abe43729d2f298e - websites: - https://git.sr.ht/~emersion/gamja/refs: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: [] - relme: {} - last_post_title: v1.0.0-beta.9 - last_post_description: 'gamja v1.0.0-beta.9Simon Ser (25): store: stop matching - server URL and nick store: protect against dup buffers store: fix clearing - buffers for a specific server Upgrade' - last_post_date: "2023-11-26T16:43:42+01:00" - last_post_link: https://git.sr.ht/~emersion/gamja/refs/v1.0.0-beta.9 - last_post_categories: [] - last_post_guid: c65350730dd21945c72249a1c528d4e8 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6762e92bafc6dfdd6fdf1164534248b6.md b/content/discover/feed-6762e92bafc6dfdd6fdf1164534248b6.md index e32d878fc..e48c579aa 100644 --- a/content/discover/feed-6762e92bafc6dfdd6fdf1164534248b6.md +++ b/content/discover/feed-6762e92bafc6dfdd6fdf1164534248b6.md @@ -12,7 +12,8 @@ params: recommended: [] recommender: [] categories: [] - relme: {} + relme: + https://staffeng.com/: true last_post_title: Adam Bender - Principal Software Engineer at Google last_post_description: |- October, 2022 @@ -22,17 +23,22 @@ params: last_post_date: "2022-10-24T00:00:00Z" last_post_link: https://staffeng.com/stories/adam-bender last_post_categories: [] + last_post_language: "" last_post_guid: 47dee0be4d12dd59b9145959d6a539cd score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 8 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-6767cfa3a353de6de068ab4c5530b416.md b/content/discover/feed-6767cfa3a353de6de068ab4c5530b416.md new file mode 100644 index 000000000..1c9f974b2 --- /dev/null +++ b/content/discover/feed-6767cfa3a353de6de068ab4c5530b416.md @@ -0,0 +1,43 @@ +--- +title: Eclipse Ecosystem +date: "2024-03-13T00:55:52-04:00" +description: A blog devoted to promoting the Eclipse ecosystem +params: + feedlink: https://eclipse-ecosystem.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 6767cfa3a353de6de068ab4c5530b416 + websites: + https://eclipse-ecosystem.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - eclipse trianing working group survey + - eclipsecon + relme: + https://eclipse-ecosystem.blogspot.com/: true + https://www.blogger.com/profile/11341499982780049728: true + last_post_title: Back to Oracle! + last_post_description: "" + last_post_date: "2011-04-28T15:01:15-04:00" + last_post_link: https://eclipse-ecosystem.blogspot.com/2011/04/back-to-oracle.html + last_post_categories: [] + last_post_language: "" + last_post_guid: f591b7e5501db881b048c62657965604 + score_criteria: + cats: 2 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-676b1c65e7c9114220426b2acc508254.md b/content/discover/feed-676b1c65e7c9114220426b2acc508254.md new file mode 100644 index 000000000..9fcfe709e --- /dev/null +++ b/content/discover/feed-676b1c65e7c9114220426b2acc508254.md @@ -0,0 +1,76 @@ +--- +title: SPPRUL-CSQ +date: "1970-01-01T00:00:00Z" +description: Syndicat des professionnelles et professionnels de recherche de l'Université + Laval +params: + feedlink: https://spprul.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 676b1c65e7c9114220426b2acc508254 + websites: + https://spprul.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - A propos + - AAContenu + - AANouvelle + - Activité spéciale + - Assurance + - CRHDQ + - CRSFA + - Campus + - Capsules + - Colloque + - Contact + - Conventions collective + - Dossiers + - FAQ + - Historique + - InfoSPPRUL + - Information + - Liens utiles + - Manifestation + - Médias + - Nouvelles + - Négociation + - Perfectionnement + - Profil de membre + - Reconnaissance + - Retraite + - Services aux membres + - Site Web + - développement durable + - publicité + relme: + https://spprul.blogspot.com/: true + last_post_title: L’excellence des professionnelles et professionnels de recherche + récompensée + last_post_description: 25 avril 2016 -  Les trois Fonds de recherche du Québec (FRQ) + viennent d’annoncer le nom des lauréats des Prix d’excellence des professionnels + de recherche lancés en octobre dernier. Les + last_post_date: "2016-04-25T13:58:00Z" + last_post_link: https://spprul.blogspot.com/2016/04/lexcellence-des-professionnelles-et.html + last_post_categories: + - AANouvelle + - Nouvelles + last_post_language: "" + last_post_guid: 82b57cec200aeb8c9a99161a208bbaf1 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-676cfb39150c4f6256eb6bdd91468209.md b/content/discover/feed-676cfb39150c4f6256eb6bdd91468209.md deleted file mode 100644 index 0cbdeb6c2..000000000 --- a/content/discover/feed-676cfb39150c4f6256eb6bdd91468209.md +++ /dev/null @@ -1,49 +0,0 @@ ---- -title: linux – Groveronline -date: "1970-01-01T00:00:00Z" -description: A Grover. Online. Saying stuff. -params: - feedlink: https://groveronline.com/tag/linux/feed/ - feedtype: rss - feedid: 676cfb39150c4f6256eb6bdd91468209 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Blog - - efi - - fedora - - grub2 - - linux - - lvm - - swap - relme: {} - last_post_title: 'Upgrading to Fedora 33: Removing Your Old Swap File on EFI Machine' - last_post_description: Fedora 33 adds a compressed-memory-based swap device using - zram. Cool! Now you can remove your old swap device, if you were a curmudgeon - like me and even had one in the first place. If you are NOT on - last_post_date: "2020-10-30T19:01:45Z" - last_post_link: https://groveronline.com/2020/10/30/upgrading-to-fedora-33-removing-your-old-swap-file-on-efi-machine/ - last_post_categories: - - Blog - - efi - - fedora - - grub2 - - linux - - lvm - - swap - last_post_guid: f395fe49957927dc86978df7e94035f2 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-676db873c07ddb2adcc9f5d90a4f11c9.md b/content/discover/feed-676db873c07ddb2adcc9f5d90a4f11c9.md deleted file mode 100644 index 7098896f9..000000000 --- a/content/discover/feed-676db873c07ddb2adcc9f5d90a4f11c9.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Browser Version Tracker -date: "1970-01-01T00:00:00Z" -description: Public posts from @browserversiontracker@vivaldi.net -params: - feedlink: https://social.vivaldi.net/@browserversiontracker.rss - feedtype: rss - feedid: 676db873c07ddb2adcc9f5d90a4f11c9 - websites: - https://social.vivaldi.net/@browserversiontracker: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://social.vivaldi.net/@browserversiontracker.rss: false - https://social.vivaldi.net/@vivaldiversiontracker: true - https://vivaldi.com/download/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-67760a63a33a4f5d87c3fa04cd2d4200.md b/content/discover/feed-67760a63a33a4f5d87c3fa04cd2d4200.md deleted file mode 100644 index 747589b93..000000000 --- a/content/discover/feed-67760a63a33a4f5d87c3fa04cd2d4200.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Perl-Academy.de Blog -date: "2023-08-01T09:13:24Z" -description: Wir von Perl-Academy.de bloggen regelmäßig über Perl -params: - feedlink: https://blog.perl-academy.de/rss - feedtype: rss - feedid: 67760a63a33a4f5d87c3fa04cd2d4200 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-677c29cfd858f36796c5a8cc7ba601cd.md b/content/discover/feed-677c29cfd858f36796c5a8cc7ba601cd.md new file mode 100644 index 000000000..011db50a2 --- /dev/null +++ b/content/discover/feed-677c29cfd858f36796c5a8cc7ba601cd.md @@ -0,0 +1,63 @@ +--- +title: Rumah Kost Dijual Bandung +date: "1970-01-01T00:00:00Z" +description: Jual Kos yang menghasilkan - Hubungi Hendy 0819-104-22-777 +params: + feedlink: https://rumahkostdijualbandung.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 677c29cfd858f36796c5a8cc7ba601cd + websites: + https://rumahkostdijualbandung.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - jual kost Bandung + relme: + https://eclipsedriven.blogspot.com/: true + https://emfmodeling.blogspot.com/: true + https://enakmurahkenyang.blogspot.com/: true + https://koperasi-bersama.blogspot.com/: true + https://lumen.hendyirawan.com/: true + https://magentoadmin.blogspot.com/: true + https://manfaatkefir.blogspot.com/: true + https://mobileflashdev.blogspot.com/: true + https://ngenet-dapat-duit.blogspot.com/: true + https://panduanubuntu.blogspot.com/: true + https://phpajaxweb.blogspot.com/: true + https://qt-mobility.blogspot.com/: true + https://rumah-sehat-avicenna.blogspot.com/: true + https://rumahkostdijualbandung.blogspot.com/: true + https://scala-enterprise.blogspot.com/: true + https://spring-java-ee.blogspot.com/: true + https://tutorial-java-programming.blogspot.com/: true + https://ubuntucomputing.blogspot.com/: true + https://www.blogger.com/profile/05192845149798446052: true + https://xdkmobile.blogspot.com/: true + last_post_title: Rumah Kost-kostan di Bandung Dijual Cepat, Murah, dan Menguntungkan + last_post_description: "Lokasi Rumah Kos berada di\nDago - BandungInformasi lengkap: + Kost Dijual\nLuas Tanah: 160 m\nLuas Bangunan: 320 m\n3 tingkat\n13 kamar (hunian + sedang terisi)\n\nPendapatan Rumah Kost : Rp 70.000.000,- " + last_post_date: "2010-05-24T22:37:00Z" + last_post_link: https://rumahkostdijualbandung.blogspot.com/2010/05/rumah-kost-kostan-di-bandung-dijual.html + last_post_categories: + - jual kost Bandung + last_post_language: "" + last_post_guid: dcb06d3970226033df51b068c9daa5e3 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-677e6a053dbdf8e75bff0d6921bfb1c8.md b/content/discover/feed-677e6a053dbdf8e75bff0d6921bfb1c8.md new file mode 100644 index 000000000..75b315118 --- /dev/null +++ b/content/discover/feed-677e6a053dbdf8e75bff0d6921bfb1c8.md @@ -0,0 +1,43 @@ +--- +title: Comments for Purism +date: "1970-01-01T00:00:00Z" +description: High-quality computers that protect your freedom and privacy +params: + feedlink: https://puri.sm/comments/feed/ + feedtype: rss + feedid: 677e6a053dbdf8e75bff0d6921bfb1c8 + websites: + https://puri.sm/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://librem.one/: true + https://puri.sm/: true + https://social.librem.one/@doublerainbows: true + https://social.librem.one/@purism: true + last_post_title: Comment on woocommerce_scheduled_subscription_trial_end by ActionScheduler + last_post_description: action complete + last_post_date: "2018-10-07T05:05:57Z" + last_post_link: https://puri.sm/posts/woocommerce_scheduled_subscription_trial_end/#comment-34372 + last_post_categories: [] + last_post_language: "" + last_post_guid: eb832676c2d157718fe89ecca8483bfa + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-67bfa9331c59f3774e7b44a5b5335268.md b/content/discover/feed-67bfa9331c59f3774e7b44a5b5335268.md deleted file mode 100644 index 938cf6aa3..000000000 --- a/content/discover/feed-67bfa9331c59f3774e7b44a5b5335268.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: matt godbolt -date: "1970-01-01T00:00:00Z" -description: Public posts from @mattgodbolt@hachyderm.io -params: - feedlink: https://hachyderm.io/@mattgodbolt.rss - feedtype: rss - feedid: 67bfa9331c59f3774e7b44a5b5335268 - websites: - https://hachyderm.io/@mattgodbolt: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/mattgodbolt: true - https://godbolt.org/: false - https://www.twoscomplement.org/: true - https://xania.org/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-67d297ee7c983d02e35810c8569a7254.md b/content/discover/feed-67d297ee7c983d02e35810c8569a7254.md deleted file mode 100644 index 0efd49010..000000000 --- a/content/discover/feed-67d297ee7c983d02e35810c8569a7254.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: RSS -date: "2024-04-29T04:19:56Z" -description: "" -params: - feedlink: https://explog.in/rss.xml - feedtype: rss - feedid: 67d297ee7c983d02e35810c8569a7254 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: [] - relme: {} - last_post_title: Eating Elephants - last_post_description: |- - Recommendations on ramping up on large software projects while - managing complexity and showing results, learned the hard way. - last_post_date: "2023-02-04T17:57:00Z" - last_post_link: https://explog.in/notes/elephants.html - last_post_categories: [] - last_post_guid: aff6cfbc016688128dc56393cbb32d03 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-67d407c4358e9f064f2bfd922df56eac.md b/content/discover/feed-67d407c4358e9f064f2bfd922df56eac.md deleted file mode 100644 index c96312ee6..000000000 --- a/content/discover/feed-67d407c4358e9f064f2bfd922df56eac.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Phil Hawksworth -date: "1970-01-01T00:00:00Z" -description: Public posts from @philhawksworth@indieweb.social -params: - feedlink: https://indieweb.social/@philhawksworth.rss - feedtype: rss - feedid: 67d407c4358e9f064f2bfd922df56eac - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-67f741ea658a256e4e285d287302a3b5.md b/content/discover/feed-67f741ea658a256e4e285d287302a3b5.md deleted file mode 100644 index 6cad3458e..000000000 --- a/content/discover/feed-67f741ea658a256e4e285d287302a3b5.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: elmine -date: "1970-01-01T00:00:00Z" -description: Public posts from @elmine@deepthought.infullflow.net -params: - feedlink: https://deepthought.infullflow.net/@elmine.rss - feedtype: rss - feedid: 67f741ea658a256e4e285d287302a3b5 - websites: - https://deepthought.infullflow.net/@elmine: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://infullflow.net/: true - https://storymin.es/abonneer/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-680339c46045c39f1beefd5ae11b177d.md b/content/discover/feed-680339c46045c39f1beefd5ae11b177d.md deleted file mode 100644 index 92649a060..000000000 --- a/content/discover/feed-680339c46045c39f1beefd5ae11b177d.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: C-Command Software Blog -date: "2024-05-17T13:15:52Z" -description: "" -params: - feedlink: https://c-command.com/blog/feed/atom/ - feedtype: atom - feedid: 680339c46045c39f1beefd5ae11b177d - websites: - https://c-command.com/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - SpamSieve - relme: {} - last_post_title: SpamSieve 3.0.4 - last_post_description: Update Download Buy SpamSieve Version 3.0.4 of SpamSieve - is now available. Save time by adding powerful spam filtering to the e-mail client - on your Mac. SpamSieve gives you back your inbox, using - last_post_date: "2024-05-17T13:15:52Z" - last_post_link: https://c-command.com/blog/2024/05/17/spamsieve-3-0-4/ - last_post_categories: - - SpamSieve - last_post_guid: dfa9c8a3b1da33a6a2f16ff3734387a1 - score_criteria: - cats: 0 - description: 0 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-680a3199cb49a85a3fb66e192f1199b8.md b/content/discover/feed-680a3199cb49a85a3fb66e192f1199b8.md deleted file mode 100644 index 06da45d0a..000000000 --- a/content/discover/feed-680a3199cb49a85a3fb66e192f1199b8.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Jarle -date: "1970-01-01T00:00:00Z" -description: Public posts from @Jarle@vivaldi.net -params: - feedlink: https://social.vivaldi.net/@Jarle.rss - feedtype: rss - feedid: 680a3199cb49a85a3fb66e192f1199b8 - websites: - https://social.vivaldi.net/@Jarle: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6817df8219823135d2b0b1f0797a8cda.md b/content/discover/feed-6817df8219823135d2b0b1f0797a8cda.md deleted file mode 100644 index 3337fd042..000000000 --- a/content/discover/feed-6817df8219823135d2b0b1f0797a8cda.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Jan – ochtendgrijs -date: "1970-01-01T00:00:00Z" -description: Mooie, mooie woorden -params: - feedlink: https://ochtendgrijs.be/author/ochtendgrijs/feed/ - feedtype: rss - feedid: 6817df8219823135d2b0b1f0797a8cda - websites: - https://ochtendgrijs.be/author/ochtendgrijs/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-682d41c7de022f55be1e3c1ef7041e14.md b/content/discover/feed-682d41c7de022f55be1e3c1ef7041e14.md index 313dbc413..be04f41cb 100644 --- a/content/discover/feed-682d41c7de022f55be1e3c1ef7041e14.md +++ b/content/discover/feed-682d41c7de022f55be1e3c1ef7041e14.md @@ -11,7 +11,9 @@ params: blogrolls: [] recommended: [] recommender: - - https://hacdias.com/feed.xml + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml categories: [] relme: {} last_post_title: 'Org-roam: A Year In Review' @@ -21,17 +23,22 @@ params: last_post_date: "2021-12-25T00:00:00Z" last_post_link: https://blog.jethro.dev/posts/org_roam_2021/ last_post_categories: [] + last_post_language: "" last_post_guid: dee08d04c7931ebf896e88dcdb631951 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-6831f51420284f6601221d27b849702b.md b/content/discover/feed-6831f51420284f6601221d27b849702b.md deleted file mode 100644 index bb014bf0b..000000000 --- a/content/discover/feed-6831f51420284f6601221d27b849702b.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Chmouel's blog -date: "1970-01-01T00:00:00Z" -description: Recent content on Chmouel's blog -params: - feedlink: https://blog.chmouel.com/index.xml - feedtype: rss - feedid: 6831f51420284f6601221d27b849702b - websites: - https://blog.chmouel.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Advanced usage of Emacs isearch - last_post_description: Introduction It has been a long time since I have blogged - about Emacs. I still enjoy using it as when I started from day one (around 1998). - I did made some changes I have now moved out of the Emacs - last_post_date: "2024-03-01T10:21:39+01:00" - last_post_link: https://blog.chmouel.com/posts/emacs-isearch/ - last_post_categories: [] - last_post_guid: 4b6ba4a8786e8ee861b2d7133b7c5c28 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-684488d784c3a75d363e68e168be2137.md b/content/discover/feed-684488d784c3a75d363e68e168be2137.md deleted file mode 100644 index 82b7f951b..000000000 --- a/content/discover/feed-684488d784c3a75d363e68e168be2137.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Comments for openSUSE Lizards -date: "1970-01-01T00:00:00Z" -description: Blogs and Ramblings of the openSUSE Members -params: - feedlink: https://lizards.opensuse.org/comments/feed/ - feedtype: rss - feedid: 684488d784c3a75d363e68e168be2137 - websites: - https://lizards.opensuse.org/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Highlights of YaST Development Sprint 94 by Tony Su - last_post_description: Noticed in my opening paragraph about XFCE running on Ubuntu - that I didn't include it was in WSL... Which ordinarily supports only a text mode - environment unless you set up an X server for itself - last_post_date: "2020-03-06T17:50:09Z" - last_post_link: https://lizards.opensuse.org/2020/03/06/yast-sprint-94/#comment-17602 - last_post_categories: [] - last_post_guid: 42b88d3ca47cf7d6372f0b16c301818a - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-68513c91c9c73b8e106bd371c91677dd.md b/content/discover/feed-68513c91c9c73b8e106bd371c91677dd.md new file mode 100644 index 000000000..ac523ba46 --- /dev/null +++ b/content/discover/feed-68513c91c9c73b8e106bd371c91677dd.md @@ -0,0 +1,82 @@ +--- +title: Andrew Niefer +date: "1970-01-01T00:00:00Z" +description: One more Eclipse developer. +params: + feedlink: https://aniefer.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 68513c91c9c73b8e106bd371c91677dd + websites: + https://aniefer.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - -XX:MaxPermSize + - Compiler Arguments + - Cycles + - EPP + - Eclipse + - EclipseCon + - Equinox + - Galileo + - Launcher + - OpenDocument + - Orion + - PDE Build + - RCP + - Releng + - Signing + - Source Generation + - Splash Screen + - Swing + - Tips + - Tips Tricks + - Versions + - Workspace Names + - console + - deltapack + - docs + - e4 + - examples + - feature patches + - git + - p2 + - parallel + - permgen + - tests + - version suffixes + relme: + https://an-tst.blogspot.com/: true + https://aniefer-projects.blogspot.com/: true + https://aniefer.blogspot.com/: true + https://www.blogger.com/profile/10918930759740557341: true + last_post_title: 'Quick Tip: Naming Eclipse Workspaces' + last_post_description: 'I often have multiple eclipse workspaces open.  Windows + 7 stacks them nicely for me, but this presents a problem: it is difficult to distinguish + between them when switching between the applications' + last_post_date: "2013-05-06T14:48:00Z" + last_post_link: https://aniefer.blogspot.com/2013/05/quick-tip-naming-eclipse-workspaces.html + last_post_categories: + - Eclipse + - Tips + - Workspace Names + last_post_language: "" + last_post_guid: 441d3c5476795c2cec792918ccec2240 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-686e19c9c15cc04936ef45c40b032e38.md b/content/discover/feed-686e19c9c15cc04936ef45c40b032e38.md index 91364c238..5de199a76 100644 --- a/content/discover/feed-686e19c9c15cc04936ef45c40b032e38.md +++ b/content/discover/feed-686e19c9c15cc04936ef45c40b032e38.md @@ -15,23 +15,29 @@ params: categories: [] relme: https://hachyderm.io/@mattly: true + https://lyonheart.us/: true https://social.bitwig.community/@mattly: true - last_post_title: QuBit Nautilus - last_post_description: cheat sheet for QuBit Nautilus - last_post_date: "2024-04-02T00:00:00Z" - last_post_link: https://lyonheart.us/_astro/qb-nautilus.BVd47rSQ.webp + last_post_title: Reviewing Ratings + last_post_description: Everyone's a critic now, and it's terrible + last_post_date: "2024-07-03T00:00:00Z" + last_post_link: https://lyonheart.us/reviewing-ratings/ last_post_categories: [] - last_post_guid: a7ad0f394c5e6e38e46ec0c5ec524824 + last_post_language: "" + last_post_guid: f9c312337aa53ddb0abbe9e9c081a98f score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 19 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-686facb1ac3c986d2ffda6f95be2c719.md b/content/discover/feed-686facb1ac3c986d2ffda6f95be2c719.md new file mode 100644 index 000000000..0c91f5826 --- /dev/null +++ b/content/discover/feed-686facb1ac3c986d2ffda6f95be2c719.md @@ -0,0 +1,45 @@ +--- +title: Comments for gvSIG blog +date: "1970-01-01T00:00:00Z" +description: gvSIG project blog +params: + feedlink: https://blog.gvsig.org/comments/feed/ + feedtype: rss + feedid: 686facb1ac3c986d2ffda6f95be2c719 + websites: + https://blog.gvsig.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://blog.gvsig.org/: true + last_post_title: Comment on Algo más que software by Sergio Acosta y Lara + last_post_description: |- + In reply to Gabi. + + +

El privilegio es mío. Abrazo fuerte

+ + last_post_date: "2024-06-04T13:35:59Z" + last_post_link: https://blog.gvsig.org/2024/05/30/algo-mas-que-software/#comment-122846 + last_post_categories: [] + last_post_language: "" + last_post_guid: 2336311d3d762d57d81a8970a133463e + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-688a08b94606f8b69142265cb1a1c812.md b/content/discover/feed-688a08b94606f8b69142265cb1a1c812.md index ef1b37238..e01ff089b 100644 --- a/content/discover/feed-688a08b94606f8b69142265cb1a1c812.md +++ b/content/discover/feed-688a08b94606f8b69142265cb1a1c812.md @@ -11,35 +11,36 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: [] relme: - https://micro.blog/chriswm: false - last_post_title: '2024 W22: A big sticky arduous mess' - last_post_description: § We got all of the mulch down just in time for a week of - rain. As we waited out the dreary weather, Caroline and I sketched out the outlines - of a Canadian road trip for our honeymoon. We’ll - last_post_date: "2024-06-02T06:02:14-04:00" - last_post_link: https://blog.chriswm.com/2024/06/02/w-a-big.html + https://blog.chriswm.com/: true + last_post_title: '2024 W27: Ambient anxiety' + last_post_description: § Holding out four months since my last one, I caught a nasty + cold at the beginning of the week. The only consolation is that it is better to + get it over with now than pretty much any other time in + last_post_date: "2024-07-07T06:10:23-04:00" + last_post_link: https://blog.chriswm.com/2024/07/07/w-ambient-anxiety.html last_post_categories: [] - last_post_guid: cabd754bf386630386ad299c2f28a6a3 + last_post_language: "" + last_post_guid: b26d9ac4f996f1e185f8b1e51adae976 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 11 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-688ddeddd92a4e817c37caa1c5e7bd97.md b/content/discover/feed-688ddeddd92a4e817c37caa1c5e7bd97.md new file mode 100644 index 000000000..4ed26dfd2 --- /dev/null +++ b/content/discover/feed-688ddeddd92a4e817c37caa1c5e7bd97.md @@ -0,0 +1,55 @@ +--- +title: Eclipse by Planetary Transits +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://henrik-eclipse.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 688ddeddd92a4e817c37caa1c5e7bd97 + websites: + https://henrik-eclipse.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Eclipse Sweden + - b3 + - buckminster + - cloudsmith + - eclipse + - eclipse spaces publishing xdrive plugin bundle OSGi + - xtext + relme: + https://eclipse-buckminster.blogspot.com/: true + https://henrik-eclipse.blogspot.com/: true + https://henrik-lindberg.blogspot.com/: true + https://www.blogger.com/profile/18131140901733897033: true + last_post_title: Implementing Date Support with Quickfix using Xtext + last_post_description: |- + Intro + Now that Xtext is at 1.0 RC1 I thought it was time to start using more of all the new features for Eclipse b3. One of the features I wanted to add was to support time stamps in a nice way in + last_post_date: "2010-05-19T21:59:00Z" + last_post_link: https://henrik-eclipse.blogspot.com/2010/05/implementing-date-support-with-quickfix.html + last_post_categories: + - b3 + - eclipse + - xtext + last_post_language: "" + last_post_guid: f93877ea0c1a36a25544a53e5d6ce964 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6892c2bde77037fdff2e5db11832ecc9.md b/content/discover/feed-6892c2bde77037fdff2e5db11832ecc9.md index e046f18fc..73a687f5e 100644 --- a/content/discover/feed-6892c2bde77037fdff2e5db11832ecc9.md +++ b/content/discover/feed-6892c2bde77037fdff2e5db11832ecc9.md @@ -16,108 +16,12 @@ params: categories: - Uncategorized relme: - https://360.whatfettle.com/: false - https://about.me/psd: false - https://advogato.org/person/psd/: false - https://alpha.scraperwiki.com/profiles/psd/: false - https://blip.fm/psd: false + https://blog.whatfettle.com/: true https://blog.whatfettle.com/about/: true - https://brightkite.com/people/psd: false - https://channel9.msdn.com/Niners/psd/: false - https://del.icio.us/psd: false - https://developer.ribbit.com/profiles/psd/: false - https://digg.com/users/pdowney: false - https://disqus.com/people/psd/: false - https://djangopeople.net/psd/: false - https://favtape.com/lastfm/pdowney/recent: false - https://foursquare.com/user/psd: false - https://friendfeed.com/psd: false - https://getsatisfaction.com/people/psd/: false - https://github.com/psd: false - https://gowalla.com/users/psd: false - https://hi.im/psd: false - https://huffduffer.com/psd: false - https://identi.ca/psd: false - https://imdb.com/mymovies/list?l=1877021: false - https://isitbirthday.com/psd: false - https://jsdo.it/psd: false - https://jyte.com/claims?by=blog.whatfettle.com: false - https://lanyrd.com/people/psd/: false - https://londonist.com/profile/pauldowney: false - https://ma.gnolia.com/people/psd: false - https://mash.yahoo.com/profile.php?id=jlDMyaxx3SCOVqhTbZkNfvE: false - https://meme.yahoo.com/psd/: false - https://metaoptimize.com/qa/users/478/psd/: false - https://microformats.org/wiki/User:PaulDowney: false - https://my.opera.com/pdowney/about/: false - https://paper.li/psd: false - https://pauld.jaiku.com/: false - https://pdowney.hi5.com/: false - https://pdowney.stumbleupon.com/: false - https://plancast.com/psd: false - https://plazes.com/users/245740: false - https://plusplusbot.com/targets/psd: false - https://pownce.com/psd/: false - https://profiles.yahoo.com/u/PQNB4KKYRYOX7XCXR6UIM4IJFQ: false - https://psd.jottit.com/: false - https://psd.myvidoop.com/: false - https://psd.posterous.com/: false - https://psd.tumblr.com/: false - https://psdowney.livejournal.com/: false - https://reddit.com/user/pdowney/: false - https://runkeeper.com/user/psd/profile: false - https://socialthing.com/psd: false - https://solderpad.com/psd: false - https://speakerdeck.com/u/psd: false + https://github.com/psd: true + https://psd.tumblr.com/: true https://stackoverflow.com/users/213657/psd: true - https://tweetstats.com/graphs/psd: false - https://twimbler.com/psd: false - https://twitter.com/psd: false - https://twittermap.com/maps?mapstring=psd: false - https://upcoming.yahoo.com/user/56234/: false - https://userscripts.org/people/1575: false - https://weheartit.com/user/psd: false - https://www.amazon.co.uk/exec/obidos/registry/JIYMV8I6TBHV/ref=wl_em_to: false - https://www.backtype.com/psd: false - https://www.bloglines.com/public/psd: false - https://www.confabb.com/users/profile/9013: false - https://www.davidhasselhoff.com/profile/PaulDowney: false - https://www.designspark.com/users/psd: false - https://www.dopplr.com/traveller/psd: false - https://www.facebook.com/paul.downey: false - https://www.flickr.com/people/psd/: false - https://www.geekmap.co.uk/people/00bf-paul-downey: false - https://www.geocaching.com/profile/?guid=425d0058-d4d1-4a56-a19a-a7eae93e8e7a: false - https://www.geocaching.com/seek/nearest.aspx?ul=psd: false - https://www.goodreads.com/user/show/3725895: false - https://www.google.com/profiles/paul.s.downey: false - https://www.google.com/reader/shared/paul.s.downey: false - https://www.hunch.com/people/psd/profile/: false - https://www.last.fm/user/pdowney/: false - https://www.linkedin.com/in/pdowney: false - https://www.mahalo.com/member/Psd: false - https://www.meetup.com/members/7608028/: false - https://www.mybloglog.com/buzz/members/psd/: false - https://www.ohloh.net/accounts/15982: false - https://www.ourairports.com/members/psd/: false - https://www.plurk.com/user/psd: false - https://www.radiopop.co.uk/users/pdowney/: false - https://www.rummble.com/pauld: false - https://www.semanticoverflow.com/users/393/psd: false - https://www.slideshare.net/psd: false - https://www.spock.com/Paul-Downey-zyos1NX8: false - https://www.technorati.com/claim/mkazu9v6zx: false - https://www.technorati.com/search/http:/blog.whatfettle.com: false - https://www.thingiverse.com/psd: false - https://www.tiddlywiki.org/wiki/User:Psd: false - https://www.twine.com/user/psd/: false - https://www.twitterholic.com/twitter/psd: false - https://www.ustream.tv/pdowney: false - https://www.vimeo.com/pdowney: false - https://www.wildlifenearyou.com/psd/: false - https://www.xing.com/profile/Paul_Downey: false - https://youtube.com/psdowney: false - https://zootool.com/user/psd/: false + https://whatfettle.com/: true last_post_title: Scope creep last_post_description: "“The problem with agile is scope creepâ€\x9D, he said “We run a tight ship here. We’re on a budget, spending public money and can’t @@ -126,17 +30,22 @@ params: last_post_link: https://blog.whatfettle.com/2015/10/13/scope-creep/ last_post_categories: - Uncategorized + last_post_language: "" last_post_guid: 356f2bbc29afff04d2a2c0a6bd631c29 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 16 + score: 20 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-68bace750ef55c76156d7b215b2c23d4.md b/content/discover/feed-68bace750ef55c76156d7b215b2c23d4.md new file mode 100644 index 000000000..147a4695e --- /dev/null +++ b/content/discover/feed-68bace750ef55c76156d7b215b2c23d4.md @@ -0,0 +1,42 @@ +--- +title: Mario's adventures in geekery +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://supermario-world.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 68bace750ef55c76156d7b215b2c23d4 + websites: + https://supermario-world.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://supermario-world.blogspot.com/: true + last_post_title: IR Receiver extension for Ambilight raspberry pi clone + last_post_description: After working with my ambilight clone for a few days, I discovered + the biggest annoyance was that it wouldn't turn off after turning off the TV. +  I had some ideas on how I could remotely trigger it + last_post_date: "2014-04-23T05:48:00Z" + last_post_link: https://supermario-world.blogspot.com/2014/04/ir-receiver-extension-for-ambilight.html + last_post_categories: [] + last_post_language: "" + last_post_guid: d7b5c5b566f690e76dcd208a90ac7148 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-68bbae0dad10dbbf09496a17dd5470bb.md b/content/discover/feed-68bbae0dad10dbbf09496a17dd5470bb.md deleted file mode 100644 index 879dec153..000000000 --- a/content/discover/feed-68bbae0dad10dbbf09496a17dd5470bb.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Set Studio -date: "1970-01-01T00:00:00Z" -description: Public posts from @setstudio@mastodon.design -params: - feedlink: https://mastodon.design/@setstudio.rss - feedtype: rss - feedid: 68bbae0dad10dbbf09496a17dd5470bb - websites: - https://mastodon.design/@setstudio: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://set.studio/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-68bf890ef652d82109527abf8b5560b7.md b/content/discover/feed-68bf890ef652d82109527abf8b5560b7.md index 67366c97c..7e8fad0c4 100644 --- a/content/discover/feed-68bf890ef652d82109527abf8b5560b7.md +++ b/content/discover/feed-68bf890ef652d82109527abf8b5560b7.md @@ -1,6 +1,6 @@ --- title: Harsh Browns -date: "2024-05-26T20:22:45+01:00" +date: "2024-06-30T15:58:18+01:00" description: Steve Messer’s website. Product manager. Web enthusiast, working in the open. Black Country boy living in London, UK. params: @@ -37,6 +37,7 @@ params: - https://medium.com/feed/@kellyleeGDS - https://medium.com/feed/@trillyc - https://medium.com/feed/writing-by-if + - https://neilojwilliams.net/feed/ - https://paulsmith.site/weeknotes/feed.xml - https://public.digital/feed/ - https://richardpope.org/feed.xml @@ -53,39 +54,41 @@ params: - https://digitalblog.coop.co.uk/feed/ - https://digitalbydefault.com/comments/feed/ - https://ia.net/feed/ - - https://interconnected.org/home/feed - https://linear.app/rss/blog.xml - - https://russelldavies.typepad.com/planning/atom.xml - - https://russelldavies.typepad.com/planning/index.rdf - - https://russelldavies.typepad.com/planning/rss.xml + - https://neilojwilliams.net/comments/feed/ - https://tomloosemorework.wordpress.com/comments/feed/ - https://www.kubabartwicki.com/feed/feed.xml recommender: [] categories: - - Data + - Weeknotes relme: https://github.com/stevenjmesser: true - https://twitter.com/stevenjmesser: false - https://www.linkedin.com/in/stevenjmesser: false - last_post_title: The problems with making answers in data more findable - last_post_description: 'Note: I wrote this way back in October 2022, when I was - still working on the Secure Data Environment at NHS England. I’d started thinking - about ways we could make the analyses performed inside the' - last_post_date: "2024-05-26T18:49:12+01:00" - last_post_link: https://visitmy.website/2024/05/26/the-problems-with-making-answers-in-data-more-findable/?utm_campaign=rss&utm_source=rss + https://visitmy.website/: true + last_post_title: The Best Away Day Ever + last_post_description: |- + No weeknotes last week as I was away with friends all weekend, so consider these two-week notes – or tw’eeknotes. It’s that or fort-notes, take your pick. + + Still tired. In fact, I was so run + last_post_date: "2024-06-30T14:50:48+01:00" + last_post_link: https://visitmy.website/2024/06/30/the-best-away-day-ever/?utm_campaign=rss&utm_source=rss last_post_categories: - - Data - last_post_guid: ad3345c50bc80f5f16bbf141013c2664 + - Weeknotes + last_post_language: "" + last_post_guid: 814945cf8038cd38c173e8d708fc4754 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 1 + posts: 3 promoted: 0 promotes: 10 relme: 2 title: 3 website: 2 - score: 21 + score: 24 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-68c12e772984768543dc98de27320ca1.md b/content/discover/feed-68c12e772984768543dc98de27320ca1.md index f015c10bd..d05d20ec1 100644 --- a/content/discover/feed-68c12e772984768543dc98de27320ca1.md +++ b/content/discover/feed-68c12e772984768543dc98de27320ca1.md @@ -12,29 +12,44 @@ params: recommender: - https://visitmy.website/feed.xml categories: - - Technology and Web Trends + - Branding + - Japan - Writer + - Writing + - alice + - iA Writer + - iA.inc relme: {} - last_post_title: I Want You Back (The Dropbox Remix) - last_post_description: |- - Dropbox finally has a native Files app integration. This is good news for iA Writer. - The post I Want You Back (The Dropbox Remix) appeared first on iA. - last_post_date: "2024-05-24T06:23:54Z" - last_post_link: https://ia.net/topics/i-want-you-back-the-dropbox-remix + last_post_title: iA‎‎‎lice + last_post_description: "On 4 July Americans will celebrate Independence Day. And + so they should, as gloomy days may lie ahead. But did you know that 4 July is + also Alice Day? \nThe post iA‎‎‎lice appeared first on iA." + last_post_date: "2024-07-04T03:18:11Z" + last_post_link: https://ia.net/topics/ialice last_post_categories: - - Technology and Web Trends + - Branding + - Japan - Writer - last_post_guid: cf3bf2461750b62ac5e47610b3f2cbb0 + - Writing + - alice + - iA Writer + - iA.inc + last_post_language: "" + last_post_guid: 82961696434fa676ad30558c952f2025 score_criteria: cats: 0 description: 3 - postcats: 2 + feedlangs: 1 + postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 13 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-68d0d0310ba724629d66aacc3757cb1a.md b/content/discover/feed-68d0d0310ba724629d66aacc3757cb1a.md index de5e27da3..444930d9c 100644 --- a/content/discover/feed-68d0d0310ba724629d66aacc3757cb1a.md +++ b/content/discover/feed-68d0d0310ba724629d66aacc3757cb1a.md @@ -1,6 +1,6 @@ --- title: i.webthings.hub -date: "2024-06-03T16:45:15Z" +date: "2024-07-08T13:08:29Z" description: "" params: feedlink: https://iwebthings.joejenett.com/feed.atom @@ -10,55 +10,49 @@ params: https://iwebthings.joejenett.com/: true blogrolls: [] recommended: [] - recommender: [] + recommender: + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php categories: - - resources - - gratis + - inspiration + - linkylove relme: - https://bsky.app/profile/jenett.bsky.social: false - https://directory.jenett.org/: true + https://bulltown.2022.joejenett.com/: true https://directory.joejenett.com/: true - https://github.com/joejenett: false + https://fediverse-webring-enthusiasts.glitch.me/profiles/jenett_toot.community/index.html: true + https://github.com/joejenett: true https://ideas.joejenett.com/: true - https://iwebthings.jenett.org/: true https://iwebthings.joejenett.com/: true - https://jenett.org/: true - https://joe.jenett.org/: true - https://joe.joejenett.com/: false https://joejenett.com/: true https://joejenett.github.io/i.webthings/: true - https://linkscatter.jenett.org/: false - https://linkscatter.joejenett.com/: false - https://micro.blog/joejenett: false - https://photo.jenett.org/: false - https://photo.joejenett.com/: false - https://pointers.dailywebthing.com/: false - https://simply.jenett.org/: true + https://linkscatter.joejenett.com/: true + https://photo.joejenett.com/: true https://simply.joejenett.com/: true - https://the.dailywebthing.com/: false https://toot.community/@jenett: true - https://twitter.com/iwebthings: false - https://twitter.com/joejenett: false - https://wiki.jenett.org/: true https://wiki.joejenett.com/: true - last_post_title: “You can find inspiration here.” + last_post_title: linkylove.inspired 07-08-24 last_post_description: "" - last_post_date: "2024-06-03T11:55:13Z" - last_post_link: https://iwebthings.joejenett.com/you-can-find-inspiration-here/ + last_post_date: "2024-07-08T11:40:25Z" + last_post_link: https://iwebthings.joejenett.com/linkylove-inspired-07-08-24/ last_post_categories: - - resources - - gratis - last_post_guid: b7caecccbd26020687fe1c95f982cc9c + - inspiration + - linkylove + last_post_language: "" + last_post_guid: 501af007714bd69966a6b214c21125bd score_criteria: cats: 0 description: 0 + feedlangs: 0 postcats: 2 - promoted: 0 + posts: 3 + promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 9 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-68d843e9059665a10bd69b8f02a15277.md b/content/discover/feed-68d843e9059665a10bd69b8f02a15277.md index 2e6248642..2d3d9cd24 100644 --- a/content/discover/feed-68d843e9059665a10bd69b8f02a15277.md +++ b/content/discover/feed-68d843e9059665a10bd69b8f02a15277.md @@ -12,32 +12,38 @@ params: recommended: [] recommender: [] categories: + - BikeTooter - cycling relme: - https://bookrastinating.com/user/lewisdaleuk: false https://github.com/LewisDaleUK: true https://lewisdale.dev/: true https://proven.lol/f730ca: true https://social.lol/@lewis: true - last_post_title: Trying out a cycling club - last_post_description: For the last two years or so I’ve been cycling on my own, - with a couple of small exceptions, like joining ad-hoc groups during events. When - I have joined those groups, I’ve had a great time and - last_post_date: "2024-06-03T07:22:26Z" - last_post_link: https://lewisdale.dev/post/trying-out-a-cycling-club/ + last_post_title: Upgrading my tyres and tubes + last_post_description: I’ve never really bought into the idea that spending ludicrous + amounts of money on tyres for marginal gains was worth it. Up until now, I’ve + been really happy with my 28mm Contintental Ultra + last_post_date: "2024-06-28T09:33:33Z" + last_post_link: https://lewisdale.dev/post/upgrading-my-tyres-and-tubes/ last_post_categories: + - BikeTooter - cycling - last_post_guid: 6d4c0d01b638b4a9824cd4bd182f500a + last_post_language: "" + last_post_guid: 62740735fcf6ab3251fe74338202424d score_criteria: cats: 0 description: 0 - postcats: 1 + feedlangs: 1 + postcats: 2 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 8 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-68f774aacd991b42a065f70ee4911c37.md b/content/discover/feed-68f774aacd991b42a065f70ee4911c37.md deleted file mode 100644 index 64bd92ffa..000000000 --- a/content/discover/feed-68f774aacd991b42a065f70ee4911c37.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: CommitStrip -date: "1970-01-01T00:00:00Z" -description: The blog relating the daily life of web agency developers -params: - feedlink: https://www.commitstrip.com/feed/ - feedtype: rss - feedid: 68f774aacd991b42a065f70ee4911c37 - websites: - https://www.commitstrip.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: A whole new world - last_post_description: "" - last_post_date: "2022-12-09T15:17:55Z" - last_post_link: https://www.commitstrip.com/2022/12/09/a-whole-new-world/ - last_post_categories: [] - last_post_guid: 366f1bdb68831277a00230ad90c97741 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-68fcc6faffa0c329f358ade2c85cb4e9.md b/content/discover/feed-68fcc6faffa0c329f358ade2c85cb4e9.md new file mode 100644 index 000000000..3b984df14 --- /dev/null +++ b/content/discover/feed-68fcc6faffa0c329f358ade2c85cb4e9.md @@ -0,0 +1,45 @@ +--- +title: Månhus +date: "1970-01-01T00:00:00Z" +description: Månhus är David Halls blogg om livet, Internet och annat. +params: + feedlink: https://moonhouse.se/index.xml + feedtype: rss + feedid: 68fcc6faffa0c329f358ade2c85cb4e9 + websites: + https://moonhouse.se/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://github.com/moonhouse: true + https://moonhouse.se/: true + https://social.tchncs.de/@moonhouse: true + https://www.moonhouse.se/: true + last_post_title: Saker du aldrig vill göra + last_post_description: En sak som irriterar mig med programvaruprojekt är när saker + som fungerat i en viss version helt plötsligt slutar fungera. I bästa fall finns + det tydligt dokumenterat hur man uppdaterar sina + last_post_date: "2017-01-01T23:12:56Z" + last_post_link: http://moonhouse.se/posts/saker-du-aldrig-vill-gora/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 150fb8b00a6010f24b130964016e0e23 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: sv +--- diff --git a/content/discover/feed-68ffc684049570fd8da3ef7642fe5156.md b/content/discover/feed-68ffc684049570fd8da3ef7642fe5156.md index 61a9ed55c..2fd2cfe91 100644 --- a/content/discover/feed-68ffc684049570fd8da3ef7642fe5156.md +++ b/content/discover/feed-68ffc684049570fd8da3ef7642fe5156.md @@ -1,46 +1,58 @@ --- title: Molly White's activity feed -date: "2024-05-30T19:54:49Z" +date: "2024-07-06T15:43:41Z" description: "" params: feedlink: https://www.mollywhite.net/feed/feed.xml feedtype: atom feedid: 68ffc684049570fd8da3ef7642fe5156 websites: - https://mollywhite.net/: false - https://mollywhite.net/feed: true - https://mollywhite.net/micro: false - https://mollywhite.net/reading/blockchain: false - https://mollywhite.net/reading/shortform: false https://www.mollywhite.net/: false https://www.mollywhite.net/feed: false - https://www.mollywhite.net/linktree: false + https://www.mollywhite.net/linktree/: false + https://www.mollywhite.net/micro: false + https://www.mollywhite.net/reading/blockchain: false + https://www.mollywhite.net/reading/shortform: false blogrolls: [] recommended: [] recommender: - https://joeross.me/feed.xml - categories: [] - relme: - https://bsky.app/profile/molly.wiki: false - https://hachyderm.io/@molly0xfff: false - https://twitter.com/molly0xFFF: false - https://www.youtube.com/@molly0xfff: false - last_post_title: Note published on May 30, 2024 at 7:54 PM UTC + - https://www.manton.org/feed.xml + - https://www.manton.org/podcast.xml + categories: + - blogging + - digital_sovereignty + - indieweb + - programming + - web + relme: {} + last_post_title: Read "An alarmingly concise and very hinged summary of what it + was like to build this site from scratch" last_post_description: "" - last_post_date: "2024-05-30T19:54:49Z" - last_post_link: https://www.mollywhite.net/micro/entry/202405301553 - last_post_categories: [] - last_post_guid: 0521365e6cec766d3a46cab7ee984a04 + last_post_date: "2024-07-06T15:43:41Z" + last_post_link: https://www.mollywhite.net/reading/shortform?search=An%20alarmingly%20concise%20and%20very%20hinged%20summary%20of%20what%20it%20was%20like%20to%20build%20this%20site%20from%20scratch + last_post_categories: + - blogging + - digital_sovereignty + - indieweb + - programming + - web + last_post_language: "" + last_post_guid: 4ac2d92c9c55585b222bd155571acac4 score_criteria: cats: 0 description: 0 - postcats: 0 + feedlangs: 0 + postcats: 3 + posts: 3 promoted: 5 promotes: 0 - relme: 1 + relme: 0 title: 3 - website: 2 - score: 11 + website: 1 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-690a071a75179b328f7f4b7334d0a9d3.md b/content/discover/feed-690a071a75179b328f7f4b7334d0a9d3.md new file mode 100644 index 000000000..e22f24e09 --- /dev/null +++ b/content/discover/feed-690a071a75179b328f7f4b7334d0a9d3.md @@ -0,0 +1,46 @@ +--- +title: Stories by gareth aye on Medium +date: "1970-01-01T00:00:00Z" +description: Stories by gareth aye on Medium +params: + feedlink: https://medium.com/feed/@garethaye + feedtype: rss + feedid: 690a071a75179b328f7f4b7334d0a9d3 + websites: + https://medium.com/@garethaye?source=rss-3e425d04c8c------2: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - education + - mathematics + - teaching + relme: + https://medium.com/@garethaye?source=rss-3e425d04c8c------2: true + last_post_title: Happy Pi Day from MathLeap! + last_post_description: "" + last_post_date: "2016-03-14T07:16:00Z" + last_post_link: https://blog.mathleap.org/happy-pi-day-from-mathleap-a080af87f7ba?source=rss-3e425d04c8c------2 + last_post_categories: + - education + - mathematics + - teaching + last_post_language: "" + last_post_guid: 431d428f2de71ba0c31657a0c672d741 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6924a56b2f1a98000f18fc53eb769492.md b/content/discover/feed-6924a56b2f1a98000f18fc53eb769492.md deleted file mode 100644 index 44c453d06..000000000 --- a/content/discover/feed-6924a56b2f1a98000f18fc53eb769492.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Damani blog - OpenStack -date: "2020-08-18T14:45:00+02:00" -description: "" -params: - feedlink: https://damani42.github.io/feeds/openstack.atom.xml - feedtype: atom - feedid: 6924a56b2f1a98000f18fc53eb769492 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - OpenStack - - python - - openstack - - zuul - - tox - relme: {} - last_post_title: Presentation of ensure-tox role. - last_post_description: The ensure-tox is a simple playbook for zuul. - last_post_date: "2020-08-18T14:45:00+02:00" - last_post_link: https://damani42.github.io/presentation-of-ensure-tox-role.html - last_post_categories: - - OpenStack - - python - - openstack - - zuul - - tox - last_post_guid: 62ef4f652596efc557dc20fa6270ee7b - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-692ed1c2d72d604188692f44e48d6353.md b/content/discover/feed-692ed1c2d72d604188692f44e48d6353.md index 009839869..f775aece2 100644 --- a/content/discover/feed-692ed1c2d72d604188692f44e48d6353.md +++ b/content/discover/feed-692ed1c2d72d604188692f44e48d6353.md @@ -15,45 +15,34 @@ params: categories: [] relme: https://github.com/mjkaul: true - https://micro.blog/mjkaul: false - https://twitter.com/mjkaul: false - last_post_title: 'Exodus 90: readings ✝️' + https://mjkaul.com/: true + last_post_title: "Matt Levine is hilarious & spot-on, exhibit 389247 \U0001F517" last_post_description: |- - Try to read each week’s Scripture once each day. - - Week 1: 8-14 Jan - - - Reading: Exodus 1-4 - - - Week 2: 15-21 Jan - - - Reading: Exodus 5-8 - - - Week 3: 22-28 Jan - + Matt Levine is hilarious & spot-on, exhibit 389247 (likely paywalled unless you subscribe to his newsletter, which you should): - Reading: Exodus 9-12 + AI sorting - Week 4: 29 Jan – 4 - last_post_date: "2024-01-04T15:51:22-05:00" - last_post_link: https://mjkaul.com/2024/01/04/exodus-readings.html + A dumb simple model of artificial intelligence companies + last_post_date: "2024-06-21T08:55:37-05:00" + last_post_link: https://mjkaul.com/2024/06/21/matt-levine-is.html last_post_categories: [] - last_post_guid: 91a818e4ce4d1235812a6538d6928fc0 + last_post_language: "" + last_post_guid: 44669b1392baab5a9618d98ab656ec58 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 12 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-69301589b42b4e5d35ea5c09f239e7a2.md b/content/discover/feed-69301589b42b4e5d35ea5c09f239e7a2.md new file mode 100644 index 000000000..d1e6010a2 --- /dev/null +++ b/content/discover/feed-69301589b42b4e5d35ea5c09f239e7a2.md @@ -0,0 +1,43 @@ +--- +title: ger&co +date: "2024-02-06T19:53:04-08:00" +description: "" +params: + feedlink: https://ger-en-co.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 69301589b42b4e5d35ea5c09f239e7a2 + websites: + https://ger-en-co.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://cor4office-nl.blogspot.com/: true + https://cor4office.blogspot.com/: true + https://ger-en-co.blogspot.com/: true + https://www.blogger.com/profile/13875945109269396639: true + last_post_title: Naar huis + last_post_description: "" + last_post_date: "2011-07-24T04:01:06-07:00" + last_post_link: https://ger-en-co.blogspot.com/2011/07/naar-huis.html + last_post_categories: [] + last_post_language: "" + last_post_guid: b5af017cf849ccb09bc003e97c295ec3 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-69475972838237066ad06223927e13f2.md b/content/discover/feed-69475972838237066ad06223927e13f2.md deleted file mode 100644 index c8d60d066..000000000 --- a/content/discover/feed-69475972838237066ad06223927e13f2.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: David Walbert -date: "1970-01-01T00:00:00Z" -description: Hand-tool woodworker, writer, and historian. Also an avid gardener and - curious baker; formerly a physicist, a web developer, and a homeschool educator - (though not all at once). -params: - feedlink: https://social.davidwalbert.com/podcast.xml - feedtype: rss - feedid: 69475972838237066ad06223927e13f2 - websites: - https://social.davidwalbert.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Society & Culture - relme: - https://micro.blog/dwalbert: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 1 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 10 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-697054c3ffabb7c5135ecb6abd8b1c9c.md b/content/discover/feed-697054c3ffabb7c5135ecb6abd8b1c9c.md deleted file mode 100644 index 36aa83e58..000000000 --- a/content/discover/feed-697054c3ffabb7c5135ecb6abd8b1c9c.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: 'Alchemists: Articles' -date: "2024-06-02T21:44:34Z" -description: Articles on the craft of software engineering. -params: - feedlink: https://www.alchemists.io/feeds/articles.xml - feedtype: atom - feedid: 697054c3ffabb7c5135ecb6abd8b1c9c - websites: - https://www.alchemists.io/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - articles - relme: {} - last_post_title: Site Updates - last_post_description: "" - last_post_date: "2024-06-02T21:44:34Z" - last_post_link: https://alchemists.io/articles/site_updates - last_post_categories: - - milestones - last_post_guid: f2c70be84e73d5ebffd280f090d03a83 - score_criteria: - cats: 1 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-69731fc01b21dc0c76865721f8ca67f1.md b/content/discover/feed-69731fc01b21dc0c76865721f8ca67f1.md deleted file mode 100644 index 10e0f7481..000000000 --- a/content/discover/feed-69731fc01b21dc0c76865721f8ca67f1.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for Live & Learn -date: "1970-01-01T00:00:00Z" -description: I can't sleep... -params: - feedlink: https://davidkanigan.com/comments/feed/ - feedtype: rss - feedid: 69731fc01b21dc0c76865721f8ca67f1 - websites: - https://davidkanigan.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Monday Morning Wake Up Call by Kiki - last_post_description: |- - In reply to Live & Learn. - - hey!!! - last_post_date: "2024-06-04T11:39:11Z" - last_post_link: https://davidkanigan.com/2024/06/03/monday-morning-wake-up-call-368/#comment-420065 - last_post_categories: [] - last_post_guid: 26008d3414a652a92f2751156f6c5130 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-69b949f9e891caaee27ad7c32ee3a710.md b/content/discover/feed-69b949f9e891caaee27ad7c32ee3a710.md deleted file mode 100644 index b98ce1d28..000000000 --- a/content/discover/feed-69b949f9e891caaee27ad7c32ee3a710.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Juan Fernandes -date: "1970-01-01T00:00:00Z" -description: Public posts from @juanfernandes@indieweb.social -params: - feedlink: https://indieweb.social/@juanfernandes.rss - feedtype: rss - feedid: 69b949f9e891caaee27ad7c32ee3a710 - websites: - https://indieweb.social/@juanfernandes: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/juanfernandes: true - https://gitlab.com/juanfernandes: false - https://www.juanfernandes.uk/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-69baecc6f0789c61c8c3a0dab0b1c41d.md b/content/discover/feed-69baecc6f0789c61c8c3a0dab0b1c41d.md deleted file mode 100644 index 1990babad..000000000 --- a/content/discover/feed-69baecc6f0789c61c8c3a0dab0b1c41d.md +++ /dev/null @@ -1,52 +0,0 @@ ---- -title: Galera Cluster for MySQLGalera Cluster for MySQL -date: "1970-01-01T00:00:00Z" -description: The world's most advanced open-source database cluster. -params: - feedlink: https://galeracluster.com/comments/feed/ - feedtype: rss - feedid: 69baecc6f0789c61c8c3a0dab0b1c41d - websites: - https://galeracluster.com/category/blog/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Blog - - Planet OpenStack - - Press releases - - Galera 4 - - galera cluster - - Multi-master MySQL - - MySQL 8 - - MySQL high availability - relme: {} - last_post_title: Galera Cluster 4 for MySQL 8 is Generally Available! - last_post_description: Codership is proud to announce the first Generally Available - (GA) release of Galera Cluster 4 for MySQL 8 and improve MySQL High Availability - a great deal. The current release comes with MySQL 8.0.19 - last_post_date: "2020-05-25T05:34:20Z" - last_post_link: https://galeracluster.com/2020/05/galera-cluster-4-for-mysql-8-is-generally-available/ - last_post_categories: - - Blog - - Planet OpenStack - - Press releases - - Galera 4 - - galera cluster - - Multi-master MySQL - - MySQL 8 - - MySQL high availability - last_post_guid: ff6bc2490a92226e954e42dd0ae8d1d9 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-69caa2a149d27136a3951738d5c24e9e.md b/content/discover/feed-69caa2a149d27136a3951738d5c24e9e.md index bbcbed196..539c7d8dd 100644 --- a/content/discover/feed-69caa2a149d27136a3951738d5c24e9e.md +++ b/content/discover/feed-69caa2a149d27136a3951738d5c24e9e.md @@ -13,8 +13,18 @@ params: recommender: [] categories: [] relme: + https://github.com/joeross: true + https://joeross.lol/: true https://joeross.me/: true - https://mastodon.social/@joeross: false + https://joeross.me/blogroll/: true + https://joeross.neocities.org/: true + https://joeross.omg.lol/: true + https://joeross.omg.lol/now: true + https://joeross.proven.lol/: true + https://joeross.weblog.lol/: true + https://mastodon.social/@joeross: true + https://moth.social/@joeross: true + https://status.lol/joeross: true last_post_title: The Web Worth Paying For last_post_description: 'I was listening to Celeste Headlee interview Anil Dash on the latest episode of the Slate podcast What Next: TBD, and Dash said something @@ -22,17 +32,22 @@ params: last_post_date: "2023-08-15T15:14:00Z" last_post_link: https://joeross.weblog.lol/2023/08/the-web-worth-paying-for last_post_categories: [] + last_post_language: "" last_post_guid: 0c38f6f9fe4ffb776e3a9d616f899f18 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-6a2825ebf20bc928d25196bdd326e71d.md b/content/discover/feed-6a2825ebf20bc928d25196bdd326e71d.md index 58b47d8c2..9b1ce6aa6 100644 --- a/content/discover/feed-6a2825ebf20bc928d25196bdd326e71d.md +++ b/content/discover/feed-6a2825ebf20bc928d25196bdd326e71d.md @@ -11,35 +11,36 @@ params: blogrolls: [] recommended: [] recommender: [] - categories: - - '#hztools.' + categories: [] relme: + https://github.com/paultag: true + https://k3xec.com/: true + https://pault.ag/: true https://soylent.green/@paul: true - last_post_title: "Writing a simulator to check phased array beamforming \U0001F300" + last_post_title: "Reverse Engineering a Restaurant Pager system \U0001F37D️" last_post_description: |- - Interested in future updates? Follow me on mastodon at - @paul@soylent.green. Posts about - hz.tools will be tagged - #hztools. - - - If you're on the Fediverse, I'd very much appreciate boosts on - my - last_post_date: "2024-01-22T15:11:41Z" - last_post_link: https://k3xec.com/simulating-phased-arrays/ - last_post_categories: - - '#hztools.' - last_post_guid: 376cd6856e936000b9cd02e96a3cd4e4 + It’s been a while since I played with something new – been stuck in a bit of a + rut with radios recently - working on refining and debugging stuff I mostly + understand for the time being. The other + last_post_date: "2024-06-14T01:07:00-04:00" + last_post_link: https://k3xec.com/td158/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 6e022d6ec6526ef78b623746762b792d score_criteria: cats: 0 description: 3 - postcats: 1 + feedlangs: 1 + postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 11 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-6a2f519cf8efa1558afdaf853c35b830.md b/content/discover/feed-6a2f519cf8efa1558afdaf853c35b830.md deleted file mode 100644 index 2292546e8..000000000 --- a/content/discover/feed-6a2f519cf8efa1558afdaf853c35b830.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Philosophy Tube -date: "1970-01-01T00:00:00Z" -description: I'm Abigail, giving away a philosophy degree for free! Subscribe to learn - and boost your brain power! -params: - feedlink: https://rss.nebula.app/video/channels/philosophytube.rss?plus=true - feedtype: rss - feedid: 6a2f519cf8efa1558afdaf853c35b830 - websites: - https://nebula.tv/philosophytube/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Culture - relme: {} - last_post_title: Blooper Reel - 'The Most Misunderstood Philosopher in the World' - | Nebula Plus - last_post_description: We have fun on set hehehe - last_post_date: "2024-05-24T17:26:23Z" - last_post_link: https://nebula.tv/videos/philosophytube-blooper-reel-the-most-misunderstood-philosopher-in-the-world/ - last_post_categories: - - Culture - last_post_guid: 3c9deb2155359faf11afc5071ab34bc4 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6a362c40132321a2347e1e6c66b46b8e.md b/content/discover/feed-6a362c40132321a2347e1e6c66b46b8e.md new file mode 100644 index 000000000..532513b2d --- /dev/null +++ b/content/discover/feed-6a362c40132321a2347e1e6c66b46b8e.md @@ -0,0 +1,45 @@ +--- +title: gretzuni +date: "2024-06-02T14:57:51Z" +description: "" +params: + feedlink: https://gretzuni.com/rss/ + feedtype: rss + feedid: 6a362c40132321a2347e1e6c66b46b8e + websites: + https://gretzuni.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - hermeneuthenics + - networked-learning + relme: + https://gretzuni.com/: true + last_post_title: Learning to defer through infraculture + last_post_description: A video presentation for a Faculty of Education conference + entitled “Art (of) Education in a Changing World.â€� + last_post_date: "2024-05-31T14:04:15Z" + last_post_link: https://gretzuni.com/articles/learning-to-defer-through-infraculture + last_post_categories: + - hermeneuthenics + - networked-learning + last_post_language: "" + last_post_guid: 15fcc6290ce1569f6466f87c776e8c9a + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 12 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6a3fcbce5ed121a27a6f2faa75e36a1e.md b/content/discover/feed-6a3fcbce5ed121a27a6f2faa75e36a1e.md new file mode 100644 index 000000000..76a822006 --- /dev/null +++ b/content/discover/feed-6a3fcbce5ed121a27a6f2faa75e36a1e.md @@ -0,0 +1,55 @@ +--- +title: Craig Maloney +date: "1970-01-01T00:00:00Z" +description: More than you cared to know +params: + feedlink: https://decafbad.net/feed/index.xml + feedtype: rss + feedid: 6a3fcbce5ed121a27a6f2faa75e36a1e + websites: + https://decafbad.net/: true + https://decafbad.net/contact/: false + blogrolls: [] + recommended: [] + recommender: [] + categories: + - A Day In The Life + - Cancer + - Zen Habits + - misc + relme: + https://craigmaloney.itch.io/: true + https://decafbad.net/: true + https://dice.camp/@craigmaloney: true + last_post_title: 'Checking In: 2024-03-25' + last_post_description: |- + Checking in for 2024-03-25: + Buckle up. This is a big update. + + Yesterday I felt like I was going to explode. I compared it to the video game "Dig Dug", which has been an interesting litmus test for + last_post_date: "2024-03-25T15:34:00-04:00" + last_post_link: https://decafbad.net/2024/03/25/checking-in-2024-03-25/ + last_post_categories: + - A Day In The Life + - Cancer + - Zen Habits + - misc + last_post_language: "" + last_post_guid: 724ef67c4fe9794120114347d19c0e20 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6a475f4a4a18f54e2f9ce78f343ef77e.md b/content/discover/feed-6a475f4a4a18f54e2f9ce78f343ef77e.md new file mode 100644 index 000000000..a74de3154 --- /dev/null +++ b/content/discover/feed-6a475f4a4a18f54e2f9ce78f343ef77e.md @@ -0,0 +1,139 @@ +--- +title: All Area Code +date: "1970-01-01T00:00:00Z" +description: Just read about Area Code. +params: + feedlink: https://123hpcomsetupme.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 6a475f4a4a18f54e2f9ce78f343ef77e + websites: + https://123hpcomsetupme.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Main Area Code + last_post_description: Assuming you don't approach the web and can't visit a neighborhood + library, you can get a US region code posting from your phone administrator. Dial + "0" or call registry help and they will encourage + last_post_date: "2022-01-06T17:36:00Z" + last_post_link: https://123hpcomsetupme.blogspot.com/2022/01/main-area-code.html + last_post_categories: [] + last_post_language: "" + last_post_guid: b17c6fd860d4d382c72eed17ed4f8d68 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6a5d81a2e3e3b503a8f3d78ddaa59af9.md b/content/discover/feed-6a5d81a2e3e3b503a8f3d78ddaa59af9.md deleted file mode 100644 index 8992003a3..000000000 --- a/content/discover/feed-6a5d81a2e3e3b503a8f3d78ddaa59af9.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Comments for Daniel Bachhuber -date: "1970-01-01T00:00:00Z" -description: WordPress, better cities, and everything else -params: - feedlink: https://danielbachhuber.com/comments/feed/ - feedtype: rss - feedid: 6a5d81a2e3e3b503a8f3d78ddaa59af9 - websites: - https://danielbachhuber.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on “70% confident” by 70% Confident - Aaron Jorbin - last_post_description: '[…] Daniel Bachhuber – 70% Confident […]' - last_post_date: "2024-02-08T02:14:06Z" - last_post_link: https://danielbachhuber.com/70-confident/#comment-314519 - last_post_categories: [] - last_post_guid: 9eb4a0e13f69f90d4366bf7114127a16 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6a61901802dcaa6eb0b356073539c6da.md b/content/discover/feed-6a61901802dcaa6eb0b356073539c6da.md index 9f8f5255d..9178b8581 100644 --- a/content/discover/feed-6a61901802dcaa6eb0b356073539c6da.md +++ b/content/discover/feed-6a61901802dcaa6eb0b356073539c6da.md @@ -11,48 +11,43 @@ params: blogrolls: [] recommended: [] recommender: - - https://chrisburnell.com/feed.xml - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ - - https://hacdias.com/feed.xml categories: - Article - - fitbit - - fitness - - garmin - - google - - health + - mokobara + - review + - travel relme: {} - last_post_title: Fitbit/Google need to do better. - last_post_description: 'Out of nowhere, a couple of weeks ago, without ever installing - any firmware update (at least intentionally), my Fitbit Charge 5 started: As a - reminder, I bought this thing for $155 off Amazon back in' - last_post_date: "2024-01-18T05:56:25Z" - last_post_link: https://rusingh.com/fitbit-google-need-to-do-better/ + last_post_title: 'Review: The Em Travel Backpack by Mokobara.' + last_post_description: 'Note: This… story is at least two months old now, but I + think it deserves to be on the internet for someone looking for reviews of this + thing in India. I’ve just taken it out of my drafts to' + last_post_date: "2024-06-06T08:07:47Z" + last_post_link: https://rusingh.com/review-the-em-travel-backpack-by-mokobara/ last_post_categories: - Article - - fitbit - - fitness - - garmin - - google - - health - last_post_guid: 299bf7f344084137cdb78d4132423823 + - mokobara + - review + - travel + last_post_language: "" + last_post_guid: 2726d6993f97f385e7d376427bd731aa score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 16 + score: 20 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-6a630f15c78c06df529a2fff6ea3fad0.md b/content/discover/feed-6a630f15c78c06df529a2fff6ea3fad0.md new file mode 100644 index 000000000..ca8770b50 --- /dev/null +++ b/content/discover/feed-6a630f15c78c06df529a2fff6ea3fad0.md @@ -0,0 +1,41 @@ +--- +title: Python Notes +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://pythonnotes.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 6a630f15c78c06df529a2fff6ea3fad0 + websites: + https://pythonnotes.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://draft.blogger.com/profile/16043745572254494898: true + https://pythonnotes.blogspot.com/: true + last_post_title: Why I stopped coding - and why I would like to do it again + last_post_description: "" + last_post_date: "2007-01-19T18:53:00Z" + last_post_link: https://pythonnotes.blogspot.com/2007/01/why-i-stopped-coding-and-why-i-would.html + last_post_categories: [] + last_post_language: "" + last_post_guid: fbfe8023e37f3edce4c0122b6f5aee4d + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6a833021756bfac9d760d631f5d0c939.md b/content/discover/feed-6a833021756bfac9d760d631f5d0c939.md new file mode 100644 index 000000000..426f55f68 --- /dev/null +++ b/content/discover/feed-6a833021756bfac9d760d631f5d0c939.md @@ -0,0 +1,53 @@ +--- +title: Kicks Condor +date: "2022-07-22T21:22:53Z" +description: LEECHING AND LINKING IN THE HYPERTEXT KINGDOM +params: + feedlink: https://www.kickscondor.com/feed.xml + feedtype: atom + feedid: 6a833021756bfac9d760d631f5d0c939 + websites: + https://www.kickscondor.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - death + - hypertext + - imagery + - note + - quotes + - war + relme: + https://github.com/kickscondor: true + https://www.kickscondor.com/: true + last_post_title: Ending Gel + last_post_description: "" + last_post_date: "2022-07-22T21:22:05Z" + last_post_link: https://www.kickscondor.com/ending-gel + last_post_categories: + - death + - hypertext + - imagery + - note + - quotes + - war + last_post_language: "" + last_post_guid: 80d73845280c2d4caa4c347f24bff07d + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-6a90e1791cfa0b5f2fc0db25ff0afd2d.md b/content/discover/feed-6a90e1791cfa0b5f2fc0db25ff0afd2d.md new file mode 100644 index 000000000..8a9be975d --- /dev/null +++ b/content/discover/feed-6a90e1791cfa0b5f2fc0db25ff0afd2d.md @@ -0,0 +1,56 @@ +--- +title: 'Tales from the Potts House: William Hope Hodgson' +date: "1970-01-01T00:00:00Z" +description: Audio recordings of the works of William Hope Hodgson, by Paul R. Potts. +params: + feedlink: https://hodgecast.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 6a90e1791cfa0b5f2fc0db25ff0afd2d + websites: + https://hodgecast.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Administrativia + - Episode + - Livestream + - Podcast + - Recording Technology + relme: + https://armstrong-collection.blogspot.com/: true + https://geeklikemetoo.blogspot.com/: true + https://geekversusguitar.blogspot.com/: true + https://hodgecast.blogspot.com/: true + https://pottscast.blogspot.com/: true + https://praisecurseandrecurse.blogspot.com/: true + https://thebooksthatwroteme.blogspot.com/: true + https://www.blogger.com/profile/04401509483200614806: true + last_post_title: Arthur Machen's "The White People" (Live Reading) (March 22, 2020) + last_post_description: In the spring of 2020, while stuck in isolation due to the + COVID-19 pandemic, I began experimenting with streaming live audio to Twitch. + I wanted to mix, chop, and screw with Creative Commons + last_post_date: "2020-03-28T01:14:00Z" + last_post_link: https://hodgecast.blogspot.com/2020/03/arthur-machens-white-people-live.html + last_post_categories: + - Episode + - Livestream + last_post_language: "" + last_post_guid: d21d1784ae0d70330cfca49c462650d5 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6aaca63171454f908a7e326aa42ae58f.md b/content/discover/feed-6aaca63171454f908a7e326aa42ae58f.md new file mode 100644 index 000000000..f095cff28 --- /dev/null +++ b/content/discover/feed-6aaca63171454f908a7e326aa42ae58f.md @@ -0,0 +1,105 @@ +--- +title: A geek's interests +date: "1970-01-01T00:00:00Z" +description: "Comments and news about Linux, Joomla, PHP, FreeBSD and generally Open + Source Software, especially everything that concerns the Hellenic (Greek) Community. + You will also find call for papers. \nRarely" +params: + feedlink: https://velonis.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 6aaca63171454f908a7e326aa42ae58f + websites: + https://velonis.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 32-bit 64-bit opera flash linux ubuntu + - C/C++ + - GPSR + - HTML + - Joomla + - PHP + - Perl + - Perl regex + - Perl scripts + - Tidy + - Wireless networks + - ajaxwindows + - call for papers + - code injection + - conferences + - conflict resolution + - developing + - encryption + - eyeos + - firewalls + - form validation + - frameworks + - ghost + - ieee + - internet os + - iptv + - j2se + - javascripts + - joomfish + - joomla module + - latex + - linux + - linux evolution antispam + - linux fedora + - linux outlook antispam e-mail + - lyx + - manual + - mesh.com + - multimedia + - netbeans + - ns-2 + - ns-3 + - open source + - opnet + - optimization + - routing protocols + - security + - sensors + - simulations + - ssh + - symfony + - tips + - ubuntu + - ubuntu intrepid + - uml + - virtualbox + - vmware joomla linux fedora developing + - wireless + - yii + - διπλωματική + - πτυχιακή + relme: + https://velonis.blogspot.com/: true + last_post_title: Bypass Firewalls with Android SSH Tunneling + last_post_description: "" + last_post_date: "2012-01-23T09:10:00Z" + last_post_link: https://velonis.blogspot.com/2012/01/bypass-firewalls-with-android-ssh.html + last_post_categories: + - firewalls + - ssh + last_post_language: "" + last_post_guid: caccf29a369c5ba673a3e4ba7a779484 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6ab67920109678ede6103b26140444be.md b/content/discover/feed-6ab67920109678ede6103b26140444be.md index 4a8387dc8..795f7acba 100644 --- a/content/discover/feed-6ab67920109678ede6103b26140444be.md +++ b/content/discover/feed-6ab67920109678ede6103b26140444be.md @@ -11,38 +11,46 @@ params: recommended: [] recommender: - https://frankmeeuwsen.com/feed.xml + - https://roytang.net/blog/feed/rss/ categories: + - John ruskin + - Louis nizer - Miscellany - - bookpeople - - deb chachra - - events - - infrastructure - - Mandy brown + - the hands + - the head + - the head the heart the hands + - the heart relme: {} - last_post_title: I’m interviewing Deb Chachra at Bookpeople - last_post_description: Later this month I’m interviewing my friend Deb Chachra about - her book, How Infrastructure Works. Details about the event are here.  Mandy Brown - wrote about the book in a recent post, “Against - last_post_date: "2024-05-31T20:21:45Z" - last_post_link: https://austinkleon.com/2024/05/31/im-interviewing-deb-chachra-at-bookpeople/ + last_post_title: Head, heart, and hands + last_post_description: “Fine art,” said John Ruskin (1819-1900), is “that in which + the hand, the head, and the heart of man go together.” Many people like to quote + St. Francis (1181-1226) as saying something like, + last_post_date: "2024-07-03T19:03:49Z" + last_post_link: https://austinkleon.com/2024/07/03/head-heart-and-hands/ last_post_categories: + - John ruskin + - Louis nizer - Miscellany - - bookpeople - - deb chachra - - events - - infrastructure - - Mandy brown - last_post_guid: aaa6b0ee3e73805b7d68e961b038d4ce + - the hands + - the head + - the head the heart the hands + - the heart + last_post_language: "" + last_post_guid: 317f48a2ee50349f9034e5bcb85e1446 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 11 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-6abb7b55def938598bf6b7451450d57f.md b/content/discover/feed-6abb7b55def938598bf6b7451450d57f.md new file mode 100644 index 000000000..cd30d465c --- /dev/null +++ b/content/discover/feed-6abb7b55def938598bf6b7451450d57f.md @@ -0,0 +1,45 @@ +--- +title: Learn Haskell +date: "2024-03-13T10:23:12-07:00" +description: Learn Haskell in just 5 minutes per day +params: + feedlink: https://learnhaskell.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 6abb7b55def938598bf6b7451450d57f + websites: + https://learnhaskell.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://alchymiastudio.blogspot.com/: true + https://happstack.blogspot.com/: true + https://learnhaskell.blogspot.com/: true + https://musictheoryforeveryone.blogspot.com/: true + https://nhlab.blogspot.com/: true + https://www.blogger.com/profile/18373967098081701148: true + last_post_title: 'Lesson 4: Types' + last_post_description: "" + last_post_date: "2007-11-13T21:35:38-08:00" + last_post_link: https://learnhaskell.blogspot.com/2007/09/lesson-4-types.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 0dbe6fe92e97acf5ab7c38ee5917a395 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6ac052c785504fa0f3f268ef6da7a725.md b/content/discover/feed-6ac052c785504fa0f3f268ef6da7a725.md new file mode 100644 index 000000000..23048cb31 --- /dev/null +++ b/content/discover/feed-6ac052c785504fa0f3f268ef6da7a725.md @@ -0,0 +1,142 @@ +--- +title: Chegg Vs School +date: "1970-01-01T00:00:00Z" +description: School and chegg are boht are good places. +params: + feedlink: https://seocobweb.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 6ac052c785504fa0f3f268ef6da7a725 + websites: + https://seocobweb.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - School is Good + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: School and Chegg + last_post_description: |- + And afterward, there was additionally the issue with the + school books that I not, at this point, required. I recall that I once + purchased a book on writing from a grounds book shop. Toward the finish + last_post_date: "2021-05-06T18:22:00Z" + last_post_link: https://seocobweb.blogspot.com/2021/05/school-and-chegg.html + last_post_categories: + - School is Good + last_post_language: "" + last_post_guid: 9a48828e9ce73fe5d0a2d5746b6b67d6 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6ad789d5146c4fdc86321c3b736b3300.md b/content/discover/feed-6ad789d5146c4fdc86321c3b736b3300.md new file mode 100644 index 000000000..6ba71ec33 --- /dev/null +++ b/content/discover/feed-6ad789d5146c4fdc86321c3b736b3300.md @@ -0,0 +1,45 @@ +--- +title: Rejås Blog +date: "1970-01-01T00:00:00Z" +description: ~ Alla skall ju ha en ~ +params: + feedlink: https://blog.rejas.se/feed/ + feedtype: rss + feedid: 6ad789d5146c4fdc86321c3b736b3300 + websites: + https://blog.rejas.se/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Simning + relme: + https://blog.rejas.se/: true + https://mastodon.rejas.se/@marcus: true + last_post_title: Vägen till medaljer + last_post_description: Den här texten handlar om Kajsa. Hon är elitidrottare och + har precis tagit Guld i ett internationellt mästerskap. Det pirrar i hela hennes + kropp när hon böjer sig ner och får medaljen runt sin + last_post_date: "2024-03-06T20:44:38Z" + last_post_link: https://blog.rejas.se/2024/03/06/3311/ + last_post_categories: + - Simning + last_post_language: "" + last_post_guid: 7ac6150e65f36d7270bb21939620ba16 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: sv +--- diff --git a/content/discover/feed-6ad9b84bc7e1fe1536da943ee2e7065c.md b/content/discover/feed-6ad9b84bc7e1fe1536da943ee2e7065c.md new file mode 100644 index 000000000..54172c30c --- /dev/null +++ b/content/discover/feed-6ad9b84bc7e1fe1536da943ee2e7065c.md @@ -0,0 +1,141 @@ +--- +title: Snapchat Vs OtherApp +date: "1970-01-01T00:00:00Z" +description: Snap chat is new age of life for youngster. +params: + feedlink: https://trendmicro-login.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 6ad9b84bc7e1fe1536da943ee2e7065c + websites: + https://trendmicro-login.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Snap chat is new age of life. + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Snap chat Vs OtherApps + last_post_description: In any case, I don't prefer to go off the deep end and do + every one of these things on Snapchat. Systems administration with People The + following stage after the essential involved experience was to + last_post_date: "2021-04-23T20:09:00Z" + last_post_link: https://trendmicro-login.blogspot.com/2021/04/snap-chat-vs-otherapps.html + last_post_categories: + - Snap chat is new age of life. + last_post_language: "" + last_post_guid: faceeda9daea2b2a1f5ffb9d56ec99cc + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6b017848fa4490753308f48854d3bc78.md b/content/discover/feed-6b017848fa4490753308f48854d3bc78.md deleted file mode 100644 index 765601080..000000000 --- a/content/discover/feed-6b017848fa4490753308f48854d3bc78.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Eric A. Meyer -date: "1970-01-01T00:00:00Z" -description: Public posts from @Meyerweb@mastodon.social -params: - feedlink: https://mastodon.social/@Meyerweb.rss - feedtype: rss - feedid: 6b017848fa4490753308f48854d3bc78 - websites: - https://mastodon.social/@Meyerweb: true - https://mastodon.social/@meyerweb: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/meyerweb: true - https://meyerweb.com/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6b0717019296eb688848142e3da11428.md b/content/discover/feed-6b0717019296eb688848142e3da11428.md new file mode 100644 index 000000000..ce2794b4c --- /dev/null +++ b/content/discover/feed-6b0717019296eb688848142e3da11428.md @@ -0,0 +1,42 @@ +--- +title: Lattices in Sage +date: "2024-07-02T23:40:06+02:00" +description: Google Summer of Code 2012 project by Jan Pöschko +params: + feedlink: https://gsoc-sage-lattices.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 6b0717019296eb688848142e3da11428 + websites: + https://gsoc-sage-lattices.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://gsoc-sage-lattices.blogspot.com/: true + https://tripediac.blogspot.com/: true + https://www.blogger.com/profile/13654908322659541350: true + last_post_title: Update on class structure, lattice constructors, plotting + last_post_description: "" + last_post_date: "2012-08-24T02:21:45+02:00" + last_post_link: https://gsoc-sage-lattices.blogspot.com/2012/08/update-on-class-structure-lattice.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 287850498afef7c8809b400e90b2b8bd + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6b0f4da28c0cba85857ab551f89c4f30.md b/content/discover/feed-6b0f4da28c0cba85857ab551f89c4f30.md deleted file mode 100644 index ae72f8b67..000000000 --- a/content/discover/feed-6b0f4da28c0cba85857ab551f89c4f30.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: '@gruber.foo - John Gruber' -date: "1970-01-01T00:00:00Z" -description: I write Daring Fireball and created Markdown. -params: - feedlink: https://bsky.app/profile/did:plc:ddv2lahklhbpjxcmq5osnza5/rss - feedtype: rss - feedid: 6b0f4da28c0cba85857ab551f89c4f30 - websites: - https://bsky.app/profile/gruber.foo: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6b249381b466e03b4baf67eacfb4f214.md b/content/discover/feed-6b249381b466e03b4baf67eacfb4f214.md deleted file mode 100644 index 85f5c2513..000000000 --- a/content/discover/feed-6b249381b466e03b4baf67eacfb4f214.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Sindre Sorhus -date: "1970-01-01T00:00:00Z" -description: Public posts from @sindresorhus@mastodon.social -params: - feedlink: https://mastodon.social/@sindresorhus.rss - feedtype: rss - feedid: 6b249381b466e03b4baf67eacfb4f214 - websites: - https://mastodon.social/@sindresorhus: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/sindresorhus: true - https://sindresorhus.com/apps: true - https://sindresorhus.substack.com/: false - https://twitter.com/sindresorhus: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6b4549c54b802c5a2f7ce62e766b8e78.md b/content/discover/feed-6b4549c54b802c5a2f7ce62e766b8e78.md deleted file mode 100644 index 8e770dc86..000000000 --- a/content/discover/feed-6b4549c54b802c5a2f7ce62e766b8e78.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Comments for Sasquatchers -date: "1970-01-01T00:00:00Z" -description: Tactical Cryptozoology! -params: - feedlink: https://sasquatchers.spectrecollie.com/comments/feed/ - feedtype: rss - feedid: 6b4549c54b802c5a2f7ce62e766b8e78 - websites: - https://sasquatchers.spectrecollie.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6b48f7e15dd2f57a4c4192ceb0a2d05c.md b/content/discover/feed-6b48f7e15dd2f57a4c4192ceb0a2d05c.md index 2b975a0ac..ac0d43f6b 100644 --- a/content/discover/feed-6b48f7e15dd2f57a4c4192ceb0a2d05c.md +++ b/content/discover/feed-6b48f7e15dd2f57a4c4192ceb0a2d05c.md @@ -7,9 +7,9 @@ params: feedtype: rss feedid: 6b48f7e15dd2f57a4c4192ceb0a2d05c websites: - https://blog.joeross.me/: false + https://joeross.me: false https://joeross.me/: true - https://joeross.micro.blog/: false + https://joeross.me/blogroll/: false blogrolls: - https://joeross.me/.well-known/recommendations.opml recommended: @@ -41,6 +41,7 @@ params: - https://localghost.dev/musics.xml - https://localghost.dev/podcasts.xml - https://localghost.dev/recipes.xml + - https://matthewcassinelli.com/comments/feed/ - https://notes.neatnik.net/atom.xml - https://ohhelloana.blog/feed.links.xml - https://granary.io/url?hub=https%3A//bridgy-fed.superfeedr.com/&input=html&output=atom&url=https%3A//werd.io/content/all/ @@ -54,38 +55,39 @@ params: recommender: [] categories: [] relme: - https://bsky.app/profile/joeross.me: false https://github.com/joeross: true + https://joeross.lol/: true https://joeross.me/: true - https://joeross.me/feed.json: false - https://joeross.me/feed.xml: false - https://joeross.micro.blog/: true + https://joeross.me/blogroll/: true + https://joeross.neocities.org/: true https://joeross.omg.lol/: true + https://joeross.omg.lol/now: true https://joeross.proven.lol/: true https://joeross.weblog.lol/: true https://mastodon.social/@joeross: true - https://micro.blog/joeross: false - https://read.cv/joeross: false + https://moth.social/@joeross: true https://status.lol/joeross: true - https://tumblr.joeross.me/: false - https://twitter.com/joeross: false - https://www.threads.net/@joeross.me: false last_post_title: Oliver & Company, 1988 last_post_description: Watched on Saturday June 1, 2024. last_post_date: "2024-06-01T19:40:48-04:00" last_post_link: https://joeross.me/2024/06/01/oliver-amp-company.html last_post_categories: [] + last_post_language: "" last_post_guid: 0ba3b9e885ba3c353e96f2be8eaf453a score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 10 relme: 2 title: 3 website: 2 - score: 17 + score: 21 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-6b608923da4d8f41d99a9c0a4a66ea66.md b/content/discover/feed-6b608923da4d8f41d99a9c0a4a66ea66.md new file mode 100644 index 000000000..3af034886 --- /dev/null +++ b/content/discover/feed-6b608923da4d8f41d99a9c0a4a66ea66.md @@ -0,0 +1,40 @@ +--- +title: My Test Blog +date: "2024-03-08T09:28:06-08:00" +description: "" +params: + feedlink: https://jamesssss-test-blog.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 6b608923da4d8f41d99a9c0a4a66ea66 + websites: + https://jamesssss-test-blog.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://jamesssss-test-blog.blogspot.com/: true + last_post_title: Testing 1 2 3 + last_post_description: "" + last_post_date: "2013-09-03T11:22:44-07:00" + last_post_link: https://jamesssss-test-blog.blogspot.com/2013/09/testing-1-2-3.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 9c8fa34833241f6304ed2f2f7e4293e7 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6b8706a05da0d42c661024ee4dde0450.md b/content/discover/feed-6b8706a05da0d42c661024ee4dde0450.md new file mode 100644 index 000000000..6387d3d35 --- /dev/null +++ b/content/discover/feed-6b8706a05da0d42c661024ee4dde0450.md @@ -0,0 +1,44 @@ +--- +title: gvSIG blog +date: "1970-01-01T00:00:00Z" +description: gvSIG project blog +params: + feedlink: https://blog.gvsig.org/feed/ + feedtype: rss + feedid: 6b8706a05da0d42c661024ee4dde0450 + websites: + https://blog.gvsig.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - gvSIG Desktop + relme: + https://blog.gvsig.org/: true + last_post_title: Discurso de aceptación del Premio Nacional de Ciencias Geográficas + last_post_description: Excmo. Sr. Jesús Gómez, Subsecretario de Transportes y Movilidad + Sostenible, distinguidas autoridades, señoras y señores Es para mi un inmenso + honor y una profunda satisfacción recibir, en + last_post_date: "2024-06-28T14:13:50Z" + last_post_link: https://blog.gvsig.org/2024/06/28/discurso-de-aceptacion-del-premio-nacional-de-ciencias-geograficas/ + last_post_categories: + - gvSIG Desktop + last_post_language: "" + last_post_guid: c9944dc5781c359cb60bb6c662b92c5f + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-6bc246a9896ea4ec7c2db7a439630875.md b/content/discover/feed-6bc246a9896ea4ec7c2db7a439630875.md new file mode 100644 index 000000000..3da239b9f --- /dev/null +++ b/content/discover/feed-6bc246a9896ea4ec7c2db7a439630875.md @@ -0,0 +1,44 @@ +--- +title: ScummVM news +date: "2024-07-03T21:18:03Z" +description: ScummVM is a cross-platform interpreter for several point-and-click adventure + engines. This includes all SCUMM-based adventures by LucasArts, Simon the Sorcerer + 1&2 by AdventureSoft, Beneath a Steel +params: + feedlink: https://www.scummvm.org/feeds/atom/ + feedtype: atom + feedid: 6bc246a9896ea4ec7c2db7a439630875 + websites: + https://www.scummvm.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://github.com/scummvm: true + https://manitu.social/@scummvm: true + https://www.scummvm.org/: true + last_post_title: “Your move, Commander.” + last_post_description: "" + last_post_date: "2024-07-03T21:18:03Z" + last_post_link: https://www.scummvm.org/news/20240703 + last_post_categories: [] + last_post_language: "" + last_post_guid: e2a8fe0e6374160968724136364de268 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-6bcdc40d6de05b9a1979387c772ee125.md b/content/discover/feed-6bcdc40d6de05b9a1979387c772ee125.md new file mode 100644 index 000000000..563fb5355 --- /dev/null +++ b/content/discover/feed-6bcdc40d6de05b9a1979387c772ee125.md @@ -0,0 +1,41 @@ +--- +title: Olivier's Eclipse Blog +date: "2024-02-18T23:45:52-05:00" +description: Opinions of a JDT/Core committer +params: + feedlink: https://olivier-eclipse.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 6bcdc40d6de05b9a1979387c772ee125 + websites: + https://olivier-eclipse.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://olivier-eclipse.blogspot.com/: true + https://www.blogger.com/profile/12941869845892308925: true + last_post_title: Evil call to Character.getNumericValue(char) + last_post_description: "" + last_post_date: "2011-09-07T14:18:26-04:00" + last_post_link: https://olivier-eclipse.blogspot.com/2011/09/evil-call-to-charactergetnumericvaluech.html + last_post_categories: [] + last_post_language: "" + last_post_guid: ff00d83b8146bd689f32ff2ec84981c5 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6bd5a84de6561553fa41ffddbba28f23.md b/content/discover/feed-6bd5a84de6561553fa41ffddbba28f23.md deleted file mode 100644 index 653f0db38..000000000 --- a/content/discover/feed-6bd5a84de6561553fa41ffddbba28f23.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Trakt -date: "1970-01-01T00:00:00Z" -description: Public posts from @trakt@ruby.social -params: - feedlink: https://ruby.social/@trakt.rss - feedtype: rss - feedid: 6bd5a84de6561553fa41ffddbba28f23 - websites: - https://ruby.social/@trakt: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://support.trakt.tv/: false - https://trakt.tv/: true - https://trakt.tv/a/trakt-android: false - https://trakt.tv/a/trakt-ios: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6beaa0f8ee8807b51c33002fed4b8e18.md b/content/discover/feed-6beaa0f8ee8807b51c33002fed4b8e18.md new file mode 100644 index 000000000..74f07ed38 --- /dev/null +++ b/content/discover/feed-6beaa0f8ee8807b51c33002fed4b8e18.md @@ -0,0 +1,54 @@ +--- +title: The PolyBoRi Blog +date: "1970-01-01T00:00:00Z" +description: This is my blog about our computer-algebra framework PolyBoRi, which + is a combined C++/Python system for Gröbner bases etc. over Boolean rings. +params: + feedlink: https://polybori.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 6beaa0f8ee8807b51c33002fed4b8e18 + websites: + https://polybori.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Computer Algebra + - Math + - Math Singular + - PolyBoRi + - Sage + - Singular + - lmonade + - pdf + - rpm + - unit test + relme: + https://polybori.blogspot.com/: true + https://www.blogger.com/profile/00289750136242395664: true + last_post_title: GSOC 2013 project progress for weeks 0-4 + last_post_description: |- + I am Ioana Tamas, and this is a summary of the weekly updates of my GSOC 2013 project for Polybori. + Hopefully, the next updates will be posted in separate blog posts. My repository is: http + last_post_date: "2013-07-20T16:07:00Z" + last_post_link: https://polybori.blogspot.com/2013/07/gsoc-2013-project-progress-for-weeks-0-4.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 7e806391cdcf46b67ee0e9429a58b7b5 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6c09b4a6209af5c30dad6b3c6213c3b8.md b/content/discover/feed-6c09b4a6209af5c30dad6b3c6213c3b8.md new file mode 100644 index 000000000..754207fad --- /dev/null +++ b/content/discover/feed-6c09b4a6209af5c30dad6b3c6213c3b8.md @@ -0,0 +1,48 @@ +--- +title: nhaines.com +date: "2018-09-30T01:05:38-07:00" +description: Nathan Haines is an author and computer instructor who loves space, science, + adventure, and Free Software. +params: + feedlink: https://www.nhaines.com/feed.xml + feedtype: atom + feedid: 6c09b4a6209af5c30dad6b3c6213c3b8 + websites: + https://www.nhaines.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - fcs + - ubuntu + relme: + https://mastodon.social/@nhaines: true + https://www.nhaines.com/: true + last_post_title: Announcing the Ubuntu 18.10 Free Culture Showcase winners + last_post_description: 'October approaches, and Ubuntu marches steadly along the + road from one LTS to another. Ubuntu 18.10 is another step in Ubuntu’s future. + And now it’s time to unveil a small part of that change:' + last_post_date: "2018-09-28T00:00:00-07:00" + last_post_link: https://www.nhaines.com/blog/2018/09/28/announcing-ubuntu-18.10-free-culture-showcase-winners/ + last_post_categories: + - fcs + - ubuntu + last_post_language: "" + last_post_guid: df562c1520591185338d3a23969bd9ec + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6c2ef2cd88dd5775827b954b5d6b7cef.md b/content/discover/feed-6c2ef2cd88dd5775827b954b5d6b7cef.md deleted file mode 100644 index 2e36a483b..000000000 --- a/content/discover/feed-6c2ef2cd88dd5775827b954b5d6b7cef.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: "\U0001F427sima\U0001F427" -date: "1970-01-01T00:00:00Z" -description: Public posts from @sima@chaos.social -params: - feedlink: https://chaos.social/@sima.rss - feedtype: rss - feedid: 6c2ef2cd88dd5775827b954b5d6b7cef - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6c3e6da4ff3e7bda362cf4329753d6a8.md b/content/discover/feed-6c3e6da4ff3e7bda362cf4329753d6a8.md deleted file mode 100644 index c831997bb..000000000 --- a/content/discover/feed-6c3e6da4ff3e7bda362cf4329753d6a8.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Comments for Open Thinkering -date: "1970-01-01T00:00:00Z" -description: Doug Belshaw's blog -params: - feedlink: https://dougbelshaw.com/blog/comments/feed/ - feedtype: rss - feedid: 6c3e6da4ff3e7bda362cf4329753d6a8 - websites: - https://dougbelshaw.com/blog: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: 'Comment on TB871: Toast and wicked problems by Geoff.elliott2@btopenworld.com' - last_post_description: See the work of lindstone and mitroff re multiple perspectives.some - will always take a very specific world view irrespective of the context eg, some people - only take a corporate view, .eg, vennels - last_post_date: "2024-05-30T12:33:01Z" - last_post_link: https://dougbelshaw.com/blog/2024/05/17/tb871-toast-and-wicked-problems/#comment-682448 - last_post_categories: [] - last_post_guid: d8e35e87c0ac85cb5c4b0e3dfce32827 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6c4feb28363636b8d41cc5dcb2ba8dd8.md b/content/discover/feed-6c4feb28363636b8d41cc5dcb2ba8dd8.md new file mode 100644 index 000000000..d23da67d6 --- /dev/null +++ b/content/discover/feed-6c4feb28363636b8d41cc5dcb2ba8dd8.md @@ -0,0 +1,139 @@ +--- +title: Ddos is Best friend +date: "1970-01-01T00:00:00Z" +description: Ddos is best privacy if you secure it. +params: + feedlink: https://luisfranciscomacias.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 6c4feb28363636b8d41cc5dcb2ba8dd8 + websites: + https://luisfranciscomacias.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: All about Ddos illegal + last_post_description: DDoS assaults work by flooding a machine with a great many + parcels. These data demands break down transmission capacity and put a strain + on your worker. In the long run, and with enough assault + last_post_date: "2021-04-07T18:13:00Z" + last_post_link: https://luisfranciscomacias.blogspot.com/2021/04/all-about-ddos-illegal.html + last_post_categories: [] + last_post_language: "" + last_post_guid: ce2fec3753636b2fba7ef40e2ab86cc4 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6c57c9db0adb0ee2b2a12d4a3c0915ef.md b/content/discover/feed-6c57c9db0adb0ee2b2a12d4a3c0915ef.md new file mode 100644 index 000000000..edb0351a4 --- /dev/null +++ b/content/discover/feed-6c57c9db0adb0ee2b2a12d4a3c0915ef.md @@ -0,0 +1,41 @@ +--- +title: Notes on Haskell +date: "2024-07-07T02:08:44-05:00" +description: "" +params: + feedlink: https://notes-on-haskell.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 6c57c9db0adb0ee2b2a12d4a3c0915ef + websites: + https://notes-on-haskell.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://notes-on-haskell.blogspot.com/: true + https://www.blogger.com/profile/11941071792943377879: true + last_post_title: Celebrating Ada Lovelace Day - Dr. Rebecca Mercuri + last_post_description: "" + last_post_date: "2010-03-24T22:50:36-05:00" + last_post_link: https://notes-on-haskell.blogspot.com/2010/03/celebrating-ada-lovelace-day-dr-rebecca.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 9f9cd83ead58bae4867fa452bd0d87a3 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6c5d4b5000cceea1c53b000fca5f85e1.md b/content/discover/feed-6c5d4b5000cceea1c53b000fca5f85e1.md deleted file mode 100644 index 12e42c7bf..000000000 --- a/content/discover/feed-6c5d4b5000cceea1c53b000fca5f85e1.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Laura Kalbag -date: "1970-01-01T00:00:00Z" -description: Public posts from @laura@mastodon.laurakalbag.com -params: - feedlink: https://mastodon.laurakalbag.com/@laura.rss - feedtype: rss - feedid: 6c5d4b5000cceea1c53b000fca5f85e1 - websites: - https://mastodon.laurakalbag.com/@laura: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://abookapart.com/products/accessibility-for-everyone: false - https://laurakalbag.com/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6c5d8353de2fc5dc1a9330407b395ef7.md b/content/discover/feed-6c5d8353de2fc5dc1a9330407b395ef7.md new file mode 100644 index 000000000..2ca897e80 --- /dev/null +++ b/content/discover/feed-6c5d8353de2fc5dc1a9330407b395ef7.md @@ -0,0 +1,51 @@ +--- +title: Theresa O’Connor +date: "2024-07-01T00:00:00Z" +description: "" +params: + feedlink: https://tess.oconnor.cx/feed + feedtype: atom + feedid: 6c5d8353de2fc5dc1a9330407b395ef7 + websites: + https://tess.oconnor.cx/: true + blogrolls: [] + recommended: [] + recommender: + - https://alexsci.com/blog/rss.xml + categories: + - federalist-papers + - hamilton + - politics + relme: + https://cohost.org/hober: true + https://github.com/hober: true + https://mastodon.social/@hober: true + https://tess.oconnor.cx/: true + last_post_title: “And from his being at all times liable to prosecution in the common + course of law” + last_post_description: "" + last_post_date: "2024-07-01T00:00:00Z" + last_post_link: https://tess.oconnor.cx/2024/07/federalist-77 + last_post_categories: + - federalist-papers + - hamilton + - politics + last_post_language: "" + last_post_guid: 2f36eff2dd8a929a1cd6c43daca702dc + score_criteria: + cats: 0 + description: 0 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-6c658d93957482b7980d4cf1547a400c.md b/content/discover/feed-6c658d93957482b7980d4cf1547a400c.md new file mode 100644 index 000000000..114316bc5 --- /dev/null +++ b/content/discover/feed-6c658d93957482b7980d4cf1547a400c.md @@ -0,0 +1,137 @@ +--- +title: Uber Memes +date: "2024-03-13T01:03:15-07:00" +description: Uber is so popular and therefore we have good collection of Uber Memes. +params: + feedlink: https://buzzbgoneus.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 6c658d93957482b7980d4cf1547a400c + websites: + https://buzzbgoneus.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Get hug collection of Uber Memes. + last_post_description: "" + last_post_date: "2021-10-14T14:42:07-07:00" + last_post_link: https://buzzbgoneus.blogspot.com/2020/11/get-hug-collection-of-uber-memes.html + last_post_categories: [] + last_post_language: "" + last_post_guid: db003b3635eaa33ec7f42e152b1a428f + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6c71f80f772a19c4169aeae3fecd746c.md b/content/discover/feed-6c71f80f772a19c4169aeae3fecd746c.md new file mode 100644 index 000000000..e03b2fe58 --- /dev/null +++ b/content/discover/feed-6c71f80f772a19c4169aeae3fecd746c.md @@ -0,0 +1,61 @@ +--- +title: The Maps and Geo Blog +date: "2024-06-08T16:42:03+02:00" +description: "" +params: + feedlink: https://ml4711.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 6c71f80f772a19c4169aeae3fecd746c + websites: + https://ml4711.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - FOSDEM + - GNOME Maps 3.34 + - GNOME Maps 3.36 + - GNOME Maps 3.38 + - excursions + - gnome + - gnome maps + - gpx + - gtfs + - gtk+ + - gtk4. + - libshumate + - maps + - openstreetmap + - routing + - summer + - transit + - travel + relme: + https://ml4711.blogspot.com/: true + last_post_title: May Maps + last_post_description: "" + last_post_date: "2024-05-11T15:23:01+02:00" + last_post_link: https://ml4711.blogspot.com/2024/05/may-maps.html + last_post_categories: + - gnome + - gnome maps + - maps + last_post_language: "" + last_post_guid: c4870b8d84ba6d36b3186d0002a661fe + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6c8812603840912bc6389e7bb0c0caeb.md b/content/discover/feed-6c8812603840912bc6389e7bb0c0caeb.md index eb3bf9c23..02c24f041 100644 --- a/content/discover/feed-6c8812603840912bc6389e7bb0c0caeb.md +++ b/content/discover/feed-6c8812603840912bc6389e7bb0c0caeb.md @@ -12,82 +12,40 @@ params: recommended: [] recommender: [] categories: - - misconception - - air resistance - - energy - - gravity - - astronomy - - estimate - - textbook - - child - - dimensional analysis - - force - - high school - - mathematics - - Earth - - education research - - elementary school - - kinematics - - problem - - reading - - symmetry - - engineering - - environment - - geometry - - mechanics - - momentum - - numerical integration - - olpc - - pre-health - - rotation - - sport - - statistics - - thermodynamics - - Sun - - astrophysics - - atom - - automobile - - ballistics - - biomechanics - - classroom - - college - - contact force - - drag - - evaluation - - exam - - impedance matching - - information - - optics - - planetarium - - radiation - - regret - - scientific method - - star - - stress - - syllabus - - vector - - weight - Brahe - Copernicus + - Earth - Einstein - Galileo - Hooke - Kepler - Moon + - Sun - admissions + - air resistance - approximation - architecture - arithmetic - assessment + - astronomy + - astrophysics - atmosphere + - atom - attention + - automobile + - ballistics - bayes - bet + - biomechanics - calculus + - child + - classroom - code + - college - collision - computer - constructivism + - contact force - convection - coordinates - coriolis @@ -95,58 +53,104 @@ params: - criticism - data - diagnosis + - dimensional analysis - diversity + - drag - drawing - e-m + - education research + - elementary school - empiricism + - energy + - engineering - entropy + - environment - epistemology + - estimate + - evaluation + - exam - experimental design - feedback - fluid + - force - formal - gender - geography + - geometry - grading + - gravity + - high school - history + - impedance matching + - information - joke + - kinematics - lagrangian + - mathematics - measurement + - mechanics - memory + - misconception + - momentum - movie - neuroscience - non-inertial - nuclear physics + - numerical integration - odds + - olpc + - optics - orbit - paradox - particle physics - photometry + - planetarium - politics + - pre-health - prediction + - problem + - radiation + - reading - reading memo + - regret - rocket + - rotation + - scientific method - society - software - solid - sound - spectroscopy + - sport - spring + - star + - statistics - strain + - stress - structure + - syllabus + - symmetry - testing + - textbook + - thermodynamics - time - torque - transport - units - unschooling + - vector - vision - visualization - water - weaponry - web + - weight - writing relme: + https://hoggideas.blogspot.com/: true + https://hoggmaker.blogspot.com/: true + https://hoggresearch.blogspot.com/: true + https://hoggteaching.blogspot.com/: true https://www.blogger.com/profile/18398397408280534592: true last_post_title: girls aren't the problem; the World is the problem! last_post_description: "" @@ -159,17 +163,22 @@ params: - gender - statistics - structure + last_post_language: "" last_post_guid: 7f65347fcae0b107893a24c69c2b5413 score_criteria: cats: 5 description: 3 + feedlangs: 0 postcats: 3 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 18 + score: 21 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-6c94dc49354702506a5148c2048c658a.md b/content/discover/feed-6c94dc49354702506a5148c2048c658a.md deleted file mode 100644 index a31a3d4d8..000000000 --- a/content/discover/feed-6c94dc49354702506a5148c2048c658a.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Large Heydon Collider -date: "1970-01-01T00:00:00Z" -description: Public posts from @heydon@front-end.social -params: - feedlink: https://front-end.social/@heydon.rss - feedtype: rss - feedid: 6c94dc49354702506a5148c2048c658a - websites: - https://front-end.social/@heydon: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://briefs.video/: false - https://every-layout.dev/: false - https://mutable.gallery/: false - https://webbed-briefs.teemill.com/collection/new: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6c9790c935b8e3d8fa5264ecdc5dbcc0.md b/content/discover/feed-6c9790c935b8e3d8fa5264ecdc5dbcc0.md new file mode 100644 index 000000000..9eae332ea --- /dev/null +++ b/content/discover/feed-6c9790c935b8e3d8fa5264ecdc5dbcc0.md @@ -0,0 +1,43 @@ +--- +title: GSoD 2020 b-gent +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://gsod2020-bgent.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 6c9790c935b8e3d8fa5264ecdc5dbcc0 + websites: + https://gsod2020-bgent.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://gsod2020-bgent.blogspot.com/: true + https://www.blogger.com/profile/13501512021449656276: true + last_post_title: GSoD summary report + last_post_description: My GSoD task was to improve the Doxygen-generated documentation + of ScummVM in terms of its structure, completeness, language, style, coherence, + and overall usability.Completed tasksThis is my final + last_post_date: "2020-12-04T22:20:00Z" + last_post_link: https://gsod2020-bgent.blogspot.com/2020/12/gsod-summary-report.html + last_post_categories: [] + last_post_language: "" + last_post_guid: d16f4abdc8c3fefadf7378602bf8079c + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6cbf55e430e549db05362ab517e10bb6.md b/content/discover/feed-6cbf55e430e549db05362ab517e10bb6.md index c09f4952a..3a15b7e9d 100644 --- a/content/discover/feed-6cbf55e430e549db05362ab517e10bb6.md +++ b/content/discover/feed-6cbf55e430e549db05362ab517e10bb6.md @@ -12,28 +12,34 @@ params: recommended: [] recommender: [] categories: - - fedora - advogato + - fedora relme: + https://mjg59.dreamwidth.org/: true https://nondeterministic.computer/@mjg59: true last_post_title: SSH agent extensions as an arbitrary RPC mechanism last_post_description: "" last_post_date: "2024-06-12T02:57:36Z" last_post_link: https://mjg59.dreamwidth.org/69646.html last_post_categories: - - fedora - advogato + - fedora + last_post_language: "" last_post_guid: bd7fe6f12b4c33228016e351f25f6e72 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 2 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 12 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-6cdc6491fa79b5d5a54c03a42b2944b8.md b/content/discover/feed-6cdc6491fa79b5d5a54c03a42b2944b8.md new file mode 100644 index 000000000..ac68f9d6e --- /dev/null +++ b/content/discover/feed-6cdc6491fa79b5d5a54c03a42b2944b8.md @@ -0,0 +1,41 @@ +--- +title: robbmann +date: "1970-01-01T00:00:00Z" +description: Recent content on robbmann +params: + feedlink: https://robbmann.io/index.xml + feedtype: rss + feedid: 6cdc6491fa79b5d5a54c03a42b2944b8 + websites: + https://robbmann.io/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://robbmann.io/: true + last_post_title: Getting Emacs 29 to Automatically Use Tree-sitter Modes + last_post_description: Recently, /u/casouri posted a guide to getting started with + the new built-in tree-sitter capabilities for Emacs 29. + last_post_date: "2023-01-22T00:00:00-05:00" + last_post_link: https://robbmann.io/posts/emacs-treesit-auto/ + last_post_categories: [] + last_post_language: "" + last_post_guid: abc531713df8844d17d793ef8f6d68c4 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-6ce44235e282477cf8d3f6329c602625.md b/content/discover/feed-6ce44235e282477cf8d3f6329c602625.md deleted file mode 100644 index 5ba70aed1..000000000 --- a/content/discover/feed-6ce44235e282477cf8d3f6329c602625.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Comments for Symmetry factor -date: "1970-01-01T00:00:00Z" -description: Life in physics and nearby -params: - feedlink: https://apetrov.wordpress.com/comments/feed/ - feedtype: rss - feedid: 6ce44235e282477cf8d3f6329c602625 - websites: - https://apetrov.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Look, there is a crack in the Standard Model! by Denny - Carskadon - last_post_description: Nice blog post. 2021-06-21 05h 37min - last_post_date: "2021-06-21T09:38:51Z" - last_post_link: https://apetrov.wordpress.com/2021/04/07/look-there-is-a-crack-in-the-standard-model/#comment-9858 - last_post_categories: [] - last_post_guid: 83a43ef317fa8197709e5103c6a2cd5e - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6cf4ec94f23bc0574b5e01f08e0e0aa4.md b/content/discover/feed-6cf4ec94f23bc0574b5e01f08e0e0aa4.md new file mode 100644 index 000000000..4315b9f8e --- /dev/null +++ b/content/discover/feed-6cf4ec94f23bc0574b5e01f08e0e0aa4.md @@ -0,0 +1,126 @@ +--- +title: /dev/loki +date: "2024-07-08T08:07:13+02:00" +description: openSUSE, Linux, RPM/packaging, development (Java, C++, PHP, ..) or whatever +params: + feedlink: https://dev-loki.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 6cf4ec94f23bc0574b5e01f08e0e0aa4 + websites: + https://dev-loki.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - EU + - FOSS + - NX + - amarok + - attachmate + - bash + - blender + - board + - collectd + - community + - conference + - deluge + - democracyplayer + - design + - eclipse + - ecology + - ecosia + - elections + - enigmail + - fonts + - fosdem + - freshmeat.net + - froscon + - gaim + - gnome + - groklaw + - hermes + - howto + - irc + - irssi + - java + - jetty + - kde + - life + - linux + - lxde + - meeting + - miro + - mono + - mplayer + - mysql + - novell + - openjdk + - opensource + - opensuse + - opensuse build service + - opensuse conference + - opensuse-community + - oracle + - osc + - packaging + - packman + - perl + - personal + - petition + - php + - pidgin + - planetsuse + - planning + - politics + - postgresql + - python + - rpm + - rtorrent + - screen + - search + - security + - sed + - smart + - smplayer + - softwareportal + - solr + - sudo + - swpats + - sysstat + - thomas + - thunderbird + - twitter + - vnc + - vnstat + - webpin + - wicket + - workshop + - wwf + - zypper + relme: + https://dev-loki.blogspot.com/: true + https://www.blogger.com/profile/15179032995691105618: true + last_post_title: Speaking of Packman mirrors... + last_post_description: "" + last_post_date: "2012-05-06T02:59:44+02:00" + last_post_link: https://dev-loki.blogspot.com/2012/05/speaking-of-packman-mirrors.html + last_post_categories: [] + last_post_language: "" + last_post_guid: c7d64c5201a9b639b7a32b2520e89845 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6d19ce1f2e9b2a01c6ca9f483b8a9129.md b/content/discover/feed-6d19ce1f2e9b2a01c6ca9f483b8a9129.md deleted file mode 100644 index 575d30a59..000000000 --- a/content/discover/feed-6d19ce1f2e9b2a01c6ca9f483b8a9129.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: IndieBlocks -date: "1970-01-01T00:00:00Z" -description: Use blocks, and, optionally, “short-form” post types to more easily “IndieWebify” - your WordPress site -params: - feedlink: https://indieblocks.xyz/comments/feed/ - feedtype: rss - feedid: 6d19ce1f2e9b2a01c6ca9f483b8a9129 - websites: - https://indieblocks.xyz/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Releases - relme: {} - last_post_title: IndieBlocks 0.6.2 Released - last_post_description: Version 0.6.2 of IndieBlocks was just released, and it comes - with some pretty big changes. - last_post_date: "2023-04-03T19:19:48Z" - last_post_link: https://indieblocks.xyz/blog/indieblocks-0-6-2-released/ - last_post_categories: - - Releases - last_post_guid: 6cb097080e927121a448a9a4bd78499f - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6d21c2b1f8eb664a5a4922c84f2bd807.md b/content/discover/feed-6d21c2b1f8eb664a5a4922c84f2bd807.md deleted file mode 100644 index 56437b11e..000000000 --- a/content/discover/feed-6d21c2b1f8eb664a5a4922c84f2bd807.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Nikhil Kathole -date: "1970-01-01T00:00:00Z" -description: Open source Enthusiast -params: - feedlink: https://nikhilkathole.wordpress.com/feed/ - feedtype: rss - feedid: 6d21c2b1f8eb664a5a4922c84f2bd807 - websites: - https://nikhilkathole.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Uncategorized - relme: {} - last_post_title: FOSSASIA Summit 2024 - last_post_description: The FOSSASIA Summit is an annual event focused on Open Source - technologies. This year it was held at Posts and Telecommunications Institute - of Technology, Hanoi, Vietnam from April 8 to April 10, - last_post_date: "2024-04-29T16:29:15Z" - last_post_link: https://nikhilkathole.wordpress.com/2024/04/29/fossasia-summit-2024/ - last_post_categories: - - Uncategorized - last_post_guid: c78d5b27e15054b9422d17030ac60423 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6d21c8ccecba1239a08c879e583d836b.md b/content/discover/feed-6d21c8ccecba1239a08c879e583d836b.md deleted file mode 100644 index e32861164..000000000 --- a/content/discover/feed-6d21c8ccecba1239a08c879e583d836b.md +++ /dev/null @@ -1,138 +0,0 @@ ---- -title: Nirbheek’s Rantings -date: "2024-03-14T17:28:04+05:30" -description: "" -params: - feedlink: https://blog.nirbheek.in/feeds/posts/default/-/gstreamer - feedtype: atom - feedid: 6d21c8ccecba1239a08c879e583d836b - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - gnome - - gentoo - - thoughts - - gstreamer - - art - - music - - tehinterweb - - centricular - - Beagle - - dailycrap - - funstuff - - gsoc - - IITK - - Linux - - Techkriti - - fail - - FOSSKriti - - meson - - politics - - portage - - windows - - '"news"' - - AutotuA - - Ubuntu - - anime - - audio - - awesome - - blah - - latency - - packagekit - - '*BSD' - - WTF - - baaaah - - books - - build-systems - - cerbero - - firefox - - gnome3 - - libre - - literature - - msvc - - religion - - systemd - - tehsuck - - usability - - uwp - - voip - - webcomics - - webrtc - - xkcd - - /. - - 4chan - - FreeBSD - - MCIS - - OpenSolaris - - Pearl Jam - - SSCVC - - android - - autotools - - baselayout - - beauty - - braille - - climate - - code - - creationism - - dbus - - design - - devanagari - - encryption - - foresight - - fosdem - - foss - - foss.in - - freed.in - - freedesktop - - freenode - - gentoo btrfs filesystems - - gratis - - guadec - - hindi - - law - - linuxchix - - midsems - - movies - - mozilla - - navya - - notreallygnome - - ntgwn - - openrc - - physics - - pkgcore - - plymouth - - portage-talk - - portal - - pulseaudio - - raghudixit - - rapidfire - - rust - - science - - wasapi - - web - - wit - relme: {} - last_post_title: What is WebRTC? Why does it need ‘Signalling’? - last_post_description: "" - last_post_date: "2023-08-21T18:25:52+05:30" - last_post_link: https://blog.nirbheek.in/2023/07/webrtc-signalling.html - last_post_categories: - - gnome - - gstreamer - - webrtc - last_post_guid: ad6f0bae6a212b693e90be329a84c043 - score_criteria: - cats: 5 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6d245878a069260f7bdb2a1ea3a9a2ef.md b/content/discover/feed-6d245878a069260f7bdb2a1ea3a9a2ef.md new file mode 100644 index 000000000..3cf77123f --- /dev/null +++ b/content/discover/feed-6d245878a069260f7bdb2a1ea3a9a2ef.md @@ -0,0 +1,43 @@ +--- +title: meta-bubble +date: "2024-02-20T05:30:30-08:00" +description: 'Welcome to the meta-bubble. A ressource for software and computer language + modeling and meta-modeling. Topics include: eclipse emf, OMG MOF, textual modeling + and agile language engineering.' +params: + feedlink: https://metabubble.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 6d245878a069260f7bdb2a1ea3a9a2ef + websites: + https://metabubble.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://metabubble.blogspot.com/: true + https://www.blogger.com/profile/03573970335198213806: true + last_post_title: Textual Editing Framework Tutorial + last_post_description: "" + last_post_date: "2010-05-25T15:06:51-07:00" + last_post_link: https://metabubble.blogspot.com/2008/03/textual-editing-framework-tutorial.html + last_post_categories: [] + last_post_language: "" + last_post_guid: cbde64928187a34057a35bc570c1b58b + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6d2536e2b4b639b9e4701320229c18f1.md b/content/discover/feed-6d2536e2b4b639b9e4701320229c18f1.md deleted file mode 100644 index 5fa2a12e8..000000000 --- a/content/discover/feed-6d2536e2b4b639b9e4701320229c18f1.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: TetraLogical -date: "1970-01-01T00:00:00Z" -description: Public posts from @TetraLogical@a11y.social -params: - feedlink: https://a11y.social/@TetraLogical.rss - feedtype: rss - feedid: 6d2536e2b4b639b9e4701320229c18f1 - websites: - https://a11y.social/@TetraLogical: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://tetralogical.com/: true - https://tetralogical.com/blog: true - https://www.linkedin.com/company/tetralogical/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6d40294a99b1b1607cc7a79bc0b90163.md b/content/discover/feed-6d40294a99b1b1607cc7a79bc0b90163.md index fe6bf736e..a1c364466 100644 --- a/content/discover/feed-6d40294a99b1b1607cc7a79bc0b90163.md +++ b/content/discover/feed-6d40294a99b1b1607cc7a79bc0b90163.md @@ -12,34 +12,13 @@ params: recommended: [] recommender: [] categories: - - paper - - wood - - furniture - - ink - - marker - - food - - table - - wax - - sculpture - - cartoon - - drawing - - dye - - egg - - pen - - beer - - colored pencil - - cube - - desk - - paint - - pencil - - photograph - - print - - stamp - - tool - Fimo + - J + - V - bar - beads - beef + - beer - beet - bible - bowl @@ -49,42 +28,69 @@ params: - candle - candy - carrot + - cartoon - cheese - chocolate - clay + - colored pencil - cooking + - cube + - desk + - drawing + - dye + - egg - experiment - face - font + - food - found - framing + - furniture - girl - glass - glaze + - ink - jewelery - lantern - linoleum + - marker - mathematics - mounting - music - mustard - neon + - paint + - paper - pasta - pattern - peanut butter + - pen + - pencil + - photograph - pipe cleaner - potato + - print - pumpkin - school - science + - sculpture - shelf - sign - software + - stamp - steel - stone - string + - table + - tool + - wax - whiteboard + - wood relme: + https://hoggideas.blogspot.com/: true + https://hoggmaker.blogspot.com/: true + https://hoggresearch.blogspot.com/: true + https://hoggteaching.blogspot.com/: true https://www.blogger.com/profile/18398397408280534592: true last_post_title: stationary last_post_description: Continuing with the printing theme, V and I designed and @@ -96,17 +102,22 @@ params: - paper - print - stamp + last_post_language: "" last_post_guid: ec41ad7ca7d9f21297dd06329b0bf05a score_criteria: cats: 5 description: 3 + feedlangs: 0 postcats: 3 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 18 + score: 21 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-6d70fb491e755a0b887de4e5f4bc6347.md b/content/discover/feed-6d70fb491e755a0b887de4e5f4bc6347.md new file mode 100644 index 000000000..88875e86f --- /dev/null +++ b/content/discover/feed-6d70fb491e755a0b887de4e5f4bc6347.md @@ -0,0 +1,42 @@ +--- +title: pmac.io +date: "1970-01-01T00:00:00Z" +description: Recent content on pmac.io +params: + feedlink: https://pmac.io/index.xml + feedtype: rss + feedid: 6d70fb491e755a0b887de4e5f4bc6347 + websites: + https://pmac.io/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://pmac.io/: true + last_post_title: The Lounge on Dokku + last_post_description: Mozilla has hosted an enterprise instance of IRCCloud for + several years now, and it’s been a great client to use with our IRC network. IRCCloud + has deprecated their enterprise product and so + last_post_date: "2019-10-31T13:44:43-04:00" + last_post_link: https://pmac.io/2019/10/thelounge-on-dokku/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 4a52420d00f5f294a8bbb629ca9f1d76 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-6d75e5d1317d89ce39d53ac6402c29b4.md b/content/discover/feed-6d75e5d1317d89ce39d53ac6402c29b4.md deleted file mode 100644 index ce71fab7c..000000000 --- a/content/discover/feed-6d75e5d1317d89ce39d53ac6402c29b4.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Niq -date: "1970-01-01T00:00:00Z" -description: Public posts from @niqwithq@fosstodon.org -params: - feedlink: https://fosstodon.org/@niqwithq.rss - feedtype: rss - feedid: 6d75e5d1317d89ce39d53ac6402c29b4 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6d79d5a5f991f5ce9baa945d15a5a9dd.md b/content/discover/feed-6d79d5a5f991f5ce9baa945d15a5a9dd.md deleted file mode 100644 index eab5e0c44..000000000 --- a/content/discover/feed-6d79d5a5f991f5ce9baa945d15a5a9dd.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Robert Birming -date: "1970-01-01T00:00:00Z" -description: Public posts from @birming@mastodon.world -params: - feedlink: https://mastodon.world/@birming.rss - feedtype: rss - feedid: 6d79d5a5f991f5ce9baa945d15a5a9dd - websites: - https://mastodon.world/@birming: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://birming.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6d90f7fdf6c448a8f58994aadfe6e475.md b/content/discover/feed-6d90f7fdf6c448a8f58994aadfe6e475.md new file mode 100644 index 000000000..4a5896990 --- /dev/null +++ b/content/discover/feed-6d90f7fdf6c448a8f58994aadfe6e475.md @@ -0,0 +1,119 @@ +--- +title: main is usually a function +date: "2024-07-08T14:08:21-07:00" +description: char* main = "usually a programming blog"; +params: + feedlink: https://mainisusuallyafunction.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 6d90f7fdf6c448a8f58994aadfe6e475 + websites: + https://mainisusuallyafunction.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 6.S184 + - alloy + - assembly + - autotools + - boston + - breakfast + - c + - c++ + - cabal + - clogparse + - code + - compose + - compsci + - computability + - concorde + - concurrency + - continuations + - crystalfontz + - cxx + - debug-diff + - debugging + - detrospector + - donttrythisathome + - formal-methods + - gdb + - generics + - ghc + - git + - global-lock + - graphics + - hackathon + - hardware + - haskell + - hdis86 + - html5ever + - imadethis + - jspath + - jvf2010a + - kernel + - lambda-calculus + - languages + - latex + - macros + - markdown + - mit + - mosh + - mozilla + - pandoc + - phosphene + - pi-calculus + - png + - preprocessor + - propane + - python + - qoppa + - quasicrystal + - random + - repa + - rts + - rust + - safe-globals + - scheme + - security + - servo + - shell + - shqq + - slides + - smt + - systems + - taralli + - tracepoints + - tsp + - type-theory + - types + - vau-calculus + - yices-easy + relme: + https://mainisusuallyafunction.blogspot.com/: true + https://www.blogger.com/profile/12227260241426017476: true + last_post_title: A Rust view on Effective Modern C++ + last_post_description: "" + last_post_date: "2017-06-21T12:58:52-07:00" + last_post_link: https://mainisusuallyafunction.blogspot.com/2017/06/a-rust-view-on-effective-modern-c.html + last_post_categories: + - c++ + - rust + last_post_language: "" + last_post_guid: 48fc204d90de3e641eddc134f570f9a1 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6df49e9e058b7e1fa72d4f1601386e5a.md b/content/discover/feed-6df49e9e058b7e1fa72d4f1601386e5a.md new file mode 100644 index 000000000..f6178ec7e --- /dev/null +++ b/content/discover/feed-6df49e9e058b7e1fa72d4f1601386e5a.md @@ -0,0 +1,43 @@ +--- +title: Comments for Bethany Nowviskie +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://nowviskie.org/comments/feed/ + feedtype: rss + feedid: 6df49e9e058b7e1fa72d4f1601386e5a + websites: + https://nowviskie.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://glammr.us/@nowviskie: true + https://nowviskie.org/: true + last_post_title: Comment on speculative collections by alternate futures/usable + pasts « Bethany Nowviskie + last_post_description: '[…] “Speculative Collections,” the talk that followed, is + now […]' + last_post_date: "2016-10-28T16:05:58Z" + last_post_link: https://nowviskie.org/2016/speculative-collections/#comment-2 + last_post_categories: [] + last_post_language: "" + last_post_guid: bc95fcc9b39411dcb5e182c18323dd61 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6e184e4f1cc6a3c14b0d2e9a436db93e.md b/content/discover/feed-6e184e4f1cc6a3c14b0d2e9a436db93e.md index e2fa54786..b2c17f55a 100644 --- a/content/discover/feed-6e184e4f1cc6a3c14b0d2e9a436db93e.md +++ b/content/discover/feed-6e184e4f1cc6a3c14b0d2e9a436db93e.md @@ -1,6 +1,6 @@ --- title: Polyamory in the News -date: "2024-06-03T16:20:35-04:00" +date: "2024-07-06T16:43:51-04:00" description: |- Polyamory in the News . . . by Alan M. @@ -14,332 +14,17 @@ params: recommended: [] recommender: [] categories: - - TV - - Poly 101 - - legal - - activism - - polyamory - - Canada - - open marriage - - books - - research - - kids - - advice columns - - polygamy - - Australia/NZ - - Friday Polynews Roundup - - U.K. - - millennials - - Show Your Parents - - marriage - - conferences - - critics of poly - - New York - - college - - gay - - gay/bi - - celebrities - - The Best - - UK - - history - - SF Bay Area - - therapists - - Europe - - The Next Generation - - tabloids - - politics - - '#PolyamoryNews' - - '#Polyamory' - - Kamala Devi - - movies/plays - - polys of color - - radio - - triad - - Seattle - - Jenny Block - - bisexual - - religion/spirituality - - Covid-19 - - '#polyactivism' - - feminism - - Wash. DC region - - jealousy - - '#PolyLegal' - - Latin America - - 'Polyamory: Married & Dating' - - coming out - - dating - - holidays - - '#PolyintheMedia' - - humor - - Boston - - South Africa - - comics - - polyfamilies - - '#polyfamilies' - - China/Pacific - - Español - - Professor Marston movie - - Showtime Season 1 - - children of polyamory - - monogamy - - plays - - poly - - '#PolyamoryintheNews' - - Chicago - - Dan Savage - - Ireland - - Oregon - - Showtime Season 2 - - Wonder Woman - - history of polyamory - - poly parenting - - '#Poly101' - - Florida - - Jewish - - Português - - Tristan Taormino - - anthropology - - black & poly - - metamours - - Book reviews by me - - Deborah Anapol - - Deutsch - - Ethical Slut - - Loving More - - You Me Her - - convention - - lesbian - - '#PolyamoryActivism' - - India/South Asia - - New Culture - - advice - - leftist/anarchist - - relationship anarchy - - science fiction - - swinging - - theory - - '#PolyamoryBooks' - - Brazil - - Sierra Black - - 'Supreme Court: Obergefell' - - Valentine's Day - - tech - - Colorado - - Franklin Veaux - - Français - - Southeast - - advertising - - art - - children - - coronavirus - - עברית - - '#PolyParenting' - - '#enm' - - polyamory books - - polyamory on TV - - '#OPEN' - - '#PolyNews' - - Chris Megan Leigh Ann - - STDs - - intentional community - - movies - - quads - - unicorn - - '#OpenRelationshipBooks' - - '#PolyNormalization' - - '#PolyamoryTV' - - '#metamours' - - BDSM - - Buddhist - - Diana Adams - - Israel - - More Than Two - - Nederlands - - Somerville - - Ukraine - - carrie jenkins - - compersion - - poly-mono - - polyamory flag - - reality show - - songs - - speeches by me - - triads - - video - - weddings - - '#CoupleToThrouple' - - '#PolyOnTV' - - '#PolyRights' - - '#PolyamoryFlag' - - Ask Amy - - Cambridge - - Dear Margo - - Jaiya - - Janet Hardy - - Looks Like Love to Me - - Metamour Day - - Nico Tortorella - - Russia - - Terisa Greenan - - Trigonometry series - - Trump - - What polyamory principles offer everyone - - aging - - agreements - - autobiographies - - discrimination against polyamory - - music - - queer - - '#NewPolyamoryFlag' - - '#OpenMarriage' - - '#PolyAndChristian' - - '#PolyAndQueer' - - '#PolyDating' - - '#PolyHistory' - - '#PolyamoryFinances' - - '#PolyamoryHistory' - - '#PolyamoryLegal' - - '#PolyamoryLegislation' - - '#PolyamoryRights' - - '#abuseinpoly' - - '#cnm #openrelationship' - - '#polycule' - - Atlanta Poly Weekend - - Blake Wilson - - Eve Rickert - - Hacienda Villa - - Ixi Kirkilis - - Joe Spurr - - Kansas City - - Multi-Love - - Norsk - - Poly Living - - Polyamory Day - - Ruban Nielson - - 'Supreme Court: Windsor' - - Svenska - - Trigonometry - - Zaeli Kane - - academia - - asexual - - couple privilege - - critics of polyamory - - definition of polyamory - - domestic partnerships - - future of polyamory - - monogamish - - new polyamory flag - - poly dating - - polyamory history - - polyandry - - solo poly - - today show - - unicorns - - по-русски - - '#BadPolyamory' - - '#Black&Poly' - - '#ChildrenOfPolyamory' - - '#Masyanya' - - '#MetamourDay' - - '#PandemicPolyamory' - - '#PolyAndPsychedelics' - - '#PolyDomesticPartnerships' - - '#PolyFinances' - - '#PolyHolidays' - - '#PolyRecognition' - - '#PolyWeddings' - - '#PolyamorousFlag' - - '#Polyamory rights' - - '#PolyamoryBandwagon' - - '#PolyamoryDay' - - '#PolyamorySA' - - '#PolyamoryUkraine' - - '#PolyandCovid' - - '#QueerPolyamory' - - '#SeekingBrotherHusband' - - '#Solopoly' - - '#metamour #MetamourDay' - - '#openrelationship' - - '#polyamoryandneurodiversity' - - '#polyfidelity' - - '#throuples' - - '#triads' - - Alyce Grillet - - Arlington MA - - Brother Husbands - - Caroline Giuliani - - Colombia - - Danske - - Dedeker Winston - - Destination America - - Fox - - HBO - - Heinlein - - Hidden in America - - Japan - - Kimchi Cuddles - - Lisa Ling - - Matt Bullen - - Mississippi - - Morning Glory Zell-Ravenheart - - NRE - - New Mexico - - Oberon Zell - - Open - - Our America - - PLAC - - Page Turner - - Philadelphia - - Poly celebrities - - |- - Polyamory Legal - Advocacy Coalition - - Polyamory Week - - Polysecure - - San Diego - - Sartre - - Sex at Dawn - - She's Gotta Have It - - Sister Wives - - TNG - - Tamron Hall - - Terri Conley - - The Bachelor - - Three Dads and a Baby - - Tilda Swinton - - Unitarian Universalist - - Unknown Mortal Orchestra - - Utah - - Utopia - - abuse - - abusers - - atheism - - christian poly - - death - - definition of open relationship - - misuse of "polyamory" - - philosophy - - poetry - - poly and christian - - poly flag - - poly weddings - - poly101 - - polyamorous food trucks - - polyamory conventions - - polyamory in the military - - polycon - - polyfi - - polyfidelity - - skepticism - - threesomes - '#AlexAlberto' - '#ArchieComics' - '#BadPoly' + - '#BadPolyamory' + - '#Black&Poly' - '#CNM' - '#Challengers' - '#ChallengersMovie' + - '#ChildrenOfPolyamory' - '#ChosenFamily' + - '#CoupleToThrouple' - '#CoupletToThrouple' - '#CrappyPoly' - '#Datinga Couple' @@ -363,110 +48,229 @@ params: - '#MFMF' - '#MaBelleMyBeauty' - '#MarkMaryAndSomeOtherPeople' + - '#Masyanya' - '#MemorialDay' + - '#MetamourDay' - '#MonogamyAgreements' - '#MoreMemoirofOpenMarriage' - '#MoreaMemoirofOpenMarriage' - '#NRE' - '#NationalAnthemMovie' + - '#NewPolyamoryFlag' - '#NewToPolyamory' - '#NormalizePolyamory' + - '#OPEN' + - '#OpenMarriage' + - '#OpenRelationshipBooks' + - '#PandemicPolyamory' - '#Poly10' + - '#Poly101' + - '#PolyAndChristian' + - '#PolyAndPsychedelics' + - '#PolyAndQueer' - '#PolyBooks' - '#PolyChristmas' - '#PolyComics' - '#PolyCommitmentCeremony' + - '#PolyDating' + - '#PolyDomesticPartnerships' - '#PolyElders' + - '#PolyFinances' + - '#PolyGreenFlags' - '#PolyHandfasting' + - '#PolyHistory' + - '#PolyHolidays' - '#PolyKidsBooks' + - '#PolyLegal' + - '#PolyMono' - '#PolyNeurodiversity' + - '#PolyNews' + - '#PolyNormalization' + - '#PolyOnTV' - '#PolyOverTheHolidays' - '#PolyPandemic' + - '#PolyParenting' + - '#PolyRecognition' - '#PolyResearch' + - '#PolyRights' - '#PolyUkraine' - '#PolyVacation' - '#PolyVeto' + - '#PolyWeddings' + - '#PolyamorousFlag' + - '#Polyamory' + - '#Polyamory rights' + - '#PolyamoryActivism' + - '#PolyamoryBandwagon' + - '#PolyamoryBooks' - '#PolyamoryChristmas' + - '#PolyamoryDay' + - '#PolyamoryFinances' + - '#PolyamoryFlag' + - '#PolyamoryHistory' + - '#PolyamoryLegal' + - '#PolyamoryLegislation' - '#PolyamoryMoneyManagement' - '#PolyamoryMovies' + - '#PolyamoryNews' - '#PolyamoryResearch' + - '#PolyamoryRights' + - '#PolyamorySA' - '#PolyamorySongs' - '#PolyamoryStories' - '#PolyamoryStyles' + - '#PolyamoryTV' + - '#PolyamoryUkraine' + - '#PolyamoryintheNews' - '#PolyandAging' + - '#PolyandCovid' - '#PolyfamilyFinances' - '#Polyfamory' - '#PolygamyInTheBible' + - '#PolyintheMedia' - '#PolyintheMedia. #PolyamoryNews' + - '#QueerAnimals' + - '#QueerPolyamory' - '#RelationshipAgreements' - '#Riverdale' + - '#SeekingBrotherHusband' - '#SnugglePilePoly' + - '#Solopoly' + - '#SuccessfulPoly' - '#TeenPoly' - '#ThreeDadsAndaBaby' - '#UCC' - '#UUPoly' - '#WhatPolyamoryOffersThe Monogamous' - '#WhyIsPolyamoryPopular?' + - '#abuseinpoly' - '#activism' + - '#cnm #openrelationship' - '#compersion' + - '#enm' - '#facebooklimitslove' - '#group marriage' + - '#metamour #MetamourDay' + - '#metamours' - '#nonmonogamyvisibility' - '#oly101' + - '#openrelationship' - '#po' - '#poly' - '#poly kids books' + - '#polyactivism' - '#polyamorous' + - '#polyamoryandneurodiversity' + - '#polyandAI' - '#polycons' + - '#polycule' - '#polycules' + - '#polyfamilies' + - '#polyfidelity' - '#polylessons' - '#polymilitary' - '#polynavy' - '#threesomes' - '#threeways' - '#throuple' + - '#throuples' + - '#triads' - '#unicorns' - Allena Gabosch + - Alyce Grillet - Amanda Palmer - Amelia Earhart + - Arlington MA - Ashley Madison - Ashli Babbitt + - Ask Amy - Asperger's + - Atlanta Poly Weekend + - Australia/NZ + - BDSM - BIPOC - Bella Thorne - Big Bang Theory - Black Lives Matter - Black Poly Nation + - Blake Wilson + - Book reviews by me + - Boston - Brady Williams family + - Brazil - Britney Spears + - Brother Husbands + - Buddhist + - Cambridge + - Canada - Capitol riot + - Caroline Giuliani - Charlie Sheen + - Chicago + - China/Pacific - Chris Envy Angela Ashley polyamory polyamorous + - Chris Megan Leigh Ann - Christopher Ryan - Christopher Smith - Clare Verduyn + - Colombia + - Colorado - Covic-19 + - Covid-19 - Covidc-19 - Craig Ivey - Cunning Minx + - Dan Savage + - Danske - David Brooks + - Dear Margo + - Deborah Anapol - Dedeker + - Dedeker Winston + - Destination America - Details magazine + - Deutsch + - Diana Adams - Disabilities - Elf Lyons + - Español + - Ethical Slut + - Europe + - Eve Rickert - Facebook + - Florida + - Fox + - Franklin Veaux + - Français - Friday Polyamory News Roundup + - Friday Polynews Roundup - Gaby Dunn - Gen Z + - HBO + - Hacienda Villa + - Heinlein - Helen Fisher + - Hidden in America - India + - India/South Asia - Iran + - Ireland + - Israel + - Ixi Kirkilis + - Jaiya + - Janet Hardy + - Japan - Jase Lindgren + - Jenny Block - Jenny Yuen - Jerry Falwell - Jessica Fern + - Jewish + - Joe Spurr - Joseph Freeney - Juneteenth + - Kamala Devi + - Kansas City - Karen Ruskin - Kate Robards - Kathy Labriola @@ -474,12 +278,17 @@ params: - Katie Hill - Ken Haslam - Kim Tallbear + - Kimchi Cuddles - Kinsey Institute - Kitty Striker - LGBT - Lady Gaga + - Latin America - Leanna Yau + - Lisa Ling + - Looks Like Love to Me - Love Sex and Neighbors + - Loving More - MTV - Ma Belle My Beauty - Magyar @@ -487,79 +296,196 @@ params: - Mark Sanford - Marty Klein - Mary Crumpton + - Matt Bullen - Megyn Kelly + - Metamour Day - Minneapolis + - Mississippi - Mo'Nique + - More Than Two + - Morning Glory Zell-Ravenheart - Moses Sumney + - Multi-Love - My Five Wives - NBC Out + - NRE + - Nederlands - Neil Gaiman + - New Culture + - New Mexico - New Monogamy + - New York + - Nico Tortorella - Nikki Haley affair - Nikki Haley cheating - Nikki Haley extramarital - No Exit + - Norsk + - Oberon Zell - Oneida Colony + - Open - Oprah Winfrey + - Oregon + - Our America + - PLAC + - Page Turner - Paul Dalgarno + - Philadelphia - Philippines - Polska - Polski + - Poly 101 + - Poly Living - Poly Philia + - Poly celebrities - Poly novel + - Polyamory Day - Polyamory Foundation + - |- + Polyamory Legal + Advocacy Coalition - Polyamory Legal Advocacy Coalition - Polyamory Today + - Polyamory Week + - 'Polyamory: Married & Dating' - Polylogues + - Polysecure + - Português + - Professor Marston movie - R. Crumb - Rachel Krantz - Rebecca Walker - Right to Family Amendment Act of 2021 - Robyn Trask - Roswell + - Ruban Nielson - Ruby Bouie Johnson + - Russia + - SF Bay Area + - STDs - STIs + - San Diego - Sara Valta + - Sartre + - Seattle - Sex Ed + - Sex at Dawn - Shameless + - She's Gotta Have It - Show Me What You Got + - Show Your Parents + - Showtime Season 1 + - Showtime Season 2 + - Sierra Black - Simone de Beauvoir + - Sister Wives + - Somerville + - South Africa + - Southeast - Spain - Stage 3 polyamory - Stephen Snyder - Steve Pavlina + - 'Supreme Court: Obergefell' + - 'Supreme Court: Windsor' + - Svenska - TEDx - TLC + - TNG + - TV + - Tamron Hall - Tana Mongeau - Teen Poly + - Terisa Greenan + - Terri Conley - Texas - Thanksgiving + - The Bachelor + - The Best - The L Word + - The Next Generation - The Politician - The Polyamorists Next Door - The State of Affairs - There Is No 'I' in Threesome + - Three Dads and a Baby + - Tilda Swinton - Tolstoy + - Trigonometry + - Trigonometry series + - Tristan Taormino - True Life + - Trump - Two Boyfriends and a Baby + - U.K. + - UK - UUPA + - Ukraine + - Unitarian Universalist - United Church of Christ + - Unknown Mortal Orchestra + - Utah + - Utopia - Utopia show + - Valentine's Day + - Wash. DC region - Wednesday Martin - Wendy-O Matik + - What polyamory principles offer everyone - Will and Jada Pinkett Smith - Wisconsin + - Wonder Woman - World Polyamory Association - X-Men + - You Me Her + - Zaeli Kane + - abuse + - abusers + - academia + - activism + - advertising + - advice + - advice columns + - aging + - agreements + - anthropology + - art + - asexual + - atheism - attachment theory in polyamory + - autobiographies + - bisexual + - black & poly + - books + - carrie jenkins + - celebrities - cheating + - children + - children of polyamory + - christian poly - christianity and polyamory - civil union of 3 - co-housing + - college + - comics + - coming out - communication - communication skills + - compersion + - conferences + - convention - corona cuddling + - coronavirus + - couple privilege - covid + - critics of poly + - critics of polyamory + - dating + - death + - definition of open relationship + - definition of polyamory + - discrimination against polyamory + - domestic partnerships - dying - early poly in the media - economics @@ -568,101 +494,181 @@ params: - esther perel - eye-gazing - falling in love + - feminism - feminism in polyamory + - future of polyamory - game changer + - gay - gay triads + - gay/bi - geek - gingrich + - history + - history of polyamory + - holidays - house hunters + - humor - infidelity rate - infinity heart + - intentional community + - jealousy - jewelry/pins/clothing + - kids + - leftist/anarchist + - legal - 'legal; #PolyBerkeley' - 'legal; #PolyOakland' + - lesbian + - marriage - merch + - metamours + - millennials + - misuse of "polyamory" + - monogamish + - monogamy + - movies + - movies/plays + - music + - new polyamory flag - nikki haley - north dakota + - open marriage - pandemic - pansexual - parenting + - philosophy - pi day - pickup artist - platonic + - plays - podcasts + - poetry - poliamor + - politics + - poly - poly & neurodiversity - poly and childbirth + - poly and christian - poly and pregnancy - poly animals - poly as orientation - poly conference + - poly dating + - poly flag - poly humor + - poly parenting - poly shaming + - poly weddings + - poly-mono + - poly101 - polyaffectivity - polyamorous flag + - polyamorous food trucks + - polyamory - polyamory and class - polyamory as a spiritual path + - polyamory books - polyamory community + - polyamory conventions + - polyamory flag - polyamory flag stolen - polyamory groups + - polyamory history + - polyamory in the military - polyamory memes - polyamory news + - polyamory on TV - polyamory rights - polyamory symbols - polyamproud + - polyandry + - polycon - polycule - polydar + - polyfamilies + - polyfi + - polyfidelity + - polygamy - polygamy. Mormon + - polys of color - problem poly + - quads + - queer + - radio + - reality show + - relationship anarchy + - religion/spirituality + - research + - science fiction - sex-positive organizations - showtime - siren + - skepticism + - solo poly + - songs - sophie lucido johnson - spaceflight + - speeches by me + - swinging - tab + - tabloids + - tech + - theory + - therapists + - threesomes - threeways - throuples + - today show - trans + - triad + - triads - uniao poliafetiva + - unicorn + - unicorns + - video - webseries + - weddings - wife swap. Gina John Loudon - will folks - woodhull - zoning - Íslensku + - по-русски + - עברית - 日本語 relme: - https://www.blogger.com/profile/16008171792811719945: true - last_post_title: Finally, a genuinely poly movie coming (queer too). The last word - on the "Challengers" movie. Six new fiction books for summer reading. The AARP - gets it. And, many upcoming events. - last_post_description: |- - But first, four announcements: - - ♥  It's just six weeks to the annual - Week of Visibility for Non-Monogamy July 15 - 21. This ambitious project is inspired and coordinated by OPEN, the 2½-year - last_post_date: "2024-06-03T11:38:44-04:00" - last_post_link: https://polyinthemedia.blogspot.com/2024/06/finally-genuinely-poly-movie-queer-too.html + https://polyinthemedia.blogspot.com/: true + last_post_title: Green flags to watch for in poly dating. The great poly/queer overlap. + Co-living. And, a total heartwarmer. + last_post_description: "Pride Month has just passed. But not pride.●  In USA Today: Polyamory + seems more common among gay people than straight people. What’s\n going on? (June + 20).\n \n \n \n \n \n " + last_post_date: "2024-07-05T12:18:39-04:00" + last_post_link: https://polyinthemedia.blogspot.com/2024/07/green-flags-to-watch-for-in-poly-dating.html last_post_categories: - - '#polyactivism' - - '#Polyamory' - - '#Challengers' - - '#enm' - - '#PolyamoryMovies' - - books - - '#activism' - - '#NationalAnthemMovie' - last_post_guid: 289f63e00a5dff14d3dbc2a64a1ca289 + - '#PolyGreenFlags' + - '#PolyMono' + - '#PolyamoryNews' + - '#PolyamoryintheNews' + - '#PolyintheMedia' + - '#QueerAnimals' + - '#QueerPolyamory' + last_post_language: "" + last_post_guid: 0597ae13a4131ea313231ea5bc59b9e3 score_criteria: cats: 5 description: 3 + feedlangs: 0 postcats: 3 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 18 + score: 21 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-6e1e9a66bc80a5b84d61c65fa6f94043.md b/content/discover/feed-6e1e9a66bc80a5b84d61c65fa6f94043.md new file mode 100644 index 000000000..c976dcb75 --- /dev/null +++ b/content/discover/feed-6e1e9a66bc80a5b84d61c65fa6f94043.md @@ -0,0 +1,44 @@ +--- +title: GRASS GIS - Bringing advanced geospatial technologies to the world +date: "1970-01-01T00:00:00Z" +description: Recent content on GRASS GIS - Bringing advanced geospatial technologies + to the world +params: + feedlink: https://grass.osgeo.org/index.xml + feedtype: rss + feedid: 6e1e9a66bc80a5b84d61c65fa6f94043 + websites: + https://grass.osgeo.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://fosstodon.org/@grassgis: true + https://grass.osgeo.org/: true + last_post_title: Results of the GRASS GIS student grant + last_post_description: Easy command history navigation through the History browser + panel Linda’s work in her own words During my master’s studies, I began contributing + to the enhancement of the GRASS GIS user interface + last_post_date: "2024-06-06T13:12:52+02:00" + last_post_link: https://grass.osgeo.org/news/2024_06_06_result_student_grant_linda_karlovska/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 7c95418259f876f6ce943a12d8cbe36a + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-6e3da53ecb685922657a934e426b3021.md b/content/discover/feed-6e3da53ecb685922657a934e426b3021.md new file mode 100644 index 000000000..dcc2409a5 --- /dev/null +++ b/content/discover/feed-6e3da53ecb685922657a934e426b3021.md @@ -0,0 +1,42 @@ +--- +title: Derek Sivers blog +date: "2000-01-01T00:00:00Z" +description: "" +params: + feedlink: https://sive.rs/en.atom + feedtype: atom + feedid: 6e3da53ecb685922657a934e426b3021 + websites: + https://sive.rs/: false + blogrolls: [] + recommended: [] + recommender: + - https://jeroensangers.com/feed.xml + - https://jeroensangers.com/podcast.xml + - https://weidok.al/feed.xml + categories: [] + relme: {} + last_post_title: How and why to make a /now page on your site + last_post_description: "" + last_post_date: "2024-05-18T00:00:00Z" + last_post_link: https://sive.rs/now2 + last_post_categories: [] + last_post_language: "" + last_post_guid: 9b16948e64242f2b2c1d894dc1b4a4c7 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 1 + score: 12 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6e47e89e530f0b04111057217a9779c1.md b/content/discover/feed-6e47e89e530f0b04111057217a9779c1.md deleted file mode 100644 index 3cf61a1d7..000000000 --- a/content/discover/feed-6e47e89e530f0b04111057217a9779c1.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Jan Schmidt -date: "1970-01-01T00:00:00Z" -description: Coding blog - GStreamer, OpenHMD mostly -params: - feedlink: https://noraisin.net/diary/?feed=rss2 - feedtype: rss - feedid: 6e47e89e530f0b04111057217a9779c1 - websites: - https://noraisin.net/diary/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Uncategorized - relme: {} - last_post_title: Pulling on a thread - last_post_description: I’m attending the https://linux.conf.au/ conference online - this weekend, which is always a good opportunity for some sideline hacking. I - found something boneheaded doing that today. There have been - last_post_date: "2022-01-15T09:10:53Z" - last_post_link: https://noraisin.net/diary/?p=1064 - last_post_categories: - - Uncategorized - last_post_guid: ef0ae37470b9b3b274213596451e3c56 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6e5f3c7a5abb8ae4f7f6129bfd6720b6.md b/content/discover/feed-6e5f3c7a5abb8ae4f7f6129bfd6720b6.md deleted file mode 100644 index 1ddf53cdb..000000000 --- a/content/discover/feed-6e5f3c7a5abb8ae4f7f6129bfd6720b6.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Kev Quirk -date: "1970-01-01T00:00:00Z" -description: Latest posts from my blog -params: - feedlink: https://kevq.uk/feed - feedtype: rss - feedid: 6e5f3c7a5abb8ae4f7f6129bfd6720b6 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: We Already Have a Digital Currency - last_post_description: |- - Bitcoin and their ilk really aren't my thing, but many talk about the need for a digital currency. But here's the thing - we already have one, don't we? - I'm not the right person to talk about crypto - last_post_date: "2024-05-29T11:30:00+01:00" - last_post_link: https://kevquirk.com/we-already-have-a-digital-currency - last_post_categories: [] - last_post_guid: de11667efefccf2ef64d9df0d62eceba - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6e75094b9703c740bee935065cac9c7c.md b/content/discover/feed-6e75094b9703c740bee935065cac9c7c.md deleted file mode 100644 index cc2546ed3..000000000 --- a/content/discover/feed-6e75094b9703c740bee935065cac9c7c.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: security.metacpan.org -date: "2024-06-17T19:22:53Z" -description: "CPAN Security Group (CPANSec) \U0001F986" -params: - feedlink: https://security.metacpan.org/feed.xml - feedtype: atom - feedid: 6e75094b9703c740bee935065cac9c7c - websites: - https://security.metacpan.org/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - cve - - timeline - - report - relme: {} - last_post_title: Vulnerable Spreadsheet Parsing modules - last_post_description: Between Dec 2023 and Jan 2024, vulnerabilities in Spreadsheet::ParseExcel - and Spreadsheet::ParseXLSX were reported to the CPAN Security Group (CPANSec). - This document describes the timeline and - last_post_date: "2024-02-10T17:23:17Z" - last_post_link: https://security.metacpan.org/2024/02/10/vulnerable-spreadsheet-parsing-modules.html - last_post_categories: - - cve - - timeline - - report - last_post_guid: a01dcefc0ef33b5f842dcca6b26b3f19 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6e814d0f12cd0f21ee399fbd4d43c172.md b/content/discover/feed-6e814d0f12cd0f21ee399fbd4d43c172.md new file mode 100644 index 000000000..36752014d --- /dev/null +++ b/content/discover/feed-6e814d0f12cd0f21ee399fbd4d43c172.md @@ -0,0 +1,74 @@ +--- +title: Mi blog lah! +date: "1970-01-01T00:00:00Z" +description: Το ιστολόγιό μου +params: + feedlink: https://blog.simos.info/feed/ + feedtype: rss + feedid: 6e814d0f12cd0f21ee399fbd4d43c172 + websites: + https://blog.simos.info/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Linux + - Planet Ubuntu + - REST + - Ubuntu-gr + - browser + - certificate + - firefox + - general + - incus + - key + - lxd + - open-source + - openssl + - ubuntu + - ui + - web + relme: + https://blog.simos.info/: true + last_post_title: How to install and setup the Incus Web UI + last_post_description: Incus is a manager for virtual machines (VM) and system containers. + There is also an Incus support forum. Typically you would use the incus command-line + interface (CLI) client to get access to the + last_post_date: "2024-03-28T22:16:39Z" + last_post_link: https://blog.simos.info/how-to-install-and-setup-the-incus-web-ui/ + last_post_categories: + - Linux + - Planet Ubuntu + - REST + - Ubuntu-gr + - browser + - certificate + - firefox + - general + - incus + - key + - lxd + - open-source + - openssl + - ubuntu + - ui + - web + last_post_language: "" + last_post_guid: f912dab0308bf0a697bda66573f3ef66 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-6e8d545a4c4a808574697a095eff6f5e.md b/content/discover/feed-6e8d545a4c4a808574697a095eff6f5e.md deleted file mode 100644 index 773a8d55c..000000000 --- a/content/discover/feed-6e8d545a4c4a808574697a095eff6f5e.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: botwiki.org -date: "1970-01-01T00:00:00Z" -description: Public posts from @botwiki@mastodon.social -params: - feedlink: https://mastodon.social/@botwiki.rss - feedtype: rss - feedid: 6e8d545a4c4a808574697a095eff6f5e - websites: - https://mastodon.social/@botwiki: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://botmakers.org/: false - https://botwiki.org/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6e92004240d1e68f02b3a41e606b14f1.md b/content/discover/feed-6e92004240d1e68f02b3a41e606b14f1.md new file mode 100644 index 000000000..e87e9d088 --- /dev/null +++ b/content/discover/feed-6e92004240d1e68f02b3a41e606b14f1.md @@ -0,0 +1,42 @@ +--- +title: Kubuntu +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://werghdf.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 6e92004240d1e68f02b3a41e606b14f1 + websites: + https://werghdf.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://werghdf.blogspot.com/: true + last_post_title: Kubuntu got Donations, KDE needs Donations + last_post_description: There we were starting discussions for the Ubuntu Developer + Summit at the end of October in Copenhagen and wondering who we could afford to + send when I got a nice e-mail asking what it would cost to + last_post_date: "2012-09-21T13:31:00Z" + last_post_link: https://werghdf.blogspot.com/2012/09/kubuntu-got-donations-kde-needs.html + last_post_categories: [] + last_post_language: "" + last_post_guid: a865b6784ef694710a7f0335bbc8f63c + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6ea885994af0553df681376f35f1f3b1.md b/content/discover/feed-6ea885994af0553df681376f35f1f3b1.md new file mode 100644 index 000000000..063ed01e5 --- /dev/null +++ b/content/discover/feed-6ea885994af0553df681376f35f1f3b1.md @@ -0,0 +1,39 @@ +--- +title: Articles - Amy Hupe +date: "2018-12-19T00:00:00Z" +description: Sharing what I've learned. +params: + feedlink: https://amyhupe.co.uk/atom.xml + feedtype: atom + feedid: 6ea885994af0553df681376f35f1f3b1 + websites: {} + blogrolls: [] + recommended: [] + recommender: + - https://visitmy.website/feed.xml + categories: [] + relme: {} + last_post_title: Weeknote 30 + last_post_description: "" + last_post_date: "2020-08-30T00:00:00Z" + last_post_link: https://amyhupe.co.uk/weeknotes/Weeknote-30/ + last_post_categories: [] + last_post_language: "" + last_post_guid: b9339a407e54d8098147c48b6f09b5a1 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 0 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6eef8cc0ebdebaa0f1c0ccb53063a1df.md b/content/discover/feed-6eef8cc0ebdebaa0f1c0ccb53063a1df.md index 35ff9be0f..515f76688 100644 --- a/content/discover/feed-6eef8cc0ebdebaa0f1c0ccb53063a1df.md +++ b/content/discover/feed-6eef8cc0ebdebaa0f1c0ccb53063a1df.md @@ -12,32 +12,33 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: [] relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" + last_post_title: Colin (Scotch Pete)'s birthday is in 7 days + last_post_description: It's on Saturday 13 July 2024. + last_post_date: "2024-07-06T00:00:00Z" + last_post_link: https://abnib.co.uk/#colin-2024-7@birthdays.abnib.co.uk last_post_categories: [] - last_post_guid: "" + last_post_language: "" + last_post_guid: ddf915012845e20e99568f6510f7f2b9 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-6f09cc50a332b52b09922e60e450430a.md b/content/discover/feed-6f09cc50a332b52b09922e60e450430a.md index f576a9a24..9e8320d53 100644 --- a/content/discover/feed-6f09cc50a332b52b09922e60e450430a.md +++ b/content/discover/feed-6f09cc50a332b52b09922e60e450430a.md @@ -14,7 +14,7 @@ params: recommender: [] categories: [] relme: - https://www.blogger.com/profile/01181646988310208373: true + https://sarahmsharman.blogspot.com/: true last_post_title: The Belt of Venus last_post_description: Recently a new friend looked at this picture, I took in February from the top of Table Mountain. It has always been a very special photo to me @@ -22,17 +22,22 @@ params: last_post_date: "2013-08-20T10:44:00Z" last_post_link: https://sarahmsharman.blogspot.com/2013/08/the-belt-of-venus.html last_post_categories: [] + last_post_language: "" last_post_guid: 6690affa776eb84d0963e78d03f18e9b score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-6f0ae9f8adc17d6f753da574a9ac7332.md b/content/discover/feed-6f0ae9f8adc17d6f753da574a9ac7332.md deleted file mode 100644 index 5b38dcef9..000000000 --- a/content/discover/feed-6f0ae9f8adc17d6f753da574a9ac7332.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: DevOpsDays Birmingham, AL -date: "1970-01-01T00:00:00Z" -description: Public posts from @devopsdaysbham@hachyderm.io -params: - feedlink: https://hachyderm.io/@devopsdaysbham.rss - feedtype: rss - feedid: 6f0ae9f8adc17d6f753da574a9ac7332 - websites: - https://hachyderm.io/@devopsdaysbham: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/approved: true - https://devopsdays.org/events/2023-birmingham-al/welcome/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6f1ddc05efd4806ab8f4053369209469.md b/content/discover/feed-6f1ddc05efd4806ab8f4053369209469.md deleted file mode 100644 index b36ab3609..000000000 --- a/content/discover/feed-6f1ddc05efd4806ab8f4053369209469.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Marius Schulz -date: "2022-06-06T00:00:00Z" -description: Marius Schulz on web development, modern JavaScript, and TypeScript. -params: - feedlink: https://feeds.feedburner.com/mariusschulz - feedtype: atom - feedid: 6f1ddc05efd4806ab8f4053369209469 - websites: - https://mariusschulz.com/: true - https://mariusschulz.com/about: false - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: [] - relme: - https://github.com/mariusschulz: true - https://mariusschulz.com/about: false - https://mastodon.social/@mariusschulz: true - https://stackoverflow.com/users/362634/marius-schulz: true - https://twitter.com/mariusschulz: false - last_post_title: Keyboard Shortcuts for Jumping and Deleting in iTerm2 - last_post_description: How to configure familiar keyboard shortcuts for common navigation - and edit actions in the iTerm2 command prompt, such as jumping to the start or - end of a word or line. - last_post_date: "2022-06-06T00:00:00Z" - last_post_link: https://mariusschulz.com/blog/keyboard-shortcuts-for-jumping-and-deleting-in-iterm2 - last_post_categories: [] - last_post_guid: bde8f745c6dec55645976720596f81fa - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 15 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6f20190ca65a2a5408d9b771df37960d.md b/content/discover/feed-6f20190ca65a2a5408d9b771df37960d.md deleted file mode 100644 index d46a121a7..000000000 --- a/content/discover/feed-6f20190ca65a2a5408d9b771df37960d.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: The Polyamorous Misanthrope -date: "1970-01-01T00:00:00Z" -description: Wielding the Stick of Grandmotherly Kindness -params: - feedlink: https://polyamorousmisanthrope.com/wordpress/feed/ - feedtype: rss - feedid: 6f20190ca65a2a5408d9b771df37960d - websites: - https://polyamorousmisanthrope.com/wordpress: true - https://www.polyamorousmisanthrope.com/: false - blogrolls: [] - recommended: [] - recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - - https://danq.me/comments/feed/ - - https://danq.me/feed/ - - https://danq.me/kind/article/feed/ - - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ - categories: - - Ask the Misanthrope - - boundaries - - relationships - relme: {} - last_post_title: 'Ask the Misanthrope: Should We Break Up?' - last_post_description: I’m single but I find myself loving a man who is poly. He - told me on our first conversation that he was poly and I still chose to continue - to see him. Now I love him, we have sex and he said it’s - last_post_date: "2023-10-08T19:47:31Z" - last_post_link: https://polyamorousmisanthrope.com/wordpress/2023/10/08/ask-the-misanthrope-2/ - last_post_categories: - - Ask the Misanthrope - - boundaries - - relationships - last_post_guid: 5309d5673b4a7663b8cafcb49674b3e7 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 16 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6f2831970dd70aadbaa8275c0e456c44.md b/content/discover/feed-6f2831970dd70aadbaa8275c0e456c44.md deleted file mode 100644 index db48fece2..000000000 --- a/content/discover/feed-6f2831970dd70aadbaa8275c0e456c44.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: openstack – Notes In The Margin -date: "1970-01-01T00:00:00Z" -description: The Margin Is Too Narrow -params: - feedlink: https://drbacchus.com/tag/openstack/feed/ - feedtype: rss - feedid: 6f2831970dd70aadbaa8275c0e456c44 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Uncategorized - - dublin - - openstack - - openstack-ptg - - ptg - - snowpenstack - relme: {} - last_post_title: SnowpenStack - last_post_description: I’m heading home from SnowpenStack and it was quite a ride. - As Theirry said in our interview at the end of Friday (coming soon to a YouTube - channel near you), rather than spoiling things, the freak - last_post_date: "2018-03-04T07:52:53Z" - last_post_link: https://drbacchus.com/snowpenstack/ - last_post_categories: - - Uncategorized - - dublin - - openstack - - openstack-ptg - - ptg - - snowpenstack - last_post_guid: b8861dda824b96cedf1c67b5bcef75e5 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6f3092f58e328f82781520c0eb6929b6.md b/content/discover/feed-6f3092f58e328f82781520c0eb6929b6.md index 70f7c6ebe..c8fd5c8f6 100644 --- a/content/discover/feed-6f3092f58e328f82781520c0eb6929b6.md +++ b/content/discover/feed-6f3092f58e328f82781520c0eb6929b6.md @@ -1,6 +1,6 @@ --- title: "Dino’s Journal \U0001F4D6" -date: "2024-06-04T12:06:19Z" +date: "2024-07-09T03:24:30Z" description: A peek into the mind of a sleep deprived [software developer](https://devblog.dinobansigan.com/), husband, dad and gamer. params: @@ -17,22 +17,27 @@ params: categories: [] relme: https://journal.dinobansigan.com/: true - last_post_title: Digital Declutter 2024 + last_post_title: 2024 Update last_post_description: "" - last_post_date: "2024-02-14T05:04:44Z" - last_post_link: https://journal.dinobansigan.com/digital-declutter-2024?pk_campaign=rss-feed + last_post_date: "2024-06-11T19:19:55Z" + last_post_link: https://journal.dinobansigan.com/2024-update?pk_campaign=rss-feed last_post_categories: [] - last_post_guid: 7774f39efb1a9001288095daa4fa69c4 + last_post_language: "" + last_post_guid: f5f3476a5acf5e732d30bb98d61dca0e score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-6f4028e1912b657285e6fc2ba065f37f.md b/content/discover/feed-6f4028e1912b657285e6fc2ba065f37f.md deleted file mode 100644 index a68685e5c..000000000 --- a/content/discover/feed-6f4028e1912b657285e6fc2ba065f37f.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Web Platform News -date: "2023-12-11T20:09:16Z" -description: Daily news content for web developers -params: - feedlink: https://webplatform.news/feed.xml - feedtype: rss - feedid: 6f4028e1912b657285e6fc2ba065f37f - websites: - https://webplatform.news/: true - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: [] - relme: {} - last_post_title: CSS :target isn’t dynamically updated in browsers - last_post_description: 'If the page URL has a fragment (e.g., ht​tps://example.com/#posts), - then the CSS :target pseudo-class1 matches the element with that ID (e.g.,
). However, browsers only update ' - last_post_date: "2023-11-22T15:34:07Z" - last_post_link: https://webplatform.news/#1700667247000 - last_post_categories: [] - last_post_guid: e337eb3bd0a4452a47e50f1a8c63e67e - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6f65df3ccd93d94adfb9414905cd1855.md b/content/discover/feed-6f65df3ccd93d94adfb9414905cd1855.md deleted file mode 100644 index a6fd8c598..000000000 --- a/content/discover/feed-6f65df3ccd93d94adfb9414905cd1855.md +++ /dev/null @@ -1,53 +0,0 @@ ---- -title: Galera Cluster for MySQLPlanet OpenStack – Galera Cluster for MySQL -date: "1970-01-01T00:00:00Z" -description: The world's most advanced open-source database cluster. -params: - feedlink: https://galeracluster.com/category/planet-openstack/feed/ - feedtype: rss - feedid: 6f65df3ccd93d94adfb9414905cd1855 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Blog - - Planet OpenStack - - disaster recovery - - Galera Cluster for MariaDB - - Galera Cluster for MyQL - - Galera Cluster for MySQL - - Multi-master MySQL - - MySQL high availability - - Oracle Linux - relme: {} - last_post_title: Galera Cluster works on Oracle Linux - last_post_description: 'We recently had a customer request to run Galera Cluster - on Oracle Linux. We are pleased to tell you that you can use the Red Hat Enterprise - Linux 8 or Red Hat Enterprise Linux 9 repositories: for' - last_post_date: "2024-06-18T07:43:06Z" - last_post_link: https://galeracluster.com/2024/06/galera-cluster-works-on-oracle-linux/ - last_post_categories: - - Blog - - Planet OpenStack - - disaster recovery - - Galera Cluster for MariaDB - - Galera Cluster for MyQL - - Galera Cluster for MySQL - - Multi-master MySQL - - MySQL high availability - - Oracle Linux - last_post_guid: c38bc297e86bd37e85362ff0db999e1d - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6f6fcb3b987850d9ca559ce2b3a44c74.md b/content/discover/feed-6f6fcb3b987850d9ca559ce2b3a44c74.md index ec0b23b72..3c8f1e5e2 100644 --- a/content/discover/feed-6f6fcb3b987850d9ca559ce2b3a44c74.md +++ b/content/discover/feed-6f6fcb3b987850d9ca559ce2b3a44c74.md @@ -14,32 +14,37 @@ params: - https://indieweb.org/wiki/index.php?feed=atom&title=Special%3ARecentChanges - https://otavio.cc/feed.xml - https://www.manton.org/feed.xml - - https://www.manton.org/podcast.xml recommender: - https://amerpie.lol/feed.xml categories: [] relme: https://github.com/vladcampos: true - https://micro.blog/vladcampos: false - https://twitter.com/vladcampos: false - last_post_title: '3 mindful options to send #Supernote notes to #Obsidian.' - last_post_description: Ever wanted to send your Supernote notes to Obsidian? Well, - there are some ways to do that. Some examples include converting a note to PDF, - opening Supernote notes in Obsidian, and even - last_post_date: "2024-06-01T15:58:16+01:00" - last_post_link: https://vladcampos.com/2024/06/01/mindful-options-to.html + https://mastodon.social/@vladcampos: true + https://vladcampos.com/: true + last_post_title: Evernote Just Made My Life Easier. + last_post_description: |- + Recent quality-of-life improvements to Evernote are making my system even better. + Better Synchronization + Remember that video I published a few months ago about Evernote moving away from the + last_post_date: "2024-07-07T16:10:51+01:00" + last_post_link: https://vladcampos.com/2024/07/07/evernote-just-made.html last_post_categories: [] - last_post_guid: 9118bc98d526f720913b11e01eaf0536 + last_post_language: "" + last_post_guid: 9d1ed82e965d2061eeb5688091263515 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 - promotes: 2 + promotes: 1 relme: 2 title: 3 website: 2 - score: 14 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-6f70e81368eab6dec24499ad85d05bd8.md b/content/discover/feed-6f70e81368eab6dec24499ad85d05bd8.md new file mode 100644 index 000000000..a92e771c5 --- /dev/null +++ b/content/discover/feed-6f70e81368eab6dec24499ad85d05bd8.md @@ -0,0 +1,61 @@ +--- +title: gvSIG CE Blog +date: "2024-07-07T13:39:01-07:00" +description: "" +params: + feedlink: https://gvsigce.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 6f70e81368eab6dec24499ad85d05bd8 + websites: + https://gvsigce.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 2012 Washington GIS Conference + - AGIT + - Code Sprint + - Committer + - EPSG + - FOSSGIS + - GDAL + - GRASS GIS + - GeoTools + - Git + - R + - SAGA + - SEXTANTE + - SQLite + - SVN + - Terra GIS + - Testing + - developers + - gvSIG CE + relme: + https://csgisblog.blogspot.com/: true + https://gvsigce.blogspot.com/: true + https://www.blogger.com/profile/04518422302925054438: true + last_post_title: Dynamic web map of gvSIG CE downloads + last_post_description: "" + last_post_date: "2014-06-03T13:00:52-07:00" + last_post_link: https://gvsigce.blogspot.com/2014/06/dynamic-web-map-of-gvsig-ce-downloads.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 8f4ccc27e33641389bf3b2e31d3951fb + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6f87893dcb97f9e272773e224ced0c0b.md b/content/discover/feed-6f87893dcb97f9e272773e224ced0c0b.md deleted file mode 100644 index 472c9c068..000000000 --- a/content/discover/feed-6f87893dcb97f9e272773e224ced0c0b.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: huijing -date: "1970-01-01T00:00:00Z" -description: Public posts from @huijing@tech.lgbt -params: - feedlink: https://tech.lgbt/@huijing.rss - feedtype: rss - feedid: 6f87893dcb97f9e272773e224ced0c0b - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6f9489168be883803de866a42be0a403.md b/content/discover/feed-6f9489168be883803de866a42be0a403.md deleted file mode 100644 index 4e12cd049..000000000 --- a/content/discover/feed-6f9489168be883803de866a42be0a403.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Code & Supply Scholarship Fund -date: "1970-01-01T00:00:00Z" -description: Recent content on Code & Supply Scholarship Fund -params: - feedlink: https://codeandsupply.fund/index.xml - feedtype: rss - feedid: 6f9489168be883803de866a42be0a403 - websites: - https://codeandsupply.fund/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://hachyderm.io/@codeandsupply: true - last_post_title: Board of Directors and other volunteering opportunities - last_post_description: |- - Code and Supply Scholarship Fund needs you! As we grow, we identify opportunities to streamline and expedite the process of turning donations into successful outcomes. - Board of Directors membership - last_post_date: "0001-01-01T00:00:00Z" - last_post_link: https://codeandsupply.fund/volunteer/ - last_post_categories: [] - last_post_guid: 9850d614abb390afea8dfead40f77e82 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6fb88d3de1784d7fc233b9cd45b045c3.md b/content/discover/feed-6fb88d3de1784d7fc233b9cd45b045c3.md deleted file mode 100644 index 472f3757c..000000000 --- a/content/discover/feed-6fb88d3de1784d7fc233b9cd45b045c3.md +++ /dev/null @@ -1,473 +0,0 @@ ---- -title: Electric Duncan -date: "2024-03-07T15:21:06-08:00" -description: i t   a l l   c o m e s   d o w n   t o   I / O ,   e v e n t u a l l y -params: - feedlink: https://oubiwann.blogspot.com/feeds/posts/default/-/openstack - feedtype: atom - feedid: 6fb88d3de1784d7fc233b9cd45b045c3 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - python - - twisted - - ubuntu - - lisp - - software - - distributed systems - - erlang - - community - - programming - - uls - - business - - cloud - - divmod - - services - - lfe - - conferences - - canonical - - concurrency - - open source - - howtos - - linux - - clojure - - development - - hci - - multi-touch - - after-cloud - - apple - - books - - networking - - openstack - - web - - async - - asynchronous - - functional-programming - - launchpad - - mac os x - - math - - oscon - - personal-data - - pycon - - reblog - - scheme - - data - - internet - - lambda calculus - - languages - - python 3 - - rackspace - - technology - - touch - - uds - - announcements - - book reviews - - code - - google - - mobile-computing - - open-source - - programming methodologies - - reviews - - scientific computing - - servers - - soa - - testing - - amqp - - cgi twisted - - documentation - - dreamhost - - finance - - freedom - - future - - games - - graphics - - haskell - - interviews - - itunes - - java - - libraries - - matplotlib - - monitoring - - music - - nevow - - news - - ponderings - - programming-future - - pycon2012 - - qa - - research - - scripting - - storm - - tools - - txamqp-sinfonia - - utilities - - actors - - agents - - applications - - autoscaling - - combinator - - companies - - configuration management - - conversations - - databases - - design - - devops - - economics - - education - - elixir - - email - - erlport - - events - - foundations - - github - - gtk - - hacks - - hardware - - heat - - history - - http - - hy - - jobs - - json - - jsonrpc - - landscape - - libevent - - load-balancing - - logos - - mac - - management - - mantissa - - meetup - - meetups - - messaging - - numpy - - o'reilly - - orchestration - - overviews - - packt - - physics - - planning - - pop3 - - privacy - - publishing - - pycon2009 - - pyrrd - - qt - - rest - - rrd - - rrdtool - - sbcl - - security - - smalltalk - - smtp - - solaris - - spore - - subversion - - systems - - text - - threadpools - - threads - - toolkits - - training - - travel - - tsf - - tx - - utouch - - version-control - - virtualization - - wearable-computing - - xorg - - zope - - zope3 - - λ-calculus - - 1-to-many - - advocates - - agile - - ajax - - alchemy - - analysis - - anthropology - - apis - - apt-get - - architecture - - articles - - ascii - - auctions - - audio - - authentication - - bazaar - - blogging - - bottle - - brew - - bzr - - category theory - - cern - - cffi - - cgi - - cl-async - - cms - - codethink - - comet - - command line - - commands - - comparisons - - compojure - - computing - - concerts - - conch - - content management - - coroutines - - cp/m - - cred - - culture - - data structures - - ddtx - - debian - - deferreds - - deployment-poetry - - development frameworks - - devs - - dimensions - - distance - - docker - - docutils - - earthdata - - earthdata science - - earthdata search - - ec2 - - ecnomics - - einstein - - entertainment - - environments - - eos - - eosdis - - erjang - - erlang-factory - - errors - - esdis - - evolutionary programming - - examples - - experiments - - extempore - - features - - festival - - fixes - - flask - - food - - fp - - frameworks - - functions - - generative-music - - generators - - genetic programming - - gestures - - gevent - - gimp - - gis - - gnome - - graph-theory - - graphs - - graphviz - - greenlets - - grid - - hacking - - half life - - hash maps - - hash tables - - hashes - - headcrabs - - health care - - holden web - - hoplon - - hosting - - html - - human-resources - - humor - - icons - - images - - impromptu - - installation - - installs - - intellectual property - - internap - - io - - ios - - iphone - - joxa - - julia - - jvm - - kerl - - keynotes - - klein - - lambda - - lame - - lamp - - lbaas - - leadership - - levenshtein - - libev - - links - - live-coding - - lsci - - lucid - - m-expressions - - maintainers - - mapping data - - maps - - maverick - - meego - - metaclasses - - minicom - - miniturization - - mirco-apps - - ml - - mobile - - modeling - - modules - - movies - - mp3 - - mplayer - - mysql - - nasa - - natty - - netbooks - - nextstep - - notation - - ocaml - - occupy - - operations - - organization - - orm - - otp - - parallelism - - partnerships - - party - - performances - - philosophy - - photoshop - - ping.fm - - politics - - presentations - - process - - projects - - property lists - - psf - - psu - - pycon2004 - - pycon2005 - - pydot - - pymon - - pymt - - pypi - - pypy - - q-and-a - - readline - - rebar - - records - - recursion - - reform - - release - - repl - - revolution - - rhythmbox - - rlwrap - - roadmap - - rpc - - rst - - rtf - - ruby - - s-expressions - - safari - - san francisco - - satellite data - - science - - scipy - - scoble - - search - - seminars - - serial - - sf - - signals - - sites - - smartphones - - social - - society - - sofware - - spoofs - - sprints - - ssh - - standups - - storage - - stross - - summits - - sun - - support - - swag - - syntax - - t-shirts - - tablets - - tahoe - - tcp - - tea - - templating - - texas - - tornado - - trac - - transparency - - turing - - turing machine - - txamqp - - txjsonrpc - - uist - - unity - - usability - - user-interface - - vacation - - validators - - vde - - vendors - - video - - virtual - - visualization - - von neumann - - windowmaker - - windows - - world - - writing - - xtlang - - yaws - - zenoss - - zerovm - relme: {} - last_post_title: 'OpenStack Developer Summit: Heat Followup' - last_post_description: "" - last_post_date: "2013-04-23T16:55:39-07:00" - last_post_link: https://oubiwann.blogspot.com/2013/04/openstack-developer-summit-heat-followup.html - last_post_categories: - - autoscaling - - community - - configuration management - - development - - heat - - lbaas - - open source - - openstack - - orchestration - - planning - - rackspace - last_post_guid: bff2d0d13ffe9b65d70630f068e5c9fb - score_criteria: - cats: 5 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 14 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6fc4cadc0fcbf8bbe2d9e5e3497b171f.md b/content/discover/feed-6fc4cadc0fcbf8bbe2d9e5e3497b171f.md deleted file mode 100644 index 51e401c2f..000000000 --- a/content/discover/feed-6fc4cadc0fcbf8bbe2d9e5e3497b171f.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Kuketz IT-Security » Microblog -date: "1970-01-01T00:00:00Z" -description: IT-Sicherheit | Datenschutz | Hacking -params: - feedlink: https://www.kuketz-blog.de/category/microblog/feed/ - feedtype: rss - feedid: 6fc4cadc0fcbf8bbe2d9e5e3497b171f - websites: - https://www.kuketz-blog.de/: true - https://www.kuketz-blog.de/chat/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Microblog - relme: - https://social.tchncs.de/@kuketzblog: true - last_post_title: 'Firefox: Data protection breach in Android version – E-Mail an - Mozilla' - last_post_description: 'Aufgrund der Datenschutzverstöße in der aktuellen Android-Version - von Firefox (Version 126.0) habe ich Mozilla kontaktiert und um Stellungnahme - gebeten: Dear Mozilla team, I would like to draw your' - last_post_date: "2024-05-31T10:21:25Z" - last_post_link: https://www.kuketz-blog.de/firefox-data-protection-breach-in-android-version-e-mail-an-mozilla/ - last_post_categories: - - Microblog - last_post_guid: 340020d432178cdb40d3324979a4f81d - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6fc8df093fb25927a55dd62fb2e3c69a.md b/content/discover/feed-6fc8df093fb25927a55dd62fb2e3c69a.md deleted file mode 100644 index 90f40871e..000000000 --- a/content/discover/feed-6fc8df093fb25927a55dd62fb2e3c69a.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: alphathiel.de -date: "1970-01-01T00:00:00Z" -description: So gewesen es war... -params: - feedlink: https://alphathiel.de/feed/ - feedtype: rss - feedid: 6fc8df093fb25927a55dd62fb2e3c69a - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://jlelse.blog/.min.rss - - https://jlelse.blog/.rss - - https://jlelse.blog/index.xml - categories: - - Blog - - ostsee - - Tagebuchbloggen - - Urlaub - relme: {} - last_post_title: Urlaubsblog Mai 2024 - last_post_description: Während die coolen Internetkids sich in Berlin auf der Republica - tummeln, fahre ich mit meiner Frau ins Ostseebad Boltenhagen. Zum ersten Mal seit - 16 Jahren ohne Kind (der zweite Versuch). - last_post_date: "2024-06-02T09:48:30Z" - last_post_link: https://alphathiel.de/urlaubsblog-mai-2024/ - last_post_categories: - - Blog - - ostsee - - Tagebuchbloggen - - Urlaub - last_post_guid: 791b694affaae31c23b7fcc71c39e3f9 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 14 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6fc92f972fa6d1c353863130b1889988.md b/content/discover/feed-6fc92f972fa6d1c353863130b1889988.md index 95ced8667..0e9fe6a8f 100644 --- a/content/discover/feed-6fc92f972fa6d1c353863130b1889988.md +++ b/content/discover/feed-6fc92f972fa6d1c353863130b1889988.md @@ -13,26 +13,32 @@ params: recommender: [] categories: - WABL - relme: {} - last_post_title: Weekly WABL Wrap – Round 6 – 26 May 2024 + relme: + https://perthredbacks.asn.au/: true + last_post_title: Weekly WABL Wrap – Round 11 – 30 June 2024 last_post_description: |- - The Weekly WABL Wrap is proudly sponsored by Woods Insurance Brokers.  Here’s the Round 6 wrap-up of how all our teams […] - The post Weekly WABL Wrap – Round 6 – 26 May 2024 first appeared - last_post_date: "2024-05-29T08:40:29Z" - last_post_link: https://perthredbacks.asn.au/weekly-wabl-wrap-26-may-2024/?utm_source=rss&utm_medium=rss&utm_campaign=weekly-wabl-wrap-26-may-2024 + The Weekly WABL Wrap is proudly sponsored by Woods Insurance Brokers.  Here’s the Round 11 wrap-up of how all our teams […] + The post Weekly WABL Wrap – Round 11 – 30 June 2024 first + last_post_date: "2024-07-03T23:30:41Z" + last_post_link: https://perthredbacks.asn.au/weekly-wabl-wrap-30-june-2024/?utm_source=rss&utm_medium=rss&utm_campaign=weekly-wabl-wrap-30-june-2024 last_post_categories: - WABL - last_post_guid: 017726eedaab5d464abea645e2dcfa55 + last_post_language: "" + last_post_guid: b29e4b5db0fb889a3c7b64721201e5ce score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 9 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-6fd32dfbe969715bcca9449997c32e8c.md b/content/discover/feed-6fd32dfbe969715bcca9449997c32e8c.md new file mode 100644 index 000000000..86bbf9620 --- /dev/null +++ b/content/discover/feed-6fd32dfbe969715bcca9449997c32e8c.md @@ -0,0 +1,61 @@ +--- +title: Permanent Cranial Damage +date: "1970-01-01T00:00:00Z" +description: Putting your children at risk since 1995. +params: + feedlink: https://permacrandam.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 6fd32dfbe969715bcca9449997c32e8c + websites: + https://permacrandam.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - 5e + - OSR + - brief brainworms + - campaign + - class + - d&d + - errant + - genre + - house rules + - monsters + - music + - random tables + - setting stuff + - the black hack + - the elixir + - thoughts + relme: + https://permacrandam.blogspot.com/: true + last_post_title: An OSR approach to Spotlight + last_post_description: This post is based on a conversation I had with Ben L. in + response to his recent post over on: http://maziriansgarden.blogspot.com/2023/07/the-problem-of-spotlight-management-in.htmlBen's + post + last_post_date: "2023-08-14T14:00:00Z" + last_post_link: https://permacrandam.blogspot.com/2023/08/an-osr-approach-to-spotlight.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 2199fec7ebd1b2824c30763cc8c0d1c6 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 23 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6fd4db6fa4ca52d8e7b5b9d298810ffb.md b/content/discover/feed-6fd4db6fa4ca52d8e7b5b9d298810ffb.md new file mode 100644 index 000000000..598141bfa --- /dev/null +++ b/content/discover/feed-6fd4db6fa4ca52d8e7b5b9d298810ffb.md @@ -0,0 +1,596 @@ +--- +title: Mariuz's Blog +date: "2024-07-03T23:29:37-07:00" +description: Programmer 4 life +params: + feedlink: https://mapopa.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 6fd4db6fa4ca52d8e7b5b9d298810ffb + websites: + https://mapopa.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - '#LazarusBook #chapter1' + - '#LazarusBook #chapter2' + - '#firebird' + - '#gsoc2015' + - '#libreoffice' + - -fPIC + - .forward + - /etc + - 2g2 + - 3d rage pro + - 3gp + - AppVeyor + - BSD + - Beer facts + - Chris Rock + - Ganymede + - Haikuos + - HowTo + - LISP + - LinkedIn + - Lubuntu + - MOTU + - Master Of The Universe + - Parangelion 2009 + - QEMU + - RMS. GNU + - Romania + - SQL:2003 + - Stallman + - Transport Tycoon Deluxe + - WebPositive + - X Forward + - Xc3028 + - abrowser + - acpi + - activerecord + - adodb + - aircrack-ng + - amd + - amd64 + - amr + - android + - android-x86 + - ansi c + - apache + - apache 2.2 + - apc + - apparmor + - appliance + - apt + - arora + - asus + - atheros + - ati + - audacious + - avant-window-navigator + - batman + - bazaar + - benchmarks + - bind9 + - blog tutorial + - bochs + - bonie++ + - bookmarks + - borkstation + - borland + - boston + - boxlinks + - bug + - bugzilla + - bush + - buttons + - c api + - c# + - c++ + - cache control + - cacti + - cake php + - cakephp + - cast + - cbq + - centos + - cfq + - cgi + - chrome + - chromium + - clang++ + - claud book + - claws + - clipse + - cloudbook + - cms + - compiz + - composite + - coreutils + - cpp + - cpus + - crashkernel + - crosscompiling + - csplit + - css + - customize + - cvs + - cx23885 + - dark + - dark silhouettes + - date + - dbd-interbase + - debian + - debian arm + - debian experimental + - debian stable + - dell vostro + - delphi + - delphi programming + - designos + - devuan + - distcc + - distributedssh + - disturbed monkeys + - django + - dmesg + - dns + - doom + - dosbox + - dosemu + - dot-forward + - dovecot + - dream htc + - drm + - dstat + - du + - dual display + - dyndns + - ecli + - eclipse + - eeexubuntu + - egit + - eliberatica + - eog + - epiphany + - error + - everex + - evolution + - example + - ext3 + - ext4 + - extract + - fail + - fastcgi + - fbcon 2010 + - fbexport + - feisty + - festy fawn + - ffmpeg + - final + - firebird + - firebird 2.0 + - firebird 2.1 + - firebird 2.5 + - firebird 3.0 + - firebird build + - firebird conference + - firebirdsql + - firebug + - firefox + - firefox 2.0 + - firefox 3.0 + - fireruby + - flamerobin + - flamerobin 0.8.5 + - flamerobin 0.9.0 + - flaps + - flash + - flash 64 + - flash10 + - flash64 + - fleps + - flv live streaming + - fpc + - fpc 2.2.x + - fpm + - frames + - free pascal + - free time + - freebsd + - freemind + - fuse + - g++ + - gbox + - geek pr0n + - gems + - gigabyte + - gingerbread + - git + - glibc + - gmail.com + - gnome + - gnome-gegl2 + - gnu + - good pr + - goodbye-microsoft + - google + - google app + - gp3 + - gpc3 + - grub + - grub2 + - gsl + - gsoc2015 + - gtk + - gutsy + - gwibber + - gzip + - happy birthday + - hardy + - haxors + - hosting + - hp 4000 + - htb + - htbtools + - html5 + - i386 + - ibase + - iceweasel + - icq + - icu + - ie6 + - ie7 + - ie8 + - inbox + - inet + - inmures.ro + - innodb + - intel + - interbase + - ipython + - isc + - itrepid + - jabber + - jaun + - java + - java script + - jaws + - jdbc + - jeos + - joins + - jquery + - jre6 + - json + - kFreeBSD + - kde4 + - kde4.2 + - kernel + - kernel 2.5.x + - kernel 2.6.26 + - kernel 2.6.27 + - kernel 2.6.28 + - kernel 2.6.30 + - kernel 2.6.x + - kernel vanilla + - kexec + - killie + - komodo + - komposer + - konqueror + - kubuntu + - kvm + - kvm-linux + - lamp + - lazarus + - lazarus 0.9.26 + - leadtek pvr2200 + - lemp + - lenny + - libdbi + - libdbi-drivers + - libreoffice + - libvirt + - libvirt-manager + - lighttpd + - linus + - linus torvalds + - linux + - linux 0.0.1 + - linux 3.x.x + - linuz + - llvm + - load balancer + - locales + - locked + - lug mures + - lulu.com + - lwn + - lxde + - mach64 + - madwifi + - man + - matrix + - mcrypt + - mdb2 + - memcache + - mencode + - mencoder + - mercurial + - merge + - microsoft + - migrate ext3 to ext4 + - mingw + - mod_expires + - modules + - monitor + - mono + - mono 2.0 + - mono 2.6 + - moonlight + - movable type + - mozilla + - mp3 + - mp4 + - mplayer + - mta + - music tracker + - my$QL + - mysql + - mysql2firebird + - nat + - net + - netbooks + - nginix + - nginx + - nmap + - nokia + - nokia 810 + - non3d + - noop + - nouveau + - nsfw + - nvidia drivers 180 + - ogg + - oo pascal + - openchrome + - opengl + - opengl rocks + - openoffice 3.0 + - openorrifice + - openssh + - openssl + - openttd + - oracle + - oracle sux + - oszoo + - oxygen + - pacpl + - panoramic view + - parrot 0.6.3 + - pascal + - patents + - pda + - pdo + - perl + - perl6 + - phenom x3 + - php + - php 4 + - php 5 + - php 5.3 + - php ide + - php.net + - php5 + - php5.3 + - php6 + - phpbb3 + - phpmyfaq + - pidgin + - plaboy + - playogg + - plumbers + - pop3 + - postfix + - postgresql + - powertop + - prince of persia + - privoxy + - pulse + - pvm + - pxe + - pyroom + - python + - qemu manager + - qmail + - qmailanalog + - qml + - qt + - qt 4.7 + - qt4 + - qt4.5 + - qtcreator + - quake + - quake 1 + - raid + - rails + - rants + - reactos + - recordmydesktop + - reea.net + - release party + - reverse + - rip nokia + - ripping + - ror + - rtfm + - ruby + - rubyforge + - rubyonfire + - samba + - schedulers + - scroolkeeper + - search applicance + - sed + - sekrity + - selinux + - sendmail + - sharp + - shorewall + - sid + - silverlight + - sis + - sixcore + - skype + - slackware + - smbfs + - snaps + - snmp + - snow + - soap + - softpedia + - songbird + - sourceforge + - sponsor + - sql server 2008 + - sqlite + - ssh + - ssh tunnel + - sshfs + - stable + - stats + - streaming + - subclipse + - suhosin-patch + - super classic + - super server + - svk + - svn + - sylpheed + - targu mures + - tc + - tcc + - tccboot + - tentakel + - terminal + - testing + - tests + - themes + - theora + - thunderbird + - timestamp + - timstamp + - tiobe + - todo reading + - tor + - tpch + - tube + - turboc + - turboc 2.0 + - tutorial + - tux sacrifice + - tuxguitar + - typo3 + - ubufox + - ubuntu + - ubuntu 6.10 live cd + - ubuntu gutsy + - ubuntu hardy heron + - ubuntu intrepid ibex + - ubuntu jaunty + - ubuntu lite + - ubuntu live cd + - ubuntu server + - ubuntustudio + - ue4 + - unetbootin + - unicode + - unicode art + - unrealengine + - upgrade + - use firebird + - usesql + - utf art + - uuid + - v4l + - v4l-dvb-experimental + - v4lctl + - v8 + - vai + - vanilla + - vcl4php + - vederi + - veto files + - via + - virtualbox + - vista + - vlc + - vlc nightly + - vlc streaming + - vmstat + - vmware + - voodoo + - vorbis + - vsftp + - vulcanians + - web20 + - webcam + - webgl + - webkit + - webkitgtk + - why git + - wibrain + - windmill + - windows + - wine + - winfast 2000 xp global + - wireless + - wma + - wordpress + - worm + - wubi + - x264 + - x4 + - x64 + - x86 + - xawtv + - xen + - xfce + - xfce4 + - xmms + - xmpp + - xul + - xulrunner + - youtube + - zaurus + - zul + relme: + https://firebirdnews.blogspot.com/: true + https://mapopa.blogspot.com/: true + https://www.blogger.com/profile/09862886782232467681: true + last_post_title: Firebird 5.0 Is Released + last_post_description: Firebird Project is happy to announce general availability + of Firebird 5.0 — the latest major release of the Firebird relational database + for Windows, Linux, MacOS and Android platforms.This + last_post_date: "2024-01-25T02:29:47-08:00" + last_post_link: https://mapopa.blogspot.com/2024/01/firebird-50-is-released.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 7b6efbdcab1a2baf791d4c9e6e7e4b8b + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6fdd893f8bcd7cc27f934092a2e1e9cb.md b/content/discover/feed-6fdd893f8bcd7cc27f934092a2e1e9cb.md deleted file mode 100644 index 308f2e94a..000000000 --- a/content/discover/feed-6fdd893f8bcd7cc27f934092a2e1e9cb.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Forgejo -date: "1970-01-01T00:00:00Z" -description: Public posts from @forgejo@floss.social -params: - feedlink: https://floss.social/@forgejo.rss - feedtype: rss - feedid: 6fdd893f8bcd7cc27f934092a2e1e9cb - websites: - https://floss.social/@forgejo: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://codeberg.org/forgejo/forgejo: true - https://forgejo.org/: true - https://keyoxide.org/contact@forgejo.org: false - https://matrix.to/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-6fe240342b14a8cc9e4e94cd06fe18aa.md b/content/discover/feed-6fe240342b14a8cc9e4e94cd06fe18aa.md new file mode 100644 index 000000000..a2f685af7 --- /dev/null +++ b/content/discover/feed-6fe240342b14a8cc9e4e94cd06fe18aa.md @@ -0,0 +1,45 @@ +--- +title: The Lucid Manager on Lucid Manager +date: "1970-01-01T00:00:00Z" +description: Recent content in The Lucid Manager on Lucid Manager +params: + feedlink: https://lucidmanager.org/index.xml + feedtype: rss + feedid: 6fe240342b14a8cc9e4e94cd06fe18aa + websites: + https://lucidmanager.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://aus.social/@danderzei: true + https://github.com/pprevos/: true + https://horizonofreason.com/: true + https://lucidmanager.org/: true + last_post_title: Introduction to R for Utilities + last_post_description: Data science involves analyzing data in a systematic way + to create value for businesses. This field combines mathematics, computer science, + and domain knowledge. Some professionals in the industry + last_post_date: "2023-05-10T00:00:00Z" + last_post_link: https://lucidmanager.org/data-science/r-for-water-utilities/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 250858824cafdaf055af80f864e87090 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-6fe4908add0195c30ca42c37fa41d7e8.md b/content/discover/feed-6fe4908add0195c30ca42c37fa41d7e8.md new file mode 100644 index 000000000..e30d5fddb --- /dev/null +++ b/content/discover/feed-6fe4908add0195c30ca42c37fa41d7e8.md @@ -0,0 +1,43 @@ +--- +title: Poetry and stuff for fun +date: "2024-06-20T10:54:31-07:00" +description: "" +params: + feedlink: https://poetryandstuffforfun.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 6fe4908add0195c30ca42c37fa41d7e8 + websites: + https://poetryandstuffforfun.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://flosslinuxblog.blogspot.com/: true + https://linuxbitsandscripts.blogspot.com/: true + https://poetryandstuffforfun.blogspot.com/: true + https://www.blogger.com/profile/17644077996431326998: true + last_post_title: Mille Regretz - A paraphrase + last_post_description: "" + last_post_date: "2024-01-21T12:54:29-08:00" + last_post_link: https://poetryandstuffforfun.blogspot.com/2024/01/mille-regretz-paraphrase.html + last_post_categories: [] + last_post_language: "" + last_post_guid: f4ea3d441b643eba25506b5057eb5f19 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-6ff35419e708f83cdeab2f98e55cd9d8.md b/content/discover/feed-6ff35419e708f83cdeab2f98e55cd9d8.md index 031f01675..158c1ec9c 100644 --- a/content/discover/feed-6ff35419e708f83cdeab2f98e55cd9d8.md +++ b/content/discover/feed-6ff35419e708f83cdeab2f98e55cd9d8.md @@ -14,24 +14,30 @@ params: categories: [] relme: https://idlethumbs.social/@SasquatcherGeneral: true - last_post_title: Comment on Paved with some sort of intention by Chuck - last_post_description: So I ended up doing something I swore did never do, which - is watch “ending EXPLAINED!!!” videos and read threads about the movie on Reddit. - None of them had an interpretation that I liked, but - last_post_date: "2024-04-23T15:37:05Z" - last_post_link: https://www.spectrecollie.com/2024/04/22/paved-with-some-sort-of-intention/#comment-3874 + https://www.spectrecollie.com/: true + last_post_title: 'Comment on Tuesday Tune Two-Fer: Breeders Banquet by Chris Glass' + last_post_description: 'I''m with you that All Nerve is incredible. If ever I get + stuck in a loop I put on "Dawn: Making an Effort" and I feel righted. (Related: + I love the RALLY refrain so much I made a little felt pennant' + last_post_date: "2024-07-02T19:13:03Z" + last_post_link: https://www.spectrecollie.com/2024/07/02/tuesday-tune-two-fer-breeders-banquet/#comment-3889 last_post_categories: [] - last_post_guid: 9127ba171c9f76ad48e63cd9cb7eed39 + last_post_language: "" + last_post_guid: 7c32441650c2aae1a4a6a5c965e9c85b score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-6ff83db219be2bdfab3da76e964d7c4e.md b/content/discover/feed-6ff83db219be2bdfab3da76e964d7c4e.md deleted file mode 100644 index 275c7b65c..000000000 --- a/content/discover/feed-6ff83db219be2bdfab3da76e964d7c4e.md +++ /dev/null @@ -1,49 +0,0 @@ ---- -title: Techdirt -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://www.techdirt.com/feed/ - feedtype: rss - feedid: 6ff83db219be2bdfab3da76e964d7c4e - websites: - https://www.techdirt.com/: true - https://www.techdirt.com/2023/01/04/journalists-and-others-should-leave-twitter-heres-how-they-can-get-started/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - copyright - - death - - ownership - - video game library - - video game preservation - - video games - relme: {} - last_post_title: 'You Don’t Own The Video Games You’ve Bought: The Death Edition' - last_post_description: In my basement at home, I have a handful of old gaming consoles - that were left to our family after other family members either got too old to - want them any longer or after they passed away. Coming - last_post_date: "2024-06-04T03:09:00Z" - last_post_link: https://www.techdirt.com/2024/06/03/you-dont-own-the-video-games-youve-bought-the-death-edition/ - last_post_categories: - - copyright - - death - - ownership - - video game library - - video game preservation - - video games - last_post_guid: bef821829e6cec3a06786afcd0bec3b0 - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-701082478d25e361d902f820139f7e30.md b/content/discover/feed-701082478d25e361d902f820139f7e30.md index 4ae967f13..3a65bbc16 100644 --- a/content/discover/feed-701082478d25e361d902f820139f7e30.md +++ b/content/discover/feed-701082478d25e361d902f820139f7e30.md @@ -1,6 +1,6 @@ --- title: Octopuns -date: "2024-06-04T23:03:16+10:00" +date: "2024-07-07T06:45:31+10:00" description: "" params: feedlink: https://www.octopuns.com/feeds/posts/default @@ -14,23 +14,28 @@ params: categories: - guest relme: - https://www.blogger.com/profile/09594428564020352013: true - last_post_title: '(Old Comic) #022 The Stuff' + https://www.octopuns.com/: true + last_post_title: '#130 The Physicist' last_post_description: "" - last_post_date: "2024-06-04T23:01:39+10:00" - last_post_link: https://www.octopuns.com/2024/05/old-comic-022-stuff.html + last_post_date: "2024-06-04T23:01:12+10:00" + last_post_link: https://www.octopuns.com/2024/06/130-physicist.html last_post_categories: [] - last_post_guid: c962f9a0a8438b9ffdff6b510ffae322 + last_post_language: "" + last_post_guid: 6211b78dd51664c591720fc912ec876c score_criteria: cats: 1 description: 0 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 8 + score: 11 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-7011743cd1cf9f7c6b17ff8567bb0f48.md b/content/discover/feed-7011743cd1cf9f7c6b17ff8567bb0f48.md index 7102efa70..7550757d2 100644 --- a/content/discover/feed-7011743cd1cf9f7c6b17ff8567bb0f48.md +++ b/content/discover/feed-7011743cd1cf9f7c6b17ff8567bb0f48.md @@ -14,49 +14,40 @@ params: recommended: [] recommender: [] categories: - - Open Web - AMP + - Open Web - WAP relme: - https://developers.google.com/profile/u/pfefferle: false https://github.com/pfefferle: true https://gitlab.com/pfefferle: true - https://indieweb.org/User:Notiz.blog: false https://mastodon.social/@pfefferle: true - https://micro.blog/pfefferle: false - https://microformats.org/wiki/User:Pfefferle: false - https://notiz.blog/about/: false - https://openwebpodcast.de/: false - https://packagist.org/packages/pfefferle/: false - https://pfefferle.tumblr.com/: false - https://profiles.wordpress.org/pfefferle: false - https://twitter.com/pfefferle: false - https://wordpress.tv/speakers/matthias-pfefferle/: false - https://www.crunchbase.com/person/matthias-pfefferle: false - https://www.flickr.com/people/pfefferle: false - https://www.linkedin.com/in/pfefferle/: false - https://www.npmjs.com/~pfefferle: false - https://www.slideshare.net/pfefferle: false - https://www.xing.com/profile/Matthias_Pfefferle: false + https://notiz.blog/: true + https://notiz.blog/about/: true + https://profiles.wordpress.org/pfefferle/: true last_post_title: A letter about Google AMP last_post_description: 'Ich hab den AMP Letter unterschrieben! Warum? Darum:' last_post_date: "2018-02-02T17:41:57Z" last_post_link: https://notiz.blog/2018/02/02/a-letter-about-google-amp/ last_post_categories: - - Open Web - AMP + - Open Web - WAP + last_post_language: "" last_post_guid: a22b8313247fb31956f7aa50a4773d97 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: de --- diff --git a/content/discover/feed-701803bd94d3d29775bbd77320388279.md b/content/discover/feed-701803bd94d3d29775bbd77320388279.md deleted file mode 100644 index e92228287..000000000 --- a/content/discover/feed-701803bd94d3d29775bbd77320388279.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for Email is good. -date: "1970-01-01T00:00:00Z" -description: A site about email productivity. -params: - feedlink: https://email-is-good.com/comments/feed/ - feedtype: rss - feedid: 701803bd94d3d29775bbd77320388279 - websites: - https://email-is-good.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Email yourself TODOs? Drafts might be more flexible. - by Stuart - last_post_description: I find that I do a similar thing for don’t-forget/process-later - information, but tend to send myself Messages on iOS rather than email. This happens - especially when reading social media content, - last_post_date: "2024-03-20T19:15:22Z" - last_post_link: https://email-is-good.com/2024/03/19/email-yourself-todos-drafts-might-be-more-flexible/comment-page-1/#comment-850 - last_post_categories: [] - last_post_guid: 41a40c4a3ed8d97895bf2e097b383e29 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7018490b9b59999f467062f28e7c9672.md b/content/discover/feed-7018490b9b59999f467062f28e7c9672.md new file mode 100644 index 000000000..298c942c2 --- /dev/null +++ b/content/discover/feed-7018490b9b59999f467062f28e7c9672.md @@ -0,0 +1,46 @@ +--- +title: Windfluechter|Net +date: "1970-01-01T00:00:00Z" +description: Re-decentralize the Internet +params: + feedlink: https://www.windfluechter.net/feed/ + feedtype: rss + feedid: 7018490b9b59999f467062f28e7c9672 + websites: + https://www.windfluechter.net/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Server + - Uncategorized + relme: + https://www.windfluechter.net/: true + last_post_title: Arbeiten am Mailserver + last_post_description: Wie heute in einer Info-Mail angekündigt, finden gerade Umstellungsarbeiten + am Mailserver statt. Im Zuge dieser Arbeiten wird unter anderem das Authentifizierungsverfahren + CRAM-MD5 abgeschaltet. Die + last_post_date: "2021-07-23T10:08:41Z" + last_post_link: https://www.windfluechter.net/2021/07/23/arbeiten-am-mailserver/ + last_post_categories: + - Server + - Uncategorized + last_post_language: "" + last_post_guid: d4f36c679a669d3c5e616d95bf9e4931 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-70317b934a528a60cd924830362ec787.md b/content/discover/feed-70317b934a528a60cd924830362ec787.md new file mode 100644 index 000000000..232178ab7 --- /dev/null +++ b/content/discover/feed-70317b934a528a60cd924830362ec787.md @@ -0,0 +1,67 @@ +--- +title: Mäd Meier's Sketches +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://mmsketches.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 70317b934a528a60cd924830362ec787 + websites: + https://mmsketches.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - AddIn + - Excel + - Fuzzy Search + - Gephi + - Graph3DGL + - GraphViz + - HP DesignJet 500 + - ModelBus + - OAW + - Pajek + - Sparx EA + - Stemmer + - Table + - UML + - VS 2010 + - Word + - network + - type system + relme: + https://4urit.blogspot.com/: true + https://huggenberg.blogspot.com/: true + https://madmeiersadventures.blogspot.com/: true + https://madmeierscloud.blogspot.com/: true + https://madmeierslife.blogspot.com/: true + https://madmeierstwike.blogspot.com/: true + https://mmsketches.blogspot.com/: true + https://www.blogger.com/profile/14628306885093928732: true + last_post_title: Copy forms between visual studio solutions + last_post_description: "Copy the three files, .cs, .designer, resx to the target + solution folder.\nIn the target project, select Add existing item and add the + designer file first. \nModify the Namespace attribute. The .cs" + last_post_date: "2012-12-22T19:24:00Z" + last_post_link: https://mmsketches.blogspot.com/2012/12/copy-forms-between-visual-studio.html + last_post_categories: [] + last_post_language: "" + last_post_guid: eb8ec3b84f389981d1c9d1577ec76237 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-705a38e5552a080d7691471af016302f.md b/content/discover/feed-705a38e5552a080d7691471af016302f.md new file mode 100644 index 000000000..00ab9c845 --- /dev/null +++ b/content/discover/feed-705a38e5552a080d7691471af016302f.md @@ -0,0 +1,49 @@ +--- +title: Martin Fitzpatrick +date: "1970-01-01T00:00:00Z" +description: Python tutorials, projects and books +params: + feedlink: https://blog.martinfitzpatrick.com/feeds/all.rss.xml + feedtype: rss + feedid: 705a38e5552a080d7691471af016302f + websites: + https://blog.martinfitzpatrick.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - pyqt + - python + - qt6 + relme: + https://blog.martinfitzpatrick.com/: true + last_post_title: 'PyQt6 Book now available in Korean: 파이썬과 Qt6로 GUI 애플리케이션 만들기 — + The hands-on guide to creating GUI applications with Python gets a new translation' + last_post_description: |- + I am very happy to announce that my Python GUI programming book + Create GUI Applications with Python & Qt6 / PyQt6 Edition … + last_post_date: "2023-05-04T09:00:00Z" + last_post_link: https://blog.martinfitzpatrick.com/pyqt6-book-now-available-in-korean/ + last_post_categories: + - pyqt + - python + - qt6 + last_post_language: "" + last_post_guid: e4365949212c11abaaf91f884fbd6d72 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7066f204d98408f00119791b289ba47f.md b/content/discover/feed-7066f204d98408f00119791b289ba47f.md new file mode 100644 index 000000000..6612f4140 --- /dev/null +++ b/content/discover/feed-7066f204d98408f00119791b289ba47f.md @@ -0,0 +1,43 @@ +--- +title: pesader +date: "1970-01-01T00:00:00Z" +description: Recent content on pesader +params: + feedlink: https://pesader.dev/feed.xml + feedtype: rss + feedid: 7066f204d98408f00119791b289ba47f + websites: + https://pesader.dev/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://mastodon.social/@pesader: true + https://pesader.dev/: true + last_post_title: GUADEC 2023 + last_post_description: A few days back, I went for the first time to the GNOME Users + and Developers Everywhere Conference (GUADEC). Even though I’m just a Google Summer + of Code intern, the GNOME Foundation was kind + last_post_date: "2023-08-01T19:15:26-03:00" + last_post_link: https://pesader.dev/posts/guadec-2023/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 6105da0a09c44f7aa068bda48447f4ae + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-707347a5a9bfb0b6c5aa4675dadc109a.md b/content/discover/feed-707347a5a9bfb0b6c5aa4675dadc109a.md new file mode 100644 index 000000000..dca0747ed --- /dev/null +++ b/content/discover/feed-707347a5a9bfb0b6c5aa4675dadc109a.md @@ -0,0 +1,47 @@ +--- +title: Tall, Snarky Canadian +date: "1970-01-01T00:00:00Z" +description: Python core developer. Dev manager for the Python extension for VS Code. + Tall, snarky Canadian. +params: + feedlink: https://snarky.ca/rss/ + feedtype: rss + feedid: 707347a5a9bfb0b6c5aa4675dadc109a + websites: + https://snarky.ca/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ReScript + relme: + https://fosstodon.org/@brettcannon: true + https://github.com/brettcannon/: true + https://snarky.ca/: true + last_post_title: My impressions of ReScript + last_post_description: I maintain a GitHub Action called check-for-changed-files. + For the purpose of this blog post what the action does isn't important, but the + fact that I authored it originally in TypeScript is. See, + last_post_date: "2024-06-22T23:35:17Z" + last_post_link: https://snarky.ca/my-impressions-of-rescript/ + last_post_categories: + - ReScript + last_post_language: "" + last_post_guid: 80c37d2162de3d2a6e5f11d14ce55660 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-707ae428361708fcf8c5c511aba7a12b.md b/content/discover/feed-707ae428361708fcf8c5c511aba7a12b.md new file mode 100644 index 000000000..082049ac7 --- /dev/null +++ b/content/discover/feed-707ae428361708fcf8c5c511aba7a12b.md @@ -0,0 +1,142 @@ +--- +title: Boss Meme +date: "1970-01-01T00:00:00Z" +description: Boss Memes are coll Get numberless collection on Bad Boss Memes. Here + we go. +params: + feedlink: https://lauramenendeztic.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 707ae428361708fcf8c5c511aba7a12b + websites: + https://lauramenendeztic.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Boss memes + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Countless Boss Memes which You Love the Most + last_post_description: I know from individual experience that when you are left + with administrative inadequacy consistently - and every one of your endeavors + to reason or speak with the manager have fizzled - it can feel + last_post_date: "2020-11-05T17:04:00Z" + last_post_link: https://lauramenendeztic.blogspot.com/2020/11/countless-boss-memes-which-you-love-most.html + last_post_categories: + - Boss memes + last_post_language: "" + last_post_guid: 8d624bc11d3ef5fdeaf36a3bb9320e98 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-70965a91758d8b7f9b35e4465a93551a.md b/content/discover/feed-70965a91758d8b7f9b35e4465a93551a.md new file mode 100644 index 000000000..837c2e900 --- /dev/null +++ b/content/discover/feed-70965a91758d8b7f9b35e4465a93551a.md @@ -0,0 +1,55 @@ +--- +title: Michael's Declarative Programming Blog +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://mmartedp.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 70965a91758d8b7f9b35e4465a93551a + websites: + https://mmartedp.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - constraints + - haskell + - logic + - monads + - programming + relme: + https://mmartecpp.blogspot.com/: true + https://mmartedp.blogspot.com/: true + https://www.blogger.com/profile/05945327727373203091: true + last_post_title: A CLP style command line interface for Overton's finite-domain + contraint solver + last_post_description: Recently, David Overton presented the core of a finite-domain + constraint solver written in Haskell. Trying to extend the solver, I soon noticed + that the only way to look into the constraint store is + last_post_date: "2008-10-17T09:47:00Z" + last_post_link: https://mmartedp.blogspot.com/2008/10/clp-style-command-line-interface-for.html + last_post_categories: + - constraints + - haskell + - logic + - monads + - programming + last_post_language: "" + last_post_guid: dea87e944e79de8f77a7ee7d880c36db + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-70a3b837e9b58cda61d9b6fa5740e48d.md b/content/discover/feed-70a3b837e9b58cda61d9b6fa5740e48d.md new file mode 100644 index 000000000..d41b856ff --- /dev/null +++ b/content/discover/feed-70a3b837e9b58cda61d9b6fa5740e48d.md @@ -0,0 +1,210 @@ +--- +title: Pater Familias +date: "1970-01-01T00:00:00Z" +description: In the 25nd year of providing and protecting +params: + feedlink: https://dauclair.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 70a3b837e9b58cda61d9b6fa5740e48d + websites: + https://dauclair.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Advent + - Amway + - Beki + - Black Lives Matter + - Bravery + - Catholic + - Christianity + - Christmas + - Church + - Coast Guard + - DDR + - DIY + - Diane + - Easter + - Elena Marie + - Family + - Family Life + - 'For Esme: with Love and Squalor' + - God + - Harris Teeter + - Irish Cream + - Isabel + - Left + - Maronite + - Mary + - Memorial Day + - Mr. Darcy + - New Year + - Old English + - Peanuts + - Peppermint Patty + - Pooh + - Right + - Rite + - Salinger + - Service + - Sherlock Holmes + - Spring + - St. Valentine's Day + - Tao + - The South + - Thy Kingdom come + - Utopia + - '`pataphor' + - acknowledgement + - adoration chapel + - adversity + - alcohol + - anniversary + - art + - atozchallenge + - attitude + - azaleas + - baseball + - bible + - birthday + - breakfast + - cancer + - cats + - children + - coffee + - countercultural + - customer service + - dad + - daily schedule + - daughter + - death + - diet + - dignity + - discernment + - dream + - duty + - ecclesiastes + - eulogy + - faith + - feminism + - finances + - flowers + - food + - freedom + - friends + - fun + - gifts + - go + - gratitude + - grieving + - halo + - healing + - home + - homeschooling + - hope + - humor + - intentions + - joy + - kenjutsu + - legacy + - lent + - letters + - life + - liqueur + - love + - manners + - marissa + - marriage + - martyrdom + - masculinity + - meditation + - memorare + - military + - mom + - money + - movies + - music + - musings + - my country + - nostalgia + - number + - ora et labora + - pater familias + - peace + - perspective + - petitions + - pirates ninjas manliness + - poetry + - politics + - prayer + - quantification + - ramen + - recipe + - regrets + - relationships + - reminscence + - review + - sacrifice + - sad + - saints + - salvation + - self-improvement + - shopping + - sin + - sleep + - song + - specific + - starbucks + - story-telling + - submission + - supplication + - teen + - teens + - thanksgiving + - tired + - tradition + - transcendence + - unpopular opinion + - vocation + - work + - writer's life + - zombies + - Übermensch + relme: + https://dauclair.blogspot.com/: true + https://halo-legendz.blogspot.com/: true + https://logicaltypes.blogspot.com/: true + https://odst-geophf.blogspot.com/: true + https://twilight-dad.blogspot.com/: true + https://www.blogger.com/profile/09936874508556500234: true + last_post_title: My mom, and cancer. + last_post_description: My mom struggled with cancer. Three times. The last time + it killed her. But she loved us. And the best time we had was when I stayed with + her through chemo, and she did her sudoku and her news + last_post_date: "2024-04-08T21:17:00Z" + last_post_link: https://dauclair.blogspot.com/2024/04/my-mom-and-cancer.html + last_post_categories: + - cancer + - love + - mom + - reminscence + last_post_language: "" + last_post_guid: d6c2aba55c3aeba873fc0652926cd91e + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-70bd2cb4aea08909cfd5279c3cac3d23.md b/content/discover/feed-70bd2cb4aea08909cfd5279c3cac3d23.md index 7651d493f..70da03517 100644 --- a/content/discover/feed-70bd2cb4aea08909cfd5279c3cac3d23.md +++ b/content/discover/feed-70bd2cb4aea08909cfd5279c3cac3d23.md @@ -12,32 +12,32 @@ params: blogrolls: [] recommended: [] recommender: - - https://hacdias.com/feed.xml - - https://jlelse.blog/.min.rss - - https://jlelse.blog/.rss - - https://jlelse.blog/index.xml - - https://kevq.uk/feed - - https://kevq.uk/feed.xml - - https://kevq.uk/feed/ - https://kevquirk.com/feed + - https://kevquirk.com/feed/ + - https://kevquirk.com/notes-feed categories: [] relme: {} - last_post_title: How the internet became shit - last_post_description: The long, dark decent of the digital commons - last_post_date: "2024-04-19T14:01:32Z" - last_post_link: https://herman.bearblog.dev/how-the-internet-became-shit/ + last_post_title: Cities need more trees + last_post_description: A case for planting more trees in urban areas. + last_post_date: "2024-07-01T07:53:00Z" + last_post_link: https://herman.bearblog.dev/cities-need-more-trees/ last_post_categories: [] - last_post_guid: 04db92537d69612af621c93008f722bf + last_post_language: "" + last_post_guid: d1859a4004cc0f711ef0ddab5979b420 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-70cbb7fb072c6f0027cea9dd76b95cc5.md b/content/discover/feed-70cbb7fb072c6f0027cea9dd76b95cc5.md index 58e404cf8..9592672e7 100644 --- a/content/discover/feed-70cbb7fb072c6f0027cea9dd76b95cc5.md +++ b/content/discover/feed-70cbb7fb072c6f0027cea9dd76b95cc5.md @@ -10,35 +10,36 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: [] relme: {} - last_post_title: The murky world of password leaks – and how to check if you’ve - been hit - last_post_description: Password leaks are increasingly common and figuring out whether - the keys to your own kingdom have been exposed might be tricky – unless you know - where to look - last_post_date: "2024-06-03T09:30:00Z" - last_post_link: https://www.welivesecurity.com/en/how-to/the-murky-world-of-password-leaks-and-how-to-check-if-youve-been-hit/ + last_post_title: Social media and teen mental health – Week in security with Tony + Anscombe + last_post_description: Social media sites are designed to make their users come + back for more. Do laws restricting children's exposure to addictive social media + feeds have teeth or are they a political gimmick? + last_post_date: "2024-07-04T14:31:24Z" + last_post_link: https://www.welivesecurity.com/en/videos/social-media-teen-mental-health-week-security-tony-anscombe/ last_post_categories: [] - last_post_guid: 0b2195a8f6cd6193e4cb07331b5c3f0f + last_post_language: "" + last_post_guid: be27598adbff9731a698aa630b2e8fee score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 11 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-70d19fac153d28bc751da156fff836ea.md b/content/discover/feed-70d19fac153d28bc751da156fff836ea.md deleted file mode 100644 index 447b7e344..000000000 --- a/content/discover/feed-70d19fac153d28bc751da156fff836ea.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: F5 To Run -date: "1970-01-01T00:00:00Z" -description: Recent content on F5 To Run -params: - feedlink: https://www.f5to.run/index.xml - feedtype: rss - feedid: 70d19fac153d28bc751da156fff836ea - websites: - https://www.f5to.run/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-71256161771919a09e4110f745d866b9.md b/content/discover/feed-71256161771919a09e4110f745d866b9.md new file mode 100644 index 000000000..89a53ac1d --- /dev/null +++ b/content/discover/feed-71256161771919a09e4110f745d866b9.md @@ -0,0 +1,43 @@ +--- +title: Comments for frozen mumblings +date: "1970-01-01T00:00:00Z" +description: 'tanty''s lumber room: free software, life, art and so on ...' +params: + feedlink: https://blog.andresgomez.org/comments/feed/ + feedtype: rss + feedid: 71256161771919a09e4110f745d866b9 + websites: + https://blog.andresgomez.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://blog.andresgomez.org/: true + last_post_title: 'Comment on Installing LineageOS in the Sony Xperia XZ2 Compact + Dual (in GNU/Linux) 4/5: Bringing back Sony’s stock camera app by Remco' + last_post_description: I have installed Lineage 21 this week but I used the camera + app from https://gitlab.com/xperiance/camera/-/releases (installed the camera-0.3.0-tama.zip + file using Magisk). I have not tried sideload + last_post_date: "2024-05-21T23:04:17Z" + last_post_link: https://blog.andresgomez.org/2020/09/10/installing-lineageos-in-the-sony-xperia-xz2-compact-dual-in-gnu-linux-4-5-bringing-back-sonys-stock-camera-app/comment-page-1/#comment-6371 + last_post_categories: [] + last_post_language: "" + last_post_guid: 7ec299ad762b9f70deea4c0c530a809e + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7128ef62c228ff3453b2db60bd3bb109.md b/content/discover/feed-7128ef62c228ff3453b2db60bd3bb109.md new file mode 100644 index 000000000..13e85ac55 --- /dev/null +++ b/content/discover/feed-7128ef62c228ff3453b2db60bd3bb109.md @@ -0,0 +1,142 @@ +--- +title: Chegg Is Best Place To Study +date: "1970-01-01T00:00:00Z" +description: Chegg where you get online study +params: + feedlink: https://tintacomdo.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 7128ef62c228ff3453b2db60bd3bb109 + websites: + https://tintacomdo.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Chegg is Beauty full place + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Chegg Is good Way To Learn + last_post_description: |- + For those of you out there who considered opening a course, + reading makes you squeamish, significantly less the expected problem of + purchasing, utilizing. Afterward, exchanging a course reading, + last_post_date: "2021-05-07T18:57:00Z" + last_post_link: https://tintacomdo.blogspot.com/2021/05/chegg-is-good-way-to-learn.html + last_post_categories: + - Chegg is Beauty full place + last_post_language: "" + last_post_guid: 0d75fc35f1b1a0d2b688664a42981667 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-712d37df4cfa387da644a46bdf28ab4f.md b/content/discover/feed-712d37df4cfa387da644a46bdf28ab4f.md deleted file mode 100644 index 155318fc8..000000000 --- a/content/discover/feed-712d37df4cfa387da644a46bdf28ab4f.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: logbook -date: "1970-01-01T00:00:00Z" -description: logbook Entries Feed -params: - feedlink: https://log.kvl.me/rss.xml - feedtype: rss - feedid: 712d37df4cfa387da644a46bdf28ab4f - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://colinwalker.blog/dailyfeed.xml - - https://colinwalker.blog/livefeed.xml - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-714e3b7879dafa7a66bb77457fa107f7.md b/content/discover/feed-714e3b7879dafa7a66bb77457fa107f7.md index b674d93b7..95a8483a8 100644 --- a/content/discover/feed-714e3b7879dafa7a66bb77457fa107f7.md +++ b/content/discover/feed-714e3b7879dafa7a66bb77457fa107f7.md @@ -12,26 +12,25 @@ params: https://adactio.com/articles/: true blogrolls: [] recommended: [] - recommender: - - https://chrisburnell.com/feed.xml + recommender: [] categories: + - approach + - assumptions + - culture - declarative - design - - frontend - development - - systems + - fluid + - frontend + - layout - mindset - - approach - - worldwideweb - - culture - programming + - systems - thinking - - assumptions - - fluid - type - - layout + - worldwideweb relme: - https://adactio.com/: false + https://adactio.com/articles/: true last_post_title: Declarative Design last_post_description: A presentation given at the final An Event Apart in San Francisco, as well as at Pixel Pioneers in Bristol, Web Summer Camp in Croatia, and Wey Wey @@ -39,32 +38,37 @@ params: last_post_date: "2024-05-07T11:30:38Z" last_post_link: https://adactio.com/articles/21110 last_post_categories: + - approach + - assumptions + - culture - declarative - design - - frontend - development - - systems + - fluid + - frontend + - layout - mindset - - approach - - worldwideweb - - culture - programming + - systems - thinking - - assumptions - - fluid - type - - layout + - worldwideweb + last_post_language: "" last_post_guid: 3fe4d0e69eead536ad04551696b29788 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 - promoted: 5 + posts: 3 + promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-7150e68c13d9f253c51ad3af922aa1fb.md b/content/discover/feed-7150e68c13d9f253c51ad3af922aa1fb.md new file mode 100644 index 000000000..8e5aec7a5 --- /dev/null +++ b/content/discover/feed-7150e68c13d9f253c51ad3af922aa1fb.md @@ -0,0 +1,142 @@ +--- +title: Angel of Delivery +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://craftygalslife.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 7150e68c13d9f253c51ad3af922aa1fb + websites: + https://craftygalslife.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - here we go + - to wright way + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: final Link Building + last_post_description: Quick version, this was a portrayal of the advantages of + introducing a decent air purifier in your vehicle. Along these lines, to get yourself + a unit, we recommend that you get your work done and + last_post_date: "2022-02-28T18:11:00Z" + last_post_link: https://craftygalslife.blogspot.com/2022/02/fianl.html + last_post_categories: + - to wright way + last_post_language: "" + last_post_guid: 898ff13a68a0bc6ff18da16e2542bba5 + score_criteria: + cats: 2 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-716f56c4993992eccbc7d1042247d7f0.md b/content/discover/feed-716f56c4993992eccbc7d1042247d7f0.md deleted file mode 100644 index 32a0c8f67..000000000 --- a/content/discover/feed-716f56c4993992eccbc7d1042247d7f0.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Austin Z. Henley's Blog -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://austinhenley.com/blog/feed.rss - feedtype: rss - feedid: 716f56c4993992eccbc7d1042247d7f0 - websites: - https://austinhenley.com/blog.html: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: [] - relme: {} - last_post_title: 'CodeAid: A classroom deployment of an LLM-based programming assistant' - last_post_description: https://austinhenley.com/blog/codeaid.html - last_post_date: "2024-05-19T15:00:01-04:00" - last_post_link: https://austinhenley.com/blog/codeaid.html - last_post_categories: [] - last_post_guid: a81bfcbabb1b76be142da759e11a40a3 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-717afb09dde217bc0efb4e2c304e3c87.md b/content/discover/feed-717afb09dde217bc0efb4e2c304e3c87.md deleted file mode 100644 index 8c0f207ed..000000000 --- a/content/discover/feed-717afb09dde217bc0efb4e2c304e3c87.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Gitea Blog Blog -date: "1970-01-01T00:00:00Z" -description: Gitea Blog Blog -params: - feedlink: https://blog.gitea.com/rss.xml - feedtype: rss - feedid: 717afb09dde217bc0efb4e2c304e3c87 - websites: - https://blog.gitea.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - release - relme: {} - last_post_title: Gitea 1.22.0 is released - last_post_description: We are thrilled to announce the latest release of Gitea v1.22.0. - last_post_date: "2024-05-23T18:00:00Z" - last_post_link: https://blog.gitea.com/release-of-1.22.0 - last_post_categories: - - release - last_post_guid: 364cc6428b0bd871d2c724350af31445 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-718746c177d976ec83eef56c036391ff.md b/content/discover/feed-718746c177d976ec83eef56c036391ff.md new file mode 100644 index 000000000..daa1893dc --- /dev/null +++ b/content/discover/feed-718746c177d976ec83eef56c036391ff.md @@ -0,0 +1,65 @@ +--- +title: Paco's Miscellaneous Stuff +date: "1970-01-01T00:00:00Z" +description: Miscellaneous stuff done mostly by me. Almost all of it is for Warhammer + Fantasy Roleplay (WFRP). +params: + feedlink: https://pacomiscelaneousstuff.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 718746c177d976ec83eef56c036391ff + websites: + https://pacomiscelaneousstuff.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 1st edition + - 2nd edition + - 4th edition + - CC0 + - Images + - JavaScript + - Maps + - Oldenhaller + - RPG + - Random Generator + - Tutorial + - WFRP + - Warhammer Fantasy Role Play + - Zweihander + - castellano + - español + relme: + https://pacomiscelaneousstuff.blogspot.com/: true + last_post_title: Quick, dirty and ugly JavaScript tutorial for random generators + (Part 5) + last_post_description: "Quick, dirty and ugly JavaScript tutorial for random generators + \n\nWelcome to the fifth part of my tutorial, you can find the first parte here, + second part, third part here and the 4th one here. Now" + last_post_date: "2023-03-26T10:13:00Z" + last_post_link: https://pacomiscelaneousstuff.blogspot.com/2023/03/quick-dirty-and-ugly-javascript.html + last_post_categories: + - CC0 + - JavaScript + - Maps + - Random Generator + - Tutorial + last_post_language: "" + last_post_guid: 01390f7a9b615f829d36c7a1e6892a3f + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-719b8b83efafe6c1e69a3e0a0e8dcaa0.md b/content/discover/feed-719b8b83efafe6c1e69a3e0a0e8dcaa0.md new file mode 100644 index 000000000..a9be06d2c --- /dev/null +++ b/content/discover/feed-719b8b83efafe6c1e69a3e0a0e8dcaa0.md @@ -0,0 +1,142 @@ +--- +title: Cheggs Books +date: "1970-01-01T00:00:00Z" +description: How To get Free Book From Cheggs is here +params: + feedlink: https://ostseestempeln.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 719b8b83efafe6c1e69a3e0a0e8dcaa0 + websites: + https://ostseestempeln.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Cheegs Free Books + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: How To Get Cheggs Free Books + last_post_description: |- + No enduring worth. It would appear from the outset; leasing + has some innate imperfections. Consider everything - although you're saving at + first by leasing rather than level out purchasing, by the + last_post_date: "2021-05-07T19:05:00Z" + last_post_link: https://ostseestempeln.blogspot.com/2021/05/how-to-get-cheggs-free-books.html + last_post_categories: + - Cheegs Free Books + last_post_language: "" + last_post_guid: a755f343ba7f537f1abf624b0f08074f + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-71a9cf882104d6cf6f22e2b0df1dffcf.md b/content/discover/feed-71a9cf882104d6cf6f22e2b0df1dffcf.md index 4bf01ac48..c783a9b4e 100644 --- a/content/discover/feed-71a9cf882104d6cf6f22e2b0df1dffcf.md +++ b/content/discover/feed-71a9cf882104d6cf6f22e2b0df1dffcf.md @@ -6,49 +6,39 @@ params: feedlink: https://amf.didiermary.fr/feed/ feedtype: rss feedid: 71a9cf882104d6cf6f22e2b0df1dffcf - websites: - https://amf.didiermary.fr/: true + websites: {} blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ - categories: - - AfroJazz - - Jazz - - South Africa - relme: - https://bsky.app/profile/@didiermary.fr: false - https://masto.ai/@cybeardjm: true - https://mastodon.host/@cybeardjm: false - https://twitter.com/cybeardjm: false - last_post_title: TRUE STORY – Malcolm Jiyane Tree-O - last_post_description: While the Tree-O’s previous outing UMDALI presented a snapshot - of an inspired few days of spontaneity, TRUE STORY is a more deliberately crafted - opus. Recorded in Johannesburg over three sessions - last_post_date: "2024-05-31T19:57:12Z" - last_post_link: https://amf.didiermary.fr/true-story-malcolm-jiyane-tree-o/ - last_post_categories: - - AfroJazz - - Jazz - - South Africa - last_post_guid: 1cf2dc035ac3d4e22c54b058dbe4d653 + categories: [] + relme: {} + last_post_title: Johnny Wakelin – In Zaire (1976) + last_post_description: RSS Club is a secret to everyone!This post is certified "written + by human".Subscribe to this blog's RSS Feed here.More info on RSS Club.In 1974, + Johnny Wakelin got the idea to write a song about a + last_post_date: "2024-07-04T17:11:46Z" + last_post_link: https://amf.didiermary.fr/rss-club/johnny-wakelin-zaire-rumble-jungle/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 8a25ee8a9f9cfe602f79cea9c1b3125b score_criteria: cats: 0 description: 3 - postcats: 3 + feedlangs: 1 + postcats: 0 + posts: 3 promoted: 5 promotes: 0 - relme: 2 + relme: 0 title: 3 - website: 2 - score: 18 + website: 0 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-71aa9a459e801e84c3346a2c5087b70e.md b/content/discover/feed-71aa9a459e801e84c3346a2c5087b70e.md index b15bfcccb..2c14c4137 100644 --- a/content/discover/feed-71aa9a459e801e84c3346a2c5087b70e.md +++ b/content/discover/feed-71aa9a459e801e84c3346a2c5087b70e.md @@ -14,34 +14,20 @@ params: recommended: [] recommender: [] categories: - - Open Web - ActivityPub - ActivityStreams - JSON + - Open Web - PubSubHubbub - RSS - WebSub relme: - https://developers.google.com/profile/u/pfefferle: false https://github.com/pfefferle: true https://gitlab.com/pfefferle: true - https://indieweb.org/User:Notiz.blog: false https://mastodon.social/@pfefferle: true - https://micro.blog/pfefferle: false - https://microformats.org/wiki/User:Pfefferle: false - https://notiz.blog/about/: false - https://openwebpodcast.de/: false - https://packagist.org/packages/pfefferle/: false - https://pfefferle.tumblr.com/: false - https://profiles.wordpress.org/pfefferle: false - https://twitter.com/pfefferle: false - https://wordpress.tv/speakers/matthias-pfefferle/: false - https://www.crunchbase.com/person/matthias-pfefferle: false - https://www.flickr.com/people/pfefferle: false - https://www.linkedin.com/in/pfefferle/: false - https://www.npmjs.com/~pfefferle: false - https://www.slideshare.net/pfefferle: false - https://www.xing.com/profile/Matthias_Pfefferle: false + https://notiz.blog/: true + https://notiz.blog/about/: true + https://profiles.wordpress.org/pfefferle/: true last_post_title: ActivityPub – The evolution of RSS last_post_description: 'Dave Winer (@davew) stellt (sich) auf seinem Blog und auf Mastodon die Frage: What does ActivityPub does that RSS doesn’t? und nimmt vorweg: @@ -49,24 +35,29 @@ params: last_post_date: "2024-04-26T12:02:53Z" last_post_link: https://notiz.blog/2024/04/26/activitypub-the-evolution-of-rss/ last_post_categories: - - Open Web - ActivityPub - ActivityStreams - JSON + - Open Web - PubSubHubbub - RSS - WebSub + last_post_language: "" last_post_guid: 66ed59e97df47eec42b03a19198e84dd score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: de --- diff --git a/content/discover/feed-71afbb15ed7cf9d9301d0da241ed5058.md b/content/discover/feed-71afbb15ed7cf9d9301d0da241ed5058.md new file mode 100644 index 000000000..95b745d2d --- /dev/null +++ b/content/discover/feed-71afbb15ed7cf9d9301d0da241ed5058.md @@ -0,0 +1,64 @@ +--- +title: Flags Quiz +date: "2024-03-05T09:14:40+01:00" +description: Flags Quiz is a quiz game for Android smartphones, touch enabled Nokia + Symbian smartphones, Nokia Maemo (N900) and Nokia Harmattan (N9/N950) smartphones. +params: + feedlink: https://flagsquiz.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 71afbb15ed7cf9d9301d0da241ed5058 + websites: + https://flagsquiz.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - android + - bb10 + - blackberry + - flag + - flags + - flags quiz + - harmattan + - meego + - n9 + - n950 + - nokia + - quiz + - z10 + relme: + https://blinkenharmattan.blogspot.com/: true + https://flagsquiz.blogspot.com/: true + https://tsdgeos-es.blogspot.com/: true + https://tsdgeos.blogspot.com/: true + https://www.blogger.com/profile/12001470108926138921: true + last_post_title: Flags Quiz for BlackBerry 10 released + last_post_description: "" + last_post_date: "2013-02-23T11:54:15+01:00" + last_post_link: https://flagsquiz.blogspot.com/2013/02/flags-quiz-for-blackberry-10-released.html + last_post_categories: + - bb10 + - blackberry + - flag + - flags + - flags quiz + - z10 + last_post_language: "" + last_post_guid: 7239b4fd4e054600424d7889de158070 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-71b1f5d9babc6041cc1d7c7bf4ae2c67.md b/content/discover/feed-71b1f5d9babc6041cc1d7c7bf4ae2c67.md deleted file mode 100644 index 37c767782..000000000 --- a/content/discover/feed-71b1f5d9babc6041cc1d7c7bf4ae2c67.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: '@visitmy.website - steve.rss' -date: "1970-01-01T00:00:00Z" -description: workplace bez. doing product & strategy bits thru https://boringmagi.cc. - more about me at https://visitmy.website/about -params: - feedlink: https://bsky.app/profile/did:plc:3edxyncrqn4slmbw3nlgsjyj/rss - feedtype: rss - feedid: 71b1f5d9babc6041cc1d7c7bf4ae2c67 - websites: - https://bsky.app/profile/visitmy.website: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-71bf5019ae3f24a5e95cda4ee472d2f8.md b/content/discover/feed-71bf5019ae3f24a5e95cda4ee472d2f8.md new file mode 100644 index 000000000..5e114b1fe --- /dev/null +++ b/content/discover/feed-71bf5019ae3f24a5e95cda4ee472d2f8.md @@ -0,0 +1,42 @@ +--- +title: Leitura Espírita +date: "2024-03-08T08:40:28-03:00" +description: O espiritismo é mais que uma religião; é uma doutrina que procura conciliar + a evolução espiritual e científica da humanidade de uma forma lógica e consistente. + O estudo do espiritismo permite +params: + feedlink: https://leituraespirita.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 71bf5019ae3f24a5e95cda4ee472d2f8 + websites: + https://leituraespirita.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://leituraespirita.blogspot.com/: true + last_post_title: Cano enferrujado + last_post_description: "" + last_post_date: "2007-12-18T22:39:46-02:00" + last_post_link: https://leituraespirita.blogspot.com/2007/12/cano-enferrujado.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 2fff9e4e9104b63c7c26cb675f8fcbd9 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-71db15f7001e043f0b9a1b053ab8f214.md b/content/discover/feed-71db15f7001e043f0b9a1b053ab8f214.md new file mode 100644 index 000000000..7c4af7153 --- /dev/null +++ b/content/discover/feed-71db15f7001e043f0b9a1b053ab8f214.md @@ -0,0 +1,45 @@ +--- +title: Brandon’s Journal +date: "1970-01-01T00:00:00Z" +description: A Place of Contemplation and Study +params: + feedlink: https://brandons-journal.com/feed/ + feedtype: rss + feedid: 71db15f7001e043f0b9a1b053ab8f214 + websites: + https://brandons-journal.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://colinwalker.blog/dailyfeed.xml + - https://colinwalker.blog/livefeed.xml + categories: + - Self-Reflection + relme: + https://brandons-journal.com/: true + last_post_title: An Unexpected Break + last_post_description: Last Friday, I began a four day weekend. I took a couple + of days off to get caught up on some chores and organize a few… + last_post_date: "2024-06-27T01:52:32Z" + last_post_link: https://brandons-journal.com/post/an-unexpected-break/ + last_post_categories: + - Self-Reflection + last_post_language: "" + last_post_guid: 89ba252fc9003906b11823cdf7f09e61 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 1 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-71ee71449572def2b6a7007181ee09d3.md b/content/discover/feed-71ee71449572def2b6a7007181ee09d3.md deleted file mode 100644 index 29292541a..000000000 --- a/content/discover/feed-71ee71449572def2b6a7007181ee09d3.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: NoScript -date: "1970-01-01T00:00:00Z" -description: Public posts from @noscript@mastodon.social -params: - feedlink: https://mastodon.social/@noscript.rss - feedtype: rss - feedid: 71ee71449572def2b6a7007181ee09d3 - websites: - https://mastodon.social/@noscript: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/hackademix/noscript/: false - https://noscript.net/: true - https://noscript.net/donate: false - https://noscript.net/forum: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7202435fc67d9c91ef5911d33e7bc975.md b/content/discover/feed-7202435fc67d9c91ef5911d33e7bc975.md index 2c4a3a5df..3728976e6 100644 --- a/content/discover/feed-7202435fc67d9c91ef5911d33e7bc975.md +++ b/content/discover/feed-7202435fc67d9c91ef5911d33e7bc975.md @@ -14,28 +14,36 @@ params: - https://jeroensangers.com/feed.xml - https://jeroensangers.com/podcast.xml categories: - - Friday's Finds + - Communities + - Informal Learning relme: + https://jarche.com/: true https://mastodon.social/@harold: true - last_post_title: road kill - last_post_description: On the last Friday of each month I curate some of the observations - and insights that were shared on social media. I call these Friday’s Finds. “Q. - You know what AI is best at? A. Propaganda” - last_post_date: "2024-05-31T07:30:28Z" - last_post_link: https://jarche.com/2024/05/road-kill/ + last_post_title: ITA Jay Cross Award 2024 + last_post_description: The Internet Time Alliance Memorial Award in memory of Jay + Cross is presented to a workplace learning professional who has contributed in + positive ways to the field of Informal Learning and is + last_post_date: "2024-07-05T11:00:28Z" + last_post_link: https://jarche.com/2024/07/ita-jay-cross-award-2024/ last_post_categories: - - Friday's Finds - last_post_guid: 3486c2a97fad193561c0802323dcaac9 + - Communities + - Informal Learning + last_post_language: "" + last_post_guid: 40fe9a5ff441f0793b7210a085337517 score_criteria: cats: 0 description: 3 - postcats: 1 + feedlangs: 1 + postcats: 2 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 16 + score: 21 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-720a41ad5c384fe8127fea54adffca6e.md b/content/discover/feed-720a41ad5c384fe8127fea54adffca6e.md new file mode 100644 index 000000000..e4dac4777 --- /dev/null +++ b/content/discover/feed-720a41ad5c384fe8127fea54adffca6e.md @@ -0,0 +1,54 @@ +--- +title: All Things Halo +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://odst-geophf.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 720a41ad5c384fe8127fea54adffca6e + websites: + https://odst-geophf.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - commentary + - introduction + - philosophy + - realism + - writing + relme: + https://dauclair.blogspot.com/: true + https://halo-legendz.blogspot.com/: true + https://logicaltypes.blogspot.com/: true + https://odst-geophf.blogspot.com/: true + https://twilight-dad.blogspot.com/: true + https://www.blogger.com/profile/09936874508556500234: true + last_post_title: The meaninglessness of the 'K/D ratio' + last_post_description: Kids these days.They come out of the battle simulator and + all they look at is their kills to see who 'won.' But then they also look at their + efficacy. You should hear the conversations around the + last_post_date: "2011-01-11T01:06:00Z" + last_post_link: https://odst-geophf.blogspot.com/2011/01/meaninglessness-of-kd-ratio.html + last_post_categories: + - philosophy + - realism + last_post_language: "" + last_post_guid: 10119837cdd86377af6a2e5b8886a042 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7224aaa0977fc6bb2b5b2e5f054b8494.md b/content/discover/feed-7224aaa0977fc6bb2b5b2e5f054b8494.md deleted file mode 100644 index 2294794e7..000000000 --- a/content/discover/feed-7224aaa0977fc6bb2b5b2e5f054b8494.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: Charm &c. -date: "2008-11-04T20:07:12Z" -description: Or, fun from building 54 -params: - feedlink: https://superweak.wordpress.com/feed/atom/ - feedtype: atom - feedid: 7224aaa0977fc6bb2b5b2e5f054b8494 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Particle Physics - - CDF - - muons - - new physics - - Physics - relme: {} - last_post_title: CDF multi-muons, hmm - last_post_description: So I’m way behind the bloggy curve on this one (e.g. here - and here), but I thought I would at least read the paper before talking about - it.  The CDF collaboration (or two-thirds of it anyway) has - last_post_date: "2008-11-04T20:07:12Z" - last_post_link: https://superweak.wordpress.com/2008/11/04/cdf-multi-muons-hmm/ - last_post_categories: - - Particle Physics - - CDF - - muons - - new physics - - Physics - last_post_guid: 43b1ce14dbe3938574f50ae31b477013 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-72524d9c3556de834f43d92209dff178.md b/content/discover/feed-72524d9c3556de834f43d92209dff178.md new file mode 100644 index 000000000..d6d64cbfa --- /dev/null +++ b/content/discover/feed-72524d9c3556de834f43d92209dff178.md @@ -0,0 +1,54 @@ +--- +title: Made out of meat +date: "1970-01-01T00:00:00Z" +description: A website devoted to oneself has been described — by my own Father, no + less — as the greatest act of hubris. Welcome aboard! +params: + feedlink: https://www.tartley.com/rss.xml + feedtype: rss + feedid: 72524d9c3556de834f43d92209dff178 + websites: + https://www.tartley.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - comedy + - fiction + - media + - movie + relme: + https://github.com/tartley: true + https://mastodon.social/@tartley: true + https://www.tartley.com/: true + last_post_title: Ferris Bueller's Day Off + last_post_description: |- + Directed and written by John Hughes, 1986. IMDB + So, way back in my teen years, we had a VHS tape of this, which friends and I + played and played and played, probably racking up more rewatches than any + last_post_date: "2023-09-27T15:01:22Z" + last_post_link: https://www.tartley.com/posts/ferris-buellers-day-off/ + last_post_categories: + - comedy + - fiction + - media + - movie + last_post_language: "" + last_post_guid: c1217abf4bf7132b7bec5cf972569807 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-7252d31fc638c9387af390c3dd702f00.md b/content/discover/feed-7252d31fc638c9387af390c3dd702f00.md deleted file mode 100644 index 0d28a0d46..000000000 --- a/content/discover/feed-7252d31fc638c9387af390c3dd702f00.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: '@edent.tel - Terence Eden' -date: "1970-01-01T00:00:00Z" -description: |- - Longer hair than you. - Chaotic Good. - Doesn't work for The Man™ any more. - Probably spending more time in Mastodon. - If you're involved in Blockchain or Crypto you will be blocked on sight. - - Blog: -params: - feedlink: https://bsky.app/profile/did:plc:i6misxex577k4q6o7gloen4s/rss - feedtype: rss - feedid: 7252d31fc638c9387af390c3dd702f00 - websites: - https://bsky.app/profile/edent.tel: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-725426e572bafde35f3c38f2832cdd15.md b/content/discover/feed-725426e572bafde35f3c38f2832cdd15.md new file mode 100644 index 000000000..b49bebf75 --- /dev/null +++ b/content/discover/feed-725426e572bafde35f3c38f2832cdd15.md @@ -0,0 +1,45 @@ +--- +title: A Curious Mind +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://guicorner.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 725426e572bafde35f3c38f2832cdd15 + websites: + https://guicorner.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://ericoneclipse.blogspot.com/: true + https://guicorner.blogspot.com/: true + https://www.blogger.com/profile/12038539748479401991: true + last_post_title: What's this blogging thing anyhow ? + last_post_description: |- + I'm being dragged into the blogosphere by forces beyond my control (i.e. work...;-). It's time that I started adding some content to the web rather than just absorbing what I can... + + This initial + last_post_date: "2011-01-11T20:44:00Z" + last_post_link: https://guicorner.blogspot.com/2011/01/whats-this-blogging-thing-anyhow.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 2c4119a1d1e35fc378948122b0b3f87f + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7270b5c0f7b91d7a5f98e56e284e3711.md b/content/discover/feed-7270b5c0f7b91d7a5f98e56e284e3711.md index 99d496f7a..a3e3b5490 100644 --- a/content/discover/feed-7270b5c0f7b91d7a5f98e56e284e3711.md +++ b/content/discover/feed-7270b5c0f7b91d7a5f98e56e284e3711.md @@ -12,17 +12,17 @@ params: recommended: [] recommender: [] categories: - - network - - networking - TCP - conference + - network + - networking - performance - pptk - snmp - toastmasters - vxlan relme: - https://www.blogger.com/profile/01514158449435119324: true + https://linux-network-plumber.blogspot.com/: true last_post_title: VXLAN for Linux last_post_description: |- Q: That's too technical, what can I show my manager. @@ -32,17 +32,22 @@ params: last_post_categories: - networking - vxlan + last_post_language: "" last_post_guid: 17d04b014f58a3abf8ee62de44d504fd score_criteria: cats: 5 description: 3 + feedlangs: 0 postcats: 2 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 17 + score: 20 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-727a1cce538c3e2df48b4bc10c2aff70.md b/content/discover/feed-727a1cce538c3e2df48b4bc10c2aff70.md deleted file mode 100644 index a1d4f388d..000000000 --- a/content/discover/feed-727a1cce538c3e2df48b4bc10c2aff70.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Midlas -date: "1970-01-01T00:00:00Z" -description: Building resilience -params: - feedlink: https://www.midlas.org.au/feed/ - feedtype: rss - feedid: 727a1cce538c3e2df48b4bc10c2aff70 - websites: - https://midlas.org.au/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Advocacy Services - relme: {} - last_post_title: 10 Year Strategy for reducing Family and Domestic Violence - last_post_description: 'Midlas has prepared a submission to the Department of Communities - consultation to develop the 10 Year Strategy into reducing Family and Domestic - Violence. Our submission addresses key areas in:' - last_post_date: "2019-06-04T04:31:47Z" - last_post_link: https://www.midlas.org.au/10-year-strategy-for-reducing-family-and-domestic-violence/ - last_post_categories: - - Advocacy Services - last_post_guid: 32f9f2e346275ac91370f87122ff167f - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7285a17d0a89da50441dada80b17266f.md b/content/discover/feed-7285a17d0a89da50441dada80b17266f.md new file mode 100644 index 000000000..62ac03df7 --- /dev/null +++ b/content/discover/feed-7285a17d0a89da50441dada80b17266f.md @@ -0,0 +1,300 @@ +--- +title: McEs, A Hacker Life +date: "1970-01-01T00:00:00Z" +description: Behdad Esfahbod's daily notes on GNOME, Pango, Fedora, Persian Computing, + Bob Dylan, and Dan Bern! +params: + feedlink: https://mces.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 7285a17d0a89da50441dada80b17266f + websites: + https://mces.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 10year + - "2.18" + - "2008" + - "2009" + - AFF + - AdaLovelaceDay09 + - AndyOram + - Asimov + - Baldwin + - Ben + - Boston + - Boston Summit + - Bravia + - C + - California + - ChangeLog + - Chris Tyler + - ChrisWilson + - Dan Bern + - Dave + - DavidBolter + - EitanIsaacson + - Fedora + - Finding Ada + - GLyphy + - GNOME foot logo + - GregWilson + - Hollister + - Iran + - IranNastaliq + - Iranian + - Iverson + - Microsoft + - Mozilla Summit + - Nastaliq + - Netflix + - Persian + - PhotoSynth + - Sony + - Teddy bear + - Whistler + - WillieWalker + - a11y + - abock + - ad + - akademy + - amazon + - amsterdam + - andre + - andrewcrause + - animation + - announcement + - apress + - audio + - baris + - behdad + - berlin + - bithacks + - blizzard + - board + - book + - bug + - bug500000 + - bugzilla + - buildbot + - burningman + - cairo + - cairotwisted + - calendar + - cellphone + - censorship + - cfp + - chpe + - cn tower + - code + - coffee + - comedy + - cookbook + - copyfight + - crevette + - cvs + - debian + - desktopsummit + - digital + - dilbert + - doctorow + - documentation + - drm + - dvcs + - elections + - email + - embedded + - entertainment + - evolution + - federico + - ff3 + - firefox + - fontconfig + - fontforge + - fonts + - fsf + - fudconboston2007 + - funny + - g-s-d + - gadgets + - gcc + - gcds + - gedit + - geek + - ghop + - git + - glasgow + - glib + - glyphtracer + - gnome + - gnome 2.18 + - gnome-panel + - gnome-session + - gnome-terminal + - gnome3 + - google + - gopa + - gplv3 + - graffiti + - gridfitting + - gsoc + - gtd + - gtk+ + - gtk-doc + - guadec + - hackfest + - harfbuzz + - hinting + - history + - hsbc + - http + - humor + - ickle + - igalia + - intel + - iq + - iranelection + - istanbul + - jds + - jobs + - justforfun + - kde + - keithp + - kellner + - kenvandine + - kerning + - lazyweb + - lca2014 + - leslie + - lessig + - life + - linux + - linux-utf8 + - linuxcaffe + - litl + - login + - lrl + - lucasr + - luis + - maintenance + - mba + - me + - meme + - microwave + - monty + - motion + - mozilla + - mug + - n'ko + - n800 + - nat + - nazari + - nokia + - obama + - office + - olpc + - onlinux + - ontariolinuxfest + - openmoko + - opentype + - optimization + - overholt + - packagekit + - painting + - pango + - pangocairo + - party + - patents + - pdf + - performance + - pgo + - photos + - programming + - puzzle + - python + - qt + - randr1.2 + - redhat + - refactoring + - reiser + - rhel5 + - rms + - roozbeh + - running + - sari + - screenshot + - shell + - sigh + - skidiving + - skulenight + - skydiving + - slides + - soc + - solution + - spam + - spellcheck + - stillmotion + - survey + - tbf + - techshop + - tehran + - textlayout + - timezone + - toronto + - travel + - tshirt + - tux + - twitter + - typography + - uk + - unicode + - utf8 + - video + - vista + - vte + - vuntz + - warnings + - watch + - web2.0 + - webkit + - win32 + - wine + - winelib + - wingo + - wishlist + - xdc + - xiph.org + - youtube + relme: + https://mces.blogspot.com/: true + last_post_title: How to use custom application fonts with Pango + last_post_description: I am at the Libre Graphics Meeting in Toronto this week, + which means that I got to talk to GIMP and Inkscape developers after many years, + and was reminded that Pango still does not make it easy to + last_post_date: "2015-05-01T23:15:00Z" + last_post_link: https://mces.blogspot.com/2015/05/how-to-use-custom-application-fonts.html + last_post_categories: + - fonts + - gtk+ + - pango + - pangocairo + last_post_language: "" + last_post_guid: 3aa6862886537a85f27552cac42d5252 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-72af7527717e5baa06a3f901b105ba75.md b/content/discover/feed-72af7527717e5baa06a3f901b105ba75.md new file mode 100644 index 000000000..8e091d1f4 --- /dev/null +++ b/content/discover/feed-72af7527717e5baa06a3f901b105ba75.md @@ -0,0 +1,218 @@ +--- +title: 'Funkyware: ITCetera' +date: "2024-03-07T11:58:27+02:00" +description: 'Free Software entrepreneurship: Debian, Ubuntu and beyond.' +params: + feedlink: https://q-funk.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 72af7527717e5baa06a3f901b105ba75 + websites: + https://q-funk.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ALSA + - AMD + - APT + - Artec + - Backfire + - Blum IT + - Btrfs + - Bullseye + - CSS + - CUPS + - CUPS-PDF + - Cinnamon + - Citizenship + - Coreboot + - D430 + - DHCP + - DHCPv4 + - DHCPv6 + - DHL + - Debian + - Dell + - EC800 + - EXIF + - Eesti + - Ekiga + - English + - Entrepreneurship + - Estonia + - Estonian + - Estonie + - Estonya + - Etherboot + - FACIL + - FLUG + - FSG + - Facebook + - FedEx + - Fedora + - FinEID + - Finland + - Finlande + - Finlandiya + - Finnish + - Firefox + - Flash + - France + - Free Software + - FreeBSD + - GNOME + - GPG + - GRUB + - GRsecurity + - Gaim + - Geode + - Google + - Gstreamer + - H.264 + - HTML5 + - Hercules + - IPv6 + - ISC + - Immigration + - KMS + - LG + - LPC + - LTSP + - Languages + - Latvian + - Life + - Linuterm + - Linutop + - Linux + - Linux-Aktivaattori + - LinuxBIOS + - Lucid + - Mac + - Magma + - Mozilla + - NVIDIA + - Neeger + - ODF + - OLPC + - OpenGPG + - OpenOffice + - OpenWRT + - PC + - PXE + - Pidgin + - Politics + - PulseAudio + - Québec + - Red Hat + - Russian + - Rustc + - SCSI + - SLAAC + - Schengen + - Skype + - Soome + - Suomi + - TFCD + - ThinCan + - ThinkPad + - Turkey + - Turquie + - Türkiye + - UI + - UNIX + - UPS + - USB + - Ubuntu + - Unicode + - Vista Print + - Voikko + - WRT54GL + - WTF + - WebRTC + - White Russian + - WiFi + - Windows + - Windows CE + - X.org + - bass + - bug + - business cards + - configuration + - d-i + - dating + - debian-installer + - dhclient + - dhcpcd + - dnsmasq + - dpkg + - e-commerce + - epic failure + - gLabels + - gThumb + - gcc + - hardware + - iPXE + - idea + - ifupdown + - invandring + - iwlagn + - kernel + - keyring + - libc6 + - logistics + - mail + - mailx + - meme + - mknbi + - music + - photography + - printing + - privacy + - scam + - standards + - synthesizer + - systemd + - template + - upgrade-system + - utf8-migration-tool + - work + relme: + https://perkelix.blogspot.com/: true + https://q-funk.blogspot.com/: true + https://www.blogger.com/profile/00394315280689943764: true + last_post_title: dhcpcd almost ready to replace ISC dhclient in Debian + last_post_description: "" + last_post_date: "2023-11-16T11:38:58+02:00" + last_post_link: https://q-funk.blogspot.com/2023/11/dhcpcd-almost-ready-to-replace-isc.html + last_post_categories: + - DHCP + - DHCPv4 + - DHCPv6 + - Debian + - IPv6 + - ISC + - SLAAC + - Ubuntu + - dhclient + - dhcpcd + - dnsmasq + - ifupdown + last_post_language: "" + last_post_guid: 59acd0f06a5845b7d900915f997c05d2 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-72c22b01d40bf17fff95989cf0acf720.md b/content/discover/feed-72c22b01d40bf17fff95989cf0acf720.md deleted file mode 100644 index b4c43e833..000000000 --- a/content/discover/feed-72c22b01d40bf17fff95989cf0acf720.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: joeross.lol -date: "1970-01-01T00:00:00Z" -description: Public posts from @joeross@social.lol -params: - feedlink: https://social.lol/@joeross.rss - feedtype: rss - feedid: 72c22b01d40bf17fff95989cf0acf720 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-72c8966741d7e42ce3206a18f918265a.md b/content/discover/feed-72c8966741d7e42ce3206a18f918265a.md new file mode 100644 index 000000000..05292dab2 --- /dev/null +++ b/content/discover/feed-72c8966741d7e42ce3206a18f918265a.md @@ -0,0 +1,47 @@ +--- +title: Pavillon rouge et noir +date: "2024-07-01T21:46:34+02:00" +description: Pavillon rouge et noir, le blog de Pablo Rauzy +params: + feedlink: https://p4bl0.net/feed/atom + feedtype: atom + feedid: 72c8966741d7e42ce3206a18f918265a + websites: + https://p4bl0.net/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - politique + - syndicalisme + relme: + https://mamot.fr/@p4bl0: true + https://p4bl0.net/: true + https://pablo.plus/: true + https://pablockchain.fr/: true + last_post_title: 'L''impasse du macronisme : on en sort, ou on fonce dans le mur' + last_post_description: "" + last_post_date: "2024-07-01T23:46:34+02:00" + last_post_link: https://p4bl0.net/post/2024/07/L-impasse-du-macronisme-on-en-sort-ou-on-fonce-dans-le-mur + last_post_categories: + - politique + - syndicalisme + last_post_language: "" + last_post_guid: 1ce2d57a204dcb7e1edf7de9b848b3af + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: fr +--- diff --git a/content/discover/feed-72d9db6974fdafed59258b4ed89a7b46.md b/content/discover/feed-72d9db6974fdafed59258b4ed89a7b46.md index 65ddff890..64ede0a31 100644 --- a/content/discover/feed-72d9db6974fdafed59258b4ed89a7b46.md +++ b/content/discover/feed-72d9db6974fdafed59258b4ed89a7b46.md @@ -1,6 +1,6 @@ --- title: WHAT THE FUCK HAVE YOU DONE? -date: "2024-05-04T14:03:14-04:00" +date: "2024-07-07T03:16:23-04:00" description: It's in my eyes, and it doesn't look that way to me, In my eyes. - Minor Threat params: @@ -14,1250 +14,101 @@ params: recommender: - https://frankmeeuwsen.com/feed.xml categories: - - Politics - - Environment - - Punk - - skateboarding - - GEF - - Photography - - Science - - Art - - documentary - - Video - - protest - - Music - - hip-hop - - '"school of Life"' - - capitalism - - inspiration - - away memes - - philosophy - - humor - - culture - - vegan - - Dump - - film - - religion - - hip hop - - history - - BLACK FLAG - - education - - occupy wall street - - TV - - Interview - - Noam Chomsky - - movies - - vintage - - Books - - animation - - punk rock - - food - - health - - Henry Rollins - - Beastie Boys - - instagram - - technology - - health care - - activism - - future - - government - - media - - Rare Photos - - economy - - comedy - - life - - obama - - psychology - - youth - - internet - - DJ - - Public Enemy - - DogTown - - Architecture - - Ian MacKaye - - Jonathan Toubin - - bernie sanders - - corporations - - economics - - school of life - - Revolution - - pbs - - politcs - - Fugazi - - Run-DMC - - civil rights - - exhibition - - my rules - - republikkkan - - NYC - - Space - - New York City - - classic - - street art - - Baseball - - Democracy - - Jay Adams - - hiphop - - propaganda - - sociology - - Michael Moore - - Shepard Fairey - - conservatives - - ignorance - - rock 'n' roll - - kids - - vegetarian - - Ice-T - - New York - - UK - - washington DC - - Design - - Earth - - athiest - - away tunes - - cars - - nature - - photographs - - Ian Svenonius - - Jello Biafra - - advertising - - animal rights - - animals - - civil liberties - - socialism - - DEVO - - FUCK GUNS - - Graffiti - - literature - - Bad brains - - Live - - Minor Threat - - amerikkka - - rap - - rockNroll - - work - - 1970's - - Chuck D. - - Feminism - - Talk - - fox news - - keith morris - - law - - race - - Banksy - - Jonathan Toubin DJ - - climate change - - conspiracy theories - - guns - - opinion - - sex pistols - - book signing - - children - - communication - - cornel west - - planet - - racism - - radio - - greed - - holiday - - insanity - - justice - - movie - - rock'N'roll - - short film - - usa - - wu-tang clan - - '#OWS' - - "1977" - - Business - - Daily Show - - NASA - - YouTube - - Z-Boys - - away - - black culture - - consumerism - - dead kennedys - - fascism - - ramones - - surfing - - tony alva - - xmas - - 45's - - Africa - - Apple - - Beatles - - Def Jam - - GREENPEACE - - News - - War - - automobiles - - away. meme - - diet - - energy - - factory farming - - lance Mountain - - los angeles - - martin sprouse - - marx - - mash-up - - old school - - security - - violence - - 1960's - - BBC - - Funk - - Japan - - NRA - - Podcast - - Pussy riot - - Ralph Nader - - Woody Allen - - buzzcocks - - clouds - - corruption - - feel the bern - - india - - nuclear power - - stacy peralta - - "2016" - - DUMP. politics - - ENVIRONMENTALISM - - Global Warming - - Intelligence - - MLK - - Rick Rubin - - Work + Capitalism - - california - - chuck dukowski - - community - - gangs - - george orwell - - humans - - jon stewart - - karl marx - - organic - - press - - publishing - - truth - - universe - - BOOK - - CBGB's - - Dock Ellis - - Fela Kuti - - OG - - Soul Proprietor - - bullshit - - censorship - - christmas - - circle jerks - - classic music - - classic vinyl - - folk music - - hardcore - - hardcore punk - - john oliver - - live music - - national geographic - - production - - rare - - russia - - the idealist - - viral - - water - - women - - Archive - - Death - - Dolphins - - Entertainment - - Financial Crisis - - KRS-One - - LL Cool J - - Liars - - MC5 - - New York Night Train - - RIP - - Rakim - - SNL - - SkateBoarder - - Soul Train - - advice - - american history - - animal agriculture - - badass - - comics - - corporatocracy - - depression - - dischord - - dope - - eric b. and rakim - - fast food - - faux news - - human nature - - james bond - - jazz - - jimi hendrix - - language - - liberal - - mash-up remixes - - military industrial complex - - music business - - public library - - recording - - records - - robots - - self - - style - - t-shirt - - terrorism - - the Simpsons - - united states of america - - vote - - voting - - weather - - zephyr - - "1976" - - "1985" - - 70's - - CHANGE - - Crass - - Facebook - - Family - - HR - - Heavy Metal - - Hero - - IG - - Jeff Ho - - London - - NPR - - Ocean - - Sundance - - Thanksgiving - - Together Forever - - Travel - - Whales - - african american - - american - - atheism - - bicycle - - brain - - charity - - china - - civil disobedience - - climate - - conservative - - digital technology - - drugs - - electric car - - event - - flag - - flight - - home - - lecture - - money - - peta - - police violence - - politicians - - progressive - - robert Reich - - russell simmons - - skateboarding hall of fame - - society - - sports - - target video - - taxes - - the beatles - - thieves - - trees - - visual traveling - - 60's - - 80's - - Afro beat - - BEEF - - Black Panthers - - Black Sabbath - - Campaign Finance Reform - - Chain and the Gang - - Democracy Now - - Dr.Seuss - - Einstein - - Jam Master jay - - Jim Muir - - King Tee - - PMA - - R.I.P. - - Rollins - - Sly and the family stone - - Suicidal Tendencies - - a tribe called quest - - acting - - asshole - - assholes - - basketball - - beauty - - birds - - c. r. stecyk - - clothing - - creativity - - debate - - educational - - ethics - - ferguson - - fun - - germany - - hall of fame - - hollywood - - hot rods - - images - - lies - - martin luther king jr. - - music video - - nazi - - parody - - photo - - photo manipulation - - pirates - - president - - public spaces - - ramps - - reading - - recognize - - revolutionary - - run dmc - - safety - - satire - - shit - - shithead - - skate - - smoking - - social commentary - - social media - - stephen colbert - - steve olson - - straight edge - - surveillance - - the Spiv - - 1st amendment - - 35mm film. photography - - AdRock - - Alexandria Ocasio-Cortez - - Arté TV - - DIY - - Danzig - - Ezio - - FBI - - FUCK THE NRA - - Freud - - Friends - - Fuck You All - - GREEN - - MLB - - Mark Gonzales - - Mars - - Native American - - OCCUPY - - Peggy Oki - - Plato - - Q&A - - Rodney Mullen - - Sea Shepherd - - Single Payer - - Snoop Dogg - - Tesla - - USSR - - Union - - Wall Street - - X-Clan - - age - - alcohol - - anarchy - - angela davis - - atheist - - automation - - bad ass - - banks - - birthday - - brooklyn - - camera - - cherry hill - - chomsky - - civilization - - collaboration - - commentary - - commercials - - computers - - cool stuff - - daredevils - - detroit - - dog town - - downloading - - driving - - duane peters - - election - - elizabeth warren - - equality - - eyes - - fascist - - football - - genetically modified - - genius - - glen E. Friedman - - god - - golden era - - good - - google - - grand master flash - - graphic - - hope - - humanitarian - - idiots - - ill - - independent - - information - - innovation - - insects - - integrity - - interesting - - james brown - - john lennon - - knowledge - - little league - - malcolm x - - manners - - marriage - - mike watt - - new book - - no guns - - oil - - peanuts - - physics - - planets - - plant based diet - - plutocracy - - police - - power - - prank - - privacy - - rebel culture - - rebellion - - resistance - - riots - - roberto clemente - - sex - - shogo kubo - - ska - - skateboarder magazine - - sleep - - snow - - sound - - stars - - students - - stupidity - - subway - - super heroes - - supreme court - - surf culture - - tea party - - the damned - - tony hawk - - transportation - - vinyl - - vision - - waste - - wisdom - - workers - - x-mas - - yauch - - "1971" - - "1978" - - "1979" - - "1981" - - "1982" - - "1984" - - A.O.C. - - Alec mackaye - - Alfred Hitchcock - - Alva - - Apocalypse - - BDP - - Brendan Canty - - CIA - - Daily Party Platter - - Descendents - - Earthquake - - Elon Musk - - Fanzine - - Fuck - - Glenn Danzig - - Guitar Hero - - Guy Picciotto - - Hoax - - Ice cube - - Ireland - - Joe Lally - - John Robbins - - John kricfuluci - - Johnny Rotten - - Juxtapoz - - LA - - Lance - - Led Zeppelin - - MAD magazine - - Madonna - - NSA - - Nazism - - Nietzsche - - P.O.S. - - Pepsi - - Pete Shelly - - Pittsburgh - - Poland - - Print - - Seth Meyers - - Simpsons - - Skateparks - - Skatistan - - TED - - The story of stuff - - Universal Health Care - - Wayne Kramer - - YES MEN - - adam yauch - - agribusiness - - air pollution - - album cover - - america - - amnesty international - - anthropology - - astronomy - - b-boy - - beats - - black lives matter - - blues - - boing boing - - bones brigade - - burning flags press - - cinematography - - cities - - compassion - - confederate flag - - congress - - consciousness - - constitution - - cool - - copyright - - craft - - creationism - - creative - - currency - - dance - - dangerous Minds - - democrats - - dez cadena - - dischord records - - disney - - dreams - - elvis costello - - empathy - - evel knievel - - evolution - - extreme - - extreme sports - - facts - - fashion - - feminist - - finance - - fireworks - - france - - freedom of speech - - fuck you heroes - - gay - - george clinton - - graffiti rock - - graphics - - greg Ginn - - gun violence - - healthcare - - honor - - humanity - - idealisim - - idealism - - idealist - - ideas - - iggy pop - - incarceration - - insane - - john stewart - - kkk - - know your roots - - kodachrome - - labor - - law enforcement - - liar - - light - - lightning - - lyrics - - marxism - - mcdonalds - - meat - - military - - minutemen - - misfits - - monsanto - - moon - - murder - - museum - - nationalism - - new wave - - nuclear testing - - nuclear weapons - - nukes - - oldschoool - - olympics - - parenting - - peace - - philanthropy - - photograph - - pittsburgh pirates - - pizza - - poetry - - political theory - - pool skating - - pop music - - reality - - recordings - - recycle - - reggae - - ren and stimpy - - resilience - - respect - - seinfeld - - skateboarding history - - slayer - - snowboarding - - social justice - - solar power - - solar system - - soul - - south africa - - spike lee - - stories - - study - - sunday sermon - - surfer - - sustainable living - - swearing - - syria - - t-shirts - - thanksgiving meme's - - the CRAMPS - - time - - time lapse - - traffic - - tricks - - turntablism - - twitter - - waves - - womens rights - - wugazi - - yoko ono - - z-boy - - zephyr team - - © - - '#OccupyWallSt' - - '#occupywallstreet' - - "1963" - - "1969" - - "1970" - - 1980s - - "1986" - - "2017" - - 3 chord politics - - 35mm film - - 4th of july - - 99% - - AC/DC - - ACLU - - Adam Horovitz - - Aerosmith - - Afghanistan - - Al Barile - - Alice Cooper - - Allison Wolfe - - American masters - - Anthony Pirog - - Archaeology - - Auschwitz - - BOX - - Beatniks - - Bill maher - - Biscuits - - Black panther - - Bobby Piercy - - Boogie Down Productions - - C.R. Stecyk III - - CDC - - COMPETITION - - California Über Alles - - Chris Rock - - Chuck Biscuits - - Colin Kaepernick - - Country - - D. Boon - - D.O.A. - - DC - - DJ Nu Mark - - DNC - - DVD - - Darwin - - Dave Chappelle - - Detroit sound - - Drunk - - Dukowski - - Eastern Philosophy - - Era - - Ethical - - Fat Boys - - Fela - - GLAM - - GMF - - GMO - - GZA - - Glenn Greenwald - - Go-Go - - Gun Control - - Guy Debord - - H.R. - - Iceland - - Janis Joplin - - Jerry Casale - - KRS-1 - - Keep your eyes open - - Kent senatore - - Kool Herc - - LIFE magazine - - LP - - LSD - - Legal - - Legend - - Leonardo da Vinci - - MARCH - - MONOPOLISM - - MTV - - Make Up - - Make-up - - Mark Mothersbaugh - - Martin Scorsese - - Max Weber - - Medicare - - Metzger - - Mike Tyson - - Milo - - NOU - - NWA - - Nate Dogg - - Neil Blender - - New Yorker - - OBEY GIANT - - OWS - - PC - - PIL - - POTUS - - Pier 62 - - Police Brutality - - RESIST - - Raymond Pettibon - - Renaissance - - Roma - - SCIENCE FICTION - - SS Decontrol - - SST - - Saturday Night - - School Life Monday - - Schooly D. - - Situationist International - - Slavery - - Snoop - - Softball - - Space exploration - - Stephen hawking - - TRAP - - TRUSTBUSTING - - The Allegory of the Cave - - The Daily Show - - The Intercept - - UN - - UTFO - - WE ARE ALL DEVO - - Wake up - - Western Philosophy - - Wu tang clan - - Z-Flex - - abuse of power - - activist - - adjusters - - aesthetics - - aging - - air - - album art - - aliens - - american bandstand - - angelicas kitchen - - animal liberation - - anti-fascist - - anti-war - - asia - - athletes - - attitude - - austerity - - australia - - b-boying - - backyard ramp - - badge - - beat box - - behavior - - beliefs - - bible - - bicycles - - big boys - - bill moyers - - black nationalism - - boards - - book stores - - border - - bratmobile - - break dancing - - burger - - campaign - - cancer - - car culture - - carl dix - - carnivore - - cartoons - - cell phones - - child abuse - - childhood - - classic battle rap - - cold - - cold war - - color - - comic books - - coming out - - comments - - commercial - - communism - - con - - conspiracy - - corporate greed - - cows milk - - crazy legs - - creatives - - criminals - - cruelty - - cuba - - curiosity - - darby crash - - dean Delray - - death metal - - demo - - devil - - dick clark - - disaster - - discussion - - dogtown & Z-Boys - - donald trump - - drones - - ecology - - eddie elguera - - egypt - - election 2016 - - elections - - emo - - etiquette - - evil - - fake - - fame - - fear - - fight ignorance - - film making - - films - - first world - - flyers - - fox - - fracking - - freedom of the press - - freestyle - - fuck all conservatives - - fundamentalism - - funny - - gangster - - garage - - gaza - - germs - - girls - - godfather - - gopro - - graphic design - - guitar - - halloween - - hank shocklee - - hard core - - highways - - hobby - - hollis - - homeless - - honda - - human interest - - human rights - - hygiene - - idiot - - iggy - - inebriated - - information commodity - - infrastructure - - injustice - - institutionalized - - introspection - - investment - - iran - - iraq - - it takes a nation of millions to hold us back - - italy - - jaywalking - - jesus - - jobs - - john lydon - - kent sherwood - - kenter - - killer mike - - last week tonight - - leadership - - legendary - - lego - - lie - - lifestyle - - lightening - - linguistics - - liverpool - - living - - logos - - love - - luddites - - lying - - magazine - - magic - - malcolm McLaren - - manchester - - meaning - - medical science - - medicine - - memorial - - memory - - mental health - - milk - - mods - - morals - - movie stars - - muhammad ali - - names - - narcissist - - nas - - nazi trump fuck off - - nerds - - net neutrality - - new year - - night train - - noir - - non-violence - - novelty - - nutrition - - "off" - - old people - - oliver stone - - olson - - parks - - pee wee herman - - pee-wee herman - - people - - perspective - - peyote cody - - pharma - - pin - - piracy - - pizzanista - - plant based - - poet - - political correctness - - pollution - - pop - - pop culture - - poseur - - positive - - positive force - - poverty - - powell peralta - - presidential election - - projection - - public transportation - - puerto rico - - punk 1960's - - putin - - radicals - - rakim allah - - rant - - rape - - reagan - - real estate - - rebel - - reservation - - responsibility - - reunion - - review - - right wing - - riot grrrl - - rise above - - robert DeNiro - - rock - - rock n' roll - - roller coaster - - rolling jubilee - - sampling - - scandal - - school - - school D. - - school house rock - - schools - - selfies - - separation of church and state - - shit head - - shitpreme - - shopping - - sight - - skateBoarder imagine - - skateboarding saves - - slalom - - slick rick - - smog - - social Skills - - social security - - solutions - - south park - - speak out - - special effects - - specials - - spiderman - - spirituality - - star wars - - steve jobs - - storms - - strike debt - - student loans - - subculture - - summer - - superstition - - swimming - - tax - - tech - - techno - - the Specials - - the clash - - the evens - - the guardian - - the new york times - - the scream - - the stooges - - this is america - - thrasher - - tom groholski - - tour - - toys - - treacherous three - - trends - - trivia - - trouble funk - - tupac Shakur - - turkey - - two tone - - tyranny - - unions - - unreleased - - us - - values - - vegetation - - venice - - wall - - war on drugs - - warfare - - wealth - - wi-fi - - wikileaks - - wild life - - wild style - - william f. buckley - - win - - winston Smith - - wood - - writing - - wrong - '"in the moment"' + - '"school of Life"' - '#BlackLivesMatter' - '#DELETEFACEBOOK' + - '#OWS' + - '#OccupyWallSt' - '#RealTalk' - '#THISISMYLANE' - '#YESONB' - '#handsup' - '#occupy' + - '#occupywallstreet' - '#real. NYC' + - $ - . 3 chord politics - 1% - 100% - 1000fps - 12th street and broadway - 1920's + - 1960's + - "1963" - "1965" - "1966" - "1967" - "1968" + - "1969" + - "1970" + - 1970's - 1970s + - "1971" - "1972" - "1973" - "1975" + - "1976" + - "1977" + - "1978" + - "1979" - "1980" - 1980's + - 1980s + - "1981" + - "1982" - "1983" + - "1984" + - "1985" + - "1986" - "1987" - "1988" - 1990s + - 1st amendment - 1st pub - 2.13.61 - "2010" - 2010 lists - "2012" - "2013" + - "2016" + - "2017" - 2018 TSUNAMI - "2019" - "2020" - 20th century - 21st century + - 3 chord politics - 3-3 - 3/11 - 35mm + - 35mm film + - 35mm film. photography - "360" - 3D - 3d printing - 42nd street + - 45's + - 4th of july - 5% - "50" - 60 minutes + - 60's - 60s + - 70's - "77" + - 80's - 9/11 + - 99% - '@Nationalschoolwalkout' - A look Back at DogTown and Z-Boys - 'A look Back: Dogtown and Z-Boys' + - A.O.C. - A/B SPLITTING - A7 - ABC-TV + - AC/DC + - ACLU - ACTION HUNGER - AI - AJIT PAI @@ -1267,16 +118,30 @@ params: - APPS-AND-SOFTWARE - ART OF RAP - ATTENTION HIJACKING + - AdRock - Adam Bomb + - Adam Horovitz - Adams - Adolescents + - Aerosmith + - Afghanistan + - Africa - African American skateboarders + - Afro beat + - Al Barile - Al FlipSide + - Alec mackaye + - Alexandria Ocasio-Cortez + - Alfred Hitchcock - Algorithms + - Alice Cooper + - Allison Wolfe + - Alva - Amazing - Amchitka - American dream - American indian + - American masters - Amery Smith - Amsterdam - Amy Goodman @@ -1284,10 +149,18 @@ params: - Anonymous - Another Music in a different kitchen - Ansel Adams + - Anthony Pirog - Anton Chekhov + - Apocalypse - Apocalypse Now + - Apple + - Archaeology + - Architecture + - Archive - Arlington Va + - Art - Arte + - Arté TV - Ashly Judd - Astrology - Atari Teenage Riot @@ -1295,22 +168,35 @@ params: - Auguste Comte - Augustine - Aurora Borealis + - Auschwitz - Avengers - B&W - BAD + - BBC + - BDP + - BEEF - BG + - BLACK FLAG - BMX + - BOOK - BOOKS / COMPETITION / GODWINS LAW + - BOX - BUSINESS / CITIZENS UNITED / ELECTIONS - BUSY BEE - Bad Azz + - Bad brains - Baltimore + - Banksy - Bannon - Barbara Kruger - Barcelona - Barry White + - Baseball - Batman + - Beastie Boys - BeastieBoys + - Beatles + - Beatniks - Ben Nordberg - Berkeley - Bestie Boys @@ -1322,8 +208,13 @@ params: - Biggie Smalls - Bill Daniel - Bill de Blasio + - Bill maher - Billy Ruff - Binder clip + - Biscuits + - Black Panthers + - Black Sabbath + - Black panther - Blackfish - Blaise Pascal - Blu @@ -1332,30 +223,43 @@ params: - Bob Hunter - Bob Mohr - Bob Woodward + - Bobby Piercy - Boethius - Bolster - Bon Scott + - Boogie Down Productions + - Books - Boom box - Boston - Bowie - Boys - Brenadan canty + - Brendan Canty - British petroleum - Bronx - Brother Jay - Bruce Lee + - Business + - C.R. Stecyk III - CABLE COMPANY FUCKERY - CALEXIT - CBGB + - CBGB's - CC - CCCP - CD + - CDC - CHAMATH PALIHAPITIYA + - CHANGE + - CIA + - COMPETITION - COOP - COP21 - COUNTERFACTUALS - COVID19-19 - CYCLING + - California Über Alles + - Campaign Finance Reform - Canada - Candide Thovex - Captain Paul Watson @@ -1363,42 +267,64 @@ params: - Carpool Karaoke - Cassimus - Cey Adams + - Chain and the Gang - Charlie Blair - Cheech and Chong - Childish gambino - Childrens programing + - Chris Rock - Christian Hosoi + - Chuck Biscuits - Chuck D + - Chuck D. - Chung King house of Metal - Cindy Sheehan - Clash - Class War - Cleveland + - Colin Kaepernick - Columbus day - Comedy Central - Concert - Conspiracies - Copenhagen + - Country - Covid-19 + - Crass - Cuck D. - Curb Your Enthusiasm - D E V O + - D. Boon - D.Boon - D.I.Y. + - D.O.A. + - DC - DEFINANCIALIZATION / ELECTIONS - DESERT + - DEVO - DIVERSITY + - DIY + - DJ - DJ Lord + - DJ Nu Mark - DJ RED ALERT - DJ's - DJing + - DNC - DOOMSDAY - DUMO - DUMP. Noam Chomsky + - DUMP. politics + - DVD - Daewon Song + - Daily Party Platter + - Daily Show - Dan Mancina - Daniel Beltrá - Danny Lyon + - Danzig + - Darwin + - Dave Chappelle - Dave Roth - David Attenborough - David Lee Roth @@ -1407,14 +333,24 @@ params: - De-evolution - Dead Boys - Dear Kennedys + - Death - DeathRow - Debut - Decline movie + - Def Jam + - Democracy + - Democracy Now - Denis Kucinich + - Descendents + - Design + - Detroit sound - Dinosaur - Dinosaurs - Divine Styler + - Dock Ellis + - DogTown - Dogtown- The Legend of the z-boys + - Dolphins - Don Cornelius - Don Rickles - Donald Clover @@ -1423,56 +359,95 @@ params: - Dr. DeMento. radio - Dr. KNow - Dr. Octagon + - Dr.Seuss + - Drunk - Dublin + - Dukowski + - Dump - Dylan to me - EBOOKS + - ENVIRONMENTALISM - ENVY - EPA - ETW - EXISTENTIALISM - Earl Liberty + - Earth + - Earthquake - Earthsave + - Eastern Philosophy - Economic Demand - Ecstasy - Ed Templeton - Edvard Munch - Edward Snowden + - Einstein - El-Hajj Malik El-Shabazz + - Elon Musk - Emil Cioran - Emma Gonzalez NO GUNS + - Entertainment + - Environment - Epicurus + - Era - Eric Dressen - Eric Matthies - Eric Pritchard + - Ethical - Eugenics - Evens - Extra strength posse + - Ezio - FACEBOOK-EXEC + - FBI - FCC - FKE NEWS - FLOSS - FOIA - FTW + - FUCK GUNS + - FUCK THE NRA - FULLY AUTOMATED LUXURY COMMUNISM - FUTURISM - FVK + - Facebook - Fake News - Fall + - Family + - Fanzine + - Fat Boys + - Fela + - Fela Kuti + - Feminism + - Financial Crisis - Flash - Flavor - Foreclosure - Fred Rogers - Freddie Gray - Freelancers Union + - Freud + - Friends + - Fuck - Fuck Trump + - Fuck You All + - Fugazi + - Funk - Funky Drummer - Funky Four Plus One - G-20 - G.E.F. + - GEF + - GLAM + - GMF + - GMO - GO BUCS - GOAT - GOAT Def Jam - GOP + - GREEN + - GREENPEACE + - GZA - Games - Gary Harris - Gary Harris RIP @@ -1482,7 +457,12 @@ params: - George Barris - Geraldo Rivera - Ginsberg + - Glenn Danzig + - Glenn Greenwald - Global Protest Movements + - Global Warming + - Go-Go + - Graffiti - Grandmaster Caz - Green New Deal - Green Party @@ -1491,12 +471,19 @@ params: - Greyson fletcher - Guantanamo School Of Medicine - Gucci Time + - Guitar Hero + - Gun Control - Gustave Flaubert + - Guy Debord - Guy Mariano + - Guy Picciotto + - H + - H.R. - HAPPY MUTANTS - HBO - HISTORY OF IDEAS - HOMELESSNESS + - HR - HYPERTEXT - Ha Ha - Haitian Earthquake @@ -1504,12 +491,16 @@ params: - Hardcore chronicles - Harley Flanagan - Harry Allen + - Heavy Metal - Hells Angels - Henry - Henry Chalfant - Henry David Thoreau + - Henry Rollins - Herman hesse + - Hero - High Five + - Hoax - Holocaust - Hopsin - Horace Panter @@ -1519,18 +510,27 @@ params: - Hurricane - Hüsker Dü - I can't breathe + - IG - IK - INDIGENOUS PEOPLE - IPS - Ian F Svenonius - Ian F Svenonius - punk + - Ian MacKaye + - Ian Svenonius + - Ice cube + - Ice-T + - Iceland - Impala - In on the kill taker - Indonesia + - Intelligence - International Womans day + - Interview - Interviews - Inti Carboni - Iraq war + - Ireland - Irish pop punk - Isaac Hayes - It's Like That @@ -1542,10 +542,14 @@ params: - Jaffee - Jakarta - Jam + - Jam Master jay - James Corden - James Joyce - Janette beckman + - Janis Joplin + - Japan - Jason Mizell + - Jay Adams - Jay Boy - Jay Smith - Jay Z @@ -1553,104 +557,152 @@ params: - Jean-Jacques Rousseau - Jeb Corliss - Jeff Grosso + - Jeff Ho - Jeff Nelson - Jeffrey Wright + - Jello Biafra - Jeremy Scahill + - Jerry Casale - Jim Carrey + - Jim Muir - Jimmy Plumer - Joe Corré - Joe Kennedy 3rd + - Joe Lally - Joey Ramone - Joey Shithead - John Locke + - John Robbins - John Ruskin - John Sinclair + - John kricfuluci - Johnny Cash - Johnny Ive + - Johnny Rotten + - Jonathan Toubin + - Jonathan Toubin DJ - Jony Ive - Josh Harrison - Juice Magazine - Just Jay + - Juxtapoz - KIDS NOT GUNS + - KRS-1 + - KRS-One - KXLU - KYEO - Kafka - Kareem Abdul Jabbar - Kate Schellenbach + - Keep your eyes open - Keith Albertan - Keith Levine - Kennedy center + - Kent senatore - Kenter Canyon School - Kerry king - Keynes - Kid Rock - Kim Cespedes - King James Cassimus + - King Tee + - Kool Herc - Kool Keith - Krush Groove - L Train - L.A. PUNK. Punk Rock + - LA - LA PUNK - LATE STAGE CAPITALISM - LATIN AMERICA - LGBTQ - LIBRARIES + - LIFE magazine - LITERAL FASCISM - LL COOL Jm Public Enemy + - LL Cool J - LL CoolJ - LOST + - LP - LP. art + - LSD - La ZAD - Labron James - Lagos + - Lance - Langston Hughes - Lao Tzu - Larry David - Larry King - Late late Show - Le Tigre + - Led Zeppelin + - Legal + - Legend + - Leonardo da Vinci - Lester Rodney - Liam Morgan + - Liars - Libertarianism - Licensed to Ill + - Live - Live and direct + - London - Lorax - Love train - Luck - Lydon - Lyndal Golding - Lyre Bird + - MAD magazine + - MARCH - MAY DAY - MC Lyte + - MC5 - MC5. Video - MC6 - MCA - MCA Day - MIT + - MLB + - MLK + - MONOPOLISM - MTA + - MTV - MURS - MY RULES. London - Machiavelli - Mackaye + - Madonna - Magazine cover + - Make Up + - Make-up - Malcolm McClaren - Malcolm Young - Manufacturing Consent - Marina skatepark - Marine Mammals - Mario Cuomo + - Mark Gonzales + - Mark Mothersbaugh + - Mars - Martial Arts + - Martin Scorsese - Marty Grimes - Marvel Comics - Maryland - Matt Taibbi + - Max Weber - Maya Angelou + - Medicare - Meme - Messthetics - Messthetics's - Metal - Method Man + - Metzger - Michael Bennet + - Michael Moore - Michael More - Michael Rapport - Micke Alba @@ -1659,8 +711,11 @@ params: - Mike D. Adam Horovitz - Mike McGill - Mike Muir + - Mike Tyson - Millennial + - Milo - Milo Aukerman + - Minor Threat - Minute Men - Mixing - Moby @@ -1671,8 +726,10 @@ params: - Mr. Motherbaugh - Mr. Rogers - Mug Shots + - Music - My war - NADYA TOLOKNO + - NASA - NASCAR - NATION OF ULYSSES - NBA. Pro Sports @@ -1680,35 +737,62 @@ params: - NO SKateboarding - NO TROLLS - NOT PC + - NOU + - NPR + - NRA + - NSA + - NWA + - NYC - NYC subway performer - NYPD - NYU - NYtimes - Nadya Tolokonnikova - Nancy Barile + - Nate Dogg + - Native American + - Nazism + - Neil Blender - Neil deGrasse Tyson - Netherlands + - New York + - New York City + - New York Night Train - New York Times - New York new York + - New Yorker + - News + - Nietzsche - Nina Mariah - No Airport + - Noam Chomsky - Norma-Jean Wofford - Nugent - O'Jays - OBEY + - OBEY GIANT + - OCCUPY + - OG - OUTDOOR INDUSTRY + - OWS + - Ocean - Old city - Oldschool - Origins - Orwell + - P.O.S. - P2P - PARKLAND - PATAGONIA - PBS. MY RULES + - PC - PE - PETAm - PIKETTY + - PIL + - PMA - PMRC + - POTUS - PRINCE - PSK - PUBLIC BANK LA @@ -1718,29 +802,48 @@ params: - Paul Haven - Paul Schrader - Paul's Boutique + - Peggy Oki + - Pepsi - Peralta - Peru + - Pete Shelly - Philharmonic + - Photography - Physicians Committee for Responsible Medicine + - Pier 62 - Pilgrim + - Pittsburgh - Plastic + - Plato - Pledge of Allegiance + - Podcast + - Poland + - Police Brutality - Police building + - Politics - Portlandia - Positive Mental Attitude - Predictions - Press and Media + - Print - Promise school - Psychiatry - Psychotherapy + - Public Enemy - Public Image Ltd. + - Punk + - Pussy riot + - Q&A - Queen Elizabeth - Quincy Jones - R&B + - R.I.P. - RAINFOREST - RBG - REAGANOMICS COMES HOME TO ROOST - RESCUING CAPITALISM + - RESIST + - RIP - RISD - ROA - ROB BLISS @@ -1749,18 +852,25 @@ params: - RZA - Racist - Raising Hell + - Rakim - Rally + - Ralph Nader - Rammellzee - Ramomes - Rand + - Rare Photos - Ravi Shankar + - Raymond Pettibon - Raymond Scott - Redondo beach - Reich + - Renaissance - Republicangovernment - Revere + - Revolution - Rhyme Syndicate - Richard hell + - Rick Rubin - Rick and Morty - Ricky Powell - Ride @@ -1770,27 +880,35 @@ params: - Robert De Niro - Robert Redford - Rockers + - Rodney Mullen - Roger Moore + - Rollins + - Roma - Romanticism - Ron Reyes - Roxanne Roxanne - Roxanne Shanté - Ru Paul - Run The Jewels + - Run-DMC - RunDmc - Russ Howell - S.S. Decontrol - S.S.DeControl - SCHOLARSHIP + - SCIENCE FICTION - SEAN PARKER - SEEDS - SF - SILICON VALLEY - SIMS - SLITS + - SNL - SNOBS - SOCIAL-MEDIA-COMPANIES + - SS Decontrol - SSD + - SST - SXE - Saccharine Trust - Sacha Baron Cohen @@ -1802,34 +920,59 @@ params: - San Pedro - Sandy - Sartre + - Saturday Night - Saturn - Saul Bass + - School Life Monday + - Schooly D. + - Science - Scott Truax + - Sea Shepherd - Segregation - Senator + - Seth Meyers - Sex Stains + - Shepard Fairey - Simon Sinek + - Simpsons - Sinatra - Sinead O'Connor + - Single Payer - Siouxsie + - Situationist International - SkateBoard + - SkateBoarder - Skateistan + - Skateparks + - Skatistan + - Slavery - Sly Stone + - Sly and the family stone - Snakes + - Snoop + - Snoop Dogg - Snoop Doggy Dogg - Snowden - Socrates + - Softball - Solidarity - Sonics + - Soul Proprietor + - Soul Train + - Space + - Space exploration - SpaceX - Spock - Stecyk + - Stephen hawking - Steve Cutts - Steve Soto - Stimulators - Stoics - Strength + - Suicidal Tendencies - Sun Ra + - Sundance - Sunday - Super Fly - Super-X @@ -1838,36 +981,49 @@ params: - Susannah Mushatt Jones - T-Shirt. Jay Adams - T.S.O.L + - TED - THE GONZ - THE MET - TOnyAlva - TRANSPARENCY + - TRAP - TRUMPISM + - TRUSTBUSTING + - TV - TV Special - TV. Documentary - Taibbi + - Talk - Taoism - Tea Party Revenge Porn - Ted Nugent - Televangelists - Ten years - Terry Hall + - Tesla + - Thanksgiving + - The Allegory of the Cave - The Brouhaha - The Creator - The Creep + - The Daily Show + - The Intercept - The Messthetics - The Superman + - The story of stuff - They Live - Thrasher magazine - Tiananmen Square - Tibet - Tim Kerr - Tiny Desk + - Together Forever - Tolstoy - Tom Jones - Tom Sims - Tommy Ryan - Tragedy + - Travel - Trespassing - Triumph - Turning Point ramp @@ -1876,11 +1032,17 @@ params: - UCLA - UFO - UFO's + - UK - UMAIR HAQUE + - UN - US Army - USPOLI + - USSR + - UTFO - Ultramagnetic. MC - Unconscious + - Union + - Universal Health Care - Universal healthcare - Uno - VAL @@ -1894,6 +1056,7 @@ params: - Venice beach - Vermeer - Vicki Vickers + - Video - Video Home Recorder - Vietnam - Virgin America @@ -1902,17 +1065,24 @@ params: - Vivian Maier - Vivienne Westwood - Voltaire + - WE ARE ALL DEVO - WEAPONIZED ENGAGEMENT - WEB THEORY - WHITE PRIVILEGE - WTF? - WWW. views + - Wake up + - Wall Street - Wall Street Journal - Wally Inouye + - War + - Wayne Kramer - Wendy bearer - Wentzle Ruml IV - Wes Humpston + - Western Philosophy - Westwood + - Whales - Whip - White Nationalism - Whitney Cummings @@ -1920,59 +1090,105 @@ params: - Whole Foods - Wide world of sports - Will Ferrell + - Woody Allen + - Work + Capitalism + - Wu tang clan - Wyatt Cenac - Wyoming + - X + - X-Clan - X-Men + - YES MEN - YVON CHOUINARD - Yamakasi + - YouTube - Z-3 MC's + - Z-Boys + - Z-Flex - ZBOYS - ZZ TOP + - a tribe called quest - aaron swartz - abolishing nuclear weapons - abolishing nuclear weapons . film - abuse + - abuse of power - accident + - acting - action adventure - action now magazine + - activism + - activist + - adam yauch - adbusters - addiction + - adjusters - adults + - advertising + - advice - aerial photography + - aesthetics - african + - african american - african americans - afrocentric + - age + - aging + - agribusiness - agriculture + - air + - air pollution - airwaves - al Jaffee - al jazeera - al oliver - album + - album art + - album cover + - alcohol - alfred E. newman + - aliens - all ways fodder for the con - alt-right - alt. right - amazon.com - ambassadors + - america + - american + - american bandstand - american culture - american diet + - american history - amerikka + - amerikkka + - amnesty international - amy farina - anarchism - anarchist + - anarchy - anatomy - ancient societies - and magazine - andy kessler - andy warhol + - angela davis + - angelicas kitchen + - animal agriculture - animal farm + - animal liberation + - animal rights + - animals + - animation - animations - another world is possible - antarctica - anthem + - anthropology + - anti-fascist - anti-imperialist - anti-semitism - anti-violence + - anti-war - anti-war. no nukes - antibiotics - antropologie @@ -1984,34 +1200,59 @@ params: - arrow - art direction - arts + - asia + - asshole + - assholes + - astronomy + - atheism + - atheist + - athiest - athlete + - athletes - atifa - atmosphere - attempted robbery + - attitude - audio + - austerity - austraila + - australia - authoritarianism - authority - autobiography - autobiography punk + - automation - automobile fatalities + - automobiles - awards + - away + - away memes + - away tunes + - away. meme - awe - awesome + - b-boy + - b-boying - baby - baby paul cullen - back story - backstage - backyard + - backyard ramp - bacteria + - bad ass - bad food + - badass + - badge - bail out - balance - banking + - banks - banter - bart simpson - base junping - baseball Major League baseball + - basketball - basketball. sportsmanship - baskin robbins - bass @@ -2019,11 +1260,21 @@ params: - bbd - beach culture - beastie boys book + - beat box + - beats + - beauty - beetles + - behavior - being nice. + - beliefs - believe her - bernie + - bernie sanders - biases + - bible + - bicycle + - bicycles + - big boys - big brother - big brother politics. laws - big cities @@ -2033,78 +1284,113 @@ params: - bikinis - bill - bill Murray + - bill moyers - bill stevenson - bill withers - billy yeron - biography + - birds - birth + - birthday - birthday post - black bloc + - black culture - black friday - black history month + - black lives matter + - black nationalism - blaxploitation - blindness - blog - blondie + - blues - bo diddley + - boards - bob avakian - bob burnquist - bob hoskins - body - body count - boice + - boing boing - boingboing - bomb squad - bombing Hills + - bones brigade - book making + - book signing + - book stores - bookstore - bootlegs + - border - botany - bots - boxing - boy - boy in the bubble - boycots + - brain - brains + - bratmobile - brave new films - brazil + - break dancing - breaking + - brooklyn - brotherhood - buckminster fuller - buddha - bugging - bugs - bugs bunny + - bullshit - bummer + - burger - burger king - burial + - burning flags press - bush + - buzzcocks - c-span + - c. r. stecyk - c.r. stecyk lll - cable - cadillac wheels + - california - cambodia + - camera - camera phones + - campaign - camus + - cancer - canyon jump + - capitalism - capitalism advertising - captivity - car crash + - car culture - card - card against humanity - cards - career + - carl dix - carl reiner - carl sagan - carlsbad california - carnival + - carnivore - carol kaye - carpenter trade - carrots + - cars - cartoon soundtraks + - cartoons - caterpillar - celebrity + - cell phones + - censorship - center + - charity - charles Dickens - charles manson - charlie brown @@ -2113,28 +1399,51 @@ params: - cheap skates - check your head - chemicals + - cherry hill - chicago - child + - child abuse - child labor + - childhood - childhood idols + - children - children music - children story - chillaxing + - china + - chomsky - christian - christian hose + - christmas + - chuck dukowski - cigarettes - cinema + - cinematography + - circle jerks + - cities - citizens united - city government - city living + - civil disobedience + - civil liberties + - civil rights + - civilization - class + - classic + - classic battle rap + - classic music - classic rock + - classic vinyl - classsic - clemente + - climate + - climate change - climbing - close talker - closing + - clothing - cloud appreciation society + - clouds - clouds. recognize - cloudspotting - cnn @@ -2144,50 +1453,98 @@ params: - coincidence - cointelpro - coke + - cold + - cold war - coldwar - colin m day + - collaboration - collectables - collecting - college + - color - color. paint - columbia house - column - combo + - comedy + - comic books + - comics - coming of age + - coming out - commencement - comment + - commentary + - comments + - commercial + - commercials + - communication - communications + - communism - communist + - community - companions + - compassion - computer + - computers + - con - coney island + - confederate flag - confidence + - congress - conman + - consciousness + - conservative + - conservatives + - conspiracy + - conspiracy theories + - constitution - consumer society + - consumerism - consumers - contest - cookbook - cookie + - cool + - cool stuff + - copyright + - cornel west - corner air - corny - coronavirus + - corporate greed + - corporations + - corporatocracy - correspondents' dinner + - corruption - cover song - cow puss - cows + - cows milk - cowspiracy + - craft - craig stecyk - crass commercialism + - crazy legs - crazy shit - crd-mags + - creationism + - creative - creative commons + - creatives + - creativity + - criminals - cris dawson - criterion collection - criticism - crosswalks - crowds + - cruelty - cruelty free + - cuba - cults + - culture + - curiosity + - currency - current listening - current skating - curse words @@ -2197,18 +1554,26 @@ params: - daggers - dalai lama - damned + - dance - dance hall - dancing - danger + - dangerous Minds + - darby crash - dare devils. + - daredevils - dave markey - david bowie - david letterman - dayglo - dead + - dead kennedys - dead prez + - dean Delray - death by car + - death metal - death.mortality + - debate - debt - decent - decision making @@ -2216,27 +1581,41 @@ params: - def jam. beastie boys - defensive - deficit + - demo - demo tape + - democrats - demonstrations + - depression - descendants - desegregated - desperate - dessert + - detroit - development + - devil + - dez cadena - diapers - dick cavett + - dick clark + - diet - diet for a new america - digital life + - digital technology - dignity - diplomacy + - disaster - disaster Control - discharge + - dischord - dischord house + - dischord records - discipline - disco + - discussion - discussion. talk - disease - dishonesty + - disney - dissent - distractions - distress @@ -2244,25 +1623,36 @@ params: - distrust - divorce - do it yourself + - documentary - documentary photographs - documenting - documents - dog + - dog town - dog town the legend of the z-boys + - dogtown & Z-Boys - dominos - don't sit back - don'ts + - donald trump - doodle + - dope - doug E. Fresh - downhill + - downloading - doze - dr. seuss - drama - drawing + - dreams - drill sergeant - drinking - driverless + - driving + - drones - drought + - drugs + - duane peters - dumb people - dumbass - dumbing down @@ -2271,136 +1661,230 @@ params: - e-z listening - east village - echo + - ecology - economic inequality + - economics + - economy + - eddie elguera - editor - editorial + - education + - educational - educational film. film + - egypt + - election + - election 2016 + - elections - electoral college + - electric car - electric cars - electricty + - elizabeth warren - ellen oneil + - elvis costello - emancipation - emma goldman + - emo - emotions + - empathy - empire - employment - end of the world - endangered species + - energy - engineer - engineering - environnent + - equality - equity + - eric b. and rakim - eric garner - essay - esteem - etc. - ethic + - ethics - ethiopia + - etiquette - europe + - evel knievel + - event + - evil + - evolution - exercise + - exhibition - expanded editions - extinction - extra extra + - extreme + - extreme sports - eye sight + - eyes - face book + - factory farming - factory farms + - facts - faith + - fake - false news - false self + - fame - fan - far right - farm sanctuary - farming - farms + - fascism + - fascist + - fashion + - fast food - father - father and son + - faux news - faux science + - fear - feed + - feel the bern + - feminist + - ferguson - fertility - fife dawg - fifty cent - fight back + - fight ignorance + - film + - film making + - films - final level + - finance - fios outage + - fireworks - first amendment + - first world - fiscal cliff + - flag - flags - flat earth + - flight - flip - flooding + - flyers - flying - fog - folk + - folk music + - food - foot prints + - football - for the people - forced marriage - forgiveness - fort reno - fossils - foundation + - fox + - fox news + - fracking + - france - frank nasworthy - fraud - free speech censorship - freedom + - freedom of speech + - freedom of the press + - freestyle - friend - friendship + - fuck all conservatives - fuck dump - fuck the police - fuck these shitheads + - fuck you heroes - fucked - fugazi joe lally - fukushima - fulfillment + - fun + - fundamentalism - fundamentalists - funk master wizard wiz - funkadelic - funky + - funny + - future - future cars - game - game show + - gangs + - gangster + - garage - garbage - garbage. sugar - gardens - gary owens + - gay - gay pride in the city - gay rights + - gaza - gemany - gene research + - genetically modified - genetics + - genius - gentrification - geography - george carlin + - george clinton - george forman - george hurley - george lucas - george martin + - george orwell + - germany + - germs - gerrymandering - gift - gil scott-heron - giraffe + - girls - girls first - glasses + - glen E. Friedman - glen e. friedman book signing event - glove - gluttony - gnarly - go go music - go-go's + - god - god save the queen - god? + - godfather - godzilla + - golden era + - good - good use - goodfellas - goodwill + - google - google Doodle + - gopro - gordon willis - gossip + - government - government shutdown + - graffiti rock - gramercy - grand canyon + - grand master flash + - graphic + - graphic design + - graphics - graphs - gravity + - greed - greeting cards + - greg Ginn - greg sergeant - grief - groceries @@ -2408,21 +1892,33 @@ params: - group think - grown up - grown ups + - guitar - guitar army - gun law + - gun violence + - guns - guy fawkes - haa haa - habitat - hackers + - hall of fame + - halloween + - hank shocklee - happiness - happy birthday - happy holidays + - hard core - hard rock - hard times + - hardcore + - hardcore punk - harlem globetrotters - harley - hate - hawaii + - health + - health care + - healthcare - hearing - heat - heavens to betsy @@ -2433,25 +1929,48 @@ params: - herbivore - heroes - high school + - highways - hip + - hip hop - hip hope + - hip-hop + - hiphop - hippie culture + - history - hitchhiking + - hobby - hobie - hobo life - holLand + - holiday + - hollis - hollis queens + - hollywood + - home - home purchase + - homeless + - honda - hong kong + - honor - hop + - hope + - hot rods - housing - howard stern - human - human existence - human flying - human genealogy + - human interest + - human nature + - human rights + - humanitarian + - humanity + - humans + - humor - hungary - hungry + - hygiene - hype - hypocrisy - hysteria @@ -2461,99 +1980,183 @@ params: - ice - icon - icons + - idealisim + - idealism + - idealist + - ideas - ideology + - idiot + - idiots + - iggy + - iggy pop - ignoramus + - ignorance - ignorant - ikea + - ill - illuminati - illustration + - images - immigration - immune system - impeach - imperialism - impossible burger - improvement + - incarceration - incredible - independence day + - independent + - india - inductees 2019 - industrialized + - inebriated - inequality - infection - infographics + - information + - information commodity + - infrastructure + - injustice - inner ear + - innovation - innovator + - insane + - insanity + - insects + - inspiration - inspiring + - instagram - instagram GEF - instalation + - institutionalized - instrumental - instruments + - integrity - intellectual - intellectuals - intelligent life + - interesting - international + - internet + - introspection - investigation - investigative reporting + - investment - involvement + - iran + - iraq - irony - islam - islamophobia - israel + - it takes a nation of millions to hold us back - italia - italian + - italy - jacked + - james bond + - james brown - james cameron + - jaywalking + - jazz - jem cohen - jerry casle - jerry seinfeld + - jesus - jesus christ - jim hightower + - jimi hendrix - jingoism - job + - jobs - john carpenter + - john lennon + - john lydon + - john oliver - john oliver. Dalai Lama + - john stewart - john waters - johnny cotton + - jon stewart - joseph simmons - journalism - journey - judgement - junk food - junkyard band + - justice - justin timberlake - k-1000 + - karl marx - kate - kathleen Hanna - keith Norris + - keith morris + - kent sherwood - kent state + - kenter + - kids + - killer mike - killings - kindness - kite surfing + - kkk + - know your roots + - knowledge + - kodachrome - kodak - kool moe dee - la weekly - label + - labor + - lance Mountain - landscape + - language - lasers - last poets + - last week tonight - latin + - law + - law enforcement - leader + - leadership - learning + - lecture - left + - legendary + - lego - lesbian - lesson - lets lynch the landlord + - liar + - liberal - liberation + - lie + - lies + - life - life hack + - lifestyle + - light + - lightening + - lightning - lil nas x - liner notes + - linguistics - lion - lion vs wildebeest - listening + - literature - litter bug + - little league - little steven + - live music + - liverpool + - living - living space - local customs - logo + - logos - long form video - lonodon MY RULES - loom @@ -2561,24 +2164,42 @@ params: - looting - lords of dogtown - lorna doom + - los angeles - loser - louis C.K.. Hilary + - love - love letters - love police - lsayer + - luddites - lunar expeditions + - lying - lyle preslar + - lyrics - machines - madness + - magazine - magazines + - magic - making a difference + - malcolm McLaren + - malcolm x - malcom x - malfunction - malibu - man + - manchester - manipulation + - manners - mark anderson + - marriage + - martin luther king jr. + - martin sprouse + - marx + - marxism - mary poppins + - mash-up + - mash-up remixes - mashup - mass transit - master mix @@ -2587,12 +2208,21 @@ params: - maxine waters - mayor - mc + - mcdonalds - mean + - meaning + - meat + - media - medicade - medical debt + - medical science - medicare for all + - medicine - meditation + - memorial - memorial event + - memory + - mental health - mental illness - merch - merchandising @@ -2601,11 +2231,17 @@ params: - microbanking - microsoft - migrants + - mike watt - miles davis - militarization + - military + - military industrial complex + - milk - minds - mini-doc - minute earth + - minutemen + - misfits - misinformation - missing words - mission @@ -2618,80 +2254,127 @@ params: - modern art - modern society - modernbkating + - mods + - money - mongolia - monopoly + - monsanto - monty python + - moon + - morals - morons - mosquitos - mother jones - motor city - motorcycle - motorhead + - movie + - movie stars + - movies + - muhammad ali - muir + - murder - muscle + - museum - museum of natural history - museums + - music business - music culture + - music video - music. Eric garner - musicians + - my rules - myth - nadya riot + - names - naomi klein + - narcissist + - nas - nation - nation magazine - nation skate + - national geographic - national parks + - nationalism - native americans + - nature + - nazi - nazi fascists - nazi punks fuck off + - nazi trump fuck off - nazis - neftali williams - negro league - neil young - nelson mandela - neoliberal + - nerds + - net neutrality - network TV - new York Public Library - new alliance + - new book - new fly shit - new music - new school - new shit + - new wave - new works + - new year - new year. - newly expanded - newsmen - newspapers - next generation - nice guy + - night train - night vision - nightlife - nirvana - no fellings + - no guns - no snow - no-no a documentary + - noir - noise - noise pollution + - non-violence - norway - nostalgia - not a communist - not a socialist - not punk - nourishment + - novelty + - nuclear power + - nuclear testing - nuclear waste + - nuclear weapons - nude + - nukes + - nutrition + - obama - obamacare - obit + - occupy wall street - ocean life - october + - "off" - off meat - off the grid living - office - ohio + - oil - ol' dirty bastard + - old people + - old school - old tunes - oldest person alive + - oldschoool + - oliver stone - ollie + - olson + - olympics - op ed - op-doc - op-ed @@ -2699,8 +2382,10 @@ params: - opening day - opening titles - opera + - opinion - optimism - options + - organic - organizing - orson wells - oxford @@ -2712,9 +2397,12 @@ params: - paper airplane - paraplegic - pardon + - parenting - park - parkour + - parks - parliment + - parody - parody Ice-T - parties - party @@ -2725,12 +2413,18 @@ params: - patriotism - paul Mccartney - pauls boutique + - pbs + - peace - peace sign - peaceful protest + - peanuts - pedestrians - pedro Reyes + - pee wee herman + - pee-wee herman - pentagon - pentax + - people - people of profits - perceived democracy - perception @@ -2739,58 +2433,103 @@ params: - personal - personal grooming - personality + - perspective + - peta - petition + - peyote cody + - pharma - phenom - phife dawg + - philanthropy - philly + - philosophy - phones + - photo + - photo manipulation + - photograph + - photographs - photos - photozine + - physics - pimpin' ain't easy + - pin - pinball - pink - pipeline + - piracy + - pirates - piss - pitch fork - pitchfork + - pittsburgh pirates + - pizza + - pizzanista - plan - plane + - planet - planet earth + - planets + - plant based + - plant based diet - playlist + - plutocracy + - poet + - poetry - point loma - poison + - police + - police violence - policy + - politcs - polite - politeness + - political correctness - political philosophy - political science - political science / rule of law / separation of powers + - political theory + - politicians - politics. - politics. chomsky - poll + - pollution - pool riding + - pool skating - poor + - pop + - pop culture - pop life + - pop music - pope - popular photography - population - porn - portraits - portraiture + - poseur + - positive + - positive force - 'positive force: More than a witness' - post modern art - poster - posters - pov + - poverty + - powell peralta + - power - power pop - practical jokes - practice - prague + - prank - pranks - pregnancy - prejudice - premiere + - president + - presidential election - presidents + - press - press. pinocchio - prevention - pride @@ -2798,89 +2537,155 @@ params: - printing - prison - prison industrial complex + - privacy - privatization - pro sports - problems - producer - producer. - producing + - production - professional sports - progress + - progressive + - projection + - propaganda - prophets of rage + - protest - provocateur - psa - psychoanalysis + - psychology - public - public enemy. black panthers - public enemy. dock ellis + - public library - public parks - public safety - public service + - public spaces + - public transportation - publicity + - publishing + - puerto rico + - punk 1960's - punk hiphop - punk pop + - punk rock - pure self + - putin - q-tip - quarantine - queen - quest love + - r + - race + - racism - radiation - radical + - radicals + - radio - raiders of the lost ark - rain + - rakim allah - ramellzee + - ramones - ramp - ramp. + - ramps - random acts of kindness + - rant + - rap - rap battle + - rape + - rare - re-use - readers + - reading + - reagan - real - real change + - real estate - real talk - real time + - reality - reason + - rebel + - rebel culture - rebelión + - rebellion - recession + - recognize - record - record clubs - record release - record reviews + - recording + - recordings + - records + - recycle - recycling - red alert + - reggae - reggie watts - regulation - rehab - reissue - relationships - relgion + - religion + - ren and stimpy - repost + - republikkkan - republikkkans - res + - reservation + - resilience + - resistance + - respect + - responsibility - restaurants - retrospective + - reunion - revenge - revenge. poachers + - review - revolt - revolutionarie + - revolutionary - rhyme - rich - richard belzer - rick ross - right brigade + - right wing - rights of spring - riot + - riot grrrl + - riots + - rise above - rituals - roads + - robert DeNiro + - robert Reich - roberto + - roberto clemente + - robots + - rock + - rock 'n' roll - rock n roll + - rock n' roll - rock steady crew + - rock'N'roll - rock'n'o;; - rockNRoll. John Lennon + - rockNroll - rockabilly - rocking - rodney dangerfield + - roller coaster - roller skates + - rolling jubilee - rolling stones - royalty - rude @@ -2888,16 +2693,21 @@ params: - rudolph - ruins - rule of law + - run dmc - run_DMC - running + - russell simmons + - russia - russian - sHAME - sacrifice - sad - sadistic - sadness + - safety - sale - sample + - sampling - san diego - san francisco - sand @@ -2908,17 +2718,24 @@ params: - sassy - satan - satellite + - satire - satisfaction - satre - saturday morning - savant + - scandal - scared - scarface - scary + - school - school D + - school D. + - school house rock + - school of life - school of life monday - school shooting - schooling + - schools - science. academics - science. life. creepy - science. pain @@ -2927,89 +2744,148 @@ params: - scum - search engines - sec pistols + - security - sedition + - seinfeld + - self - self actualization - self awareness - self defense - self expression + - selfies - senior citizen - senseless violence + - separation of church and state - separation of powers - serenity - sesame street - seven deadly sins + - sex + - sex pistols - sexual orientation - sharks - shawn kerri - shell - shindig + - shit - shit animation + - shit head + - shithead + - shitpreme - shoes + - shogo kubo + - shopping - shopping carts + - short film - short fim - shovel - sick + - sight - signs - silent movie - silly - singalong - siri - sixties + - ska + - skate - skate and destroy - skate culture - skate rock + - skateBoarder imagine + - skateboarder magazine + - skateboarding + - skateboarding hall of fame + - skateboarding history + - skateboarding saves - skating - skiing - skills - sky diving + - slalom + - slayer + - sleep - sleep. tired of the bullshit - sleeper + - slick rick - slot car racing - smarts + - smog + - smoking - snake river - snob - snobbery + - snow - snow boarding - snow. powder + - snowboarding - social + - social Skills - social beings + - social commentary - social democrat + - social justice + - social media - social network + - social security + - socialism + - society + - sociology - soda + - solar power + - solar system - solution + - solutions + - soul + - sound - sound effects - soundtrack + - south africa - south bay - south central + - south park - soylent green - space travel - space x - spaces - spain - spanish + - speak out - speak up - speaking out + - special effects - special effects. mad max + - specials - speech + - spiderman + - spike lee + - spirituality - spoken word - sponsor - sport. law + - sports - spring - springa - sprorts - spying - squirrels + - stacy peralta - stadiums - stamps - stan lee - stand up - star trek + - star wars + - stars - starvation - 'state of the union #SOTU #FeelTheBern' - stedicam + - stephen colbert - stephen egerton - steve alba - steve caballero + - steve jobs + - steve olson - steven colbert - steven spielberg - stevie caballero @@ -3019,41 +2895,75 @@ params: - stone roses - stooges - storage + - stories + - storms - story + - straight edge - streams + - street art - street skating - streets + - strike debt + - student loans - student protests + - students - studio + - study - stunts - stupid + - stupidity + - style + - subculture + - subway - subway system - subways - success - suckers - suicidal - suicide + - summer - summer vacation continues - sun - sundance film festival + - sunday sermon - super 8 + - super heroes - super rich - supermarket + - superstition + - supreme court + - surf culture + - surfer - surfers journal + - surfing - surrealism + - surveillance - survival - survivor - sustainability + - sustainable living + - swearing - sweden - sweet - sweets + - swimming - symbol - symbols - synth + - syria + - t-shirt + - t-shirts - taking advantage + - target video - tavis smiley + - tax + - taxes - taxi driver + - tea party - teach + - tech + - techno + - technology - teenage - teenagers - telephone @@ -3061,20 +2971,33 @@ params: - temperature - temples - terrance malik + - terrorism - texting + - thanksgiving meme's + - the CRAMPS - the Matrix - the Monkees + - the Simpsons + - the Specials + - the Spiv - the Whisky - the beat + - the beatles - the bomb squad + - the clash - the cloud appreciation society + - the damned - the end is near + - the evens - the exorcist - the forms - the fuck you heroes - the gong + - the guardian + - the idealist - the last word - the meters + - the new york times - the normal - the president is responsible - the pudding @@ -3082,20 +3005,27 @@ params: - the ritz - the royals - the saints + - the scream - the selector + - the stooges - the unspeakable - the warriors - therapy - thief + - thieves - think tanks - thinkers + - this is america - thought + - thrasher - thrashin' skateboarding embarrassing moments - three finger ring - thrill seekers - thug life - tie - tigers + - time + - time lapse - times square - times they are a changin' - timothy leary @@ -3104,40 +3034,66 @@ params: - tipping - toasting - tokyo + - tom groholski + - tony alva + - tony hawk - tool - top gear - tornado + - tour - tourism - toxic + - toys - tracy marrow - trader joes - trading cards + - traffic - tragic - trailer - train - trains + - transportation + - treacherous three + - trees + - trends - trent reznor - tribecca film festival - tribute - trickle down + - tricks - triptych + - trivia - trolls + - trouble funk - trumps + - truth - truth and power - tulsa + - tupac Shakur + - turkey - turntables + - turntablism - tv party + - twitter - two party system + - two tone - txes - type + - tyranny - ultramagnetic MC's - unauthorized + - unions - united states + - united states of america + - universe - university - unknown + - unreleased - unsigned - upland - urban living + - us + - usa - usausausa - utopia - vacations @@ -3145,13 +3101,18 @@ params: - vagina - valentines day - value + - values - various - vatican + - vegan - vegan.organic + - vegetarian + - vegetation - vehicle - vehicles - velour - venezuela + - venice - venues - verizon - veteran @@ -3159,28 +3120,45 @@ params: - vid - video days - village Voice + - vintage - vintage film + - vinyl + - violence + - viral + - vision - vison - visual + - visual traveling - vocabulary - voice assistant - volkswagen + - vote + - voting - waiting room - walk of shame + - wall - wallstreet - walmart - wannabe + - war on drugs - war propaganda + - warfare - warm + - washington DC - washington square park + - waste - wasteland + - water - waterslide - watt on bass - watts - wave pool + - waves - we eat art + - wealth - weapon - weapons + - weather - website - well being - wellness @@ -3191,21 +3169,34 @@ params: - white boy - white castle - white nationalists + - wi-fi + - wikileaks + - wild life + - wild style - wildlife + - william f. buckley + - win - windows - winfsuit - wing suit - wingsuit + - winston Smith - winter + - wisdom - wise tale - woman - woman march + - women - womens + - womens rights + - wood - woodstock - woody guthrie - word - words + - work - work + capitalism status + - workers - world - world championships - world cup @@ -3215,40 +3206,58 @@ params: - world wars - worldwide - worry + - writing + - wrong + - wu-tang clan + - wugazi - ww2 - x-head + - x-mas - x-rated - x. punk. baseball. classics - xenophobia + - xmas + - yauch - yellow submarine - yesterday & Today + - yoko ono - you are not so smart - young - young music - young people + - youth - youth culture - youth first + - z-boy + - zephyr + - zephyr team - ziggy - zine reports + - © - ‘Anarchy in the UK’ relme: - https://www.blogger.com/profile/01146744056187558931: true + https://idealistpropaganda.blogspot.com/: true last_post_title: My exhibition is up in Paris July 20th-August 6th last_post_description: "" last_post_date: "2023-07-28T09:45:15-04:00" last_post_link: https://idealistpropaganda.blogspot.com/2023/07/burning-flags-photo-exhibition-in-paris.html last_post_categories: [] + last_post_language: "" last_post_guid: 60ec892bb7e5b5141180d415ba10d66c score_criteria: cats: 5 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 20 + score: 23 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-72d9e080c6cdbd319a721285e7d5a7cf.md b/content/discover/feed-72d9e080c6cdbd319a721285e7d5a7cf.md deleted file mode 100644 index 02ef2316e..000000000 --- a/content/discover/feed-72d9e080c6cdbd319a721285e7d5a7cf.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Learn With Jason Blog RSS Feed -date: "1970-01-01T00:00:00Z" -description: Articles and tutorials about web dev, career growth, and more. -params: - feedlink: https://lwj.dev/blog/rss.xml - feedtype: rss - feedid: 72d9e080c6cdbd319a721285e7d5a7cf - websites: - https://lwj.dev/newsletter: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: 'Understand your work archetype: explorers, villagers, and town - planners' - last_post_description: What kind of work is the best fit FOR YOU? A quick assessment - to help you optimize for a job that you'll actually enjoy. - last_post_date: "2024-05-31T00:00:00Z" - last_post_link: https://www.learnwithjason.dev/blog/work-archetype-explorer-villager-town-planner/ - last_post_categories: [] - last_post_guid: cce4f11445742cf7d07473d11365c721 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-72f325d4ff8c970bde3609f9bd79e30f.md b/content/discover/feed-72f325d4ff8c970bde3609f9bd79e30f.md new file mode 100644 index 000000000..975c9eb66 --- /dev/null +++ b/content/discover/feed-72f325d4ff8c970bde3609f9bd79e30f.md @@ -0,0 +1,44 @@ +--- +title: Pythonology +date: "1970-01-01T00:00:00Z" +description: Python is an amazing programming language that makes software development + productive and fun. Python is open source, was created by a community of thousands + of developers world-wide, and is used by +params: + feedlink: https://pythonology.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 72f325d4ff8c970bde3609f9bd79e30f + websites: + https://pythonology.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://pythonology.blogspot.com/: true + last_post_title: Wingware at PyCon 2010 + last_post_description: Wingware is a silver sponsor for PyCon 2010. If you will + be at the conference, please stop by our booth in the expo hall or come to one + of our open space events (times will be posted on the open + last_post_date: "2010-02-15T13:54:00Z" + last_post_link: https://pythonology.blogspot.com/2010/02/wingware-at-pycon-2010.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 76af5065fcc802352339c3258dc29ace + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-72f34070d4d368985a0962f7e11d6713.md b/content/discover/feed-72f34070d4d368985a0962f7e11d6713.md new file mode 100644 index 000000000..43379548f --- /dev/null +++ b/content/discover/feed-72f34070d4d368985a0962f7e11d6713.md @@ -0,0 +1,46 @@ +--- +title: Assassino Suicida +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://assassinosuicida.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 72f34070d4d368985a0962f7e11d6713 + websites: + https://assassinosuicida.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://assassinosuicida.blogspot.com/: true + https://gta02-core-news.blogspot.com/: true + https://www.blogger.com/profile/17602200301602248416: true + https://zpuino.blogspot.com/: true + https://zxinterfacez.blogspot.com/: true + last_post_title: 'IoT: Idea for future' + last_post_description: In the age of low power, connected devices, one can imagine + a world where many IoT sensors (Internet of Things) are basically everywhere, + from water tube joints, light bulbs, gas pipes - basically in + last_post_date: "2014-04-30T18:30:00Z" + last_post_link: https://assassinosuicida.blogspot.com/2014/04/iot-idea-for-future.html + last_post_categories: [] + last_post_language: "" + last_post_guid: e5ade37a9b45db56b3bd192928c546c3 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7319af5c47ad5da53a0fc5e17a5bab46.md b/content/discover/feed-7319af5c47ad5da53a0fc5e17a5bab46.md new file mode 100644 index 000000000..cd554d2d3 --- /dev/null +++ b/content/discover/feed-7319af5c47ad5da53a0fc5e17a5bab46.md @@ -0,0 +1,58 @@ +--- +title: Eshel Yaron +date: "2024-02-11T00:00:00Z" +description: RSS Feed of eshelyaron.com +params: + feedlink: https://eshelyaron.com/rss.xml + feedtype: rss + feedid: 7319af5c47ad5da53a0fc5e17a5bab46 + websites: + https://eshelyaron.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - emacs + relme: + https://emacs.ch/@eshel: true + https://eshelyaron.com/: true + last_post_title: Fixing a Twenty Six Years Old Emacs Bug + last_post_description: |- + They got it backward those days… + Created on [2024-02-10], last updated [2024-02-11] + + + + A couple of weeks ago, an interesting bug report landed on the Emacs + bug tracker: + + + + + Subject: bug#68762: 30.0 + last_post_date: "2024-02-10T00:00:00Z" + last_post_link: https://eshelyaron.com/posts/2024-02-10-fixing-a-twenty-six-years-old-emacs-bug.html + last_post_categories: + - emacs + last_post_language: "" + last_post_guid: 3bdb2b4918be13e5921a5a4e7e2bdf6e + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-736e4c17428c55365470111d3af5b287.md b/content/discover/feed-736e4c17428c55365470111d3af5b287.md deleted file mode 100644 index d1ddcbd87..000000000 --- a/content/discover/feed-736e4c17428c55365470111d3af5b287.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: iA -date: "1970-01-01T00:00:00Z" -description: We Architect Information -params: - feedlink: https://ia.net/feed/ - feedtype: rss - feedid: 736e4c17428c55365470111d3af5b287 - websites: - https://ia.net/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Technology and Web Trends - - Writer - relme: - https://mastodon.online/@ia: true - last_post_title: I Want You Back (The Dropbox Remix) - last_post_description: |- - Dropbox finally has a native Files app integration. This is good news for iA Writer. - The post I Want You Back (The Dropbox Remix) appeared first on iA. - last_post_date: "2024-05-24T06:23:54Z" - last_post_link: https://ia.net/topics/i-want-you-back-the-dropbox-remix - last_post_categories: - - Technology and Web Trends - - Writer - last_post_guid: 91dc164689c358829cf395e74ebfaf29 - score_criteria: - cats: 0 - description: 3 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 12 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7379ac7dcaca87155fcd3fc28ff15d71.md b/content/discover/feed-7379ac7dcaca87155fcd3fc28ff15d71.md index f45917cf2..1982920f4 100644 --- a/content/discover/feed-7379ac7dcaca87155fcd3fc28ff15d71.md +++ b/content/discover/feed-7379ac7dcaca87155fcd3fc28ff15d71.md @@ -16,12 +16,6 @@ params: - Society & Culture relme: https://github.com/jthingelstad: true - https://mastodon.social/@jamiethingelstad: true - https://micro.blog/jthingelstad: false - https://t.me/jthingelstad: false - https://twitter.com/thingles: false - https://weekly.thingelstad.com/: false - https://www.linkedin.com/in/jthingelstad/: false https://www.thingelstad.com/: true last_post_title: First Coffee in 54 Days last_post_description: This morning I had my first cup of coffee since April 1st @@ -30,17 +24,22 @@ params: last_post_date: "2024-05-25T15:41:43-05:00" last_post_link: https://www.thingelstad.com/2024/05/25/first-coffee-in.html last_post_categories: [] + last_post_language: "" last_post_guid: 5d46ca0f1adc84b181b0d54408ee78fa score_criteria: cats: 1 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 11 + score: 15 ispodcast: true isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-73867a35d128c5d7ed72e6ae0f2c4242.md b/content/discover/feed-73867a35d128c5d7ed72e6ae0f2c4242.md deleted file mode 100644 index 015660426..000000000 --- a/content/discover/feed-73867a35d128c5d7ed72e6ae0f2c4242.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Status Updates -date: "1970-01-01T00:00:00Z" -description: Public posts from @status_updates@hachyderm.io -params: - feedlink: https://hachyderm.io/@status_updates.rss - feedtype: rss - feedid: 73867a35d128c5d7ed72e6ae0f2c4242 - websites: - https://hachyderm.io/@status_updates: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/approved: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-738d84518e0550fb44174c9cdcf805bf.md b/content/discover/feed-738d84518e0550fb44174c9cdcf805bf.md deleted file mode 100644 index 9e09e748d..000000000 --- a/content/discover/feed-738d84518e0550fb44174c9cdcf805bf.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: Hemispheric Views -date: "2024-05-30T07:45:03Z" -description: |- - Contrary to stereotypes, not all tech enthusiasts are the same. - Join Andrew 'The Business' Canion (https://andrewcanion.com/), tech-creative Jason Burk (https://grepjason.sh) and podcast researcher -params: - feedlink: https://listen.hemisphericviews.com/rss - feedtype: rss - feedid: 738d84518e0550fb44174c9cdcf805bf - websites: - https://listen.hemisphericviews.com/: true - https://listen.hemisphericviews.com/articles: false - blogrolls: [] - recommended: [] - recommender: - - https://canion.blog/categories/article/feed.xml - - https://canion.blog/feed.xml - - https://canion.blog/podcast.xml - categories: - - Technology - - Leisure - - Society & Culture - relme: {} - last_post_title: '112: Odd Canion, Even Feld!' - last_post_description: You have no idea how stuffed this episode recording was—disaster - around every corner. Huge thanks to Martin for salvaging it all into an actual - episode! A new One Prime Plus member has entered the - last_post_date: "2024-05-30T00:15:00-07:00" - last_post_link: https://listen.hemisphericviews.com/112 - last_post_categories: [] - last_post_guid: c9a5dd5be1b402d886045894f963d90e - score_criteria: - cats: 3 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 16 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-73960c7669cbb0af128176c84a30d64e.md b/content/discover/feed-73960c7669cbb0af128176c84a30d64e.md deleted file mode 100644 index 76a077743..000000000 --- a/content/discover/feed-73960c7669cbb0af128176c84a30d64e.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Changelog on Tailscale -date: "1970-01-01T00:00:00Z" -description: Recent changelog entries on Tailscale -params: - feedlink: https://tailscale.com/changelog/index.xml - feedtype: rss - feedid: 73960c7669cbb0af128176c84a30d64e - websites: - https://tailscale.com/: false - https://tailscale.com/blog/: false - https://tailscale.com/changelog/: true - https://tailscale.com/security-bulletins/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://hachyderm.io/@tailscale: false - last_post_title: Auto exit nodes - last_post_description: 'New: You can now automatically select a recommended exit - node based on client information (such as location).' - last_post_date: "2024-05-30T00:00:00Z" - last_post_link: https://tailscale.com/changelog/#2024-05-30-service - last_post_categories: [] - last_post_guid: c29eeb4c6e9f47df2e880eb2d2ce45c6 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-739b88a038b45316d4ad083ee136a36c.md b/content/discover/feed-739b88a038b45316d4ad083ee136a36c.md deleted file mode 100644 index 8453a6891..000000000 --- a/content/discover/feed-739b88a038b45316d4ad083ee136a36c.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Posts on Matt Brunt - Developer & Problem Solver -date: "1970-01-01T00:00:00Z" -description: Recent content in Posts on Matt Brunt - Developer & Problem Solver -params: - feedlink: https://brunty.me/posts/index.xml - feedtype: rss - feedid: 739b88a038b45316d4ad083ee136a36c - websites: - https://brunty.me/posts/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://brunty.me/posts/index.xml: false - https://brunty.social/@brunty: false - https://github.com/brunty: false - https://instagram.com/brunty.me: false - https://twitter.com/Brunty: false - last_post_title: Camera Gear 2024 - last_post_description: |- - I’m a hobby photographer. It’s something I enjoy. I recently bought myself a new mirrorless camera and figured I’d - post about the main bits of gear here. - Camera Bodies - Canon 7D - I bought this - last_post_date: "2024-05-08T10:57:44+01:00" - last_post_link: https://brunty.me/post/camera-gear-2024/ - last_post_categories: [] - last_post_guid: c415802188861a666ed48c73ca844e92 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-73ad10bfaed8d234dd38a5986bdd52bf.md b/content/discover/feed-73ad10bfaed8d234dd38a5986bdd52bf.md new file mode 100644 index 000000000..ce4f4c5a6 --- /dev/null +++ b/content/discover/feed-73ad10bfaed8d234dd38a5986bdd52bf.md @@ -0,0 +1,41 @@ +--- +title: Performance Improvements for the Graph Module of Sagemath +date: "2024-02-08T10:20:27-08:00" +description: "" +params: + feedlink: https://borassisagemath.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 73ad10bfaed8d234dd38a5986bdd52bf + websites: + https://borassisagemath.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://borassisagemath.blogspot.com/: true + https://www.blogger.com/profile/18314533837023556703: true + last_post_title: Conclusion of the Main Part of the Project + last_post_description: "" + last_post_date: "2015-08-16T06:59:35-07:00" + last_post_link: https://borassisagemath.blogspot.com/2015/08/conclusion-of-main-part-of-project.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 110fe32e77f26de8de02bb9d3b6d3051 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-73aeaa2251f6b94d75b59e726f20706d.md b/content/discover/feed-73aeaa2251f6b94d75b59e726f20706d.md new file mode 100644 index 000000000..ce33b6d11 --- /dev/null +++ b/content/discover/feed-73aeaa2251f6b94d75b59e726f20706d.md @@ -0,0 +1,299 @@ +--- +title: BASTIONLAND +date: "1970-01-01T00:00:00Z" +description: A BASTION OF ODDITY +params: + feedlink: https://www.bastionland.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 73aeaa2251f6b94d75b59e726f20706d + websites: + https://www.bastionland.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - "2400" + - 4e + - 5e + - AWR + - Adventure + - Agency + - Alignment + - Animals + - Apocalypse + - Arcana + - Arkbound + - Artifacts + - Ask the Stars + - Astral + - Auldskunterroy + - Automachines + - BASTIONLAND + - BSU + - Bastion + - Big Action Heroes + - Blighters + - Bonehead + - Bricks + - Bugs + - Bureaucracy + - Business + - Characters + - Choice + - Choose Your Own Oddventure + - Classes + - Clerics + - Collaboration + - Community + - Cores + - Crab + - Crusaders + - D&D + - Damage + - Deep Country + - Design + - Dice + - DieBoneheadDie! + - Difficulty + - Dinosaur Cleric + - Discord + - DnD + - EPC + - Editorial + - Electric Bastionland + - Encounters + - FKR + - Facebook + - Failed Cities + - Fallacies + - Far Lands + - Far Theories + - Fear + - Fighter + - Fighters + - Fighting Fantasy + - Five Star Chef + - Foreigners + - Free Game + - GMing + - GRIMLITE + - Game Idea + - Game Release + - Goblinpunch + - Goblins + - Golden Lands + - Google+ + - Hell-Hole + - Hellspace + - Hirelings + - Horror + - Horses + - Hotel + - Human + - ITOR + - Inheritance + - Instant + - Intergalactic Bastionland + - Interview + - Into the Dungeon + - Into the ODnD + - Invisible Eyes + - Islands + - Living Stars + - MOTO + - Mad Max + - Made Up Places + - Mapping + - Mass Appeal + - Mech + - Miniatures + - Mockeries + - Monster + - Mythic Bastionland + - NPC + - OSR + - Odd World + - OddMod + - Oddities + - Oddpendium + - Patreon + - Patrons + - PbP + - Philosophy + - Pigs + - Planes + - Player Advice + - Playtest + - Primordial + - Print & Play + - Random Table + - Rant + - Relic Walkers + - Religion + - Risus + - Rituals + - Robot World + - Rogue + - Rules + - Saves + - Saving throws + - Scarytown + - Sci Fi + - SciFi + - Searchers of the Unknown + - Servers + - Ships + - Skull + - Skullados + - Space + - Spellbook + - Spirits + - Stone Lake + - Street Fighter + - Table + - Teen Island + - The Adventurer's Tale + - The Doomed + - Thief + - Thousand Spears + - Treasure + - Twitter + - Underworld and Overworld + - Unknown! + - Use This + - VOIDHEIST + - WIL + - Wanderhome + - Warfare + - Wizard + - Wuxia + - Xenofringe + - Zombies + - advancement + - aliens + - armour + - art + - birds + - boardgames + - books + - carnival + - chainsaws + - character advancement + - city + - class + - combat + - coop + - cults + - death + - dinosaurs + - dungeon + - dungeon design + - dwarfs + - elves + - enterprise + - equipment + - example of play + - exp + - factory + - failed careers + - fantasy + - feedback + - fighting machines + - flailsnails + - fluff + - foreground growth + - game design + - goals + - gods + - greed + - guns + - hangout + - heroquest + - into the odd + - investigation + - kickstarter + - lessons learned + - lookouts + - magic + - magic items + - mass combat + - matrix game + - mechanics + - media + - module + - monsters + - muppets + - news + - npcs + - one-shot + - orcs + - playtesting + - podcast + - prep + - primeval + - project 10 + - project odd + - psionics + - race + - ramble + - retroclone + - rpg revolution + - sandbox + - setting + - setting design + - spark table + - spells + - sport + - star lands + - starter packs + - suburbia + - sunrise expansion + - swordmountain + - system + - targets + - teaching + - toolkit + - traps + - traveller + - trolls + - undead + - underground + - war + - wargames + - weapons + - weird + - witches + - x-files + relme: + https://www.bastionland.com/: true + last_post_title: Pilots & Commanders + last_post_description: |- + With the core rules alone, MAC Attack focused entirely on the + MAC, not the pilot. + + Now I'm testing out a few options to make the pilot feel + like more of a presence on the field. + + Compared to Perks + last_post_date: "2024-07-03T07:47:00Z" + last_post_link: https://www.bastionland.com/2024/07/pilots-commanders.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 7644d249322c3c5ef4f46eda3b59beb6 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-73be2caec87b8742b2fbb9fc643ef97a.md b/content/discover/feed-73be2caec87b8742b2fbb9fc643ef97a.md new file mode 100644 index 000000000..ce7d8f59e --- /dev/null +++ b/content/discover/feed-73be2caec87b8742b2fbb9fc643ef97a.md @@ -0,0 +1,57 @@ +--- +title: The Eclipse Study +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://the-eclipse-study.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 73be2caec87b8742b2fbb9fc643ef97a + websites: + https://the-eclipse-study.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Eclipse; grounded theory; plug-in architectures; open source software development; + software testing; + - GUI Testing; eclipse; testing; study; plug-in systems; best practices; + - eclipse; eclipse day; eclipse day delft; software development; event; + - eclipse; testing; plug-in systems; event; call for papers + - eclipse; testing; study; plug-in systems; best practices; reading + - eclipse; testing; study; plug-in systems; best practices; survey + - eclipse; testing; study; plug-in systems; best practices; test suite understanding + - eclipse; testing; study; plug-in systems; participation + - software engineering + relme: + https://blottingpad.blogspot.com/: true + https://the-eclipse-study.blogspot.com/: true + https://www.blogger.com/profile/08831566630451286674: true + last_post_title: This was the first Eclipse Day Delft - A Summary + last_post_description: "Last week, the first Eclipse Day Delft has taken place. + With eleven fabulous speakers and more than 60 participants this day was a great + success. \n\n\nErik Meijer opened the day by showing the" + last_post_date: "2012-10-05T14:17:00Z" + last_post_link: https://the-eclipse-study.blogspot.com/2012/10/this-was-first-eclipse-day-delft.html + last_post_categories: + - Eclipse; grounded theory; plug-in architectures; open source software development; + software testing; + - eclipse; eclipse day; eclipse day delft; software development; event; + last_post_language: "" + last_post_guid: 2f760c96053b6302eaf9f321cdf49ff7 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-73cf4d830fdfdf37b182b4387e42d325.md b/content/discover/feed-73cf4d830fdfdf37b182b4387e42d325.md new file mode 100644 index 000000000..d3a5ea99e --- /dev/null +++ b/content/discover/feed-73cf4d830fdfdf37b182b4387e42d325.md @@ -0,0 +1,42 @@ +--- +title: Henrich plays with Debian +date: "2024-07-04T15:18:13+09:00" +description: something around Debian, written in funny Eng"r"ish ;) +params: + feedlink: https://henrich-on-debian.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 73cf4d830fdfdf37b182b4387e42d325 + websites: + https://henrich-on-debian.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://henrich-on-debian.blogspot.com/: true + https://www.blogger.com/profile/13370246952921493608: true + last_post_title: '2020/12/20 Tokyo Debian Meeting online: Make legacy .deb package + modern (live demo)' + last_post_description: "" + last_post_date: "2020-12-15T23:41:28+09:00" + last_post_link: https://henrich-on-debian.blogspot.com/2020/12/20201220-tokyo-debian-meeting-online.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 0e1fc9132be94a8633ff20249de29248 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-73d8beece4917c080f61e215bdc2c011.md b/content/discover/feed-73d8beece4917c080f61e215bdc2c011.md new file mode 100644 index 000000000..41d071ac1 --- /dev/null +++ b/content/discover/feed-73d8beece4917c080f61e215bdc2c011.md @@ -0,0 +1,47 @@ +--- +title: Stories by Rui Carmo on Medium +date: "1970-01-01T00:00:00Z" +description: Stories by Rui Carmo on Medium +params: + feedlink: https://medium.com/feed/@rcarmo + feedtype: rss + feedid: 73d8beece4917c080f61e215bdc2c011 + websites: + https://medium.com/@rcarmo: false + https://medium.com/@rcarmo?source=rss-1100c0c660f3------2: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - events + - presentation-karaoke + - public-speaking + relme: + https://medium.com/@rcarmo?source=rss-1100c0c660f3------2: true + last_post_title: Presentation Karaoke is… INCOMING! + last_post_description: "" + last_post_date: "2019-03-20T18:16:02Z" + last_post_link: https://blog.pixels.camp/presentation-karaoke-is-incoming-6ad99abc6c6e?source=rss-1100c0c660f3------2 + last_post_categories: + - events + - presentation-karaoke + - public-speaking + last_post_language: "" + last_post_guid: 7f29359fe07c70f51b5a9cecbee2c405 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-73e1ffbbb6809e475c95dac3a71ad257.md b/content/discover/feed-73e1ffbbb6809e475c95dac3a71ad257.md deleted file mode 100644 index 01e1a9e64..000000000 --- a/content/discover/feed-73e1ffbbb6809e475c95dac3a71ad257.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Marius Schulz -date: "1970-01-01T00:00:00Z" -description: Public posts from @mariusschulz@mastodon.social -params: - feedlink: https://mastodon.social/@mariusschulz.rss - feedtype: rss - feedid: 73e1ffbbb6809e475c95dac3a71ad257 - websites: - https://mastodon.social/@mariusschulz: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://mariusschulz.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-73e3e7bfcb33ace6a5332b8558899e35.md b/content/discover/feed-73e3e7bfcb33ace6a5332b8558899e35.md index 01c63afdb..5cb63e4f7 100644 --- a/content/discover/feed-73e3e7bfcb33ace6a5332b8558899e35.md +++ b/content/discover/feed-73e3e7bfcb33ace6a5332b8558899e35.md @@ -14,45 +14,50 @@ params: - https://colinwalker.blog/dailyfeed.xml - https://colinwalker.blog/livefeed.xml categories: + - Alexandra Fuller + - Books + - 'Fi: A memoir' + - Inspirational - Inspire - Life - - Photography - Quotes - - climate - - climate change - - clouds - - Da Yang - - global warming - - Zoë Schlanger + - acceptance + - control + - let go relme: {} - last_post_title: It’s a cloudy day… - last_post_description: …clouds remain one of the least understood—or least reliably - predictable—factors in our climate models… “They are among the biggest uncertainties - in predicting future climate change,” Da - last_post_date: "2024-06-04T07:14:00Z" - last_post_link: https://davidkanigan.com/2024/06/04/its-a-cloudy-day/ + last_post_title: Monday Morning Wake-Up Call + last_post_description: It’s all so sickeningly, dizzyingly, tightly circular, at + the very edges of existence, I mean. And those universal edges—birth, death—they’re + hard to take in completely, when they’re + last_post_date: "2024-07-08T07:00:00Z" + last_post_link: https://davidkanigan.com/2024/07/08/monday-morning-wake-up-call-372/ last_post_categories: + - Alexandra Fuller + - Books + - 'Fi: A memoir' + - Inspirational - Inspire - Life - - Photography - Quotes - - climate - - climate change - - clouds - - Da Yang - - global warming - - Zoë Schlanger - last_post_guid: 7fcec23866777548adc9c9c5b82cf35b + - acceptance + - control + - let go + last_post_language: "" + last_post_guid: 0330e862f3dd151b08cd5bcd73847c66 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 16 + score: 20 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-73fa7827726ed06eb87634a3caf218f2.md b/content/discover/feed-73fa7827726ed06eb87634a3caf218f2.md deleted file mode 100644 index b0cf06fc1..000000000 --- a/content/discover/feed-73fa7827726ed06eb87634a3caf218f2.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Comments for Charm &c. -date: "1970-01-01T00:00:00Z" -description: Or, fun from building 54 -params: - feedlink: https://superweak.wordpress.com/comments/feed/ - feedtype: rss - feedid: 73fa7827726ed06eb87634a3caf218f2 - websites: - https://superweak.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: 'Comment on The Y(4260): Fun with Onia by Y(4260) - Wikipedia - - SAPERELIBERO' - last_post_description: '[…] “The Y(4260): Divertiti con Onia”. Recuperato 24 settembre - 2012. […]' - last_post_date: "2022-04-21T07:22:45Z" - last_post_link: https://superweak.wordpress.com/2006/05/06/the-y4260-fun-with-onia/#comment-9021 - last_post_categories: [] - last_post_guid: 6bf5ab8c6945b302b93998d327ff74df - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-741b5f7a28b6f91e8932ce799115a43d.md b/content/discover/feed-741b5f7a28b6f91e8932ce799115a43d.md new file mode 100644 index 000000000..2433f6b5d --- /dev/null +++ b/content/discover/feed-741b5f7a28b6f91e8932ce799115a43d.md @@ -0,0 +1,42 @@ +--- +title: Improving Darcs' network performance +date: "2024-02-20T14:58:09-08:00" +description: "" +params: + feedlink: https://darcs-gsoc2010.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 741b5f7a28b6f91e8932ce799115a43d + websites: + https://darcs-gsoc2010.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://darcs-gsoc2010.blogspot.com/: true + https://exlevan.blogspot.com/: true + https://www.blogger.com/profile/15653410551704557324: true + last_post_title: 'GSoC 2010 Progress Report #3' + last_post_description: "" + last_post_date: "2010-08-08T20:30:00-07:00" + last_post_link: https://darcs-gsoc2010.blogspot.com/2010/08/gsoc-2010-progress-report-3.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 0c04a187717caa6c2e4811ff080b31b9 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-742405b045ef91bc1f1f8fb6cb9a165e.md b/content/discover/feed-742405b045ef91bc1f1f8fb6cb9a165e.md new file mode 100644 index 000000000..3f32d7758 --- /dev/null +++ b/content/discover/feed-742405b045ef91bc1f1f8fb6cb9a165e.md @@ -0,0 +1,53 @@ +--- +title: Jeff Bradberry +date: "2023-08-26T19:44:00-04:00" +description: Definitely a madman with a box +params: + feedlink: https://jeffbradberry.com/feeds/all.atom.xml + feedtype: atom + feedid: 742405b045ef91bc1f1f8fb6cb9a165e + websites: + https://jeffbradberry.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - everything + - gtd + - orgmode + - time-management + relme: + https://jeffbradberry.com/: true + last_post_title: 'Building an Org-mode Workflow: Epic Organization' + last_post_description: |- + The New Structure + This process added a couple of layers of complexity, so I started with + deeper nested headlines. + Roughly speaking, level-1 headlines now each correspond to a + high-level epic, which + last_post_date: "2023-08-26T19:44:00-04:00" + last_post_link: https://jeffbradberry.com/posts/2023/08/orgmode-epic-organization/ + last_post_categories: + - everything + - gtd + - orgmode + - time-management + last_post_language: "" + last_post_guid: 219d872d8c3e32847f9aa81f239890c5 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-74396b691cce751070bc9c5bb196229c.md b/content/discover/feed-74396b691cce751070bc9c5bb196229c.md new file mode 100644 index 000000000..481809e2d --- /dev/null +++ b/content/discover/feed-74396b691cce751070bc9c5bb196229c.md @@ -0,0 +1,140 @@ +--- +title: Yummy Cheese +date: "1970-01-01T00:00:00Z" +description: We have infomation about cheez.Please keep visiting to our page. +params: + feedlink: https://pusatbisnisproduk-starla.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 74396b691cce751070bc9c5bb196229c + websites: + https://pusatbisnisproduk-starla.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Chees lover in the world + last_post_description: |- + Cheddar curds are most certainly uncommon. what kind of cheese does chipotle use There are only a + modest bunch of created and delighted in as a reference. Although cheddar curds + are not accessible + last_post_date: "2022-01-11T07:48:00Z" + last_post_link: https://pusatbisnisproduk-starla.blogspot.com/2022/01/chees-lover-in-world.html + last_post_categories: [] + last_post_language: "" + last_post_guid: f3f1206b3b15503e1d139a5fe2b94313 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-74518e8f1cb956987b2a11042b3a7a2c.md b/content/discover/feed-74518e8f1cb956987b2a11042b3a7a2c.md new file mode 100644 index 000000000..f3ec6fa3f --- /dev/null +++ b/content/discover/feed-74518e8f1cb956987b2a11042b3a7a2c.md @@ -0,0 +1,48 @@ +--- +title: 'Sage: Open Source Mathematics Software' +date: "2024-07-06T23:07:50-07:00" +description: This is my blog about things related to Sage. +params: + feedlink: https://sagemath.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 74518e8f1cb956987b2a11042b3a7a2c + websites: + https://sagemath.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - sage "math software" autobiographical magma maple matlab mathematica pari + - sage ipad iphone python + - sage python introduction open source mathematics software + - vmware virtualbox + relme: + https://389a.blogspot.com/: true + https://sagemath.blogspot.com/: true + https://salvusmath.blogspot.com/: true + https://skate389.blogspot.com/: true + https://www.blogger.com/profile/09206974122359022797: true + last_post_title: 'Major Price Cuts: Deepnote Versus Cocalc --- Compute Server Pricing' + last_post_description: "" + last_post_date: "2023-12-03T09:29:26-08:00" + last_post_link: https://sagemath.blogspot.com/2023/12/major-price-cuts-deepnote-versus-cocalc.html + last_post_categories: [] + last_post_language: "" + last_post_guid: b07f899cba9866ea0654865656da35a1 + score_criteria: + cats: 4 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-745f2ec8932108bdd452174a6a285f36.md b/content/discover/feed-745f2ec8932108bdd452174a6a285f36.md new file mode 100644 index 000000000..c9930b070 --- /dev/null +++ b/content/discover/feed-745f2ec8932108bdd452174a6a285f36.md @@ -0,0 +1,49 @@ +--- +title: Italian Linux Society activity +date: "2024-07-09T00:01:05Z" +description: "" +params: + feedlink: https://gitlab.com/ItalianLinuxSociety.atom + feedtype: atom + feedid: 745f2ec8932108bdd452174a6a285f36 + websites: + https://gitlab.com/ItalianLinuxSociety: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://gitlab.com/ItalianLinuxSociety: true + last_post_title: Valerio Bozzolan pushed to project branch bug_90_account_rows_fix_missing_foreign_keys + at Italian Linux Society / ILSManager + last_post_description: |- + Valerio Bozzolan + (2a4aecce) + + at + 09 Jul 00:01 + + + Table account_rows: add missing foreign keys (and avoid DEFAULT 0) + last_post_date: "2024-07-09T00:01:05Z" + last_post_link: https://gitlab.com/ItalianLinuxSociety/ilsmanager/-/commit/2a4aecce415515be5318405e080820cc9d1bad1e + last_post_categories: [] + last_post_language: "" + last_post_guid: 1de76cb652bb70cae803067d9abaa860 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-748f174d6942fb93c3b0291935cd5956.md b/content/discover/feed-748f174d6942fb93c3b0291935cd5956.md index f1bad85a0..def10d1eb 100644 --- a/content/discover/feed-748f174d6942fb93c3b0291935cd5956.md +++ b/content/discover/feed-748f174d6942fb93c3b0291935cd5956.md @@ -13,23 +13,31 @@ params: recommender: [] categories: [] relme: + https://dotsony.blogspot.com/: true + https://dotsonyraceblog.blogspot.com/: true + https://dotsonytinkerblog.blogspot.com/: true https://www.blogger.com/profile/17046865031973847470: true - last_post_title: The Devil is in the Details + last_post_title: Bicycle Storage Box last_post_description: "" - last_post_date: "2015-10-22T13:14:37-07:00" - last_post_link: https://dotsonytinkerblog.blogspot.com/2015/06/the-devil-is-in-details.html + last_post_date: "2015-10-20T22:25:48-07:00" + last_post_link: https://dotsonytinkerblog.blogspot.com/2015/10/bicycle-storage-box.html last_post_categories: [] - last_post_guid: 0d484e4d6001a16634279e4074663a88 + last_post_language: "" + last_post_guid: 7df9516a82888db21fe1f5b319c558fe score_criteria: cats: 0 description: 0 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 7 + score: 10 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-74aa0d5a1d4b754ecb51f5cb3eb54c66.md b/content/discover/feed-74aa0d5a1d4b754ecb51f5cb3eb54c66.md deleted file mode 100644 index 82e49ae62..000000000 --- a/content/discover/feed-74aa0d5a1d4b754ecb51f5cb3eb54c66.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Sam’s Webzone -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://samdavies.me/feed.xml - feedtype: rss - feedid: 74aa0d5a1d4b754ecb51f5cb3eb54c66 - websites: - https://samdavies.me/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://micro.blog/mrbeefy: false - https://twitter.com/mrbeefy: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-74b02a4e9ff8caaf46ecc663611983aa.md b/content/discover/feed-74b02a4e9ff8caaf46ecc663611983aa.md index 6f866e7b2..8804b152a 100644 --- a/content/discover/feed-74b02a4e9ff8caaf46ecc663611983aa.md +++ b/content/discover/feed-74b02a4e9ff8caaf46ecc663611983aa.md @@ -14,26 +14,31 @@ params: - http://scripting.com/rss.xml - http://scripting.com/rssNightly.xml categories: - - Alpha + - New relme: {} - last_post_title: Joining the ActivityPub network - last_post_description: Ghost is federating over ActivityPub to become part of the - world’s largest publishing network. - last_post_date: "2024-04-22T21:04:14Z" - last_post_link: https://ghost.org/changelog/activitypub-alpha/ + last_post_title: Internal linking + last_post_description: Search and link to your own content directly inside the editor + — so that your workflow is never interrupted. + last_post_date: "2024-06-25T13:42:34Z" + last_post_link: https://ghost.org/changelog/internal-linking/ last_post_categories: - - Alpha - last_post_guid: 4f859d1f2a4d72fb44aef7f543d1d658 + - New + last_post_language: "" + last_post_guid: 6dc6d2fdf670d5fb87541c59a3d2291b score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 14 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-74b7a5e4ad44435c8a822d9fe985f805.md b/content/discover/feed-74b7a5e4ad44435c8a822d9fe985f805.md index feff5256a..d1cb70a37 100644 --- a/content/discover/feed-74b7a5e4ad44435c8a822d9fe985f805.md +++ b/content/discover/feed-74b7a5e4ad44435c8a822d9fe985f805.md @@ -1,6 +1,6 @@ --- title: Robert Birming -date: "2024-06-04T13:41:01Z" +date: "2024-07-09T03:20:34Z" description: |- This tiny corner of the internet is a place where I share my everyday thoughts. It also serves as a way for me to practice writing in English. @@ -14,26 +14,35 @@ params: blogrolls: [] recommended: [] recommender: - - https://chrisburnell.com/feed.xml + - https://amerpie.lol/feed.xml + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php categories: [] relme: + https://birming.com/: true https://mastodon.world/@birming: true - last_post_title: Give to live - last_post_description: "" - last_post_date: "2024-06-03T10:49:54Z" - last_post_link: https://birming.com/give-to-live/ + last_post_title: Is your blog printer-friendly? + last_post_description: Learn the importance of print-specific styles for your blog + to save paper and ink, and how to easily add them to your site. + last_post_date: "2024-07-08T16:58:04Z" + last_post_link: https://birming.com/blog-printer-friendly/ last_post_categories: [] - last_post_guid: ce3cbd8af2e3276a53141c5b9afb9b83 + last_post_language: "" + last_post_guid: 91935ae21d835c4538b44d31298f8a3e score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-74cbfd317b05422875d7ab5577bbf7dc.md b/content/discover/feed-74cbfd317b05422875d7ab5577bbf7dc.md new file mode 100644 index 000000000..70a3d759c --- /dev/null +++ b/content/discover/feed-74cbfd317b05422875d7ab5577bbf7dc.md @@ -0,0 +1,44 @@ +--- +title: Fiction & Miscellany - Errant Adventures +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://www.errantadventurespod.com/blog?format=rss + feedtype: rss + feedid: 74cbfd317b05422875d7ab5577bbf7dc + websites: + https://www.errantadventurespod.com/blog/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: [] + relme: {} + last_post_title: Year in Review - 2023 + last_post_description: Welcome to the end of 2023, the third year of the podcast + and a markedly different year than the first two. First, I want to say thank you + to everyone who has listened, shared, and engaged with + last_post_date: "2024-01-01T16:43:13Z" + last_post_link: https://www.errantadventurespod.com/blog/year-in-review-2023 + last_post_categories: [] + last_post_language: "" + last_post_guid: 733ddc799ca67f491dfb9dc4ac67f539 + score_criteria: + cats: 0 + description: 0 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-74ceb8627423bfbe52330a0032febabd.md b/content/discover/feed-74ceb8627423bfbe52330a0032febabd.md new file mode 100644 index 000000000..0e6f7e5cc --- /dev/null +++ b/content/discover/feed-74ceb8627423bfbe52330a0032febabd.md @@ -0,0 +1,79 @@ +--- +title: Tonny Madsen +date: "2024-03-06T09:39:29+01:00" +description: Plugging in made easy +params: + feedlink: https://tonnymadsen.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 74ceb8627423bfbe52330a0032febabd + websites: + https://tonnymadsen.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - BIRT + - DemoCamp + - EMF + - ESE + - ESE 08 + - ESE 09 + - ESE 10 + - EclipseCon 08 + - EclipseCon 09 + - EclipseCon 10 + - EclipseCon 11 + - GEF + - ITU + - JFace + - NLS + - PDE + - RCP + - Testing a Plug-in + - Tycho + - UI Bindings + - bugs + - building + - conferences + - dependency injection + - documentation + - e4 + - eclipse.dk + - extension points + - fun + - javagruppen + - menus + - p2 + - releases + - resources + - technologies + - training + relme: + https://tonnymadsen.blogspot.com/: true + https://www.blogger.com/profile/16918201005715446635: true + last_post_title: Tycho and pre-p2 update sites + last_post_description: "" + last_post_date: "2013-05-30T08:41:03+02:00" + last_post_link: https://tonnymadsen.blogspot.com/2013/05/tycho-and-pre-p2-update-sites.html + last_post_categories: + - Tycho + - p2 + last_post_language: "" + last_post_guid: 1c4aadaedfa61001ad70d1058dc48c85 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-74e88124810f6eba4b39b6fa388833f2.md b/content/discover/feed-74e88124810f6eba4b39b6fa388833f2.md new file mode 100644 index 000000000..ccd3d8bfa --- /dev/null +++ b/content/discover/feed-74e88124810f6eba4b39b6fa388833f2.md @@ -0,0 +1,41 @@ +--- +title: Eclipse mde +date: "2024-05-03T19:05:49-07:00" +description: "" +params: + feedlink: https://eclipsemde.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 74e88124810f6eba4b39b6fa388833f2 + websites: + https://eclipsemde.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://eclipsemde.blogspot.com/: true + https://www.blogger.com/profile/05605492202750997843: true + last_post_title: EMF Compare - GMF strikes back + last_post_description: "" + last_post_date: "2013-06-03T02:30:30-07:00" + last_post_link: https://eclipsemde.blogspot.com/2013/06/here-we-are-emf-compare-2.html + last_post_categories: [] + last_post_language: "" + last_post_guid: f9c14acda1584a7c1cc308c48fe15b96 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-750c3ef013b5f57fb30aab48d291d582.md b/content/discover/feed-750c3ef013b5f57fb30aab48d291d582.md new file mode 100644 index 000000000..53aa3fb85 --- /dev/null +++ b/content/discover/feed-750c3ef013b5f57fb30aab48d291d582.md @@ -0,0 +1,80 @@ +--- +title: Frank Wierzbicki's Weblog +date: "2024-03-07T18:26:05-05:00" +description: Jython, Python, other stuff. +params: + feedlink: https://fwierzbicki.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 750c3ef013b5f57fb30aab48d291d582 + websites: + https://fwierzbicki.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - _ast + - adconion + - antlr + - asdl + - asm + - compiler + - django + - djangocon + - europython + - europython2008 + - gae + - glassfish + - gsoc + - hg + - invokedynamic + - jruby + - jython + - mako + - mercurial + - modjy + - mysql + - nbpython + - netbeans + - olpc + - parser + - pycon + - pylons + - python + - release + - rietveld + - saucelabs + - science + - selenium + - setuptools + - sqlalchemy + - sun + - turbogears + - twisted + - vim + - wsgi + relme: + https://fwierzbicki.blogspot.com/: true + last_post_title: Jython 2.7.2 final released! + last_post_description: "" + last_post_date: "2020-03-26T00:39:20-04:00" + last_post_link: https://fwierzbicki.blogspot.com/2020/03/jython-272-final-released.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 0057260ced10d7de2868e67af038b34d + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-751c4bc719b113f1abc9ad0a12e27eeb.md b/content/discover/feed-751c4bc719b113f1abc9ad0a12e27eeb.md deleted file mode 100644 index 4e5928f8d..000000000 --- a/content/discover/feed-751c4bc719b113f1abc9ad0a12e27eeb.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Philipp Waldhauer -date: "1970-01-01T00:00:00Z" -description: Public posts from @pwa@norden.social -params: - feedlink: https://norden.social/@pwa.rss - feedtype: rss - feedid: 751c4bc719b113f1abc9ad0a12e27eeb - websites: - https://norden.social/@pwa: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://knuspermagier.de/: true - https://philipps.photos/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7535685848bb51f42d193ecb454e0a7a.md b/content/discover/feed-7535685848bb51f42d193ecb454e0a7a.md deleted file mode 100644 index c85385f86..000000000 --- a/content/discover/feed-7535685848bb51f42d193ecb454e0a7a.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Lou Plummer  -date: "1970-01-01T00:00:00Z" -description: Public posts from @amerpie@social.lol -params: - feedlink: https://social.lol/@amerpie.rss - feedtype: rss - feedid: 7535685848bb51f42d193ecb454e0a7a - websites: - https://social.lol/@amerpie: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://amerpie.lol/: true - https://amerpie.omg.lol/: true - https://louplummer.lol/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-753ab570bd87ed11465e1c992bea7e1d.md b/content/discover/feed-753ab570bd87ed11465e1c992bea7e1d.md deleted file mode 100644 index 700be3695..000000000 --- a/content/discover/feed-753ab570bd87ed11465e1c992bea7e1d.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: '@ohhelloana.blog - Ana Rodrigues' -date: "1970-01-01T00:00:00Z" -description: |- - 8 hours of sleep, 8 hours being an unprofessional front-end developer, then on my other 8 hours I poke my blog, take photos of my cat & try my best. - - Keen on IndieWeb, CSS, sustainability, plants, -params: - feedlink: https://bsky.app/profile/did:plc:ywso5zb7zpnxtyk5hpqetiwh/rss - feedtype: rss - feedid: 753ab570bd87ed11465e1c992bea7e1d - websites: - https://bsky.app/profile/ohhelloana.blog: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-753b38ffd9918155f4c8518eb412cd38.md b/content/discover/feed-753b38ffd9918155f4c8518eb412cd38.md new file mode 100644 index 000000000..30c3b0c36 --- /dev/null +++ b/content/discover/feed-753b38ffd9918155f4c8518eb412cd38.md @@ -0,0 +1,42 @@ +--- +title: Martin's Notebook +date: "2024-07-09T03:20:36Z" +description: "\U0001F44B Hello, I'm Martin. Coffee, music and web enthusiast.\n\nWelcome + to my tiny digital home.\n\n{{ posts|limit:15 }}\n..." +params: + feedlink: https://martinschuhmann.com/feed/ + feedtype: atom + feedid: 753b38ffd9918155f4c8518eb412cd38 + websites: + https://martinschuhmann.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php + categories: [] + relme: {} + last_post_title: BIG Things That I Like + last_post_description: "" + last_post_date: "2024-07-02T17:53:05Z" + last_post_link: https://martinschuhmann.com/big-things-that-i-like/ + last_post_categories: [] + last_post_language: "" + last_post_guid: ef981f86418ecc5e6dac95058f5e97f0 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7569154e39f49c8f54a9908ee3ca9cec.md b/content/discover/feed-7569154e39f49c8f54a9908ee3ca9cec.md deleted file mode 100644 index b9d1eeef3..000000000 --- a/content/discover/feed-7569154e39f49c8f54a9908ee3ca9cec.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Sarah Jamie Lewis -date: "1970-01-01T00:00:00Z" -description: Public posts from @sarahjamielewis@mastodon.social -params: - feedlink: https://mastodon.social/@sarahjamielewis.rss - feedtype: rss - feedid: 7569154e39f49c8f54a9908ee3ca9cec - websites: - https://mastodon.social/@sarahjamielewis: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://cwtch.im/download: false - https://openprivacy.ca/donate/: true - https://sarahjamielewis.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-757ba7ad48d831daa05af2ac744cc8ca.md b/content/discover/feed-757ba7ad48d831daa05af2ac744cc8ca.md new file mode 100644 index 000000000..1f02d6cac --- /dev/null +++ b/content/discover/feed-757ba7ad48d831daa05af2ac744cc8ca.md @@ -0,0 +1,41 @@ +--- +title: ArcLib Development Blog +date: "2024-03-12T17:14:15-07:00" +description: "" +params: + feedlink: https://arclib.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 757ba7ad48d831daa05af2ac744cc8ca + websites: + https://arclib.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://arclib.blogspot.com/: true + https://www.blogger.com/profile/09392619674246400530: true + last_post_title: 2nd to Last Status Update... + last_post_description: "" + last_post_date: "2010-05-21T16:43:56-07:00" + last_post_link: https://arclib.blogspot.com/2010/05/2nd-to-last-status-update.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 19237202b9cd5b64e9c2f397a37fc86d + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-75878b2c032c8ea43df4e2cd0a90bdf8.md b/content/discover/feed-75878b2c032c8ea43df4e2cd0a90bdf8.md deleted file mode 100644 index e6690c2df..000000000 --- a/content/discover/feed-75878b2c032c8ea43df4e2cd0a90bdf8.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Shtetl-Optimized -date: "2024-06-28T10:30:05Z" -description: The Blog of Scott Aaronson -params: - feedlink: https://scottaaronson.blog/?feed=atom - feedtype: atom - feedid: 75878b2c032c8ea43df4e2cd0a90bdf8 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Adventures in Meatspace - - The Fate of Humanity - relme: {} - last_post_title: '“Never A Better Time to Visit”: Our Post-October-7 - Trip to Israel' - last_post_description: Dana, the kids, and I got back to the US last week after - a month spent in England and then Israel. We decided to visit Israel because … - uhh, we heard there’s never been a better time. We normally - last_post_date: "2024-06-28T10:30:05Z" - last_post_link: https://scottaaronson.blog/?p=8074 - last_post_categories: - - Adventures in Meatspace - - The Fate of Humanity - last_post_guid: 987d8c3bb1c8104f48f821636b8c2247 - score_criteria: - cats: 0 - description: 3 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-758fe9279a69a26453284fb73f419cf5.md b/content/discover/feed-758fe9279a69a26453284fb73f419cf5.md deleted file mode 100644 index c01ad3737..000000000 --- a/content/discover/feed-758fe9279a69a26453284fb73f419cf5.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Thomas Gigold -date: "2024-06-02T13:47:01Z" -description: Ãœber das Netz, das Leben und den ganzen Rest -params: - feedlink: https://gigold.me/rss/ - feedtype: rss - feedid: 758fe9279a69a26453284fb73f419cf5 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://jlelse.blog/.min.rss - - https://jlelse.blog/.rss - - https://jlelse.blog/index.xml - categories: [] - relme: {} - last_post_title: Wochenendliste 22/24 - last_post_description: "" - last_post_date: "2024-06-02T13:47:01Z" - last_post_link: https://gigold.me/blog/wochenendliste-22-24 - last_post_categories: [] - last_post_guid: 76a9914e2f600bf73f6fb0d5f2a1caf3 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-75a3a335be83a9eae9a55fb9a0a61c43.md b/content/discover/feed-75a3a335be83a9eae9a55fb9a0a61c43.md new file mode 100644 index 000000000..914be5999 --- /dev/null +++ b/content/discover/feed-75a3a335be83a9eae9a55fb9a0a61c43.md @@ -0,0 +1,140 @@ +--- +title: SnapChats Setting +date: "2024-02-01T19:40:43-08:00" +description: SnapChat and its setting both are difficult to know +params: + feedlink: https://miawb.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 75a3a335be83a9eae9a55fb9a0a61c43 + websites: + https://miawb.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Change the Setting of snap chat + - pools of Angels + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Angel on Pool + last_post_description: "" + last_post_date: "2021-11-13T05:52:57-08:00" + last_post_link: https://miawb.blogspot.com/2021/11/angel-on-pool.html + last_post_categories: + - pools of Angels + last_post_language: "" + last_post_guid: 37b530ae5155987dddcff6c16e07d6bc + score_criteria: + cats: 2 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-75a8492a4e98678c3038d45a842e732b.md b/content/discover/feed-75a8492a4e98678c3038d45a842e732b.md index 476a6e0e8..47124770c 100644 --- a/content/discover/feed-75a8492a4e98678c3038d45a842e732b.md +++ b/content/discover/feed-75a8492a4e98678c3038d45a842e732b.md @@ -13,7 +13,8 @@ params: recommender: [] categories: - NoScript - relme: {} + relme: + https://hackademix.net/: true last_post_title: 2 Months of TabGuard last_post_description: NoScript’s Cross-tab Identity Leak Protection (or “TabGuard”) is an experimental countermeasure against the Targeted Deanonymization via the @@ -22,17 +23,22 @@ params: last_post_link: https://hackademix.net/2022/10/17/2-months-of-tabguard/ last_post_categories: - NoScript + last_post_language: "" last_post_guid: 95add14ecc394fe8fd0ebd3c76006fa4 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 9 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-75ab421ca7871746197f62ff198e59a5.md b/content/discover/feed-75ab421ca7871746197f62ff198e59a5.md index 968c14ece..f697d2afb 100644 --- a/content/discover/feed-75ab421ca7871746197f62ff198e59a5.md +++ b/content/discover/feed-75ab421ca7871746197f62ff198e59a5.md @@ -1,6 +1,6 @@ --- title: darekkay on Pixelfed -date: "2024-06-03T12:32:58Z" +date: "2024-07-05T06:49:53Z" description: Software developer and hobby photographer. Mostly interested in nature and people photography. params: @@ -12,29 +12,58 @@ params: blogrolls: [] recommended: [] recommender: [] - categories: [] + categories: + - '#patterns' + - '#blackandwhite' + - '#nice' + - '#france' + - '#street' + - '#streetphotography' + - '#fuji' + - '#fujifilm' + - '#photography' + - '#LensCultureDiscoveries' + - '#lensculturestreets' + - '#spicollective' relme: - https://photos.darekkay.com/: false - last_post_title: Pillars on sunny days is a photographic trigger I can rarely resist. - This was also the case on Guidecca, a less touristic Venice island. No one was - walking in this part of the city, but who needs - last_post_description: Pillars on sunny days is a photographic trigger I can rarely - resist. This was also the case on Guidecca, a less touristic Venice island. No - one was walking in this part of the city, but who needs - last_post_date: "2024-06-03T12:32:58Z" - last_post_link: https://pixelfed.social/p/darekkay/703221952456233580 - last_post_categories: [] - last_post_guid: df51a310476f02b3b297f7de9fb7209e + https://pixelfed.social/darekkay: true + last_post_title: "Patterns\n\n\U0001F4CD Place Masséna, Nice, France\n\n#patterns + #blackandwhite #nice #france #street #streetphotography #fuji #fujifilm #photography + #LensCultureDiscoveries #lensculturestreets #spicollective" + last_post_description: "Patterns\n\n\U0001F4CD Place Masséna, Nice, France\n\n#patterns + #blackandwhite #nice #france #street #streetphotography #fuji #fujifilm #photography + #LensCultureDiscoveries #lensculturestreets #spicollective" + last_post_date: "2024-07-05T06:49:53Z" + last_post_link: https://pixelfed.social/p/darekkay/714732025404507583 + last_post_categories: + - '#patterns' + - '#blackandwhite' + - '#nice' + - '#france' + - '#street' + - '#streetphotography' + - '#fuji' + - '#fujifilm' + - '#photography' + - '#LensCultureDiscoveries' + - '#lensculturestreets' + - '#spicollective' + last_post_language: "" + last_post_guid: 968ad76810371213bfc264644258e679 score_criteria: cats: 0 description: 3 - postcats: 0 + feedlangs: 0 + postcats: 3 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 9 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-75b3f0e4b011a8418766f41659b0d1e6.md b/content/discover/feed-75b3f0e4b011a8418766f41659b0d1e6.md new file mode 100644 index 000000000..01d7ab611 --- /dev/null +++ b/content/discover/feed-75b3f0e4b011a8418766f41659b0d1e6.md @@ -0,0 +1,41 @@ +--- +title: Victoria Drake's Blog +date: "1970-01-01T00:00:00Z" +description: Get the latest posts from Victoria Drake. +params: + feedlink: https://victoria.dev/index.xml + feedtype: rss + feedid: 75b3f0e4b011a8418766f41659b0d1e6 + websites: {} + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: [] + relme: {} + last_post_title: Post to your static website from your iPhone + last_post_description: Hugo + Collected Notes for a more modern static website solution. + last_post_date: "2024-05-05T00:00:00Z" + last_post_link: https://victoria.dev/blog/post-to-your-static-website-from-your-iphone/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 5aef973cb2ea92f9401996ca9c5a64fd + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 0 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-75b559868f8c773a90564df582433e09.md b/content/discover/feed-75b559868f8c773a90564df582433e09.md index d4143c939..21f908be6 100644 --- a/content/discover/feed-75b559868f8c773a90564df582433e09.md +++ b/content/discover/feed-75b559868f8c773a90564df582433e09.md @@ -16,27 +16,31 @@ params: https://github.com/simoncox: true https://mastodon.social/@simoncox: true https://seocommunity.social/@simoncox: true - https://uk.linkedin.com/in/simonmcox: false - https://www.simoncox.com/feed-modelling.xml: false - https://www.simoncox.com/feed.xml: false - last_post_title: Then I built a new bin store! - last_post_description: When I ordered the timber for the log store build I decided - to add a bit extra as it doesn't come pre cut to the lengths I need. The woodyard - sell by the total length ordered - which can lead to a - last_post_date: "2024-06-03T00:00:00Z" - last_post_link: https://www.simoncox.com/post/2024-06-03-bin-store-build/ + https://www.coxand.co.uk/: true + https://www.simoncox.com/: true + last_post_title: Resin printed figures for Whitesands Quay + last_post_description: I signed up for the Modelu Paetron plan last year and pay + a small amount each month and in return I receive a zip file of five or six figures + on a theme for the month. These files are the .stl files + last_post_date: "2024-07-08T08:36:12Z" + last_post_link: https://www.simoncox.com/post/2024-07-08-resin-printed-figures-for-whitesands-quay/ last_post_categories: [] - last_post_guid: 1ebd076d26b3c28a92075089dda7526b + last_post_language: "" + last_post_guid: 0a06ea97899d47cd9d8f29d76827c74f score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-75c5a9bdd822d05dcdfb197cddefd9c8.md b/content/discover/feed-75c5a9bdd822d05dcdfb197cddefd9c8.md index 565632fbd..9f818b3b8 100644 --- a/content/discover/feed-75c5a9bdd822d05dcdfb197cddefd9c8.md +++ b/content/discover/feed-75c5a9bdd822d05dcdfb197cddefd9c8.md @@ -14,25 +14,36 @@ params: recommended: [] recommender: [] categories: [] - relme: {} - last_post_title: This week's notable links - June 3, 2024 + relme: + https://about.werd.io/: true + https://github.com/benwerd: true + https://newsletter.werd.io/: true + https://werd.io/: true + https://werd.io/content/bookmarkedpages: true + https://werd.social/@ben: true + last_post_title: This week's notable links last_post_description: |- - This is my regular digest of links and media I found notable over the last week. Did I miss something? Let me know! - The 21 best science fiction books of all time – according to New Scientist - last_post_date: "2024-06-04T01:11:10Z" - last_post_link: https://newsletter.werd.io/archive/this-weeks-notable-links-june-3-2024-9835/ + This is my regular digest of links and media I found notable over the last week. (A lighter email than usual because I’ve been on holiday on the Oregon coast.) + Did I miss something? Let me know! + last_post_date: "2024-07-08T13:19:16Z" + last_post_link: https://newsletter.werd.io/archive/this-weeks-notable-links-7588/ last_post_categories: [] - last_post_guid: 12d1f62542e5f08bd9838354a0c3f428 + last_post_language: "" + last_post_guid: 43790faeae39bf2e040d84bc09880a0e score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 8 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-75c5b18fdd07e02840eb01776c1a1cc9.md b/content/discover/feed-75c5b18fdd07e02840eb01776c1a1cc9.md new file mode 100644 index 000000000..ed0e34ec4 --- /dev/null +++ b/content/discover/feed-75c5b18fdd07e02840eb01776c1a1cc9.md @@ -0,0 +1,44 @@ +--- +title: When I Visited a Baptist Church +date: "2024-03-12T17:53:00-07:00" +description: "" +params: + feedlink: https://whenivisitedabaptistchurch.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 75c5b18fdd07e02840eb01776c1a1cc9 + websites: + https://whenivisitedabaptistchurch.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://adventuresofamathphd.blogspot.com/: true + https://extendingmatroidfunctionality.blogspot.com/: true + https://taraadrift.blogspot.com/: true + https://whenivisitedabaptistchurch.blogspot.com/: true + https://www.blogger.com/profile/03187790486376807341: true + last_post_title: Day One + last_post_description: "" + last_post_date: "2013-10-27T21:18:03-07:00" + last_post_link: https://whenivisitedabaptistchurch.blogspot.com/2013/10/day-one.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 64ff8842b69a04f9f1a25d9d4f22d49d + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-75e01086f80eb96b520fc206f7b05c34.md b/content/discover/feed-75e01086f80eb96b520fc206f7b05c34.md deleted file mode 100644 index d4e131b0d..000000000 --- a/content/discover/feed-75e01086f80eb96b520fc206f7b05c34.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Comments for Michael Nielsen -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://michaelnielsen.org/blog/comments/feed/ - feedtype: rss - feedid: 75e01086f80eb96b520fc206f7b05c34 - websites: - https://michaelnielsen.org/blog/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Is there a tension between creativity and accuracy? - by Siva - last_post_description: |- - I like to phrase it a little more provocatively: it's about smelling the fragrance in one's own BS. - - Humans have probably evolved to not waste cognitive resources. The simplest way to maximize - last_post_date: "2017-06-01T11:04:10Z" - last_post_link: https://michaelnielsen.org/blog/is-there-a-tension-between-creativity-and-accuracy/comment-page-1/#comment-76394 - last_post_categories: [] - last_post_guid: 910849f73de1aa0eca48cd04d0058ccb - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 4 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-75e81126a162850ec5e8fbe96bd55f30.md b/content/discover/feed-75e81126a162850ec5e8fbe96bd55f30.md deleted file mode 100644 index 50692f7b2..000000000 --- a/content/discover/feed-75e81126a162850ec5e8fbe96bd55f30.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Phil Gyford -date: "1970-01-01T00:00:00Z" -description: Public posts from @philgyford@mastodon.social -params: - feedlink: https://mastodon.social/@philgyford.rss - feedtype: rss - feedid: 75e81126a162850ec5e8fbe96bd55f30 - websites: - https://mastodon.social/@philgyford: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://ooh.directory/: false - https://www.gyford.com/: true - https://www.pepysdiary.com/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-75ebcd73cbc7b70fce17d1592b180c03.md b/content/discover/feed-75ebcd73cbc7b70fce17d1592b180c03.md deleted file mode 100644 index 230fe2aa1..000000000 --- a/content/discover/feed-75ebcd73cbc7b70fce17d1592b180c03.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: OpenStack – Hugh's Homepage -date: "1970-01-01T00:00:00Z" -description: Digital odds and ends... -params: - feedlink: https://hugh.blemings.id.au/category/openstack/feed/ - feedtype: rss - feedid: 75ebcd73cbc7b70fce17d1592b180c03 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Lwood - - OpenStack - relme: {} - last_post_title: Lwood-20170312 - last_post_description: 'Introduction Welcome to Last week on OpenStack Dev (“Lwood”) - for the week just past. For more background on Lwood, please refer here. Basic - Stats for the week 6 to 12 March for openstack-dev:' - last_post_date: "2017-03-14T09:37:10Z" - last_post_link: https://hugh.blemings.id.au/2017/03/14/lwood-20170312/ - last_post_categories: - - Lwood - - OpenStack - last_post_guid: ea57b6347ba3f2c7a81f4ca900e40671 - score_criteria: - cats: 0 - description: 3 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-75eeec61d4802c073c89c36710de1671.md b/content/discover/feed-75eeec61d4802c073c89c36710de1671.md deleted file mode 100644 index 3a900c7ae..000000000 --- a/content/discover/feed-75eeec61d4802c073c89c36710de1671.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: "Velocipede Rider \U0001F996" -date: "1970-01-01T00:00:00Z" -description: Public posts from @ruari@velocipederider.com -params: - feedlink: https://velocipederider.com/@ruari.rss - feedtype: rss - feedid: 75eeec61d4802c073c89c36710de1671 - websites: - https://velocipederider.com/@ruari: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://social.vivaldi.net/@ruario: true - https://unicyclist.com/u/ruari/summary: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-76066290a94c7e678b8ebfcd76d4c24b.md b/content/discover/feed-76066290a94c7e678b8ebfcd76d4c24b.md new file mode 100644 index 000000000..ae965a2db --- /dev/null +++ b/content/discover/feed-76066290a94c7e678b8ebfcd76d4c24b.md @@ -0,0 +1,43 @@ +--- +title: בקש שלום +date: "1970-01-01T00:00:00Z" +description: לבלום את לשון הרע - Put the breaks on Loshon Hora +params: + feedlink: https://askforpeace.wordpress.com/feed/ + feedtype: rss + feedid: 76066290a94c7e678b8ebfcd76d4c24b + websites: + https://askforpeace.wordpress.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - בירור הלכה + relme: + https://askforpeace.wordpress.com/: true + last_post_title: הלכות איסורי לשון הרע, כלל ב', ג' באדר + last_post_description: כל הנ"ל, מדגיש המחבר דיבר על חזרה על סיפור שכבר סופר; והוספה + לסיפור דברי גנאי משלך, אפילו מרומזים בשביל הכיף, + last_post_date: "2009-03-25T21:35:31Z" + last_post_link: https://askforpeace.wordpress.com/2009/03/25/lashon-hara-02-5769-06-03/ + last_post_categories: + - בירור הלכה + last_post_language: "" + last_post_guid: 0bf4b9f52d3efdbb6f39d3436b109bf8 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: he +--- diff --git a/content/discover/feed-760dc0b4875fa38cd9074dc1565e12b8.md b/content/discover/feed-760dc0b4875fa38cd9074dc1565e12b8.md new file mode 100644 index 000000000..76a1799b4 --- /dev/null +++ b/content/discover/feed-760dc0b4875fa38cd9074dc1565e12b8.md @@ -0,0 +1,95 @@ +--- +title: Praise, Curse, and Recurse +date: "1970-01-01T00:00:00Z" +description: 'On programming and programming languages: because there has got to be + a better way.' +params: + feedlink: https://praisecurseandrecurse.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 760dc0b4875fa38cd9074dc1565e12b8 + websites: + https://praisecurseandrecurse.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Administrivia + - Arctic Slide + - Arduino + - Banking + - C + - C++ + - ClearCase + - Dylan + - Forth + - GHC + - GHCi + - GTK + - GUI + - Geek Food + - Haskell + - Holiday 2007 + - Io + - Joy + - Kernel + - Linux + - Lua + - MacPorts + - Math + - Monads + - Music Theory + - Newton + - Objective-C + - Programming + - Pthon + - Python + - Ruby + - Scala + - Scheme + - School of Expression + - Snow Leopard + - Sudoku + - Voodoo + - cvs + - rcs + - svn + - wxHaskell + relme: + https://armstrong-collection.blogspot.com/: true + https://geeklikemetoo.blogspot.com/: true + https://geekversusguitar.blogspot.com/: true + https://hodgecast.blogspot.com/: true + https://pottscast.blogspot.com/: true + https://praisecurseandrecurse.blogspot.com/: true + https://thebooksthatwroteme.blogspot.com/: true + https://www.blogger.com/profile/04401509483200614806: true + last_post_title: 'Arduino, Day 2: the Most Minimal Scripting Language, or, Reifying + Frozen Functions for Fun' + last_post_description: |- + Planet Haskell readers might want to skip this one. + + Recently I've been thinking about the possibilities offered by embedded interpreters. This is becoming a common design pattern in commercial + last_post_date: "2013-08-21T01:40:00Z" + last_post_link: https://praisecurseandrecurse.blogspot.com/2013/08/arduino-day-2-most-minimal-scripting.html + last_post_categories: + - Arduino + - Programming + last_post_language: "" + last_post_guid: 593dccd1316bd24e1b6d99fae45e9cb1 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7610aa00794aab34877cf3dc3dccc0f5.md b/content/discover/feed-7610aa00794aab34877cf3dc3dccc0f5.md new file mode 100644 index 000000000..a0c9c72a2 --- /dev/null +++ b/content/discover/feed-7610aa00794aab34877cf3dc3dccc0f5.md @@ -0,0 +1,74 @@ +--- +title: SPPRUL-CSQ +date: "2024-03-21T06:52:46-04:00" +description: Syndicat des professionnelles et professionnels de recherche de l'Université + Laval +params: + feedlink: https://spprul.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 7610aa00794aab34877cf3dc3dccc0f5 + websites: + https://spprul.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - A propos + - AAContenu + - AANouvelle + - Activité spéciale + - Assurance + - CRHDQ + - CRSFA + - Campus + - Capsules + - Colloque + - Contact + - Conventions collective + - Dossiers + - FAQ + - Historique + - InfoSPPRUL + - Information + - Liens utiles + - Manifestation + - Médias + - Nouvelles + - Négociation + - Perfectionnement + - Profil de membre + - Reconnaissance + - Retraite + - Services aux membres + - Site Web + - développement durable + - publicité + relme: + https://spprul.blogspot.com/: true + last_post_title: L’excellence des professionnelles et professionnels de recherche + récompensée + last_post_description: "" + last_post_date: "2016-04-25T09:59:53-04:00" + last_post_link: https://spprul.blogspot.com/2016/04/lexcellence-des-professionnelles-et.html + last_post_categories: + - AANouvelle + - Nouvelles + last_post_language: "" + last_post_guid: c482dd9f75c8c33516ceb8e7ea85a67a + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-76112f3b4880de6ffeba163b18eb4ff5.md b/content/discover/feed-76112f3b4880de6ffeba163b18eb4ff5.md new file mode 100644 index 000000000..8c7c350c4 --- /dev/null +++ b/content/discover/feed-76112f3b4880de6ffeba163b18eb4ff5.md @@ -0,0 +1,44 @@ +--- +title: stitcher.io +date: "2024-07-09T03:00:13Z" +description: "" +params: + feedlink: https://stitcher.io/rss + feedtype: atom + feedid: 76112f3b4880de6ffeba163b18eb4ff5 + websites: {} + blogrolls: [] + recommended: [] + recommender: + - https://danq.me/comments/feed/ + - https://danq.me/feed/ + - https://danq.me/kind/article/feed/ + - https://danq.me/kind/note/feed/ + categories: [] + relme: {} + last_post_title: 'PHP version stats: July, 2024' + last_post_description: |- + Every six months, I do an update on which PHP versions are used across the community. You can read the previous edition here, I'll also include historic data in this post. + Keep in mind note that I'm + last_post_date: "2024-07-08T00:00:00Z" + last_post_link: https://stitcher.io/blog/php-version-stats-july-2024 + last_post_categories: [] + last_post_language: "" + last_post_guid: 99cec0293c5a3848668af9ac02bc22ba + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 0 + score: 11 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7626d2d6fa86e02e6ad59760e54e7c54.md b/content/discover/feed-7626d2d6fa86e02e6ad59760e54e7c54.md index e58465d3f..1098a4754 100644 --- a/content/discover/feed-7626d2d6fa86e02e6ad59760e54e7c54.md +++ b/content/discover/feed-7626d2d6fa86e02e6ad59760e54e7c54.md @@ -1,6 +1,6 @@ --- title: kottke.org -date: "2024-06-03T21:19:29Z" +date: "2024-07-08T22:55:29Z" description: Jason Kottke’s weblog, home of fine hypertext products since 1998 params: feedlink: https://feeds.kottke.org/main @@ -13,28 +13,36 @@ params: recommender: - http://scripting.com/rss.xml - http://scripting.com/rssNightly.xml + - https://frankmcpherson.blog/feed.xml - https://jeroensangers.com/feed.xml - https://jeroensangers.com/podcast.xml + - https://roytang.net/blog/feed/rss/ categories: [] relme: + https://kottke.org/: true https://mastodon.social/@kottke: true - last_post_title: Should Employees Be Paid? Why People Think It’s Time. “Others - feel the... + last_post_title: The Onion highlights some of the lesser-known Project 2025 plans. + “Immigration through... last_post_description: "" - last_post_date: "2024-06-03T21:19:29Z" - last_post_link: https://kottke.org/24/06/0044738-should-employees-be-paid- + last_post_date: "2024-07-08T22:55:29Z" + last_post_link: https://kottke.org/24/07/0044922-the-onion-highlights-some last_post_categories: [] - last_post_guid: 908c0798f3b93e0a735c55b27b49cf43 + last_post_language: "" + last_post_guid: 4eaf323206196ba481836d101d2b575d score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-7627e5d9ad7d5e177159d07473f90042.md b/content/discover/feed-7627e5d9ad7d5e177159d07473f90042.md index 818a3cee1..3358b7c21 100644 --- a/content/discover/feed-7627e5d9ad7d5e177159d07473f90042.md +++ b/content/discover/feed-7627e5d9ad7d5e177159d07473f90042.md @@ -15,25 +15,31 @@ params: categories: - concepts relme: + https://nanoscale.blogspot.com/: true https://www.blogger.com/profile/13340091255404229559: true - last_post_title: What is turbulence? (And why are helicopters never quiet?) - last_post_description: Fluid mechanics is very often left out of the undergraduate - physics curriculum.  This is a shame, as it's very interesting and directly relevant - to many broad topics (atmospheric science, climate, - last_post_date: "2024-06-22T21:08:00Z" - last_post_link: https://nanoscale.blogspot.com/2024/06/what-is-turbulence-and-why-are.html + last_post_title: What is a Wigner crystal? + last_post_description: Last week I was at the every-2-years Gordon Research Conference + on Correlated Electron Systems at lovely Mt. Holyoke.  It was very fun, but one + key aspect of the culture of the GRCs is that + last_post_date: "2024-07-06T19:01:00Z" + last_post_link: https://nanoscale.blogspot.com/2024/07/what-is-wigner-crystal.html last_post_categories: [] - last_post_guid: caf3247fb1efa56bb38ff8c743c72800 + last_post_language: "" + last_post_guid: ad665023bb220f043001948bfdd90457 score_criteria: cats: 1 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 11 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-7632c7cac2106ca964139af88ecce0ef.md b/content/discover/feed-7632c7cac2106ca964139af88ecce0ef.md new file mode 100644 index 000000000..5ada72e8a --- /dev/null +++ b/content/discover/feed-7632c7cac2106ca964139af88ecce0ef.md @@ -0,0 +1,43 @@ +--- +title: Viewing the Eclipse +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://viewingtheeclipse.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 7632c7cac2106ca964139af88ecce0ef + websites: + https://viewingtheeclipse.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://viewingtheeclipse.blogspot.com/: true + https://www.blogger.com/profile/08093945292490053498: true + last_post_title: Interactive 3D Mars Visualization in Eclipse RCP + last_post_description: 'OpenGL support has been available in SWT for several years + and has enabled many useful visualization tools, particularly for the sciences + (for example: Earth science, chemistry and planetary science)' + last_post_date: "2009-09-23T00:12:00Z" + last_post_link: https://viewingtheeclipse.blogspot.com/2009/09/interactive-3d-mars-visualization-in.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 05058010649e32cac965d5c329f393dd + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-766e9683ae3ed4718364772fae7b6aa1.md b/content/discover/feed-766e9683ae3ed4718364772fae7b6aa1.md index 58d262f68..ff34972f3 100644 --- a/content/discover/feed-766e9683ae3ed4718364772fae7b6aa1.md +++ b/content/discover/feed-766e9683ae3ed4718364772fae7b6aa1.md @@ -20,13 +20,9 @@ params: - solar cycle - sunspots relme: - https://berrange.com/: false - https://berrange.tumblr.com/: false - https://devstopfix.berrange.com/: false + https://fstop138.berrange.com/: true https://hachyderm.io/@berrange: true - https://instagram.com/dberrange/: false - https://pinholemiscellany.berrange.com/: false - https://secure.flickr.com/photos/dberrange/: false + https://www.berrange.com/: true last_post_title: 16 years of sunspots from the SOHO and SDO spacecraft last_post_description: The Solar and Heliospheric Observatory (aka SOHO) spacecraft is a joint mission between ESA and NASA. Launched in 1995 with a planned 2 year @@ -41,17 +37,22 @@ params: - soho - solar cycle - sunspots + last_post_language: "" last_post_guid: 35d9ff62562e901a542e3f4fc30446f0 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-76943a5290adf7316dfc03a79c7d3221.md b/content/discover/feed-76943a5290adf7316dfc03a79c7d3221.md new file mode 100644 index 000000000..b015be90a --- /dev/null +++ b/content/discover/feed-76943a5290adf7316dfc03a79c7d3221.md @@ -0,0 +1,139 @@ +--- +title: Code of City +date: "2024-03-13T00:26:30-07:00" +description: Here we have good article of all area code of USA. +params: + feedlink: https://nhungdieucanbietvevincity.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 76943a5290adf7316dfc03a79c7d3221 + websites: + https://nhungdieucanbietvevincity.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - area + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: All Area of The USA + last_post_description: "" + last_post_date: "2021-12-30T12:20:34-08:00" + last_post_link: https://nhungdieucanbietvevincity.blogspot.com/2021/12/all-area-of-usa.html + last_post_categories: + - area + last_post_language: "" + last_post_guid: 171dbe8bf85972c1fd74f35a0b99cdfa + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-76a3a177459756a1d819fee5311048a2.md b/content/discover/feed-76a3a177459756a1d819fee5311048a2.md index 0f90c3a67..bef2da180 100644 --- a/content/discover/feed-76a3a177459756a1d819fee5311048a2.md +++ b/content/discover/feed-76a3a177459756a1d819fee5311048a2.md @@ -10,12 +10,10 @@ params: https://jefklakscodex.com/: true blogrolls: [] recommended: [] - recommender: - - https://chrisburnell.com/feed.xml + recommender: [] categories: - adventure relme: - https://github.com/wgroeneveld: false https://jefklakscodex.com/: true last_post_title: 'Lil'' Guardsman: Papers, Please With Charm' last_post_description: One of my wife’s Switch eShop excavations recently yielded @@ -25,17 +23,22 @@ params: last_post_link: https://jefklakscodex.com/games/switch/lil-guardsman/ last_post_categories: - adventure + last_post_language: "" last_post_guid: b81ab391cd35a1fc4e54292957029375 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 - promoted: 5 + posts: 3 + promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 16 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-76e51408fc320a7a73f4ae9af748ccd3.md b/content/discover/feed-76e51408fc320a7a73f4ae9af748ccd3.md new file mode 100644 index 000000000..96945140c --- /dev/null +++ b/content/discover/feed-76e51408fc320a7a73f4ae9af748ccd3.md @@ -0,0 +1,174 @@ +--- +title: tsdgeos en castellano +date: "2024-03-13T08:35:06+01:00" +description: Un blog sobre cosas aleatorias y de vez en cuando sobre mi colaboración + en KDE +params: + feedlink: https://tsdgeos-es.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 76e51408fc320a7a73f4ae9af748ccd3 + websites: + https://tsdgeos-es.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - "2011" + - "4.6" + - 4.6.4 + - "4.7" + - "4.9" + - Messages.sh + - Qt Quick + - XF86XK_TouchpadToggle + - aer lingus + - aeropuerto + - ahtec + - akademy + - akademy-es + - akademy-es 2010 + - ampliware + - badalona + - barcelona + - berlin + - berlios + - blinken + - blog + - bug + - bugs.kde.org + - bugzilla + - canonical + - capacity + - cena + - charlas + - comment + - correo + - designer + - desktop summit + - disambiguation + - dublin + - dvd + - ebook-tools + - entrevista + - epub + - españa + - español + - etseib + - evento de salida + - eventos + - evince + - extracomment + - firmware + - foro + - garantía + - git + - gitorious + - gsoc + - harmattan + - i18n + - jointhegame + - jornadespl + - junta + - kde + - kde 4.10 + - kde 4.8 + - kde 4.9 + - kde españa + - kdeblog + - kdeedu + - kgeography + - kile + - kio + - konsole + - ktouchpadenabler + - ktuberling + - kubuntu + - kwalleteditor + - l10n + - libdvdcss + - libre software world conference + - linux + - linux magazine + - lswc + - madrid + - maemo + - meego + - meego conference + - multimania + - n9 + - n900 + - n950 + - nokia + - okular + - opensource + - ossbarcamp + - parches + - pdf + - pdftotext + - pledgie + - poppler + - portátil + - prison break + - qt + - qt3support + - qtcs + - r3v + - randa + - release + - ryanair + - segunda maleta + - seleccion multicolumna + - señales + - software libre + - solid + - sprint + - terminal 2 + - threads + - top 10 + - touchpad + - traducciones + - traducción + - transparencias + - ubuntu + - ufocoders + - upc + - valgrind + - vida + - videos + - visor + - vlc + - xps + - zaragoza + relme: + https://blinkenharmattan.blogspot.com/: true + https://flagsquiz.blogspot.com/: true + https://tsdgeos-es.blogspot.com/: true + https://tsdgeos.blogspot.com/: true + https://www.blogger.com/profile/12001470108926138921: true + last_post_title: Foros en Español dentro de forums.kde.org + last_post_description: "" + last_post_date: "2012-11-02T20:03:11+01:00" + last_post_link: https://tsdgeos-es.blogspot.com/2012/11/foros-en-espanol-dentro-de-forumskdeorg.html + last_post_categories: + - español + - foro + - kde + last_post_language: "" + last_post_guid: cf1d8063ed286d74b8cc45e79de47f11 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-76fa5c0bdd6823aeaecdc472d7648aa9.md b/content/discover/feed-76fa5c0bdd6823aeaecdc472d7648aa9.md new file mode 100644 index 000000000..8883c6c19 --- /dev/null +++ b/content/discover/feed-76fa5c0bdd6823aeaecdc472d7648aa9.md @@ -0,0 +1,140 @@ +--- +title: The process is reasonably Area Code +date: "1970-01-01T00:00:00Z" +description: Keep visiting to my blogspot page and get all information about Area + Code. +params: + feedlink: https://ongtotowap.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 76fa5c0bdd6823aeaecdc472d7648aa9 + websites: + https://ongtotowap.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: iPhone users Area Code + last_post_description: |- + what does swordfish taste like and How do I block undesirable calls from 707?If you keep on receiving unwanted calls + from 707 numbers and could want to dam them, here is a quick method on how + last_post_date: "2022-02-13T16:33:00Z" + last_post_link: https://ongtotowap.blogspot.com/2022/02/iphone-users-area-code.html + last_post_categories: [] + last_post_language: "" + last_post_guid: b110fa610bace0eefa2d1b8895a8b7fa + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-76fcd94a3cc8198fb7e4672969e7527d.md b/content/discover/feed-76fcd94a3cc8198fb7e4672969e7527d.md new file mode 100644 index 000000000..42a006c53 --- /dev/null +++ b/content/discover/feed-76fcd94a3cc8198fb7e4672969e7527d.md @@ -0,0 +1,43 @@ +--- +title: Titus Nicolae +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://titusnicolae.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 76fcd94a3cc8198fb7e4672969e7527d + websites: + https://titusnicolae.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://titusnicolae.blogspot.com/: true + https://www.blogger.com/profile/07538957061668656846: true + last_post_title: Benchmarking + last_post_description: I have setup a benchmark to measure running time for real + and synthetic Sage programs that use Pynac.  We will use these to see how the + following iterations of the project will compare to the + last_post_date: "2012-06-17T13:50:00Z" + last_post_link: https://titusnicolae.blogspot.com/2012/06/benchmarking.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 21444ef65d8d120397d5e4fb1b676355 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7701ae19fe02d40422d73bda66d62f8d.md b/content/discover/feed-7701ae19fe02d40422d73bda66d62f8d.md deleted file mode 100644 index c04d38601..000000000 --- a/content/discover/feed-7701ae19fe02d40422d73bda66d62f8d.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Ian Betteridge -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://technovia.co.uk/feed.xml - feedtype: rss - feedid: 7701ae19fe02d40422d73bda66d62f8d - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Informed Consent and Privacy – Pixel Envy - last_post_description: Meta is probably one of the more agreeable players in this - racket, too. It hoards data; it does not share much of it. And it has a brand - to protect. Data brokers are far worse because nobody knows - last_post_date: "2024-04-21T10:49:54+01:00" - last_post_link: https://technovia.co.uk/2024/04/21/informed-consent-and.html - last_post_categories: [] - last_post_guid: 3a6910c4c214363cc3e769088f0c64b2 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 3 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7716a5d3938c657108676944c8a82ad2.md b/content/discover/feed-7716a5d3938c657108676944c8a82ad2.md deleted file mode 100644 index e1fda33f6..000000000 --- a/content/discover/feed-7716a5d3938c657108676944c8a82ad2.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: SCOTUSblog -date: "1970-01-01T00:00:00Z" -description: Independent News and Analysis on the U.S. Supreme Court -params: - feedlink: https://scotusblog.com/feed - feedtype: rss - feedid: 7716a5d3938c657108676944c8a82ad2 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - http://scripting.com/rss.xml - - http://scripting.com/rssNightly.xml - categories: - - Featured - - Merits Cases - - Cases in the Pipeline - relme: {} - last_post_title: Justices add one new case to next term’s docket - last_post_description: In a list of orders released on Monday morning, the Supreme - Court added one new case to its argument docket for the 2024-25 term. With roughly - one month remaining before the justices’ summer recess - last_post_date: "2024-06-03T14:17:03Z" - last_post_link: https://www.scotusblog.com/2024/06/justices-add-one-new-case-to-next-terms-docket/ - last_post_categories: - - Featured - - Merits Cases - - Cases in the Pipeline - last_post_guid: 01e97b11845ecb0922195be83095fcb6 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 14 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7728dccde51890afb2e2dae533f0654a.md b/content/discover/feed-7728dccde51890afb2e2dae533f0654a.md index f064954f0..d0305f69a 100644 --- a/content/discover/feed-7728dccde51890afb2e2dae533f0654a.md +++ b/content/discover/feed-7728dccde51890afb2e2dae533f0654a.md @@ -14,6 +14,7 @@ params: categories: [] relme: https://mastodon.cloud/@Paolo: true + https://val.demar.in/: true last_post_title: Comment on GroceriesGPT by paolovalde last_post_description: |- In reply to Euan. @@ -22,17 +23,22 @@ params: last_post_date: "2024-04-04T10:50:54Z" last_post_link: https://val.demar.in/2024/04/groceriesgpt/#comment-377 last_post_categories: [] + last_post_language: "" last_post_guid: c01b49bbbee1b5967100b58d46d30f3b score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-77325c0893d1a0e923dde665a1320ab6.md b/content/discover/feed-77325c0893d1a0e923dde665a1320ab6.md deleted file mode 100644 index 9b83d06b7..000000000 --- a/content/discover/feed-77325c0893d1a0e923dde665a1320ab6.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: jpichon.net - openstack -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://www.jpichon.net/feeds/tag-openstack.rss.xml - feedtype: rss - feedid: 77325c0893d1a0e923dde665a1320ab6 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Tech - - events - - openstack - relme: {} - last_post_title: OpenStack PTG Dublin - Rocky - last_post_description: |- - I was so excited when it was first hinted in Denver that the next - OpenStack PTG would be in Dublin. In my town! Zero jet lag! Commuting - from home! Showing people around! Alas, it was not to be. - last_post_date: "2018-03-09T11:57:00Z" - last_post_link: https://www.jpichon.net/blog/2018/03/openstack-ptg-dublin-rocky/ - last_post_categories: - - Tech - - events - - openstack - last_post_guid: 0f32fbbd467d1522ec6deb80a09e7ba8 - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-77334e826d261b02f7819244cb1930e2.md b/content/discover/feed-77334e826d261b02f7819244cb1930e2.md deleted file mode 100644 index 49fe2b558..000000000 --- a/content/discover/feed-77334e826d261b02f7819244cb1930e2.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: vecka -date: "1970-01-01T00:00:00Z" -description: Public posts from @vecka@hachyderm.io -params: - feedlink: https://hachyderm.io/@vecka.rss - feedtype: rss - feedid: 77334e826d261b02f7819244cb1930e2 - websites: - https://hachyderm.io/@vecka: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/approved/: true - https://hachyderm.io/@isnan: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7735d6a7b1a923708fb0470db4d0451d.md b/content/discover/feed-7735d6a7b1a923708fb0470db4d0451d.md new file mode 100644 index 000000000..2ad1c34b2 --- /dev/null +++ b/content/discover/feed-7735d6a7b1a923708fb0470db4d0451d.md @@ -0,0 +1,53 @@ +--- +title: JEE.gr +date: "1970-01-01T00:00:00Z" +description: A Java and technical blog for the rest of us... +params: + feedlink: https://jee.gr/feed/ + feedtype: rss + feedid: 7735d6a7b1a923708fb0470db4d0451d + websites: + https://jee.gr/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Core Java + - GenZGC + - Generational ZGC + - java + - java 21 + relme: + https://foojay.social/@alexius: true + https://jee.gr/: true + last_post_title: The Generational Z Garbage Collector (ZGC) + last_post_description: The Generational Z Garbage Collector (ZGC) The Generational + Z Garbage Collector (GenZGC) in JDK 21 represents a significant evolution in Java’s + approach to garbage collection, aiming to enhance + last_post_date: "2024-06-17T05:51:37Z" + last_post_link: https://jee.gr/the-generational-z-garbage-collector-zgc/?utm_source=rss&utm_medium=rss&utm_campaign=the-generational-z-garbage-collector-zgc + last_post_categories: + - Core Java + - GenZGC + - Generational ZGC + - java + - java 21 + last_post_language: "" + last_post_guid: f9c44c4619f7896a108002cf6776d764 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-77361b6ab0237ade9d224b403df09c6d.md b/content/discover/feed-77361b6ab0237ade9d224b403df09c6d.md new file mode 100644 index 000000000..3c42b296f --- /dev/null +++ b/content/discover/feed-77361b6ab0237ade9d224b403df09c6d.md @@ -0,0 +1,50 @@ +--- +title: Light Darkness Painting +date: "2024-03-13T07:17:30-07:00" +description: "" +params: + feedlink: https://lightdarknesspainting.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 77361b6ab0237ade9d224b403df09c6d + websites: + https://lightdarknesspainting.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://boardgamethoughts.blogspot.com/: true + https://coderthoughts.blogspot.com/: true + https://hikersthoughts.blogspot.com/: true + https://laarderhoogt.blogspot.com/: true + https://lightdarknesspainting.blogspot.com/: true + https://on-software-architecture.blogspot.com/: true + https://osgithoughts.blogspot.com/: true + https://rockabillfilmsoc.blogspot.com/: true + https://rockabillfilmsociety.blogspot.com/: true + https://testblogaswebsite.blogspot.com/: true + https://www.blogger.com/profile/13786738766478890804: true + last_post_title: Upcoming Courses in Light and Darkness Painting + last_post_description: "" + last_post_date: "2023-12-14T00:31:21-08:00" + last_post_link: https://lightdarknesspainting.blogspot.com/2023/12/upcoming-courses-in-light-and-darkness.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 92abe4e32a2fdb6f9a8e5f645667e699 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7736a1a24aa378e78ddebf8a873437ae.md b/content/discover/feed-7736a1a24aa378e78ddebf8a873437ae.md deleted file mode 100644 index c2b8d9412..000000000 --- a/content/discover/feed-7736a1a24aa378e78ddebf8a873437ae.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: 'Ricardo Signes :sickos:' -date: "1970-01-01T00:00:00Z" -description: Public posts from @rjbs@social.semiotic.systems -params: - feedlink: https://social.semiotic.systems/@rjbs.rss - feedtype: rss - feedid: 7736a1a24aa378e78ddebf8a873437ae - websites: - https://social.semiotic.systems/@rjbs: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/rjbs: true - https://oulipo.social/@rjbs: true - https://rjbs.cloud/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7774a90457fda1573978cc1921b7bb8c.md b/content/discover/feed-7774a90457fda1573978cc1921b7bb8c.md new file mode 100644 index 000000000..c521af1dc --- /dev/null +++ b/content/discover/feed-7774a90457fda1573978cc1921b7bb8c.md @@ -0,0 +1,54 @@ +--- +title: Mastering LibreOffice +date: "2024-07-01T01:44:02-07:00" +description: Random Notes of An LibreOffice Enthusiast +params: + feedlink: https://libreofficemaster.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 7774a90457fda1573978cc1921b7bb8c + websites: + https://libreofficemaster.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Colibre + - Karasa Jaga + - Libre + - LibreOffice + - Windows + - elementary + - impress + - presenter console + - presenter screen + relme: + https://derizal.blogspot.com/: true + https://diggingcomputers.blogspot.com/: true + https://libreofficemaster.blogspot.com/: true + https://selamkomputer.blogspot.com/: true + https://www.blogger.com/profile/09604074690410055948: true + last_post_title: Make Sifr More Eligible for Professional Use and Still Relevant + for Special Needs Users + last_post_description: "" + last_post_date: "2023-01-20T15:33:41-08:00" + last_post_link: https://libreofficemaster.blogspot.com/2023/01/make-sifr-more-eligible-for.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 76d36dbaf9ac46272a1c987e8b33f7cb + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7796c04df61a6f4ce7d5e34ef312d36a.md b/content/discover/feed-7796c04df61a6f4ce7d5e34ef312d36a.md index 7678dd563..7268f452f 100644 --- a/content/discover/feed-7796c04df61a6f4ce7d5e34ef312d36a.md +++ b/content/discover/feed-7796c04df61a6f4ce7d5e34ef312d36a.md @@ -11,37 +11,38 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ - https://frankmeeuwsen.com/feed.xml categories: - - Web Future + - Breakthroughs relme: {} - last_post_title: The Analog Web + last_post_title: Where does SEO come from? last_post_description: |- - On reclaiming the web's lost humanity, and the people still very much trying to do it. - The post The Analog Web appeared first on The History of the Web. - last_post_date: "2024-04-16T19:30:10Z" - last_post_link: https://thehistoryoftheweb.com/the-analog-web/ + In 2007, one person tried to lay claim to the term SEO. But SEO had been invented by a community. It couldn't be owned. + The post Where does SEO come from? appeared first on The History of the Web. + last_post_date: "2024-06-19T15:11:06Z" + last_post_link: https://thehistoryoftheweb.com/where-does-seo-come-from/ last_post_categories: - - Web Future - last_post_guid: 99632848d64f10f86bd5b2b6fc3cf948 + - Breakthroughs + last_post_language: "" + last_post_guid: e6ca5c94c4ed23a5fb9e79abc9ad87f6 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 14 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-77a2cc6e6ec03acabe03406fe175ea98.md b/content/discover/feed-77a2cc6e6ec03acabe03406fe175ea98.md new file mode 100644 index 000000000..84cd1a3f8 --- /dev/null +++ b/content/discover/feed-77a2cc6e6ec03acabe03406fe175ea98.md @@ -0,0 +1,50 @@ +--- +title: ral-arturo.org +date: "2024-07-04T09:11:47Z" +description: ral-arturo blog, about free software, debian, networks, systems, or whatever +params: + feedlink: https://ral-arturo.org/feed.xml + feedtype: rss + feedid: 77a2cc6e6ec03acabe03406fe175ea98 + websites: + https://ral-arturo.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://alfabravo.org/: true + https://mas.to/@arturobg: true + https://ral-arturo.org/: true + last_post_title: 'Wikimedia Toolforge: migrating Kubernetes from PodSecurityPolicy + to Kyverno' + last_post_description: |- + Christian + David, + CC BY-SA 4.0, via Wikimedia Commons + + This post was originally published in the Wikimedia Tech blog, authored by Arturo Borrero Gonzalez. + + Summary: this article shares the experience + last_post_date: "2024-07-04T09:00:00Z" + last_post_link: https://ral-arturo.org/2024/07/04/kyverno.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 4f226f002f2e568fc674c7941dd16d4c + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-77d2c45bacf1addf265703fc49d333f2.md b/content/discover/feed-77d2c45bacf1addf265703fc49d333f2.md deleted file mode 100644 index 325271edd..000000000 --- a/content/discover/feed-77d2c45bacf1addf265703fc49d333f2.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Matt Steele -date: "1970-01-01T00:00:00Z" -description: Public posts from @mattdsteele@carhenge.club -params: - feedlink: https://carhenge.club/@mattdsteele.rss - feedtype: rss - feedid: 77d2c45bacf1addf265703fc49d333f2 - websites: - https://carhenge.club/@mattdsteele: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://steele.blue/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-77d40b5cb36eaeff3782253156475290.md b/content/discover/feed-77d40b5cb36eaeff3782253156475290.md deleted file mode 100644 index 1862fd373..000000000 --- a/content/discover/feed-77d40b5cb36eaeff3782253156475290.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: 'Thunderbird: Free Your Inbox' -date: "1970-01-01T00:00:00Z" -description: Public posts from @thunderbird@mastodon.online -params: - feedlink: https://mastodon.online/@thunderbird.rss - feedtype: rss - feedid: 77d40b5cb36eaeff3782253156475290 - websites: - https://mastodon.online/@thunderbird: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://blog.thunderbird.net/2022/08/how-you-can-contribute-to-thunderbird-without-knowing-how-to-code/: false - https://mzla.link/eoy23_masto: true - https://thunderbird.net/: true - https://thundercast.transistor.fm/subscribe: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-77d7522a52559758f553c00488663596.md b/content/discover/feed-77d7522a52559758f553c00488663596.md index 0415b5630..5601678f3 100644 --- a/content/discover/feed-77d7522a52559758f553c00488663596.md +++ b/content/discover/feed-77d7522a52559758f553c00488663596.md @@ -13,8 +13,7 @@ params: recommender: [] categories: [] relme: - https://micro.blog/philbowell: false - https://twitter.com/philbowell: false + https://philbowell.com/: true last_post_title: Comment on New UK coin design by philbowell last_post_description:

@ChrisJWilson Ha! See if any are in circulation by then. Are you visiting @@ -22,17 +21,22 @@ params: last_post_date: "2023-10-13T08:16:52Z" last_post_link: https://micro.blog/philbowell/24857791 last_post_categories: [] + last_post_language: "" last_post_guid: dc7bed69cb78839d5c405073e0a97f1b score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 9 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-77edf34377ded8bfdbfc9b477cd96626.md b/content/discover/feed-77edf34377ded8bfdbfc9b477cd96626.md new file mode 100644 index 000000000..e00fef237 --- /dev/null +++ b/content/discover/feed-77edf34377ded8bfdbfc9b477cd96626.md @@ -0,0 +1,44 @@ +--- +title: Comments for Ximions Blog +date: "1970-01-01T00:00:00Z" +description: Yet another Wordpress weblog +params: + feedlink: https://blog.tenstral.net/comments/feed + feedtype: rss + feedid: 77edf34377ded8bfdbfc9b477cd96626 + websites: + https://blog.tenstral.net/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://blog.tenstral.net/: true + https://github.com/ximion: true + https://mastodon.social/@matk: true + last_post_title: Comment on Wayland really breaks things… Just for now? by Way + last_post_description: There are some things i like about Wayland but there are + some that i feel simply come down to bad design, poor choices and bad government. + I feel that the amount of work needed to implement support + last_post_date: "2024-03-15T13:12:44Z" + last_post_link: https://blog.tenstral.net/2024/01/wayland-really-breaks-things-just-for-now.html/comment-page-1#comment-376261 + last_post_categories: [] + last_post_language: "" + last_post_guid: 9abfa7a8e56ed52d294c1198f13f6ce0 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-782405b56320e2c3202a9dc7c9c1e818.md b/content/discover/feed-782405b56320e2c3202a9dc7c9c1e818.md new file mode 100644 index 000000000..9a2f79098 --- /dev/null +++ b/content/discover/feed-782405b56320e2c3202a9dc7c9c1e818.md @@ -0,0 +1,45 @@ +--- +title: I Begynnelsen Var Ordet +date: "2024-03-07T23:21:22-08:00" +description: Tankar om Gud, att vara kristen och bibeln. +params: + feedlink: https://ibegynnelsen.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 782405b56320e2c3202a9dc7c9c1e818 + websites: + https://ibegynnelsen.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://ardetnattattha.blogspot.com/: true + https://computationalthoughts.blogspot.com/: true + https://futurealm.blogspot.com/: true + https://ibegynnelsen.blogspot.com/: true + https://josefsblog.blogspot.com/: true + https://www.blogger.com/profile/13272830598221833253: true + last_post_title: Pennan och du + last_post_description: "" + last_post_date: "2010-08-09T03:54:38-07:00" + last_post_link: https://ibegynnelsen.blogspot.com/2010/08/paolo-coelho-ar-val-ingen-forfattare.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 2de2744763433daf32ae096860183e7e + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7827126b73fd149bdd31afd30dc323da.md b/content/discover/feed-7827126b73fd149bdd31afd30dc323da.md new file mode 100644 index 000000000..565f9b81d --- /dev/null +++ b/content/discover/feed-7827126b73fd149bdd31afd30dc323da.md @@ -0,0 +1,46 @@ +--- +title: Over the Hill +date: "1970-01-01T00:00:00Z" +description: About me, as a person, and my family. +params: + feedlink: https://petertribble.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 7827126b73fd149bdd31afd30dc323da + websites: + https://petertribble.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - home + relme: + https://petertribble.blogspot.com/: true + https://ptribble.blogspot.com/: true + https://tribblix.blogspot.com/: true + https://www.blogger.com/profile/09363446984245451854: true + last_post_title: Smart Meters and electricity use at Tribble Towers + last_post_description: We first got moved over to a smart meter some years ago. + It partially worked great for about a day, then stopped.The whole thing has been + a bit of a shambles. It wouldn't take electricity readings, + last_post_date: "2023-11-06T21:23:00Z" + last_post_link: https://petertribble.blogspot.com/2023/11/smart-meters-and-electricity-use-at.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 2594711ee40b9636d01ea358dd4c4834 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-782e678503c33d6085e3e5fdc89dd3c1.md b/content/discover/feed-782e678503c33d6085e3e5fdc89dd3c1.md index 6f1ca6195..869a8deac 100644 --- a/content/discover/feed-782e678503c33d6085e3e5fdc89dd3c1.md +++ b/content/discover/feed-782e678503c33d6085e3e5fdc89dd3c1.md @@ -13,45 +13,27 @@ params: recommended: [] recommender: [] categories: - - LHC - - Matéria Escura - - Bóson de Higgs - - Supersimetria - - Higgs - - Teoria de cordas - - USP - - string theory - - CERN - - Ciência - - ESO - - IFUSP - - Bariloche - - Buracos negros - - Cometa Ison - - Constante Cosmológica - - Mecânica Quântica - - Neutrinos - - Radiação Cósmica de Fundo - - Raios cósmicos - - Relatividade Geral - - Supernova - - Teoria de Campos - - greve - - partículas elementares - - universidade - AMS - BELLE - BESIII + - Bariloche - Big Bang - Brasil + - Buracos negros - Bus fare rise + - Bóson de Higgs - CDMS + - CERN - Caderno Mais - Carl Sagan + - Ciência - Cometa + - Cometa Ison - Cometa McNaught + - Constante Cosmológica - DAMA - Desigualdade de Bell + - ESO - EXO - Eclipse - Educação @@ -66,19 +48,25 @@ params: - Gravity Probe B - Haroche - Harvard + - Higgs - Homeopatia - Hubble - IFT + - IFUSP - ISS - Instituto de Física + - LHC - Lei de Hubble - Lua - MINOS + - Matéria Escura - McNaught - McNaught comet + - Mecânica Quântica - Meteoro - Método Científico - Naturalidade + - Neutrinos - Newtons law - Observatório Teide - Paradoxo EPR @@ -89,16 +77,24 @@ params: - Prêmio Nobel - Pósitron - Quarks + - Radiação Cósmica de Fundo + - Raios cósmicos - Realidade + - Relatividade Geral - Relatividade Restrita - Rússia - SN 2014J - Satélite Planck - Stephan Hawking + - Supernova + - Supersimetria - Swieca School - Telepatia - Teoria das Variáveis Ocultas + - Teoria de Campos + - Teoria de cordas - Tetraquarks + - USP - Universo - Vídeo - Wineland @@ -108,6 +104,7 @@ params: - ensino e pesquisa - espaço - extra dimensions + - greve - justiça - massa - meson Bs @@ -116,17 +113,22 @@ params: - paridade - particle physics - particulas elementares + - partículas elementares - physics school - pós-graduação - radiação de Hawking - spin - string school + - string theory - strings - supergravity + - universidade - vídeos - wimp - Época relme: + https://dequaopoucoeumelembro.blogspot.com/: true + https://rivelles.blogspot.com/: true https://www.blogger.com/profile/13686446138092176062: true last_post_title: 'Neutrinos: tudo na mesma' last_post_description: "" @@ -134,19 +136,24 @@ params: last_post_link: https://rivelles.blogspot.com/2014/06/neutrinos-tudo-na-mesma.html last_post_categories: - EXO - - Neutrinos - MINOS + - Neutrinos + last_post_language: "" last_post_guid: 26091995a32bb6d76216eea268ddfd61 score_criteria: cats: 5 description: 3 + feedlangs: 0 postcats: 3 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 18 + score: 21 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-784e129e589f239556930b693efe6c52.md b/content/discover/feed-784e129e589f239556930b693efe6c52.md deleted file mode 100644 index 5d006a840..000000000 --- a/content/discover/feed-784e129e589f239556930b693efe6c52.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Journal – notizBlog -date: "1970-01-01T00:00:00Z" -description: a weblog mainly about the open, portable, interoperable, small, social, - synaptic, semantic, structured, distributed, (re-)decentralized, independent, microformatted - and federated social web -params: - feedlink: https://notiz.blog/category/journal/feed/ - feedtype: rss - feedid: 784e129e589f239556930b693efe6c52 - websites: - https://notiz.blog/about/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Journal - - Art - - ASCII - relme: {} - last_post_title: ASCIIerle - last_post_description: 'Ich besitze jetzt einen echten Doctor Popular! Thanks a - lot @docpop ❤️ …und hier noch zwei weitere Versionen:' - last_post_date: "2024-06-02T14:51:16Z" - last_post_link: https://notiz.blog/2024/06/02/asciierle/ - last_post_categories: - - Journal - - Art - - ASCII - last_post_guid: e5aa055033313d258fc21111d08956b1 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-785dd77eac23ca5effaab4a92c2f68f6.md b/content/discover/feed-785dd77eac23ca5effaab4a92c2f68f6.md deleted file mode 100644 index 94413d7f9..000000000 --- a/content/discover/feed-785dd77eac23ca5effaab4a92c2f68f6.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: JONATHAN HAYS -date: "1970-01-01T00:00:00Z" -description: CEO of Silverpine. Co-Author of Sunlit and Wavelength with @manton. Powered - by coffee and cheese. he/him -params: - feedlink: https://jonhays.me/podcast.xml - feedtype: rss - feedid: 785dd77eac23ca5effaab4a92c2f68f6 - websites: - https://jonhays.me/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Sports - relme: - https://micro.blog/cheesemaker: false - https://twitter.com/cheesemaker: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 1 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 10 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-786af216f66082842c7de9d83dd5552d.md b/content/discover/feed-786af216f66082842c7de9d83dd5552d.md new file mode 100644 index 000000000..b11b0badf --- /dev/null +++ b/content/discover/feed-786af216f66082842c7de9d83dd5552d.md @@ -0,0 +1,48 @@ +--- +title: TheEvilSkeleton +date: "2024-07-08T20:55:19Z" +description: "" +params: + feedlink: https://tesk.page/feed.xml + feedtype: atom + feedid: 786af216f66082842c7de9d83dd5552d + websites: + https://tesk.page/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://codeberg.org/TheEvilSkeleton/: true + https://github.com/TheEvilSkeleton: true + https://gitlab.com/TheEvilSkeleton: true + https://gitlab.freedesktop.org/TheEvilSkeleton: true + https://gitlab.gnome.org/TheEvilSkeleton: true + https://social.treehouse.systems/@TheEvilSkeleton: true + https://tesk.page/: true + last_post_title: 'Libadwaita: Splitting GTK and Design Language' + last_post_description: Recently, the Linux Mint Blog published [Monthly News – April + 2024](https://blog.linuxmint.com/?p=4675), which goes into detail about wanting + to fork and maintain older GNOME apps in collaboration + last_post_date: "2024-06-03T00:00:00Z" + last_post_link: https://tesk.page/2024/06/03/libadwaita-splitting-gtk-and-design-language/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 2f8e0789f223c0e884788cc89bab3f0f + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-786e3eb2a046f14169306c9220bb8556.md b/content/discover/feed-786e3eb2a046f14169306c9220bb8556.md deleted file mode 100644 index 3cd050da1..000000000 --- a/content/discover/feed-786e3eb2a046f14169306c9220bb8556.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Dolpuns -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://dolpuns.blogspot.com/feeds/posts/default?alt=rss - feedtype: rss - feedid: 786e3eb2a046f14169306c9220bb8556 - websites: - https://dolpuns.blogspot.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://www.blogger.com/profile/09594428564020352013: true - last_post_title: '#8 - Stash' - last_post_description: "" - last_post_date: "2012-04-08T03:23:00Z" - last_post_link: https://dolpuns.blogspot.com/2012/04/8-stash.html - last_post_categories: [] - last_post_guid: f17016231a0d7d880e8a1e2c382ba083 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-786ef11317b75fa14e29775d8bfac565.md b/content/discover/feed-786ef11317b75fa14e29775d8bfac565.md deleted file mode 100644 index 52c1f81b5..000000000 --- a/content/discover/feed-786ef11317b75fa14e29775d8bfac565.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Jon Worth -date: "1970-01-01T00:00:00Z" -description: Public posts from @jon@gruene.social -params: - feedlink: https://gruene.social/@jon.rss - feedtype: rss - feedid: 786ef11317b75fa14e29775d8bfac565 - websites: - https://gruene.social/@jon: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://crossborderrail.trainsforeurope.eu/: true - https://euroblog.jonworth.eu/: true - https://jonworth.eu/: true - https://trainsforeurope.eu/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-787f5910cc9f6de035212e0d1750e9e8.md b/content/discover/feed-787f5910cc9f6de035212e0d1750e9e8.md new file mode 100644 index 000000000..742cb5412 --- /dev/null +++ b/content/discover/feed-787f5910cc9f6de035212e0d1750e9e8.md @@ -0,0 +1,58 @@ +--- +title: CogDogBlog +date: "1970-01-01T00:00:00Z" +description: Alan Levine barks about and plays with stuff here +params: + feedlink: https://cogdogblog.com/feed/ + feedtype: rss + feedid: 787f5910cc9f6de035212e0d1750e9e8 + websites: + https://cogdogblog.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - On Sharing + - Photography + - Rants + - ai + - attribution + - public domain + relme: + https://cog.dog/: true + https://cogdogblog.com/: true + https://cosocial.ca/@cogdog: true + https://github.com/cogdog: true + last_post_title: Not Dead Yet. Humanly Made, Shared, Attributed, and Thanked for + Photographs + last_post_description: Claims of technical death are always overrated, but in the + hell mell rush and glee for the synthetic cartoon garish sadly robotic “style” + of generative AI imagery I for one remain thrilled by the + last_post_date: "2024-07-02T22:40:06Z" + last_post_link: https://cogdogblog.com/2024/07/humanly-shared-attributed-hanked/ + last_post_categories: + - On Sharing + - Photography + - Rants + - ai + - attribution + - public domain + last_post_language: "" + last_post_guid: b6a179687154ec7413429dc8193a1f84 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-7890412459aecde216f51542d4d604a2.md b/content/discover/feed-7890412459aecde216f51542d4d604a2.md deleted file mode 100644 index 242bbd57e..000000000 --- a/content/discover/feed-7890412459aecde216f51542d4d604a2.md +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: Boffo Socko Publishing -date: "1970-01-01T00:00:00Z" -description: Author Services and More -params: - feedlink: https://boffosocko.com/publishing/feed/ - feedtype: rss - feedid: 7890412459aecde216f51542d4d604a2 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Client Work - - Amerikan Krazy - - Henry James Korn - - novel - - politics - - publishing - - satire - relme: {} - last_post_title: Boffo Socko Books Releases Henry James Korn’s Amerikan Krazy - last_post_description: Boffo Socko Books Releases Henry James Korn's Debut Novel - Amerikan Krazy. - last_post_date: "2016-02-22T20:35:02Z" - last_post_link: https://boffosocko.com/publishing/2016/02/22/boffo-socko-books-releases-henry-james-korns-amerikan-krazy/ - last_post_categories: - - Client Work - - Amerikan Krazy - - Henry James Korn - - novel - - politics - - publishing - - satire - last_post_guid: 085abcf2377ccf663cece68596754a5a - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-78999b657b1649991fd75578df0d597c.md b/content/discover/feed-78999b657b1649991fd75578df0d597c.md deleted file mode 100644 index dc691f08d..000000000 --- a/content/discover/feed-78999b657b1649991fd75578df0d597c.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Pittsburgh Racial Justice Summit -date: "1970-01-01T00:00:00Z" -description: The Racial Justice Summit, formerly known as the Summit Against Racism, - is a flagship event for Pittsburgh organizers. The Summit creates opportunities - for attendees to learn, connect, and act on -params: - feedlink: https://prjs.org/feed/ - feedtype: rss - feedid: 78999b657b1649991fd75578df0d597c - websites: - https://prjs.org/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://hachyderm.io/@summitpgh: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-78bcfb0190da7b66cb9c25f86f5dfb0a.md b/content/discover/feed-78bcfb0190da7b66cb9c25f86f5dfb0a.md deleted file mode 100644 index 3f2536714..000000000 --- a/content/discover/feed-78bcfb0190da7b66cb9c25f86f5dfb0a.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: AnySoftKeyboard -date: "1970-01-01T00:00:00Z" -description: Public posts from @anysoftkeyboard@hachyderm.io -params: - feedlink: https://hachyderm.io/@anysoftkeyboard.rss - feedtype: rss - feedid: 78bcfb0190da7b66cb9c25f86f5dfb0a - websites: - https://hachyderm.io/@AnySoftKeyboard: false - https://hachyderm.io/@anysoftkeyboard: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://anysoftkeyboard.github.io/: true - https://community.hachyderm.io/approved: false - https://github.com/AnySoftKeyboard/AnySoftKeyboard: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-78be23ea47e3612c6bed67cb85ff8561.md b/content/discover/feed-78be23ea47e3612c6bed67cb85ff8561.md new file mode 100644 index 000000000..eef7dbac7 --- /dev/null +++ b/content/discover/feed-78be23ea47e3612c6bed67cb85ff8561.md @@ -0,0 +1,43 @@ +--- +title: Olivier's Eclipse Blog +date: "1970-01-01T00:00:00Z" +description: Opinions of a JDT/Core committer +params: + feedlink: https://olivier-eclipse.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 78be23ea47e3612c6bed67cb85ff8561 + websites: + https://olivier-eclipse.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://olivier-eclipse.blogspot.com/: true + https://www.blogger.com/profile/12941869845892308925: true + last_post_title: Evil call to Character.getNumericValue(char) + last_post_description: |- + In the Eclipse compiler, to detect a valid unicode, we call the method: + Character.getNumericValue(char) and we check that the returned value is between 0 and 15 to validate that only character + last_post_date: "2011-09-07T18:18:00Z" + last_post_link: https://olivier-eclipse.blogspot.com/2011/09/evil-call-to-charactergetnumericvaluech.html + last_post_categories: [] + last_post_language: "" + last_post_guid: da839df3ca5e533b8974dde8b4140f3d + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-78c04a1d6ffaa1275e1fab40507d44ca.md b/content/discover/feed-78c04a1d6ffaa1275e1fab40507d44ca.md new file mode 100644 index 000000000..9a9e18062 --- /dev/null +++ b/content/discover/feed-78c04a1d6ffaa1275e1fab40507d44ca.md @@ -0,0 +1,45 @@ +--- +title: openaddresses +date: "2024-02-06T20:59:43-08:00" +description: www.openaddresses.org is an Open Source web portail for the management + of Open worldwide geolocated postal addresses. +params: + feedlink: https://openaddresses.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 78c04a1d6ffaa1275e1fab40507d44ca + websites: + https://openaddresses.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://cedricmoullet.blogspot.com/: true + https://geoext.blogspot.com/: true + https://openaddresses.blogspot.com/: true + https://teamtesag.blogspot.com/: true + https://www.blogger.com/profile/06947117799577904122: true + last_post_title: OpenAddresses receives an award at AGIT 2010 + last_post_description: "" + last_post_date: "2010-07-10T00:29:27-07:00" + last_post_link: https://openaddresses.blogspot.com/2010/07/openaddresses-receives-award-at-agit.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 57cc1f22e8ace3fb63e414babb1b2eda + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-78c070a8a30bc9e7de4804505a758b9e.md b/content/discover/feed-78c070a8a30bc9e7de4804505a758b9e.md new file mode 100644 index 000000000..de3cd1c54 --- /dev/null +++ b/content/discover/feed-78c070a8a30bc9e7de4804505a758b9e.md @@ -0,0 +1,44 @@ +--- +title: Mati@GSOC +date: "2024-03-20T06:38:41+01:00" +description: 'This blog is dedicated to my work on Google Summer of Code projects: + the "toString() generation" project from 2008 and more recent "Tree views for Zest". + Both projects are done for Eclipse.' +params: + feedlink: https://eclipse-n-mati.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 78c070a8a30bc9e7de4804505a758b9e + websites: + https://eclipse-n-mati.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Eclipse + relme: + https://eclipse-n-mati.blogspot.com/: true + https://www.blogger.com/profile/07838615634557567581: true + last_post_title: Eclipse Mars - how to switch back to previous Java formatter? + last_post_description: "" + last_post_date: "2017-12-12T23:00:59+01:00" + last_post_link: https://eclipse-n-mati.blogspot.com/2015/06/eclipse-mars-how-to-switch-back-to.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 9ed5e6763209bd1c38d3db88b5b1a997 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-78de5d35a4b9506d7750ed3306c627b0.md b/content/discover/feed-78de5d35a4b9506d7750ed3306c627b0.md new file mode 100644 index 000000000..a4f457624 --- /dev/null +++ b/content/discover/feed-78de5d35a4b9506d7750ed3306c627b0.md @@ -0,0 +1,44 @@ +--- +title: Lattices in Sage +date: "1970-01-01T00:00:00Z" +description: Google Summer of Code 2012 project by Jan Pöschko +params: + feedlink: https://gsoc-sage-lattices.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 78de5d35a4b9506d7750ed3306c627b0 + websites: + https://gsoc-sage-lattices.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://gsoc-sage-lattices.blogspot.com/: true + https://tripediac.blogspot.com/: true + https://www.blogger.com/profile/13654908322659541350: true + last_post_title: Update on class structure, lattice constructors, plotting + last_post_description: Sorry that I haven't posted to this blog for a while. That + doesn't mean that nothing happened in the meanwhile—on the contrary, I got quite + a lot done in the last weeks of this Summer of Code + last_post_date: "2012-08-23T22:29:00Z" + last_post_link: https://gsoc-sage-lattices.blogspot.com/2012/08/update-on-class-structure-lattice.html + last_post_categories: [] + last_post_language: "" + last_post_guid: b80746aa7eaabe48b18bf83a9ed3ac26 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-78de6bbc4d3e6640d70a94050881ac02.md b/content/discover/feed-78de6bbc4d3e6640d70a94050881ac02.md deleted file mode 100644 index 9f50a539f..000000000 --- a/content/discover/feed-78de6bbc4d3e6640d70a94050881ac02.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: openstack – Code happens -date: "2019-03-28T20:18:19Z" -description: Someone near you is coding -params: - feedlink: https://rbtcollins.wordpress.com/tag/openstack/feed/atom/ - feedtype: atom - feedid: 78de6bbc4d3e6640d70a94050881ac02 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Uncategorized - - apis - - metrics - - observability - - opensource - - openstack - - privacy - - telemetry - relme: {} - last_post_title: Continuous Delivery and software distributors - last_post_description: Back in 2010 the continuous delivery meme was just grabbing - traction. Today its extremely well established… except in F/LOSS projects. I want - that to change, so I’m going to try and really bring - last_post_date: "2019-03-28T20:18:19Z" - last_post_link: https://rbtcollins.wordpress.com/2019/03/28/continuous-delivery-and-software-distributors/ - last_post_categories: - - Uncategorized - - apis - - metrics - - observability - - opensource - - openstack - - privacy - - telemetry - last_post_guid: 34857d1b5b6e3a7158d31cd9da982da9 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-78dfa0e57aa13d9c3a6f07c3788572de.md b/content/discover/feed-78dfa0e57aa13d9c3a6f07c3788572de.md deleted file mode 100644 index 7234fc0b3..000000000 --- a/content/discover/feed-78dfa0e57aa13d9c3a6f07c3788572de.md +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: toabctl's blog -date: "1970-01-01T00:00:00Z" -description: Just another weblog -params: - feedlink: https://toabctl.wordpress.com/feed/ - feedtype: rss - feedid: 78dfa0e57aa13d9c3a6f07c3788572de - websites: - https://toabctl.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - planet-ubuntu - - Uncategorized - - data recovery - - encryption - - ubuntu - - zfs - relme: {} - last_post_title: Mounting an encrypted zfs filesystem - last_post_description: I got a new SSD and did a fresh Ubuntu 23.04 install. What - I usually do, is connecting the old disk via USB and copy data over from the old - disk to the new SSD. But my old disk used … Continue - last_post_date: "2023-05-10T13:25:23Z" - last_post_link: https://toabctl.wordpress.com/2023/05/10/mounting-an-encrypted-zfs-filesystem/ - last_post_categories: - - planet-ubuntu - - Uncategorized - - data recovery - - encryption - - ubuntu - - zfs - last_post_guid: 65edeede3477200f52bdf81cd455fd99 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-78e0c1e668c03612533fc89b376efba8.md b/content/discover/feed-78e0c1e668c03612533fc89b376efba8.md index bdc3c0444..8457c0d98 100644 --- a/content/discover/feed-78e0c1e668c03612533fc89b376efba8.md +++ b/content/discover/feed-78e0c1e668c03612533fc89b376efba8.md @@ -21,17 +21,22 @@ params: last_post_date: "2024-03-12T14:18:48Z" last_post_link: https://alanralph.co.uk/2024/03/12/cold-takes/ last_post_categories: [] + last_post_language: "" last_post_guid: fd888ad2c727426f1c6546c59ad576a3 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 11 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-7922c4facbd8c774943a71bfa5ad4e58.md b/content/discover/feed-7922c4facbd8c774943a71bfa5ad4e58.md new file mode 100644 index 000000000..22a064aa9 --- /dev/null +++ b/content/discover/feed-7922c4facbd8c774943a71bfa5ad4e58.md @@ -0,0 +1,47 @@ +--- +title: Frederik Braun +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://frederikbraun.de/feeds/all.rss.xml + feedtype: rss + feedid: 7922c4facbd8c774943a71bfa5ad4e58 + websites: + https://frederikbraun.de/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - misc + relme: + https://frederikbraun.de/: true + https://social.security.plumbing/@freddy: true + last_post_title: The Mozilla Monument in San Francisco + last_post_description: |- + For those who don't know, I have provided countless + contributions to the Mozilla project. This is to an extent, that I + have been added to our credits page (type about:credits into Firefox!) + more than + last_post_date: "2024-07-05T00:00:00+02:00" + last_post_link: https://frederikbraun.de/mozilla-monument.html + last_post_categories: + - misc + last_post_language: "" + last_post_guid: fc31d31f6db0042c427a1950b3f1f8a8 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 11 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-792e293c14d5b9e33a1bc65a9fb364e3.md b/content/discover/feed-792e293c14d5b9e33a1bc65a9fb364e3.md deleted file mode 100644 index 1950673a9..000000000 --- a/content/discover/feed-792e293c14d5b9e33a1bc65a9fb364e3.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: James Fenn -date: "1970-01-01T00:00:00Z" -description: Public posts from @fennifith@is.a.horrific.dev -params: - feedlink: https://is.a.horrific.dev/@fennifith.rss - feedtype: rss - feedid: 792e293c14d5b9e33a1bc65a9fb364e3 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-795438aa5579760ac6dfde91cec92989.md b/content/discover/feed-795438aa5579760ac6dfde91cec92989.md index b63fd721e..727261a8f 100644 --- a/content/discover/feed-795438aa5579760ac6dfde91cec92989.md +++ b/content/discover/feed-795438aa5579760ac6dfde91cec92989.md @@ -14,7 +14,8 @@ params: categories: - Tech - python - relme: {} + relme: + https://www.jpichon.net/: true last_post_title: Extracting reviews from Goodreads into Markdown pages last_post_description: |- In early 2020, it became really difficult to read books. I'm slowly starting to @@ -25,17 +26,22 @@ params: last_post_categories: - Tech - python + last_post_language: "" last_post_guid: f70cf4a66c4fef138698472d42ec4027 score_criteria: cats: 0 description: 0 + feedlangs: 0 postcats: 2 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 7 + score: 12 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-7954b52dbca429712c874875c521cf8d.md b/content/discover/feed-7954b52dbca429712c874875c521cf8d.md deleted file mode 100644 index f6031f885..000000000 --- a/content/discover/feed-7954b52dbca429712c874875c521cf8d.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Viajando à Europa por menos -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://europanaotaocara.blogspot.com/feeds/posts/default?alt=rss - feedtype: rss - feedid: 7954b52dbca429712c874875c521cf8d - websites: - https://europanaotaocara.blogspot.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://www.blogger.com/profile/16090334046714792429: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7962e87c923cc4ad9c7de759a22c13e8.md b/content/discover/feed-7962e87c923cc4ad9c7de759a22c13e8.md new file mode 100644 index 000000000..0653b3abd --- /dev/null +++ b/content/discover/feed-7962e87c923cc4ad9c7de759a22c13e8.md @@ -0,0 +1,70 @@ +--- +title: Mukul Gandhi +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://mukulgandhi.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 7962e87c923cc4ad9c7de759a22c13e8 + websites: + https://mukulgandhi.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - android + - apache + - application integration + - cloud + - dom + - dtd + - eclipse + - grid + - java + - json + - linux + - messaging + - mozilla + - oo + - rdbms + - theory + - uml + - web + - xalan + - xerces + - xml + - xml-schema + - xpath + - xquery + - xslt + relme: + https://draft.blogger.com/profile/18274168324155284011: true + https://mukulgandhi.blogspot.com/: true + last_post_title: XSLT 3.0 grouping use case + last_post_description: I've just been playing this evening, trying to improve XalanJ + prototype processor's XSLT 3.0 xsl:for-each-group instruction's implementation. + Following is an xsl:for-each-group instruction use case, + last_post_date: "2023-12-31T17:51:00Z" + last_post_link: https://mukulgandhi.blogspot.com/2023/12/xslt-30-grouping-use-case.html + last_post_categories: + - xml + - xslt + last_post_language: "" + last_post_guid: 5bcf61e95ea767bb78e3f533119e619f + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-797073a1a74233c24b7251bb72636722.md b/content/discover/feed-797073a1a74233c24b7251bb72636722.md new file mode 100644 index 000000000..50e77456e --- /dev/null +++ b/content/discover/feed-797073a1a74233c24b7251bb72636722.md @@ -0,0 +1,95 @@ +--- +title: OSGi thoughts +date: "2024-03-13T08:42:54Z" +description: "" +params: + feedlink: https://osgithoughts.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 797073a1a74233c24b7251bb72636722 + websites: + https://osgithoughts.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Declarative Services + - EJB + - HTTP Service + - JavaEE + - JavaSE 8 + - JavaSE 9 + - JavaSE8 + - OSGi Connect + - OSGi PaaS + - PaaS + - PojoSR + - Servlet + - apache aries + - apache felix + - aries + - as7 + - benefits of osgi + - blueprint + - c/c++ + - cloud + - cloud computing + - eeg + - enterprise osgi + - felix + - java + - javascript + - jax + - jboss + - jboss osgi + - jbossas7 + - jigsaw + - modularity + - native osgi + - openjdk + - osgi + - osgi community event + - osgi devcon + - osgi specifications + - penrose + - remote services + - rfc 119 + - rfc 183 + - universal osgi + relme: + https://boardgamethoughts.blogspot.com/: true + https://coderthoughts.blogspot.com/: true + https://hikersthoughts.blogspot.com/: true + https://laarderhoogt.blogspot.com/: true + https://lightdarknesspainting.blogspot.com/: true + https://on-software-architecture.blogspot.com/: true + https://osgithoughts.blogspot.com/: true + https://rockabillfilmsoc.blogspot.com/: true + https://rockabillfilmsociety.blogspot.com/: true + https://testblogaswebsite.blogspot.com/: true + https://www.blogger.com/profile/13786738766478890804: true + last_post_title: 'Presentation: The Benefits of OSGi in Practise' + last_post_description: "" + last_post_date: "2013-08-12T10:50:39+01:00" + last_post_link: https://osgithoughts.blogspot.com/2013/08/presentation-benefits-of-osgi-in.html + last_post_categories: + - benefits of osgi + - osgi + last_post_language: "" + last_post_guid: 3722679c40fa2fb641603729cb1edce1 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-79d4438c7cff1c662247dbbe13768c01.md b/content/discover/feed-79d4438c7cff1c662247dbbe13768c01.md index 401f56d0b..1a56a1d70 100644 --- a/content/discover/feed-79d4438c7cff1c662247dbbe13768c01.md +++ b/content/discover/feed-79d4438c7cff1c662247dbbe13768c01.md @@ -12,7 +12,8 @@ params: recommended: [] recommender: [] categories: [] - relme: {} + relme: + https://gentlereader.com/: true last_post_title: Comment on Hello world! by Mr WordPress last_post_description: |- Hi, this is a comment. @@ -20,17 +21,22 @@ params: last_post_date: "2020-11-05T19:31:02Z" last_post_link: https://Gentlereader.com/?p=1#comment-1 last_post_categories: [] + last_post_language: "" last_post_guid: c58448501a6cfc1da3ca042e189c2e0d score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 8 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-79d8b747d5fd1ebbe7ddc2a391c47b2e.md b/content/discover/feed-79d8b747d5fd1ebbe7ddc2a391c47b2e.md new file mode 100644 index 000000000..19ac7b0c0 --- /dev/null +++ b/content/discover/feed-79d8b747d5fd1ebbe7ddc2a391c47b2e.md @@ -0,0 +1,48 @@ +--- +title: Dino. Communicating happiness. +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://dino.im/index.xml + feedtype: rss + feedid: 79d8b747d5fd1ebbe7ddc2a391c47b2e + websites: + https://dino.im/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://dino.im/: true + last_post_title: Insufficient message sender validation in Dino + last_post_description: |- + Severity + Medium (5.3): AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N + Affected versions + + Release version 0.4.0 and 0.4.1 + Release version 0.3.0 and 0.3.1 + Release version 0.2.2 and earlier + Nightly version 0.4.1 + last_post_date: "2023-03-23T17:00:00+01:00" + last_post_link: https://dino.im/security/cve-2023-28686/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 322e0a0b3bbb1dfa9fc13a502c10d6b6 + score_criteria: + cats: 0 + description: 0 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 11 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-7a0636cc569ace72d421c558a3d29081.md b/content/discover/feed-7a0636cc569ace72d421c558a3d29081.md deleted file mode 100644 index be239eb37..000000000 --- a/content/discover/feed-7a0636cc569ace72d421c558a3d29081.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Stephen Wolfram Writings -date: "2024-06-03T19:50:25Z" -description: Just another wordpress.wolfram.com site -params: - feedlink: https://writings.stephenwolfram.com/feed/atom/ - feedtype: atom - feedid: 7a0636cc569ace72d421c558a3d29081 - websites: - https://writings.stephenwolfram.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Historical Perspectives - - New Kind of Science - - Ruliology - relme: {} - last_post_title: Ruliology of the “Forgotten” Code 10 - last_post_description: My All-Time Favorite Science Discovery June 1, 1984—forty - years ago today—is when it would be fair to say I made my all-time favorite science - discovery. Like with basically all significant - last_post_date: "2024-06-03T19:50:25Z" - last_post_link: https://writings.stephenwolfram.com/2024/06/ruliology-of-the-forgotten-code-10/ - last_post_categories: - - Historical Perspectives - - New Kind of Science - - Ruliology - last_post_guid: 649e22eb3b3ca03c7b39b370431a5afb - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7a0e80f3afcf480c0ca6f7c07dd5f8e6.md b/content/discover/feed-7a0e80f3afcf480c0ca6f7c07dd5f8e6.md deleted file mode 100644 index 4cc403e10..000000000 --- a/content/discover/feed-7a0e80f3afcf480c0ca6f7c07dd5f8e6.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: DevOpsDays Washington DC -date: "1970-01-01T00:00:00Z" -description: Public posts from @devopsdaysdc@hachyderm.io -params: - feedlink: https://hachyderm.io/@devopsdaysdc.rss - feedtype: rss - feedid: 7a0e80f3afcf480c0ca6f7c07dd5f8e6 - websites: - https://hachyderm.io/@devopsdaysdc: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://devopsdays.org/events/2024-washington-dc/welcome/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7a10cc0c90b1eaa291008acd53792f25.md b/content/discover/feed-7a10cc0c90b1eaa291008acd53792f25.md new file mode 100644 index 000000000..3338b9dd4 --- /dev/null +++ b/content/discover/feed-7a10cc0c90b1eaa291008acd53792f25.md @@ -0,0 +1,42 @@ +--- +title: My GSoC Blog +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://sudhanshut.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 7a10cc0c90b1eaa291008acd53792f25 + websites: + https://sudhanshut.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://sudhanshut.blogspot.com/: true + last_post_title: 'GSoC 2024: Week 3-4 Report' + last_post_description: 'ProjectAdd support for the latest GIR attributes and GI-Docgen + formatting to ValadocMentorLorenz WildbergWeek 3 : default-value attribute for + propertyParsing the "default-value" attribute into a' + last_post_date: "2024-07-07T20:34:00Z" + last_post_link: https://sudhanshut.blogspot.com/2024/07/gsoc-2024-week-3-4-report.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 7ff84ff55a4650b4a86fe5a65fc3b729 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7a17ece9927b149151d5d910b6a91e60.md b/content/discover/feed-7a17ece9927b149151d5d910b6a91e60.md new file mode 100644 index 000000000..287627de1 --- /dev/null +++ b/content/discover/feed-7a17ece9927b149151d5d910b6a91e60.md @@ -0,0 +1,50 @@ +--- +title: Linux scripts and bits for fun +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://linuxbitsandscripts.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 7a17ece9927b149151d5d910b6a91e60 + websites: + https://linuxbitsandscripts.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://flosslinuxblog.blogspot.com/: true + https://linuxbitsandscripts.blogspot.com/: true + https://poetryandstuffforfun.blogspot.com/: true + https://www.blogger.com/profile/17644077996431326998: true + last_post_title: dd - useful flags + last_post_description: |- + For burning a hybrid media image to a USB stick + + dd if=debian-10.1-amd64.iso of=/dev/sdb obs=4M status=progress oflag=sync + + The critical things here: + + /dev/sdb is wherever your USB stick is + last_post_date: "2019-09-08T18:48:00Z" + last_post_link: https://linuxbitsandscripts.blogspot.com/2019/09/dd-useful-flags.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 5a99c40a049e1b166dab022706892acc + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7a26263b8dfbf5c648731c12373228dc.md b/content/discover/feed-7a26263b8dfbf5c648731c12373228dc.md index 7e2e0b826..c143db276 100644 --- a/content/discover/feed-7a26263b8dfbf5c648731c12373228dc.md +++ b/content/discover/feed-7a26263b8dfbf5c648731c12373228dc.md @@ -13,37 +13,45 @@ params: recommender: - https://alexsci.com/blog/rss.xml categories: - - Airtable - - books - - movies - - television - - videogames - - Yearly Review + - Exercism + - Rust + - git + - jq + - programming + - zsh relme: + https://advent-of-code.xavd.id/: true + https://david.reviews/: true https://mastodon.social/@xavdid: true - last_post_title: My Favorite Media of 2023 - last_post_description: Welcome one and all to the 8th annual compilation of my favorite - media of the year! This post is my favorite way to reflect on the year that… - last_post_date: "2024-01-10T00:00:00Z" - last_post_link: https://xavd.id/blog/post/favorite-media-2023/ + https://xavd.id/: true + last_post_title: Backdating my Exercism Repo + last_post_description: Though I'd been solving Exercism puzzles for well over a + year, I hadn't taken the time to put my solutions in a git repo (publicly… + last_post_date: "2024-07-04T00:00:00Z" + last_post_link: https://xavd.id/blog/post/backdating-my-exercism-repo/ last_post_categories: - - Airtable - - books - - movies - - television - - videogames - - Yearly Review - last_post_guid: cdc9f632496a4c2c4a612ba4b344309c + - Exercism + - Rust + - git + - jq + - programming + - zsh + last_post_language: "" + last_post_guid: 4b42bc9dcb680b64dee291b219280278 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 18 + score: 21 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-7a2c75b3a890266eb68455cfc157b735.md b/content/discover/feed-7a2c75b3a890266eb68455cfc157b735.md deleted file mode 100644 index 12d4866e0..000000000 --- a/content/discover/feed-7a2c75b3a890266eb68455cfc157b735.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Dougal Matthews - openstack -date: "2013-11-18T08:34:00Z" -description: "" -params: - feedlink: https://www.dougalmatthews.com/feeds/tag/openstack.atom.xml - feedtype: atom - feedid: 7a2c75b3a890266eb68455cfc157b735 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - python - - openstack - - personal - relme: {} - last_post_title: Joining Red Hat - last_post_description: |- - Today is my first day working for Red Hat where I will be joining the - OpenStack teams. I will be specifically working on Tuskar under the newly - incubated TripleO project. Tuskar is focused towards - last_post_date: "2013-11-18T08:34:00Z" - last_post_link: http://www.dougalmatthews.com/2013/Nov/18/joining-red-hat/ - last_post_categories: - - python - - openstack - - personal - last_post_guid: 7546ee9373d9391276720978051fa73e - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7a38a36d5aec6515be18bb1b47b08848.md b/content/discover/feed-7a38a36d5aec6515be18bb1b47b08848.md new file mode 100644 index 000000000..4948d51e9 --- /dev/null +++ b/content/discover/feed-7a38a36d5aec6515be18bb1b47b08848.md @@ -0,0 +1,113 @@ +--- +title: Audycja Molium - Myśli inspirowane literaturą. +date: "1970-01-01T00:00:00Z" +description: Rozwój duchowy, filozofia, metafizyka. Wrażenia z lektury, postacie autorów. + Zjawiska literackie oraz okołoksiążkowe ciekawostki. +params: + feedlink: https://moliumpodcast.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 7a38a36d5aec6515be18bb1b47b08848 + websites: + https://moliumpodcast.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - '"Rozmowy z Bogiem"' + - Android + - Andrzej Pilipiuk + - Anki + - Apple + - Arthur C. Clarke + - Barbara Erskine + - Booth Tarkington + - Brian Herbert + - Diuna + - Dolores Cannon + - Eckhart Tolle + - Frank Herbert + - Gentry Lee + - Hamilton Peter + - Henry David Thoreau + - Henry De Vere Stacpoole + - IT + - Irving Stone + - Isaac Asimov + - Joseph Murphy + - Kerstin Gier + - Kevin J. Anderson + - Kuki Gallmann + - Leander Kahney + - Marie Corelli + - Maurycy Maeterlinck + - Melchior Wańkowicz + - Michael A. Cremo + - Mingmei Yip + - Molium Snippets + - Neale Donald Walsch + - Neil Gaiman + - Pan Samochodzik + - Rama + - Richard L. Thompson + - Richard Stallman + - Robert Ludlum + - Robert Monroe + - Stephen King + - Stephen R Donaldson + - Steve Wozniak + - Tunele + - Virginia Woolf + - William Wharton + - Zbigniew Nienacki + - Złote Myśli + - biografie + - ciekawostki + - cykl waldenowski + - lektorzy audiobooków + - news + - podcast + - przemyślenia i refleksje + - rozwój duchowy + - s.f. + - tożsamość + - wrażenia z lektury + - wywiady + relme: + https://aboutthomasleigh.blogspot.com/: true + https://handynewsreader.blogspot.com/: true + https://jaktamjaponski.blogspot.com/: true + https://moliumpodcast.blogspot.com/: true + https://smartthemesfor.blogspot.com/: true + https://thomascafepodcast.blogspot.com/: true + https://thomasleighthemes.blogspot.com/: true + https://thomasleighuniverse.blogspot.com/: true + https://www.blogger.com/profile/01268074830941697525: true + https://zrodlokreacji.blogspot.com/: true + last_post_title: 'Molium #57 - Przeżyć, czy „przeczytać” życie?' + last_post_description: 'Dziś – inspirowany cytatami Henry’ego Thoreau oraz Eckharta + Tolle – opowiadam o kluczowych: relacji ze sobą samym/samą, oraz uważnym „czytaniu + duchowej treści życia”. Czas dla Siebie,' + last_post_date: "2020-03-21T19:00:00Z" + last_post_link: https://moliumpodcast.blogspot.com/2020/03/molium-57-przezyc-czy-przeczytac-zycie.html + last_post_categories: + - Złote Myśli + - podcast + last_post_language: "" + last_post_guid: f45c78993175e58fb3f879cb51d88b20 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7a3cb8200a99eb008e6a16def95d1df7.md b/content/discover/feed-7a3cb8200a99eb008e6a16def95d1df7.md new file mode 100644 index 000000000..29c04bfaf --- /dev/null +++ b/content/discover/feed-7a3cb8200a99eb008e6a16def95d1df7.md @@ -0,0 +1,46 @@ +--- +title: message to... +date: "2023-06-20T12:41:42Z" +description: A videoblogging project, an international conversation, message to the + Americans? Message to the French? Message to the Turks? +params: + feedlink: https://feeds.feedburner.com/MessageTo + feedtype: rss + feedid: 7a3cb8200a99eb008e6a16def95d1df7 + websites: + https://messageto.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - International + relme: + https://gfdjax.blogspot.com/: true + https://koweycode.blogspot.com/: true + https://messageto.blogspot.com/: true + https://www.blogger.com/profile/11175806459477851520: true + last_post_title: to the Americans 5 - Julien + last_post_description: Julien comments to the American people about astronomy, telescopes + and the economy. In French, English subtitles. + last_post_date: "2006-03-18T22:52:00Z" + last_post_link: http://messageto.blogspot.com/2006/03/to-americans-5-julien.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 8e648e111d7560c554d990241a3b75fd + score_criteria: + cats: 1 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: true + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-7a439af2bc6b1888482bf1ecbd20fa0c.md b/content/discover/feed-7a439af2bc6b1888482bf1ecbd20fa0c.md deleted file mode 100644 index 1c40d19ee..000000000 --- a/content/discover/feed-7a439af2bc6b1888482bf1ecbd20fa0c.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Popular Comments Across MetaFilter -date: "2024-06-04T13:03:03Z" -description: Comments from across all sites, marked as a favorite most often in the - past seven days. -params: - feedlink: https://rss.metafilter.com/popular-comments.rss - feedtype: rss - feedid: 7a439af2bc6b1888482bf1ecbd20fa0c - websites: - https://projects.metafilter.com/: false - https://www.metafilter.com/: false - https://www.metafilter.com/favorites/all: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: By phunniemee in "Is "please no name calling" a big ask?" on MetaTalk - last_post_description: Well the important thing is we've still found ways to scold - each other over dumb shit instead of focusing on the actual problems. Never change. - last_post_date: "2024-06-03T17:01:41Z" - last_post_link: http://metatalk.metafilter.com/26445/Is-please-no-name-calling-a-big-ask#1424993 - last_post_categories: [] - last_post_guid: 11177046efd971903b738b381c8ec3e6 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7a6685c391b6db0268ac5d3f03a7a36c.md b/content/discover/feed-7a6685c391b6db0268ac5d3f03a7a36c.md index 368f58d93..16c291b4d 100644 --- a/content/discover/feed-7a6685c391b6db0268ac5d3f03a7a36c.md +++ b/content/discover/feed-7a6685c391b6db0268ac5d3f03a7a36c.md @@ -12,19 +12,15 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: [] relme: https://github.com/shiflett: true https://mastodon.social/@shiflett: true - https://twitter.com/shiflett: false + https://shiflett.org/: true last_post_title: Email Authentication last_post_description: |- Last month, we sent the first issue of the Faculty newsletter since the pandemic. We didn’t know what to expect. Would people remember us? Did they want to hear from us? @@ -33,17 +29,22 @@ params: last_post_date: "2024-01-31T09:25:11-07:00" last_post_link: http://shiflett.org/blog/2024/email-authentication last_post_categories: [] + last_post_language: "" last_post_guid: 6378e69e7aebe4a99a3262a53017e7ed score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 19 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-7a8a07f94d7914bd388a54332c571a7b.md b/content/discover/feed-7a8a07f94d7914bd388a54332c571a7b.md deleted file mode 100644 index f60668306..000000000 --- a/content/discover/feed-7a8a07f94d7914bd388a54332c571a7b.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Continuous Rambling -date: "1970-01-01T00:00:00Z" -description: Writing about developer tools, SaaS, CI/CD, and every problem I encounter. -params: - feedlink: https://julien.danjou.info/feed - feedtype: rss - feedid: 7a8a07f94d7914bd388a54332c571a7b - websites: - https://julien.danjou.info/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: 'Discovering the Tech Community in Toulouse: A Three-Year Journey' - last_post_description: It's been 3 years now since I moved from Paris to Toulouse. - last_post_date: "2024-06-25T07:32:57Z" - last_post_link: https://julien.danjou.info/p/discovering-the-tech-community-in - last_post_categories: [] - last_post_guid: be06a5cd61ede87db6e2d90eb0970d37 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7a8cc19fc265d22487aa22b0fe1445a6.md b/content/discover/feed-7a8cc19fc265d22487aa22b0fe1445a6.md deleted file mode 100644 index 233ee9c96..000000000 --- a/content/discover/feed-7a8cc19fc265d22487aa22b0fe1445a6.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Matt -date: "2024-06-04T13:34:11Z" -description: Founder, [Musing Studio](https://musing.studio) / [Write.as](https://write.as). -params: - feedlink: https://write.as/matt/feed/ - feedtype: rss - feedid: 7a8cc19fc265d22487aa22b0fe1445a6 - websites: - https://write.as/matt/: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: [] - relme: - https://write.as/matt/: true - last_post_title: FOSDEM 2024 - last_post_description: "" - last_post_date: "2024-03-06T18:36:47Z" - last_post_link: https://write.as/matt/fosdem-2024?pk_campaign=rss-feed - last_post_categories: [] - last_post_guid: e76f8e33425f78cf11cfc77c0253993a - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 15 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7a93f8feec8a1f589881b9f1d46bff11.md b/content/discover/feed-7a93f8feec8a1f589881b9f1d46bff11.md deleted file mode 100644 index 2c04df1bd..000000000 --- a/content/discover/feed-7a93f8feec8a1f589881b9f1d46bff11.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: juni im juni -date: "1970-01-01T00:00:00Z" -description: Public posts from @juni@mastodon.sdf.org -params: - feedlink: https://mastodon.sdf.org/@juni.rss - feedtype: rss - feedid: 7a93f8feec8a1f589881b9f1d46bff11 - websites: - https://mastodon.sdf.org/@juni: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://mew.tv/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7a9e3b676df292c142c061f9b9c0cedd.md b/content/discover/feed-7a9e3b676df292c142c061f9b9c0cedd.md deleted file mode 100644 index 9ac9456e4..000000000 --- a/content/discover/feed-7a9e3b676df292c142c061f9b9c0cedd.md +++ /dev/null @@ -1,54 +0,0 @@ ---- -title: FewBar.com - Make It Good -date: "2023-10-18T17:56:00Z" -description: This is the personal website of Clint Byrum. Any words on here are expressly - Clint's, and not those of whatever employer he has at the moment. Copyright (c) - Clint Byrum, 2020 -params: - feedlink: https://fewbar.com/category/tech/cloud-tech/openstack-cloud-tech/feed/ - feedtype: rss - feedid: 7a9e3b676df292c142c061f9b9c0cedd - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - opensource - - governance - - openstack - - cncf - - Technology - - Open Source - - OpenStack - - CNCF - relme: {} - last_post_title: Free and Open Source Leaders -- You need a President - last_post_description: |- - Recently I was lucky enough to be invited to attend the Linux Foundation - Open Source Leadership Summit. The event was stacked with many - of the people I consider mentors, friends, and definitely - last_post_date: "2017-02-18T00:00:00Z" - last_post_link: http://fewbar.com/2017/02/open-source-governance-needs-presidents/ - last_post_categories: - - opensource - - governance - - openstack - - cncf - - Technology - - Open Source - - OpenStack - - CNCF - last_post_guid: fc7666e26b4cd8163c3bf74af3b18faa - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7aada21b22f67c326d1c1f39d7f0b7a3.md b/content/discover/feed-7aada21b22f67c326d1c1f39d7f0b7a3.md deleted file mode 100644 index dd0d53a80..000000000 --- a/content/discover/feed-7aada21b22f67c326d1c1f39d7f0b7a3.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Ton Zijlstra -date: "1970-01-01T00:00:00Z" -description: Public posts from @ton@m.tzyl.eu -params: - feedlink: https://m.tzyl.eu/@ton.rss - feedtype: rss - feedid: 7aada21b22f67c326d1c1f39d7f0b7a3 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7af98844b98fedc3a07b7569b9b54110.md b/content/discover/feed-7af98844b98fedc3a07b7569b9b54110.md new file mode 100644 index 000000000..c94a2e4cc --- /dev/null +++ b/content/discover/feed-7af98844b98fedc3a07b7569b9b54110.md @@ -0,0 +1,66 @@ +--- +title: Thomas Cafe +date: "2024-07-05T05:01:50-07:00" +description: Audycja uprzyjemniająca życie, serwując garść przydatnych porad przy + smacznej wirtualnej kawie :) +params: + feedlink: https://thomascafepodcast.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 7af98844b98fedc3a07b7569b9b54110 + websites: + https://thomascafepodcast.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Android + - Anki + - Chrome + - Inne + - OoBE + - ciekawostki + - komputery + - kulinarnie + - medytacja + - nauka + - rozwój duchowy + - rozwój osobity + - smartfony + relme: + https://aboutthomasleigh.blogspot.com/: true + https://handynewsreader.blogspot.com/: true + https://jaktamjaponski.blogspot.com/: true + https://moliumpodcast.blogspot.com/: true + https://smartthemesfor.blogspot.com/: true + https://thomascafepodcast.blogspot.com/: true + https://thomasleighthemes.blogspot.com/: true + https://thomasleighuniverse.blogspot.com/: true + https://www.blogger.com/profile/01268074830941697525: true + https://zrodlokreacji.blogspot.com/: true + last_post_title: Szukasz alternatywnych programów? + last_post_description: "" + last_post_date: "2021-02-08T15:21:16-08:00" + last_post_link: https://thomascafepodcast.blogspot.com/2021/02/szukasz-alternatywnych-programow.html + last_post_categories: + - Android + - komputery + - smartfony + last_post_language: "" + last_post_guid: 28a7112f5f6d123c19ed35462bd890eb + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7b1c930175abd8bc3a34ace658a26b5f.md b/content/discover/feed-7b1c930175abd8bc3a34ace658a26b5f.md deleted file mode 100644 index 9dff35f84..000000000 --- a/content/discover/feed-7b1c930175abd8bc3a34ace658a26b5f.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for Happy coding -date: "1970-01-01T00:00:00Z" -description: A Free Software developer weblog -params: - feedlink: https://eocanha.org/blog/comments/feed/ - feedtype: rss - feedid: 7b1c930175abd8bc3a34ace658a26b5f - websites: - https://eocanha.org/blog/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Figuring out corrupt stacktraces on ARM by eocanha - last_post_description: |- - In reply to Anand. - - Not sure if I posted my previous answer as a reply or not. Just check the - last_post_date: "2023-01-20T14:31:14Z" - last_post_link: https://eocanha.org/blog/2020/10/16/figuring-out-corrupt-stacktraces-on-arm/#comment-57922 - last_post_categories: [] - last_post_guid: 0e51ca0dbebfd9eec4e354fff614a4aa - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7b2027f0edd81310183f24bf0246d78d.md b/content/discover/feed-7b2027f0edd81310183f24bf0246d78d.md index 88613c6c4..d891dd355 100644 --- a/content/discover/feed-7b2027f0edd81310183f24bf0246d78d.md +++ b/content/discover/feed-7b2027f0edd81310183f24bf0246d78d.md @@ -13,40 +13,41 @@ params: recommended: [] recommender: [] categories: - - NATE -LSI - - Dicas - - Editor Musical - - Projeto Piloto - - FISL - - OLPC - - Curiosidades - - Game Jam Brasil - - Build - - LIA - - Python - - Fotos - - Oficina de Desenho - - Sugar - - UFSCar - Ajuda - Bug + - Build - CSound + - Curiosidades + - Dicas - Dúvidas + - Editor Musical + - FISL - FTP - Flash Player + - Fotos + - Game Jam Brasil - Global Game Jam + - LIA + - NATE -LSI + - OLPC + - Oficina de Desenho - Oficinas + - Projeto Piloto - Pygame + - Python - SBIE2007 + - Sugar - UCA + - UFSCar - USP + - X - comics - licitação - mobilis - pregão - svg relme: - https://www.blogger.com/profile/02383077183505946406: true + https://olpcdesenvolvedores.blogspot.com/: true last_post_title: First Global Game Jam last_post_description: Acontecerá no dia 30 de janeiro de 2009 em São Carlos, nas dependências do ICMC, a Global Game Jam.A Global Game Jam é uma iniciativa @@ -58,17 +59,22 @@ params: - LIA - UFSCar - USP + last_post_language: "" last_post_guid: cc543428dd7bf3961fe641e8f22e5e63 score_criteria: cats: 5 description: 3 + feedlangs: 0 postcats: 3 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 18 + score: 21 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-7b2294b47f38d8c9df95b0bd988a7c34.md b/content/discover/feed-7b2294b47f38d8c9df95b0bd988a7c34.md deleted file mode 100644 index ceda95ec2..000000000 --- a/content/discover/feed-7b2294b47f38d8c9df95b0bd988a7c34.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: From The Forests of Arduinna -date: "1970-01-01T00:00:00Z" -description: A druid's essays on politics, culture, and the sacred at the end of empire. -params: - feedlink: https://rhyd.substack.com/feed - feedtype: rss - feedid: 7b2294b47f38d8c9df95b0bd988a7c34 - websites: - https://rhyd.substack.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: 'Sundry Notes: June' - last_post_description: Conversions, The High Priestess, Trump, and Rewilding Witchcraft - last_post_date: "2024-06-03T11:26:10Z" - last_post_link: https://rhyd.substack.com/p/sundry-notes-june - last_post_categories: [] - last_post_guid: 4b7de2087043768096f67c995a348c3d - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7b2652aee50b4e06a4419a35751f7123.md b/content/discover/feed-7b2652aee50b4e06a4419a35751f7123.md new file mode 100644 index 000000000..b38a3c6dd --- /dev/null +++ b/content/discover/feed-7b2652aee50b4e06a4419a35751f7123.md @@ -0,0 +1,148 @@ +--- +title: Reggae And SKA +date: "2024-07-04T14:16:39+08:00" +description: The power of philosophy floats through my head, light like a feather, + heavy as lead. - Bob Marley +params: + feedlink: https://reggae-and-ska.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 7b2652aee50b4e06a4419a35751f7123 + websites: + https://reggae-and-ska.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 7Nin Matsuri - Summer Reggae Rainbow [Video Clip] + - Augustus Pablo - Jah Light + - Augustus Pablo - Skanking Easy + - Bad Manners - Walking in The Sunshine [Video Clip] + - BaroBax - Baba to ki hasti + - Bob Marley - Could You Be Loved [Video Clip] + - Bob Marley - Forever Loving Jah [Video Clip] + - Bob Marley - I know a Place [Video Clip] + - Bob Marley - Is This Love [Live] + - Bob Marley - Is This Love [Video Clip] + - Bob Marley - Jammin' [Video Clip] + - Bob Marley - Kinky Reggae [Video Clip] + - Bob Marley - No Woman No Cry [Video Clip] + - Bob Marley - One Love [Video Clip] + - Bob Marley - Red Red Wine + - Bob Marley - Redemption Song [Live] + - Bob Marley - Redemption Song [Video Clip] + - Bob Marley - Skinhead Reggae - 1970 [Video Clip] + - Bob Marley - Sun Is Shining [Video Clip] + - Bob Marley - Three Little Birds [Video Clip] + - Bombskare - Fistful Of Dynamite + - Byron Lee And The DRAGONARiES - Ska Jamaica + - CASSIE Me and U reggae remix BOST and BIM + - Dance Hall Crashers - Mr. Blue [Live] + - Dawn Penn - You Don't Love Me (No + - Gerhana SKA Cinta + - Gerhana SKA Cinta - Hadirnya Cinta [Live] + - Gerhana SKA Cinta - Mimpi [Live] + - Gerhana SKA Cinta - Senyuman Ragamu [Video Clip] + - Gerhana SKA Cinta - Terpesona [Video Clip] + - Gerhana SKA Cinta - The Skinhead Superstar [Live] + - Gerhana SKA Cinta - This Is SKA [Video Clip] + - Inspector Gadget - SKA Version [Video Clip] + - J. Boog + - Jah Maoli + - Jimmy Cliff - Reggae Night [Video Clip] + - Laurel Aitken - Skinhead Boss + - Laurel Aitken - Skinhead [Live] + - Les Skalopes - Kid Hunt - Chasse à l'enfant + - Mr. Symarip + - Mr. Vegas - Tek Weh Yuself + - Nina Hagen - African Reggae [Video Clip] + - No Doubt + - No No) + - ORE SKA BAND - Knife n Fork + - ORE SKA BAND - Wasuremono + - Ocho Y Media - MiniClip + - Ocho Y Media - SKACHA + - Oi Skall Mates - Sadness [Video Clip] + - PRiNCE BUSTER - Whine And Grine [LiVE'98] + - PUFFY x Tokyo Ska Paradise Orchestra - Hazumu Rhythm + - Peter Tosh - Get Up Stand Up [Live] + - Peter Tosh - Johnny B. Goode [Live] + - Peter Tosh - Legalize It [Video Clip] + - Peter Tosh - Veil Of Isis + - Peter Tosh and Bob Marley - TWO TRUE LEGENDS + - Phyllis Dillon - Picture On The Wall + - Polemic - Do SKA + - Polemic - Jah Live + - Polemic - Škandál + - PureVibracion + - Ray Darwin - Peoples Choice + - Republic Of Brickfields - Emansipasi [Live] + - Republic Of Brickfields - Reggae + - Rocksteady The Roots Of Reggae Trailer + - SKA - Special..From Jamaica To The UK + - SKA-P - Intifada + - SKA-P - NI FU NI FA + - SKA-P - Welcome To Hell + - Shaggy - Street Bullies Medley + - Sista Gracy - My Praises + - Sista Gracy - Spiritual A Humble + - Ska-P - Cannabis + - Skudap Skudip - Buktikanlah + - Skudap Skudip - Potret + - Skudap Skudip - SKA La La + - Spawnbreezie + - Steel Pulse - No More Weapons [Video Clip] + - Symarip - Must Catch A Train [Video Clip] + - Symarip - Skinheads Dem A Come + - The Aggrolites - Mr. Misery + - The Madness - Baggy Trousers [Video Clip] + - The Madness - I Pronounce You [Video Clip] + - The Madness - It Must Be Love [Video Clip] + - The Madness - My Girl [Video Clip] + - The Madness - One Step Beyond [Video Clip] + - The Madness - Our House [Video Clip] + - The Madness - Shame And Scandal [Video Clip] + - The Paragons - Tide Is High + - The Selecter - Missing Words [Video Clip] + - The Selecter - Three Minute Hero [Live] + - The Skatalites - Live in Barcelona [March 29:2006] + - The Specials - A Message To You Rudy [Live] + - The Specials - Gangsters [Video Clip] + - The Specials - Ghost Town [Video Clip] + - The Specials - Rat Race [Video Clip] + - The Specials - Rude Boys Outta Jail [Live] + - The Specials - Skinhead Moonstomp [Live] + - Tipe-X - Sakit Hati + - Tokyo SKA Paradise Orchestra - Skaravan [Live] + - Tony Q Rastafara - Republik Sulap + - Toots and the Maytals - Sweet and Dandy [Video Clip] + - Toots and the Maytals- 54-46 Was My Number-Trojan Reggae [Video Clip] + - Tribal Seeds + - Wayne Wade - I Love You Too Much + - Wayne Wade - Lady (Reggae) + - Winston Mc Anuff - Reggae On Broadway [Live] + relme: + https://reggae-and-ska.blogspot.com/: true + last_post_title: Joe White & Chuck - One Nation + last_post_description: "" + last_post_date: "2019-03-03T10:00:05+08:00" + last_post_link: https://reggae-and-ska.blogspot.com/2019/03/joe-white-chuck-one-nation.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 15da03965f25fc7723ee578c82ea057a + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7b4c4b2778f3fda80938d47d27f1e0bd.md b/content/discover/feed-7b4c4b2778f3fda80938d47d27f1e0bd.md new file mode 100644 index 000000000..ede2c631a --- /dev/null +++ b/content/discover/feed-7b4c4b2778f3fda80938d47d27f1e0bd.md @@ -0,0 +1,47 @@ +--- +title: "" +date: "1970-01-01T00:00:00Z" +description: Free Software, Civil Liberties, Copyright, Pirates and other stuff +params: + feedlink: https://blog.grobox.de/feed/ + feedtype: rss + feedid: 7b4c4b2778f3fda80938d47d27f1e0bd + websites: + https://blog.grobox.de/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - english + relme: + https://blog.grobox.de/: true + https://chaos.social/@grote: true + https://github.com/grote: true + https://gitlab.com/grote: true + last_post_title: Disable Google Android Instrumentation Test Tracking + last_post_description: Google has started to track Android developers that run instrumentation + tests sending all sorts of data about you and your device to Google Analytics. + The opt-out solution they give is to add these + last_post_date: "2019-11-13T17:04:59Z" + last_post_link: https://blog.grobox.de/2019/disable-google-android-instrumentation-test-tracking/ + last_post_categories: + - english + last_post_language: "" + last_post_guid: 1bc7d535fff5a1b5fbfa61add634673b + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 0 + website: 2 + score: 12 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-7b58e1065cc2778f7072a23f1e58102b.md b/content/discover/feed-7b58e1065cc2778f7072a23f1e58102b.md new file mode 100644 index 000000000..13bc2a6cf --- /dev/null +++ b/content/discover/feed-7b58e1065cc2778f7072a23f1e58102b.md @@ -0,0 +1,254 @@ +--- +title: Throne of Salt +date: "2024-07-07T16:45:01-04:00" +description: Many Fantastic Things +params: + feedlink: https://throneofsalt.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 7b58e1065cc2778f7072a23f1e58102b + websites: + https://throneofsalt.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - '#DIY30' + - 1k vampire + - 20 questions + - 40k + - 5e + - 60yearsinspace + - BY A WOMAN'S HAND + - DCC + - DCO with Randos + - DIY + - DM material + - DOG GOD + - Distant Lands of DIY + - FLAILSNAILS + - Folk + - GLOG + - GM Exercises + - Hainish + - Henry Justice Ford + - Knave + - LARGE OPINIONS + - Lancer + - Le Guin + - Lighhouse + - Mother Stole Fire + - Mother Stole the Backgrounds + - OSR + - Orions Arm + - Pen & Tam + - QHW + - RPGaDAY2017 + - SCP + - SSSS + - Salties + - Stars Without Number + - THE HAUL + - Tomb of Annihilation + - UVG + - WEG + - WoTC material + - abandoned project + - actually getting things played + - adventure + - aliens + - animals + - anime + - atumaic mysteries + - avatar + - backgrounds + - bad ideas + - banner saga + - barbarian prince + - bestiary + - biblical + - blood in the chocolate + - bookpost + - books + - call of cthulhu + - challenge + - characters + - chase the black rabbit + - class + - clerics + - conlang + - conlang notebook + - conversion + - cosmology + - critique + - crusader kings + - cyberpunk + - d&d + - dan's fanfiction hour + - danscape + - dawn of worlds + - deep carbon observatory + - deep time + - degenesis + - delta eclipse + - delta green + - design corner + - dog + - download + - dungeon + - dungeon bitches + - dungeon hobo + - eclipse phase + - ecstatic visions + - eerievember + - esoteric enterprises + - essay + - fear and hunger + - fiction + - filler + - food + - foppery and whim + - fwea + - games I made + - games in my folders + - goblinwatch + - gods + - great discape + - great screaming hell + - grimdark future + - guest post + - gvfl + - hack + - hellcrawl + - hexmap + - holiday + - holy shit it's finally done. + - horror + - hot springs island + - hubris + - humble art + - index + - ironsworn + - items + - jackalope + - justice bundle + - kicking it old-school + - lamentations + - language + - lazy dm + - lighthouse + - linguistics + - location + - lore + - magic + - magnus archives + - major project + - map + - mechanics + - minimodules + - minipost + - miscellanea + - monsters + - mothership + - music + - musing + - mutations + - mythos + - new sun + - news + - normal books + - not gaming related + - npc + - one page dungeon contest + - other games + - paladins + - pamphlet + - patreon + - pdf + - play report + - podcasts + - poetry + - pokemon + - progression + - project + - public domain fun + - published work + - pyre + - question and answer + - quick ones + - quiet year + - race + - random tables + - religion + - reread + - review + - revisit + - ruinations + - rules + - santicorn + - scenario + - sci-fi + - scrapped posts + - serious + - setting + - setting on the steppe + - shadow of the eschaton + - silly + - slang + - slush pile + - solarcrawl + - solo game + - solo games + - sorta review + - sotdl + - space + - space politics story + - spaceship + - spells + - star wars + - storytime + - stranger things + - the books were wrong + - tome of beasts + - tower unto heaven + - troika + - unfinished wonders + - unicorn meat + - unused ideas + - update + - video games + - witches + - wizard + - year in review + - yellow king + - zine + relme: + https://throneofsalt.blogspot.com/: true + last_post_title: Mothership Patches 3 + last_post_description: "" + last_post_date: "2024-07-07T16:44:26-04:00" + last_post_link: https://throneofsalt.blogspot.com/2024/07/mothership-patches-3.html + last_post_categories: + - mothership + - random tables + last_post_language: "" + last_post_guid: c1fdfec7e829d933edff64b1929a9014 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 25 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7b759f077ee0c4d4cc0b02c6878d3158.md b/content/discover/feed-7b759f077ee0c4d4cc0b02c6878d3158.md new file mode 100644 index 000000000..0d63e97f7 --- /dev/null +++ b/content/discover/feed-7b759f077ee0c4d4cc0b02c6878d3158.md @@ -0,0 +1,54 @@ +--- +title: The Mindcaster +date: "2024-02-20T06:07:34-03:00" +description: |- + Carlos Eduardo's blog... + Build it now to enjoy it later. +params: + feedlink: https://themindcaster.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 7b759f077ee0c4d4cc0b02c6878d3158 + websites: + https://themindcaster.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - apple + - boost + - browser + - c++ + - erlang + - evernote + - mac + - mp3 + - ogg + - psp + - python + - stackless + relme: + https://themindcaster.blogspot.com/: true + last_post_title: Using Soocial to keep contacts in sync + last_post_description: "" + last_post_date: "2009-09-16T11:33:01-03:00" + last_post_link: https://themindcaster.blogspot.com/2009/09/using-soocial-to-keep-contacts-in-sync.html + last_post_categories: [] + last_post_language: "" + last_post_guid: d2a5851185f85877b49ad01e47c4138e + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7b77d237d039c89fdab89eb7763a6ebc.md b/content/discover/feed-7b77d237d039c89fdab89eb7763a6ebc.md deleted file mode 100644 index 782b5798b..000000000 --- a/content/discover/feed-7b77d237d039c89fdab89eb7763a6ebc.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: openstack – wrestling penguins -date: "1970-01-01T00:00:00Z" -description: Linux penguins, that is... -params: - feedlink: https://wrestlingpenguins.wordpress.com/category/openstack/feed/ - feedtype: rss - feedid: 7b77d237d039c89fdab89eb7763a6ebc - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - openstack - - ubuntu - relme: {} - last_post_title: OpenStack 2023.2 Bobcat for Ubuntu 22.04 LTS - last_post_description: The Ubuntu OpenStack team at Canonical is pleased to announce - the general availability of OpenStack 2023.2 Bobcat on Ubuntu 22.04 LTS (Jammy - Jellyfish). For more details on the release, please see - last_post_date: "2023-10-06T12:47:34Z" - last_post_link: https://wrestlingpenguins.wordpress.com/2023/10/06/openstack-2023-2-bobcat-for-ubuntu-22-04-lts/ - last_post_categories: - - openstack - - ubuntu - last_post_guid: 78322bff884311d9346289e0f5a4dbc4 - score_criteria: - cats: 0 - description: 3 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7b8e395cbe4163800b6ed9cc654046f3.md b/content/discover/feed-7b8e395cbe4163800b6ed9cc654046f3.md new file mode 100644 index 000000000..b372c340a --- /dev/null +++ b/content/discover/feed-7b8e395cbe4163800b6ed9cc654046f3.md @@ -0,0 +1,44 @@ +--- +title: Nathan Knowler +date: "1970-01-01T00:00:00Z" +description: Some words. +params: + feedlink: https://knowler.dev/feed.xml + feedtype: rss + feedid: 7b8e395cbe4163800b6ed9cc654046f3 + websites: + https://knowler.dev/: true + blogrolls: [] + recommended: [] + recommender: + - http://scripting.com/rss.xml + - http://scripting.com/rssNightly.xml + categories: [] + relme: + https://github.com/knowler: true + https://knowler.dev/: true + https://sunny.garden/@knowler: true + last_post_title: Read the Platform + last_post_description: A Web Platform reading club. + last_post_date: "2024-06-29T00:55:18Z" + last_post_link: https://knowler.dev/blog/read-the-platform + last_post_categories: [] + last_post_language: "" + last_post_guid: 510ab36cc6728507775eaab099db52f5 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-7b96b423bb078389d84df68cef88b168.md b/content/discover/feed-7b96b423bb078389d84df68cef88b168.md new file mode 100644 index 000000000..ddefca4f2 --- /dev/null +++ b/content/discover/feed-7b96b423bb078389d84df68cef88b168.md @@ -0,0 +1,142 @@ +--- +title: Elisa gayle As a Wife. +date: "1970-01-01T00:00:00Z" +description: Elisa gayle as a wife is so good. +params: + feedlink: https://rofessorajaneandrade.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 7b96b423bb078389d84df68cef88b168 + websites: + https://rofessorajaneandrade.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Know about elisa . + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Elisa Gayle As a Wife + last_post_description: |- + This article will depict every one of the three primary + methodologies and examine their relative benefits by posting their advantages + and disadvantages. I also desire to subdue any misguided judgment + last_post_date: "2021-04-26T18:05:00Z" + last_post_link: https://rofessorajaneandrade.blogspot.com/2021/04/elisa-gayle-as-wife.html + last_post_categories: + - Know about elisa . + last_post_language: "" + last_post_guid: 37188f9c329bdea92f385ca0478394ea + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7ba0c294ca4e0f7b3ec818dafd80b01a.md b/content/discover/feed-7ba0c294ca4e0f7b3ec818dafd80b01a.md index 9928af3e2..f12d3cb6e 100644 --- a/content/discover/feed-7ba0c294ca4e0f7b3ec818dafd80b01a.md +++ b/content/discover/feed-7ba0c294ca4e0f7b3ec818dafd80b01a.md @@ -12,74 +12,103 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: + - Ali Kassim + - B2C e-commerce + - Copia + - Kenn Abuya + - Next Wave + - Sendy + - agritech + - e-logistics + - iProcure + - آي بروكيور (iProcure) + - آي بريكيور (iProcure) + - الإيسيسكو + - تكنوضاد + - جريدة الاتحاد الاشتراكي + - د.محمد فتحي عبد العال + - دينا الهواري + - سيندي (Sendy) + - صونيا أسمهان حليمي - صيدُ الشابكة - - Jakob Greenfeld - - James Cussen - - Play Permissionless - - The Living Philosophy - - مهدي حسين - - موقع SciDev.Net - - مؤسسة “كنوز يوغرطا ” للنشر - - نشرة Play Permissionless - - نشرة The Living Philosophy - - نشرة الخوارزمية لتحديثات الذكاء الاصطناعي - - هارون حمادو - - أحمد سمير عبد الحميد - - بنزين سكينة - - بروين حبيب - - جوردان بيترسون - - جوردان بِ. بيترسون - - د. عبدالله المدني - - د.أحمد الخميسى - - عماد الدين حسين + - 'عالِم: مجلَّة الإيسيسكو للُّغة العربيَّة' + - عبد اللطيف أبي القاسم + - عبد المجيد سباطة + - فاطمة المزروعي + - فراس دالاتي + - مازن صاحب + - مجلة الإيسيسكو العلمية المحكمة للغة العربية (عالم) + - مدونة سالمة عيد + - مدونة ممدوح نجم + - مدوّنة سهام سلطان + - مركز اللغة العربية للناطقين بغيرها + - منظمة العالم الإسلامي للتربية والعلوم والثقافة (إيسيسكو) + - موقع درج + - نشرة Next Wave + - "نشرة طاقة نور⚡\U0001F305 البريدية" relme: {} - last_post_title: 'د.أحمد الخميسى: “نحو تسعين بالمئة من كلمات العامية المصرية هى - كلمات فصيحة”' - last_post_description: 'ملاحظة شخصية: لاحظتُ أن غير العرب من الأمازيغ والأكراد عندما - يكتبون ويبدعون بالعربية أفضل بكثير من العرب' - last_post_date: "2024-06-04T11:05:12Z" - last_post_link: https://youdo.blog/2024/06/04/%d8%af-%d8%a3%d8%ad%d9%85%d8%af-%d8%a7%d9%84%d8%ae%d9%85%d9%8a%d8%b3%d9%89-%d9%86%d8%ad%d9%88-%d8%aa%d8%b3%d8%b9%d9%8a%d9%86-%d8%a8%d8%a7%d9%84%d9%85%d8%a6%d8%a9-%d9%85%d9%86-%d9%83%d9%84%d9%85/ + last_post_title: 'أخطاء مُكررة يقع فيها الكثير من مُدراء الشركات الناشئة: تجنُّبها + بمعرفة ما هي أولًا' + last_post_description: افتح التدوينة لتعرف ما أفضل إجابة لسؤال مقابلة العمل "ما + نقاط ضعفك؟" + last_post_date: "2024-07-09T00:38:47Z" + last_post_link: https://youdo.blog/2024/07/09/these-companies-received-millions-but-struggled-to-adjust-to-market-changes/ last_post_categories: + - Ali Kassim + - B2C e-commerce + - Copia + - Kenn Abuya + - Next Wave + - Sendy + - agritech + - e-logistics + - iProcure + - آي بروكيور (iProcure) + - آي بريكيور (iProcure) + - الإيسيسكو + - تكنوضاد + - جريدة الاتحاد الاشتراكي + - د.محمد فتحي عبد العال + - دينا الهواري + - سيندي (Sendy) + - صونيا أسمهان حليمي - صيدُ الشابكة - - Jakob Greenfeld - - James Cussen - - Play Permissionless - - The Living Philosophy - - مهدي حسين - - موقع SciDev.Net - - مؤسسة “كنوز يوغرطا ” للنشر - - نشرة Play Permissionless - - نشرة The Living Philosophy - - نشرة الخوارزمية لتحديثات الذكاء الاصطناعي - - هارون حمادو - - أحمد سمير عبد الحميد - - بنزين سكينة - - بروين حبيب - - جوردان بيترسون - - جوردان بِ. بيترسون - - د. عبدالله المدني - - د.أحمد الخميسى - - عماد الدين حسين - last_post_guid: 6f8542236e97dd6f1f675daecda4dabf + - 'عالِم: مجلَّة الإيسيسكو للُّغة العربيَّة' + - عبد اللطيف أبي القاسم + - عبد المجيد سباطة + - فاطمة المزروعي + - فراس دالاتي + - مازن صاحب + - مجلة الإيسيسكو العلمية المحكمة للغة العربية (عالم) + - مدونة سالمة عيد + - مدونة ممدوح نجم + - مدوّنة سهام سلطان + - مركز اللغة العربية للناطقين بغيرها + - منظمة العالم الإسلامي للتربية والعلوم والثقافة (إيسيسكو) + - موقع درج + - نشرة Next Wave + - "نشرة طاقة نور⚡\U0001F305 البريدية" + last_post_language: "" + last_post_guid: 199cd8ab3fc304e432e4c5d5ccbc79ea score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 16 + score: 20 ispodcast: false isnoarchive: false + innetwork: true + language: ar --- diff --git a/content/discover/feed-7ba68517d711c2d66b983d232e87cbb3.md b/content/discover/feed-7ba68517d711c2d66b983d232e87cbb3.md index 0d03b9211..0c2a30d84 100644 --- a/content/discover/feed-7ba68517d711c2d66b983d232e87cbb3.md +++ b/content/discover/feed-7ba68517d711c2d66b983d232e87cbb3.md @@ -1,6 +1,6 @@ --- title: Meadow -date: "2024-06-04T11:56:46Z" +date: "2024-07-09T03:12:40Z" description: "Hi \U0001F343 Thanks for coming to my blog! My main goal here is to discover how I can be more authentic to myself through explorations in writing. I also write becau..." @@ -22,17 +22,22 @@ params: last_post_date: "2024-06-02T16:40:05Z" last_post_link: https://meadow.bearblog.dev/i-wasnt-able-to-sing-before-having-a-son/ last_post_categories: [] + last_post_language: "" last_post_guid: af314daa45bcac2b5c232cdad12730e9 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-7ba7dba4caeefc61bf06a5e3fb2e6e2c.md b/content/discover/feed-7ba7dba4caeefc61bf06a5e3fb2e6e2c.md deleted file mode 100644 index 2045ec508..000000000 --- a/content/discover/feed-7ba7dba4caeefc61bf06a5e3fb2e6e2c.md +++ /dev/null @@ -1,62 +0,0 @@ ---- -title: Cosmic Horizons -date: "2024-06-29T18:11:01+10:00" -description: My personal take on what's going on within our Event Horizon. Mostly - astronomical, often cosmological, usually quite grumpy. -params: - feedlink: https://www.blogger.com/feeds/9163501679982013672/posts/default - feedtype: atom - feedid: 7ba7dba4caeefc61bf06a5e3fb2e6e2c - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - History - - Movies - - Big Bang - - Intermission - - Quasars - - Dark Energy - - Astro-ph - - The Conversation - - Galactic Cannibalism - - Book - - Numerical Methods - - PAndAS - - GPGPUs - - Academia - - Gyroscope - - papers - - Observing - - Dark Matter - - 2-d Universe - - Zombies - - Media - - Physics - - Conversation - - Black holes - - Cosmology - relme: {} - last_post_title: 'Falling into a black hole: Just what do you see?' - last_post_description: "" - last_post_date: "2017-05-26T18:01:02+10:00" - last_post_link: https://cosmic-horizons.blogspot.com/2017/05/falling-into-black-hole-just-what-do.html - last_post_categories: - - Physics - - Numerical Methods - - Black holes - last_post_guid: 6273a24ca857b49fcc33a08deb7ce08f - score_criteria: - cats: 5 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 14 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7bcfcf028aa9ec1bb128e85ffc8e0098.md b/content/discover/feed-7bcfcf028aa9ec1bb128e85ffc8e0098.md deleted file mode 100644 index 5383ea611..000000000 --- a/content/discover/feed-7bcfcf028aa9ec1bb128e85ffc8e0098.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Kilian Valkhof -date: "1970-01-01T00:00:00Z" -description: Public posts from @Kilian@mastodon.social -params: - feedlink: https://mastodon.social/@Kilian.rss - feedtype: rss - feedid: 7bcfcf028aa9ec1bb128e85ffc8e0098 - websites: - https://mastodon.social/@Kilian: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://kilianvalkhof.com/: true - https://polypane.app/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7bd0f0294805bf74a8122e9a5f7081d2.md b/content/discover/feed-7bd0f0294805bf74a8122e9a5f7081d2.md deleted file mode 100644 index 5bc284ef8..000000000 --- a/content/discover/feed-7bd0f0294805bf74a8122e9a5f7081d2.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: The Cylindrical Onion - Blogging about the CMS Experiment -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://cylindricalonion.web.cern.ch/rss.xml - feedtype: rss - feedid: 7bd0f0294805bf74a8122e9a5f7081d2 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Welcome - last_post_description: "Welcome!\n\n\n\n \n \n \n The - Cylindrical Onion\n\nBlogging about the CMS Experiment" - last_post_date: "2019-10-24T09:56:51Z" - last_post_link: https://cylindricalonion.web.cern.ch/welcome - last_post_categories: [] - last_post_guid: dbb5bd09639a71b20c451e0731b1ba5a - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 3 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7bdd1a00a9835cf9ac8a82a8f74b2dba.md b/content/discover/feed-7bdd1a00a9835cf9ac8a82a8f74b2dba.md index 0d0809c23..c6c1b7f8f 100644 --- a/content/discover/feed-7bdd1a00a9835cf9ac8a82a8f74b2dba.md +++ b/content/discover/feed-7bdd1a00a9835cf9ac8a82a8f74b2dba.md @@ -8,7 +8,7 @@ params: feedid: 7bdd1a00a9835cf9ac8a82a8f74b2dba websites: https://rushkoff.com/: true - https://www.rushkoff.com/blog/: false + https://rushkoff.com/blog/: false blogrolls: [] recommended: [] recommender: @@ -16,7 +16,7 @@ params: categories: - Blog relme: - https://social.coop/@Rushkoff: false + https://rushkoff.com/: true last_post_title: 'Team Human ep. 248: I Will Not Be Autotuned – Live from All Tech Is Human’s Responsible Tech Mixer' last_post_description: Douglas Rushkoff took the stage at All Tech Is Human’s Responsible @@ -26,17 +26,22 @@ params: last_post_link: https://rushkoff.com/team-human-ep-248-i-will-not-be-autotuned-live-from-all-tech-is-humans-responsible-tech-mixer/ last_post_categories: - Blog + last_post_language: "" last_post_guid: ccb1f37d8aaaa9b515148e7677ad25fa score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 5 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 15 + score: 20 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-7bf58fbbf5580d8761f83000c9fb3c9b.md b/content/discover/feed-7bf58fbbf5580d8761f83000c9fb3c9b.md new file mode 100644 index 000000000..9ff2f40f9 --- /dev/null +++ b/content/discover/feed-7bf58fbbf5580d8761f83000c9fb3c9b.md @@ -0,0 +1,47 @@ +--- +title: Nonstrict +date: "2024-07-06T09:41:48+02:00" +description: Experts on Apple platforms. +params: + feedlink: https://nonstrict.eu/feed.rss + feedtype: rss + feedid: 7bf58fbbf5580d8761f83000c9fb3c9b + websites: + https://nonstrict.eu/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://github.com/nonstrict-hq: true + https://mastodon.social/@mathijskadijk: true + https://mastodon.social/@nonstrict: true + https://mastodon.social/@tomlokhorst: true + https://nonstrict.eu/: true + https://tom.lokhorst.eu/: true + last_post_title: Sending the initial workout configuration through HealthKit + last_post_description: '`HKWorkoutSession` will throw ''Remote session delegate + is not set up'' errors at you when sending data too soon. So how do we share data + before starting the actual workout?' + last_post_date: "2024-05-20T12:00:00+02:00" + last_post_link: https://nonstrict.eu/blog/2024/hkworkoutsession-remote-delegate-not-setup-error + last_post_categories: [] + last_post_language: "" + last_post_guid: d3ce9807023566da85441305960ae0f7 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-7c00a173a7ea7dde40407d282286cd0c.md b/content/discover/feed-7c00a173a7ea7dde40407d282286cd0c.md new file mode 100644 index 000000000..77ecbcaa0 --- /dev/null +++ b/content/discover/feed-7c00a173a7ea7dde40407d282286cd0c.md @@ -0,0 +1,103 @@ +--- +title: The penguin moves +date: "2024-07-07T22:39:13+02:00" +description: Random musings on embedded/mobile linux platforms and Free/Commercial + ecosystems built around them. +params: + feedlink: https://achipa.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 7c00a173a7ea7dde40407d282286cd0c + websites: + https://achipa.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - adobe + - android + - controls + - cortex + - droid + - embedded + - flash + - foss + - free + - fremantle + - froyo + - harmattan + - html + - j2me + - java + - javascript + - js + - limo + - linux + - macosx + - maemo + - maemo nokia + - maemo.org + - meego + - meteor + - mobile + - mobile benchmark + - moblin + - n800 + - n810 + - n900 + - nokia + - open + - open source + - osi + - ovi + - pr1.2 + - qml + - qt + - qtmobility + - qtquick + - realtime + - sdk + - symbian + - trolltech + - ui + - ux + - windows + relme: + https://achipa.blogspot.com/: true + https://qt-funk.blogspot.com/: true + https://www.blogger.com/profile/11082060370940070595: true + last_post_title: 'Meteor and Qt: match made in heaven' + last_post_description: "" + last_post_date: "2014-12-22T18:37:33+01:00" + last_post_link: https://achipa.blogspot.com/2014/12/meteor-and-qt-match-made-in-heaven.html + last_post_categories: + - android + - javascript + - js + - macosx + - meteor + - mobile + - qml + - qt + - qtquick + - realtime + - ui + - windows + last_post_language: "" + last_post_guid: 401fbc698b8246c691dbcbd9ac93bd67 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7c0ae3b3224794dc414d30e24f3bd059.md b/content/discover/feed-7c0ae3b3224794dc414d30e24f3bd059.md index 009dfddfd..94d79ff85 100644 --- a/content/discover/feed-7c0ae3b3224794dc414d30e24f3bd059.md +++ b/content/discover/feed-7c0ae3b3224794dc414d30e24f3bd059.md @@ -12,33 +12,35 @@ params: recommended: [] recommender: [] categories: - - EU & NL Data Beleid Projecten - - Projecten - - Data - - opendata - relme: {} - last_post_title: Open Data Maturity 2024 - last_post_description: Ieder jaar organiseert het Europees open data portaal een - zogeheten ‘Open Data Maturity assessment’, waarbij Europese landen worden - beoordeeld op verschillende indicatoren met betrekking - last_post_date: "2024-05-27T13:27:06Z" - last_post_link: https://thegreenland.eu/2024/05/open-data-maturity-2024/ + - Updates + - Vacatures + relme: + https://thegreenland.eu/: true + last_post_title: Office manager gezocht! + last_post_description: The Green Land zoekt een office manager. Iemand die chaos + om kan zetten in waarde. Structuur kan bieden waar nodig. Die gewend is om met + eigenwijze, creatieve en activistische collega’s te werken. + last_post_date: "2024-06-13T13:01:23Z" + last_post_link: https://thegreenland.eu/2024/06/office-manager-gezocht/ last_post_categories: - - EU & NL Data Beleid Projecten - - Projecten - - Data - - opendata - last_post_guid: c3dc5a36138b0641d1b5c63869ca6262 + - Updates + - Vacatures + last_post_language: "" + last_post_guid: b1ef7212d58c1d2a8f31db717a805f55 score_criteria: cats: 0 description: 0 - postcats: 3 + feedlangs: 1 + postcats: 2 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 8 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: nl --- diff --git a/content/discover/feed-7c0c7970cc2ab47b54b6b89dc85db8e5.md b/content/discover/feed-7c0c7970cc2ab47b54b6b89dc85db8e5.md new file mode 100644 index 000000000..2206defa1 --- /dev/null +++ b/content/discover/feed-7c0c7970cc2ab47b54b6b89dc85db8e5.md @@ -0,0 +1,47 @@ +--- +title: Delta's D&D Hotspot +date: "2024-07-06T16:44:16-04:00" +description: Math, history, and design of old-school D&D +params: + feedlink: https://deltasdnd.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 7c0c7970cc2ab47b54b6b89dc85db8e5 + websites: + https://deltasdnd.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - marvel + - poll + - starfrontiers + - subsurveys + relme: + https://deltasdnd.blogspot.com/: true + last_post_title: Fearful Ends Now on Kickstarter + last_post_description: "" + last_post_date: "2023-10-09T08:00:00-04:00" + last_post_link: https://deltasdnd.blogspot.com/2023/10/fearful-ends-now-on-kickstarter.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 6559e8c8a6b93d9f52d28c68d4141462 + score_criteria: + cats: 4 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 22 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7c28a647e9b9e8e6dc61b9045f412718.md b/content/discover/feed-7c28a647e9b9e8e6dc61b9045f412718.md deleted file mode 100644 index f5f3fdf6a..000000000 --- a/content/discover/feed-7c28a647e9b9e8e6dc61b9045f412718.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Ahmad Shadeed -date: "1970-01-01T00:00:00Z" -description: Deep-dive CSS articles, modern CSS and visual CSS explanations. -params: - feedlink: https://ishadeed.com/feed.xml - feedtype: rss - feedid: 7c28a647e9b9e8e6dc61b9045f412718 - websites: - https://ishadeed.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: [] - relme: {} - last_post_title: The Gap - last_post_description: "" - last_post_date: "2024-05-31T00:00:00Z" - last_post_link: https://ishadeed.com/article/the-gap/ - last_post_categories: [] - last_post_guid: 511b6519ad9b724b99f3fa6d98e10523 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7c2ec8121766d10c395284f192929695.md b/content/discover/feed-7c2ec8121766d10c395284f192929695.md new file mode 100644 index 000000000..225d969fc --- /dev/null +++ b/content/discover/feed-7c2ec8121766d10c395284f192929695.md @@ -0,0 +1,44 @@ +--- +title: joekrall.com +date: "2024-03-18T21:38:06Z" +description: Joe Krall is a husband, software engineer, and occasional musician and + writer. +params: + feedlink: https://joekrall.com/atom.xml + feedtype: atom + feedid: 7c2ec8121766d10c395284f192929695 + websites: + https://joekrall.com/: false + blogrolls: [] + recommended: [] + recommender: + - https://danq.me/comments/feed/ + - https://danq.me/feed/ + - https://danq.me/kind/article/feed/ + - https://danq.me/kind/note/feed/ + categories: [] + relme: {} + last_post_title: 'Excerpt from my sent folder: laptops' + last_post_description: "" + last_post_date: "2023-12-30T14:00:00Z" + last_post_link: https://joekrall.com/2023/12/30/excerpt-from-my-sent-folder-laptops/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 683f932ca1f712a1d40699362b75fcc0 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 1 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7c30bf40d1f13375a92a5fc300843117.md b/content/discover/feed-7c30bf40d1f13375a92a5fc300843117.md new file mode 100644 index 000000000..e8a542d40 --- /dev/null +++ b/content/discover/feed-7c30bf40d1f13375a92a5fc300843117.md @@ -0,0 +1,51 @@ +--- +title: コンピューターで暇潰し +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://osamu-aoki.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 7c30bf40d1f13375a92a5fc300843117 + websites: + https://osamu-aoki.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Debian + - netwalker + relme: + https://goofing-and-tweaking.blogspot.com/: true + https://goofing-with-computer.blogspot.com/: true + https://goofying-with-debian.blogspot.com/: true + https://osamu-aoki.blogspot.com/: true + https://osamu-in-japan.blogspot.com/: true + https://www.blogger.com/profile/12377163704610747036: true + last_post_title: New kernel 2.6.28-15-araneo + last_post_description: !!binary | + 5LuK5pel44Gu44Ki44OD44OX44Kw44Os44O844OJ44Gn44Kr44O844ON44Or44GM5pu05p + aw44GV44KM44G+44GX44Gf44CCS2VybmVs44Gu44K344K544OG44Og44G444Gu5bCO5YWl + 77yIQk9PVExPREVS44G444Gu5pu444GN6L6844G/5pu05paw77yJ44KS44GZ44KL5paw44 + Gf44Gq44OR44OD44Kx44O844K444GM5bCO5YWl44GV44KM44Gf44KI44E= + last_post_date: "2009-12-13T01:08:00Z" + last_post_link: https://osamu-aoki.blogspot.com/2009/12/new-kernel-2628-15-araneo.html + last_post_categories: [] + last_post_language: "" + last_post_guid: b45e7f89a5cddd877471767b98b61433 + score_criteria: + cats: 2 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 12 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7c321d5f1d79eb1cc9b510da4fbe5a16.md b/content/discover/feed-7c321d5f1d79eb1cc9b510da4fbe5a16.md deleted file mode 100644 index c1d2cc3e3..000000000 --- a/content/discover/feed-7c321d5f1d79eb1cc9b510da4fbe5a16.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Nicky's Blog -date: "1970-01-01T00:00:00Z" -description: The personal blog of a 30-something year old cis-male from the East of - England. Topics include mental, physical, and emotional health, hobbies, and self-improvement. -params: - feedlink: https://nicky.bearblog.dev/feed/?type=rss - feedtype: rss - feedid: 7c321d5f1d79eb1cc9b510da4fbe5a16 - websites: - https://nicky.bearblog.dev/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: 2024 - Year of Acceptance // Accountability - last_post_description: At the end of my 2023 theme review I mentioned how I started - the year thinking this would be the Year of Foundation Repair. A redo of my 2022 - theme, fixing all the cracks and damage done over 2023. - last_post_date: "2024-06-02T00:00:00Z" - last_post_link: https://nicky.bearblog.dev/2024-year-of-acceptance-accountability/ - last_post_categories: [] - last_post_guid: 1905dd6dbc775a888c485ebbf7743933 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7c34950221f5b98af63a6c52e8820364.md b/content/discover/feed-7c34950221f5b98af63a6c52e8820364.md deleted file mode 100644 index 33752962f..000000000 --- a/content/discover/feed-7c34950221f5b98af63a6c52e8820364.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: OpenStack – Tricky Cloud -date: "2017-01-15T20:07:40Z" -description: A blog about OpenStack, and other cloudy stuff -params: - feedlink: https://trickycloud.wordpress.com/category/openstack/feed/atom/ - feedtype: atom - feedid: 7c34950221f5b98af63a6c52e8820364 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Cloud - - OpenStack - relme: {} - last_post_title: Deploying Ironic in OpenStack Newton with TripleO - last_post_description: Introduction This post describes the process to enable Ironic - in the Overcloud in a multi-controller deployment with director or TripleO, a - new feature introduced in Red Hat OpenStack Platform 10 - last_post_date: "2017-01-15T20:07:40Z" - last_post_link: https://trickycloud.wordpress.com/2017/01/15/deploying-ironic-in-openstack-newton/ - last_post_categories: - - Cloud - - OpenStack - last_post_guid: d99a5a90f4f6ba893589e8cc96ebbd84 - score_criteria: - cats: 0 - description: 3 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7c3a1617b3f26fee4cb8124e162bfd74.md b/content/discover/feed-7c3a1617b3f26fee4cb8124e162bfd74.md index e82682339..a011cb9a6 100644 --- a/content/discover/feed-7c3a1617b3f26fee4cb8124e162bfd74.md +++ b/content/discover/feed-7c3a1617b3f26fee4cb8124e162bfd74.md @@ -15,39 +15,31 @@ params: - https://jabel.blog/podcast.xml categories: - Uncategorized - - civilization - - collapse - - Deep Adaptation - - Doomer - - hope - - Michael Dowd - - post-doom relme: {} - last_post_title: 'Hope Beyond Hope: in memoriam Michael Dowd' - last_post_description: Michael Dowd invited us, at the end of the world, to love - the world. - last_post_date: "2024-02-18T21:15:47Z" - last_post_link: https://anotherendoftheworld.org/2024/02/18/hope-beyond-hope-in-memoriam-michale-dowd/ + last_post_title: Pandora & Prometheus + last_post_description: Hope is a curse because it keeps us from foreseeing our doom. + It is what keeps us chained to our fate, as surely as Prometheus was chained to + the rock. + last_post_date: "2024-06-10T02:20:02Z" + last_post_link: https://anotherendoftheworld.org/2024/06/09/pandora-prometheus/ last_post_categories: - Uncategorized - - civilization - - collapse - - Deep Adaptation - - Doomer - - hope - - Michael Dowd - - post-doom - last_post_guid: 0a8517f1f5cde7a1154517a9128177a1 + last_post_language: "" + last_post_guid: 2d8198cd1eb79026f293dbe8a0d3f375 score_criteria: cats: 0 description: 3 - postcats: 3 + feedlangs: 1 + postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 16 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-7c4e3eaf532b6e3484e75667ea6e2adf.md b/content/discover/feed-7c4e3eaf532b6e3484e75667ea6e2adf.md index 2ad323fce..c0a229d40 100644 --- a/content/discover/feed-7c4e3eaf532b6e3484e75667ea6e2adf.md +++ b/content/discover/feed-7c4e3eaf532b6e3484e75667ea6e2adf.md @@ -14,32 +14,18 @@ params: recommended: [] recommender: [] categories: - - Journal - Cafe NUN - Homebrew Website Club - IndieWeb + - Journal - Karlsruhe relme: - https://developers.google.com/profile/u/pfefferle: false https://github.com/pfefferle: true https://gitlab.com/pfefferle: true - https://indieweb.org/User:Notiz.blog: false https://mastodon.social/@pfefferle: true - https://micro.blog/pfefferle: false - https://microformats.org/wiki/User:Pfefferle: false - https://notiz.blog/about/: false - https://openwebpodcast.de/: false - https://packagist.org/packages/pfefferle/: false - https://pfefferle.tumblr.com/: false - https://profiles.wordpress.org/pfefferle: false - https://twitter.com/pfefferle: false - https://wordpress.tv/speakers/matthias-pfefferle/: false - https://www.crunchbase.com/person/matthias-pfefferle: false - https://www.flickr.com/people/pfefferle: false - https://www.linkedin.com/in/pfefferle/: false - https://www.npmjs.com/~pfefferle: false - https://www.slideshare.net/pfefferle: false - https://www.xing.com/profile/Matthias_Pfefferle: false + https://notiz.blog/: true + https://notiz.blog/about/: true + https://profiles.wordpress.org/pfefferle/: true last_post_title: 10. HWC Karlsruhe last_post_description: "Gestern hatten wie unseren 10. Homebrew Website Club in Karlsruhe \U0001F389\U0001F38A\U0001F37E (Ja, wir haben im Juni vergessen ein @@ -47,22 +33,27 @@ params: last_post_date: "2019-10-16T16:39:17Z" last_post_link: https://notiz.blog/2019/10/16/10-hwc-karlsruhe/ last_post_categories: - - Journal - Cafe NUN - Homebrew Website Club - IndieWeb + - Journal - Karlsruhe + last_post_language: "" last_post_guid: c44605bfd31630cea5cf8c06a6c85384 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: de --- diff --git a/content/discover/feed-7c5d5a15153f38b668d971565a5572ee.md b/content/discover/feed-7c5d5a15153f38b668d971565a5572ee.md deleted file mode 100644 index f5cc37fec..000000000 --- a/content/discover/feed-7c5d5a15153f38b668d971565a5572ee.md +++ /dev/null @@ -1,50 +0,0 @@ ---- -title: Stories by Jeff Jarvis on Medium -date: "1970-01-01T00:00:00Z" -description: Stories by Jeff Jarvis on Medium -params: - feedlink: https://medium.com/feed/@jeffjarvis - feedtype: rss - feedid: 7c5d5a15153f38b668d971565a5572ee - websites: - https://jeffjarvis.medium.com/: false - https://medium.com/@jeffjarvis: false - https://medium.com/@jeffjarvis?source=rss-39401ae4e4b9------2: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - tescreal - - ai - - openai - - xrisk - - doomer - relme: - https://me.dm/@jeffjarvis: false - https://twitter.com/jeffjarvis: false - last_post_title: Demote the Doomsters - last_post_description: The futility of guardrails on AI … or us. (All my Medium - posts are crossposted and open on Buzzmachine)Continue reading on Whither news? - » - last_post_date: "2024-05-21T14:56:03Z" - last_post_link: https://medium.com/whither-news/demote-the-doomsters-208f15b3ea78?source=rss-39401ae4e4b9------2 - last_post_categories: - - tescreal - - ai - - openai - - xrisk - - doomer - last_post_guid: 0f54962185dae8ee299ca694a9c60703 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 12 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7c6110e35a0ed4af5f2de731606e955f.md b/content/discover/feed-7c6110e35a0ed4af5f2de731606e955f.md new file mode 100644 index 000000000..bdf1de42c --- /dev/null +++ b/content/discover/feed-7c6110e35a0ed4af5f2de731606e955f.md @@ -0,0 +1,47 @@ +--- +title: David Shanske +date: "1970-01-01T00:00:00Z" +description: The Definitive Location +params: + feedlink: https://david.shanske.com/feed/ + feedtype: rss + feedid: 7c6110e35a0ed4af5f2de731606e955f + websites: + https://david.shanske.com/: true + https://david.shanske.com/author/dshanske/: false + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Uncategorized + relme: + https://david.shanske.com/: true + https://github.com/dshanske: true + https://profiles.wordpress.org/dshanske/: true + last_post_title: My IndieWeb Journey – 10 Years Of IndieWeb + last_post_description: This was originally part of an introduction at IWC Online + in 2020, but I’d never posted it. As my 10th anniversary of joining the Indieweb + chat is today, I thought I’d post on it. “Your high + last_post_date: "2024-03-30T22:00:24-04:00" + last_post_link: https://david.shanske.com/2024/03/30/my-indieweb-journey-10-years-of-indieweb/ + last_post_categories: + - Uncategorized + last_post_language: "" + last_post_guid: df2a01dbf53f87393f44c8d9d0be2bc8 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-7c70c008cae8d3b66d648da318e65999.md b/content/discover/feed-7c70c008cae8d3b66d648da318e65999.md new file mode 100644 index 000000000..37b06c538 --- /dev/null +++ b/content/discover/feed-7c70c008cae8d3b66d648da318e65999.md @@ -0,0 +1,87 @@ +--- +title: 'YANUB: yet another (nearly) useless blog' +date: "1970-01-01T00:00:00Z" +description: A blog from a scientist and former Debian developer (and occasional book + writer)... Tricks for data handling, programming, debian administration and development, + command-line and many other joyful +params: + feedlink: https://vince-debian.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 7c70c008cae8d3b66d648da318e65999 + websites: + https://vince-debian.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - cmdline + - ctioga + - debian + - doxygen + - dvdcopy + - emacs + - france + - games + - git + - git-annex + - graphics + - hardware + - help-needed + - latex + - linux + - macbook + - macos + - meta-data + - metalloenzyme + - personal + - programming + - puzzle + - pymol + - qsoas + - qt4 + - quiz + - rants + - ruby + - science + - sciyag + - scm + - scripts + - software + - summary + - tioga + - tips-and-tricks + - tutorial + - utils + - webgen + - wine + relme: + https://vince-debian.blogspot.com/: true + last_post_title: QSoas version 3.3 is out + last_post_description: Version 3.3 brings in new features, including reverse Laplace + transforms and fits, pH fits, commands for picking points from a dataset, averaging + points with the same X value, or perform singular + last_post_date: "2024-04-22T10:50:00Z" + last_post_link: https://vince-debian.blogspot.com/2024/04/qsoas-version-33-is-out.html + last_post_categories: + - qsoas + - science + - software + last_post_language: "" + last_post_guid: 4ccf7f6c4e11fb811feef037aeba25c0 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7c75a0997cbfecfb6be04699fca044e5.md b/content/discover/feed-7c75a0997cbfecfb6be04699fca044e5.md new file mode 100644 index 000000000..297f9dd09 --- /dev/null +++ b/content/discover/feed-7c75a0997cbfecfb6be04699fca044e5.md @@ -0,0 +1,45 @@ +--- +title: '#gta02-core news' +date: "2023-06-20T05:53:59-07:00" +description: 'Weekly news about the #gta02-core project' +params: + feedlink: https://gta02-core-news.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 7c75a0997cbfecfb6be04699fca044e5 + websites: + https://gta02-core-news.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - '#gta02-core' + relme: + https://assassinosuicida.blogspot.com/: true + https://gta02-core-news.blogspot.com/: true + https://www.blogger.com/profile/17602200301602248416: true + https://zpuino.blogspot.com/: true + https://zxinterfacez.blogspot.com/: true + last_post_title: Comment moderation + last_post_description: "" + last_post_date: "2010-06-09T14:49:58-07:00" + last_post_link: https://gta02-core-news.blogspot.com/2010/06/comment-moderation.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 499accc32f9eaeb9a05d2fba92bd1091 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7c80933eb8dd62bd687cffb3d7cae1be.md b/content/discover/feed-7c80933eb8dd62bd687cffb3d7cae1be.md deleted file mode 100644 index 58af2f70c..000000000 --- a/content/discover/feed-7c80933eb8dd62bd687cffb3d7cae1be.md +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: FLIP.de -date: "1970-01-01T00:00:00Z" -description: web and life guide -params: - feedlink: https://flip.de/feed/ - feedtype: rss - feedid: 7c80933eb8dd62bd687cffb3d7cae1be - websites: - https://flip.de/: true - blogrolls: [] - recommended: [] - recommender: - - https://jlelse.blog/.min.rss - - https://jlelse.blog/.rss - - https://jlelse.blog/index.xml - categories: - - Tech - - mac - - macos - - spotify - relme: - https://mastodon.social/@hesse: true - last_post_title: SoundSeer packt Spotify-Songs in die macOS-Menüleiste - last_post_description: SoundSeer ist eine App für die MacOS-Menüleiste, die dir - anzeigt, welcher Spotify-Song gerade läuft. Mit dieser App kannst du einen Titel - überspringen, direkt zum Song, Interpreten oder Album - last_post_date: "2024-04-17T06:17:43Z" - last_post_link: https://flip.de/soundseer-mac/ - last_post_categories: - - Tech - - mac - - macos - - spotify - last_post_guid: 8348d6aff9199d7c6ccd0a069c5962f9 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 18 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7c909d1d31e785866086f824bc47c67b.md b/content/discover/feed-7c909d1d31e785866086f824bc47c67b.md deleted file mode 100644 index 7cbd458e2..000000000 --- a/content/discover/feed-7c909d1d31e785866086f824bc47c67b.md +++ /dev/null @@ -1,80 +0,0 @@ ---- -title: Jeroen Sangers ◦ brain tags -date: "1970-01-01T00:00:00Z" -description: "Blogging since 1997 ✪ Personal effectiveness geek ✪ Nederlands/Lleidatà - ✪ \U0001F375/\U0001F37A" -params: - feedlink: https://jeroensangers.com/podcast.xml - feedtype: rss - feedid: 7c909d1d31e785866086f824bc47c67b - websites: - https://jeroensangers.com/: true - blogrolls: - - https://jeroensangers.com/.well-known/recommendations.opml - recommended: - - https://a.wholelottanothing.org/rss/ - - https://bakadesuyo.com/feed/ - - https://calnewport.com/feed/ - - https://chasem.co/feed.xml - - https://feeds.kottke.org/main - - https://frankmeeuwsen.com/feed.xml - - https://hulry.com/rss/ - - https://jarche.com/feed/ - - https://maggieappleton.com/rss.xml - - https://nesslabs.com/feed - - https://nintil.com/rss.xml - - https://raulhernandezgonzalez.com/feed/ - - https://rebeccatoh.co/feed/ - - https://sive.rs/en.atom - - https://timharford.com/feed/ - - https://waitbutwhy.com/feed - - https://world.hey.com/jason/feed.atom - - https://www.cjchilvers.com/blog/rss/ - - https://www.densediscovery.com/feed/ - - https://www.farnamstreetblog.com/feed/ - - https://www.patrickrhone.net/feed/ - - https://www.swiss-miss.com/feed - - https://xkcd.com/atom.xml - - https://blog.strategicedge.co.uk/atom.xml - - https://blog.strategicedge.co.uk/index.rdf - - https://blog.strategicedge.co.uk/rss.xml - - https://calnewport.com/feed/podcast - - https://causasyazares.substack.com/feed - - https://jarche.com/comments/feed/ - - https://raulhernandezgonzalez.com/comments/feed/ - - https://rebeccatoh.co/comments/feed/ - - https://robertoferraro.substack.com/feed - - https://www.patrickrhone.net/comments/feed/ - - https://www.scotthyoung.com/blog/feed/ - - https://www.swiss-miss.com/feed/atom - - https://xkcd.com/rss.xml - recommender: [] - categories: - - Society & Culture - relme: - https://canasto.es/: false - https://github.com/jeroensangers: true - https://keybase.io/jeroensangers: true - https://linkedin.com/in/sangers/: false - https://micro.blog/jeroensangers: false - https://reddit.com/user/beltzanl: false - https://twitter.com/JeroenSangers: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 1 - description: 3 - postcats: 0 - promoted: 0 - promotes: 10 - relme: 2 - title: 3 - website: 2 - score: 21 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-7c92c951f9eb9a6ad388719d6c67a122.md b/content/discover/feed-7c92c951f9eb9a6ad388719d6c67a122.md deleted file mode 100644 index 1998463f9..000000000 --- a/content/discover/feed-7c92c951f9eb9a6ad388719d6c67a122.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: dabrain34.github.io -date: "2024-01-04T11:22:34Z" -description: "" -params: - feedlink: https://dabrain34.github.io/feed.xml - feedtype: atom - feedid: 7c92c951f9eb9a6ad388719d6c67a122 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - jekyll - - update - relme: {} - last_post_title: Vulkan Video encoder in GStreamer - last_post_description: Vulkan Video encoder in GStreamer - last_post_date: "2023-12-10T00:00:00Z" - last_post_link: https://dabrain34.github.io/jekyll/update/2023/12/10/GstVulkanVideoEncoderRelease.html - last_post_categories: - - jekyll - - update - last_post_guid: 1d7455221091ac8d3ef5aed89abad8c1 - score_criteria: - cats: 0 - description: 0 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7cab97127a1af0d202b4c8e237ec90c4.md b/content/discover/feed-7cab97127a1af0d202b4c8e237ec90c4.md new file mode 100644 index 000000000..e51ff0603 --- /dev/null +++ b/content/discover/feed-7cab97127a1af0d202b4c8e237ec90c4.md @@ -0,0 +1,45 @@ +--- +title: SXEmacs-en +date: "1970-01-01T00:00:00Z" +description: Blog about SXEmacs +params: + feedlink: https://sxemacs-en.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 7cab97127a1af0d202b4c8e237ec90c4 + websites: + https://sxemacs-en.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - code + - wand + relme: + https://sxemacs-en.blogspot.com/: true + last_post_title: Sudoku for (S)XEmacs + last_post_description: Once a night, there was no soft girlfriend at the side and + I decided to play in some game. Tetris is to fast and active, sokoban is completed + long ago and World of Goo heats CPU too much — so I + last_post_date: "2009-12-28T01:37:00Z" + last_post_link: https://sxemacs-en.blogspot.com/2009/12/sudoku-for-sxemacs_27.html + last_post_categories: + - code + last_post_language: "" + last_post_guid: a96ac4c027c5f358f9ee290c678ad2bb + score_criteria: + cats: 2 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7cac5f92918f088bd94f0cc0692ed9fd.md b/content/discover/feed-7cac5f92918f088bd94f0cc0692ed9fd.md deleted file mode 100644 index 9e9a8d647..000000000 --- a/content/discover/feed-7cac5f92918f088bd94f0cc0692ed9fd.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: The Perl NOC -date: "2024-06-13T13:30:31-07:00" -description: the perl.org infrastructure weblog! -params: - feedlink: https://log.perl.org/feeds/posts/default - feedtype: atom - feedid: 7cac5f92918f088bd94f0cc0692ed9fd - websites: - https://log.perl.org/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - cpansearch - - cpanratings - relme: {} - last_post_title: Thanks Fastly! - last_post_description: "" - last_post_date: "2024-06-13T13:30:00-07:00" - last_post_link: https://log.perl.org/2024/06/thanks-fastly.html - last_post_categories: [] - last_post_guid: 6db885a45f7c7d216677038a5cffbfc0 - score_criteria: - cats: 2 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7cd159f316c4d055d8af1c8ccf374caa.md b/content/discover/feed-7cd159f316c4d055d8af1c8ccf374caa.md new file mode 100644 index 000000000..12f8bfe5e --- /dev/null +++ b/content/discover/feed-7cd159f316c4d055d8af1c8ccf374caa.md @@ -0,0 +1,65 @@ +--- +title: Mäd Meier's Sketches +date: "2024-02-20T04:48:59-08:00" +description: "" +params: + feedlink: https://mmsketches.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 7cd159f316c4d055d8af1c8ccf374caa + websites: + https://mmsketches.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - AddIn + - Excel + - Fuzzy Search + - Gephi + - Graph3DGL + - GraphViz + - HP DesignJet 500 + - ModelBus + - OAW + - Pajek + - Sparx EA + - Stemmer + - Table + - UML + - VS 2010 + - Word + - network + - type system + relme: + https://4urit.blogspot.com/: true + https://huggenberg.blogspot.com/: true + https://madmeiersadventures.blogspot.com/: true + https://madmeierscloud.blogspot.com/: true + https://madmeierslife.blogspot.com/: true + https://madmeierstwike.blogspot.com/: true + https://mmsketches.blogspot.com/: true + https://www.blogger.com/profile/14628306885093928732: true + last_post_title: Copy forms between visual studio solutions + last_post_description: "" + last_post_date: "2012-12-22T11:24:59-08:00" + last_post_link: https://mmsketches.blogspot.com/2012/12/copy-forms-between-visual-studio.html + last_post_categories: [] + last_post_language: "" + last_post_guid: e9e2cff2844d81b7c2a6bf6d77ae61fc + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7cd55de130fb71ae6556755d3c40f5a3.md b/content/discover/feed-7cd55de130fb71ae6556755d3c40f5a3.md deleted file mode 100644 index dccbda3f4..000000000 --- a/content/discover/feed-7cd55de130fb71ae6556755d3c40f5a3.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: wingolog -date: "2024-05-27T12:36:44Z" -description: A mostly dorky weblog by Andy Wingo -params: - feedlink: https://wingolog.org/feed/atom/ - feedtype: atom - feedid: 7cd55de130fb71ae6556755d3c40f5a3 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: cps in hoot - last_post_description: "" - last_post_date: "2024-05-27T12:36:44Z" - last_post_link: https://wingolog.org/archives/2024/05/27/cps-in-hoot - last_post_categories: [] - last_post_guid: 6ae69d60bca96dd7e5d23ac89cda71cc - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7cd5b2cc1d1cd8c886b13038716b52f6.md b/content/discover/feed-7cd5b2cc1d1cd8c886b13038716b52f6.md new file mode 100644 index 000000000..8a29119f5 --- /dev/null +++ b/content/discover/feed-7cd5b2cc1d1cd8c886b13038716b52f6.md @@ -0,0 +1,41 @@ +--- +title: A Blog of Ice and Fire. Birch and Ice. +date: "2024-03-08T00:00:17-08:00" +description: These pages will tell the tale of the rise and fall of House Birchwood. + An ancient house in the North of Westeros. Their words "Strength through Perseverance". +params: + feedlink: https://iceandfirebirchwood.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 7cd5b2cc1d1cd8c886b13038716b52f6 + websites: + https://iceandfirebirchwood.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://iceandfirebirchwood.blogspot.com/: true + last_post_title: Geen Roleplay + last_post_description: "" + last_post_date: "2009-05-02T06:41:20-07:00" + last_post_link: https://iceandfirebirchwood.blogspot.com/2009/05/geen-roleplay.html + last_post_categories: [] + last_post_language: "" + last_post_guid: fae572e8e35ad36bf17a9678e19ab757 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7ce00887c4d3e549f0af9f251859649a.md b/content/discover/feed-7ce00887c4d3e549f0af9f251859649a.md new file mode 100644 index 000000000..c2313703b --- /dev/null +++ b/content/discover/feed-7ce00887c4d3e549f0af9f251859649a.md @@ -0,0 +1,153 @@ +--- +title: A Distant Chime +date: "1970-01-01T00:00:00Z" +description: |- + “A system that operates by constructing and executing plans lives, to speak metaphorically, in a sort of fantasy world..." + -Agre and Chapman 1990 +params: + feedlink: https://espharel.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 7ce00887c4d3e549f0af9f251859649a + websites: + https://espharel.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - 4-D + - 5E + - AD&D + - AD&Daptation + - Adventure + - Alchemy + - Alignment + - Ancients + - Announcement + - Apocalypse + - Basic + - Bestiary + - Blogging + - Book Review + - Byzantium + - Campaign + - Cascabel + - Castle Xyntillan + - Classes + - Collaboration + - Community Challenge + - Cosmos + - Cthon + - Currency + - Cyberpunk + - Diesel Punk + - Discussion + - DotD + - Dragons + - Dungeon + - Dwarves + - ES Wizard + - Elder Scrolls + - Elder Scrolls Session Report + - Essay + - Fallout + - Fiction + - Fighters + - Film + - Foxes + - GLOG + - GMing + - Gatehouse on Cormac's Crag + - Gods + - Hexcrawl + - House of Pestilence + - Icewind Dale + - Index + - Items + - JRLewis + - L5R + - Layout + - Locations + - Love + - Magic + - Magicka + - Mapping + - Mathematics + - Megapost + - Meta + - Mini-Quest + - Morale + - Mothership + - No Artpunk + - OSR + - Obscura + - Orcs + - Outsiders + - Playtesting + - Point Nemo + - Proof + - Psionics + - Ptolus + - RAW + - Race + - Random Dungeon + - Rats + - Realplay + - Redwall + - Remix + - Review + - Robo-Yakuza + - Rules + - Shrines and Saints + - Spanish + - State of the Blog + - Stride the Lightning + - Swords and Wizardry + - Tiefling + - Tomb of the Serpent Kings + - True Names + - Ultima Underworld + - Undead + - Underwater + - Unqualified Speculation + - Vampire + - WTF + - Warlock + - Wavestone + - Wizard + - Worldbuilding + - Writing + - videogames + relme: + https://espharel.blogspot.com/: true + last_post_title: The House of Pestilence (oh, and No Artpunk III) is Released! + last_post_description: Over a year from its original announcement, the No Artpunk + III contest has finally borne fruit. The NAP III anthology is now available on + itch.io at a PYWY price, suggested at $7. All proceeds go to + last_post_date: "2024-06-14T10:28:00Z" + last_post_link: https://espharel.blogspot.com/2024/06/the-house-of-pestilence-oh-and-no.html + last_post_categories: + - Announcement + - House of Pestilence + - No Artpunk + last_post_language: "" + last_post_guid: 235d353ad5430c32c484f7d777629ec5 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 26 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7cede4dcbc427482f3509d2c72bae2d3.md b/content/discover/feed-7cede4dcbc427482f3509d2c72bae2d3.md index a5b775b77..df14589c2 100644 --- a/content/discover/feed-7cede4dcbc427482f3509d2c72bae2d3.md +++ b/content/discover/feed-7cede4dcbc427482f3509d2c72bae2d3.md @@ -13,33 +13,33 @@ params: recommender: - http://scripting.com/rss.xml - http://scripting.com/rssNightly.xml - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ - - https://hacdias.com/feed.xml categories: [] relme: {} - last_post_title: Cell Organelles + last_post_title: Number Line Branch last_post_description: "" - last_post_date: "2024-06-03T04:00:00Z" - last_post_link: https://xkcd.com/2941/ + last_post_date: "2024-07-08T04:00:00Z" + last_post_link: https://xkcd.com/2956/ last_post_categories: [] - last_post_guid: 12720a2081533b3aaf07a922e666d4ba + last_post_language: "" + last_post_guid: 40b60094b438ff40a15216f38ae0719d score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-7d082678804b75e69935e7c203271386.md b/content/discover/feed-7d082678804b75e69935e7c203271386.md index 8c966f0b2..d6a73acd5 100644 --- a/content/discover/feed-7d082678804b75e69935e7c203271386.md +++ b/content/discover/feed-7d082678804b75e69935e7c203271386.md @@ -14,6 +14,8 @@ params: recommender: [] categories: [] relme: + https://atdotde.blogspot.com/: true + https://homeschoolschwabing.blogspot.com/: true https://www.blogger.com/profile/06634377111195468947: true last_post_title: What happens to particles after they have been interacting according to Bohm? @@ -23,17 +25,22 @@ params: last_post_date: "2024-05-22T13:41:00Z" last_post_link: https://atdotde.blogspot.com/2024/05/what-happens-to-particles-after-they.html last_post_categories: [] + last_post_language: "" last_post_guid: f8ac70506ea8adf72da1101900c5d5ce score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-7d1153bd3ee4be61399e447c739c6e38.md b/content/discover/feed-7d1153bd3ee4be61399e447c739c6e38.md index 5d8d55288..3d1800ff1 100644 --- a/content/discover/feed-7d1153bd3ee4be61399e447c739c6e38.md +++ b/content/discover/feed-7d1153bd3ee4be61399e447c739c6e38.md @@ -13,7 +13,7 @@ params: recommender: [] categories: [] relme: - https://www.paganwandererlu.co.uk/: false + https://paganwandererlu.wordpress.com/: true last_post_title: Comment on Defunct Devices by paganwandererlu last_post_description: |- In reply to Dan Q. @@ -22,17 +22,22 @@ params: last_post_date: "2022-11-28T17:02:40Z" last_post_link: https://paganwandererlu.wordpress.com/2022/11/25/defunct-devices/#comment-9352 last_post_categories: [] + last_post_language: "" last_post_guid: 1cdfdf873f72da4fc82d9c7520f6fd03 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 9 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-7d1e64145791932b7a9cf74a564adb12.md b/content/discover/feed-7d1e64145791932b7a9cf74a564adb12.md new file mode 100644 index 000000000..f6991b5af --- /dev/null +++ b/content/discover/feed-7d1e64145791932b7a9cf74a564adb12.md @@ -0,0 +1,42 @@ +--- +title: xnyhps’ blog +date: "2016-01-26T00:00:00Z" +description: "" +params: + feedlink: https://blog.thijsalkema.de/atom.xml + feedtype: atom + feedid: 7d1e64145791932b7a9cf74a564adb12 + websites: + https://blog.thijsalkema.de/: false + blogrolls: [] + recommended: [] + recommender: + - https://alexsci.com/blog/rss.xml + categories: [] + relme: {} + last_post_title: The Wrong Number Attack + last_post_description: XMPP is federated, similar to email, which means different + domains can connect to each other. Back in the early days, when a server initiated + a connection to a server, the initiating server could be + last_post_date: "2016-01-26T00:00:00Z" + last_post_link: https://blog.thijsalkema.de/blog/2016/01/26/the-wrong-number-attack/index.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 15ffab1ffe9025105847a6bac1d9745f + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 1 + score: 12 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7d3302e8445d5806944f22d13b5a73ad.md b/content/discover/feed-7d3302e8445d5806944f22d13b5a73ad.md index bf183e667..825e71ab6 100644 --- a/content/discover/feed-7d3302e8445d5806944f22d13b5a73ad.md +++ b/content/discover/feed-7d3302e8445d5806944f22d13b5a73ad.md @@ -13,9 +13,12 @@ params: recommender: [] categories: [] relme: - https://chrismcleod.dev/: false - https://micro.blog/mstrkapowski: false + https://chrismcleod.dev/: true + https://github.com/mcleodchris/: true + https://mastodon.online/@mstrkapowski: true https://social.lol/@chrisplusplus: true + https://theunderground.blog/: true + https://worldsinminiature.com/: true last_post_title: Thoughts on Spearhead in Age of Sigmar 4th Edition last_post_description: We’ve finally got our first look at the new Spearhead game mode in Age of Sigmar 4th edition. What I guessed was going to be essentially @@ -23,17 +26,22 @@ params: last_post_date: "2024-05-02T09:57:22Z" last_post_link: https://worldsinminiature.com/2024/05/02/thoughts-on-spearhead.html last_post_categories: [] + last_post_language: "" last_post_guid: 62abe97191204e7a16821e8c0a0b60bc score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 7 + score: 11 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-7d37d3ebd837aef31704ab5d16e342dd.md b/content/discover/feed-7d37d3ebd837aef31704ab5d16e342dd.md deleted file mode 100644 index 5a63260b3..000000000 --- a/content/discover/feed-7d37d3ebd837aef31704ab5d16e342dd.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: The Blog - openstack -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://ajya.github.io/feeds/openstack.rss.xml - feedtype: rss - feedid: 7d37d3ebd837aef31704ab5d16e342dd - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - outreachy - - openstack - relme: {} - last_post_title: 'Outreachy: Summary' - last_post_description: |- - This is the last blog post about my Outreachy internship that will summarize what I have done. - These are the 'main' additions to sushy and sushy tools project: - - initial version for BIOS resource - last_post_date: "2018-08-31T21:00:00+03:00" - last_post_link: https://ajya.github.io/outreachy-summary.html - last_post_categories: - - outreachy - - openstack - last_post_guid: 87f514e056d2e8961aeaaf6e9dd5ee7b - score_criteria: - cats: 0 - description: 0 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7d3bb38152c3e0bd559ce8cad22294eb.md b/content/discover/feed-7d3bb38152c3e0bd559ce8cad22294eb.md new file mode 100644 index 000000000..f5a411934 --- /dev/null +++ b/content/discover/feed-7d3bb38152c3e0bd559ce8cad22294eb.md @@ -0,0 +1,54 @@ +--- +title: Rodrigo Amaral +date: "1970-01-01T00:00:00Z" +description: Desenvolvimento de software, produtividade pessoal e o mundo ao redor +params: + feedlink: https://ramaral.wordpress.com/feed/ + feedtype: rss + feedid: 7d3bb38152c3e0bd559ce8cad22294eb + websites: + https://ramaral.wordpress.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Dropbox + - Produtividade + - armazenamento + - cloud + - copy + - nuvem + relme: + https://ramaral.wordpress.com/: true + last_post_title: Migrando armazenamento pessoal na nuvem para o Copy + last_post_description: Com o anúncio do fim do Ubuntu One pela Canonical, complementado + pela polêmica indicação de Condoleeza Rice para o conselho do Dropbox, resolvi + testar novos serviços de armazenamento pessoal de + last_post_date: "2014-04-15T22:15:37Z" + last_post_link: https://ramaral.wordpress.com/2014/04/15/migrando-armazenamento-pessoal-na-nuvem-para-o-copy/ + last_post_categories: + - Dropbox + - Produtividade + - armazenamento + - cloud + - copy + - nuvem + last_post_language: "" + last_post_guid: 1520f612f9f4dd3391dc4acea28815d9 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: pt +--- diff --git a/content/discover/feed-7d404484407629216024013abe17c7aa.md b/content/discover/feed-7d404484407629216024013abe17c7aa.md deleted file mode 100644 index 9f2e1d372..000000000 --- a/content/discover/feed-7d404484407629216024013abe17c7aa.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Openstack on blog.yarwood.me.uk -date: "1970-01-01T00:00:00Z" -description: Recent content in Openstack on blog.yarwood.me.uk -params: - feedlink: https://blog.yarwood.me.uk/tags/openstack/index.xml - feedtype: rss - feedid: 7d404484407629216024013abe17c7aa - websites: - https://blog.yarwood.me.uk/tags/openstack/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: OpenStack Nova Block Device Mapping Data Structures - last_post_description: Block Device Mapping? Block Device Mapping(s)(BDMs) define - how block devices are exposed to an instance by Nova. At present Nova accepts - and stores data relating to these mappings in various ways - last_post_date: "2021-01-20T19:35:24Z" - last_post_link: https://blog.yarwood.me.uk/2021/01/20/openstack_nova_bdm/ - last_post_categories: [] - last_post_guid: 667330d74ab75fc81711fdc5a1b2671c - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7d61e69288da6b4e0d423e70a269a066.md b/content/discover/feed-7d61e69288da6b4e0d423e70a269a066.md new file mode 100644 index 000000000..24fb913e9 --- /dev/null +++ b/content/discover/feed-7d61e69288da6b4e0d423e70a269a066.md @@ -0,0 +1,78 @@ +--- +title: I Like Eclipse +date: "2024-03-19T10:11:44+05:30" +description: This blog is dedicated to the hundreds of developers in the Eclipse Community. +params: + feedlink: https://feeds.feedburner.com/ILikeEclipse + feedtype: atom + feedid: 7d61e69288da6b4e0d423e70a269a066 + websites: + https://eclipse-info.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 3D + - Comments wildcard Imports Constrcutors + - Creativity Education + - Data Hiding Object OO + - Eclipse + - Eclipse Consultant Trainer + - Eclipse Day India 2010 + - Eclipse Demo Camp + - Eclipse Demo Camp 2010 + - Eclipse Demo Camp Bangalore GEF3D + - Eclipse Galileo + - Eclipse Galileo Motivation + - Eclipse Helios + - Eclipse India Summit + - Eclipse India Summit GEF Zest EMF Microsoft PDE + - Eclipse Startup Information + - Eclipse committers artist software engineer computer + - Eclipse day India 2010 Software Craftsmanship + - Eclipse samuel madhu Mind Graph Theory - Dreams Explained + - Eclipse static code analysis tool + - EclipseBible Eclipse Day India 2010 + - Focus + - Future Eclipse Google EclipseBible + - GEF3D + - HTML5 Canvas 3D e4 + - Modelling + - Multitasking + - Patterns in Eclipse Day India 2010 + - Patterns in Eclipse EclipseBible + - Platform Chair + - Prioritise + - eclipse eclipseplugincentral eclipse.org IBM code + - eclipsebible Zero Defects Creativity + - eclipsebible eclipse commands + relme: + https://dummywebsite.blogspot.com/: true + https://eclipse-info.blogspot.com/: true + https://iosdribbles.blogspot.com/: true + https://mksamuel.blogspot.com/: true + https://www.blogger.com/profile/05191409900046165475: true + last_post_title: EMF - An MDSD Approach + last_post_description: "" + last_post_date: "2010-12-07T09:57:31+05:30" + last_post_link: http://eclipse-info.blogspot.com/2010/12/emf-mdsd-approach.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 9232c178f4409a4a9ddcd91d2b6e3a0d + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7d6556fad62d7b49d1427ad46883d677.md b/content/discover/feed-7d6556fad62d7b49d1427ad46883d677.md new file mode 100644 index 000000000..c73c9b3b7 --- /dev/null +++ b/content/discover/feed-7d6556fad62d7b49d1427ad46883d677.md @@ -0,0 +1,84 @@ +--- +title: koweycode +date: "1970-01-01T00:00:00Z" +description: Hobby-hacking Eric +params: + feedlink: https://koweycode.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 7d6556fad62d7b49d1427ad46883d677 + websites: + https://koweycode.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - btsg + - cabal + - checkquick + - chinese + - darcs + - example + - français + - french + - gitit + - gtd + - gui + - haskell + - haskell wikibook + - haskell.fr + - house + - idea + - irc + - learning + - learning haskell + - library + - mac + - mail + - maybench + - mercurial + - monads + - mutt + - newbie + - nlp + - oops + - pandoc + - parallels + - quickcheck + - revctrl + - teaching + - tips + - tutorial + - vim + - wishlist + - wxhaskell + - yaht + relme: + https://gfdjax.blogspot.com/: true + https://koweycode.blogspot.com/: true + https://messageto.blogspot.com/: true + https://www.blogger.com/profile/11175806459477851520: true + last_post_title: moved to erickow.com + last_post_description: Also if you have a Wordpress and/or Blogger blog you'd like + to import to hakyll, you may be interested in my hakyll-convert utility. + last_post_date: "2013-03-17T08:33:00Z" + last_post_link: https://koweycode.blogspot.com/2013/03/moved-to-erickowcom.html + last_post_categories: [] + last_post_language: "" + last_post_guid: a6537dc32f3e9f51484e6c5b5bf165bd + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7d6ad236a892dac8c2ff18f972dfe4af.md b/content/discover/feed-7d6ad236a892dac8c2ff18f972dfe4af.md new file mode 100644 index 000000000..63514ee90 --- /dev/null +++ b/content/discover/feed-7d6ad236a892dac8c2ff18f972dfe4af.md @@ -0,0 +1,42 @@ +--- +title: GHC on SPARC +date: "2024-02-21T09:23:21+11:00" +description: "" +params: + feedlink: https://ghcsparc.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 7d6ad236a892dac8c2ff18f972dfe4af + websites: + https://ghcsparc.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://failuresinfishkeeping.blogspot.com/: true + https://ghcsparc.blogspot.com/: true + https://www.blogger.com/profile/08287674468193351664: true + last_post_title: Memory Barriers and GHC 6.12.1 + last_post_description: "" + last_post_date: "2010-02-15T11:45:17+11:00" + last_post_link: https://ghcsparc.blogspot.com/2010/02/memory-barriers-and-ghc-6121.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 038321d0f0a802894a9709dc4d5da1d5 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7d6ed550d412372685e540b54f6996f7.md b/content/discover/feed-7d6ed550d412372685e540b54f6996f7.md deleted file mode 100644 index 97f61dfec..000000000 --- a/content/discover/feed-7d6ed550d412372685e540b54f6996f7.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Home on The Rusty Bever -date: "1970-01-01T00:00:00Z" -description: Recent content in Home on The Rusty Bever -params: - feedlink: https://rustybever.be/index.xml - feedtype: rss - feedid: 7d6ed550d412372685e540b54f6996f7 - websites: - https://rustybever.be/: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: [] - relme: - https://rustybever.be/github: true - last_post_title: My C Project Setup - last_post_description: |- - For the last couple of months most of my projects have revolved around - low-level C programming, with the most prominent one being - Lander, my URL shortener. - During this time I’ve developed a method - last_post_date: "2024-03-28T00:00:00Z" - last_post_link: https://rustybever.be/c-project-setup/ - last_post_categories: [] - last_post_guid: 3d781b507e9f82643a40800d1d967d0a - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 15 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7d79945a184df5d896d814cdb364650c.md b/content/discover/feed-7d79945a184df5d896d814cdb364650c.md new file mode 100644 index 000000000..fee027a45 --- /dev/null +++ b/content/discover/feed-7d79945a184df5d896d814cdb364650c.md @@ -0,0 +1,44 @@ +--- +title: '[Nÿco''s blog] open standards & free/libre/opensource' +date: "1970-01-01T00:00:00Z" +description: XMPP/Jabber is coming back, and is here to stay! +params: + feedlink: https://nyco.wordpress.com/feed/ + feedtype: rss + feedid: 7d79945a184df5d896d814cdb364650c + websites: + https://nyco.wordpress.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Jabber et XMPP en français + relme: + https://nyco.wordpress.com/: true + last_post_title: Slack now concentrates HipChat and Stride users + last_post_description: This has been announced, as a partnership between Slack and + Atlassian. HipChat and Stride users will be migrated to Slack. End of this story. + Most of the too many Team Chat actors will disappear + last_post_date: "2018-07-27T07:07:12Z" + last_post_link: https://nyco.wordpress.com/2018/07/27/slack-now-concentrates-hipchat-and-stride-users/ + last_post_categories: + - Jabber et XMPP en français + last_post_language: "" + last_post_guid: a9c72cd767a860d0a6ba4ae882698618 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: fr +--- diff --git a/content/discover/feed-7d7a22b579f1b41e6255bc6c96a564f2.md b/content/discover/feed-7d7a22b579f1b41e6255bc6c96a564f2.md index 40f9f204c..b11dd7ec0 100644 --- a/content/discover/feed-7d7a22b579f1b41e6255bc6c96a564f2.md +++ b/content/discover/feed-7d7a22b579f1b41e6255bc6c96a564f2.md @@ -1,6 +1,6 @@ --- title: bt -date: "2024-06-02T13:07:41-05:00" +date: "2024-06-30T15:14:43-05:00" description: bt params: feedlink: https://btxx.org/index.rss @@ -11,30 +11,34 @@ params: blogrolls: [] recommended: [] recommender: - - https://kevq.uk/feed - - https://kevq.uk/feed.xml - - https://kevq.uk/feed/ - https://kevquirk.com/feed + - https://kevquirk.com/feed/ + - https://kevquirk.com/notes-feed categories: [] relme: {} - last_post_title: Building rbenv on OpenBSD 7.5 - last_post_description: I use Ruby (specifically with Jekyll) for a lot of my clubs/projects - while using my personal laptop (X220 ThinkPad) which is runs OpenBSD. Since I - recently upgraded to OpenBSD 7.5 I thought it could - last_post_date: "2024-06-02T13:07:41-05:00" - last_post_link: http://btxx.org//posts/Building_rbenv_on_OpenBSD_7.5/ + last_post_title: Fixing Jekyll's dart-sass Dependency on OpenBSD + last_post_description: I recently wrote about working with multiple Ruby versions + on OpenBSD which still works just fine, but I noticed a bug when trying to build + a couple of my Jekyll projects locally + last_post_date: "2024-06-30T15:10:39-05:00" + last_post_link: http://btxx.org//posts/Fixing_Jekyll__39__s_dart-sass_Dependency_on_OpenBSD/ last_post_categories: [] - last_post_guid: 97feb052658217028985a0cb6e338aba + last_post_language: "" + last_post_guid: 253a75c198eef9ddb827050cf5d706ae score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-7d92ae5a2c9c1387123f5119fd2b3b06.md b/content/discover/feed-7d92ae5a2c9c1387123f5119fd2b3b06.md deleted file mode 100644 index 61022c1d2..000000000 --- a/content/discover/feed-7d92ae5a2c9c1387123f5119fd2b3b06.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: lili's musings -date: "2024-06-04T12:16:25Z" -description: "hi! this is lili, you found my little digital corner. \n\ni made this - as i wanted a space to write freely, to refine how i think about the world. expect - raw ..." -params: - feedlink: https://lili.bearblog.dev/feed/ - feedtype: atom - feedid: 7d92ae5a2c9c1387123f5119fd2b3b06 - websites: - https://lili.bearblog.dev/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: reaching for stability - last_post_description: "" - last_post_date: "2024-05-26T18:19:45Z" - last_post_link: https://lili.bearblog.dev/reaching-for-stability/ - last_post_categories: [] - last_post_guid: da4dd68d6ac9898f895ea992a4133f48 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7d931c43a01f51dd2e19baef988cd034.md b/content/discover/feed-7d931c43a01f51dd2e19baef988cd034.md deleted file mode 100644 index baffb4217..000000000 --- a/content/discover/feed-7d931c43a01f51dd2e19baef988cd034.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: Paranoid Beavers -date: "2017-11-25T23:00:00-05:00" -description: "" -params: - feedlink: https://paranoidbeavers.ca/feeds/all.atom.xml - feedtype: atom - feedid: 7d931c43a01f51dd2e19baef988cd034 - websites: - https://paranoidbeavers.ca/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - crypto - - security - - privacy - - quantum - relme: {} - last_post_title: 'Spy stuff: symmetric crypto with forward secrecy' - last_post_description: |- - We're all impatiently waiting on quantum-proof asymmetrical crypto algorithms to - become commonplace. Until that happens, we must all live with the assumption - that all currently used asymmetric crypto - last_post_date: "2017-11-25T23:00:00-05:00" - last_post_link: https://paranoidbeavers.ca/spy-stuff.html - last_post_categories: - - crypto - - security - - privacy - - quantum - last_post_guid: 4f199926c923cb8c371cbe50859ebca6 - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7d9ad5f494bdaea8b5335c6a2319b95b.md b/content/discover/feed-7d9ad5f494bdaea8b5335c6a2319b95b.md new file mode 100644 index 000000000..e6e04dc49 --- /dev/null +++ b/content/discover/feed-7d9ad5f494bdaea8b5335c6a2319b95b.md @@ -0,0 +1,46 @@ +--- +title: Anthony Hunter's Eclipse Blog +date: "1970-01-01T00:00:00Z" +description: Anthony's blog for anything Eclipse and Orion... +params: + feedlink: https://ahuntereclipse.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 7d9ad5f494bdaea8b5335c6a2319b95b + websites: + https://ahuntereclipse.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Eclipse + relme: + https://ahuntereclipse.blogspot.com/: true + https://ahunterhunter.blogspot.com/: true + https://kmhapeeweeconvenor.blogspot.com/: true + https://www.blogger.com/profile/03060102622123930690: true + last_post_title: GMF Runtime turns 20 + last_post_description: This week had lots of Eclipse release activity. We are winding + down the Helios service release two by promoting RC2 this week. We also also in + the middle of Indigo promoting M5 this week. Double + last_post_date: "2011-02-03T21:30:00Z" + last_post_link: https://ahuntereclipse.blogspot.com/2011/02/gmf-runtime-turns-20.html + last_post_categories: [] + last_post_language: "" + last_post_guid: db67e1013f67195592068013d3f601f9 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7dcb63ebb0423d925e2bfde9174357a0.md b/content/discover/feed-7dcb63ebb0423d925e2bfde9174357a0.md new file mode 100644 index 000000000..0d4571476 --- /dev/null +++ b/content/discover/feed-7dcb63ebb0423d925e2bfde9174357a0.md @@ -0,0 +1,75 @@ +--- +title: Alerios +date: "2024-03-23T13:29:37-05:00" +description: Alejandro Rios | Buscando belleza, bondad y Buda... +params: + feedlink: https://alerios.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 7dcb63ebb0423d925e2bfde9174357a0 + websites: + https://alerios.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Diseño + - Product Design + - Temas GDM + - aikido + - ajedrez + - android + - asterisk + - café + - cine + - comidas y bebidas + - creativity + - debian + - dibujo y pintura + - divagaciones + - emprendimiento + - empresa + - fotos + - hardware + - innovación + - innovation + - mashup + - medellin + - música y danza + - parcela + - política + - postea.me + - software libre + - telefonía IP + - twitter + - versando + - viajes + - videojuegos + - zen + relme: + https://alerios-en.blogspot.com/: true + https://alerios.blogspot.com/: true + https://www.blogger.com/profile/17804942289789120050: true + last_post_title: Competencias de un Ingeniero para afrontar el mercado laboral + last_post_description: "" + last_post_date: "2014-09-01T12:30:06-05:00" + last_post_link: https://alerios.blogspot.com/2014/09/competencias-de-un-ingeniero-para.html + last_post_categories: [] + last_post_language: "" + last_post_guid: ac95e348532454a32bab1d342b7ab6c8 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7dce9873266f85017d0284bf57102baa.md b/content/discover/feed-7dce9873266f85017d0284bf57102baa.md deleted file mode 100644 index ddc0971bb..000000000 --- a/content/discover/feed-7dce9873266f85017d0284bf57102baa.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Comments for The Bounding Box -date: "1970-01-01T00:00:00Z" -description: Blog of Tobias Revell -params: - feedlink: https://blog.tobiasrevell.com/comments/feed/ - feedtype: rss - feedid: 7dce9873266f85017d0284bf57102baa - websites: - https://blog.tobiasrevell.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: 'Comment on BOX106: What happens when everyone is a designer? by - Lazy Reading for 2024/03/03 – DragonFly BSD Digest' - last_post_description: '[…] Organising Design (or why you need to care about spreadsheets).  - (via) […]' - last_post_date: "2024-03-03T13:06:05Z" - last_post_link: https://blog.tobiasrevell.com/2024/01/17/box106-what-happens-when-everyone-is-a-designer/#comment-17 - last_post_categories: [] - last_post_guid: e095a7db8c1952883057e354a952ade8 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7ddd0cca4c5c45bb3e27e27abbb4a115.md b/content/discover/feed-7ddd0cca4c5c45bb3e27e27abbb4a115.md index 50e7e73e4..559001d01 100644 --- a/content/discover/feed-7ddd0cca4c5c45bb3e27e27abbb4a115.md +++ b/content/discover/feed-7ddd0cca4c5c45bb3e27e27abbb4a115.md @@ -15,27 +15,35 @@ params: categories: - Society & Culture relme: - https://github.com/lmika: false - https://micro.blog/lmika: false - https://twitter.com/_leonmika: false - last_post_title: Some More Thoughts On Unit Testing - last_post_description: Kinda want to avoid this blog descending into a series of - “this is wrong with unit testing” posts, but something did occur to me this morning. - We’ve kicked off a new service at work recently. - last_post_date: "2024-06-03T12:32:50+10:00" - last_post_link: https://lmika.org/2024/06/03/some-more-thoughts.html + https://github.com/lmika: true + https://leonmika.com/: true + https://lmika.day/: true + https://lmika.org/: true + https://sidebar-for-tiny-theme.lmika.dev/: true + https://social.lol/@lmika: true + last_post_title: Asciidoc, Markdown, And Having It All + last_post_description: |- + Took a brief look at Asciidoc this morning. + This is for that Markdown document I’ve been writing in Obsidian. I’ve been sharing it with others using PDF exports, but it’s importance has grown + last_post_date: "2024-06-21T12:07:30+10:00" + last_post_link: https://lmika.org/2024/06/21/asciidoc-markdown-and.html last_post_categories: [] - last_post_guid: 7163e01c463f0a439b0e2d3ef003853d + last_post_language: "" + last_post_guid: ac2b671cb79ed69b52a361135979d622 score_criteria: cats: 1 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 10 + score: 15 ispodcast: true isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-7de1abe48b9a8ed6e4fbd5098f564f86.md b/content/discover/feed-7de1abe48b9a8ed6e4fbd5098f564f86.md deleted file mode 100644 index ed83aecd7..000000000 --- a/content/discover/feed-7de1abe48b9a8ed6e4fbd5098f564f86.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Calum Ryan - Articles -date: "2024-05-27T22:00:00Z" -description: "" -params: - feedlink: https://calumryan.com/feeds/articles/atom - feedtype: atom - feedid: 7de1abe48b9a8ed6e4fbd5098f564f86 - websites: - https://calumryan.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - . articles . - relme: - https://fed.brid.gy/r/https:/calumryan.com/: false - https://github.com/calumryan: true - https://indieweb.org/User:Calumryan.com: false - https://micro.blog/calumryan: false - https://toot.cafe/@calumryan: false - last_post_title: Weeknote 82 - last_post_description: "" - last_post_date: "2024-05-27T22:00:00Z" - last_post_link: https://calumryan.com/articles/weeknote-82 - last_post_categories: [] - last_post_guid: 5589a318c8e9bd2eebe7028e2cd46c6c - score_criteria: - cats: 1 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7deff1dc2cfc18e9f0dd4e26d3cd6e8b.md b/content/discover/feed-7deff1dc2cfc18e9f0dd4e26d3cd6e8b.md deleted file mode 100644 index b2164497f..000000000 --- a/content/discover/feed-7deff1dc2cfc18e9f0dd4e26d3cd6e8b.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Vincent Pickering -date: "2023-11-20T02:23:04Z" -description: |- - Service Designer. - I work across a large breadth of industries and technologies -params: - feedlink: https://www.are.na/vincent-pickering/feed/rss - feedtype: rss - feedid: 7deff1dc2cfc18e9f0dd4e26d3cd6e8b - websites: - https://www.are.na/vincent-pickering/channels: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Ratio-Club-Cambridge-1951.jpg - last_post_description: "" - last_post_date: "2024-02-06T10:56:13Z" - last_post_link: https://www.are.na/block/1588901 - last_post_categories: [] - last_post_guid: b7e1d9b82daa1527302f1655340e6a5f - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7dfe877514faebaad801373b5d14911d.md b/content/discover/feed-7dfe877514faebaad801373b5d14911d.md deleted file mode 100644 index 1dd2345d2..000000000 --- a/content/discover/feed-7dfe877514faebaad801373b5d14911d.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: iA -date: "1970-01-01T00:00:00Z" -description: Public posts from @ia@mastodon.online -params: - feedlink: https://mastodon.online/@ia.rss - feedtype: rss - feedid: 7dfe877514faebaad801373b5d14911d - websites: - https://mastodon.online/@ia: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://ia.net/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7dfec4dd9c6a4a2a9c6c3f8014760408.md b/content/discover/feed-7dfec4dd9c6a4a2a9c6c3f8014760408.md index 7e7207b13..1852805ff 100644 --- a/content/discover/feed-7dfec4dd9c6a4a2a9c6c3f8014760408.md +++ b/content/discover/feed-7dfec4dd9c6a4a2a9c6c3f8014760408.md @@ -14,44 +14,43 @@ params: - http://scripting.com/rss.xml - http://scripting.com/rssNightly.xml categories: - - Commentary - - Health - - health care - - health insurance - - KanCare - - Kansas Medicaid - - Kansas medicaid expansion - - medicaid expansion - - Mental Health + - Environment + - Gov. Mike Parson + - Honeywell International + - Kansas City + - National Nuclear Security Administration + - Politics + Government relme: {} - last_post_title: Kansans in desperate need of affordable health care deserve our - compassion and help - last_post_description: I have always had access to health care. My father was a - communications professor at Washburn University in Topeka and he had Blue Cross - Blue Shield for his family through his employer. A benefit of - last_post_date: "2024-06-04T08:33:37Z" - last_post_link: https://kansasreflector.com/2024/06/04/kansans-in-desperate-need-of-affordable-health-care-deserve-our-compassion-and-help/ + last_post_title: Missouri Gov. Mike Parson signs tax break for KC nuclear weapons + manufacturer + last_post_description: Developers planning to expand a Kansas City facility manufacturing + nuclear weapons components will get a break on sales tax under legislation Gov. + Mike Parson signed Monday. Parson held a signing + last_post_date: "2024-07-08T22:23:17Z" + last_post_link: https://kansasreflector.com/briefs/missouri-gov-mike-parson-signs-tax-break-for-kc-nuclear-weapons-manufacturer/ last_post_categories: - - Commentary - - Health - - health care - - health insurance - - KanCare - - Kansas Medicaid - - Kansas medicaid expansion - - medicaid expansion - - Mental Health - last_post_guid: a1c4799a109972104cc4ce4a00e33da3 + - Environment + - Gov. Mike Parson + - Honeywell International + - Kansas City + - National Nuclear Security Administration + - Politics + Government + last_post_language: "" + last_post_guid: 9e2d2dbcd1049caeab36285355478895 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 16 + score: 20 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-7e0a144d40c8e35d2bc95e8038e26301.md b/content/discover/feed-7e0a144d40c8e35d2bc95e8038e26301.md index 211491a3f..33ffa9de3 100644 --- a/content/discover/feed-7e0a144d40c8e35d2bc95e8038e26301.md +++ b/content/discover/feed-7e0a144d40c8e35d2bc95e8038e26301.md @@ -17,7 +17,7 @@ params: - memory palace - mnemonic relme: - https://www.paganwandererlu.co.uk/: false + https://paganwandererlu.wordpress.com/: true last_post_title: Memory Palace last_post_description: A memory palace is a way of helping yourself remember things. A mnemonic. But in lockdown my mind started building its own palace. It kept spontaneously @@ -29,17 +29,22 @@ params: - bass guitar - memory palace - mnemonic + last_post_language: "" last_post_guid: a0d2b4bb8e9a91ec798c7990b24194eb score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 12 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-7e2af8e004aa73dc9323ad936ffd9501.md b/content/discover/feed-7e2af8e004aa73dc9323ad936ffd9501.md deleted file mode 100644 index 5c0174555..000000000 --- a/content/discover/feed-7e2af8e004aa73dc9323ad936ffd9501.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Philipp Defner -date: "1970-01-01T00:00:00Z" -description: Public posts from @dewey@mastodon.social -params: - feedlink: https://mastodon.social/@dewey.rss - feedtype: rss - feedid: 7e2af8e004aa73dc9323ad936ffd9501 - websites: - https://mastodon.social/@dewey: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://annoying.technology/: true - https://notmyhostna.me/: true - https://twitter.com/tehwey: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7e42175ec48ec4b5e5beafcaa7dfccdf.md b/content/discover/feed-7e42175ec48ec4b5e5beafcaa7dfccdf.md new file mode 100644 index 000000000..65479cb59 --- /dev/null +++ b/content/discover/feed-7e42175ec48ec4b5e5beafcaa7dfccdf.md @@ -0,0 +1,44 @@ +--- +title: Stefan's blog +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://stefandimov.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 7e42175ec48ec4b5e5beafcaa7dfccdf + websites: + https://stefandimov.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Eclipse JPA Diagram Editor + relme: + https://stefandimov.blogspot.com/: true + https://www.blogger.com/profile/02284226527305502570: true + last_post_title: JPA Diagram Editor released with Indigo + last_post_description: "The new Eclipse is a fact - Indigo is out! And along with + it - the JPA Diagram Editor! \n\nA few months ago the JPA Diagram Editor came + out of incubation phase and became a component of the Eclipse" + last_post_date: "2011-06-27T21:44:00Z" + last_post_link: https://stefandimov.blogspot.com/2011/06/jpa-diagram-editor-released-with-indigo.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 0a6386d67b262c7fd9ea88db747b33c5 + score_criteria: + cats: 1 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 11 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7e4982db7e45c0baadc6bfe99c1ddafb.md b/content/discover/feed-7e4982db7e45c0baadc6bfe99c1ddafb.md new file mode 100644 index 000000000..fcd6b4b27 --- /dev/null +++ b/content/discover/feed-7e4982db7e45c0baadc6bfe99c1ddafb.md @@ -0,0 +1,49 @@ +--- +title: Martin Fitzpatrick +date: "1970-01-01T00:00:00Z" +description: Python tutorials, projects and books +params: + feedlink: https://blog.martinfitzpatrick.com/feeds/rss.xml + feedtype: rss + feedid: 7e4982db7e45c0baadc6bfe99c1ddafb + websites: + https://blog.martinfitzpatrick.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - pyqt + - python + - qt6 + relme: + https://blog.martinfitzpatrick.com/: true + last_post_title: 'PyQt6 Book now available in Korean: 파이썬과 Qt6로 GUI 애플리케이션 만들기 — + The hands-on guide to creating GUI applications with Python gets a new translation' + last_post_description: |- + I am very happy to announce that my Python GUI programming book + Create GUI Applications with Python & Qt6 / PyQt6 Edition … + last_post_date: "2023-05-04T09:00:00Z" + last_post_link: https://blog.martinfitzpatrick.com/pyqt6-book-now-available-in-korean/ + last_post_categories: + - pyqt + - python + - qt6 + last_post_language: "" + last_post_guid: 64b62d374c4acf10f531067045f63226 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7e56d31f2acda3c4f67b866e2f4a3aaa.md b/content/discover/feed-7e56d31f2acda3c4f67b866e2f4a3aaa.md deleted file mode 100644 index 585bdcf1f..000000000 --- a/content/discover/feed-7e56d31f2acda3c4f67b866e2f4a3aaa.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Security.NL maakt Nederland veilig -date: "2024-06-04T15:45:01+02:00" -description: Security.NL maakt Nederland veilig -params: - feedlink: https://www.security.nl/rss/headlines.xml - feedtype: rss - feedid: 7e56d31f2acda3c4f67b866e2f4a3aaa - websites: - https://www.security.nl/: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: [] - relme: {} - last_post_title: 'Staatssecretaris: impact ddos-aanvallen vaak beperkt en symbolisch - van aard' - last_post_description: Ddos-aanvallen zijn vaak beperkt en symbolisch van aard, - maar de overheid heeft geen overzicht van dergelijke aanvallen, aldus ... - last_post_date: "2024-06-04T15:25:05+02:00" - last_post_link: https://www.security.nl/posting/844201/Staatssecretaris%3A+impact+ddos-aanvallen+vaak+beperkt+en+symbolisch+van+aard?channel=rss - last_post_categories: [] - last_post_guid: edb41f4e852214785a37c5940fc705bc - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7e5b592a9554f6ade4764bfbb44af046.md b/content/discover/feed-7e5b592a9554f6ade4764bfbb44af046.md deleted file mode 100644 index 6c97f2672..000000000 --- a/content/discover/feed-7e5b592a9554f6ade4764bfbb44af046.md +++ /dev/null @@ -1,49 +0,0 @@ ---- -title: pages tagged OpenStack -date: "2018-02-01T10:19:02Z" -description: mcwhirter.com.au -params: - feedlink: https://mcwhirter.com.au/tags/OpenStack/index.rss - feedtype: rss - feedid: 7e5b592a9554f6ade4764bfbb44af046 - websites: - https://mcwhirter.com.au/tags/OpenStack/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - JuJu - - MAAS - - Ubuntu - - corosync - - openstack - relme: {} - last_post_title: Querying Installed Package Versions Across An Openstack Cloud - last_post_description: |- - AKA: The Joy of juju run - - Package upgrades across an OpenStack cloud do - not always happen at the same time. In most cases they may happen within an - hour or so across your cloud but for a variety - last_post_date: "2018-02-01T17:04:24Z" - last_post_link: http://mcwhirter.com.au//craige/blog/2018/Querying_Installed_Package_Versions_Across_An_Openstack_Cloud/ - last_post_categories: - - JuJu - - MAAS - - Ubuntu - - corosync - - openstack - last_post_guid: 95b373de003d3b41618e70a03d35633e - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7e71d980c2a923d7ca650925335f269b.md b/content/discover/feed-7e71d980c2a923d7ca650925335f269b.md new file mode 100644 index 000000000..1be657f9d --- /dev/null +++ b/content/discover/feed-7e71d980c2a923d7ca650925335f269b.md @@ -0,0 +1,141 @@ +--- +title: Area Code World And Settings +date: "1970-01-01T00:00:00Z" +description: Here we have good content about the USA all Area codes +params: + feedlink: https://darlanshop2.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 7e71d980c2a923d7ca650925335f269b + websites: + https://darlanshop2.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Area code + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: All About Area Code 800 + last_post_description: Region code 800 was initially put to support on January 1, + 1966, and was the primary complementary region code in the United States, with + the other being 833, 844, 855, 866, 877, and 888. In + last_post_date: "2022-01-03T14:43:00Z" + last_post_link: https://darlanshop2.blogspot.com/2022/01/all-about-area-code-800.html + last_post_categories: + - Area code + last_post_language: "" + last_post_guid: 3c809419eb1ce82e08416ee96ec0b072 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7e8e1dd7c9690e73a71b34bdaea3e1cb.md b/content/discover/feed-7e8e1dd7c9690e73a71b34bdaea3e1cb.md deleted file mode 100644 index 730d56e34..000000000 --- a/content/discover/feed-7e8e1dd7c9690e73a71b34bdaea3e1cb.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Comments for Verily -date: "1970-01-01T00:00:00Z" -description: Nothing Interesting -params: - feedlink: https://degruchy.org/comments/feed/ - feedtype: rss - feedid: 7e8e1dd7c9690e73a71b34bdaea3e1cb - websites: - https://degruchy.org/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7eb555e9511a4de50fb19bc0d0fe35de.md b/content/discover/feed-7eb555e9511a4de50fb19bc0d0fe35de.md deleted file mode 100644 index 4aa0a88dc..000000000 --- a/content/discover/feed-7eb555e9511a4de50fb19bc0d0fe35de.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Adam Keys is Linking -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://short.therealadam.com/feed.xml - feedtype: rss - feedid: 7eb555e9511a4de50fb19bc0d0fe35de - websites: - https://short.therealadam.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/therealadam: false - https://micro.blog/therealadam: false - https://twitter.com/therealadam: false - last_post_title: Trim the attention sails - last_post_description: 'In America, the 2024 election cycle is unlikely to amuse - anyone. Maybe this is a rallying point for “unifying” the country: a near-universal - loathing of our politicians, how they get themselves' - last_post_date: "2024-04-08T11:04:58-05:00" - last_post_link: https://short.therealadam.com/2024/04/08/trim-the-attention.html - last_post_categories: [] - last_post_guid: 51361da9f771c159b2133f3979d338f9 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7ef3e4f5c0fc0fd23b725cbc4b39ba3f.md b/content/discover/feed-7ef3e4f5c0fc0fd23b725cbc4b39ba3f.md deleted file mode 100644 index 413b39561..000000000 --- a/content/discover/feed-7ef3e4f5c0fc0fd23b725cbc4b39ba3f.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Home Assistant -date: "1970-01-01T00:00:00Z" -description: Public posts from @homeassistant@fosstodon.org -params: - feedlink: https://fosstodon.org/@homeassistant.rss - feedtype: rss - feedid: 7ef3e4f5c0fc0fd23b725cbc4b39ba3f - websites: - https://fosstodon.org/@homeassistant: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://twitter.com/home_assistant: false - https://www.home-assistant.io/: true - https://www.home-assistant.io/join-chat: false - https://www.youtube.com/@home_assistant: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7ef5084d73287592b95d912af16c3e16.md b/content/discover/feed-7ef5084d73287592b95d912af16c3e16.md deleted file mode 100644 index 3169d325b..000000000 --- a/content/discover/feed-7ef5084d73287592b95d912af16c3e16.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Frederik Braun -date: "2024-02-02T00:00:00+01:00" -description: "" -params: - feedlink: https://frederik-braun.com/feeds/all.atom.xml - feedtype: atom - feedid: 7ef5084d73287592b95d912af16c3e16 - websites: - https://frederik-braun.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://alexsci.com/blog/rss.xml - categories: - - misc - - websecguide - relme: - https://social.security.plumbing/@freddy: true - last_post_title: How Firefox gives special permissions to some domains - last_post_description: |- - Today, I found someone tweeting about a neat security bug in Chrome, that - bypasses how Chrome disallows extensions from injecting JavaScript into - special domains like chrome.google.com. - The intention - last_post_date: "2024-02-02T00:00:00+01:00" - last_post_link: https://frederik-braun.com/special-browser-privileges-for-some-domains.html - last_post_categories: - - misc - - websecguide - last_post_guid: 8e6cf7aca87bfd351ceaea3f49af8619 - score_criteria: - cats: 0 - description: 0 - postcats: 2 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 14 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7f084d39d770c4851d27fc5bc10a7e4f.md b/content/discover/feed-7f084d39d770c4851d27fc5bc10a7e4f.md deleted file mode 100644 index d8492dc86..000000000 --- a/content/discover/feed-7f084d39d770c4851d27fc5bc10a7e4f.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: A History of Rock Music in 500 Songs -date: "1970-01-01T00:00:00Z" -description: Andrew Hickey presents a history of rock music from 1938 to 1999, looking - at five hundred songs that shaped the genre. -params: - feedlink: https://500songs.com/feed/podcast - feedtype: rss - feedid: 7f084d39d770c4851d27fc5bc10a7e4f - websites: - https://500songs.com/: false - https://500songs.com/series/a-history-of-rock-music-in-500-songs/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Music - - Society & Culture - - History - relme: {} - last_post_title: 'Song 174B: “I Heard it Through the Grapevine” Part Two, “It Takes - Two”' - last_post_description: For those who haven’t heard the announcement I posted , songs - from this point on will sometimes be split among multiple episodes, so this is - the second part of a two-episode look at the song “I - last_post_date: "2024-05-24T20:58:55Z" - last_post_link: https://500songs.com/podcast/song-174b-i-heard-it-through-the-grapevine-part-two-it-takes-two/ - last_post_categories: - - Ashford and Simpson - - Barrett Strong - - Berry Gordy - - Bert Berns - - David Ruffin - - Harvey Fuqua - - Holland-Dozier-Holland - - James Brown - - Kim Weston - - Luther Dixon - - Martha and the Vandellas - - Marvin Gaye - - Mary Wells - - Mickey Stevenson - - Norman Whitfield - - Smokey Robinson - - Tammi Terrell - - The Beatles - - The Temptations - last_post_guid: d8282f4542ed36b261c7c69ce7eec9a3 - score_criteria: - cats: 3 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 14 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-7f52d2e29aea954425a1318ca083b1f3.md b/content/discover/feed-7f52d2e29aea954425a1318ca083b1f3.md new file mode 100644 index 000000000..848f50fca --- /dev/null +++ b/content/discover/feed-7f52d2e29aea954425a1318ca083b1f3.md @@ -0,0 +1,109 @@ +--- +title: __anish__ +date: "2024-02-18T19:11:15-08:00" +description: "" +params: + feedlink: https://anish-patil.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 7f52d2e29aea954425a1318ca083b1f3 + websites: + https://anish-patil.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - "2013" + - ASIA + - Beijing + - FOSS ASIA + - FUDCON Beijing + - Fedora 18 + - GNOME + - GNOME AISA 2012 + - GNOME.ASIA.2014 + - GNOME.ASIA.2017 + - GUADEC + - Glade + - Gtk + - HONG KONG + - IBUS + - INPUT SOURCES + - Python + - SEAOUL + - Singapore + - Typing booster + - X-mas + - android + - app-development + - c++ + - clojure + - clojurescript + - conference + - design + - desktop + - django1.7 + - fed + - fedora + - fedora 21 + - fedora 22 + - flock + - friends + - functional programming + - g11n + - g11nfad + - global + - hunspell + - i18n + - input methods + - javascript + - l10n + - local + - m17n + - marathi + - minglish + - mobile + - mumbai + - node.js + - openshift + - openstack + - party + - react-native + - react-navigation + - socket.io + - statusapp + - taipei + - tokyo + - travel + - vala + - zanata + relme: + https://anish-patil.blogspot.com/: true + https://draft.blogger.com/profile/04283251965734280282: true + last_post_title: How to debug react-native app on Android Avd using clojurescript + last_post_description: "" + last_post_date: "2019-06-16T06:43:53-07:00" + last_post_link: https://anish-patil.blogspot.com/2019/06/how-to-debug-react-native-app-on.html + last_post_categories: + - android + - app-development + - clojurescript + - react-native + last_post_language: "" + last_post_guid: 905021a75bc19a520cc152252b741974 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7f63a60ab07df1f4b917852f83d7f000.md b/content/discover/feed-7f63a60ab07df1f4b917852f83d7f000.md deleted file mode 100644 index f4e55f910..000000000 --- a/content/discover/feed-7f63a60ab07df1f4b917852f83d7f000.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Victoria Drake's Blog -date: "1970-01-01T00:00:00Z" -description: Get the latest posts from Victoria Drake. -params: - feedlink: https://victoria.dev/blog/index.xml - feedtype: rss - feedid: 7f63a60ab07df1f4b917852f83d7f000 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://ttntm.me/blog/feed.xml - - https://ttntm.me/everything.xml - - https://ttntm.me/likes/feed.xml - categories: [] - relme: {} - last_post_title: Post to your static website from your iPhone - last_post_description: Hugo + Collected Notes for a more modern static website solution. - last_post_date: "2024-05-05T00:00:00Z" - last_post_link: https://victoria.dev/blog/post-to-your-static-website-from-your-iphone/ - last_post_categories: [] - last_post_guid: 56acf3acdfcb73869e5095c79af0f031 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7f6468d60f62889f594692995891444f.md b/content/discover/feed-7f6468d60f62889f594692995891444f.md new file mode 100644 index 000000000..530de2437 --- /dev/null +++ b/content/discover/feed-7f6468d60f62889f594692995891444f.md @@ -0,0 +1,59 @@ +--- +title: No sleep for you +date: "1970-01-01T00:00:00Z" +description: The place where you go when you don't have where to go. +params: + feedlink: https://nosleepforyou.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 7f6468d60f62889f594692995891444f + websites: + https://nosleepforyou.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - arena + - fisl + - fun + - google + - hardware + - linux + - lost + - plone + - python + - segurança + - thunderbird + - ubuntu + - zope + relme: + https://nosleepforyou.blogspot.com/: true + last_post_title: Volta da PyConBrasil, Sandboard e Calabresa + last_post_description: 'Bom, eu finalmente reservei um tempinho para fazer um novo + post e contar algumas das coisas que aconteceram durante o mês de Setembro, que + para variar, passou mais rápido do que eu gostaria... :' + last_post_date: "2007-09-29T20:14:00Z" + last_post_link: https://nosleepforyou.blogspot.com/2007/09/volta-da-pyconbrasil-sandboard-e.html + last_post_categories: + - fun + - google + - plone + - python + last_post_language: "" + last_post_guid: 06a5fb8f187b0861cfbfed75004a04f0 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7f6e9d1912e9aa80f78cc7ced201deb6.md b/content/discover/feed-7f6e9d1912e9aa80f78cc7ced201deb6.md new file mode 100644 index 000000000..955bcbadd --- /dev/null +++ b/content/discover/feed-7f6e9d1912e9aa80f78cc7ced201deb6.md @@ -0,0 +1,47 @@ +--- +title: Python on Karan +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://python-karan.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 7f6e9d1912e9aa80f78cc7ced201deb6 + websites: + https://python-karan.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - command line + - python + relme: + https://python-karan.blogspot.com/: true + last_post_title: joe - A .gitignore magician in your command line + last_post_description: |- + A .gitignore magician in your command line. Joe generates .gitignore files from the command line for you. + + https://github.com/karan/joe + last_post_date: "2015-01-17T20:26:00Z" + last_post_link: https://python-karan.blogspot.com/2015/01/joe-gitignore-magician-in-your-command.html + last_post_categories: + - command line + - python + last_post_language: "" + last_post_guid: df442433b74331dce54458064d645297 + score_criteria: + cats: 2 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7f904f003df963dd3e8cca2d938906f1.md b/content/discover/feed-7f904f003df963dd3e8cca2d938906f1.md deleted file mode 100644 index 0f9c5b6ec..000000000 --- a/content/discover/feed-7f904f003df963dd3e8cca2d938906f1.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Mohammad Sajid Anwar -date: "1970-01-01T00:00:00Z" -description: Public posts from @manwar@fosstodon.org -params: - feedlink: https://fosstodon.org/@manwar.rss - feedtype: rss - feedid: 7f904f003df963dd3e8cca2d938906f1 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7fa548bc866e391ddf596a9f53672bc8.md b/content/discover/feed-7fa548bc866e391ddf596a9f53672bc8.md new file mode 100644 index 000000000..079a694cb --- /dev/null +++ b/content/discover/feed-7fa548bc866e391ddf596a9f53672bc8.md @@ -0,0 +1,61 @@ +--- +title: Alex's blog +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://asurkov.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 7fa548bc866e391ddf596a9f53672bc8 + websites: + https://asurkov.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - AT + - DOMi + - HTML + - IAccessible2 + - UIA + - a11y + - aria + - atk + - code + - engagement + - firefox-for-AT + - mathml + - me + - mozilla + - russia + - squabbles + - tech + - traveling + - web + relme: + https://asurkov.blogspot.com/: true + last_post_title: 2nd grade math + last_post_description: There's old soviet animation "38 parrots". The plot of the + movie was the animals were measuring a boa, and they concluded that the boa is + longer in parrots than in monkeys. I always thought this is a + last_post_date: "2017-03-01T01:13:00Z" + last_post_link: https://asurkov.blogspot.com/2017/02/2nd-grade-math.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 93807160dfbc425915f448bc5ce89225 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7fc19fef684ca9bbbf76dfd92aaeb3b1.md b/content/discover/feed-7fc19fef684ca9bbbf76dfd92aaeb3b1.md new file mode 100644 index 000000000..0810203ad --- /dev/null +++ b/content/discover/feed-7fc19fef684ca9bbbf76dfd92aaeb3b1.md @@ -0,0 +1,43 @@ +--- +title: ANy's Argument +date: "1970-01-01T00:00:00Z" +description: Weblog by Alexander Nyßen +params: + feedlink: https://nyssen.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 7fc19fef684ca9bbbf76dfd92aaeb3b1 + websites: + https://nyssen.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://nyssen.blogspot.com/: true + https://www.blogger.com/profile/10639254413012056611: true + last_post_title: GEF4 + 1 = GEF 5 + last_post_description: It's been roughly eight months since we graduated GEF4 1.0.0 + as part of the GEF 4.0.0 (Neon) release, and we have since not kept still. As + its always hard to get a debut right, we first concentrated + last_post_date: "2017-02-09T17:13:00Z" + last_post_link: https://nyssen.blogspot.com/2017/02/gef4-1-gef-5.html + last_post_categories: [] + last_post_language: "" + last_post_guid: d8dcfce38457fe879d5287d35d9d21f3 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7fcc218f53831e78687244c9b5372674.md b/content/discover/feed-7fcc218f53831e78687244c9b5372674.md new file mode 100644 index 000000000..9e84428df --- /dev/null +++ b/content/discover/feed-7fcc218f53831e78687244c9b5372674.md @@ -0,0 +1,40 @@ +--- +title: Babbler - an XMPP library for Java +date: "2024-03-13T14:41:13+01:00" +description: "" +params: + feedlink: https://babbler-xmpp.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 7fcc218f53831e78687244c9b5372674 + websites: + https://babbler-xmpp.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://babbler-xmpp.blogspot.com/: true + last_post_title: Babbler 0.8.1 released + last_post_description: "" + last_post_date: "2019-03-06T21:51:49+01:00" + last_post_link: https://babbler-xmpp.blogspot.com/2019/03/babbler-081-released.html + last_post_categories: [] + last_post_language: "" + last_post_guid: c75dd1935f6189781893b23e70fdef25 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7fd1395cce352a5b11074ff75f50d9dc.md b/content/discover/feed-7fd1395cce352a5b11074ff75f50d9dc.md new file mode 100644 index 000000000..7b5c545b6 --- /dev/null +++ b/content/discover/feed-7fd1395cce352a5b11074ff75f50d9dc.md @@ -0,0 +1,51 @@ +--- +title: eRambler +date: "1970-01-01T00:00:00Z" +description: Recent content on eRambler +params: + feedlink: https://erambler.co.uk/index.xml + feedtype: rss + feedid: 7fd1395cce352a5b11074ff75f50d9dc + websites: + https://erambler.co.uk/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://codeberg.org/jezcope: true + https://erambler.co.uk/: true + https://github.com/jezcope: true + https://gitlab.com/jezcope: true + https://keybase.io/jezcope: true + last_post_title: On Donella Meadows and Systems Thinking + last_post_description: |- + This weekend I started reading + Donella Meadows' + Thinking in Systems: A Primer + and I cannot overstate how profoundly glad I am + to have come across Systems Thinking + as a whole field of study. + It pulls + last_post_date: "2024-06-18T19:08:39+01:00" + last_post_link: https://erambler.co.uk/blog/donella-meadows-systems-thinking/ + last_post_categories: [] + last_post_language: "" + last_post_guid: b3d33b31921c028a87723ee94a64ac14 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-7fd2c3180bd418c706313987044c9184.md b/content/discover/feed-7fd2c3180bd418c706313987044c9184.md deleted file mode 100644 index a6d2a6da0..000000000 --- a/content/discover/feed-7fd2c3180bd418c706313987044c9184.md +++ /dev/null @@ -1,52 +0,0 @@ ---- -title: Videos of Matthias Pfefferle – WordPress.tv -date: "1970-01-01T00:00:00Z" -description: Engage Yourself with WordPress.tv -params: - feedlink: https://wordpress.tv/speakers/matthias-pfefferle/feed/ - feedtype: rss - feedid: 7fd2c3180bd418c706313987044c9184 - websites: - https://wordpress.tv/speakers/matthias-pfefferle/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - "2023" - - Germany (Deutschland) - - Presentation - - WordCampTV - - ActivityPub - - Blog Idea - - Networking - - Social Networks - relme: {} - last_post_title: Friends with ActivityPub – Deine nachhaltige Identität im Web - last_post_description: 'Kommerzielle Soziale Netzwerke können eine faszinierende - Welt sein: Eine ansprechende Oberfläche, die es ermöglicht, zu lesen, zu schreiben - und miteinander zu interagieren, ohne sich um lästige' - last_post_date: "2023-10-22T08:45:52Z" - last_post_link: https://wordpress.tv/2023/10/22/matthias-pfefferle-alex-kirk-friends-with-activitypub-deine-nachhaltige-identitaet-im-web/ - last_post_categories: - - "2023" - - Germany (Deutschland) - - Presentation - - WordCampTV - - ActivityPub - - Blog Idea - - Networking - - Social Networks - last_post_guid: 6aef7c88880c50ce45a8d682ee32b5af - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-7fe7f4bbbc1885967cd2b44bcca3425a.md b/content/discover/feed-7fe7f4bbbc1885967cd2b44bcca3425a.md new file mode 100644 index 000000000..51cd6cd97 --- /dev/null +++ b/content/discover/feed-7fe7f4bbbc1885967cd2b44bcca3425a.md @@ -0,0 +1,52 @@ +--- +title: Software Architecture +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://on-software-architecture.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 7fe7f4bbbc1885967cd2b44bcca3425a + websites: + https://on-software-architecture.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://boardgamethoughts.blogspot.com/: true + https://coderthoughts.blogspot.com/: true + https://hikersthoughts.blogspot.com/: true + https://laarderhoogt.blogspot.com/: true + https://lightdarknesspainting.blogspot.com/: true + https://on-software-architecture.blogspot.com/: true + https://osgithoughts.blogspot.com/: true + https://rockabillfilmsoc.blogspot.com/: true + https://rockabillfilmsociety.blogspot.com/: true + https://testblogaswebsite.blogspot.com/: true + https://www.blogger.com/profile/13786738766478890804: true + last_post_title: This is what we're about + last_post_description: Blah blah blah blah blah blah blah blah blah. Blah blah blah + blah blah blah blah blah blah. Blah blah blah blah blah blah blah blah blah. Blah + blah blah blah blah blah blah blah blah. Blah blah blah + last_post_date: "2013-10-10T19:19:00Z" + last_post_link: https://on-software-architecture.blogspot.com/2013/10/test.html + last_post_categories: [] + last_post_language: "" + last_post_guid: cfae90c6c5592fbe4df05f3358c2e55e + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-7fea97effb19a11b46c93b308816c300.md b/content/discover/feed-7fea97effb19a11b46c93b308816c300.md new file mode 100644 index 000000000..c26904125 --- /dev/null +++ b/content/discover/feed-7fea97effb19a11b46c93b308816c300.md @@ -0,0 +1,137 @@ +--- +title: Area Code 855 USA +date: "2024-02-08T08:09:23-08:00" +description: All you know about area Code please keep visiting to my blogspot. +params: + feedlink: https://viparaclatransfer.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 7fea97effb19a11b46c93b308816c300 + websites: + https://viparaclatransfer.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: City Area Code + last_post_description: "" + last_post_date: "2022-01-13T03:09:51-08:00" + last_post_link: https://viparaclatransfer.blogspot.com/2022/01/city-area-code.html + last_post_categories: [] + last_post_language: "" + last_post_guid: f0498d9778f6e4f1b6d84fe5d828b2da + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-800ada3424a2ce79cb35e47beab1969d.md b/content/discover/feed-800ada3424a2ce79cb35e47beab1969d.md deleted file mode 100644 index 85422e633..000000000 --- a/content/discover/feed-800ada3424a2ce79cb35e47beab1969d.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: The Theoretical Diver -date: "1970-01-01T00:00:00Z" -description: Theorizing about scuba diving -params: - feedlink: https://thetheoreticaldiver.org/wordpress/index.php/feed/ - feedtype: rss - feedid: 800ada3424a2ce79cb35e47beab1969d - websites: - https://thetheoreticaldiver.org/wordpress/: false - https://thetheoreticaldiver.org/wordpress/index.php/about-the-theoretical-diver/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Uncategorized - relme: {} - last_post_title: DIY Submarine - last_post_description: Not a lot of new content here recently. The last days, I - attended 37c3, the annual hacker convention of the Chaos Computer Club which took - place again in Hamburg . So, today, we will have some - last_post_date: "2023-12-30T12:20:27Z" - last_post_link: https://thetheoreticaldiver.org/wordpress/index.php/2023/12/30/diy-submarine/ - last_post_categories: - - Uncategorized - last_post_guid: 8df65b02964cc561ec9c5fcc18a4268f - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-800e0b6b5d604aaa87acbed50208c146.md b/content/discover/feed-800e0b6b5d604aaa87acbed50208c146.md new file mode 100644 index 000000000..a153ba3d3 --- /dev/null +++ b/content/discover/feed-800e0b6b5d604aaa87acbed50208c146.md @@ -0,0 +1,55 @@ +--- +title: Avulsos by Penz - Articles +date: "2023-04-05T00:00:00Z" +description: Articles in Avulsos by Penz page. +params: + feedlink: https://feeds.feedburner.com/lpenz/avulsos/articles.xml + feedtype: rss + feedid: 800e0b6b5d604aaa87acbed50208c146 + websites: + https://www.lpenz.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://github.com/lpenz: true + https://www.lpenz.org/: true + last_post_title: Provisioning a Raspberry Pi using ansible + last_post_description: |- + These are my notes on how to get started provisioning Raspbian with + ansible. + + + + Before using ansible + + + We have to get a working Raspbian installation before using ansible on + the device. + + + + Installing + last_post_date: "2019-01-08T00:00:00Z" + last_post_link: http://www.lpenz.org/articles/ansiblerpi + last_post_categories: [] + last_post_language: "" + last_post_guid: bdba355dc1396f6b034b4a22447976de + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-800f00ea53c4445da78cc00d1ed19104.md b/content/discover/feed-800f00ea53c4445da78cc00d1ed19104.md deleted file mode 100644 index 095fbaddf..000000000 --- a/content/discover/feed-800f00ea53c4445da78cc00d1ed19104.md +++ /dev/null @@ -1,75 +0,0 @@ ---- -title: A History of Rock Music in 500 Songs – A History of Rock Music in 500 Songs -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://500songs.com/series/a-history-of-rock-music-in-500-songs/feed/ - feedtype: rss - feedid: 800f00ea53c4445da78cc00d1ed19104 - websites: - https://500songs.com/series/a-history-of-rock-music-in-500-songs/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Ashford and Simpson - - Barrett Strong - - Berry Gordy - - Bert Berns - - David Ruffin - - Harvey Fuqua - - Holland-Dozier-Holland - - James Brown - - Kim Weston - - Luther Dixon - - Martha and the Vandellas - - Marvin Gaye - - Mary Wells - - Mickey Stevenson - - Norman Whitfield - - Smokey Robinson - - Tammi Terrell - - The Beatles - - The Temptations - relme: {} - last_post_title: 'Song 174B: “I Heard it Through the Grapevine” Part Two, “It Takes - Two”' - last_post_description: For those who haven’t heard the announcement I posted , songs - from this point on will sometimes be split among multiple episodes, so this is - the second part of a two-episode look at the song “I - last_post_date: "2024-05-24T20:58:55Z" - last_post_link: https://500songs.com/podcast/song-174b-i-heard-it-through-the-grapevine-part-two-it-takes-two/ - last_post_categories: - - Ashford and Simpson - - Barrett Strong - - Berry Gordy - - Bert Berns - - David Ruffin - - Harvey Fuqua - - Holland-Dozier-Holland - - James Brown - - Kim Weston - - Luther Dixon - - Martha and the Vandellas - - Marvin Gaye - - Mary Wells - - Mickey Stevenson - - Norman Whitfield - - Smokey Robinson - - Tammi Terrell - - The Beatles - - The Temptations - last_post_guid: 4241906cacb3f9f4981eb5fc93df2bd4 - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8015059f2f057189054e9239ac4555e0.md b/content/discover/feed-8015059f2f057189054e9239ac4555e0.md new file mode 100644 index 000000000..a9de8fbd7 --- /dev/null +++ b/content/discover/feed-8015059f2f057189054e9239ac4555e0.md @@ -0,0 +1,60 @@ +--- +title: StreamHacker +date: "1970-01-01T00:00:00Z" +description: Weotta be hacking +params: + feedlink: https://streamhacker.com/feed/ + feedtype: rss + feedid: 8015059f2f057189054e9239ac4555e0 + websites: + https://streamhacker.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - jinja + - monitoring + - mysql + - permissions + - programming + - salt + - scalyr + - security + - yaml + relme: + https://streamhacker.com/: true + last_post_title: Salt Recipe for Creating a MySQL User with Grants for Scalyr + last_post_description: Salt is a great tool for managing the configuration of many + servers. And when you have many servers, you should also be monitoring them with + a tool like Dataset (aka Scalyr). The scalyr agent can + last_post_date: "2024-06-20T16:00:00Z" + last_post_link: https://streamhacker.com/2024/06/20/salt-recipe-for-creating-a-mysql-user-with-grants-for-scalyr/#utm_source=feed&utm_medium=feed&utm_campaign=feed + last_post_categories: + - jinja + - monitoring + - mysql + - permissions + - programming + - salt + - scalyr + - security + - yaml + last_post_language: "" + last_post_guid: 786213355cf71d156663c83b16a2db16 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-801d69ebe9b8e472ab11873aba4e9224.md b/content/discover/feed-801d69ebe9b8e472ab11873aba4e9224.md deleted file mode 100644 index c1aba8502..000000000 --- a/content/discover/feed-801d69ebe9b8e472ab11873aba4e9224.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Seren Davies -date: "2024-02-29T11:57:23Z" -description: The ramblings of a girly geek -params: - feedlink: https://www.serendavies.me/feed.xml - feedtype: rss - feedid: 801d69ebe9b8e472ab11873aba4e9224 - websites: - https://www.serendavies.me/: true - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: - - nails - relme: {} - last_post_title: NFC Nails - last_post_description: "✨ Hello ✨\n\nYou were taken to this site by Ninjanail’s - NFC Nails!\n\nMore to come soon \U0001F92B" - last_post_date: "2021-01-17T16:00:00Z" - last_post_link: http://www.serendavies.me/nfc-nails/ - last_post_categories: - - nails - last_post_guid: 77157822fd07cec0afabb54348bbab9b - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 14 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-80298ae457017241baa48ba7fb53df1b.md b/content/discover/feed-80298ae457017241baa48ba7fb53df1b.md deleted file mode 100644 index bbb679b46..000000000 --- a/content/discover/feed-80298ae457017241baa48ba7fb53df1b.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: OpenStack – Through Flatland to Thoughtland -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://blog.kortar.org/?cat=2&feed=rss2 - feedtype: rss - feedid: 80298ae457017241baa48ba7fb53df1b - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - MQTT - - Open Source - - OpenStack - - Cloud - relme: {} - last_post_title: 'MQTT in the Cloud: Firehose' - last_post_description: This is the first post in what’s going to be a multi post - series exploring how MQTT can be leveraged in the cloud. The series will look - at several different models for deploying applications in the - last_post_date: "2018-04-17T09:00:28Z" - last_post_link: https://blog.kortar.org/?p=565 - last_post_categories: - - MQTT - - Open Source - - OpenStack - - Cloud - last_post_guid: 769d5fe7dd577c9537a9810c1e23a7ad - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-802dbbcfeb696567ec1b5dd6cd87f7a3.md b/content/discover/feed-802dbbcfeb696567ec1b5dd6cd87f7a3.md deleted file mode 100644 index a173889c6..000000000 --- a/content/discover/feed-802dbbcfeb696567ec1b5dd6cd87f7a3.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: mew news -date: "2022-09-12T21:13:25+02:00" -description: News and updates from mew.tv -params: - feedlink: https://mew.tv/feeds/news.atom - feedtype: atom - feedid: 802dbbcfeb696567ec1b5dd6cd87f7a3 - websites: - https://mew.tv/: false - https://mew.tv/news.html: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: [] - relme: {} - last_post_title: SDL and C++ on Windows 95 - last_post_description: "" - last_post_date: "2022-09-12T21:13:25+02:00" - last_post_link: https://mew.tv/tech/sdl95.html - last_post_categories: [] - last_post_guid: 0d0c4a4e84fc9ec5e6470fcc5c41234a - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-802f955017fbcee6706e6d555366484e.md b/content/discover/feed-802f955017fbcee6706e6d555366484e.md deleted file mode 100644 index 9279dfd95..000000000 --- a/content/discover/feed-802f955017fbcee6706e6d555366484e.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Distributed.blog -date: "1970-01-01T00:00:00Z" -description: The future of work is here. -params: - feedlink: https://distributed.blog/feed/ - feedtype: rss - feedid: 802f955017fbcee6706e6d555366484e - websites: - https://distributed.blog/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Creativity - - News - relme: {} - last_post_title: Yes, Remote Work Can Hamper Creativity. That Doesn’t Mean It Has - To. - last_post_description: The RTO debate has a new point of contention, it seems. At - CNBC’s recent Workforce Executive Council Summit, Ellevest CEO Sallie Krawcheck - said that her team has been more successful overall and - last_post_date: "2024-02-05T15:00:00Z" - last_post_link: https://distributed.blog/2024/02/05/remote-work-creativity/ - last_post_categories: - - Creativity - - News - last_post_guid: 3f21fd91ff51897bb04392c494fc844b - score_criteria: - cats: 0 - description: 3 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-80423abd2d5abd17acf9a34733d2a28d.md b/content/discover/feed-80423abd2d5abd17acf9a34733d2a28d.md deleted file mode 100644 index df01262c2..000000000 --- a/content/discover/feed-80423abd2d5abd17acf9a34733d2a28d.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: wrestling penguins -date: "1970-01-01T00:00:00Z" -description: Linux penguins, that is... -params: - feedlink: https://wrestlingpenguins.wordpress.com/feed/ - feedtype: rss - feedid: 80423abd2d5abd17acf9a34733d2a28d - websites: - https://wrestlingpenguins.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - openstack - - ubuntu - relme: {} - last_post_title: OpenStack 2023.2 Bobcat for Ubuntu 22.04 LTS - last_post_description: The Ubuntu OpenStack team at Canonical is pleased to announce - the general availability of OpenStack 2023.2 Bobcat on Ubuntu 22.04 LTS (Jammy - Jellyfish). For more details on the release, please see - last_post_date: "2023-10-06T12:47:34Z" - last_post_link: https://wrestlingpenguins.wordpress.com/2023/10/06/openstack-2023-2-bobcat-for-ubuntu-22-04-lts/ - last_post_categories: - - openstack - - ubuntu - last_post_guid: 6bcf97fc90e9a382fe25cce74dca768b - score_criteria: - cats: 0 - description: 3 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8054fbac0ca326e02960ca5c8c44969f.md b/content/discover/feed-8054fbac0ca326e02960ca5c8c44969f.md index 125ab88d8..ce6e68dcc 100644 --- a/content/discover/feed-8054fbac0ca326e02960ca5c8c44969f.md +++ b/content/discover/feed-8054fbac0ca326e02960ca5c8c44969f.md @@ -12,48 +12,50 @@ params: recommended: [] recommender: [] categories: + - busan + - dot + - dot's birthday - journal - - creative practice - - drawing - - meditation - - my art - - painting - - photo of sketchbook - - practice - - sketchbook - - watercolour - - zen + - korea2024 + - love + - my photography + - photoessay + - travel relme: https://kopiti.am/@wynlim: true - last_post_title: drawing & painting as a form of meditation - last_post_description: I just started drawing and painting again last week after - stopping for a couple of months. Since then I’ve been trying to do it more regularly, - hoping to incorporate it as a... - last_post_date: "2024-06-01T11:15:52Z" - last_post_link: https://winnielim.org/journal/drawing-painting-as-a-form-of-meditation/ + https://winnielim.org/: true + last_post_title: happy birthday to my favouritest person + last_post_description: Every year on our birth days we’ll try to make a trip overseas + – Singapore is about 50km from east to west so we can’t do any local travelling. + Travelling is vital... + last_post_date: "2024-07-07T06:28:46Z" + last_post_link: https://winnielim.org/journal/happy-birthday-to-my-favouritest-person/ last_post_categories: + - busan + - dot + - dot's birthday - journal - - creative practice - - drawing - - meditation - - my art - - painting - - photo of sketchbook - - practice - - sketchbook - - watercolour - - zen - last_post_guid: e4c2cb7658645f4e6a33ab9538a7ec46 + - korea2024 + - love + - my photography + - photoessay + - travel + last_post_language: "" + last_post_guid: 2210b9b37aa7fe2b2a9f0d43ac638b15 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-8060b31ead854b29e6dbab1cf337fd7e.md b/content/discover/feed-8060b31ead854b29e6dbab1cf337fd7e.md deleted file mode 100644 index aa819e3ca..000000000 --- a/content/discover/feed-8060b31ead854b29e6dbab1cf337fd7e.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Comments for Javier Peña's technology blog -date: "1970-01-01T00:00:00Z" -description: My articles on technology -params: - feedlink: https://jpenatech.wordpress.com/comments/feed/ - feedtype: rss - feedid: 8060b31ead854b29e6dbab1cf337fd7e - websites: - https://jpenatech.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Successfully resetting the root password of a CentOS - 7 VM in OpenStack by Successfully resetting the root password of a CentOS 7 VM - in OpenStack | Welcome To Prasad Linux Blog - last_post_description: '[…] Thanks to Javier Peña’s technology blog […]' - last_post_date: "2019-10-04T07:17:08Z" - last_post_link: https://jpenatech.wordpress.com/2017/04/20/successfully-resetting-the-root-password-of-a-centos-7-vm-in-openstack/comment-page-1/#comment-13995 - last_post_categories: [] - last_post_guid: 7c6388895ce009a0fb72464e3cd80b1c - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8060d079292a2ab1523cf118e56d7cc2.md b/content/discover/feed-8060d079292a2ab1523cf118e56d7cc2.md new file mode 100644 index 000000000..deeb00ee8 --- /dev/null +++ b/content/discover/feed-8060d079292a2ab1523cf118e56d7cc2.md @@ -0,0 +1,43 @@ +--- +title: Terminus +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://draenog.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 8060d079292a2ab1523cf118e56d7cc2 + websites: + https://draenog.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://draenog.blogspot.com/: true + https://www.blogger.com/profile/03530610982365125787: true + last_post_title: What No Comments? + last_post_description: Thanks to everybody who commented on the JamVM 2.0.0 release, + and apologies it's taken so long to approve them - I was expecting to get an email + when I had an unmoderated comment but I haven't + last_post_date: "2014-08-17T00:49:00Z" + last_post_link: https://draenog.blogspot.com/2014/08/what-no-comments.html + last_post_categories: [] + last_post_language: "" + last_post_guid: a40f5aa228d4d1136ea98763975ecebf + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-806fa9b40fb8c0b14af795fd3d2c5d60.md b/content/discover/feed-806fa9b40fb8c0b14af795fd3d2c5d60.md new file mode 100644 index 000000000..453fe41dc --- /dev/null +++ b/content/discover/feed-806fa9b40fb8c0b14af795fd3d2c5d60.md @@ -0,0 +1,142 @@ +--- +title: My Village Area Code +date: "1970-01-01T00:00:00Z" +description: Please keep visiting to blogspot and get information about area code. +params: + feedlink: https://posadzoneizjedzone.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 806fa9b40fb8c0b14af795fd3d2c5d60 + websites: + https://posadzoneizjedzone.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Country Area Code + last_post_description: |- + Determining if an aged dementia patient has + left a care facility + + The region accuracy required for 855 area code location LDS varies + from service to provider. For instance, flip via turn navigation + last_post_date: "2022-01-16T09:15:00Z" + last_post_link: https://posadzoneizjedzone.blogspot.com/2022/01/country-area-code.html + last_post_categories: [] + last_post_language: "" + last_post_guid: f47bd3e7dd630f3a7056456cfabe2eb2 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-80979cda924bb06a28b346ebc150e730.md b/content/discover/feed-80979cda924bb06a28b346ebc150e730.md new file mode 100644 index 000000000..af8d0142b --- /dev/null +++ b/content/discover/feed-80979cda924bb06a28b346ebc150e730.md @@ -0,0 +1,141 @@ +--- +title: Ddosing Vs Internet Report +date: "1970-01-01T00:00:00Z" +description: ddosing is having many caring things. +params: + feedlink: https://thedigiezone.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 80979cda924bb06a28b346ebc150e730 + websites: + https://thedigiezone.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Ddosing is care + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Ddosing is About Care + last_post_description: In networks, even on the web, all frameworks have their cutoff + points. One approach to make a framework secure and survivable is to build its + cutoff points or all in all strength. The more assets + last_post_date: "2021-04-22T18:46:00Z" + last_post_link: https://thedigiezone.blogspot.com/2021/04/ddosing-is-about-care.html + last_post_categories: + - Ddosing is care + last_post_language: "" + last_post_guid: 869a62d0147b8962ea5a9804b6f43772 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-809cf341992074a19bcc520af68342d0.md b/content/discover/feed-809cf341992074a19bcc520af68342d0.md new file mode 100644 index 000000000..1a377ca3f --- /dev/null +++ b/content/discover/feed-809cf341992074a19bcc520af68342d0.md @@ -0,0 +1,44 @@ +--- +title: atthis.link +date: "1970-01-01T00:00:00Z" +description: Building better online spaces. +params: + feedlink: https://atthis.link/rss.xml + feedtype: rss + feedid: 809cf341992074a19bcc520af68342d0 + websites: + https://atthis.link/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: [] + relme: + https://atthis.link/: true + https://mastodon.social/@0066cc: true + last_post_title: Software that Fits in Your Backpack + last_post_description: The latest from atthis.link + last_post_date: "2024-06-28T01:00:00Z" + last_post_link: https://atthis.link/blog/2023/16728.html + last_post_categories: [] + last_post_language: "" + last_post_guid: e9907de3df617b06cf2bf178c93a4806 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-80a89753ad8fb1f6c7f811f85b21ac52.md b/content/discover/feed-80a89753ad8fb1f6c7f811f85b21ac52.md index 157aafe1f..8ba97bf6e 100644 --- a/content/discover/feed-80a89753ad8fb1f6c7f811f85b21ac52.md +++ b/content/discover/feed-80a89753ad8fb1f6c7f811f85b21ac52.md @@ -12,29 +12,26 @@ params: recommended: [] recommender: [] categories: - - programming - - c++ - - fuzzing - - kmemcheck - - linux + - Fedora - afl - audio - - debugging - - opengl - - Fedora - biblatex - bibtex - biology + - c + - c++ - c-reduce - chipmunk - clang - crash - css + - debugging - delta debugging - denmark - diku - free software - freedom + - fuzzing - gcc - gnu - gsoc @@ -45,12 +42,16 @@ params: - java - javascript - kernel + - kmemcheck - latex + - linux - llvm - midi - music + - opengl - openssh - physics + - programming - rustc - sdl - space invaders @@ -59,7 +60,7 @@ params: - testcase minimization relme: https://mastodon.social/@vegard: true - https://www.blogger.com/profile/04821963505711884515: true + https://www.vegardno.net/: true last_post_title: Stigmergy in programming last_post_description: Ants are known to leave invisible pheromones on their paths in order to inform both themselves and their fellow ants where to go to find food @@ -70,17 +71,22 @@ params: - biology - programming - stigmergy + last_post_language: "" last_post_guid: 91e5a08ba7207dfe18fc02d523ebd98a score_criteria: cats: 5 description: 0 + feedlangs: 0 postcats: 3 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-80aa03a811bb403e7a22d00be35021ee.md b/content/discover/feed-80aa03a811bb403e7a22d00be35021ee.md deleted file mode 100644 index 81c946411..000000000 --- a/content/discover/feed-80aa03a811bb403e7a22d00be35021ee.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: i.webthings.hub -date: "2024-06-03T16:45:15Z" -description: "" -params: - feedlink: https://iwebthings.jenett.org/feed.atom - feedtype: atom - feedid: 80aa03a811bb403e7a22d00be35021ee - websites: - https://iwebthings.jenett.org/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - resources - - gratis - relme: {} - last_post_title: “You can find inspiration here.” - last_post_description: "" - last_post_date: "2024-06-03T11:55:13Z" - last_post_link: https://iwebthings.joejenett.com/you-can-find-inspiration-here/ - last_post_categories: - - resources - - gratis - last_post_guid: e91d14d9caae58173e1268f41dd68887 - score_criteria: - cats: 0 - description: 0 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-80aaaf4d5e125918abda45ea957b59cc.md b/content/discover/feed-80aaaf4d5e125918abda45ea957b59cc.md index 472704b67..9d2448b3d 100644 --- a/content/discover/feed-80aaaf4d5e125918abda45ea957b59cc.md +++ b/content/discover/feed-80aaaf4d5e125918abda45ea957b59cc.md @@ -12,36 +12,38 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: - Health relme: {} - last_post_title: What do unicorn tongues and snails have to do with sex? - last_post_description: The innovation in sex toys seems exponential. Almost like - an engineer goes -- SciFi character + sexual anatomy + something that has never - been done before = latest pleasure creation. Adam & Eve, a - last_post_date: "2024-05-10T18:46:30Z" - last_post_link: https://nebula.tv/videos/sexplanations-what-do-unicorn-tongues-and-snails-have-to-do-with-sex/ + last_post_title: '"How Can I Build Confidence to Approach Women?" A Letter to Dr. + Doe' + last_post_description: This episode is almost pure questions, tiny answers. I've + chosen to read verbatim an email from one of you to illustrate -- how other people + think, worry, and reach out for help. I think there's + last_post_date: "2024-07-03T14:58:59Z" + last_post_link: https://nebula.tv/videos/sexplanations-how-can-i-build-confidence-to-approach-women-a-letter-to-dr-doe/ last_post_categories: - Health - last_post_guid: 33b224b1748845cffdfa2ba30fe8de9d + last_post_language: "" + last_post_guid: 85f40ee5891327ac4994b0f633c703d9 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 14 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-80ad4bd599c7945563e647eb6212d09d.md b/content/discover/feed-80ad4bd599c7945563e647eb6212d09d.md deleted file mode 100644 index e6b3c51bf..000000000 --- a/content/discover/feed-80ad4bd599c7945563e647eb6212d09d.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Cole ☕️ -date: "1970-01-01T00:00:00Z" -description: Public posts from @coleb@mas.to -params: - feedlink: https://mas.to/@coleb.rss - feedtype: rss - feedid: 80ad4bd599c7945563e647eb6212d09d - websites: - https://mas.to/@coleb: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://ko-fi.com/coleb: false - https://www.coleb.blog/: false - https://www.fromcole.com/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-80d59f5828e1ac390a8f217edc5cb846.md b/content/discover/feed-80d59f5828e1ac390a8f217edc5cb846.md new file mode 100644 index 000000000..013f7e9f3 --- /dev/null +++ b/content/discover/feed-80d59f5828e1ac390a8f217edc5cb846.md @@ -0,0 +1,44 @@ +--- +title: Polaris64's blog +date: "1970-01-01T00:00:00Z" +description: Recent content on Polaris64's blog +params: + feedlink: https://blog.polaris64.net/index.xml + feedtype: rss + feedid: 80d59f5828e1ac390a8f217edc5cb846 + websites: + https://blog.polaris64.net/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://blog.polaris64.net/: true + https://emacs.ch/@polaris64: true + https://polaris64.emacs.ch/: true + last_post_title: Using Org Mode to keep track of exercise + last_post_description: |- + Introduction + I have been using Org mode to keep a daily journal of useful notes for around a year now. One such type of note is the amount of exercise I’ve done on a particular day. While this is a + last_post_date: "2020-08-30T00:00:00+01:00" + last_post_link: https://blog.polaris64.net/post/emacs-using-org-mode-to-track-exercises/ + last_post_categories: [] + last_post_language: "" + last_post_guid: bf1473e857e151c10ff23756864afc4b + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-80db77f5accb6e09d5c6e8ead0622336.md b/content/discover/feed-80db77f5accb6e09d5c6e8ead0622336.md new file mode 100644 index 000000000..1a73a0f2e --- /dev/null +++ b/content/discover/feed-80db77f5accb6e09d5c6e8ead0622336.md @@ -0,0 +1,54 @@ +--- +title: Federico's Blog +date: "2024-06-21T18:57:24-06:00" +description: "" +params: + feedlink: https://viruta.org/feeds/atom.xml + feedtype: atom + feedid: 80db77f5accb6e09d5c6e8ead0622336 + websites: + https://viruta.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - gnome + - librsvg + - misc + - refactoring + - rust + relme: + https://viruta.org/: true + last_post_title: Fixing a memory leak of xmlEntityPtr in librsvg + last_post_description: |- + Since a few weeks ago, librsvg is now in oss-fuzz — + Google's constantly-running fuzz-testing for OSS projects — and the + crashes have started coming in. I'll have a lot more to say soon + about + last_post_date: "2024-06-13T11:00:34-06:00" + last_post_link: https://viruta.org/fixing-xml-entity-leak.html + last_post_categories: + - gnome + - librsvg + - misc + - refactoring + - rust + last_post_language: "" + last_post_guid: 231225855218034eddc650a7583f1079 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-80dff0b3c1233726366348b1767a5fb8.md b/content/discover/feed-80dff0b3c1233726366348b1767a5fb8.md deleted file mode 100644 index 174313c15..000000000 --- a/content/discover/feed-80dff0b3c1233726366348b1767a5fb8.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Mariya Delano -date: "1970-01-01T00:00:00Z" -description: Public posts from @mariyadelano@hachyderm.io -params: - feedlink: https://hachyderm.io/@mariyadelano.rss - feedtype: rss - feedid: 80dff0b3c1233726366348b1767a5fb8 - websites: - https://hachyderm.io/@mariyadelano: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/approved: true - https://kalynamarketing.com/: true - https://linkedin.com/in/ria-delano/: false - https://www.admdnewsletter.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-80e120af878959bbd6802bb071108f59.md b/content/discover/feed-80e120af878959bbd6802bb071108f59.md deleted file mode 100644 index 0345f6a63..000000000 --- a/content/discover/feed-80e120af878959bbd6802bb071108f59.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Dolpuns -date: "2024-03-12T16:55:23-07:00" -description: "" -params: - feedlink: https://dolpuns.blogspot.com/feeds/posts/default - feedtype: atom - feedid: 80e120af878959bbd6802bb071108f59 - websites: - https://dolpuns.blogspot.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://www.blogger.com/profile/09594428564020352013: true - last_post_title: '#8 - Stash' - last_post_description: "" - last_post_date: "2012-04-07T20:25:18-07:00" - last_post_link: https://dolpuns.blogspot.com/2012/04/8-stash.html - last_post_categories: [] - last_post_guid: 5fa132204e73842e16749f18f761a84e - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-80f04e46daa79b68c498e43f6e7a20ab.md b/content/discover/feed-80f04e46daa79b68c498e43f6e7a20ab.md new file mode 100644 index 000000000..84fdb1107 --- /dev/null +++ b/content/discover/feed-80f04e46daa79b68c498e43f6e7a20ab.md @@ -0,0 +1,44 @@ +--- +title: Devco.Net +date: "1970-01-01T00:00:00Z" +description: Recent content on Devco.Net +params: + feedlink: https://www.devco.net/index.xml + feedtype: rss + feedid: 80f04e46daa79b68c498e43f6e7a20ab + websites: + https://www.devco.net/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://www.devco.net/: true + last_post_title: Lab Infra Rebuild Part 5 + last_post_description: |- + This is an ongoing post about rebuilding my lab infrastructure, see the initial post here. + Today let’s look at VMs and Baremetals and Operating Systems. + Virtual Machines + As I mentioned I’ve been + last_post_date: "2024-04-25T06:00:00Z" + last_post_link: https://www.devco.net/posts/2024/04/25/lab-infa-rebuild-5/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 6e525ba1e1fcd27f592ced8b0d6c566c + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-80f0a02c4645dbfebb3760dc5e083b30.md b/content/discover/feed-80f0a02c4645dbfebb3760dc5e083b30.md new file mode 100644 index 000000000..2ff9080b0 --- /dev/null +++ b/content/discover/feed-80f0a02c4645dbfebb3760dc5e083b30.md @@ -0,0 +1,102 @@ +--- +title: Geek Versus Guitar +date: "2024-03-13T08:28:26-07:00" +description: A Geek. A Guitar. You've Been Warned. +params: + feedlink: https://geekversusguitar.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 80f0a02c4645dbfebb3760dc5e083b30 + websites: + https://geekversusguitar.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 12-string + - Adamas + - Administrivia + - Amplifiers + - Aphorisms + - Babicz + - Bandcamp + - Carvin + - Chords + - Creative Commons + - Demos + - EMG + - Fernandes Telecaster Copy + - Fingerpicking + - Godin + - Godin LG + - Guitar Parts + - Guitar Pron + - Guitar Synth + - Guitars + - Heil PR-40 + - Inverse T. Clown + - Jag-Stang + - Joe "Covenant" Lamb + - Jonathan Coulton + - Lake Superior + - Mackinac Bridge + - Munising Falls + - Ovation + - Parker Fly + - Peavey + - Peavey Limited + - Practice Videos + - Riffs + - Roland Cube Street + - Rush + - Song Fu + - Sony PCM-D1 + - Sony PCM-D50 + - SpinTunes + - Squier Super-Sonic + - Squier Venus + - Steinberger + - Steinberger Synapse + - Steinberger XP + - Synapse + - T-15 + - T-60 + - Tahquamenon Falls + - The Mandelbrot Set + - Today's the Day + - YouTube Video + - eBay + - mandolin + - ukulele + relme: + https://armstrong-collection.blogspot.com/: true + https://geeklikemetoo.blogspot.com/: true + https://geekversusguitar.blogspot.com/: true + https://hodgecast.blogspot.com/: true + https://pottscast.blogspot.com/: true + https://praisecurseandrecurse.blogspot.com/: true + https://thebooksthatwroteme.blogspot.com/: true + https://www.blogger.com/profile/04401509483200614806: true + last_post_title: SpinTunes 8 Round 4 Rankings and Reviews + last_post_description: "" + last_post_date: "2014-03-28T13:19:55-07:00" + last_post_link: https://geekversusguitar.blogspot.com/2014/03/spintunes-8-round-4-rankings-and-reviews.html + last_post_categories: [] + last_post_language: "" + last_post_guid: f113f8a7d74d74e1cea0bf5fc6a1f40b + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-80fc17cf3b3dbd3ab61b5aa5aeab231a.md b/content/discover/feed-80fc17cf3b3dbd3ab61b5aa5aeab231a.md new file mode 100644 index 000000000..a71e9e2dd --- /dev/null +++ b/content/discover/feed-80fc17cf3b3dbd3ab61b5aa5aeab231a.md @@ -0,0 +1,44 @@ +--- +title: Comments for vanitasvitae's blog +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://blog.jabberhead.tk/comments/feed/ + feedtype: rss + feedid: 80fc17cf3b3dbd3ab61b5aa5aeab231a + websites: + https://blog.jabberhead.tk/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://blog.jabberhead.tk/: true + https://github.com/vanitasvitae: true + last_post_title: 'Comment on Tutorial: Home-made OMEMO client by Abbas' + last_post_description: |- + Hi. + encryptForExistingSessions is not existed in smack 4.4.8! + Please suggest an alternative. + last_post_date: "2024-04-22T14:03:57Z" + last_post_link: https://blog.jabberhead.tk/2017/06/14/homemo/#comment-24282 + last_post_categories: [] + last_post_language: "" + last_post_guid: 371dab975e96fc2b5f167ad40e35713c + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-80fd678e06388cb24eeab9c949f15414.md b/content/discover/feed-80fd678e06388cb24eeab9c949f15414.md index f301adb9b..0c449a89a 100644 --- a/content/discover/feed-80fd678e06388cb24eeab9c949f15414.md +++ b/content/discover/feed-80fd678e06388cb24eeab9c949f15414.md @@ -14,29 +14,33 @@ params: recommender: - https://amerpie.lol/feed.xml categories: - - Weeknotes + - Linkblogs relme: - https://mastodon.social/@ianbetteridge: false - https://micro.blog/ianbetteridge: false - last_post_title: Weeknote, Sunday 2nd June 2024 - last_post_description: 'First of all, how the hell is it June already? Is it just - me? Is time passing at a ludicrously fast pace? OK, maybe it is just me. This - week was, in work terms, truncated: A bank holiday plus a day' - last_post_date: "2024-06-02T20:52:38Z" - last_post_link: https://ianbetteridge.com/2024/06/02/weeknote-sunday-2nd-june-2024/ + https://ianbetteridge.com/: true + last_post_title: Ten Blue Links, “delayed by the election” edition + last_post_description: 1. I’m shocked, shocked I tell you Surprise! The use of energy-intensive + AI to make stupid graphics that look instantly like AI and write words that it + would take you five minutes to right have + last_post_date: "2024-07-07T17:37:31Z" + last_post_link: https://ianbetteridge.com/2024/07/07/ten-blue-links-delayed-by-the-election-edition/ last_post_categories: - - Weeknotes - last_post_guid: cb453b8b7c60b8dc34ce49039889a3b2 + - Linkblogs + last_post_language: "" + last_post_guid: 8f8d41d7b782848268e31592922bd59e score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 5 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 15 + score: 20 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-8100eb0c9a2e4d5c8f9d0ea80edc98ee.md b/content/discover/feed-8100eb0c9a2e4d5c8f9d0ea80edc98ee.md index 3ac6a3bb2..bb1ed9ae1 100644 --- a/content/discover/feed-8100eb0c9a2e4d5c8f9d0ea80edc98ee.md +++ b/content/discover/feed-8100eb0c9a2e4d5c8f9d0ea80edc98ee.md @@ -13,36 +13,34 @@ params: recommender: - http://scripting.com/rss.xml - http://scripting.com/rssNightly.xml - - https://chrisburnell.com/feed.xml categories: - - automattic - - glamorous - - work - - Working + - Designers relme: https://front-end.social/@zeldman: true - last_post_title: The gift of a three-month sabbatical - last_post_description: It was late winter when my sabbatical began, and it’s late - spring as it comes to an end. Next week I return to my post after three months’ - paid leave, courtesy of Automattic’s sabbatical - last_post_date: "2024-05-28T20:22:04Z" - last_post_link: https://zeldman.com/2024/05/28/the-gift-of-a-three-month-sabbatical/ + https://zeldman.com/: true + last_post_title: Designer Jonathan Lee + last_post_description: The post Designer Jonathan Lee appeared first on Zeldman + on Web and Interaction Design. + last_post_date: "2024-06-20T13:32:46Z" + last_post_link: https://zeldman.com/2024/06/20/designer-jonathan-lee/ last_post_categories: - - automattic - - glamorous - - work - - Working - last_post_guid: 64c6b950fb94734417132ff4e1584e43 + - Designers + last_post_language: "" + last_post_guid: a6c6b35ae1a8c5ed22bc263174e8b9cc score_criteria: cats: 0 description: 3 - postcats: 3 + feedlangs: 1 + postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 18 + score: 20 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-811b1752305dd9c61f4d9b850d42de83.md b/content/discover/feed-811b1752305dd9c61f4d9b850d42de83.md index 3360182f4..5695f42df 100644 --- a/content/discover/feed-811b1752305dd9c61f4d9b850d42de83.md +++ b/content/discover/feed-811b1752305dd9c61f4d9b850d42de83.md @@ -17,27 +17,33 @@ params: relme: https://github.com/tylerhall: true https://mastodon.social/@tylerdotio: true + https://retina.studio/: true https://social.lol/@tylerhall: true - https://twitter.com/tylerhall: false - https://www.linkedin.com/in/tylerhall: false - last_post_title: Inner Workings - last_post_description: If I complain that modern software is too generic and boring, - I should take my own advice and try something fun and borderline silly. - last_post_date: "2024-05-30T04:17:19Z" - last_post_link: https://tyler.io/2024/05/inner-workings/ + https://tyler.io/: true + last_post_title: Light Switch in a Dark Room + last_post_description: We're over a decade into the industry's voice assistant experiment, + and given the same input, the output doesn't feel reliably deterministic. Voice + is an interface that is not stable or discoverable. + last_post_date: "2024-06-08T16:57:49Z" + last_post_link: https://tyler.io/2024/06/light-switch-in-a-dark-room/ last_post_categories: - Uncategorized - last_post_guid: 5c9fcfbce5a2c673facb6136ebfe27b1 + last_post_language: "" + last_post_guid: 544e6d3eb50d666ab6d42ea54fc452f6 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 16 + score: 20 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-8124fcbf635fbd84bfb08145027257d4.md b/content/discover/feed-8124fcbf635fbd84bfb08145027257d4.md index 6e8becf16..2893857a1 100644 --- a/content/discover/feed-8124fcbf635fbd84bfb08145027257d4.md +++ b/content/discover/feed-8124fcbf635fbd84bfb08145027257d4.md @@ -7,36 +7,42 @@ params: feedtype: rss feedid: 8124fcbf635fbd84bfb08145027257d4 websites: - https://daniel.haxx.se/blog: true + https://daniel.haxx.se/blog/: false blogrolls: [] recommended: [] recommender: - https://alexsci.com/blog/rss.xml - - https://hacdias.com/feed.xml categories: + - WolfSSL - cURL and libcurl - - Open Source + - wolfSSL relme: {} - last_post_title: My BDFL guiding principles - last_post_description: The thing about me being a BDFL for curl is that it has the - D in there. I have the means and ability to push for or veto just about anything - I like or don’t like in the project, should I decide to. - last_post_date: "2024-05-27T06:09:03Z" - last_post_link: https://daniel.haxx.se/blog/2024/05/27/my-bdfl-guiding-principles/ + last_post_title: curl for QNX + last_post_description: Starting now, there are official curl releases for QNX hosted + on the curl.se website. See https://curl.se/qnx. QNX is a commercial real-time + operating system and these curl release packages are + last_post_date: "2024-07-05T07:57:34Z" + last_post_link: https://daniel.haxx.se/blog/2024/07/05/curl-for-qnx/ last_post_categories: + - WolfSSL - cURL and libcurl - - Open Source - last_post_guid: 554923f4050249358a6dea821fa44d18 + - wolfSSL + last_post_language: "" + last_post_guid: 5f2503cd4ddd5ded337e63328e3dceab score_criteria: cats: 0 description: 3 - postcats: 2 + feedlangs: 1 + postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 - website: 2 - score: 15 + website: 1 + score: 19 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-8135e97a3f2c5421be20507187422812.md b/content/discover/feed-8135e97a3f2c5421be20507187422812.md new file mode 100644 index 000000000..2635895b3 --- /dev/null +++ b/content/discover/feed-8135e97a3f2c5421be20507187422812.md @@ -0,0 +1,45 @@ +--- +title: A Working Library +date: "2024-06-29T14:29:57-04:00" +description: A working library is a blog about work, reading & technology by Mandy + Brown +params: + feedlink: https://aworkinglibrary.com/feed/index.xml + feedtype: atom + feedid: 8135e97a3f2c5421be20507187422812 + websites: + https://aworkinglibrary.com/: false + blogrolls: [] + recommended: [] + recommender: + - http://scripting.com/rss.xml + - http://scripting.com/rssNightly.xml + - https://colinwalker.blog/dailyfeed.xml + - https://colinwalker.blog/livefeed.xml + categories: [] + relme: {} + last_post_title: “Laborsaving” + last_post_description: Things that were heralded as “laborsaving” devices gave rise + to a whole new industry, and to more labor. + last_post_date: "2024-06-29T14:15:00-04:00" + last_post_link: https://aworkinglibrary.com/writing/laborsaving + last_post_categories: [] + last_post_language: "" + last_post_guid: 6b6ba54ae853b2fbc8eb4ce8947c3398 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 1 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-814b7045321c02323173aac7432a8805.md b/content/discover/feed-814b7045321c02323173aac7432a8805.md new file mode 100644 index 000000000..c20a9b7c8 --- /dev/null +++ b/content/discover/feed-814b7045321c02323173aac7432a8805.md @@ -0,0 +1,56 @@ +--- +title: azakai's blog +date: "2024-03-04T21:49:22-08:00" +description: |- + Alon Zakai aka kripken | Compiling to the Web: Emscripten, Binaryen, asm.js, WebAssembly, etc. + + New posts at: https://kripken.github.io/blog/ +params: + feedlink: https://mozakai.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 814b7045321c02323173aac7432a8805 + websites: + https://mozakai.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - box2d + - e10s + - emscripten + - ipc + - javascript + - meego + - n900 + - performance + - power + - pypy + - python + - sqlite + - xpcom + relme: + https://mozakai.blogspot.com/: true + last_post_title: 2 recent Emscripten stories + last_post_description: "" + last_post_date: "2015-01-06T14:29:04-08:00" + last_post_link: https://mozakai.blogspot.com/2015/01/2-recent-emscripten-stories.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 13af39d97fbdde57b6c6f427aa3303a6 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8158a96d00b474166188b9360d477ded.md b/content/discover/feed-8158a96d00b474166188b9360d477ded.md deleted file mode 100644 index 80a267b8a..000000000 --- a/content/discover/feed-8158a96d00b474166188b9360d477ded.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: garrettc -date: "1970-01-01T00:00:00Z" -description: Public posts from @garrettc@mastodon.org.uk -params: - feedlink: https://mastodon.org.uk/@garrettc.rss - feedtype: rss - feedid: 8158a96d00b474166188b9360d477ded - websites: - https://mastodon.org.uk/@garrettc: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://bsky.app/profile/garrettc.social: false - https://flickr.com/photos/garrettc: false - https://polytechnic.co.uk/: true - https://www.metafilter.com/user/10683: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-815a433bd6322365a98df0798a29e742.md b/content/discover/feed-815a433bd6322365a98df0798a29e742.md deleted file mode 100644 index 398e4226b..000000000 --- a/content/discover/feed-815a433bd6322365a98df0798a29e742.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: DanQ.me -date: "1970-01-01T00:00:00Z" -description: Public posts from @blog@danq.me -params: - feedlink: https://m.danq.me/@blog.rss - feedtype: rss - feedid: 815a433bd6322365a98df0798a29e742 - websites: - https://m.danq.me/@blog: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://danq.me/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-815abcd90578201516b1a816d8350ad4.md b/content/discover/feed-815abcd90578201516b1a816d8350ad4.md new file mode 100644 index 000000000..76bedf7ad --- /dev/null +++ b/content/discover/feed-815abcd90578201516b1a816d8350ad4.md @@ -0,0 +1,148 @@ +--- +title: Reggae And SKA +date: "1970-01-01T00:00:00Z" +description: The power of philosophy floats through my head, light like a feather, + heavy as lead. - Bob Marley +params: + feedlink: https://reggae-and-ska.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 815abcd90578201516b1a816d8350ad4 + websites: + https://reggae-and-ska.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 7Nin Matsuri - Summer Reggae Rainbow [Video Clip] + - Augustus Pablo - Jah Light + - Augustus Pablo - Skanking Easy + - Bad Manners - Walking in The Sunshine [Video Clip] + - BaroBax - Baba to ki hasti + - Bob Marley - Could You Be Loved [Video Clip] + - Bob Marley - Forever Loving Jah [Video Clip] + - Bob Marley - I know a Place [Video Clip] + - Bob Marley - Is This Love [Live] + - Bob Marley - Is This Love [Video Clip] + - Bob Marley - Jammin' [Video Clip] + - Bob Marley - Kinky Reggae [Video Clip] + - Bob Marley - No Woman No Cry [Video Clip] + - Bob Marley - One Love [Video Clip] + - Bob Marley - Red Red Wine + - Bob Marley - Redemption Song [Live] + - Bob Marley - Redemption Song [Video Clip] + - Bob Marley - Skinhead Reggae - 1970 [Video Clip] + - Bob Marley - Sun Is Shining [Video Clip] + - Bob Marley - Three Little Birds [Video Clip] + - Bombskare - Fistful Of Dynamite + - Byron Lee And The DRAGONARiES - Ska Jamaica + - CASSIE Me and U reggae remix BOST and BIM + - Dance Hall Crashers - Mr. Blue [Live] + - Dawn Penn - You Don't Love Me (No + - Gerhana SKA Cinta + - Gerhana SKA Cinta - Hadirnya Cinta [Live] + - Gerhana SKA Cinta - Mimpi [Live] + - Gerhana SKA Cinta - Senyuman Ragamu [Video Clip] + - Gerhana SKA Cinta - Terpesona [Video Clip] + - Gerhana SKA Cinta - The Skinhead Superstar [Live] + - Gerhana SKA Cinta - This Is SKA [Video Clip] + - Inspector Gadget - SKA Version [Video Clip] + - J. Boog + - Jah Maoli + - Jimmy Cliff - Reggae Night [Video Clip] + - Laurel Aitken - Skinhead Boss + - Laurel Aitken - Skinhead [Live] + - Les Skalopes - Kid Hunt - Chasse à l'enfant + - Mr. Symarip + - Mr. Vegas - Tek Weh Yuself + - Nina Hagen - African Reggae [Video Clip] + - No Doubt + - No No) + - ORE SKA BAND - Knife n Fork + - ORE SKA BAND - Wasuremono + - Ocho Y Media - MiniClip + - Ocho Y Media - SKACHA + - Oi Skall Mates - Sadness [Video Clip] + - PRiNCE BUSTER - Whine And Grine [LiVE'98] + - PUFFY x Tokyo Ska Paradise Orchestra - Hazumu Rhythm + - Peter Tosh - Get Up Stand Up [Live] + - Peter Tosh - Johnny B. Goode [Live] + - Peter Tosh - Legalize It [Video Clip] + - Peter Tosh - Veil Of Isis + - Peter Tosh and Bob Marley - TWO TRUE LEGENDS + - Phyllis Dillon - Picture On The Wall + - Polemic - Do SKA + - Polemic - Jah Live + - Polemic - Škandál + - PureVibracion + - Ray Darwin - Peoples Choice + - Republic Of Brickfields - Emansipasi [Live] + - Republic Of Brickfields - Reggae + - Rocksteady The Roots Of Reggae Trailer + - SKA - Special..From Jamaica To The UK + - SKA-P - Intifada + - SKA-P - NI FU NI FA + - SKA-P - Welcome To Hell + - Shaggy - Street Bullies Medley + - Sista Gracy - My Praises + - Sista Gracy - Spiritual A Humble + - Ska-P - Cannabis + - Skudap Skudip - Buktikanlah + - Skudap Skudip - Potret + - Skudap Skudip - SKA La La + - Spawnbreezie + - Steel Pulse - No More Weapons [Video Clip] + - Symarip - Must Catch A Train [Video Clip] + - Symarip - Skinheads Dem A Come + - The Aggrolites - Mr. Misery + - The Madness - Baggy Trousers [Video Clip] + - The Madness - I Pronounce You [Video Clip] + - The Madness - It Must Be Love [Video Clip] + - The Madness - My Girl [Video Clip] + - The Madness - One Step Beyond [Video Clip] + - The Madness - Our House [Video Clip] + - The Madness - Shame And Scandal [Video Clip] + - The Paragons - Tide Is High + - The Selecter - Missing Words [Video Clip] + - The Selecter - Three Minute Hero [Live] + - The Skatalites - Live in Barcelona [March 29:2006] + - The Specials - A Message To You Rudy [Live] + - The Specials - Gangsters [Video Clip] + - The Specials - Ghost Town [Video Clip] + - The Specials - Rat Race [Video Clip] + - The Specials - Rude Boys Outta Jail [Live] + - The Specials - Skinhead Moonstomp [Live] + - Tipe-X - Sakit Hati + - Tokyo SKA Paradise Orchestra - Skaravan [Live] + - Tony Q Rastafara - Republik Sulap + - Toots and the Maytals - Sweet and Dandy [Video Clip] + - Toots and the Maytals- 54-46 Was My Number-Trojan Reggae [Video Clip] + - Tribal Seeds + - Wayne Wade - I Love You Too Much + - Wayne Wade - Lady (Reggae) + - Winston Mc Anuff - Reggae On Broadway [Live] + relme: + https://reggae-and-ska.blogspot.com/: true + last_post_title: Joe White & Chuck - One Nation + last_post_description: Joe White & Chuck - One Nation + last_post_date: "2019-03-03T02:00:00Z" + last_post_link: https://reggae-and-ska.blogspot.com/2019/03/joe-white-chuck-one-nation.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 6c4fc4e08811b1acd15765dd841d42c3 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-816bb873140fca890532ea29cfbaa377.md b/content/discover/feed-816bb873140fca890532ea29cfbaa377.md deleted file mode 100644 index 231dab7cc..000000000 --- a/content/discover/feed-816bb873140fca890532ea29cfbaa377.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Comments for Shores of the Dirac Sea -date: "1970-01-01T00:00:00Z" -description: A blog about physics... mostly. -params: - feedlink: https://diracseashore.wordpress.com/comments/feed/ - feedtype: rss - feedid: 816bb873140fca890532ea29cfbaa377 - websites: - https://diracseashore.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Whoop! by Wyrd Smythe - last_post_description: They detected that first big one on my 60th birthday, - so that's kind of cool! - last_post_date: "2016-02-11T19:19:12Z" - last_post_link: https://diracseashore.wordpress.com/2016/02/11/whoop/#comment-4364 - last_post_categories: [] - last_post_guid: 52a57cff752067cd9c2f9ed56c08120e - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-819e040c681dee6897b6bc975f870aaa.md b/content/discover/feed-819e040c681dee6897b6bc975f870aaa.md index 4e94f5a6f..5ad519a00 100644 --- a/content/discover/feed-819e040c681dee6897b6bc975f870aaa.md +++ b/content/discover/feed-819e040c681dee6897b6bc975f870aaa.md @@ -11,38 +11,40 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php categories: [] relme: https://github.com/mattstein: true https://keybase.io/mattstein: true - https://ko-fi.com/mattstein: false + https://mattstein.com/: true https://pixelfed.social/mattrambles: true - https://read.cv/mattstein: false - https://www.printables.com/social/238086-mattts: false + https://read.cv/mattstein: true last_post_title: The Left Hand of Darkness last_post_description: "" last_post_date: "2024-05-20T00:00:00Z" last_post_link: https://mattstein.com/books/left-hand-of-darkness/ last_post_categories: [] + last_post_language: "" last_post_guid: b103f5a523480be39a728c887a77e0c2 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 19 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-819f0658cef68ef4e2ffd64b4225b6d7.md b/content/discover/feed-819f0658cef68ef4e2ffd64b4225b6d7.md new file mode 100644 index 000000000..c209daccd --- /dev/null +++ b/content/discover/feed-819f0658cef68ef4e2ffd64b4225b6d7.md @@ -0,0 +1,163 @@ +--- +title: Coder's Talk +date: "1970-01-01T00:00:00Z" +description: Having Fun with Computer, Gadget, Programming, Electrical & Electronic, + Robotic and Technology +params: + feedlink: https://coderstalk.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 819f0658cef68ef4e2ffd64b4225b6d7 + websites: + https://coderstalk.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - API + - About me + - ActivePerl + - ActiveState + - AlmaLinux + - Android + - C Programming + - C++ Programming + - Cheat Code + - Cloud Computing + - Command Line + - Computer Science + - DevOps + - HTML + - Hackers + - HitungHari + - LISP + - Linux Optimization + - Linux shell script + - Microsoft TechNet + - MySQL + - OSDC.my + - Operating System + - Perl + - Perl Express + - Perl IDE + - PowerShell + - Profound Vibra + - Programming + - Python Server Page + - SSH + - Scripting Games + - SendMessage + - Socket + - Software Engineering + - StretchBlt + - TS-ARM + - Technology + - The Officials + - Top Individual Scores + - Ubuntu + - VB + - VB6 + - VBScript + - VBScript Beginners Division + - Vibration Measurement + - Videos + - Visual basic + - WM_COMMAND + - Wii + - Windows XP + - XP Style + - anime + - audio + - baby + - bash + - blog + - blogspot hack + - bunsenlabs + - coder's talk + - computer + - css + - database + - database design + - database system + - debian + - electronic + - embedded system + - fakap + - flip form + - gadget + - gprs + - gsm modem + - how to + - install + - internet connection + - it's all about the pentiums + - java web application + - javascript + - kvm + - linux + - mobile phone + - more + - mp3 + - my notes + - networking + - open source + - pagerank + - pentium + - pentium processor + - php + - php programming + - python + - qemu + - rar + - scripting + - squid + - tips and tricks + - translation + - ts-7000 + - ts-7260 + - tutorial + - unix shell + - unrar + - web interface + - web master + - web programming + - weird al yankovic + - wireless + - wordpress + - world's smallest website + - xrandr + - xss + relme: + https://coderstalk.blogspot.com/: true + https://draft.blogger.com/profile/10350138531363117428: true + last_post_title: 'Understanding vm.swappiness: Improving Linux Performance and Memory + Management' + last_post_description: As a Linux user, you may have stumbled across the enigmatic + 'vm.swappiness' setting when examining your system's configuration. The variable + 'vm.swappiness' is important in Linux memory management + last_post_date: "2023-07-23T23:13:00Z" + last_post_link: https://coderstalk.blogspot.com/2023/07/understanding-vmswappiness-improving.html + last_post_categories: + - DevOps + - Linux Optimization + - Operating System + - linux + - open source + last_post_language: "" + last_post_guid: 9fccf5f8ba8dc3d05de80eb38c30965b + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-81b0b0a2a45630b436493a604052f13d.md b/content/discover/feed-81b0b0a2a45630b436493a604052f13d.md deleted file mode 100644 index fb3832c94..000000000 --- a/content/discover/feed-81b0b0a2a45630b436493a604052f13d.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Cwtch -date: "1970-01-01T00:00:00Z" -description: Public posts from @cwtch@fosstodon.org -params: - feedlink: https://fosstodon.org/@cwtch.rss - feedtype: rss - feedid: 81b0b0a2a45630b436493a604052f13d - websites: - https://fosstodon.org/@cwtch: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://cwtch.im/: true - https://git.openprivacy.ca/cwtch.im: false - https://openprivacy.ca/donate: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-81b3808d4eed59493a13c2529871fcf4.md b/content/discover/feed-81b3808d4eed59493a13c2529871fcf4.md deleted file mode 100644 index 169541430..000000000 --- a/content/discover/feed-81b3808d4eed59493a13c2529871fcf4.md +++ /dev/null @@ -1,50 +0,0 @@ ---- -title: Kashyap Chamarthy -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://kashyapc.wordpress.com/feed/ - feedtype: rss - feedid: 81b3808d4eed59493a13c2529871fcf4 - websites: - https://kashyapc.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Uncategorized - - kvm - - libvirt - - OpenStack - - qcow2 - - qemu - - Virtualization - relme: {} - last_post_title: Documentation of QEMU Block Device Operations - last_post_description: QEMU Block Layer currently (as of QEMU 2.10) supports four - major kinds of live block device jobs – stream, commit, mirror, and backup. These - can be used to manipulate disk image chains to - last_post_date: "2017-10-24T12:06:29Z" - last_post_link: https://kashyapc.wordpress.com/2017/10/24/documentation-of-qemu-block-device-operations/ - last_post_categories: - - Uncategorized - - kvm - - libvirt - - OpenStack - - qcow2 - - qemu - - Virtualization - last_post_guid: 942a45f4588daef88994d4ca39fe1bf7 - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-81b391897f4ca4176d63988464a56104.md b/content/discover/feed-81b391897f4ca4176d63988464a56104.md new file mode 100644 index 000000000..29306c94a --- /dev/null +++ b/content/discover/feed-81b391897f4ca4176d63988464a56104.md @@ -0,0 +1,42 @@ +--- +title: from rscottjones +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://rsjon.es/feed.xml + feedtype: rss + feedid: 81b391897f4ca4176d63988464a56104 + websites: + https://rsjon.es/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://rsjon.es/: true + last_post_title: 'Early Twitter: the golden age of social-to-IRL community' + last_post_description: |- + Early Twitter was amazing for social community building—the absolute golden era of social media, imo. + I was reminded of that when I ran across some photos from a coworking space’s anniversary + last_post_date: "2024-07-03T16:13:31-07:00" + last_post_link: https://rsjon.es/2024/07/03/early-twitter-the.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 367d46c28cf04674f01404f84139a1af + score_criteria: + cats: 0 + description: 0 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 11 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-81c7b1bd39be750258016076d97c0678.md b/content/discover/feed-81c7b1bd39be750258016076d97c0678.md deleted file mode 100644 index 122417c6a..000000000 --- a/content/discover/feed-81c7b1bd39be750258016076d97c0678.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Aptira -date: "1970-01-01T00:00:00Z" -description: Cloud Solutions for Government and Enterprise -params: - feedlink: https://aptira.com/feed/ - feedtype: rss - feedid: 81c7b1bd39be750258016076d97c0678 - websites: - https://aptira.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Technical Documentation - relme: {} - last_post_title: Kubernetes Explained - last_post_description: The post Kubernetes Explained appeared first on Aptira. - last_post_date: "2021-08-25T06:06:41Z" - last_post_link: https://aptira.com/kubernetes-explained/ - last_post_categories: - - Technical Documentation - last_post_guid: 19f18ca16601e99c443bcafe307eaf3e - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-81c9971370b1153f65cf915228197cf4.md b/content/discover/feed-81c9971370b1153f65cf915228197cf4.md deleted file mode 100644 index 09f1fe095..000000000 --- a/content/discover/feed-81c9971370b1153f65cf915228197cf4.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Nico -date: "1970-01-01T00:00:00Z" -description: Öffentliche Beiträge von @nicobruenjes@digitalcourage.social -params: - feedlink: https://digitalcourage.social/@nicobruenjes.rss - feedtype: rss - feedid: 81c9971370b1153f65cf915228197cf4 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-81d422b360e33ed8985a600326e482e6.md b/content/discover/feed-81d422b360e33ed8985a600326e482e6.md new file mode 100644 index 000000000..9df5020fa --- /dev/null +++ b/content/discover/feed-81d422b360e33ed8985a600326e482e6.md @@ -0,0 +1,99 @@ +--- +title: Paolo Rotolo +date: "2024-07-03T04:32:32+02:00" +description: Blog di un Ubuntu Member. +params: + feedlink: https://paolorotolo.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 81d422b360e33ed8985a600326e482e6 + websites: + https://paolorotolo.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - BX305F + - Cappella Sistina Michelangelo in 3D + - Dudalibre + - Epson + - Epson Office BX305F + - GNOME look screenlet + - Hard Disk + - Hd Tune + - Launchpad + - Mir + - Natale + - Office + - Photoshop Wine + - Postgresql France open source + - Puglia Vendola Microsoft + - Rolling Relase Ubuntu + - ScreenSaver ubuntu terminale + - Shotwell UbuntuOne One + - Ubuntu 11.04 + - Ubuntu Maverick Meerkat 10.10 Linux Canonical OpenSource Software Libero + - Ubuntu software earth xplanetfx + - Windows bug crash + - X.org + - benchmark + - chiavette + - compiz mac ubuntu + - design + - developer + - esperimenti + - firefox compie 6 anni open source + - gnome + - gnome 3.8 + - gnome-boxes + - hardware + - icone + - isi ubuntu linux scuola + - linux + - orca + - packaging + - porte + - pubblicità ubuntu video linux 10.10 canonical + - raggi x google 110 anni + - recensione + - recipe + - sviluppo + - test + - test Alpha1 natty narwhal Ubuntu 11.04 + - touch + - ubuntu + - ubuntu 11.04 natty narwal narvalo elegante + - ubuntu 11.10 oneiric ocelot + - ubuntu 13.04 + - ubuntu Alpha1 Test Kubuntu + - ubuntu nuovo tema icone + - unity + - usb + relme: + https://paolorotolo.blogspot.com/: true + last_post_title: 'Benchmark: GNOME 3.8 vs GNOME 3.10 vs Unity 7.1.1' + last_post_description: "" + last_post_date: "2013-10-01T18:05:13+02:00" + last_post_link: https://paolorotolo.blogspot.com/2013/10/dopo-aver-confrontato-gnome-3.html + last_post_categories: + - benchmark + - gnome + - unity + last_post_language: "" + last_post_guid: aa69d43c04820b558492da6c71adcc4c + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-81e5d99efe43c74a93349c6454718f36.md b/content/discover/feed-81e5d99efe43c74a93349c6454718f36.md deleted file mode 100644 index 9a5c02240..000000000 --- a/content/discover/feed-81e5d99efe43c74a93349c6454718f36.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: London Web Standards -date: "1970-01-01T00:00:00Z" -description: Public posts from @webstandards@mastodon.world -params: - feedlink: https://mastodon.world/@webstandards.rss - feedtype: rss - feedid: 81e5d99efe43c74a93349c6454718f36 - websites: - https://mastodon.world/@webstandards: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://2024.stateofthebrowser.com/: true - https://londonwebstandards.org/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-82307e1ca64d2c4adf70a5dad91d3568.md b/content/discover/feed-82307e1ca64d2c4adf70a5dad91d3568.md new file mode 100644 index 000000000..bcb122fc3 --- /dev/null +++ b/content/discover/feed-82307e1ca64d2c4adf70a5dad91d3568.md @@ -0,0 +1,44 @@ +--- +title: Nibble Stew +date: "1970-01-01T00:00:00Z" +description: A gathering of development thoughts of Jussi Pakkanen. Some of you may + know him as the creator of the Meson build system. jpakkane at gmail dot com +params: + feedlink: https://nibblestew.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 82307e1ca64d2c4adf70a5dad91d3568 + websites: + https://nibblestew.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://draft.blogger.com/profile/03370287682352908292: true + https://nibblestew.blogspot.com/: true + last_post_title: Advanced text features and PDF + last_post_description: The basic text model of PDF is quite nice. On the other hand + its basic design was a very late 80s "ASCII is everything everyone really needs, + but we'll be super generous and provide up to 255 glyphs + last_post_date: "2024-06-21T11:49:00Z" + last_post_link: https://nibblestew.blogspot.com/2024/06/advanced-text-features-and-pdf.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 087c297d75072f7d8c59b7d691aa1e3c + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8240cb50b6ac61c3c2d571dd0e338e3e.md b/content/discover/feed-8240cb50b6ac61c3c2d571dd0e338e3e.md new file mode 100644 index 000000000..1ef25e3d4 --- /dev/null +++ b/content/discover/feed-8240cb50b6ac61c3c2d571dd0e338e3e.md @@ -0,0 +1,43 @@ +--- +title: Setoids and Cats +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://setoidsandcats.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 8240cb50b6ac61c3c2d571dd0e338e3e + websites: + https://setoidsandcats.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://setoidsandcats.blogspot.com/: true + https://www.blogger.com/profile/05420921538604886480: true + last_post_title: Formalising a High-Performance Microkernel + last_post_description: Formalising a High-Performance Microkernel Abstract This + paper argues that a pragmatic approach is needed for integrating design and + formalisation of complex systems. We report on our + last_post_date: "2006-08-22T18:35:00Z" + last_post_link: https://setoidsandcats.blogspot.com/2006/08/formalising-high-performance.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 5c2ade42afa22909baa8477cf39ee52b + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8242b35d20c389ad67817727e60bb7f4.md b/content/discover/feed-8242b35d20c389ad67817727e60bb7f4.md deleted file mode 100644 index b83aad4d1..000000000 --- a/content/discover/feed-8242b35d20c389ad67817727e60bb7f4.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Gal Sagie Blog -date: "1970-01-01T00:00:00Z" -description: My blog about everything related to SDN, NFV, Virtualization and Cloud -params: - feedlink: https://galsagie.github.io/feed.xml?tag=Openstack - feedtype: rss - feedid: 8242b35d20c389ad67817727e60bb7f4 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Submitting a Talk To OpenStack Summit - last_post_description: |- - I haven’t written a post for some time now, been busy creating something very special which i hope to share about really soon. - I usually write in this blog about technical things, and i will - last_post_date: "2017-03-06T23:25:06Z" - last_post_link: http://galsagie.github.io//2017/03/06/submitting-a-talk/ - last_post_categories: [] - last_post_guid: 1b0548ef88e05d8e90db2fbf01a373fb - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8243054a4162e3a8314822abb500ebd6.md b/content/discover/feed-8243054a4162e3a8314822abb500ebd6.md index d4b9be892..2e744a0c7 100644 --- a/content/discover/feed-8243054a4162e3a8314822abb500ebd6.md +++ b/content/discover/feed-8243054a4162e3a8314822abb500ebd6.md @@ -1,6 +1,6 @@ --- title: Two-Bit History -date: "2021-03-08T15:13:40Z" +date: "2024-06-17T18:16:18Z" description: A Jekyll blog about the history of computing params: feedlink: https://twobithistory.org/feed.xml @@ -16,24 +16,28 @@ params: - Networking relme: {} last_post_title: How the ARPANET Protocols Worked - last_post_description: The ARPANET changed computing forever by proving that computers - of wildly different manufacture could be connected using standardized protocols. - In my post on the historical significance of the + last_post_description: An ascent through the four levels of the ARPANET protocol + hierarchy. last_post_date: "2021-03-08T00:00:00Z" last_post_link: https://twobithistory.org/2021/03/08/arpanet-protocols.html last_post_categories: - Networking + last_post_language: "" last_post_guid: 71dd630c426c256e105eb43261009b82 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 14 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-8249d109851255151870cd1ed2dac323.md b/content/discover/feed-8249d109851255151870cd1ed2dac323.md index 8ca8d624b..249df3cf9 100644 --- a/content/discover/feed-8249d109851255151870cd1ed2dac323.md +++ b/content/discover/feed-8249d109851255151870cd1ed2dac323.md @@ -13,23 +13,31 @@ params: recommender: [] categories: [] relme: + https://alittleplaceiknowincapetown.blogspot.com/: true + https://emergingbehaviour.blogspot.com/: true + https://jonstraveladventures.blogspot.com/: true https://www.blogger.com/profile/11667852535983804885: true last_post_title: Emergent phenomena part 1 last_post_description: "" last_post_date: "2007-06-22T03:00:00-07:00" last_post_link: https://emergingbehaviour.blogspot.com/2007/06/emergent-phenomena-part-1.html last_post_categories: [] + last_post_language: "" last_post_guid: 174a33744d15f90049b45b018d3c8f62 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-8252e82ab6a68483fef26190a918d55a.md b/content/discover/feed-8252e82ab6a68483fef26190a918d55a.md new file mode 100644 index 000000000..aae97b735 --- /dev/null +++ b/content/discover/feed-8252e82ab6a68483fef26190a918d55a.md @@ -0,0 +1,120 @@ +--- +title: Corri por Aí +date: "2024-06-13T22:36:12-03:00" +description: "" +params: + feedlink: https://www.corriporai.com.br/feeds/posts/default + feedtype: atom + feedid: 8252e82ab6a68483fef26190a918d55a + websites: + https://www.corriporai.com.br/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 13 de julho + - alagoas + - aracaju + - belo horizonte + - bonito + - brasilia + - brennand + - caldas novas + - calçadão + - ciclofaixa + - circuito das estações + - corja + - corrida + - corrida cidade de aracaju + - corrida das pontes + - diário + - ecorun + - escocia + - etapa paiva + - eu amo recife + - fernando de noronha + - galo da madrugada + - goiania + - highlands + - história + - ibirapuera + - inverness + - japaratinga + - jaqueira + - joao pessoa + - lochness + - maragogi + - maratona + - maratona de porto alegre + - maratona do rio + - maratona lochness + - meia da conceição + - meia maratona + - meia maratona do rio de janeiro + - meia maratona do sol + - meia maratona eu amo recife + - meia maratona internacional de joão pessoa + - meia maratona internacional de são paulo + - monte dos guararapes + - natal + - oficina brennand + - olinda + - orla aracaju + - orla boa viagem + - paraiba + - parque da caicara + - parques + - percursos + - pernambuco + - picos + - porto alegre + - praia do paiva + - primeira maratona + - quartel do derby + - recife + - recife runners + - reino unido + - rotas + - royal tumbridge wells + - sanharó + - sao miguel dos milagres + - serra das russas + - soledade + - são paulo + - são silvestre + - tamandaré + - unic running + - volta internacional da pampulha + - we are rec + relme: + https://www.corriporai.com.br/: true + last_post_title: 'Meia Maratona eu Amo Recife - 10 anos :: Obrigado 2023! Sub-2 + na trave!' + last_post_description: "" + last_post_date: "2023-10-17T21:48:13-03:00" + last_post_link: https://www.corriporai.com.br/2023/10/meia-maratona-eu-amo-recife-10-anos.html + last_post_categories: + - eu amo recife + - meia maratona + - meia maratona eu amo recife + - recife + - recife runners + last_post_language: "" + last_post_guid: 7f3f4051c68add3b0e3b4dc321a69e8d + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-825a15171ebdbf7c771b4a86aea2bcd5.md b/content/discover/feed-825a15171ebdbf7c771b4a86aea2bcd5.md new file mode 100644 index 000000000..2cbfbd4de --- /dev/null +++ b/content/discover/feed-825a15171ebdbf7c771b4a86aea2bcd5.md @@ -0,0 +1,50 @@ +--- +title: ':: eat the dots ::' +date: "2024-03-05T22:12:30-08:00" +description: game over, man +params: + feedlink: https://eatthedots.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 825a15171ebdbf7c771b4a86aea2bcd5 + websites: + https://eatthedots.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - database + - ideas + - lepton + - movie + - perlin noise + - postgres + - psycopg + - pyglet + - python + - shader + relme: + https://eatthedots.blogspot.com/: true + last_post_title: The Power to do it Wrong + last_post_description: "" + last_post_date: "2011-10-15T22:26:36-07:00" + last_post_link: https://eatthedots.blogspot.com/2011/10/power-to-do-it-wrong.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 36523fdef8551a77c2e77562f085b087 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-825e2b835bc8fb6bedd6e0eadd02d108.md b/content/discover/feed-825e2b835bc8fb6bedd6e0eadd02d108.md deleted file mode 100644 index fc96b3229..000000000 --- a/content/discover/feed-825e2b835bc8fb6bedd6e0eadd02d108.md +++ /dev/null @@ -1,52 +0,0 @@ ---- -title: Thoughts From Eric -date: "1970-01-01T00:00:00Z" -description: Things that Eric A. Meyer, CSS expert, writes about on his personal Web - site; it's largely Web standards and Web technology, but also various bits of culture, - politics, personal observations, and -params: - feedlink: https://meyerweb.com/eric/thoughts/rss2/full - feedtype: rss - feedid: 825e2b835bc8fb6bedd6e0eadd02d108 - websites: - https://meyerweb.com/: false - https://meyerweb.com/eric/thoughts: true - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: - - Hacks - - JavaScript - - Tools - - Web - relme: - https://codepen.io/meyerweb: false - https://dribbble.com/meyerweb: false - https://flickr.com/photos/meyerweb/: false - https://github.com/meyerweb: false - https://mastodon.social/@meyerweb: false - https://www.linkedin.com/in/meyerweb: false - last_post_title: 'Bookmarklet: Load All GitHub Comments' - last_post_description: A quick way to load all the comments on a GitHub issue. - last_post_date: "2024-02-05T14:49:46Z" - last_post_link: https://meyerweb.com/eric/thoughts/2024/02/05/bookmarklet-load-all-github-comments/ - last_post_categories: - - Hacks - - JavaScript - - Tools - - Web - last_post_guid: 1d648230f84d725af692f11efe3a5b29 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 5 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 17 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-827b6a80b129bbe6c0f99c091da3a8ab.md b/content/discover/feed-827b6a80b129bbe6c0f99c091da3a8ab.md index d852f8f80..fcb1e517e 100644 --- a/content/discover/feed-827b6a80b129bbe6c0f99c091da3a8ab.md +++ b/content/discover/feed-827b6a80b129bbe6c0f99c091da3a8ab.md @@ -13,8 +13,9 @@ params: recommender: [] categories: [] relme: + https://anticdent.org/: true + https://github.com/cdent: true https://hachyderm.io/@anticdent: true - https://toolsforthought.rocks/@anticdent: false last_post_title: Checking In last_post_description: |- This is a brief check in to indicate that I (and this blog) am still alive. @@ -23,17 +24,22 @@ params: last_post_date: "2022-12-20T11:41:00Z" last_post_link: https://anticdent.org/checking-in.html last_post_categories: [] + last_post_language: "" last_post_guid: 6bdbc95cf0e3c466a9ac70a3e9291107 score_criteria: cats: 0 description: 0 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 7 + score: 10 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-827d5d8ddcc69034d955ebaee1e5b8ab.md b/content/discover/feed-827d5d8ddcc69034d955ebaee1e5b8ab.md new file mode 100644 index 000000000..e0d2c46d3 --- /dev/null +++ b/content/discover/feed-827d5d8ddcc69034d955ebaee1e5b8ab.md @@ -0,0 +1,130 @@ +--- +title: Wadler's Blog +date: "2024-07-06T07:02:07+01:00" +description: "" +params: + feedlink: https://wadler.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 827d5d8ddcc69034d955ebaee1e5b8ab + websites: + https://wadler.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ACM + - AI + - Academia + - Agda + - Architecture + - BDS + - BLM + - Blockchain + - Books + - Brexit + - Category Theory + - Cinema + - Climate Change + - Comedy + - Comics + - Communication + - Computing + - Concurrency + - Copyright + - Covid-19 + - Cryptocurrency + - Cycling + - DRM + - DSL + - Databases + - Developers + - Distributed Computing + - Dynamic and Static Typing + - EU + - Edinburgh + - Education + - Environment + - Erlang + - Europe + - F# + - Finance + - Formal Methods + - Functional Programming + - Gender + - Graphics + - Green + - Haskell + - IOHK + - Independence + - Internet + - Israel + - Japan + - Java + - JavaScript + - Lego + - Logic + - Mathematics + - Net Neutrality + - Object-Oriented + - Open Access + - Palestine + - Politics + - Privacy + - Productivity + - Programming Languages + - Pyret + - Racket + - Recursion + - SIGPLAN + - Scala + - Scheme + - Science + - Science Fiction + - Scotland + - Security + - Session Types + - Status + - Strange Loop + - Sweden + - Technology + - Theatre + - Theory + - Types + - UK + - US + - University + - Web + - Writing + - Yes! + relme: + https://wadler.blogspot.com/: true + https://wadlerindy.blogspot.com/: true + https://www.blogger.com/profile/12009347515095774366: true + last_post_title: Remember to vote, tactically (a message for the progressive among + you) + last_post_description: "" + last_post_date: "2024-07-04T08:09:10+01:00" + last_post_link: https://wadler.blogspot.com/2024/07/remember-to-vote-tactically-message-for.html + last_post_categories: + - Politics + - Scotland + - UK + last_post_language: "" + last_post_guid: 67063a9ae353d5b19fb0071d196a1913 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8294d00a3c3ca9200d962a75369884f6.md b/content/discover/feed-8294d00a3c3ca9200d962a75369884f6.md deleted file mode 100644 index cc26cea32..000000000 --- a/content/discover/feed-8294d00a3c3ca9200d962a75369884f6.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: "Kushal Das :python: :tor: \U0001F1F5\U0001F1F8" -date: "1970-01-01T00:00:00Z" -description: Public posts from @kushal@toots.dgplug.org -params: - feedlink: https://toots.dgplug.org/@kushal.rss - feedtype: rss - feedid: 8294d00a3c3ca9200d962a75369884f6 - websites: - https://toots.dgplug.org/@kushal: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/kushaldas: true - https://kushaldas.in/: true - https://www.torproject.org/about/people/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-829722d0119a3aea12edda6afa9a9180.md b/content/discover/feed-829722d0119a3aea12edda6afa9a9180.md deleted file mode 100644 index c43dde962..000000000 --- a/content/discover/feed-829722d0119a3aea12edda6afa9a9180.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for Fleio Blog -date: "1970-01-01T00:00:00Z" -description: OpenStack billing system and control panel -params: - feedlink: https://fleio.com/blog/comments/feed/ - feedtype: rss - feedid: 829722d0119a3aea12edda6afa9a9180 - websites: - https://fleio.com/blog/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: 'Comment on Fleio 2019.06: two-factor authentication, volume backup - and more by Jeff Brixhamite' - last_post_description: Of the two authentication methods (OTP via SMS and Google - authenticator) the google authenticator method is the more secure (SMS is vulnerable - to sim swaps etc). - last_post_date: "2020-01-13T15:06:49Z" - last_post_link: https://fleio.com/blog/2019/06/11/fleio-2019-06-two-factor-authentication-volume-backup-and-more/#comment-1648 - last_post_categories: [] - last_post_guid: 79e68b8cc47110dae17ef3bcd91348fb - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-829a8f75b65c52b4d52c37e7f3294d08.md b/content/discover/feed-829a8f75b65c52b4d52c37e7f3294d08.md deleted file mode 100644 index 6d53cc5fe..000000000 --- a/content/discover/feed-829a8f75b65c52b4d52c37e7f3294d08.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for Adam Young's Web Log -date: "1970-01-01T00:00:00Z" -description: The Notebook of a Programmer Climber Musician Ex-Soldier Woodworker and - a few other things -params: - feedlink: https://adam.younglogic.com/comments/feed/ - feedtype: rss - feedid: 829a8f75b65c52b4d52c37e7f3294d08 - websites: - https://adam.younglogic.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Automating Kerberos Authentication by DJERK GEURTS - last_post_description: Indeed, all the information is there. I would add that for - Debian the default location of the client.keytab file is different. But this is - easy to find as issuing `kinit -ki` will point you in the - last_post_date: "2024-06-07T14:42:37Z" - last_post_link: https://adam.younglogic.com/2015/05/auto-kerberos-authn/comment-page-1/#comment-1065888 - last_post_categories: [] - last_post_guid: 2c36b6133800bad0b93e02920c151a4d - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-829ba19118d009cbfc8ad95ba344f0e3.md b/content/discover/feed-829ba19118d009cbfc8ad95ba344f0e3.md new file mode 100644 index 000000000..a871707be --- /dev/null +++ b/content/discover/feed-829ba19118d009cbfc8ad95ba344f0e3.md @@ -0,0 +1,66 @@ +--- +title: Lusca Proxy Cache News +date: "2024-05-05T03:35:47-07:00" +description: Information about the development of Lusca, a Squid-2.x derivative aimed + at performance, stability and flexibility. More information can be found at the + home page - http://www.lusca.org/ . +params: + feedlink: https://lusca-cache.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 829ba19118d009cbfc8ad95ba344f0e3 + websites: + https://lusca-cache.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Iusca + - cacheboy + - caching + - cdn + - concurrency + - coss + - fail + - ipv6 + - lusca + - modularity + - oprofile + - performance + - profiling + - proxy + - squid + - threading + - tproxy + - wccp + - windowsupdates + relme: + https://adrianchadd.blogspot.com/: true + https://cacheboy.blogspot.com/: true + https://lusca-cache.blogspot.com/: true + https://www.blogger.com/profile/17496219706861321916: true + https://xenionhosting.blogspot.com/: true + last_post_title: Blog has moved! + last_post_description: "" + last_post_date: "2010-03-09T21:34:37-08:00" + last_post_link: https://lusca-cache.blogspot.com/2010/03/blog-has-moved.html + last_post_categories: + - lusca + last_post_language: "" + last_post_guid: eda1a3ed8528443ae01496c55b607289 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-82bc1864147f5f393f4844c2c1a7517e.md b/content/discover/feed-82bc1864147f5f393f4844c2c1a7517e.md deleted file mode 100644 index 393146af1..000000000 --- a/content/discover/feed-82bc1864147f5f393f4844c2c1a7517e.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: HackerNCoder -date: "1970-01-01T00:00:00Z" -description: Public posts from @hackerncoder@encryptionin.space -params: - feedlink: https://mastodon.encryptionin.space/@hackerncoder.rss - feedtype: rss - feedid: 82bc1864147f5f393f4844c2c1a7517e - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-82c6f3402bd6554d20d2df6e597913b3.md b/content/discover/feed-82c6f3402bd6554d20d2df6e597913b3.md new file mode 100644 index 000000000..4a1deee30 --- /dev/null +++ b/content/discover/feed-82c6f3402bd6554d20d2df6e597913b3.md @@ -0,0 +1,54 @@ +--- +title: halting problem +date: "2023-10-25T09:43:52+01:00" +description: "" +params: + feedlink: https://www.bassi.io/feeds/all.atom.xml + feedtype: atom + feedid: 82c6f3402bd6554d20d2df6e597913b3 + websites: + https://www.bassi.io/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - bindings + - development + - glib + - gnome + - gobject + - introspection + relme: + https://github.com/ebassi: true + https://mastodon.social/@ebassi: true + https://www.bassi.io/: true + last_post_title: Introspection’s edge + last_post_description: In which I go over the plans for gobject-introspection + last_post_date: "2023-10-25T09:43:52+01:00" + last_post_link: https://www.bassi.io/articles/2023/10/25/introspections-edge/ + last_post_categories: + - bindings + - development + - glib + - gnome + - gobject + - introspection + last_post_language: "" + last_post_guid: 5ded1f09f979ccd30a182d7626f69e93 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-82c73de701fb5d66e69b8e12d436048a.md b/content/discover/feed-82c73de701fb5d66e69b8e12d436048a.md deleted file mode 100644 index a22957e9c..000000000 --- a/content/discover/feed-82c73de701fb5d66e69b8e12d436048a.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Flyknife Comics -date: "1970-01-01T00:00:00Z" -description: All of my articles and pens. -params: - feedlink: https://flyknifecomics.com/feed.xml - feedtype: rss - feedid: 82c73de701fb5d66e69b8e12d436048a - websites: - https://flyknifecomics.com/: true - https://flyknifecomics.com/about: false - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: [] - relme: - https://flyknifecomics.com/about: false - last_post_title: Surfing the Dataclysm Wake - last_post_description: "" - last_post_date: "2024-04-16T00:04:00-03:00" - last_post_link: https://flyknifecomics.com/dataclysm/ - last_post_categories: [] - last_post_guid: 4dfbfe7284a55c98ba42dcad78f87b09 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 14 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8350628827254a5be967a73a9a94c431.md b/content/discover/feed-8350628827254a5be967a73a9a94c431.md index 1f7050d13..3ec1bd638 100644 --- a/content/discover/feed-8350628827254a5be967a73a9a94c431.md +++ b/content/discover/feed-8350628827254a5be967a73a9a94c431.md @@ -8,34 +8,39 @@ params: feedid: 8350628827254a5be967a73a9a94c431 websites: https://explodingcomma.com/: true - https://www.explodingcomma.com/: false blogrolls: [] recommended: [] recommender: - https://amerpie.lol/feed.xml categories: [] relme: + https://explodingcomma.com/: true https://greenfield.social/@Pete: true - https://micro.blog/petebrown: false - https://social.lol/@petebrown: false - last_post_title: Zoom’s AI thing is transparently bullshit. - last_post_description: A bunch of people have noted the C-suite brain thinking going - on with all of this LLM stuff and I agree; they aren’t trying to solve problems - any actual workers have, just those that plague - last_post_date: "2024-06-04T08:33:31-04:00" - last_post_link: https://explodingcomma.com/2024/06/04/zooms-ai-thing.html + https://petebrown.omg.lol/: true + https://social.lol/@petebrown: true + last_post_title: Everything changes and it's really easy to get upset about that. + last_post_description: "The annual music festival that happens in my town kicks + off this evening. It has been running for 30ish years and we have been attending + it for the last nine or ten years. \nIt is relatively small as" + last_post_date: "2024-06-21T21:57:17+02:00" + last_post_link: https://explodingcomma.com/2024/06/21/everything-changes-and.html last_post_categories: [] - last_post_guid: 0a72237a252268aa57900ebbb3f818b5 + last_post_language: "" + last_post_guid: 14bf617316f0964528efecb8968ac2b1 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 12 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-835113e523631da5c6d9393b4f644709.md b/content/discover/feed-835113e523631da5c6d9393b4f644709.md index 6d0dd6781..d1b5c4265 100644 --- a/content/discover/feed-835113e523631da5c6d9393b4f644709.md +++ b/content/discover/feed-835113e523631da5c6d9393b4f644709.md @@ -23,17 +23,22 @@ params: last_post_date: "2024-05-30T03:27:38Z" last_post_link: https://andrewkelley.me/post/zig-new-cli-progress-bar-explained.html last_post_categories: [] + last_post_language: "" last_post_guid: af26f72716f7e2bdc8eb5d4f392ab441 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-8351b8a24342129a470bc2fd500ffd72.md b/content/discover/feed-8351b8a24342129a470bc2fd500ffd72.md index 42f639e7f..19fff0c37 100644 --- a/content/discover/feed-8351b8a24342129a470bc2fd500ffd72.md +++ b/content/discover/feed-8351b8a24342129a470bc2fd500ffd72.md @@ -14,33 +14,45 @@ params: - https://frankmeeuwsen.com/feed.xml categories: - Alles komt goed - - beeld - - cultuur - - symboliek + - corona + - gezondheid + - protocol + - quarantaine + - veiligheid + - ziek relme: https://github.com/erik-visser: true - https://micro.blog/erikvisser: false - https://twitter.com/erikvisser: false - last_post_title: De discuswerper - last_post_description: "" - last_post_date: "2024-06-03T19:23:00Z" - last_post_link: https://rkvssr.nl/2024/06/03/de-discuswerper/ + https://rkvssr.nl/: true + last_post_title: Het ruikt hier naar sinaasappels + last_post_description: Na 14 dagen kan ik mezelf eindelijk “best oké” en “hoogstwaarschijnlijk + niet meer besmettelijk” verklaren. Nu drie keer een COVID test gedaan en allemaal + negatief. Niet dat mijn lijf al + last_post_date: "2024-06-26T19:32:14Z" + last_post_link: https://rkvssr.nl/2024/06/26/het-ruikt-hier-naar-sinaasappels/ last_post_categories: - Alles komt goed - - beeld - - cultuur - - symboliek - last_post_guid: e839ff73e5f3f04e1b190e38da079bfa + - corona + - gezondheid + - protocol + - quarantaine + - veiligheid + - ziek + last_post_language: "" + last_post_guid: 22e3fa2b57fd4d67d13467aa77b8b55f score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 18 + score: 22 ispodcast: false isnoarchive: false + innetwork: true + language: nl --- diff --git a/content/discover/feed-83580060a50deead5e68a8870c0c2d26.md b/content/discover/feed-83580060a50deead5e68a8870c0c2d26.md new file mode 100644 index 000000000..2924817b6 --- /dev/null +++ b/content/discover/feed-83580060a50deead5e68a8870c0c2d26.md @@ -0,0 +1,50 @@ +--- +title: Kos w Szwecji +date: "2024-02-19T05:27:36+01:00" +description: Podkusiło mnie, więc sobie pojechałem. +params: + feedlink: https://kos-w-szwecji.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 83580060a50deead5e68a8870c0c2d26 + websites: + https://kos-w-szwecji.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - jedzenie + - mapy + - obyczaje + - podróż + - studia + - wycieczki + - wydarzenia + - zdjęcia + relme: + https://kos-eclipse.blogspot.com/: true + https://kos-w-szwecji.blogspot.com/: true + https://www.blogger.com/profile/17477844421204281952: true + last_post_title: Łosie + last_post_description: "" + last_post_date: "2010-05-31T17:39:04+02:00" + last_post_link: https://kos-w-szwecji.blogspot.com/2010/05/osie.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 5a4f882e16888758614f1fdf67d5b980 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-835d653222602e57069a8918806ba988.md b/content/discover/feed-835d653222602e57069a8918806ba988.md new file mode 100644 index 000000000..f474fe61d --- /dev/null +++ b/content/discover/feed-835d653222602e57069a8918806ba988.md @@ -0,0 +1,51 @@ +--- +title: leftyfb's Blog +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://leftyfb.com/feed/ + feedtype: rss + feedid: 835d653222602e57069a8918806ba988 + websites: + https://leftyfb.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Uncategorized + - linux + - technology + - ubuntu + relme: + https://leftyfb.com/: true + last_post_title: Here’s how to patch Ubuntu 8.04 or anything where you have to build + bash from source + last_post_description: 'UPDATED: I have updated the post to include the post from + gb3 as well as additional patches and some tests Just a quick post to help those + who might be running older/unsupported distributions of' + last_post_date: "2014-09-25T17:03:01Z" + last_post_link: https://leftyfb.com/2014/09/25/heres-how-to-patch-ubuntu-8-04-or-anything-where-you-have-to-build-bash-from-source/ + last_post_categories: + - Uncategorized + - linux + - technology + - ubuntu + last_post_language: "" + last_post_guid: 623d16d7e83795152a5e27d043b3ace3 + score_criteria: + cats: 0 + description: 0 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-836c7b5cceca9d4326d6399c151a7408.md b/content/discover/feed-836c7b5cceca9d4326d6399c151a7408.md index a956adf50..09ab09c6a 100644 --- a/content/discover/feed-836c7b5cceca9d4326d6399c151a7408.md +++ b/content/discover/feed-836c7b5cceca9d4326d6399c151a7408.md @@ -11,38 +11,39 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: - - Video Games - - books + - Humble Choice + - humble choice relme: {} - last_post_title: The Best Video Games Based on Books - last_post_description: Books and video games are inextricably intertwined, with - many popular games directly or indirectly inspired by some of the book literature - authors offer.  A good book adaptation is often successful - last_post_date: "2024-05-28T01:06:55Z" - last_post_link: https://blog.humblebundle.com/2024/05/27/the-best-video-games-based-on-books/ + last_post_title: Explore and exterminate in July’s Humble Choice! + last_post_description: July’s Humble Choice games are here, and this month’s mix + features harrowing historical drama, fast-hitting cyberpunk action, bug-splattering + real-time strategy and more! Survive the Black Death + last_post_date: "2024-07-02T17:00:00Z" + last_post_link: https://blog.humblebundle.com/2024/07/02/explore-and-exterminate-in-julys-humble-choice/ last_post_categories: - - Video Games - - books - last_post_guid: e9ff1008044e080b4dedd433335552ed + - Humble Choice + - humble choice + last_post_language: "" + last_post_guid: 9476d16c15c013697fa60849b6af3726 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 2 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 15 + score: 19 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-836db9940bbc4b57f23c037ead50249e.md b/content/discover/feed-836db9940bbc4b57f23c037ead50249e.md new file mode 100644 index 000000000..9132b58d9 --- /dev/null +++ b/content/discover/feed-836db9940bbc4b57f23c037ead50249e.md @@ -0,0 +1,44 @@ +--- +title: Over the Hill +date: "2024-07-04T10:17:59+01:00" +description: About me, as a person, and my family. +params: + feedlink: https://petertribble.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 836db9940bbc4b57f23c037ead50249e + websites: + https://petertribble.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - home + relme: + https://petertribble.blogspot.com/: true + https://ptribble.blogspot.com/: true + https://tribblix.blogspot.com/: true + https://www.blogger.com/profile/09363446984245451854: true + last_post_title: Smart Meters and electricity use at Tribble Towers + last_post_description: "" + last_post_date: "2023-11-06T21:23:13Z" + last_post_link: https://petertribble.blogspot.com/2023/11/smart-meters-and-electricity-use-at.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 9f282b14656c2efccd7a7a7a0a92ded0 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-83839e2a93b2ddbb0f7c25b0d8268952.md b/content/discover/feed-83839e2a93b2ddbb0f7c25b0d8268952.md deleted file mode 100644 index 14446ae48..000000000 --- a/content/discover/feed-83839e2a93b2ddbb0f7c25b0d8268952.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: Jan’s Blog -date: "1970-01-01T00:00:00Z" -description: On Web Development, WordPress, and More -params: - feedlink: https://jan.boddez.net/comments/feed - feedtype: rss - feedid: 83839e2a93b2ddbb0f7c25b0d8268952 - websites: - https://jan.boddez.net/: true - https://jan.boddez.net/author/jan: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - General - - 100Posts - - blogroll - - indieweb - - web feeds - - wordpress - relme: - https://github.com/janboddez: true - https://jan.boddez.net/author/jan: false - last_post_title: Blogrollin’ - last_post_description: I made my blogroll look a tiny bit nicer. I’m planning to - still add actual RSS or Atom links, and remove any duplicate entries. (They’re - there because I occasionally follow multiple versions of - last_post_date: "2024-05-19T21:23:55Z" - last_post_link: https://jan.boddez.net/articles/blogrollin - last_post_categories: - - General - - 100Posts - - blogroll - - indieweb - - web feeds - - wordpress - last_post_guid: 229b08644cbca9b5d673c06907f96a27 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-838d13f038c64a958d75d4eabc0c8d58.md b/content/discover/feed-838d13f038c64a958d75d4eabc0c8d58.md index 135be210f..f63da7be7 100644 --- a/content/discover/feed-838d13f038c64a958d75d4eabc0c8d58.md +++ b/content/discover/feed-838d13f038c64a958d75d4eabc0c8d58.md @@ -14,7 +14,11 @@ params: categories: - Fastmarks relme: + https://github.com/tylerhall: true + https://mastodon.social/@tylerdotio: true + https://retina.studio/: true https://social.lol/@tylerhall: true + https://tyler.io/: true last_post_title: Fastmarks and Hook for Mac last_post_description: Hi. Just a quick note that the most recent version of Fastmarks can now search all of your Hook links in addition to your web browser bookmarks. @@ -23,17 +27,22 @@ params: last_post_link: https://retina.studio/2022/08/23/fastmarks-and-hook-for-mac/ last_post_categories: - Fastmarks + last_post_language: "" last_post_guid: f2fa9f005ecc3e5470e5e8932c2e64e9 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 11 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-838fdce3abaef2a179f2fcccd7c22ba3.md b/content/discover/feed-838fdce3abaef2a179f2fcccd7c22ba3.md index 267c5cb95..0e805bc11 100644 --- a/content/discover/feed-838fdce3abaef2a179f2fcccd7c22ba3.md +++ b/content/discover/feed-838fdce3abaef2a179f2fcccd7c22ba3.md @@ -11,20 +11,19 @@ params: feedid: 838fdce3abaef2a179f2fcccd7c22ba3 websites: https://buttondown.email/ownyourweb: true - https://buttondown.email/ownyourweb/archive/: false blogrolls: [] recommended: [] recommender: - - https://amerpie.lol/feed.xml - https://colinwalker.blog/dailyfeed.xml - https://colinwalker.blog/livefeed.xml - - https://hacdias.com/feed.xml - - https://kevq.uk/feed - - https://kevq.uk/feed.xml - - https://kevq.uk/feed/ - https://kevquirk.com/feed + - https://kevquirk.com/feed/ + - https://kevquirk.com/notes-feed + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php categories: [] - relme: {} + relme: + https://buttondown.email/ownyourweb: true last_post_title: 'Own Your Web – Issue 14: Webmentions' last_post_description: "Hi All! \U0001F917\nImagine, just for a second, a future in which we all have our own websites and that those sites are at the center of @@ -32,17 +31,22 @@ params: last_post_date: "2024-04-29T23:48:03Z" last_post_link: https://buttondown.email/ownyourweb/archive/issue-14/ last_post_categories: [] + last_post_language: "" last_post_guid: 32456807da746a9c5a052467153a94ae score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 13 + score: 19 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-83b5ab1208742937d58af2be6ef82ed0.md b/content/discover/feed-83b5ab1208742937d58af2be6ef82ed0.md new file mode 100644 index 000000000..77cac2370 --- /dev/null +++ b/content/discover/feed-83b5ab1208742937d58af2be6ef82ed0.md @@ -0,0 +1,42 @@ +--- +title: Emacs on eRambler +date: "1970-01-01T00:00:00Z" +description: Recent content in Emacs on eRambler +params: + feedlink: https://erambler.co.uk/tags/emacs/index.xml + feedtype: rss + feedid: 83b5ab1208742937d58af2be6ef82ed0 + websites: + https://erambler.co.uk/tags/emacs/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://erambler.co.uk/tags/emacs/: true + last_post_title: 'Iosevka: a nice fixed-width-font' + last_post_description: |- + Iosevka is a nice, slender monospace font with a lot of configurable variations. Check it out: + https://typeof.net/Iosevka/ + last_post_date: "2020-01-28T11:26:49Z" + last_post_link: https://erambler.co.uk/blog/iosevka-font/ + last_post_categories: [] + last_post_language: "" + last_post_guid: b571e45be0e617cdd4770f2c5cd0cd54 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-83bed8989c729dad862a804108ccbd14.md b/content/discover/feed-83bed8989c729dad862a804108ccbd14.md new file mode 100644 index 000000000..b934c5eda --- /dev/null +++ b/content/discover/feed-83bed8989c729dad862a804108ccbd14.md @@ -0,0 +1,54 @@ +--- +title: 日本語はどうですか。Jak tam japoński? +date: "1970-01-01T00:00:00Z" +description: Nauka języka japońskiego - porady, spostrzeżenia, wrażenia. +params: + feedlink: https://jaktamjaponski.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 83bed8989c729dad862a804108ccbd14 + websites: + https://jaktamjaponski.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - audycje + - pismo a druk + relme: + https://aboutthomasleigh.blogspot.com/: true + https://handynewsreader.blogspot.com/: true + https://jaktamjaponski.blogspot.com/: true + https://moliumpodcast.blogspot.com/: true + https://smartthemesfor.blogspot.com/: true + https://thomascafepodcast.blogspot.com/: true + https://thomasleighthemes.blogspot.com/: true + https://thomasleighuniverse.blogspot.com/: true + https://www.blogger.com/profile/01268074830941697525: true + https://zrodlokreacji.blogspot.com/: true + last_post_title: 'Kanji w piśmie, a w druku: machająca noga ;) - 足 vs 距.' + last_post_description: Uważnie ucząc się kolejnych Kanji z biegiem czasu zauważymy, + iż nierzadko występują w nich części łudząco podobne do znanych już nam znaków. + Miejscami potrafi to być nieco mylące, jako + last_post_date: "2024-07-06T09:21:00Z" + last_post_link: https://jaktamjaponski.blogspot.com/2024/07/kanji-w-pismie-w-druku-machajaca-noga-vs.html + last_post_categories: + - pismo a druk + last_post_language: "" + last_post_guid: 25b4a671c20979926dc6e8855e187f9d + score_criteria: + cats: 2 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-83cefa2a47ea6b7ff0c2bb9d544843e1.md b/content/discover/feed-83cefa2a47ea6b7ff0c2bb9d544843e1.md deleted file mode 100644 index 0b550867c..000000000 --- a/content/discover/feed-83cefa2a47ea6b7ff0c2bb9d544843e1.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Robert Helling -date: "1970-01-01T00:00:00Z" -description: Öffentliche Beiträge von @atdotde@muenchen.social -params: - feedlink: https://muenchen.social/@atdotde.rss - feedtype: rss - feedid: 83cefa2a47ea6b7ff0c2bb9d544843e1 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-83e2e5a158774ad92f53caee75fa4878.md b/content/discover/feed-83e2e5a158774ad92f53caee75fa4878.md deleted file mode 100644 index 57863b237..000000000 --- a/content/discover/feed-83e2e5a158774ad92f53caee75fa4878.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Matthias Pfefferle -date: "1970-01-01T00:00:00Z" -description: Public posts from @pfefferle@mastodon.social -params: - feedlink: https://mastodon.social/@pfefferle.rss - feedtype: rss - feedid: 83e2e5a158774ad92f53caee75fa4878 - websites: - https://mastodon.social/@pfefferle: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/pfefferle: true - https://notiz.blog/: true - https://profiles.wordpress.org/pfefferle/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-83e5632c44199d32b11f50e1b4c6303b.md b/content/discover/feed-83e5632c44199d32b11f50e1b4c6303b.md deleted file mode 100644 index 2d3fe171b..000000000 --- a/content/discover/feed-83e5632c44199d32b11f50e1b4c6303b.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Mark Sutherland -date: "2024-05-02T21:39:15+01:00" -description: Web Developer based in Leicester, UK -params: - feedlink: https://marksuth.dev/feed/stream.xml - feedtype: rss - feedid: 83e5632c44199d32b11f50e1b4c6303b - websites: - https://marksuth.dev/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://codepen.io/marksuth: false - https://github.com/marksuth: true - https://marksuth.dev/: true - https://mastodon.social/@marksuth: true - https://medium.com/@marksuth: false - https://twitter.com/marksuth: false - https://www.discogs.com/user/marksuth: false - https://www.linkedin.com/in/marksuth: false - last_post_title: Challengers - last_post_description: Watched Challengers, released in 2024. Directed by Luca Guadagnino. - last_post_date: "2024-05-02T21:39:15+01:00" - last_post_link: https://marksuth.dev/posts/2024/05/challengers-2024 - last_post_categories: [] - last_post_guid: e5f3d5bc84d8ac60901a46959722edee - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-83ef53f8263d8f76ffe15fd6ce519ad2.md b/content/discover/feed-83ef53f8263d8f76ffe15fd6ce519ad2.md deleted file mode 100644 index c7a02e05e..000000000 --- a/content/discover/feed-83ef53f8263d8f76ffe15fd6ce519ad2.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Articles by Vincent Pickering -date: "1970-01-01T00:00:00Z" -description: Articles by Vincent Pickering -params: - feedlink: https://vincentp.me/feeds/articles.xml - feedtype: rss - feedid: 83ef53f8263d8f76ffe15fd6ce519ad2 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: [] - relme: {} - last_post_title: The flexibility of Milky Way Maps - last_post_description: Several years ago I was asked to work on a new government - service. This was to be a temporary service stood up for a fixed period and then - closed down. It was a unique proposition to consider, often - last_post_date: "2024-05-28T04:00:00Z" - last_post_link: https://vincentp.me/articles/the-flexibility-of-milky-way-maps/ - last_post_categories: [] - last_post_guid: af06f9f3c5d026da70bff8b88c8eaa45 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-840571583835e3e3d0d8cb018324e899.md b/content/discover/feed-840571583835e3e3d0d8cb018324e899.md deleted file mode 100644 index 6ff2074c6..000000000 --- a/content/discover/feed-840571583835e3e3d0d8cb018324e899.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: ZEIT ONLINE | Nachrichten, News, Hintergründe und Debatten -date: "1970-01-01T00:00:00Z" -description: Aktuelle Nachrichten, Kommentare, Analysen und Hintergrundberichte aus - Politik, Wirtschaft, Gesellschaft, Wissen, Kultur und Sport lesen Sie auf ZEIT ONLINE. -params: - feedlink: https://newsfeed.zeit.de/index - feedtype: rss - feedid: 840571583835e3e3d0d8cb018324e899 - websites: - https://www.zeit.de/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Zeitgeschehen - relme: {} - last_post_title: 'AfD im Westen: Das Ruhrgebiet sieht blau' - last_post_description: Die meisten AfD-Hochburgen liegen im Osten Deutschlands. - Doch auch in Duisburg hat sich die Partei etabliert – und könnte bei der Europawahl - weiter profitieren. - last_post_date: "2024-06-07T10:26:26Z" - last_post_link: https://www.zeit.de/gesellschaft/zeitgeschehen/2024-06/afd-ruhrgebiet-westen-nrw-duisburg-europawahl-gelsenkirchen - last_post_categories: - - Zeitgeschehen - last_post_guid: 6aa25747ea5fa21ceeb37c008663e6cf - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-840d014081cffae175969bfdcd2efa84.md b/content/discover/feed-840d014081cffae175969bfdcd2efa84.md new file mode 100644 index 000000000..29b63603d --- /dev/null +++ b/content/discover/feed-840d014081cffae175969bfdcd2efa84.md @@ -0,0 +1,139 @@ +--- +title: Best Job Online +date: "2024-02-07T04:31:35-08:00" +description: We have Best online Job for All but especially for teens. +params: + feedlink: https://oguzhanerenoffical.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 840d014081cffae175969bfdcd2efa84 + websites: + https://oguzhanerenoffical.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - online teen + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Get Best Job Online + last_post_description: "" + last_post_date: "2021-05-13T15:29:18-07:00" + last_post_link: https://oguzhanerenoffical.blogspot.com/2021/05/get-best-job-online.html + last_post_categories: + - online teen + last_post_language: "" + last_post_guid: 97270749ab919288c24dc3b64f1a9266 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8417a8ccac14995edfad1b00778a9473.md b/content/discover/feed-8417a8ccac14995edfad1b00778a9473.md deleted file mode 100644 index 64f1021d8..000000000 --- a/content/discover/feed-8417a8ccac14995edfad1b00778a9473.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Joe Ross -date: "1970-01-01T00:00:00Z" -description: Writing by Joe Ross on Read.cv -params: - feedlink: https://read.cv/api/feed/joeross - feedtype: rss - feedid: 8417a8ccac14995edfad1b00778a9473 - websites: - https://read.cv/joeross: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8434b22a4e9347165750e1952de20f87.md b/content/discover/feed-8434b22a4e9347165750e1952de20f87.md new file mode 100644 index 000000000..206ac0c91 --- /dev/null +++ b/content/discover/feed-8434b22a4e9347165750e1952de20f87.md @@ -0,0 +1,137 @@ +--- +title: Chegg Answer and Question +date: "2024-03-05T03:48:37-08:00" +description: Here you Will Get Best links For Chegg Answer where you like It. +params: + feedlink: https://cosmetics-my-live.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 8434b22a4e9347165750e1952de20f87 + websites: + https://cosmetics-my-live.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Live Answer with Chegg Professional + last_post_description: "" + last_post_date: "2021-05-09T14:13:19-07:00" + last_post_link: https://cosmetics-my-live.blogspot.com/2021/05/live-answer-with-chegg-professional.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 5f867c53fea9063769bc9209fa96f8df + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8436b762fe3b4c02ac0d8f63f8d6b00f.md b/content/discover/feed-8436b762fe3b4c02ac0d8f63f8d6b00f.md new file mode 100644 index 000000000..d2577f896 --- /dev/null +++ b/content/discover/feed-8436b762fe3b4c02ac0d8f63f8d6b00f.md @@ -0,0 +1,68 @@ +--- +title: Mukul Gandhi +date: "2024-07-08T13:39:18+05:30" +description: "" +params: + feedlink: https://mukulgandhi.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 8436b762fe3b4c02ac0d8f63f8d6b00f + websites: + https://mukulgandhi.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - android + - apache + - application integration + - cloud + - dom + - dtd + - eclipse + - grid + - java + - json + - linux + - messaging + - mozilla + - oo + - rdbms + - theory + - uml + - web + - xalan + - xerces + - xml + - xml-schema + - xpath + - xquery + - xslt + relme: + https://draft.blogger.com/profile/18274168324155284011: true + https://mukulgandhi.blogspot.com/: true + last_post_title: XSLT 3.0 grouping use case + last_post_description: "" + last_post_date: "2023-12-31T23:24:51+05:30" + last_post_link: https://mukulgandhi.blogspot.com/2023/12/xslt-30-grouping-use-case.html + last_post_categories: + - xml + - xslt + last_post_language: "" + last_post_guid: fe9b9f7eb16a6ae18bd9b8f36c354761 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-843845e109ea4ebed4a3ffce2b1324f7.md b/content/discover/feed-843845e109ea4ebed4a3ffce2b1324f7.md deleted file mode 100644 index 9d297e09e..000000000 --- a/content/discover/feed-843845e109ea4ebed4a3ffce2b1324f7.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: Dan Q -date: "1970-01-01T00:00:00Z" -description: 'Personal blog of Dan Q: hacker, magician, geocacher, gamer...' -params: - feedlink: https://danq.blog/feed/ - feedtype: rss - feedid: 843845e109ea4ebed4a3ffce2b1324f7 - websites: - https://danq.blog/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Personal - - email - - geeky - - published on gemini - - rss - - spam - relme: {} - last_post_title: '[Article] Somewhat-Effective Spam Filters' - last_post_description: I've tried a variety of unusual anti-spam solutions. Here's - how they worked out for me. - last_post_date: "2024-06-04T11:27:38+01:00" - last_post_link: https://danq.me/2024/06/04/somewhat-effective-spam-filters/ - last_post_categories: - - Personal - - email - - geeky - - published on gemini - - rss - - spam - last_post_guid: e62b83c3cfb3fea0d28c6517bba8a8ee - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8455fcbe17e9218ab08c6f1118389cb6.md b/content/discover/feed-8455fcbe17e9218ab08c6f1118389cb6.md deleted file mode 100644 index af1d8ab6a..000000000 --- a/content/discover/feed-8455fcbe17e9218ab08c6f1118389cb6.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: London Web Standards – Events Feed -date: "1970-01-01T00:00:00Z" -description: London Web Standards’ 10 most-recent events. -params: - feedlink: https://londonwebstandards.org/feed.xml - feedtype: rss - feedid: 8455fcbe17e9218ab08c6f1118389cb6 - websites: - https://londonwebstandards.org/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/chrisburnell: false - https://github.com/londonwebstandards: false - https://londonwebstandards.org/feed.xml: false - https://mastodon.world/@webstandards: true - https://twitter.com/webstandards: false - last_post_title: State of the Browser 2024 - last_post_description: The 12th edition of State of the Browser, a yearly conference - organised by London Web Standards. A one-day, single-track conference with widely - varying talks about the modern web, accessibility, web - last_post_date: "2024-09-14T08:30:00Z" - last_post_link: https://londonwebstandards.org/events/sotb-2024/ - last_post_categories: [] - last_post_guid: a849bbc9e334b81395e9b344dad47cb6 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8484946a6b37ed733fd2dd53e4955c24.md b/content/discover/feed-8484946a6b37ed733fd2dd53e4955c24.md new file mode 100644 index 000000000..4006f9b31 --- /dev/null +++ b/content/discover/feed-8484946a6b37ed733fd2dd53e4955c24.md @@ -0,0 +1,139 @@ +--- +title: A check debit card is a bank-given +date: "1970-01-01T00:00:00Z" +description: Keep visiting to my blogspot and get all information about debit card. +params: + feedlink: https://90to0100.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 8484946a6b37ed733fd2dd53e4955c24 + websites: + https://90to0100.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: What is a Debit Card + last_post_description: |- + The savvy vendor will gauge the advantages and activate chase debit card disadvantages of every approach concerning security, responsibility, and + handling cost and afterward plan her strategic + last_post_date: "2022-02-11T19:19:00Z" + last_post_link: https://90to0100.blogspot.com/2022/02/what-is-debit-card.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 839d5e72da70e5feeae1e2348ceab93f + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-84859261eb406ccd7fb2e719db3bac9a.md b/content/discover/feed-84859261eb406ccd7fb2e719db3bac9a.md new file mode 100644 index 000000000..d93036acb --- /dev/null +++ b/content/discover/feed-84859261eb406ccd7fb2e719db3bac9a.md @@ -0,0 +1,41 @@ +--- +title: Things I do +date: "2024-04-30T00:59:24-07:00" +description: "" +params: + feedlink: https://jonasdn.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 84859261eb406ccd7fb2e719db3bac9a + websites: + https://jonasdn.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - risc-v + relme: + https://jonasdn.blogspot.com/: true + last_post_title: A new release of nsnstrace + last_post_description: "" + last_post_date: "2021-01-05T08:21:11-08:00" + last_post_link: https://jonasdn.blogspot.com/2021/01/a-new-release-of-nsnstrace.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 205dac6d0e17df1402b3d838e0bf74c4 + score_criteria: + cats: 1 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 11 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8499b78941fe18db7a0285fc37acd04d.md b/content/discover/feed-8499b78941fe18db7a0285fc37acd04d.md new file mode 100644 index 000000000..64b2635f5 --- /dev/null +++ b/content/discover/feed-8499b78941fe18db7a0285fc37acd04d.md @@ -0,0 +1,47 @@ +--- +title: Är det nåt att ha? +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://ardetnattattha.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 8499b78941fe18db7a0285fc37acd04d + websites: + https://ardetnattattha.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://ardetnattattha.blogspot.com/: true + https://computationalthoughts.blogspot.com/: true + https://futurealm.blogspot.com/: true + https://ibegynnelsen.blogspot.com/: true + https://josefsblog.blogspot.com/: true + https://www.blogger.com/profile/13272830598221833253: true + last_post_title: Smartson testar MyMoment drickyogurt + last_post_description: Jag har ju en viss förkärlek för att testa drycker och den + nya drickyogurten MyMoment verkar intressant. Smartson kommer att köra ett test + och jag är nyfiken på vad de kommer att komma fram + last_post_date: "2012-06-01T08:38:00Z" + last_post_link: https://ardetnattattha.blogspot.com/2012/06/smartson-testar-mymoment-drickyogurt.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 22191034de0fd64fb8b31bceb23b0b96 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-849ddeb271b7a3cf30d72ad756e66c35.md b/content/discover/feed-849ddeb271b7a3cf30d72ad756e66c35.md deleted file mode 100644 index 054da497d..000000000 --- a/content/discover/feed-849ddeb271b7a3cf30d72ad756e66c35.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: Verily -date: "1970-01-01T00:00:00Z" -description: Nothing Interesting -params: - feedlink: https://degruchy.org/feed/ - feedtype: rss - feedid: 849ddeb271b7a3cf30d72ad756e66c35 - websites: - https://degruchy.org/: true - blogrolls: [] - recommended: [] - recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - - https://danq.me/comments/feed/ - - https://danq.me/feed/ - - https://danq.me/kind/article/feed/ - - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ - categories: - - Thoughts - relme: {} - last_post_title: Douglas Adams Sums Up Technology Perfectly - last_post_description: 'I’ve come up with a set of rules that describe our reactions - to technologies: 1. Anything that is in the world when you’re born is normal and - ordinary and is just a natural part of the way the' - last_post_date: "2024-06-02T16:20:52Z" - last_post_link: https://degruchy.org/2024/06/02/douglas-adams-sums-up-technology-perfectly/ - last_post_categories: - - Thoughts - last_post_guid: cbd45170914e1e153f8f8fe1eb549b42 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 14 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-84a15ebc7e31312ac27412f615737bbf.md b/content/discover/feed-84a15ebc7e31312ac27412f615737bbf.md new file mode 100644 index 000000000..de8617b4d --- /dev/null +++ b/content/discover/feed-84a15ebc7e31312ac27412f615737bbf.md @@ -0,0 +1,86 @@ +--- +title: Michal Čihař's Weblog +date: "2019-05-29T10:00:00Z" +description: Random thoughts about everything... +params: + feedlink: https://blog.cihar.com/atom.xml + feedtype: atom + feedid: 84a15ebc7e31312ac27412f615737bbf + websites: + https://blog.cihar.com/: true + https://blog.cihar.com/archives/debian/: false + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Bicycle + - Books + - Coding + - Configs + - Crypto + - Czech + - Debian + - Django + - Enca + - English + - GPL + - Gammu + - Gentoo + - History + - Howto + - IMAP + - Japan + - Life + - Linux + - Mailbox + - Maps + - Meego + - Misc + - Odorik + - OpenWrt + - Photography + - Pubs + - SUSE + - StarDict + - Synology + - Travelling + - Ukolovnik + - Wammu + - Weblate + - Website + - photo-uploader + - phpMyAdmin + - python-gammu + - uTidylib + relme: + https://blog.cihar.com/: true + last_post_title: Spring cleanup + last_post_description: What you can probably spot from past posts on my blog, my + open source contributions are heavily focused on Weblate and I've phased out many + other activities. The main reason being reduced amount of + last_post_date: "2019-05-29T10:00:00Z" + last_post_link: https://blog.cihar.com/archives/2019/05/29/spring-cleanup/?utm_source=atom1 + last_post_categories: + - Debian + - English + - Gammu + - SUSE + last_post_language: "" + last_post_guid: 0b24ac571d78e56ff9f331f61bc04886 + score_criteria: + cats: 5 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 22 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-84c5a64a6f1a3a738b50926f10184b29.md b/content/discover/feed-84c5a64a6f1a3a738b50926f10184b29.md deleted file mode 100644 index 7da58b263..000000000 --- a/content/discover/feed-84c5a64a6f1a3a738b50926f10184b29.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: John Gruber -date: "1970-01-01T00:00:00Z" -description: Public posts from @gruber@mastodon.social -params: - feedlink: https://mastodon.social/@gruber.rss - feedtype: rss - feedid: 84c5a64a6f1a3a738b50926f10184b29 - websites: - https://mastodon.social/@gruber: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://bsky.app/profile/gruber.foo: false - https://daringfireball.net/: true - https://threads.net/@gruber: false - https://twitter.com/gruber: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-84cc1586c8aa7fa77d01cf61fb132007.md b/content/discover/feed-84cc1586c8aa7fa77d01cf61fb132007.md new file mode 100644 index 000000000..9edb0cd05 --- /dev/null +++ b/content/discover/feed-84cc1586c8aa7fa77d01cf61fb132007.md @@ -0,0 +1,71 @@ +--- +title: The Programming Delusion +date: "1970-01-01T00:00:00Z" +description: Delusional thoughts on Java, OSGi, Eclipse and other things +params: + feedlink: https://blog.hargrave.io/feeds/posts/default?alt=rss + feedtype: rss + feedid: 84cc1586c8aa7fa77d01cf61fb132007 + websites: + https://blog.hargrave.io/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - api + - bnd + - bndtools + - classloading + - design + - eclipse + - eclipsecon + - equinox + - gsoc + - jakarta + - jakartaee + - java + - java posse + - javaone + - jsr294 + - mac + - mobile + - modularity + - oredev + - osgi + - pipes + - planet + - semantic versioning + - yahoo + relme: + https://blog.hargrave.io/: true + https://www.blogger.com/profile/05791451307210957698: true + last_post_title: A Tool for Jakarta EE Package Renaming in Binaries + last_post_description: In a previous post, I laid out my thinking on how to approach + the package renaming problem which the Jakarta EE community now faces. Regardless + of whether the community chooses big bang or + last_post_date: "2019-10-17T21:26:00Z" + last_post_link: https://blog.hargrave.io/2019/10/a-tool-for-jakarta-ee-package-renaming.html + last_post_categories: + - api + - jakarta + - jakartaee + - java + last_post_language: "" + last_post_guid: e8e4a03e0a3dcd345372b0fc372f318a + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-84f5eaf6ad38f0ddca3e3a3a8cc3a02c.md b/content/discover/feed-84f5eaf6ad38f0ddca3e3a3a8cc3a02c.md deleted file mode 100644 index f34c79bfe..000000000 --- a/content/discover/feed-84f5eaf6ad38f0ddca3e3a3a8cc3a02c.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: blog - aows -date: "1970-01-01T00:00:00Z" -description: Monochrome Photography Blog -params: - feedlink: https://aows.co/blog/rss.xml - feedtype: rss - feedid: 84f5eaf6ad38f0ddca3e3a3a8cc3a02c - websites: {} - blogrolls: [] - recommended: [] - recommender: - - http://scripting.com/rss.xml - - http://scripting.com/rssNightly.xml - categories: - - photographs - relme: {} - last_post_title: Tree of Mt Tam - last_post_description: |- - California, February 2024. - From the video Making art inevitable. - last_post_date: "2024-06-03T19:00:00Z" - last_post_link: https://aows.co/blog/2024/6/3/tree-of-mt-tam - last_post_categories: - - photographs - last_post_guid: f056a754cd8daac62e4f7119f603e590 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 12 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-84fb65bbc87b7534d4c1c9e76ee8fd85.md b/content/discover/feed-84fb65bbc87b7534d4c1c9e76ee8fd85.md deleted file mode 100644 index 6cae8ec8d..000000000 --- a/content/discover/feed-84fb65bbc87b7534d4c1c9e76ee8fd85.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: TheFrugalGamer.Net Updates Log -date: "1970-01-01T00:00:00Z" -description: Updates and changes to TheFrugalGamer.Net -params: - feedlink: https://www.thefrugalgamer.net/rss.xml - feedtype: rss - feedid: 84fb65bbc87b7534d4c1c9e76ee8fd85 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: [] - relme: {} - last_post_title: Various changes and updates - last_post_description: Among other small updates here and there, I've added some - fun little icons that I've been making with the Pico-8 palette. I've also added - a new little platformer that I made to the main games page. - last_post_date: "1970-01-01T00:00:00Z" - last_post_link: https://www.thefrugalgamer.net/pixels.php#tiny - last_post_categories: [] - last_post_guid: 175397e25604b2f430056298c0ab8789 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-850835b3f5d83117c9dc369e6942d463.md b/content/discover/feed-850835b3f5d83117c9dc369e6942d463.md new file mode 100644 index 000000000..674e31cde --- /dev/null +++ b/content/discover/feed-850835b3f5d83117c9dc369e6942d463.md @@ -0,0 +1,45 @@ +--- +title: Josef's blog +date: "2024-04-25T20:19:43+02:00" +description: "" +params: + feedlink: https://josefsblog.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 850835b3f5d83117c9dc369e6942d463 + websites: + https://josefsblog.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://ardetnattattha.blogspot.com/: true + https://computationalthoughts.blogspot.com/: true + https://futurealm.blogspot.com/: true + https://ibegynnelsen.blogspot.com/: true + https://josefsblog.blogspot.com/: true + https://www.blogger.com/profile/13272830598221833253: true + last_post_title: What a wonderful couple of years it has been + last_post_description: "" + last_post_date: "2014-02-15T20:59:22+01:00" + last_post_link: https://josefsblog.blogspot.com/2014/02/what-wonderful-couple-of-years-it-has.html + last_post_categories: [] + last_post_language: "" + last_post_guid: f9a2c31a964da80b825b68286b6037d3 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-85093d63f29b15bbe13de7adc9f15761.md b/content/discover/feed-85093d63f29b15bbe13de7adc9f15761.md deleted file mode 100644 index 8b78dc3ec..000000000 --- a/content/discover/feed-85093d63f29b15bbe13de7adc9f15761.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Björgvin Ragnarsson -date: "1970-01-01T00:00:00Z" -description: Public posts from @bjorgvin@vivaldi.net -params: - feedlink: https://social.vivaldi.net/@bjorgvin.rss - feedtype: rss - feedid: 85093d63f29b15bbe13de7adc9f15761 - websites: - https://social.vivaldi.net/@bjorgvin: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8512dc3c978d5f5cd3b60a1b7d491d73.md b/content/discover/feed-8512dc3c978d5f5cd3b60a1b7d491d73.md new file mode 100644 index 000000000..da2aee6cf --- /dev/null +++ b/content/discover/feed-8512dc3c978d5f5cd3b60a1b7d491d73.md @@ -0,0 +1,42 @@ +--- +title: Necrotic Gnome - News +date: "2024-04-19T08:56:03-04:00" +description: "" +params: + feedlink: https://necroticgnome.com/blogs/news.atom + feedtype: atom + feedid: 8512dc3c978d5f5cd3b60a1b7d491d73 + websites: + https://necroticgnome.com/blogs/news: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: [] + relme: {} + last_post_title: OSE Player's Tome Reprint Coming June + last_post_description: "" + last_post_date: "2024-06-05T15:24:42-04:00" + last_post_link: https://necroticgnome.com/blogs/news/ose-players-tome-reprints + last_post_categories: [] + last_post_language: "" + last_post_guid: 3056313227c80c9fa667f5c212d0231b + score_criteria: + cats: 0 + description: 0 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-852104f1fe63e1dea4ede6ce918d1ca8.md b/content/discover/feed-852104f1fe63e1dea4ede6ce918d1ca8.md index a3401d6cc..b02d75605 100644 --- a/content/discover/feed-852104f1fe63e1dea4ede6ce918d1ca8.md +++ b/content/discover/feed-852104f1fe63e1dea4ede6ce918d1ca8.md @@ -12,268 +12,34 @@ params: recommended: [] recommender: [] categories: - - gnome - - totem - - bluetooth - - fedora - - guadec - - gnome-bluetooth - - football - - films - - hackfest - - funny - - control-center - - kernel - - manutd - - epiphany - - freedesktop - - gnome-shell - - gstreamer - - gtk+ - - ps3 - - grilo - - gvfs - - linux - - rhythmbox - - bugs - - flatpak - - fprint - - gnome 3 - - videos - - webkit - - bluez - - freefa - - geoclue - - thumbnailer - - design - - gnome-settings-daemon - - pulseaudio - - stripes - - apple - - gcds - - glib - - gnome-phone-manager - - hardware - - wayland - - NetworkManager - - browser plugin - - dell - - empathy - - france - - gnome-media - - lirc - - obex - - power - - upower - - xdg - - youtube - - dbus - - drivers - - flash - - games - - gnokii - - google - - keyboard - - laptop - - libfprint - - lua - - nautilus - - podcast - - power-profiles-daemon - - red hat - - shared-mime-info - - systemd - - tablet - - telepathy - - touch - - ubuntu - - wacom - - xorg - - afc - - amazon - - bbc - - fifa - - gnome-control-center - - gnome-lirc-properties - - gnome-user-share - - gnome3 - - gom - - guardian - - mythtv - - opengl - - playlist parser - - remote control - - upnp - - volume control - - xdg-app - - arm - - blog - - bugzilla - - chip - - clutter - - codec buddy - - dual-gpu - - dvd - - ebay - - features - - firefox - - flathub - - foundation - - freebox - - gdk-pixbuf - - git - - gjs - - gnome-session - - gobject-introspection - - iio-sensor-proxy - - iphone - - itunes - - jdll - - libgweather - - low-memory-monitor - - lyon - - movie - - nokia - - optimus - - pocket - - politics - - rawhide - - release - - releases - - retro - - ross - - settings - - sony ericsson - - subtitles - - suspend - - switcheroo-control - - theme - - thomson - - toys - - translations - - tv - - udev - - video - - wishlist - - a11y - - accelerometer - - als - - application - - birthday - - bluetooth-sendto - - builder - - ca va pas - - champions - - cheese - - cinema - - comics - - compass - - contacts - - critics - - cross compilation - - desktop summit - - development - - documentation - - dvb - - ebook - - ebooks - - eeepc - - epub - - euro 08 - - ffmpeg - - firewall - - fprintd - - gdb - - geeksphone - - geocoding - - gnome-books - - gnome-builder - - gnome-power-manager - - google video - - hadouken - - humble bundle - - icons - - igalia - - iio - - interviews - - ipad - - ipod touch - - javascript - - joypad - - kde - - languages - - libimobiledevice - - libreoffice - - light - - macos x - - moblin - - motorola - - multitouch - - nautilus-sendto - - ninja gaiden - - nintendo ds - - notifications - - office-runner - - ogg - - old age - - old farts - - olivier - - online desktop - - pedant - - playstation - - plumbers - - privacy - - python - - qemu - - radio - - rip - - rotation - - rpm - - samsung - - script - - search - - security - - series - - shit-in-a-box - - sixaxis - - sms - - sound - - sound-juicer - - spam - - speaker - - stripes-guy - - svn - - symbolic - - tango - - tracker - - usability - - usb - - vim - - website - - wine - - wireless - - xcompile - - xfce - - xine-lib - 10 years - 3g - 5 years - 8-bit - C.H.I.P. + - NetworkManager - PolicyKit - RAM + - a11y - abrt + - accelerometer - acme - adafruit - adb - adobe - adreno - adwaita + - afc - airplane mode + - als - alsa + - amazon - ambient light sensor - android - animation + - apple + - application + - arm - article - audio - avahi @@ -283,11 +49,17 @@ params: - bambulab - bank holidays - basket-ball + - bbc - beer - bemused - berlin - best practices + - birthday + - blog - blu-ray + - bluetooth + - bluetooth-sendto + - bluez - board - bolso - boo hiss @@ -298,8 +70,13 @@ params: - brightness - brno - broadband + - browser plugin - bug day + - bugs + - bugzilla + - builder - bundle + - ca va pas - cairo - calendar - call for papers @@ -307,45 +84,62 @@ params: - capitalism - captive - cfp + - champions + - cheese - chema + - chip - chpe - chrome - chrome os - chuck norris + - cinema - clang - click - client-side windows - clocks - clothes + - clutter - clutter-gtk + - codec buddy - comedy club - comic relief + - comics + - compass - compression - computer - con - conduit - contact-lookup-applet + - contacts - content apps - contest - contributors + - control-center - corey - corporation - coscup - crack + - critics + - cross compilation - culture beat - d420 - daily mail - danny stone + - dbus - dbusmock - dd-wrt - deadly snail - debian - debugging - defective bodyparts + - dell - dell mini - delta airlines - den haag + - design - desktop + - desktop summit + - development - devicekit - devil - diego @@ -354,16 +148,29 @@ params: - displaylink - divx - dns + - documentation - domestic - dri3 + - drivers - ds4 + - dual-gpu + - dvb + - dvd + - ebay - ebbsfleet united + - ebook + - ebooks + - eeepc - elantech - elsass - embedded - emoji + - empathy - endless + - epiphany + - epub - esperanto + - euro 08 - event box - everton - evil @@ -371,58 +178,116 @@ params: - fail - fake - fallback + - features + - fedora + - ffmpeg + - fifa - filesystems + - films - fingerprint reader + - firefox + - firewall + - flash - flashforge - flashprint + - flathub + - flatpak - fleet street - floods - fluendo - folks - fonz + - football + - foundation + - fprint + - fprintd + - france - france inter - français + - freebox + - freedesktop - freedreno + - freefa - freestylers - freud - frog + - funny - gadget - galago + - games - gandi + - gcds + - gdb + - gdk-pixbuf + - geeksphone + - geoclue + - geocoding - geoip - gesture - gettext - gift - gimp + - git - gitlab - giveaway - gizmo + - gjs + - glib - gmyth - gnapplet + - gnokii + - gnome + - gnome 3 + - gnome-bluetooth + - gnome-books + - gnome-builder + - gnome-control-center - gnome-documents + - gnome-lirc-properties + - gnome-media - gnome-multiwriter - gnome-music - gnome-obex-send - gnome-obex-server - gnome-online-accounts + - gnome-phone-manager - gnome-pilot + - gnome-power-manager + - gnome-session + - gnome-settings-daemon + - gnome-shell + - gnome-user-share + - gnome3 - gobject + - gobject-introspection - gog - golf + - gom + - google + - google video - goom - gps + - grilo - gromit + - gstreamer - gthread - gtk + - gtk+ - gtk-parasite + - guadec + - guardian - guilfest - gupnp + - gvfs - gwladys - gypsy - hackergotchi + - hackfest - hacking - hacks + - hadouken - halloween + - hardware - harry - headphones - headset @@ -430,10 +295,15 @@ params: - hidden - house arrest - huawei + - humble bundle - i18n - icedtea - icns + - icons - id theft + - igalia + - iio + - iio-sensor-proxy - illustrator - im - imdb @@ -443,25 +313,45 @@ params: - intel - intel rapid start - interruptions + - interviews + - ipad + - iphone + - ipod touch - iso - istanbul + - itunes - jack sensing - java + - javascript + - jdll - jds - jmp - job + - joypad + - kde - kerberos + - kernel + - keyboard - kid - kiosk - kobo - krita + - languages + - laptop - last.fm - lazy - libarchive - libcanberra + - libfprint + - libgweather + - libimobiledevice + - libreoffice - licences + - light - lightning talk + - linux - linux magazine + - lirc - liverpool - llvm - locale @@ -470,13 +360,18 @@ params: - london - lovefilm - lovelock + - low-memory-monitor + - lua + - lyon - mac mini + - macos x - maemo - mailman - maintainer - making - manchester - mandriva + - manutd - maps - margarita - megadrive @@ -487,27 +382,47 @@ params: - microsoft - mo5 - mobi + - moblin - moron + - motorola + - movie - mpris - mpv - mugshot - multimedia + - multitouch - music - mypaint + - mythtv + - nautilus + - nautilus-sendto - nba - neologism - new statesman + - ninja gaiden - nintendo + - nintendo ds - noddy + - nokia - nostalgia + - notifications - nurnberg - nutella - nvidia + - obex + - office-runner + - ogg + - old age + - old farts - oled + - olivier + - online desktop + - opengl - openismus - openraster - opensubtitles - opera + - optimus - opw - osd - owncloud @@ -518,6 +433,7 @@ params: - party - patches - paypal + - pedant - performance - perl - peter serafinowicz @@ -526,24 +442,44 @@ params: - pidgin - pimusicbox - pipewire + - playlist parser + - playstation + - plumbers - poche + - pocket + - podcast + - politics - portuguese - português - poulsbo + - power + - power-profiles-daemon - powertop - presentation - printer + - privacy - proxy + - ps3 - ps4 + - pulseaudio + - python + - qemu - qmi - qualcomm - quicktime + - radio - rar - raspberry pi - ratchet and clank + - rawhide - record + - red hat + - release + - releases + - remote control - rental - resolv.conf + - retro - retroarch - retrode - retromancave @@ -551,10 +487,15 @@ params: - review - rfkill - rhel + - rhythmbox - rio - rio500 + - rip + - ross + - rotation - router - rpi + - rpm - rtl8723bs - rugby - running man @@ -562,27 +503,42 @@ params: - safari - sagem - salü + - samsung - scratch - screencast - screensaver + - script - sd card + - search + - security - security errata - sega - sensor + - series - service + - settings + - shared-mime-info - sharing - shinobi + - shit-in-a-box - shop - silly - simple pairing - simpsons - sitcoms + - sixaxis - smoking + - sms - snes - social - socks - software + - sony ericsson + - sound + - sound-juicer - soundbox + - spam + - speaker - speaker testing - spice - sponsors @@ -597,50 +553,84 @@ params: - stormy - strasbourg - streaming + - stripes + - stripes-guy - stupid + - subtitles - summer of code - sun - surface - suse + - suspend + - svn + - switcheroo-control + - symbolic + - systemd + - tablet - taipei + - tango - taxi - teensy + - telepathy - templates - test suite - the register + - theme - theora + - thomson + - thumbnailer - tizen - tla - tmk - tories - toshiba + - totem + - touch - touchpad - touchscreen + - toys - trackball + - tracker + - translations - triage - tripes + - tv - tvcatchup - twitter + - ubuntu + - udev - udraw - ui hell - umockdev - unity - unlocking + - upnp + - upower - upstream + - usability + - usb - utc - uwb - vaio - vichy + - video + - videos + - vim - vimeo - vino - vlc - vnc + - volume control - vorbis - vt - vuntz + - wacom - wake-ups - walk500 - wasting time + - wayland + - webkit + - website - wedding - west wing - wetab @@ -649,18 +639,29 @@ params: - windowmaker - windows 8 - windows media player + - wine + - wireless + - wishlist - woking - work - xan - xbmc + - xcompile + - xdg + - xdg-app + - xfce + - xine-lib - xiph - xlib + - xorg + - youtube - zip - zlib - zombies - zonbu relme: https://www.blogger.com/profile/14621847888418739807: true + https://www.hadess.net/: true last_post_title: New and old apps on Flathub last_post_description: 3D Printing Slicers I recently replaced my Flashforge Adventurer 3 printer that I had been using for a few years as my first printer with a BambuLab @@ -674,17 +675,22 @@ params: - flashprint - flathub - rhythmbox + last_post_language: "" last_post_guid: 1526a70b6c4b77c8ece7e2129c1d8e98 score_criteria: cats: 5 description: 0 + feedlangs: 0 postcats: 3 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-852e42fb91a7cd81b52bb4f2a659b80d.md b/content/discover/feed-852e42fb91a7cd81b52bb4f2a659b80d.md deleted file mode 100644 index 6f3335732..000000000 --- a/content/discover/feed-852e42fb91a7cd81b52bb4f2a659b80d.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Andreas Gohr -date: "1970-01-01T00:00:00Z" -description: Public posts from @splitbrain@octodon.social -params: - feedlink: https://octodon.social/@splitbrain.rss - feedtype: rss - feedid: 852e42fb91a7cd81b52bb4f2a659b80d - websites: - https://octodon.social/@splitbrain: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/splitbrain: true - https://www.splitbrain.org/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-853181e6754bb2dbd37a6b974beb15c2.md b/content/discover/feed-853181e6754bb2dbd37a6b974beb15c2.md deleted file mode 100644 index 0f0b1dee1..000000000 --- a/content/discover/feed-853181e6754bb2dbd37a6b974beb15c2.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: mtlynch.io -date: "1970-01-01T00:00:00Z" -description: Recent content on mtlynch.io -params: - feedlink: https://mtlynch.io/index.xml - feedtype: rss - feedid: 853181e6754bb2dbd37a6b974beb15c2 - websites: - https://mtlynch.io/: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - - https://jlelse.blog/.min.rss - - https://jlelse.blog/.rss - - https://jlelse.blog/index.xml - categories: [] - relme: {} - last_post_title: Reset Month - last_post_description: |- - No update this month I’m skipping my normal retrospective this month, as I sold TinyPilot and am taking some time to figure out my next project. - Retrospectives will hopefully resume in a month or - last_post_date: "2024-05-31T00:00:00-04:00" - last_post_link: https://mtlynch.io/retrospectives/2024/05/ - last_post_categories: [] - last_post_guid: 2ca8c1da86f451b064a80bb043e1d514 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8552d506b81e46a75809cdd64fc609a8.md b/content/discover/feed-8552d506b81e46a75809cdd64fc609a8.md deleted file mode 100644 index 538bab6f7..000000000 --- a/content/discover/feed-8552d506b81e46a75809cdd64fc609a8.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: joe jenett ✓ -date: "1970-01-01T00:00:00Z" -description: Public posts from @jenett@toot.community -params: - feedlink: https://toot.community/@jenett.rss - feedtype: rss - feedid: 8552d506b81e46a75809cdd64fc609a8 - websites: - https://toot.community/@jenett: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://bulltown.2022.joejenett.com/: true - https://fediverse-webring-enthusiasts.glitch.me/profiles/jenett_toot.community/index.html: true - https://iwebthings.joejenett.com/: true - https://simply.joejenett.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-855ad650b2e09241d7acb41653d5eac0.md b/content/discover/feed-855ad650b2e09241d7acb41653d5eac0.md index 49ec73b03..12204ab11 100644 --- a/content/discover/feed-855ad650b2e09241d7acb41653d5eac0.md +++ b/content/discover/feed-855ad650b2e09241d7acb41653d5eac0.md @@ -14,35 +14,40 @@ params: recommender: - http://scripting.com/rss.xml - http://scripting.com/rssNightly.xml + - https://frankmcpherson.blog/feed.xml categories: - Uncategorized - - ai - journalism - - openai + - race relme: + https://buzzmachine.com/: true https://mastodon.social/@jeffjarvis: true - last_post_title: Demote the doomsters - last_post_description: This paper in Science on “managing extreme AI risks amid - rapid progress” with 25 co-authors (Harari?) is getting quick attention. The paper - leans heavily toward the AI doom, warning of “an - last_post_date: "2024-05-21T15:02:53Z" - last_post_link: https://buzzmachine.com/2024/05/21/demote-the-doomsters/ + last_post_title: As complicated as Black and white + last_post_description: 'Here are two attempts to redraw the binary political taxonomies + of today: Yet he offers a balm for the nerves: “But liberals should not panic. + Dismantling American or French democracy would be no' + last_post_date: "2024-07-04T13:59:48Z" + last_post_link: https://buzzmachine.com/2024/07/04/as-complicated-as-black-and-white/ last_post_categories: - Uncategorized - - ai - journalism - - openai - last_post_guid: 646837065b430dbefcd28cf4fcc2f6f8 + - race + last_post_language: "" + last_post_guid: 52f54829a22ec7fa34b8f9bfe99f74c1 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 18 + score: 22 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-8567857305fe5e0808ccc5f405248a67.md b/content/discover/feed-8567857305fe5e0808ccc5f405248a67.md index 8a42c515a..17e48f496 100644 --- a/content/discover/feed-8567857305fe5e0808ccc5f405248a67.md +++ b/content/discover/feed-8567857305fe5e0808ccc5f405248a67.md @@ -13,23 +13,31 @@ params: recommender: [] categories: [] relme: + https://dotsony.blogspot.com/: true + https://dotsonyraceblog.blogspot.com/: true + https://dotsonytinkerblog.blogspot.com/: true https://www.blogger.com/profile/17046865031973847470: true last_post_title: Dusting off the cobwebs... last_post_description: "" last_post_date: "2015-02-21T00:41:42-08:00" last_post_link: https://dotsonyraceblog.blogspot.com/2015/02/dusting-off-cobwebs.html last_post_categories: [] + last_post_language: "" last_post_guid: b573fe2144a0a7829be226f0e9b498c2 score_criteria: cats: 0 description: 0 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 7 + score: 10 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-857888b924fdf128bc8d51d6400228f9.md b/content/discover/feed-857888b924fdf128bc8d51d6400228f9.md new file mode 100644 index 000000000..73559615a --- /dev/null +++ b/content/discover/feed-857888b924fdf128bc8d51d6400228f9.md @@ -0,0 +1,196 @@ +--- +title: troy's unix space +date: "2024-03-19T06:09:41-07:00" +description: Various tips and tricks picked up in UNIX engineering. +params: + feedlink: https://troysunix.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 857888b924fdf128bc8d51d6400228f9 + websites: + https://troysunix.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 802.1q + - autofs + - awk + - base + - binary + - bios + - blog info + - bridge + - bsdlabel + - chmod + - chown + - conversions + - cpio + - cpu + - ctd + - date + - decimal + - dhcp + - disk clone + - diskpart + - disks + - dladm + - dmp + - dns + - dumpe2fs + - dumpfs + - epoch + - esxi + - ethtool + - facl + - fcinfo + - fdisk + - file integrity + - file recovery + - files + - format + - freebsd + - fs + - fsck + - fstab + - fstat + - fstyp + - fuser + - geom + - growfs + - grub + - hba + - hex + - host info + - httpd + - ifconfig + - imgadm + - init + - initrd + - inittab + - inode + - ipmp + - iscsi + - iso + - json + - kenv + - lab + - linux + - loop device + - luxadm + - mbr + - mdadm + - mdconfig + - memory + - mirror + - mke2fs + - mkfile + - mkfs + - mkswap + - mount + - mpathadm + - mpxio + - ndd + - network + - newfs + - nfs + - ntp + - obp + - octal + - op + - option 82 + - partition + - pax + - perl + - pfiles + - pkg + - pkgchk + - pmap + - port forwarding + - ports + - privileges + - proc + - processes + - prtconf + - prtdiag + - quotas + - raid + - rbac + - rc.conf + - rc.local + - rcX.d + - recovery + - registry + - replicate + - resize2fs + - rpc + - rpm + - smartos + - smf + - snapshot + - solaris + - ssh + - sudo + - svccfg + - svcs + - svm + - swap + - sysctl + - systeminfo + - tar + - terminal + - tunnel + - ufsdump + - vconfig + - virtualization + - vlan + - vm + - vmadm + - volume + - vsphere + - vswitch + - vtoc + - vxdmp + - vxvm + - windows + - zfs + - zip + - zone + relme: + https://troysunix.blogspot.com/: true + https://www.blogger.com/profile/02867962932926227365: true + last_post_title: Configuring NFS in SmartOS + last_post_description: |- + In the past, I've written up configuring NFS in Solaris, FreeBSD, + and Linux. Now I'll turn my focus to SmartOS. Briefly, NFS + (network file system) provides access to remote filesystems which + appear + last_post_date: "2013-05-05T19:26:27-07:00" + last_post_link: https://troysunix.blogspot.com/2013/05/configuring-nfs-in-smartos.html + last_post_categories: + - dladm + - fstab + - json + - nfs + - smartos + - virtualization + - vmadm + - zone + last_post_language: "" + last_post_guid: cdeb113ee36350f31b2f952214c74ad6 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8585cd96e57cfb8de85a1f50d2d9644a.md b/content/discover/feed-8585cd96e57cfb8de85a1f50d2d9644a.md new file mode 100644 index 000000000..ab78df4ac --- /dev/null +++ b/content/discover/feed-8585cd96e57cfb8de85a1f50d2d9644a.md @@ -0,0 +1,140 @@ +--- +title: Good refrigerator +date: "1970-01-01T00:00:00Z" +description: We have information about Refrigerator keep visiting to my blogspot. +params: + feedlink: https://ka432.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 8585cd96e57cfb8de85a1f50d2d9644a + websites: + https://ka432.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: All about Refrigerator + last_post_description: |- + In a period where How Many Amps Does a Refrigerator Use we are on the whole delicate to our + apparatuses hanging out in our kitchen comes counter profundity fridges. A + fridge that is worked to mix + last_post_date: "2022-01-12T08:19:00Z" + last_post_link: https://ka432.blogspot.com/2022/01/all-about-refrigerator.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 959bf17901953eb1ec25778f89086761 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-85887a6fec21ed0fa35a41a37e501ee4.md b/content/discover/feed-85887a6fec21ed0fa35a41a37e501ee4.md new file mode 100644 index 000000000..fb8f94088 --- /dev/null +++ b/content/discover/feed-85887a6fec21ed0fa35a41a37e501ee4.md @@ -0,0 +1,48 @@ +--- +title: The GNOME Foundation +date: "1970-01-01T00:00:00Z" +description: Building a diverse and sustainable free software ecosystem +params: + feedlink: https://foundation.gnome.org/feed/ + feedtype: rss + feedid: 85887a6fec21ed0fa35a41a37e501ee4 + websites: + https://foundation.gnome.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Events + - GUADEC + - News + relme: + https://foundation.gnome.org/: true + last_post_title: GUADEC 2024 Call for BoFs and Workshops + last_post_description: We have opened an additional call for submissions for Birds-of-a-Feather + (BoF) sessions and Workshops for GUADEC 2024! BoF and Workshop sessions will be + scheduled in one or two-hour blocks on Monday, + last_post_date: "2024-06-04T14:55:24Z" + last_post_link: https://foundation.gnome.org/2024/06/04/guadec-2024-call-for-bofs-and-workshops/ + last_post_categories: + - Events + - GUADEC + - News + last_post_language: "" + last_post_guid: 543010d6c02849b78e76eb630ac96f15 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-85909deef311a4224176c26555dc7367.md b/content/discover/feed-85909deef311a4224176c26555dc7367.md new file mode 100644 index 000000000..42c9b250a --- /dev/null +++ b/content/discover/feed-85909deef311a4224176c26555dc7367.md @@ -0,0 +1,46 @@ +--- +title: Tribblix +date: "1970-01-01T00:00:00Z" +description: An OpenSolaris-derived distribution based on the illumos core with a + retro feel. +params: + feedlink: https://tribblix.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 85909deef311a4224176c26555dc7367 + websites: + https://tribblix.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://petertribble.blogspot.com/: true + https://ptribble.blogspot.com/: true + https://tribblix.blogspot.com/: true + https://www.blogger.com/profile/09363446984245451854: true + last_post_title: Changes in 0m34 prerelease + last_post_description: Give zap the ability to manage additional package and overlay + reposIn future, packaging should manage editable files (such as configurationfiles) + correctly, and preserve changes across + last_post_date: "2024-04-01T18:46:00Z" + last_post_link: https://tribblix.blogspot.com/2024/04/changes-in-0m34-prerelease.html + last_post_categories: [] + last_post_language: "" + last_post_guid: bf780fed5489a60a2c2ccc5809d02de7 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8592104868dbf46512b41ea2996b866a.md b/content/discover/feed-8592104868dbf46512b41ea2996b866a.md new file mode 100644 index 000000000..54bceb8e8 --- /dev/null +++ b/content/discover/feed-8592104868dbf46512b41ea2996b866a.md @@ -0,0 +1,86 @@ +--- +title: Philipp Kern's Debian blog +date: "2024-03-19T08:54:30+01:00" +description: "" +params: + feedlink: https://debblog.philkern.de/feeds/posts/default + feedtype: atom + feedid: 8592104868dbf46512b41ea2996b866a + websites: + https://debblog.philkern.de/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - archive + - autosigning + - buildd + - cms + - debconf + - debconf11 + - debconf12 + - debian-installer + - debian-release + - encryption + - firefox + - games + - git-annex + - gnucash + - gobby + - gpg + - gtk3 + - hardware + - iceweasel + - ipv6 + - key signing + - libraries + - lvm + - meetings + - mozilla + - networking + - openclonk + - openwrt + - pam + - pbuilder + - pdiffs + - planet-ubuntu + - s390 + - sbuild + - security + - squeeze + - stable + - systemd + - ubuntu + - versions + - vote + - wanna-build + - z/vm + relme: + https://debblog.philkern.de/: true + https://www.blogger.com/profile/12612857680528965620: true + last_post_title: Self-service buildd givebacks now use Salsa auth + last_post_description: "" + last_post_date: "2020-08-23T08:53:04+02:00" + last_post_link: https://debblog.philkern.de/2020/08/self-service-buildd-givebacks-salsa-auth.html + last_post_categories: + - buildd + - wanna-build + last_post_language: "" + last_post_guid: 53201a12afd842fb6008769ac9723ff9 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8594ba8ccddc15fb17882d5a73da3cd7.md b/content/discover/feed-8594ba8ccddc15fb17882d5a73da3cd7.md new file mode 100644 index 000000000..c92e22e9a --- /dev/null +++ b/content/discover/feed-8594ba8ccddc15fb17882d5a73da3cd7.md @@ -0,0 +1,43 @@ +--- +title: Terry Chen +date: "1970-01-01T00:00:00Z" +description: BE INSPIRED +params: + feedlink: https://t3rrychan.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 8594ba8ccddc15fb17882d5a73da3cd7 + websites: + https://t3rrychan.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://t3rrychan.blogspot.com/: true + https://www.blogger.com/profile/05656028510897454921: true + last_post_title: Exploring xsd.core + last_post_description: I mentioned in the previous blog that the getProperty() method + under the class XSDSchemaAdapter in org.eclipse.wst.xsd.core, XSDImpl.java calculates + the name space of an attribute. However, as i + last_post_date: "2009-08-19T08:14:00Z" + last_post_link: https://t3rrychan.blogspot.com/2009/08/exploring-xsdcore.html + last_post_categories: [] + last_post_language: "" + last_post_guid: f5a842e9879eb100f532d985dfd5864d + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-85bef98a81befac0f2839bd1ccd4c3ce.md b/content/discover/feed-85bef98a81befac0f2839bd1ccd4c3ce.md new file mode 100644 index 000000000..c30d0970d --- /dev/null +++ b/content/discover/feed-85bef98a81befac0f2839bd1ccd4c3ce.md @@ -0,0 +1,51 @@ +--- +title: 'Sage: Open Source Mathematics Software' +date: "1970-01-01T00:00:00Z" +description: This is my blog about things related to Sage. +params: + feedlink: https://sagemath.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 85bef98a81befac0f2839bd1ccd4c3ce + websites: + https://sagemath.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - sage "math software" autobiographical magma maple matlab mathematica pari + - sage ipad iphone python + - sage python introduction open source mathematics software + - vmware virtualbox + relme: + https://389a.blogspot.com/: true + https://sagemath.blogspot.com/: true + https://salvusmath.blogspot.com/: true + https://skate389.blogspot.com/: true + https://www.blogger.com/profile/09206974122359022797: true + last_post_title: 'Major Price Cuts: Deepnote Versus Cocalc --- Compute Server Pricing' + last_post_description: |- + Deepnote is one of CoCalc's direct competitors. Today (November 30, 2023) they announced a major price cut on their pay-as-you-go rates: + + "As you may have already heard, starting December 1, we're + last_post_date: "2023-12-03T17:29:00Z" + last_post_link: https://sagemath.blogspot.com/2023/12/major-price-cuts-deepnote-versus-cocalc.html + last_post_categories: [] + last_post_language: "" + last_post_guid: ba28ba9e377dd2e1dddcc5c3edeac848 + score_criteria: + cats: 4 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-85d341c0d0596971536dd6a7a02d24c9.md b/content/discover/feed-85d341c0d0596971536dd6a7a02d24c9.md index 47fae9f26..18225ab29 100644 --- a/content/discover/feed-85d341c0d0596971536dd6a7a02d24c9.md +++ b/content/discover/feed-85d341c0d0596971536dd6a7a02d24c9.md @@ -14,6 +14,8 @@ params: categories: - Development relme: + https://anxiousfox.co.uk/: true + https://blog.mikeasoft.com/: true https://octodon.social/@mikesheldon: true last_post_title: Pied Beta last_post_description: For the past couple of months I’ve been working on Pied, @@ -23,17 +25,22 @@ params: last_post_link: https://blog.mikeasoft.com/2023/11/20/pied-beta/ last_post_categories: - Development + last_post_language: "" last_post_guid: 86506e1cbb0e89556703f480d54a5301 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 8 + score: 12 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-85d5b2098eb3e8a3a72b578d1c2a1533.md b/content/discover/feed-85d5b2098eb3e8a3a72b578d1c2a1533.md new file mode 100644 index 000000000..a11954c07 --- /dev/null +++ b/content/discover/feed-85d5b2098eb3e8a3a72b578d1c2a1533.md @@ -0,0 +1,50 @@ +--- +title: RuMiNaTiOnS +date: "2024-03-04T23:29:50-08:00" +description: Recurring thoughts on food, functional programming (Haskell), diving + and photography. +params: + feedlink: https://cliffordbeshers.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 85d5b2098eb3e8a3a72b578d1c2a1533 + websites: + https://cliffordbeshers.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - cooking + - food + - gerboa + - gluten free + - haskell + - recipes + - seereason + - steel-cut oats + relme: + https://cliffordbeshers.blogspot.com/: true + https://www.blogger.com/profile/07441435909838565635: true + last_post_title: April Fools' Joke Exposes Weakness in Twitter Verification + last_post_description: "" + last_post_date: "2015-04-01T10:25:39-07:00" + last_post_link: https://cliffordbeshers.blogspot.com/2015/04/april-fools-joke-exposes-weakness-in.html + last_post_categories: [] + last_post_language: "" + last_post_guid: f11ee1e0cb7e38805092be88b13427af + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-85e29582bb41084ee097f506b6a09c93.md b/content/discover/feed-85e29582bb41084ee097f506b6a09c93.md deleted file mode 100644 index e5cbebb50..000000000 --- a/content/discover/feed-85e29582bb41084ee097f506b6a09c93.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: 'Cory :prami_pride_demi:' -date: "1970-01-01T00:00:00Z" -description: Public posts from @cory@social.lol -params: - feedlink: https://social.lol/@cory.rss - feedtype: rss - feedid: 85e29582bb41084ee097f506b6a09c93 - websites: - https://social.lol/@cory: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://coryd.dev/: true - https://coryd.dev/feeds: true - https://coryd.dev/now: true - https://github.com/cdransf: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-85e901b3cb93c5d2220738fc8b395feb.md b/content/discover/feed-85e901b3cb93c5d2220738fc8b395feb.md new file mode 100644 index 000000000..b20208f4e --- /dev/null +++ b/content/discover/feed-85e901b3cb93c5d2220738fc8b395feb.md @@ -0,0 +1,229 @@ +--- +title: Its Eclipse in Clips ... +date: "1970-01-01T00:00:00Z" +description: This blog site is a symbol of our Passion towards Eclipse and a contribution + to the Eclipse Community ... Eclipse Team, ANCiT Consulting +params: + feedlink: https://eclipseo.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 85e901b3cb93c5d2220738fc8b395feb + websites: + https://eclipseo.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ANT + - ActionSet + - Activator + - Adding Palette Item's In GEF... + - Background Image To GEF Editor + - Build + - Code Generator + - Code RasPIde + - Code to print your Gef Editor + - Command + - Commit Information + - Community Meeting + - Connection in GEF + - ConnectionEndpointLocator + - ContentPane + - Control Decoration + - Custom splash screen templates… + - Decoration + - Demo Camp + - DemoCamp + - DemoCamp09 + - Deploy and Configuration Tool + - Developing RAP Application + - DirectEditing label + - Document Partitioning in TextEditor + - E-Core + - E-Core Properties + - E-Core Properties Unleashed + - ECP + - EMF + - EMF Compare + - EMF Forms + - EMF Validation + - Eclipse + - Eclipse Con + - Eclipse Conference + - Eclipse Day + - Eclipse Demo + - Eclipse Demo Camp + - Eclipse Developer Camp + - Eclipse Editors + - Eclipse Event + - Eclipse Forum India 2008 + - Eclipse GEF + - Eclipse IDE + - Eclipse India Summit + - Eclipse PDE + - Eclipse Plugin Developer + - Eclipse Summit + - Eclipse Training + - Eclipse UI + - Eclipse Utility + - Eclipse jobs + - Eclipsw Day + - Ecore + - Edapt + - Europe + - Extension Point + - FTP + - Field Decoration + - Forking + - Form Editor + - Form UI + - GEF + - GEF Editor Image + - GEF... + - GMF + - Ganymede + - Git + - Git Repositories View + - Github + - Glossary + - Google Search + - Graphical Editor + - Graphiti + - Horizontal to Vertical + - IRC Chat + - Image Registry + - Installing And developing RAP Application + - Installing RAP Application + - IoT + - ItemProviders + - JUnit + - JUnit Programmatically + - Jenkins + - Jobs + - Juno + - Key Binding + - M2M Tools + - Makes Label to Grow Vertically + - Maven + - Maven Tycho Integration + - Mavon + - MidpointLocator + - Model Comparison + - Model Migration + - Model Validation + - Modelling + - Modelling Training + - Multiple ContentPane + - OSGI + - OSGI Server + - PDE + - PDE Build + - PDE TEST + - PI4J + - PROP_DIRTY + - Perspective Customisation + - Plugin + - PreferencePage + - PreferenceStore + - Principles of Eclipse + - Print Gef Editor + - Print your Gef Editor + - Public Classroom + - PullRequest + - PullRequest utility + - RAP Application + - RCP + - RCP Training + - Raspberry PI + - Remote System Explorer + - Removing Actions from Perspective + - Rules of Eclipse + - Run JUnit Programmatically + - SWT + - SWTBOT + - Scroll Panel + - Scroll Panel on Compartment Figure + - Section Creation + - Selection Provider + - Selection Service + - Setting Background Image + - Setting text to the Section + - Sirius + - Spell Check + - Sphinx + - State Persistence + - TableViewer + - Telnet + - Template Feature In Ganymede Edition... + - Terms + - Testing Eclipse Plugins + - TextHover... + - Tips & Tricks + - Toolbar to the Section + - Training + - Tycho + - UI Context + - UI Tester + - Validation + - View + - Visualisation + - Whats New + - Workshop + - Workspace related + - Zest + - ancit + - ancitconsulting + - camp + - connection without overlap in gef + - e4 training + - eGit + - eGit-Extensions + - ecore properties + - github mylyn connector + - github utils + - horizontal and vertical scrolling + - horizontal scrolling + - i18n + - java + - label Grow Vertically + - label to Connection Line + - org.eclipse.ui.preferencePages + - plugins + - translator + - unoverlap connection in gef + - unoverlap figures in gef + - vertical scrolling + relme: + https://eclipseo.blogspot.com/: true + https://meomalai.blogspot.com/: true + https://quickfix-bpm.blogspot.com/: true + https://www.blogger.com/profile/04319454473329758815: true + last_post_title: Eclipse Summit India 2016 @ Bangalore + last_post_description: |- + Hey Guys + + Thanks to Eclipse Foundation and IBM, this year Eclipse Day has been upgraded to a 2 Day Conference 'Eclipse Summit'. It is open for Registration. Happening in the Month of Aug from 25th to + last_post_date: "2016-06-04T04:47:00Z" + last_post_link: https://eclipseo.blogspot.com/2016/06/eclipse-summit-india-2016-bangalore.html + last_post_categories: + - Eclipse Conference + - Eclipse Day + - Eclipse Summit + last_post_language: "" + last_post_guid: 2d867e4a5a54783606611319684f0e7c + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-86003cb0eb618713ee1c34ffea59b74a.md b/content/discover/feed-86003cb0eb618713ee1c34ffea59b74a.md new file mode 100644 index 000000000..b1066e6fb --- /dev/null +++ b/content/discover/feed-86003cb0eb618713ee1c34ffea59b74a.md @@ -0,0 +1,42 @@ +--- +title: Implementing Axolotl over XMPP Conversations +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://conversationsgsoc2015.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 86003cb0eb618713ee1c34ffea59b74a + websites: + https://conversationsgsoc2015.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://conversationsgsoc2015.blogspot.com/: true + last_post_title: OMEMO + last_post_description: GSoC is over, but we're far from done. For those of you who + have been following along for a while, OMEMO is now the official name of this + protocol. Since it's not actually exactly axolotl, it would + last_post_date: "2015-09-06T14:37:00Z" + last_post_link: https://conversationsgsoc2015.blogspot.com/2015/09/omemo.html + last_post_categories: [] + last_post_language: "" + last_post_guid: d779aeffeb598b1738d7dc95d172779c + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-86067148f7e4247f817d0a68625fc729.md b/content/discover/feed-86067148f7e4247f817d0a68625fc729.md deleted file mode 100644 index dc6dd16c9..000000000 --- a/content/discover/feed-86067148f7e4247f817d0a68625fc729.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Stammy -date: "1970-01-01T00:00:00Z" -description: Public posts from @stammy@stammy.design -params: - feedlink: https://stammy.design/@stammy.rss - feedtype: rss - feedid: 86067148f7e4247f817d0a68625fc729 - websites: - https://stammy.design/@stammy: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://limitless.ai/: false - https://paulstamatiou.com/: true - https://twitter.com/Stammy: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-862a5935ecf0291c45955c7333e5a5ff.md b/content/discover/feed-862a5935ecf0291c45955c7333e5a5ff.md new file mode 100644 index 000000000..ef06410b4 --- /dev/null +++ b/content/discover/feed-862a5935ecf0291c45955c7333e5a5ff.md @@ -0,0 +1,49 @@ +--- +title: Playing with Android +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://spookyandroid.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 862a5935ecf0291c45955c7333e5a5ff + websites: + https://spookyandroid.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - market release wakeme + - references + - release + - release market + relme: + https://spookyandroid.blogspot.com/: true + https://t7gre.blogspot.com/: true + https://www.blogger.com/profile/14337030496107875313: true + last_post_title: Experiences with the Android Market + last_post_description: 'I finally released WakeMe@ on the Android Market on 2nd + August. I''m pretty happy with the state of it at the moment: everything works + (as far as I can see). At least it does now, after two rapid' + last_post_date: "2011-08-09T20:30:00Z" + last_post_link: https://spookyandroid.blogspot.com/2011/08/experiences-with-android-market.html + last_post_categories: + - market release wakeme + last_post_language: "" + last_post_guid: 8dfd07eaedb5a7f446679a754cc00c1c + score_criteria: + cats: 4 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-863bedae27261ec15758216c77165d2e.md b/content/discover/feed-863bedae27261ec15758216c77165d2e.md deleted file mode 100644 index fc6255fa8..000000000 --- a/content/discover/feed-863bedae27261ec15758216c77165d2e.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Ash Furrow’s Posts on Exposure -date: "1970-01-01T00:00:00Z" -description: Primarily a film photographer who travels a lot. -params: - feedlink: https://photos.ashfurrow.com/feed.rss - feedtype: rss - feedid: 863bedae27261ec15758216c77165d2e - websites: - https://photos.ashfurrow.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Amsterdam, 2018 - last_post_description: I returned to Amsterdam for just a few days to present at - a conference back in April. These photos of are the spring, so hopefully it will - remind you what is at the end of the incipient winter.My - last_post_date: "2018-11-26T01:56:18Z" - last_post_link: https://photos.ashfurrow.com/amsterdam-2018 - last_post_categories: [] - last_post_guid: 19e3cd1e739d35f889bc92b57df2eb3e - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-864027bca0021208682be2fcabab06fc.md b/content/discover/feed-864027bca0021208682be2fcabab06fc.md deleted file mode 100644 index d56b0d2a7..000000000 --- a/content/discover/feed-864027bca0021208682be2fcabab06fc.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: OpenStack on Silicon Loons -date: "1970-01-01T00:00:00Z" -description: Recent content in OpenStack on Silicon Loons -params: - feedlink: https://blog.siliconloons.com/categories/openstack/index.xml - feedtype: rss - feedid: 864027bca0021208682be2fcabab06fc - websites: - https://blog.siliconloons.com/categories/openstack/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Running Openstack and OVN in Vagrant - last_post_description: OVN has been evolving a lot since it was announced over a - year ago. The project is being developed by many developers from VMware, Red Hat, - IBM, eBay and other companies and individuals. If you - last_post_date: "2016-02-20T15:06:39-06:00" - last_post_link: https://blog.siliconloons.com/posts/2016-02-20-ovn-vagrant/ - last_post_categories: [] - last_post_guid: fe4704e7a9f5403bc7dce24794c60de6 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-86425ddd0aa51f9d5ab58ffc46017a6a.md b/content/discover/feed-86425ddd0aa51f9d5ab58ffc46017a6a.md new file mode 100644 index 000000000..c6bdc6f16 --- /dev/null +++ b/content/discover/feed-86425ddd0aa51f9d5ab58ffc46017a6a.md @@ -0,0 +1,44 @@ +--- +title: ZPUino +date: "2024-02-07T21:58:01-08:00" +description: "" +params: + feedlink: https://zpuino.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 86425ddd0aa51f9d5ab58ffc46017a6a + websites: + https://zpuino.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://assassinosuicida.blogspot.com/: true + https://gta02-core-news.blogspot.com/: true + https://www.blogger.com/profile/17602200301602248416: true + https://zpuino.blogspot.com/: true + https://zxinterfacez.blogspot.com/: true + last_post_title: A picture + last_post_description: "" + last_post_date: "2013-01-09T11:53:36-08:00" + last_post_link: https://zpuino.blogspot.com/2013/01/a-picture.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 259f814a1df5d0185dd6ff436256b2d6 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8652802ab0365f676d2c691c654d9ef2.md b/content/discover/feed-8652802ab0365f676d2c691c654d9ef2.md new file mode 100644 index 000000000..0d9638d70 --- /dev/null +++ b/content/discover/feed-8652802ab0365f676d2c691c654d9ef2.md @@ -0,0 +1,40 @@ +--- +title: Google Summer of Code +date: "2024-02-06T22:20:43-08:00" +description: "" +params: + feedlink: https://spectrum-gsoc12.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 8652802ab0365f676d2c691c654d9ef2 + websites: + https://spectrum-gsoc12.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://spectrum-gsoc12.blogspot.com/: true + last_post_title: GSoC Coding Phase Ends + last_post_description: "" + last_post_date: "2012-08-18T22:48:23-07:00" + last_post_link: https://spectrum-gsoc12.blogspot.com/2012/08/gsoc-coding-phase-ends_18.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 344fd37cce43cf6256082a6325ec1912 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-866bba9c91c36815a8d7f07260e704aa.md b/content/discover/feed-866bba9c91c36815a8d7f07260e704aa.md deleted file mode 100644 index 8830ec042..000000000 --- a/content/discover/feed-866bba9c91c36815a8d7f07260e704aa.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Writing Slowly -date: "1970-01-01T00:00:00Z" -description: Public posts from @writingslowly@aus.social -params: - feedlink: https://aus.social/@writingslowly.rss - feedtype: rss - feedid: 866bba9c91c36815a8d7f07260e704aa - websites: - https://aus.social/@writingslowly: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://justmytoots.com/@writingslowly@aus.social: false - https://micro.blog/writingslowly: false - https://reddit.com/user/atomicnotes: false - https://writingslowly.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-866dabbdbbafd73894a792301c140446.md b/content/discover/feed-866dabbdbbafd73894a792301c140446.md new file mode 100644 index 000000000..bc8c802e0 --- /dev/null +++ b/content/discover/feed-866dabbdbbafd73894a792301c140446.md @@ -0,0 +1,65 @@ +--- +title: Pemrograman Mobile dengan Intel XDK +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://xdkmobile.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 866dabbdbbafd73894a792301c140446 + websites: + https://xdkmobile.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - JSON + - PouchDB + relme: + https://eclipsedriven.blogspot.com/: true + https://emfmodeling.blogspot.com/: true + https://enakmurahkenyang.blogspot.com/: true + https://koperasi-bersama.blogspot.com/: true + https://lumen.hendyirawan.com/: true + https://magentoadmin.blogspot.com/: true + https://manfaatkefir.blogspot.com/: true + https://mobileflashdev.blogspot.com/: true + https://ngenet-dapat-duit.blogspot.com/: true + https://panduanubuntu.blogspot.com/: true + https://phpajaxweb.blogspot.com/: true + https://qt-mobility.blogspot.com/: true + https://rumah-sehat-avicenna.blogspot.com/: true + https://rumahkostdijualbandung.blogspot.com/: true + https://scala-enterprise.blogspot.com/: true + https://spring-java-ee.blogspot.com/: true + https://tutorial-java-programming.blogspot.com/: true + https://ubuntucomputing.blogspot.com/: true + https://www.blogger.com/profile/05192845149798446052: true + https://xdkmobile.blogspot.com/: true + last_post_title: Tutorial JSON via HTTP - Prakiraan Cuaca + last_post_description: |- + Bila aplikasi mobile kita membutuhkan data dari Internet, kita akan mendapatkannya dari web service API tertentu. Biasanya data akan ditransfer dalam format JSON. + + JSON adalah format berbasis + last_post_date: "2014-03-27T15:27:00Z" + last_post_link: https://xdkmobile.blogspot.com/2014/03/tutorial-json-via-http-prakiraan-cuaca.html + last_post_categories: + - JSON + last_post_language: "" + last_post_guid: a46f5762b8c5e43b0646f91e01604d15 + score_criteria: + cats: 2 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-868189a3ce151f6b864bec739cfbfdb6.md b/content/discover/feed-868189a3ce151f6b864bec739cfbfdb6.md new file mode 100644 index 000000000..1a79bcb43 --- /dev/null +++ b/content/discover/feed-868189a3ce151f6b864bec739cfbfdb6.md @@ -0,0 +1,69 @@ +--- +title: The Programming Delusion +date: "2024-03-08T16:25:59-05:00" +description: Delusional thoughts on Java, OSGi, Eclipse and other things +params: + feedlink: https://blog.hargrave.io/feeds/posts/default + feedtype: atom + feedid: 868189a3ce151f6b864bec739cfbfdb6 + websites: + https://blog.hargrave.io/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - api + - bnd + - bndtools + - classloading + - design + - eclipse + - eclipsecon + - equinox + - gsoc + - jakarta + - jakartaee + - java + - java posse + - javaone + - jsr294 + - mac + - mobile + - modularity + - oredev + - osgi + - pipes + - planet + - semantic versioning + - yahoo + relme: + https://blog.hargrave.io/: true + https://www.blogger.com/profile/05791451307210957698: true + last_post_title: A Tool for Jakarta EE Package Renaming in Binaries + last_post_description: "" + last_post_date: "2019-10-17T17:26:16-04:00" + last_post_link: https://blog.hargrave.io/2019/10/a-tool-for-jakarta-ee-package-renaming.html + last_post_categories: + - api + - jakarta + - jakartaee + - java + last_post_language: "" + last_post_guid: 2c85d77e0c0ac13d71425f6ebb10d4a0 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-86896a3440fedeef66bf88df9a7f64fd.md b/content/discover/feed-86896a3440fedeef66bf88df9a7f64fd.md new file mode 100644 index 000000000..1dcc91d9e --- /dev/null +++ b/content/discover/feed-86896a3440fedeef66bf88df9a7f64fd.md @@ -0,0 +1,45 @@ +--- +title: ✍ Evan Travers +date: "2024-06-28T13:53:00Z" +description: Evan Travers' Personal Blog +params: + feedlink: https://evantravers.com/feed.xml + feedtype: atom + feedid: 86896a3440fedeef66bf88df9a7f64fd + websites: + https://evantravers.com/: false + blogrolls: [] + recommended: [] + recommender: + - https://danq.me/comments/feed/ + - https://danq.me/feed/ + - https://danq.me/kind/article/feed/ + - https://danq.me/kind/note/feed/ + categories: [] + relme: {} + last_post_title: Outage… + last_post_description: "# \n \n This is an RSS-only post. It's a secret! Read + more about RSS Club.\nLast night my friend Joschua alerted me that my website + was giving a 522 error. I poked at it a little bit on my phone, but" + last_post_date: "2024-06-28T09:05:51Z" + last_post_link: https://evantravers.com/articles/2024/06/28/outage/ + last_post_categories: [] + last_post_language: "" + last_post_guid: dd69b54f2f6927a2618e9368aa89eb55 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 1 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-869d3440e6ec4a7f4b1c0c3fbdecdc87.md b/content/discover/feed-869d3440e6ec4a7f4b1c0c3fbdecdc87.md index 14eb71a6b..157fafef0 100644 --- a/content/discover/feed-869d3440e6ec4a7f4b1c0c3fbdecdc87.md +++ b/content/discover/feed-869d3440e6ec4a7f4b1c0c3fbdecdc87.md @@ -13,35 +13,40 @@ params: - http://scripting.com/rss.xml - http://scripting.com/rssNightly.xml categories: - - Meta - Product News - Recent News - Sidebar - Featured + - Technology and Innovation - Threads relme: {} - last_post_title: 'Introducing Threads: A New Way to Share With Text' - last_post_description: |- - Threads is a new app, built by the Instagram team, for sharing text updates and joining public conversations. - The post Introducing Threads: A New Way to Share With Text appeared first on Meta. - last_post_date: "2023-07-05T23:30:45Z" - last_post_link: https://about.fb.com/news/2023/07/introducing-threads-new-app-text-sharing/ + last_post_title: What Is the Fediverse? + last_post_description: "The fediverse is a global social network of interconnected + servers that allows people to communicate across different platforms. \nThe post + What Is the Fediverse? appeared first on Meta." + last_post_date: "2024-06-25T17:10:26Z" + last_post_link: https://about.fb.com/news/2024/06/what-is-the-fediverse/ last_post_categories: - - Meta - Product News - Recent News - Sidebar - Featured + - Technology and Innovation - Threads - last_post_guid: dff7b0da67655346f0ede8d77da3844d + last_post_language: "" + last_post_guid: ecac439feb882912e0f183f0ee11d9a9 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 11 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-86a17090f3a86c4a8dbc9afd46af3dc8.md b/content/discover/feed-86a17090f3a86c4a8dbc9afd46af3dc8.md new file mode 100644 index 000000000..1105ed205 --- /dev/null +++ b/content/discover/feed-86a17090f3a86c4a8dbc9afd46af3dc8.md @@ -0,0 +1,169 @@ +--- +title: pyright +date: "1970-01-01T00:00:00Z" +description: Python programming language related posts. +params: + feedlink: https://pyright.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 86a17090f3a86c4a8dbc9afd46af3dc8 + websites: + https://pyright.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - '#2Dgeometry #python #infiniteslope' + - '#ArabicLanguage' + - '#C#' + - '#Csharp' + - '#Gtk' + - '#Gtk.Calendar' + - '#Gtk.TreeView' + - '#InternetExplorer' + - '#IronPython' + - '#IronPython #unicode #python #.NET' + - '#JavaScript #ZenofPython' + - '#JavaScript #ZenofPython #W3Cvalidator' + - '#PDF #Bookmarks #PyPDF2 #Python' + - '#Python' + - '#Python3.1 #Unicode #UTF-8 #bytes #OrderedDict' + - '#PythonWiki' + - '#Selenium' + - '#SendKeys' + - '#Unicode' + - '#Vector' + - '#XMLcharactercodes' + - '#dotNet' + - '#freebsd' + - '#gtk-sharp' + - '#hack' + - '#inkscape #povray #svg #python #pysanky' + - '#jts #wkt #jython' + - '#jython #JTS #geometry' + - '#jython #java #clone' + - '#jython #java.util.Properties' + - '#jython #joda-time' + - '#jython #jts #voronoi' + - '#jython #python #java #regularexpressions' + - '#jython #unicode #regularexpressions #python' + - '#meetbsdca2104' + - '#mono' + - '#netbsd' + - '#openbsd' + - '#polygonbuffering #jts #jython' + - '#polygonoffset' + - '#polygonoffset #python' + - '#polygonoffset #python #povray #pysanky' + - '#povray #python #pysanky' + - '#pycon-us #pycon #unicode #python #python3.1 #unicodedata' + - '#pyconza' + - '#pyeuclid' + - '#pyeuclid #polygonoffset #python' + - '#pysanky #povray #python' + - '#python #java #jython #arabic #RTL' + - '#python #lao #unicode #python3.1' + - '#python #povray #pysanky' + - '#python #pythonlogos' + - '#python #unicode #utf #armenian #russian #python3.1' + - '#python #unicodeidentifiers #arabic #python3.1 #RTL' + - '#python2.6 #__future__ #python3.1 #stringformatting #transamerica' + - '#python2.7' + - '#python3.1 #stringformatting #mining' + - '#python3.4' + - '#regularexpressions #jython #ironpython #python #unicode' + - '#subprocess #Popen #python2.7 #Windowsexecutable #parallel' + - '#svg #xml #pythonlogo #python' + - '#travel #pycon #pycon-us #conferences #foss' + - '#urllib #python #foreignlanguagetapes' + - '#vectormaath' + - '#vectormath' + - '#win32com' + - 7-ZipJBinding + - 7zip + - BSDA + - IPv4 + - MSSQL + - OpenBSD + - 'Python #unicode #python3.1 #UnicodeDecodeError' + - Python Python3 Unicode Unicodenormalization Unicodedecomposition unicodedatamodule + Umlaut PyconUS + - Python3.x Python unittest bytes + - SSRS + - Thinkpad + - VBA + - X201 + - assert + - base64 + - bcp + - bytea + - columns + - coroutines + - csv + - devilinthedark + - dia + - drillholes + - fan + - feh + - freebsd python + - generators + - geology + - grouping + - hardware + - hotrains + - java + - jpeg + - jython + - jython unicode unicodeblock + - linear regression formulas + - maintainablecode + - modeltrains + - netmask + - openbsd python + - postgresql + - psql + - pyconus python3 robots + - pyrite + - python + - python openbsd DoubleAssociation dictionarystructure + - python python3 Unicode unicodedata Telugu Hindi virama + - python python3 Unicode unicodedata normalization decomposition malayalam + - python python3 foreignlanguage pythoncommunity + - python python3.1 UTF-8 Unicode + - python python3.1 UTF-8 Unicode Arabic + - python3.5 + - showimagefromdatabasequery + - sound + - sqlcmd + - storeimageastext + - storeimageindatabase + - toydatabase + - y=mx+b + - yield + relme: + https://pyright.blogspot.com/: true + last_post_title: Graphviz - Editing a DAG Hamilton Graph dot File + last_post_description: companylogo [label="" image="fauxcompanylogo.png" shape="box", + width=5.10 height=0.6 fixedsize=true]The DAG Hamilton logo listed first appears + to end up in the upper left part of the diagram most of + last_post_date: "2024-07-06T01:10:00Z" + last_post_link: https://pyright.blogspot.com/2024/07/graphviz-editing-dag-hamilton-graph-dot.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 34a5084412fe66d086ed10831a2568d8 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-86c9624b3d87365f4c08c8bbccd56bc0.md b/content/discover/feed-86c9624b3d87365f4c08c8bbccd56bc0.md new file mode 100644 index 000000000..798ea64a2 --- /dev/null +++ b/content/discover/feed-86c9624b3d87365f4c08c8bbccd56bc0.md @@ -0,0 +1,46 @@ +--- +title: openaddresses +date: "1970-01-01T00:00:00Z" +description: www.openaddresses.org is an Open Source web portail for the management + of Open worldwide geolocated postal addresses. +params: + feedlink: https://openaddresses.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 86c9624b3d87365f4c08c8bbccd56bc0 + websites: + https://openaddresses.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://cedricmoullet.blogspot.com/: true + https://geoext.blogspot.com/: true + https://openaddresses.blogspot.com/: true + https://teamtesag.blogspot.com/: true + https://www.blogger.com/profile/06947117799577904122: true + last_post_title: OpenAddresses receives an award at AGIT 2010 + last_post_description: The OpenAddresses poster have been awarded during AGIT 2010.Have + a look a this poster (also pdf):Congratulations to Hans-Jörg ! + last_post_date: "2010-07-10T07:22:00Z" + last_post_link: https://openaddresses.blogspot.com/2010/07/openaddresses-receives-award-at-agit.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 3fdc4fed66bf8aeddfa6d8dfb9012dd9 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-86edc07630175ca78966b068d80db608.md b/content/discover/feed-86edc07630175ca78966b068d80db608.md deleted file mode 100644 index 8f79611c7..000000000 --- a/content/discover/feed-86edc07630175ca78966b068d80db608.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Marijke Luttekes -date: "1970-01-01T00:00:00Z" -description: Public posts from @mahryekuh@fosstodon.org -params: - feedlink: https://fosstodon.org/@mahryekuh.rss - feedtype: rss - feedid: 86edc07630175ca78966b068d80db608 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-86f0dde4224aa9bb631ca62e37f09e03.md b/content/discover/feed-86f0dde4224aa9bb631ca62e37f09e03.md index 0806f5062..834460ec7 100644 --- a/content/discover/feed-86f0dde4224aa9bb631ca62e37f09e03.md +++ b/content/discover/feed-86f0dde4224aa9bb631ca62e37f09e03.md @@ -14,10 +14,13 @@ params: recommender: [] categories: [] relme: - https://fosstodon.org/@cwtch: false + https://danballard.com/: true https://hachyderm.io/@openprivacy: true - https://kolektiva.social/@dan_ballard: false - https://mastodon.social/@sarahjamielewis: false + https://kolektiva.social/@dan_ballard: true + https://mastodon.social/@sarahjamielewis: true + https://openprivacy.ca/: true + https://openprivacy.ca/donate/: true + https://sarahjamielewis.com/: true last_post_title: Call for Board Member Nominations last_post_description: We are open to nominations for new people to join the Open Privacy Research Society’s Board of Directors! In particular, we are looking for @@ -25,17 +28,22 @@ params: last_post_date: "2024-01-01T00:00:00Z" last_post_link: https://openprivacy.ca/blog/2024/01/01/call-for-board-member-nominations/ last_post_categories: [] + last_post_language: "" last_post_guid: 553c91e8a5e4c0174a31d8d68e2a4db5 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-8707b69e3f20478d69d8aba5b399efb4.md b/content/discover/feed-8707b69e3f20478d69d8aba5b399efb4.md new file mode 100644 index 000000000..fc17f3ece --- /dev/null +++ b/content/discover/feed-8707b69e3f20478d69d8aba5b399efb4.md @@ -0,0 +1,147 @@ +--- +title: Ddos At its Peak +date: "1970-01-01T00:00:00Z" +description: All about Ddosing and Attack at one website. Here you get most perfect + content about Ddosing illegal. +params: + feedlink: https://mulheresabias.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 8707b69e3f20478d69d8aba5b399efb4 + websites: + https://mulheresabias.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ddos + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Get into Ddosing + last_post_description: |- + Who ought to be stressed over a DOS Attack? + + + + In case you're running a monetary help, betting, severe + specialty, top-level salary, or an enormous client information base site, a + DDoS assault is + last_post_date: "2021-04-24T21:49:00Z" + last_post_link: https://mulheresabias.blogspot.com/2021/04/get-into-ddosing.html + last_post_categories: + - ddos + last_post_language: "" + last_post_guid: ee63c95959a0fd646bf335afcd6e5c5a + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-870b066bd43d9e1df61a16f5b52012b6.md b/content/discover/feed-870b066bd43d9e1df61a16f5b52012b6.md deleted file mode 100644 index 5a5225c72..000000000 --- a/content/discover/feed-870b066bd43d9e1df61a16f5b52012b6.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for B I J A N -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://bijansabet.com/comments/feed/ - feedtype: rss - feedid: 870b066bd43d9e1df61a16f5b52012b6 - websites: - https://bijansabet.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Madeira, Portugal by bijansabet - last_post_description: |- - In reply to Peter Vanicek. - - Couldn’t agree more! - last_post_date: "2024-04-21T06:28:05Z" - last_post_link: https://bijansabet.com/2024/04/20/madeira-portugal/comment-page-1/#comment-662 - last_post_categories: [] - last_post_guid: 009f2a7ed393195ac53fd39754a1ef53 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8710ed52991c6bbee5acf5b14911fcd1.md b/content/discover/feed-8710ed52991c6bbee5acf5b14911fcd1.md deleted file mode 100644 index d332b65ba..000000000 --- a/content/discover/feed-8710ed52991c6bbee5acf5b14911fcd1.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: HTTP 203 -date: "2022-06-29T16:58:48Z" -description: Surma and Jake talk about whatever's going on in the world of web development. -params: - feedlink: https://feeds.libsyn.com/259637/rss - feedtype: rss - feedid: 8710ed52991c6bbee5acf5b14911fcd1 - websites: - https://http203.libsyn.com/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Technology - relme: {} - last_post_title: Changing jobs, Deno, and optimizing animations - last_post_description: 'In this episode: - Surma changed jobs. - The Shopify interview - process. - Pair programming vs pair problem solving. - Surma''s also doing bits - of work for Deno. - The complexities of testing image' - last_post_date: "2022-06-29T16:58:48Z" - last_post_link: http://http203.libsyn.com/changing-jobs-deno-and-optimizing-animations - last_post_categories: [] - last_post_guid: dfd27d8e32a99ab288a4d56b8a8c1687 - score_criteria: - cats: 1 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 8 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-8722f7c8bf438a3d684d676195401aa1.md b/content/discover/feed-8722f7c8bf438a3d684d676195401aa1.md new file mode 100644 index 000000000..9118954ac --- /dev/null +++ b/content/discover/feed-8722f7c8bf438a3d684d676195401aa1.md @@ -0,0 +1,49 @@ +--- +title: metapython +date: "1970-01-01T00:00:00Z" +description: For small bits of advanced Python +params: + feedlink: https://metapython.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 8722f7c8bf438a3d684d676195401aa1 + websites: + https://metapython.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - lhc + - metapython + - python + - python 2 + relme: + https://metapython.blogspot.com/: true + last_post_title: Dyamic Constants. Of the automatic kind + last_post_description: |- + A quickie one -- sometimes we need named constants - + + just like "True" and "False" are in Python  - and we'd like they to behave + + like named constants - not just a  variable pointing to an int + last_post_date: "2013-01-28T22:30:00Z" + last_post_link: https://metapython.blogspot.com/2013/01/dyamic-constants-of-automatic-kind.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 8321282e0f5d6a56f15d0ee79da64bce + score_criteria: + cats: 4 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8724365985468d27123cb41b843df799.md b/content/discover/feed-8724365985468d27123cb41b843df799.md new file mode 100644 index 000000000..ee2d830be --- /dev/null +++ b/content/discover/feed-8724365985468d27123cb41b843df799.md @@ -0,0 +1,44 @@ +--- +title: Plundergrounds Podcast +date: "1970-01-01T00:00:00Z" +description: Notes and links for the Plundergrounds podcast, appearing at least once + weekly since September 2018. +params: + feedlink: https://plundergrounds.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 8724365985468d27123cb41b843df799 + websites: + https://plundergrounds.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Gygax 75 Challenge + relme: + https://plundergrounds.blogspot.com/: true + last_post_title: 164 Revisiting Logic in Fantasy + last_post_description: I talk about over and under "grounding" fiction in role-playing. + I also shill two amazing podcast episodes, Daydreaming About Dragons 69 and Spikepit + 333. + last_post_date: "2020-12-16T15:54:00Z" + last_post_link: https://plundergrounds.blogspot.com/2020/12/164-revisiting-logic-in-fantasy.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 857124cdf915c82a26ee18d3233b7964 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-872578751a4b04177cbbb17d09cb307a.md b/content/discover/feed-872578751a4b04177cbbb17d09cb307a.md new file mode 100644 index 000000000..a293de637 --- /dev/null +++ b/content/discover/feed-872578751a4b04177cbbb17d09cb307a.md @@ -0,0 +1,137 @@ +--- +title: Good refrigerator +date: "2024-03-08T08:27:11-08:00" +description: We have information about Refrigerator keep visiting to my blogspot. +params: + feedlink: https://ka432.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 872578751a4b04177cbbb17d09cb307a + websites: + https://ka432.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: All about Refrigerator + last_post_description: "" + last_post_date: "2022-01-12T00:19:43-08:00" + last_post_link: https://ka432.blogspot.com/2022/01/all-about-refrigerator.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 1dba1d7708ae9184ccc166377396cda5 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8727a81f04fc0b8d46e1897d51f3350c.md b/content/discover/feed-8727a81f04fc0b8d46e1897d51f3350c.md index 9fcb53cae..248e598e5 100644 --- a/content/discover/feed-8727a81f04fc0b8d46e1897d51f3350c.md +++ b/content/discover/feed-8727a81f04fc0b8d46e1897d51f3350c.md @@ -8,31 +8,35 @@ params: feedid: 8727a81f04fc0b8d46e1897d51f3350c websites: https://mxb.dev/: false - https://mxb.dev/notes: true + https://mxb.dev/notes/: false blogrolls: [] recommended: [] - recommender: [] + recommender: + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php categories: [] - relme: - https://front-end.social/@mxbck: false - https://github.com/maxboeck: false - https://mxb.dev/: false + relme: {} last_post_title: Styling RSS and Atom Feeds • Robb Knight last_post_description: "" last_post_date: "2024-01-18T12:25:34Z" last_post_link: https://mxb.dev/notes/2024-01-18-styling-rss-and-atom-feeds-robb-knight/ last_post_categories: [] + last_post_language: "" last_post_guid: a2e772550d14fe2b3b4e7174c81d5bce score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 - promoted: 0 + posts: 3 + promoted: 5 promotes: 0 - relme: 1 + relme: 0 title: 3 - website: 2 - score: 9 + website: 1 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-87430efa34e5b42ae02bbf57a6e7a51d.md b/content/discover/feed-87430efa34e5b42ae02bbf57a6e7a51d.md index 9960a8ece..82dfa3800 100644 --- a/content/discover/feed-87430efa34e5b42ae02bbf57a6e7a51d.md +++ b/content/discover/feed-87430efa34e5b42ae02bbf57a6e7a51d.md @@ -22,17 +22,22 @@ params: last_post_date: "2022-10-22T00:00:00Z" last_post_link: https://sbarnea.com/ansible/canonical-fqcn/ last_post_categories: [] + last_post_language: "" last_post_guid: 8d1ee0226a30bec4e16773dab2977a87 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-8747e9a7956740ee463208eb522a9b31.md b/content/discover/feed-8747e9a7956740ee463208eb522a9b31.md deleted file mode 100644 index f3c3e7e22..000000000 --- a/content/discover/feed-8747e9a7956740ee463208eb522a9b31.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: A Book Apart -date: "1970-01-01T00:00:00Z" -description: Public posts from @abookapart@front-end.social -params: - feedlink: https://front-end.social/@abookapart.rss - feedtype: rss - feedid: 8747e9a7956740ee463208eb522a9b31 - websites: - https://front-end.social/@abookapart: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://abookapart.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8752b669ee9d1600f2634307bb72746e.md b/content/discover/feed-8752b669ee9d1600f2634307bb72746e.md new file mode 100644 index 000000000..423f5124d --- /dev/null +++ b/content/discover/feed-8752b669ee9d1600f2634307bb72746e.md @@ -0,0 +1,45 @@ +--- +title: Eclipse Ecosystem +date: "1970-01-01T00:00:00Z" +description: A blog devoted to promoting the Eclipse ecosystem +params: + feedlink: https://eclipse-ecosystem.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 8752b669ee9d1600f2634307bb72746e + websites: + https://eclipse-ecosystem.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - eclipse trianing working group survey + - eclipsecon + relme: + https://eclipse-ecosystem.blogspot.com/: true + https://www.blogger.com/profile/11341499982780049728: true + last_post_title: Back to Oracle! + last_post_description: 'Summary: I’ve loved my last five years at the Eclipse Foundation. It’s + time for me to move on. I’m going to Oracle to work on OpenJDK and other things. The + longer version: It was over five' + last_post_date: "2011-04-28T18:57:00Z" + last_post_link: https://eclipse-ecosystem.blogspot.com/2011/04/back-to-oracle.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 4de4ca893326fdfbd4c28219ae08e0c3 + score_criteria: + cats: 2 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-875ee91182c3fbb691737f51b005700f.md b/content/discover/feed-875ee91182c3fbb691737f51b005700f.md index 8045a491f..9e7991ec4 100644 --- a/content/discover/feed-875ee91182c3fbb691737f51b005700f.md +++ b/content/discover/feed-875ee91182c3fbb691737f51b005700f.md @@ -13,26 +13,31 @@ params: recommender: [] categories: [] relme: + https://buttondown.email/pepysdiary: true https://mastodon.social/@samuelpepys: true - last_post_title: Thursday 6 June 1661 - last_post_description: |- - My head hath aked all night, and all this morning, with my last night's debauch. - - Called up this morning by Lieutenant Lambert, who is now made Captain of the Norwich, and he and I went down by water - last_post_date: "2024-06-06T23:00:00Z" - last_post_link: https://www.pepysdiary.com/diary/1661/06/06/ + https://www.pepysdiary.com/: true + last_post_title: Monday 8 July 1661 + last_post_description: '[Pepys wrote no diary entries from this date until 13th + July. P.G.]' + last_post_date: "2024-07-08T23:00:00Z" + last_post_link: https://www.pepysdiary.com/diary/1661/07/08/ last_post_categories: [] - last_post_guid: f6e7efc7c192d5b1da1826ff1e8db8d3 + last_post_language: "" + last_post_guid: d07bda61cb9b99930ec49c586e8a43ec score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-87696d77b8f58c0b9930ac657fa44a72.md b/content/discover/feed-87696d77b8f58c0b9930ac657fa44a72.md index 5561e6237..5406a7561 100644 --- a/content/discover/feed-87696d77b8f58c0b9930ac657fa44a72.md +++ b/content/discover/feed-87696d77b8f58c0b9930ac657fa44a72.md @@ -15,24 +15,29 @@ params: - Tuesday Tune Two-fer relme: https://idlethumbs.social/@SasquatcherGeneral: true - last_post_title: 'Tuesday Tune Two-Fer: Mach 5-String' - last_post_description: Two tunes with people playing banjo much, much better than - I ever will - last_post_date: "2024-06-04T17:00:00Z" - last_post_link: https://www.spectrecollie.com/2024/06/04/tuesday-tune-two-fer-mach-5-string/ + https://www.spectrecollie.com/: true + last_post_title: 'Tuesday Tune Two-Fer: Breeders Banquet' + last_post_description: Pride month is over, so let's turn it back over to the Breeders + last_post_date: "2024-07-02T17:00:00Z" + last_post_link: https://www.spectrecollie.com/2024/07/02/tuesday-tune-two-fer-breeders-banquet/ last_post_categories: - Tuesday Tune Two-fer - last_post_guid: f69454d03db952b4cc38947484c3f668 + last_post_language: "" + last_post_guid: 9a30c1a07b044cf06f1370d208784e73 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 11 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-87743eea847287d5ce52b0d419d6acb7.md b/content/discover/feed-87743eea847287d5ce52b0d419d6acb7.md new file mode 100644 index 000000000..d5a8dfd3f --- /dev/null +++ b/content/discover/feed-87743eea847287d5ce52b0d419d6acb7.md @@ -0,0 +1,44 @@ +--- +title: Adventures in a Pure World +date: "2024-02-20T08:08:55-08:00" +description: "" +params: + feedlink: https://abuiles.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 87743eea847287d5ce52b0d419d6acb7 + websites: + https://abuiles.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Darcs + - GSoC + - Haskell + relme: + https://abuiles.blogspot.com/: true + https://www.blogger.com/profile/17210582918012436677: true + last_post_title: GSoC Week 12 + last_post_description: "" + last_post_date: "2010-08-11T20:46:21-07:00" + last_post_link: https://abuiles.blogspot.com/2010/08/gsoc-week-12.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 78a308072ac707b582a5fe772d94cfe4 + score_criteria: + cats: 3 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8779af7d55cdb790fd2642602d114590.md b/content/discover/feed-8779af7d55cdb790fd2642602d114590.md new file mode 100644 index 000000000..de0e1ab5f --- /dev/null +++ b/content/discover/feed-8779af7d55cdb790fd2642602d114590.md @@ -0,0 +1,139 @@ +--- +title: Chegg Vs School +date: "2024-03-19T06:10:46-07:00" +description: School and chegg are boht are good places. +params: + feedlink: https://seocobweb.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 8779af7d55cdb790fd2642602d114590 + websites: + https://seocobweb.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - School is Good + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: School and Chegg + last_post_description: "" + last_post_date: "2021-05-06T11:22:55-07:00" + last_post_link: https://seocobweb.blogspot.com/2021/05/school-and-chegg.html + last_post_categories: + - School is Good + last_post_language: "" + last_post_guid: 03846138f5fe0de9d21e0b6a5dca829a + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-878343977072e5cdb9cad06803b5755a.md b/content/discover/feed-878343977072e5cdb9cad06803b5755a.md new file mode 100644 index 000000000..b53833b26 --- /dev/null +++ b/content/discover/feed-878343977072e5cdb9cad06803b5755a.md @@ -0,0 +1,52 @@ +--- +title: On Persistence +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://onpersistence.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 878343977072e5cdb9cad06803b5755a + websites: + https://onpersistence.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - datasources jpa eclipselink + - eclipselink jpa sql query + - eclipselink moxy jaxb spring webservices + - eclipselink spring + - jpa xmltype eclipselink oracle xml + - toplinkgrid + relme: + https://onpersistence.blogspot.com/: true + https://ontoplink.blogspot.com/: true + https://shaunmsmith.blogspot.com/: true + https://www.blogger.com/profile/03444889032778621661: true + last_post_title: Mapping XMLTYPE + last_post_description: A recent posting on the TopLink Forum made it clear that + previous descriptions of how to map a JPA entity attribute of type org.w3c.dom.Document + to an Oracle database XMLTYPE column didn't provide + last_post_date: "2011-08-30T19:03:00Z" + last_post_link: https://onpersistence.blogspot.com/2011/08/mapping-xmltype.html + last_post_categories: + - jpa xmltype eclipselink oracle xml + last_post_language: "" + last_post_guid: 553188494415630ce1600110866af33f + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-87988963106b807089810a3e5ff3af13.md b/content/discover/feed-87988963106b807089810a3e5ff3af13.md new file mode 100644 index 000000000..6f6817e0d --- /dev/null +++ b/content/discover/feed-87988963106b807089810a3e5ff3af13.md @@ -0,0 +1,177 @@ +--- +title: Stonekettle Station +date: "1970-01-01T00:00:00Z" +description: Don't just embrace the crazy, sidle up next to it and lick its ear. +params: + feedlink: https://www.stonekettle.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 87988963106b807089810a3e5ff3af13 + websites: + https://www.stonekettle.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Alaska State Fair. Anemone. More Stupid + - Deep Thunder and Firey Angels + - Fraud Stonekette Merchandise + - Goals + - Plans + - Retired Life + - Stonekettle Station + - Things + - Things Hunter S. Thompson would do if he was still alive + - Things I blog about when I don't have anything to blog about + - Things I do + - Things I do at night + - Things I do for fun + - Things I do in the shop + - Things I do instead of writing + - Things I do so you don't have to + - Things I do to get motivated + - Things I do to save money + - Things I don't care about + - Things I don't forget + - Things I find Interesting + - Things I find just plain weird + - Things I find pathetic + - Things I like + - Things I like to eat + - Things I remember + - Things I used to do for a living + - Things I would rather not be doing + - Things I'm reading right now + - Things I'm thinking about + - Things Just Things + - Things about Sarah Palin + - Things about Stonekettle Station + - Things about Terrorism + - Things about cats + - Things about kids + - Things about music + - Things about the military + - Things happen + - Things in Alaska + - Things that I do for fun + - Things that I don't understand + - Things that I don't want to do - but have to anyway + - Things that I find Ironic + - Things that I love about Alaska + - Things that I should be doing + - Things that I want + - Things that amaze me + - Things that amuse and nauseate me + - Things that amuse me + - Things that both amuse and irritate me + - Things that chap my ass + - Things that concern me + - Things that confound me + - Things that confuse me + - Things that creep me out + - Things that depress me + - Things that entertain me + - Things that frustrate me + - Things that get hijacked + - Things that have to do with Alaska + - Things that hurt me + - Things that irritate me + - Things that just keep pissing me off + - Things that leave a funny taste in your mouth. + - Things that leave me cold + - Things that make living in Alaska fun + - Things that make me a little sceptical + - Things that make me apprehensive + - Things that make me go hmmm + - Things that make me insane + - Things that make me just want to get stinking drunk + - Things that make me mad with power + - Things that make me sleepy + - Things that make me want to poke my eyes out + - Things that make me want to punch people in the mouth + - Things that make my blood BOIL + - Things that make my head hurt + - Things that need to be said + - Things that offend me + - Things that perplex me + - Things that piss me off + - Things that revolt me + - Things that tickle me + - Things to do in Denver when you're dead + - Things to think about + - Trump + - UEU + - and Just Fading Away + - cell phones + - immigration + - politics + - thing abouts politics + - things I do by request + - things I do for you + - things I do so you'll know me better + - things I do to get a cool sticker + - things I do to make you dance so dance monkeys dance + - things I do to stick it to the man + - things I do with cool people I meet online + - things I get in the mail + - things I have to do but don't want to + - things I look forward to + - things I think are just plain cool + - things I use my blog for that I probably shouldn't but it's my blog so I will + if I want to + - things I'm listening to + - things about Michigan + - things about bailouts + - things about bowls + - things about pirates + - things about politics + - things about religion + - things about scifi + - things about the law + - things about top ten lists + - things about vacation + - things in the kitchen + - things that I'm not looking forward to + - things that amus me + - things that are all shiny + - things that concern writing + - things that fill me with disgust + - things that have to do with blogging + - things that have to do with camels + - things that have to with politics + - things that keep me busy + - things that make me crazy + - things that make me happy + - things that make me jealous + - things that make me laugh hysterically + - things that piss me off. NOT gay porn - go somewhere else. + - things that sadden me + - things that vex me mightily + - things various and sundry + relme: + https://www.stonekettle.com/: true + last_post_title: Raggedy Man + last_post_description: Out of the ruinsOut from the wreckageCan't make the same + mistake this timeWe are the childrenThe last generation (the last generation, + generation)We are the ones they left behindAnd, I wonder when we + last_post_date: "2024-07-05T16:56:00Z" + last_post_link: https://www.stonekettle.com/2024/07/raggedy-man.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 34aa311e3969831454659920645a15fa + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-879ea80bba3634e45d2682ba7972d8df.md b/content/discover/feed-879ea80bba3634e45d2682ba7972d8df.md new file mode 100644 index 000000000..edfed64e2 --- /dev/null +++ b/content/discover/feed-879ea80bba3634e45d2682ba7972d8df.md @@ -0,0 +1,48 @@ +--- +title: Farnam Street +date: "1970-01-01T00:00:00Z" +description: Mastering the best of what other people have already figured out +params: + feedlink: https://feeds.feedburner.com/68131 + feedtype: rss + feedid: 879ea80bba3634e45d2682ba7972d8df + websites: {} + blogrolls: [] + recommended: [] + recommender: + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php + categories: + - Books + - Learning + - Self-Improvement + relme: {} + last_post_title: Experts vs. Imitators + last_post_description: 'If you want the highest quality information, you have to + speak to the best people. The problem is many people claim to be experts, who + really aren’t. Safeguard: Take time to distinguish real' + last_post_date: "2024-06-13T12:45:24Z" + last_post_link: https://fs.blog/experts-vs-imitators/ + last_post_categories: + - Books + - Learning + - Self-Improvement + last_post_language: "" + last_post_guid: b46fa3dfbb936a02ded2943fd1a01a64 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 0 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-87b4f45a909542e2ce08ace064d65b5c.md b/content/discover/feed-87b4f45a909542e2ce08ace064d65b5c.md new file mode 100644 index 000000000..df6a779b4 --- /dev/null +++ b/content/discover/feed-87b4f45a909542e2ce08ace064d65b5c.md @@ -0,0 +1,55 @@ +--- +title: Corporate Strategy, Open Source Facts, Knowledge, Wisdom, Thoughts +date: "2024-03-19T13:26:52+01:00" +description: The views expressed here are my own, and do not necessarily - unless + specifically mentioned - reflect those of my employers, past, current, or future. +params: + feedlink: https://thinkingopensource.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 87b4f45a909542e2ce08ace064d65b5c + websites: + https://thinkingopensource.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - adobe + - blockchain + - google + - obscurity + - open + - opensource + - security + - source + - strategy + - wipro + relme: + https://ds-in-chablais.blogspot.com/: true + https://ggravier.blogspot.com/: true + https://gillesgravierphotography.blogspot.com/: true + https://thinkingopensource.blogspot.com/: true + https://www.blogger.com/profile/18374683443794882592: true + last_post_title: Medium... + last_post_description: "" + last_post_date: "2017-04-06T09:42:13+02:00" + last_post_link: https://thinkingopensource.blogspot.com/2017/04/medium.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 5a91e6febdcdbea35fe80a61531c9291 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-87b568bc4f58834bf36294850a9807b6.md b/content/discover/feed-87b568bc4f58834bf36294850a9807b6.md new file mode 100644 index 000000000..7f78e3cae --- /dev/null +++ b/content/discover/feed-87b568bc4f58834bf36294850a9807b6.md @@ -0,0 +1,45 @@ +--- +title: meta-bubble +date: "1970-01-01T00:00:00Z" +description: 'Welcome to the meta-bubble. A ressource for software and computer language + modeling and meta-modeling. Topics include: eclipse emf, OMG MOF, textual modeling + and agile language engineering.' +params: + feedlink: https://metabubble.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 87b568bc4f58834bf36294850a9807b6 + websites: + https://metabubble.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://metabubble.blogspot.com/: true + https://www.blogger.com/profile/03573970335198213806: true + last_post_title: Textual Editing Framework Tutorial + last_post_description: 'Its done: the first major release for our Textual Editing + Framework is out. After watching all the TEF screencasts, you can finally try + it yourself. We provide a small tutorial, based on plug-in' + last_post_date: "2008-03-20T19:10:00Z" + last_post_link: https://metabubble.blogspot.com/2008/03/textual-editing-framework-tutorial.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 332667433edef4589cbf79d8ecdccb0a + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-87c00413c5c8ae807a75fe67b015f244.md b/content/discover/feed-87c00413c5c8ae807a75fe67b015f244.md new file mode 100644 index 000000000..8a9f9d218 --- /dev/null +++ b/content/discover/feed-87c00413c5c8ae807a75fe67b015f244.md @@ -0,0 +1,44 @@ +--- +title: GeekSocket +date: "1970-01-01T00:00:00Z" +description: Recent content on GeekSocket +params: + feedlink: https://geeksocket.in/index.xml + feedtype: rss + feedid: 87c00413c5c8ae807a75fe67b015f244 + websites: + https://geeksocket.in/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://geeksocket.in/: true + https://github.com/bhavin192: true + https://toots.dgplug.org/@bhavin192: true + last_post_title: Mastering Async Communication in a Remote World + last_post_description: This is one of my favorite posts/documents I have written. + I wrote it during the pandemic (2020–21), when InfraCloud, the organization I + work with, decided to go fully remote. It was published at + last_post_date: "2023-04-11T00:00:00+05:30" + last_post_link: https://geeksocket.in/posts/async-communication-remote-work/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 1d7048a338cba95f6b83bf0bf3c9e6b2 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-87edf0efbe136b36346113dd6ffea8fa.md b/content/discover/feed-87edf0efbe136b36346113dd6ffea8fa.md new file mode 100644 index 000000000..e3092acc3 --- /dev/null +++ b/content/discover/feed-87edf0efbe136b36346113dd6ffea8fa.md @@ -0,0 +1,42 @@ +--- +title: Random Notes +date: "1970-01-01T00:00:00Z" +description: Scott Nesbitt's public notebook +params: + feedlink: https://scottnesbitt.online/feed.xml + feedtype: rss + feedid: 87edf0efbe136b36346113dd6ffea8fa + websites: + https://scottnesbitt.online/: true + blogrolls: [] + recommended: [] + recommender: + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php + categories: [] + relme: {} + last_post_title: Learning to Say "I Don't Know" + last_post_description: A short musing on three words that more than a few people + are unwilling or unable to say + last_post_date: "2024-07-05T06:31:58Z" + last_post_link: https://scottnesbitt.online/i-dont-know.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 63ecd59fce632a842d2cfc6d67551750 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-87fe15e525e25de88426a73cd140781a.md b/content/discover/feed-87fe15e525e25de88426a73cd140781a.md deleted file mode 100644 index bd5c05e21..000000000 --- a/content/discover/feed-87fe15e525e25de88426a73cd140781a.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Recent MetaCPAN News -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://metacpan.org/news.rss - feedtype: rss - feedid: 87fe15e525e25de88426a73cd140781a - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: '## Title: Source code permalinks are here' - last_post_description: |- -

Versioned permalinks from source code pages are - now available

-

Title: Rendering .md - last_post_date: "2020-03-29T00:00:00Z" - last_post_link: https://metacpan.org/news#title:sourcecodepermalinksarehere - last_post_categories: [] - last_post_guid: 8a9054c6c38ad42fc24131ea25f73b88 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 3 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-87ff23b27f5f566a9e6263bdc19f8058.md b/content/discover/feed-87ff23b27f5f566a9e6263bdc19f8058.md new file mode 100644 index 000000000..348c01d2e --- /dev/null +++ b/content/discover/feed-87ff23b27f5f566a9e6263bdc19f8058.md @@ -0,0 +1,49 @@ +--- +title: gfdjax +date: "2024-03-10T11:07:02-05:00" +description: |- + In 1990, four nerdy little boys met in a Jacksonville 6th grade center. Where are they now? + A collective video blog. +params: + feedlink: https://gfdjax.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 87ff23b27f5f566a9e6263bdc19f8058 + websites: + https://gfdjax.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - risk + - writing + relme: + https://gfdjax.blogspot.com/: true + https://koweycode.blogspot.com/: true + https://messageto.blogspot.com/: true + https://www.blogger.com/profile/11175806459477851520: true + last_post_title: three boys and a little game of Risk + last_post_description: "" + last_post_date: "2007-05-27T03:33:48-05:00" + last_post_link: https://gfdjax.blogspot.com/2007/05/three-boys-and-little-game-of-risk.html + last_post_categories: + - risk + - writing + last_post_language: "" + last_post_guid: eef3cef214c8f3b80a3b00e304c636bb + score_criteria: + cats: 2 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-88059ddbbf76d6a1d7e15209fc3888bc.md b/content/discover/feed-88059ddbbf76d6a1d7e15209fc3888bc.md deleted file mode 100644 index fad0992df..000000000 --- a/content/discover/feed-88059ddbbf76d6a1d7e15209fc3888bc.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: notizblog – notizBlog -date: "1970-01-01T00:00:00Z" -description: a weblog mainly about the open, portable, interoperable, small, social, - synaptic, semantic, structured, distributed, (re-)decentralized, independent, microformatted - and federated social web -params: - feedlink: https://notiz.blog/tag/notizblog/feed/ - feedtype: rss - feedid: 88059ddbbf76d6a1d7e15209fc3888bc - websites: - https://notiz.blog/about/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Journal - - Geburtstag - - notiz.blog - - notizblog - relme: {} - last_post_title: Ab 18 - last_post_description: "Das notiz.blog ist volljährig \U0001F389" - last_post_date: "2023-12-07T11:59:42Z" - last_post_link: https://notiz.blog/2023/12/07/ab-18/ - last_post_categories: - - Journal - - Geburtstag - - notiz.blog - - notizblog - last_post_guid: 15ee05e9a06e91151a5343437ff22634 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-880b5a62cc6e361b4b4194c3a9eb07a4.md b/content/discover/feed-880b5a62cc6e361b4b4194c3a9eb07a4.md index 904d5035f..b1ed868fe 100644 --- a/content/discover/feed-880b5a62cc6e361b4b4194c3a9eb07a4.md +++ b/content/discover/feed-880b5a62cc6e361b4b4194c3a9eb07a4.md @@ -8,35 +8,41 @@ params: feedtype: rss feedid: 880b5a62cc6e361b4b4194c3a9eb07a4 websites: - https://smashingmagazine.com/: false + https://www.smashingmagazine.com/: true blogrolls: [] recommended: [] recommender: [] categories: - - Development - Design - - UX - - Mobile + - Development - Front-end - relme: {} - last_post_title: 'Scaling Success: Key Insights And Practical Takeaways' - last_post_description: The web is still a young platform, and we’re only now beginning - to recognize what “success” looks like for large projects. In his recent Smashing - book, [Success at Scale](https://www - last_post_date: "2024-06-04T12:00:00Z" - last_post_link: https://smashingmagazine.com/2024/06/scaling-success-key-insights-pratical-takeaways/ + - Mobile + - UX + relme: + https://www.smashingmagazine.com/: true + last_post_title: Useful Customer Journey Maps (+ Figma & Miro Templates) + last_post_description: Visualize the user experience with user journey maps. Here + are some helpful templates, real-world applications, and insights on the importance + of mapping both successful and unsuccessful touchpoints. + last_post_date: "2024-07-08T10:00:00Z" + last_post_link: https://smashingmagazine.com/2024/07/customer-journey-maps-figma-miro-templates/ last_post_categories: [] - last_post_guid: aee697a41e7f6404c7326185f35b3a5d + last_post_language: "" + last_post_guid: 25370b9ac8db22c2668714374013475d score_criteria: cats: 5 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 - website: 1 - score: 12 + website: 2 + score: 19 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-880c8f55ca92b641629a9fa139a05390.md b/content/discover/feed-880c8f55ca92b641629a9fa139a05390.md index 781494c24..d3575c27c 100644 --- a/content/discover/feed-880c8f55ca92b641629a9fa139a05390.md +++ b/content/discover/feed-880c8f55ca92b641629a9fa139a05390.md @@ -15,9 +15,7 @@ params: categories: - Society & Culture relme: - https://instagram.com/ayjay: false - https://micro.blog/ayjay: false - https://twitter.com/ayjay: false + https://social.ayjay.org/: true last_post_title: A Walk in the Rain last_post_description: |- A special lo-fi casual episode, never to be repeated. @@ -25,17 +23,22 @@ params: last_post_date: "2023-05-14T08:27:00-05:00" last_post_link: https://social.ayjay.org/2023/05/14/a-walk-in.html last_post_categories: [] + last_post_language: "" last_post_guid: 8f92210d53eb8492783c3d45496187f6 score_criteria: cats: 1 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 10 + score: 15 ispodcast: true isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-881372fb3bd06d9f56946370a250c6d0.md b/content/discover/feed-881372fb3bd06d9f56946370a250c6d0.md new file mode 100644 index 000000000..81ef25873 --- /dev/null +++ b/content/discover/feed-881372fb3bd06d9f56946370a250c6d0.md @@ -0,0 +1,63 @@ +--- +title: Smart Themes for Blogger +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://thomasleighthemes.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 881372fb3bd06d9f56946370a250c6d0 + websites: + https://thomasleighthemes.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Context Tips + - Facebook Bubble + - Golden Thoughts + - Moving in Time + - News + - Smart Tools + - Tag Slider + - Turning the Pages + - Welcome Message + - Welcome Page + relme: + https://aboutthomasleigh.blogspot.com/: true + https://handynewsreader.blogspot.com/: true + https://jaktamjaponski.blogspot.com/: true + https://moliumpodcast.blogspot.com/: true + https://smartthemesfor.blogspot.com/: true + https://thomascafepodcast.blogspot.com/: true + https://thomasleighthemes.blogspot.com/: true + https://thomasleighuniverse.blogspot.com/: true + https://www.blogger.com/profile/01268074830941697525: true + https://zrodlokreacji.blogspot.com/: true + last_post_title: Tag Slider + last_post_description: 'Laura presents tags (labels) in a form of a horizontally + scrolled slider. You may choose which variant You prefer: picture per tag/label + *, each tag/label has the same picture **, tags/label without' + last_post_date: "2016-09-12T12:35:00Z" + last_post_link: https://thomasleighthemes.blogspot.com/2016/09/tag-slider.html + last_post_categories: + - Smart Tools + - Tag Slider + last_post_language: "" + last_post_guid: 160ddd969f952bb388e21fc1b2fadf72 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-88141111c24f1d6d159e42ac078d6fe1.md b/content/discover/feed-88141111c24f1d6d159e42ac078d6fe1.md deleted file mode 100644 index 4ed731d5b..000000000 --- a/content/discover/feed-88141111c24f1d6d159e42ac078d6fe1.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Robert Alexander -date: "1970-01-01T00:00:00Z" -description: Public posts from @robalex@indieweb.social -params: - feedlink: https://indieweb.social/@robalex.rss - feedtype: rss - feedid: 88141111c24f1d6d159e42ac078d6fe1 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-883d883238e62d825b251096ff171236.md b/content/discover/feed-883d883238e62d825b251096ff171236.md deleted file mode 100644 index 93cc34df4..000000000 --- a/content/discover/feed-883d883238e62d825b251096ff171236.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Tech – Thoughts From Eric -date: "1970-01-01T00:00:00Z" -description: Things that Eric A. Meyer, CSS expert, writes about on his personal Web - site; it's largely Web standards and Web technology, but also various bits of culture, - politics, personal observations, and -params: - feedlink: https://www.meyerweb.com/eric/thoughts/category/tech/rss2/full - feedtype: rss - feedid: 883d883238e62d825b251096ff171236 - websites: - https://www.meyerweb.com/feeds/excuse/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Hacks - - JavaScript - - Tools - - Web - relme: {} - last_post_title: 'Bookmarklet: Load All GitHub Comments' - last_post_description: A quick way to load all the comments on a GitHub issue. - last_post_date: "2024-02-05T14:49:46Z" - last_post_link: https://meyerweb.com/eric/thoughts/2024/02/05/bookmarklet-load-all-github-comments/ - last_post_categories: - - Hacks - - JavaScript - - Tools - - Web - last_post_guid: 94bb45f70a02597072d7470bde2cdf64 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-88618252920622564e36b643741706cf.md b/content/discover/feed-88618252920622564e36b643741706cf.md deleted file mode 100644 index 3228324ed..000000000 --- a/content/discover/feed-88618252920622564e36b643741706cf.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: RaiderIO News -date: "1970-01-01T00:00:00Z" -description: World of Warcraft Raiding and Mythic+ News from Raider.IO -params: - feedlink: https://raider.io/rss.xml - feedtype: rss - feedid: 88618252920622564e36b643741706cf - websites: - https://raider.io/characters/us/khazgoroth/Lunchcuttah: false - https://raider.io/news: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - World of Warcraft - - Video Games - - MMORPG - - Warcraft - - WoW - - Esports - relme: {} - last_post_title: 'The Weekly Route: Tyrannical, Afflicted, Bolstering' - last_post_description: 'The Weekly Route Series showcases Mythic+ strategies that - are tailored towards Beginner and Intermediate levels of Mythic+ with the following - criteria in mind: Easy to execute - particularly in pick' - last_post_date: "2024-06-04T15:00:00Z" - last_post_link: https://raider.io/weekly-routes - last_post_categories: [] - last_post_guid: 0c2eeeed55e6ee267838813d2019af65 - score_criteria: - cats: 5 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-88626fc07c49c36da5a0af478181822a.md b/content/discover/feed-88626fc07c49c36da5a0af478181822a.md new file mode 100644 index 000000000..590df8c56 --- /dev/null +++ b/content/discover/feed-88626fc07c49c36da5a0af478181822a.md @@ -0,0 +1,58 @@ +--- +title: Corporate Strategy, Open Source Facts, Knowledge, Wisdom, Thoughts +date: "1970-01-01T00:00:00Z" +description: The views expressed here are my own, and do not necessarily - unless + specifically mentioned - reflect those of my employers, past, current, or future. +params: + feedlink: https://thinkingopensource.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 88626fc07c49c36da5a0af478181822a + websites: + https://thinkingopensource.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - adobe + - blockchain + - google + - obscurity + - open + - opensource + - security + - source + - strategy + - wipro + relme: + https://ds-in-chablais.blogspot.com/: true + https://ggravier.blogspot.com/: true + https://gillesgravierphotography.blogspot.com/: true + https://thinkingopensource.blogspot.com/: true + https://www.blogger.com/profile/18374683443794882592: true + last_post_title: Medium... + last_post_description: |- + Dear readers, I will be exploring Medium for my future blogging. You can find my Medium blog here. + + I might, for some time, post copies of my Medium articles here... But the main source will be + last_post_date: "2017-04-06T07:42:00Z" + last_post_link: https://thinkingopensource.blogspot.com/2017/04/medium.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 5eb5e1c9a5602286326bb1b3aa20cbce + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8864d4ee2b040f3a67ef089e43cafbb7.md b/content/discover/feed-8864d4ee2b040f3a67ef089e43cafbb7.md new file mode 100644 index 000000000..476bf1e9e --- /dev/null +++ b/content/discover/feed-8864d4ee2b040f3a67ef089e43cafbb7.md @@ -0,0 +1,45 @@ +--- +title: Comments for Ourobengr +date: "1970-01-01T00:00:00Z" +description: An engineer eating his own tail +params: + feedlink: https://ourobengr.com/comments/feed/ + feedtype: rss + feedid: 8864d4ee2b040f3a67ef089e43cafbb7 + websites: + https://ourobengr.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://github.com/tserong: true + https://mastodon.social/@tserong: true + https://ourobengr.com/: true + last_post_title: Comment on Still Going With The Flow by tserong + last_post_description: |- + In reply to Stuart Lamble. + + Oh, brilliant! Thanks Stuart :-) + last_post_date: "2024-02-11T06:13:42Z" + last_post_link: https://ourobengr.com/2023/11/still-going-with-the-flow/#comment-17293 + last_post_categories: [] + last_post_language: "" + last_post_guid: 1cc068385fd1039340f605180c7a2b46 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8874cc2af958dfa066c66d8e9c3fcdc3.md b/content/discover/feed-8874cc2af958dfa066c66d8e9c3fcdc3.md deleted file mode 100644 index 0642fc2fe..000000000 --- a/content/discover/feed-8874cc2af958dfa066c66d8e9c3fcdc3.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Johnny ‘Decimal’ Noble -date: "1970-01-01T00:00:00Z" -description: Public posts from @johnnydecimal@hachyderm.io -params: - feedlink: https://hachyderm.io/@johnnydecimal.rss - feedtype: rss - feedid: 8874cc2af958dfa066c66d8e9c3fcdc3 - websites: - https://hachyderm.io/@johnnydecimal: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://johnnydecimal.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8875a475c7dfc48c0362db5fb2682026.md b/content/discover/feed-8875a475c7dfc48c0362db5fb2682026.md index 04cd7f41b..fa8cbf2a1 100644 --- a/content/discover/feed-8875a475c7dfc48c0362db5fb2682026.md +++ b/content/discover/feed-8875a475c7dfc48c0362db5fb2682026.md @@ -1,6 +1,6 @@ --- title: Emily M. Stark -date: "2024-02-10T06:46:16Z" +date: "2024-06-07T16:44:01Z" description: Personal website of Emily Stark params: feedlink: https://emilymstark.com/feed.xml @@ -14,24 +14,29 @@ params: - https://alexsci.com/blog/rss.xml categories: [] relme: {} - last_post_title: 'E2EE on the web: is the web really that bad?' - last_post_description: In my last blog post, I discussed why people often view the - web as a uniquely unsuited platform for implementing end-to-end encryption (E2EE). - This view is that the web doesn’t offer a long-term - last_post_date: "2024-02-09T00:00:00Z" - last_post_link: https://emilymstark.com/2024/02/09/e2ee-on-the-web-is-the-web-really-that-bad.html + last_post_title: Why even a little plaintext matters + last_post_description: This blog post is an expanded version of a Twitter thread + I posted several years ago about why every website should use HTTPS. Twitter seems + less… readily citable these days, so I thought it would + last_post_date: "2024-06-07T00:00:00Z" + last_post_link: https://emilymstark.com/2024/06/07/why-even-a-little-plaintext-matters.html last_post_categories: [] - last_post_guid: e5b5a4208802fac6042a378dab9bac7c + last_post_language: "" + last_post_guid: de9d3752dc170b2a61d0ded96e08a850 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-888727427ec3d478076254a7dc64b66c.md b/content/discover/feed-888727427ec3d478076254a7dc64b66c.md deleted file mode 100644 index f0de56bd9..000000000 --- a/content/discover/feed-888727427ec3d478076254a7dc64b66c.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for coaxion.net – slomo's blog -date: "1970-01-01T00:00:00Z" -description: random thoughts and other things -params: - feedlink: https://coaxion.net/blog/comments/feed/ - feedtype: rss - feedid: 888727427ec3d478076254a7dc64b66c - websites: - https://coaxion.net/blog/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Instantaneous RTP synchronization & retrieval of absolute - sender clock times with GStreamer by Guru - last_post_description: |- - Hi Sebastian, - Excellent post. I have a similar condition where I have a pipeline with tee branches where one of the branch I do object detection with AI and try to assign the PTS value of the GST - last_post_date: "2023-08-30T16:58:29Z" - last_post_link: https://coaxion.net/blog/2022/05/instantaneous-rtp-synchronization-retrieval-of-absolute-sender-clock-times-with-gstreamer/comment-page-1/#comment-512022 - last_post_categories: [] - last_post_guid: f046af7641de269e6e1e75982f242736 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-889acababeaa7936ada8ff1715358538.md b/content/discover/feed-889acababeaa7936ada8ff1715358538.md deleted file mode 100644 index 52ecabbcd..000000000 --- a/content/discover/feed-889acababeaa7936ada8ff1715358538.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Samuel Pepys -date: "1970-01-01T00:00:00Z" -description: Public posts from @samuelpepys@mastodon.social -params: - feedlink: https://mastodon.social/@samuelpepys.rss - feedtype: rss - feedid: 889acababeaa7936ada8ff1715358538 - websites: - https://mastodon.social/@samuelpepys: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://buttondown.email/pepysdiary: false - https://ko-fi.com/pepysdiary: false - https://www.pepysdiary.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-88abfe601c7dea0405166a4c8c9dbfa3.md b/content/discover/feed-88abfe601c7dea0405166a4c8c9dbfa3.md index 226145d4c..8e100b29e 100644 --- a/content/discover/feed-88abfe601c7dea0405166a4c8c9dbfa3.md +++ b/content/discover/feed-88abfe601c7dea0405166a4c8c9dbfa3.md @@ -7,7 +7,6 @@ params: feedtype: rss feedid: 88abfe601c7dea0405166a4c8c9dbfa3 websites: - https://manton.org/: false https://www.manton.org/: true blogrolls: - https://www.manton.org/.well-known/recommendations.opml @@ -30,6 +29,7 @@ params: - https://social.ayjay.org/feed.xml - https://vincentritter.com/feeds/all.rss - https://world.hey.com/jason/feed.atom + - https://www.mollywhite.net/feed/feed.xml - https://www.zylstra.org/blog/feed/ - https://austinkleon.com/comments/feed/ - https://bitsplitting.org/comments/feed/ @@ -42,33 +42,39 @@ params: - https://om.co/comments/feed/ - https://rebeccatoh.co/comments/feed/ - https://social.ayjay.org/podcast.xml + - https://www.mollywhite.net/micro/feed.xml + - https://www.mollywhite.net/reading/blockchain/feed.xml + - https://www.mollywhite.net/reading/shortform/feed.xml - https://www.zylstra.org/blog/comments/feed/ recommender: [] categories: - Society & Culture relme: - https://github.com/manton: false - https://micro.blog/manton: false - https://twitter.com/mantonsblog: false - last_post_title: Podcast hosting for $5 + https://www.manton.org/: true + last_post_title: Dark forest of the web last_post_description: |- - Six years ago, we launched our $10/month plan with podcast hosting. Since then we’ve added several big features to the plan, which is now called Micro.blog Premium: + Jeremy Keith follows up on fighting AI bots, quoting a couple things I’ve said. He closes with: - Create up to 5 blogs, each with - last_post_date: "2024-05-30T09:03:42-05:00" - last_post_link: https://www.manton.org/2024/05/29/podcast-hosting-for.html + There is nothing inevitable about any technology. The actions we take today are what determine our + last_post_date: "2024-07-01T09:50:52-05:00" + last_post_link: https://www.manton.org/2024/07/01/dark-forest-of.html last_post_categories: [] - last_post_guid: 6a168292a4271fabd3f950ff901ae758 + last_post_language: "" + last_post_guid: b097bee6be54a2dea0f69a86adc053a5 score_criteria: cats: 1 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 10 - relme: 1 + relme: 2 title: 3 website: 2 - score: 20 + score: 25 ispodcast: true isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-88ac0214081253f21120a530d53c22a2.md b/content/discover/feed-88ac0214081253f21120a530d53c22a2.md new file mode 100644 index 000000000..47768c0f0 --- /dev/null +++ b/content/discover/feed-88ac0214081253f21120a530d53c22a2.md @@ -0,0 +1,69 @@ +--- +title: Handy News Reader +date: "1970-01-01T00:00:00Z" +description: A convenient, distraction-free way of being up-to-date with Your Interests + & Passions. +params: + feedlink: https://handynewsreader.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 88ac0214081253f21120a530d53c22a2 + websites: + https://handynewsreader.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - advanced + - de + - download + - first steps + - id + - info + - news + - pl + - ru + - us + - us id ru + relme: + https://aboutthomasleigh.blogspot.com/: true + https://handynewsreader.blogspot.com/: true + https://jaktamjaponski.blogspot.com/: true + https://moliumpodcast.blogspot.com/: true + https://smartthemesfor.blogspot.com/: true + https://thomascafepodcast.blogspot.com/: true + https://thomasleighthemes.blogspot.com/: true + https://thomasleighuniverse.blogspot.com/: true + https://www.blogger.com/profile/01268074830941697525: true + https://zrodlokreacji.blogspot.com/: true + last_post_title: Häufig gestellte Fragen. + last_post_description: |- + Aktualisiert: 23. Juli 2020 + + Kurze Übersicht, um was es geht: + + Was sind die Unterschiede zwischen den HNR-Versionen auf Google Play und F-Droid? + Wie ist die Haltung zu Werbung? + Ich möchte die App + last_post_date: "2020-07-24T22:12:00Z" + last_post_link: https://handynewsreader.blogspot.com/2020/07/haufig-gestellte-fragen.html + last_post_categories: + - de + last_post_language: "" + last_post_guid: 2cc1600a09148fd289cf0c0cf483eb9e + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-88ba33a113a9c981542a7811f7c79080.md b/content/discover/feed-88ba33a113a9c981542a7811f7c79080.md new file mode 100644 index 000000000..2251c6eed --- /dev/null +++ b/content/discover/feed-88ba33a113a9c981542a7811f7c79080.md @@ -0,0 +1,51 @@ +--- +title: The Trouble with Tribbles... +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://ptribble.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 88ba33a113a9c981542a7811f7c79080 + websites: + https://ptribble.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - jkstat + - opensolaris + - solaris + - solaris graphics nvidia + - solview + - sun + relme: + https://petertribble.blogspot.com/: true + https://ptribble.blogspot.com/: true + https://tribblix.blogspot.com/: true + https://www.blogger.com/profile/09363446984245451854: true + last_post_title: Tribblix image structural changes + last_post_description: The Tribblix live ISO and related images are put together + every so slightly differently in the latest m34 release.All along, there's been + an overlay (think a group package) called base-iso that lists + last_post_date: "2024-04-03T16:30:00Z" + last_post_link: https://ptribble.blogspot.com/2024/04/tribblix-image-structural-changes.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 0bb6bcdc02c30a6c5604b517cc4df082 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-88cca2bf696d096554b9e10999a878bd.md b/content/discover/feed-88cca2bf696d096554b9e10999a878bd.md index 8906e0af0..22f5b5689 100644 --- a/content/discover/feed-88cca2bf696d096554b9e10999a878bd.md +++ b/content/discover/feed-88cca2bf696d096554b9e10999a878bd.md @@ -12,7 +12,8 @@ params: recommended: [] recommender: [] categories: [] - relme: {} + relme: + https://chrisaldrich.wordpress.com/: true last_post_title: Comment on New Routledge Text on Systems Theory by Shannon’s MTC as ‘information theory’ – Math Solution last_post_description: '[…] it yet, but given the area of the text you mentioned, @@ -21,17 +22,22 @@ params: last_post_date: "2022-03-16T15:59:26Z" last_post_link: https://chrisaldrich.wordpress.com/2014/01/02/new-routledge-text-on-systems-theory/#comment-3967 last_post_categories: [] + last_post_language: "" last_post_guid: 022aba4f223469d903c41b2fa03e1ada score_criteria: cats: 0 description: 0 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 5 + score: 10 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-88d338a229948b6878dfe7621ae4bed1.md b/content/discover/feed-88d338a229948b6878dfe7621ae4bed1.md new file mode 100644 index 000000000..de947dacf --- /dev/null +++ b/content/discover/feed-88d338a229948b6878dfe7621ae4bed1.md @@ -0,0 +1,139 @@ +--- +title: Area Code World And Settings +date: "2024-03-08T17:25:18-08:00" +description: Here we have good content about the USA all Area codes +params: + feedlink: https://darlanshop2.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 88d338a229948b6878dfe7621ae4bed1 + websites: + https://darlanshop2.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Area code + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: All About Area Code 800 + last_post_description: "" + last_post_date: "2022-01-03T06:43:56-08:00" + last_post_link: https://darlanshop2.blogspot.com/2022/01/all-about-area-code-800.html + last_post_categories: + - Area code + last_post_language: "" + last_post_guid: 50c348fcbf140c8f85cd705e1fb62324 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-88d4a274ff5a624f86cc5e9389098fd9.md b/content/discover/feed-88d4a274ff5a624f86cc5e9389098fd9.md index da3fe42e1..7c13f5ec0 100644 --- a/content/discover/feed-88d4a274ff5a624f86cc5e9389098fd9.md +++ b/content/discover/feed-88d4a274ff5a624f86cc5e9389098fd9.md @@ -14,6 +14,8 @@ params: categories: - Development relme: + https://anxiousfox.co.uk/: true + https://blog.mikeasoft.com/: true https://octodon.social/@mikesheldon: true last_post_title: Pied Beta last_post_description: For the past couple of months I’ve been working on Pied, @@ -23,17 +25,22 @@ params: last_post_link: https://blog.mikeasoft.com/2023/11/20/pied-beta/ last_post_categories: - Development + last_post_language: "" last_post_guid: c448940977921c73e3c26b2966c5c9ac score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 8 + score: 12 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-88d5535717c117565ab8dc63cf49e7c9.md b/content/discover/feed-88d5535717c117565ab8dc63cf49e7c9.md deleted file mode 100644 index 9edcf5ef5..000000000 --- a/content/discover/feed-88d5535717c117565ab8dc63cf49e7c9.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: 'Blake Watson :prami:' -date: "1970-01-01T00:00:00Z" -description: Public posts from @bw@social.lol -params: - feedlink: https://social.lol/@bw.rss - feedtype: rss - feedid: 88d5535717c117565ab8dc63cf49e7c9 - websites: - https://social.lol/@bw: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://afinestart.me/: true - https://blakewatson.com/: true - https://bw.omg.lol/: true - https://now.blakewatson.com/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-88e51dcc898d5b4de3adf2818665e196.md b/content/discover/feed-88e51dcc898d5b4de3adf2818665e196.md deleted file mode 100644 index 3ec2725df..000000000 --- a/content/discover/feed-88e51dcc898d5b4de3adf2818665e196.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Gitea Blog Blog -date: "2024-05-23T18:00:00Z" -description: Gitea Blog Blog -params: - feedlink: https://blog.gitea.io/atom.xml - feedtype: atom - feedid: 88e51dcc898d5b4de3adf2818665e196 - websites: - https://blog.gitea.io/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - release - relme: {} - last_post_title: Gitea 1.22.0 is released - last_post_description: We are thrilled to announce the latest release of Gitea v1.22.0. - last_post_date: "2024-05-23T18:00:00Z" - last_post_link: https://blog.gitea.com/release-of-1.22.0 - last_post_categories: - - release - last_post_guid: 5737d9471767d94a14c308a10477b261 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-88f9b6002319b2debe5d328ee9847b71.md b/content/discover/feed-88f9b6002319b2debe5d328ee9847b71.md new file mode 100644 index 000000000..f4c789f5d --- /dev/null +++ b/content/discover/feed-88f9b6002319b2debe5d328ee9847b71.md @@ -0,0 +1,139 @@ +--- +title: What Kind of Alarm at Jim +date: "2024-03-07T23:45:57-08:00" +description: alarming at jim is always irritate. +params: + feedlink: https://professorajaneandrade.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 88f9b6002319b2debe5d328ee9847b71 + websites: + https://professorajaneandrade.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Lunk Alarm is Alart + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Alarm At Jim + last_post_description: "" + last_post_date: "2021-04-30T12:13:58-07:00" + last_post_link: https://professorajaneandrade.blogspot.com/2021/04/alarm-at-jim.html + last_post_categories: + - Lunk Alarm is Alart + last_post_language: "" + last_post_guid: 1877235d39006ec3e2f83089909a6e9c + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-890386ea46a6a69f8d0c55af89384fe7.md b/content/discover/feed-890386ea46a6a69f8d0c55af89384fe7.md deleted file mode 100644 index a5b5eede7..000000000 --- a/content/discover/feed-890386ea46a6a69f8d0c55af89384fe7.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: neu•gierig -date: "1970-01-01T00:00:00Z" -description: Public posts from @neugierig_fm@podcasts.social -params: - feedlink: https://podcasts.social/@neugierig_fm.rss - feedtype: rss - feedid: 890386ea46a6a69f8d0c55af89384fe7 - websites: - https://podcasts.social/@neugierig_fm: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://letscast.fm/podcasts/neu-gierig-8452c935/feed: false - https://neu-gierig.fm/: true - https://open.spotify.com/show/2eIybqEhf5VlhOhHG5MStn: false - https://www.youtube.com/@neugierig: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-896362baafe44ecdd546bfa3d54bb797.md b/content/discover/feed-896362baafe44ecdd546bfa3d54bb797.md new file mode 100644 index 000000000..025f34172 --- /dev/null +++ b/content/discover/feed-896362baafe44ecdd546bfa3d54bb797.md @@ -0,0 +1,144 @@ +--- +title: DIY & dragons +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://diyanddragons.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 896362baafe44ecdd546bfa3d54bb797 + websites: + https://diyanddragons.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 5e + - actual play + - adventure + - advice + - appendix n + - art & illustration + - b/x-ish + - barrowmaze + - bernie the flumph + - black powder black magic + - boardgames + - bon mots + - book cover trends + - book review + - books i want to read + - campaigns i want to run + - castle gargantua + - challenges + - characters i want to play + - cities + - combat + - comics + - community projects + - conversations + - crawl-thulhu + - dark sun + - dcc + - downtime + - dungeon alphabet dozen + - dungeons & decorators + - dungeons i want to explore + - endless forms most beautiful + - equipment + - factions + - fantasy heartbreak workshop + - games i want to play + - gfa + - glog + - grotesque & dungeonesque + - hallways + - horned king + - i2to + - index + - interplanetary fantasy + - island of the blue giants + - jrpg - snes + - kansas city + - lego rpg contest + - lesserton & mor + - links + - long quotes + - maps + - mausritter + - mcc - broken moon + - mechanics i want to use + - miscellany + - monsters i want to fight + - music + - my art + - my brilliant friends + - mycetes-thrax + - mystery & intrigue + - night garden at the vanishing oasis + - non-core + - nostalgia + - nutcracker princesses + - occupations + - our world - lost world + - papers & pencils + - pathfinder + - patrons + - player art + - prismatic wasteland + - procedural generation + - procedural generation demonstration + - psychedelic cosmonauts + - public domain art + - reader suggestions + - redlands - rotlands + - resource management + - resurrection of wormwood + - reviews + - rhythmic gymnastics + - roadside picnic basket book club + - ryuutama + - scifi remix + - secret santicorn + - shadows of brimstone + - shameless self-promotion + - sorcerers skull + - spells i want to cast + - star trek + - tolkienian science fantasy + - treasures i want to steal + - undermountain + - urutsk + - wizard city + - worldbuilding + - worm god + relme: + https://diyanddragons.blogspot.com/: true + last_post_title: Helpful Links for the LEGO RPG Jam + last_post_description: Hi everyone! I have two announcements about the ongoing Summer + LEGO RPG Setting Jam, still open until July 8th. First, several people have reached + out to me with links that might be helpful for + last_post_date: "2024-05-31T17:27:00Z" + last_post_link: https://diyanddragons.blogspot.com/2024/05/helpful-links-for-lego-rpg-jam.html + last_post_categories: + - community projects + - lego rpg contest + - links + last_post_language: "" + last_post_guid: 118e84430966c9cc4cb0e830a88089ab + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-897b7b642902dc5ced6ea056dc295f1b.md b/content/discover/feed-897b7b642902dc5ced6ea056dc295f1b.md deleted file mode 100644 index a71c6fbc9..000000000 --- a/content/discover/feed-897b7b642902dc5ced6ea056dc295f1b.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Trys Mudford -date: "1970-01-01T00:00:00Z" -description: Public posts from @trys@mastodon.social -params: - feedlink: https://mastodon.social/@trys.rss - feedtype: rss - feedid: 897b7b642902dc5ced6ea056dc295f1b - websites: - https://mastodon.social/@trys: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://trysmudford.com/: true - https://twitter.com/trysmudford: false - https://utopia.fyi/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-89a1b6d0fbb834a7b633ddbc676e5a71.md b/content/discover/feed-89a1b6d0fbb834a7b633ddbc676e5a71.md new file mode 100644 index 000000000..ca1268181 --- /dev/null +++ b/content/discover/feed-89a1b6d0fbb834a7b633ddbc676e5a71.md @@ -0,0 +1,54 @@ +--- +title: Fly me to the Indigo! +date: "1970-01-01T00:00:00Z" +description: I love to develop Eclipse RCP.There are many dreams.What a extensible + environment is it? +params: + feedlink: https://flymewiththeeclipseway.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 89a1b6d0fbb834a7b633ddbc676e5a71 + websites: + https://flymewiththeeclipseway.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - AmaterasERD + - EclipSKY + - Eclipse + - JAMCircle + - Japan + - OSDE + - helios screenshot + - swtbot + - test + relme: + https://flymewiththeeclipseway.blogspot.com/: true + https://www.blogger.com/profile/10730042929073818285: true + last_post_title: Run customized process to notify JUnit results + last_post_description: I made a plugin to run customized process to notify JUnit + results. Before I introduced to notify JUnit results to Grows Eclipse Plugin beforeThen + Ketan's comment, "+1 for a custom command line + last_post_date: "2010-08-18T14:26:00Z" + last_post_link: https://flymewiththeeclipseway.blogspot.com/2010/08/run-customized-process-to-notify-junit.html + last_post_categories: + - test + last_post_language: "" + last_post_guid: 8e26db73ca1397e6a798d66d89995f87 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-89b2d317fb63cf81ad93ad60b396b37d.md b/content/discover/feed-89b2d317fb63cf81ad93ad60b396b37d.md deleted file mode 100644 index b97896033..000000000 --- a/content/discover/feed-89b2d317fb63cf81ad93ad60b396b37d.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: 'Alchemists: Talks' -date: "2024-05-09T00:00:00Z" -description: Talks on software engineering design, patterns, techniques, learnings, - and more. -params: - feedlink: https://alchemists.io/feeds/talks.xml - feedtype: atom - feedid: 89b2d317fb63cf81ad93ad60b396b37d - websites: - https://alchemists.io/: false - https://alchemists.io/articles: false - https://alchemists.io/projects: false - https://alchemists.io/screencasts: false - https://alchemists.io/talks: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - talks - relme: {} - last_post_title: Ruby Fusion Talk - last_post_description: "" - last_post_date: "2024-05-09T00:00:00Z" - last_post_link: https://alchemists.io/talks/ruby_fusion - last_post_categories: - - talks - last_post_guid: 7ec00537cffe9470becfcd85cbb33e05 - score_criteria: - cats: 1 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-89c3f2d84617038fa327cee8e5c40bae.md b/content/discover/feed-89c3f2d84617038fa327cee8e5c40bae.md new file mode 100644 index 000000000..7f627b582 --- /dev/null +++ b/content/discover/feed-89c3f2d84617038fa327cee8e5c40bae.md @@ -0,0 +1,43 @@ +--- +title: Žan Černe's Blog +date: "1970-01-01T00:00:00Z" +description: I'm tinkerer from Slovenia interested in software, design, tech, health + and more. +params: + feedlink: https://cernezan.com/rss.xml + feedtype: rss + feedid: 89c3f2d84617038fa327cee8e5c40bae + websites: {} + blogrolls: [] + recommended: [] + recommender: + - https://colinwalker.blog/dailyfeed.xml + - https://colinwalker.blog/livefeed.xml + categories: [] + relme: {} + last_post_title: '"It''s been a couple of weeks since I started... · Žan Černe' + last_post_description: '"It''s been a couple of weeks since I started my 10k km + run preparations. I''m primarily focused on Zone 2 training for now. I began with + a c...' + last_post_date: "2023-07-20T22:00:00Z" + last_post_link: https://cernezan.com/blog/10-k-preparations/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 4b804460085c86f5e8882bedd5de1ef2 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 0 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-89dfddb8b11e5d1fc5ea6a87dbc9a071.md b/content/discover/feed-89dfddb8b11e5d1fc5ea6a87dbc9a071.md deleted file mode 100644 index 70d834644..000000000 --- a/content/discover/feed-89dfddb8b11e5d1fc5ea6a87dbc9a071.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Drew DeVault's blog -date: "1970-01-01T00:00:00Z" -description: Recent content in Blogs on Drew DeVault's blog -params: - feedlink: https://drewdevault.com/blog/index.xml - feedtype: rss - feedid: 89dfddb8b11e5d1fc5ea6a87dbc9a071 - websites: - https://drewdevault.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: [] - relme: {} - last_post_title: Writing a Unix clone in about a month - last_post_description: |- - I needed a bit of a break from “real work” recently, so I started a new - programming project that was low-stakes and purely recreational. On April 21st, - I set out to see how much of a Unix-like - last_post_date: "2024-05-24T00:00:00Z" - last_post_link: https://drewdevault.com/2024/05/24/2024-05-24-Bunnix.html - last_post_categories: [] - last_post_guid: 1bc4c1a5c5210937ee5f43eef39dfd8e - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-89f9ec9b0a9446138f298b73592824d6.md b/content/discover/feed-89f9ec9b0a9446138f298b73592824d6.md new file mode 100644 index 000000000..8b69b5332 --- /dev/null +++ b/content/discover/feed-89f9ec9b0a9446138f298b73592824d6.md @@ -0,0 +1,45 @@ +--- +title: Living in Japan +date: "1970-01-01T00:00:00Z" +description: THis is a life of an ex-expatriot who has just moved back to Japan. +params: + feedlink: https://osamu-in-japan.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 89f9ec9b0a9446138f298b73592824d6 + websites: + https://osamu-in-japan.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://goofing-and-tweaking.blogspot.com/: true + https://goofing-with-computer.blogspot.com/: true + https://goofying-with-debian.blogspot.com/: true + https://osamu-aoki.blogspot.com/: true + https://osamu-in-japan.blogspot.com/: true + https://www.blogger.com/profile/12377163704610747036: true + last_post_title: ハンバーガー、鯛焼き、バール + last_post_description: ハンバーガー:Brozersはいける!中央区日本橋人形町2丁目28−5月村マンションNo25 1F03-3639 + last_post_date: "2006-04-23T03:59:00Z" + last_post_link: https://osamu-in-japan.blogspot.com/2006/04/blog-post.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 7b4292d06aba65d6113b5f2125ee05f2 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-89fd92d33971825936ebd370419e238d.md b/content/discover/feed-89fd92d33971825936ebd370419e238d.md new file mode 100644 index 000000000..de65a16b4 --- /dev/null +++ b/content/discover/feed-89fd92d33971825936ebd370419e238d.md @@ -0,0 +1,74 @@ +--- +title: Paul's Pontifications +date: "2024-07-01T21:15:21-07:00" +description: Random musings on politics, economics and software +params: + feedlink: https://paulspontifications.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 89fd92d33971825936ebd370419e238d + websites: + https://paulspontifications.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Arrow + - backup + - bacula + - bilski + - broadband + - comcast + - configuration management + - ebook + - economics + - elections + - erlang + - functional programming + - haskell + - law + - linux + - management + - morality + - open source + - p2p + - patent + - petition + - politics + - politics broadband + - politics organisation antipattern Bruce_Sterling + - process + - rate capping + - real-time + - religion + - security + - software + - terrorism + - virgin + - windows + relme: + https://paulspontifications.blogspot.com/: true + https://www.blogger.com/profile/07353083601285449293: true + last_post_title: The Diametric Safety Case Manager + last_post_description: "" + last_post_date: "2020-03-30T00:34:53-07:00" + last_post_link: https://paulspontifications.blogspot.com/2020/03/the-diametric-safety-case-manager.html + last_post_categories: [] + last_post_language: "" + last_post_guid: ec21c36ba49bd72f0aa99b569c73b924 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8a02ddb107ffa0b5875a757010856e79.md b/content/discover/feed-8a02ddb107ffa0b5875a757010856e79.md index f457926a6..ea538fc6e 100644 --- a/content/discover/feed-8a02ddb107ffa0b5875a757010856e79.md +++ b/content/discover/feed-8a02ddb107ffa0b5875a757010856e79.md @@ -13,7 +13,8 @@ params: recommender: [] categories: - News - relme: {} + relme: + https://sasquatchers.spectrecollie.com/: true last_post_title: The Big Time last_post_description: Our team's adventures are coming to the small, black-and-white screen! @@ -21,17 +22,22 @@ params: last_post_link: https://sasquatchers.spectrecollie.com/2022/02/02/hello-world/ last_post_categories: - News + last_post_language: "" last_post_guid: f0ffb1df3a7bab67a2b91436c5fbbf4a score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 9 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-8a06d299b155335b39bde1cf6a4d5853.md b/content/discover/feed-8a06d299b155335b39bde1cf6a4d5853.md new file mode 100644 index 000000000..e333f0d57 --- /dev/null +++ b/content/discover/feed-8a06d299b155335b39bde1cf6a4d5853.md @@ -0,0 +1,53 @@ +--- +title: Et tu, Cthulhu +date: "1970-01-01T00:00:00Z" +description: 'Personal blag of Hans Petter Jansson: Fun with computers edition' +params: + feedlink: https://hpjansson.org/blag/feed/ + feedtype: rss + feedid: 8a06d299b155335b39bde1cf6a4d5853 + websites: + https://hpjansson.org/blag/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Computing + - ansi art + - chafa + - release + - terminal graphics + - textmode + relme: + https://hpjansson.org/blag/: true + last_post_title: 'Chafa 1.14: All-singing, all-dancing' + last_post_description: Dear friends, comrades, partners in crime and moderate profit! + I am pleased to announce the immediate availability of Chafa 1.14.0. + last_post_date: "2024-01-18T02:57:07Z" + last_post_link: https://hpjansson.org/blag/2024/01/18/chafa-1-14-all-singing-all-dancing/ + last_post_categories: + - Computing + - ansi art + - chafa + - release + - terminal graphics + - textmode + last_post_language: "" + last_post_guid: 6e5612be40787ae15aa1e9097517651f + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-8a1f387d4db31e7e4d69508eee6a1605.md b/content/discover/feed-8a1f387d4db31e7e4d69508eee6a1605.md deleted file mode 100644 index e6ea7391e..000000000 --- a/content/discover/feed-8a1f387d4db31e7e4d69508eee6a1605.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Brandon's Journal -date: "2024-06-01T04:11:43Z" -description: "" -params: - feedlink: https://brandons-journal.com/feed.atom - feedtype: atom - feedid: 8a1f387d4db31e7e4d69508eee6a1605 - websites: - https://brandons-journal.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://amerpie.lol/feed.xml - - https://colinwalker.blog/dailyfeed.xml - - https://colinwalker.blog/livefeed.xml - categories: [] - relme: {} - last_post_title: Junited - last_post_description: "Junited is a monthly challenge to share a single blog post - each day that you appreciate or like. \n\nOver the next thirty days I’ll be updating - this post each day with a new link. My goal is to pick" - last_post_date: "2024-06-03T01:24:27Z" - last_post_link: https://brandons-journal.com/post/junited - last_post_categories: [] - last_post_guid: 0315bebc49c0c9244672592a254f7fd3 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8a230994d834466e7c0852d4fad33d9c.md b/content/discover/feed-8a230994d834466e7c0852d4fad33d9c.md deleted file mode 100644 index 7618fc205..000000000 --- a/content/discover/feed-8a230994d834466e7c0852d4fad33d9c.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Kilian Valkhof -date: "1970-01-01T00:00:00Z" -description: Front-end & user experience developer -params: - feedlink: https://kilianvalkhof.com/feed - feedtype: rss - feedid: 8a230994d834466e7c0852d4fad33d9c - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: - - Javascript - relme: {} - last_post_title: The problem with new URL(), and how URL.parse() fixes that - last_post_description: As someone building a browser I need to parse a lot of URLs. - Partially to validate them, but also to normalize them or get specific parts out - of the URL. The URL API in browsers lets you do that, but - last_post_date: "2024-04-24T10:09:13Z" - last_post_link: https://kilianvalkhof.com/2024/javascript/the-problem-with-new-url-and-how-url-parse-fixes-that/ - last_post_categories: - - Javascript - last_post_guid: bc50d5ee7443bc8c4c99d168825bab55 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 12 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8a243363056457c1ea453bbf62e80549.md b/content/discover/feed-8a243363056457c1ea453bbf62e80549.md deleted file mode 100644 index 433eb7a64..000000000 --- a/content/discover/feed-8a243363056457c1ea453bbf62e80549.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Bob Monsour -date: "1970-01-01T00:00:00Z" -description: Public posts from @bobmonsour@indieweb.social -params: - feedlink: https://indieweb.social/@bobmonsour.rss - feedtype: rss - feedid: 8a243363056457c1ea453bbf62e80549 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8a2b40a9dc80e4a16326c190ba1acd7f.md b/content/discover/feed-8a2b40a9dc80e4a16326c190ba1acd7f.md new file mode 100644 index 000000000..c370f4b86 --- /dev/null +++ b/content/discover/feed-8a2b40a9dc80e4a16326c190ba1acd7f.md @@ -0,0 +1,44 @@ +--- +title: Evan Moses +date: "1970-01-01T00:00:00Z" +description: Recent content on Evan Moses +params: + feedlink: https://www.emoses.org/index.xml + feedtype: rss + feedid: 8a2b40a9dc80e4a16326c190ba1acd7f + websites: + https://www.emoses.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://github.com/emoses: true + https://hachyderm.io/@emoses: true + https://www.emoses.org/: true + last_post_title: 'Home Assistant: using target in blueprints' + last_post_description: TL;DR Here’s a snippet for use in Home Assistant for turning + an arbitrary target selector into a list of entity idsAlso here’s a low-battery + warning Blueprint that uses it.I’ve been using + last_post_date: "2024-05-03T00:00:00Z" + last_post_link: https://www.emoses.org/posts/target-in-blueprints/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 69cd5049abacbfa729dbb0c6e69424c9 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-8a2cbcfed06da89123370301e1b2684b.md b/content/discover/feed-8a2cbcfed06da89123370301e1b2684b.md deleted file mode 100644 index 4daf6eb41..000000000 --- a/content/discover/feed-8a2cbcfed06da89123370301e1b2684b.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Comments for Andrea Frittoli -date: "1970-01-01T00:00:00Z" -description: Thoughts and Experiences -params: - feedlink: https://andreafrittoli.me/comments/feed/ - feedtype: rss - feedid: 8a2cbcfed06da89123370301e1b2684b - websites: - https://andreafrittoli.me/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Developing Knative pipelines on IBM Cloud. by Develop - Knative pipelines on the cloud – IBM Developer - last_post_description: '[…] blog post, I will describe how to set up the CD pipeline. - This post was originally published at andreafrittoli.me on Feb 5th, […]' - last_post_date: "2019-08-17T06:42:28Z" - last_post_link: https://andreafrittoli.me/2019/02/05/developing-knative-pipelines-on-ibm-cloud/#comment-5 - last_post_categories: [] - last_post_guid: 9e4d40b4b9bb2ed3e843a4f6d729701b - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8a45bb60e18eeb40ab6f2e8baf5e44b5.md b/content/discover/feed-8a45bb60e18eeb40ab6f2e8baf5e44b5.md deleted file mode 100644 index eb174a4dc..000000000 --- a/content/discover/feed-8a45bb60e18eeb40ab6f2e8baf5e44b5.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: remy sharp's d:evlog -date: "1970-01-01T00:00:00Z" -description: Remy Sharp's d:evlog diary -params: - feedlink: https://remysharp.com/devlog.xml - feedtype: rss - feedid: 8a45bb60e18eeb40ab6f2e8baf5e44b5 - websites: - https://remysharp.com/: true - https://remysharp.com/books: false - https://remysharp.com/speaking/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://flickr.com/photos/remysharp: false - https://front-end.social/@rem: true - https://github.com/remy: true - https://github.com/remy/: true - https://leftlogic.com/: false - https://remysharp.com/books: false - https://remysharp.com/speaking/: false - https://twitter.com/rem: false - https://www.twitch.tv/remysharp: false - last_post_title: Marbles2 - 16-Jul 2021 - last_post_description: |- - The game went live just under a week ago and the feedback has been really nice to see. - There's been a balance of "regular" players and power players, and in those power players is where the game got - last_post_date: "2021-07-16T00:00:00Z" - last_post_link: https://remysharp.com/devlog/marbles2/2021-07-16 - last_post_categories: [] - last_post_guid: 1bd6858ee0e89d1832b4988234afee29 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8a4e9fe66bcb57aef221f229ac714531.md b/content/discover/feed-8a4e9fe66bcb57aef221f229ac714531.md new file mode 100644 index 000000000..56fc924af --- /dev/null +++ b/content/discover/feed-8a4e9fe66bcb57aef221f229ac714531.md @@ -0,0 +1,55 @@ +--- +title: SpeedCrunch +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://speedcrunch.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 8a4e9fe66bcb57aef221f229ac714531 + websites: + https://speedcrunch.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - announcements + - features + - functions + - howto + - notations + - previews + - releases + - reviews + - screenshots + - smalltalk + - translations + relme: + https://helderfoo.blogspot.com/: true + https://speedcrunch.blogspot.com/: true + https://www.blogger.com/profile/06430233725902328852: true + last_post_title: SpeedCrunch 0.12 Released + last_post_description: If you're curious, check out the complete list of enhancements and + bug fixes. Or go straight to the downloads page. For better productivity, learn + about all the user interface quirks at your + last_post_date: "2016-11-29T01:25:00Z" + last_post_link: https://speedcrunch.blogspot.com/2016/11/speedcrunch-012-released.html + last_post_categories: [] + last_post_language: "" + last_post_guid: b4acf621da3b417061af7ccfa502c2e7 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8a5d6572c1def2f369ccb7ed926ecb1a.md b/content/discover/feed-8a5d6572c1def2f369ccb7ed926ecb1a.md new file mode 100644 index 000000000..0e159159a --- /dev/null +++ b/content/discover/feed-8a5d6572c1def2f369ccb7ed926ecb1a.md @@ -0,0 +1,46 @@ +--- +title: Subtle Echo +date: "2024-06-24T17:47:23Z" +description: "" +params: + feedlink: https://subtle-echo.pika.page/posts_feed + feedtype: atom + feedid: 8a5d6572c1def2f369ccb7ed926ecb1a + websites: + https://subtle-echo.pika.page/: true + blogrolls: [] + recommended: [] + recommender: + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php + categories: [] + relme: + https://lorenzo.omg.lol/: true + https://lorenzo.omg.lol/now: true + https://mastodon.social/@lorenzobehna: true + https://subtle-echo.pika.page/: true + last_post_title: A Love Letter to the Playdate + last_post_description: I was so excited when I heard about the Playdate in the summer + of 2021! I made sure to be ready for the pre-order and was lucky enough to get... + last_post_date: "2024-06-24T17:47:24Z" + last_post_link: https://subtle-echo.pika.page/posts/a-love-letter-to-the-playdate + last_post_categories: [] + last_post_language: "" + last_post_guid: 397889c274c412ca5d3ac614ab018692 + score_criteria: + cats: 0 + description: 0 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-8a6e4063a1745e9b80bf4af528d74a10.md b/content/discover/feed-8a6e4063a1745e9b80bf4af528d74a10.md index 885d18ef1..c5316e2b0 100644 --- a/content/discover/feed-8a6e4063a1745e9b80bf4af528d74a10.md +++ b/content/discover/feed-8a6e4063a1745e9b80bf4af528d74a10.md @@ -13,6 +13,8 @@ params: recommender: [] categories: [] relme: + https://gra.ham.ie/: true + https://graham.hayes.ie/: true https://mastodon.ie/@graham: true last_post_title: OpenStack TC Nominations - Victoria last_post_description: |- @@ -24,17 +26,22 @@ params: last_post_date: "2020-03-30T16:48:26Z" last_post_link: http://graham.hayes.ie/posts/openstack-tc-nominations-victoria/ last_post_categories: [] + last_post_language: "" last_post_guid: d14fda383828b2ccce2190a79392a38f score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-8a70d088181e0566db1a8b8bc85374b0.md b/content/discover/feed-8a70d088181e0566db1a8b8bc85374b0.md new file mode 100644 index 000000000..69f857be8 --- /dev/null +++ b/content/discover/feed-8a70d088181e0566db1a8b8bc85374b0.md @@ -0,0 +1,52 @@ +--- +title: Qubes OS +date: "2024-06-27T07:05:31Z" +description: Qubes is a security-oriented, free and open-source operating system for + personal computers that allows you to securely compartmentalize your digital life. +params: + feedlink: https://www.qubes-os.org/feed.xml + feedtype: rss + feedid: 8a70d088181e0566db1a8b8bc85374b0 + websites: + https://www.qubes-os.org/: true + https://www.qubes-os.org/donate/: false + https://www.qubes-os.org/downloads/: false + https://www.qubes-os.org/support/: false + blogrolls: [] + recommended: [] + recommender: [] + categories: + - releases + relme: + https://mastodon.social/@QubesOS: true + https://www.qubes-os.org/: true + https://www.qubes-os.org/donate/: true + https://www.qubes-os.org/downloads/: true + https://www.qubes-os.org/support/: true + last_post_title: Qubes OS 4.2.2-rc1 is available for testing + last_post_description: We’re pleased to announce that the first release candidate + (RC) for Qubes OS 4.2.2 is now available for testing. This patch release aims + to consolidate all the security patches, bug fixes, and + last_post_date: "2024-06-27T00:00:00Z" + last_post_link: https://www.qubes-os.org/news/2024/06/27/qubes-os-4-2-2-rc1-available-for-testing/ + last_post_categories: + - releases + last_post_language: "" + last_post_guid: 408352599e6038a16589b9f4853009cf + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8a80c43151b0e36a1608c9096d0a34d8.md b/content/discover/feed-8a80c43151b0e36a1608c9096d0a34d8.md deleted file mode 100644 index 681619189..000000000 --- a/content/discover/feed-8a80c43151b0e36a1608c9096d0a34d8.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Sean Carroll -date: "2023-11-27T18:37:36Z" -description: in truth, only atoms and the void -params: - feedlink: https://www.preposterousuniverse.com/blog/feed/atom/ - feedtype: atom - feedid: 8a80c43151b0e36a1608c9096d0a34d8 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Science - relme: {} - last_post_title: 'New Course: The Many Hidden Worlds of Quantum Mechanics' - last_post_description: 'In past years I’ve done several courses for The Great Courses/Wondrium - (formerly The Teaching Company): Dark Matter and Dark Energy, Mysteries of Modern - Physics:Time, and The Higgs Boson and Beyond' - last_post_date: "2023-11-27T18:37:36Z" - last_post_link: https://www.preposterousuniverse.com/blog/2023/11/27/new-course-the-many-hidden-worlds-of-quantum-mechanics/ - last_post_categories: - - Science - last_post_guid: 16c37821693ed2fb5eafa2a6dedf0c7f - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8a8cbf1993736d12a4c82fe00f32427b.md b/content/discover/feed-8a8cbf1993736d12a4c82fe00f32427b.md deleted file mode 100644 index 5abd46bdb..000000000 --- a/content/discover/feed-8a8cbf1993736d12a4c82fe00f32427b.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Frills - Blog & experiments -date: "1970-01-01T00:00:00Z" -description: Personal blog and experiments from Frills -params: - feedlink: https://frills.dev/rss.xml - feedtype: rss - feedid: 8a8cbf1993736d12a4c82fe00f32427b - websites: - https://frills.dev/: false - https://frills.dev/blog: true - https://frills.dev/bookmarks: false - https://frills.dev/changelog: false - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: [] - relme: - https://frills.omg.lol/: false - https://indieweb.social/@frills: false - https://social.lol/@frills: false - last_post_title: Why blog anonymously - last_post_description: Response to Kev Quirk's 'What About Anonymous Blogging?' - last_post_date: "2024-04-11T18:51:00Z" - last_post_link: https://frills.dev/blog/240411-anon/ - last_post_categories: [] - last_post_guid: 63c60d8d6ff65040ac375c1a307c155c - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 14 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8a982a7f8ee296b748f3363f7c00ba0f.md b/content/discover/feed-8a982a7f8ee296b748f3363f7c00ba0f.md new file mode 100644 index 000000000..8b836de9f --- /dev/null +++ b/content/discover/feed-8a982a7f8ee296b748f3363f7c00ba0f.md @@ -0,0 +1,43 @@ +--- +title: Exploring Musicality +date: "2024-03-13T02:38:25-07:00" +description: "" +params: + feedlink: https://exploringmusicality.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 8a982a7f8ee296b748f3363f7c00ba0f + websites: + https://exploringmusicality.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://chrismbrown.blogspot.com/: true + https://exploringmusicality.blogspot.com/: true + https://haskellresearchblog.blogspot.com/: true + https://www.blogger.com/profile/16371443231577684670: true + last_post_title: First Thoughts on Op. 59 No. 1 + last_post_description: "" + last_post_date: "2014-06-24T14:51:51-07:00" + last_post_link: https://exploringmusicality.blogspot.com/2014/06/after-week-of-intense-listening-to.html + last_post_categories: [] + last_post_language: "" + last_post_guid: aee46bf80cb9161885a223c0d91e1e20 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8ac422953fe82abff181db8569eb8e0d.md b/content/discover/feed-8ac422953fe82abff181db8569eb8e0d.md deleted file mode 100644 index e296a6a94..000000000 --- a/content/discover/feed-8ac422953fe82abff181db8569eb8e0d.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Silvia Gatta -date: "1970-01-01T00:00:00Z" -description: Public posts from @silvia@macstories.net -params: - feedlink: https://mastodon.macstories.net/@silvia.rss - feedtype: rss - feedid: 8ac422953fe82abff181db8569eb8e0d - websites: - https://mastodon.macstories.net/@silvia: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://www.macstories.net/pixel/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8ac508d259cf635ee7b3ef1dda10362f.md b/content/discover/feed-8ac508d259cf635ee7b3ef1dda10362f.md deleted file mode 100644 index 6ec1046cd..000000000 --- a/content/discover/feed-8ac508d259cf635ee7b3ef1dda10362f.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Comments for Cloud {Native} -date: "1970-01-01T00:00:00Z" -description: Swapnil Kulkarni's Blog -params: - feedlink: https://cloudnativetech.wordpress.com/comments/feed/ - feedtype: rss - feedid: 8ac508d259cf635ee7b3ef1dda10362f - websites: - https://cloudnativetech.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: 'Comment on Dive-In Microservices #1 – Patterns – Event Processing - by Swapnil Kulkarni' - last_post_description: |- - In reply to Dinesh Lohokare. - - Thanks Dinesh. - last_post_date: "2018-02-02T03:45:23Z" - last_post_link: https://cloudnativetech.wordpress.com/2018/01/11/dive-in-microservices-1-patterns-event-processing/comment-page-1/#comment-2 - last_post_categories: [] - last_post_guid: dcbe833828c2f61d838a0ad23fb085b3 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8ac9a9496f734c381d10326c64ba7ebb.md b/content/discover/feed-8ac9a9496f734c381d10326c64ba7ebb.md new file mode 100644 index 000000000..0df147d12 --- /dev/null +++ b/content/discover/feed-8ac9a9496f734c381d10326c64ba7ebb.md @@ -0,0 +1,44 @@ +--- +title: 20000 frames +date: "1970-01-01T00:00:00Z" +description: under the pixels +params: + feedlink: https://20000frames.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 8ac9a9496f734c381d10326c64ba7ebb + websites: + https://20000frames.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://20000frames.blogspot.com/: true + https://tallefjant.blogspot.com/: true + https://www.blogger.com/profile/18257067188039583957: true + last_post_title: MWE2 Workflows using Xtend + last_post_description: If you've ever created an Xtext language you know that the + Xtext generator is configured and launched using an MWE2 workflow. The MWE2 language + is a simple external DSL to define a workflow by + last_post_date: "2013-01-31T16:45:00Z" + last_post_link: https://20000frames.blogspot.com/2013/01/mwe2-workflows-using-xtend.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 49fed62c6fa06feca89bb55219b5e71a + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8ae8b149adf14e9b0a838ca1a4df6cad.md b/content/discover/feed-8ae8b149adf14e9b0a838ca1a4df6cad.md deleted file mode 100644 index 8af88c3df..000000000 --- a/content/discover/feed-8ae8b149adf14e9b0a838ca1a4df6cad.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: marial -date: "1970-01-01T00:00:00Z" -description: Public posts from @marialeal@vivaldi.net -params: - feedlink: https://social.vivaldi.net/@marialeal.rss - feedtype: rss - feedid: 8ae8b149adf14e9b0a838ca1a4df6cad - websites: - https://social.vivaldi.net/@marialeal: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://vivaldi.com/team: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8af0f82a3ddb1d793ccc0eb3ff269176.md b/content/discover/feed-8af0f82a3ddb1d793ccc0eb3ff269176.md index 9bfca0934..acde2bf4d 100644 --- a/content/discover/feed-8af0f82a3ddb1d793ccc0eb3ff269176.md +++ b/content/discover/feed-8af0f82a3ddb1d793ccc0eb3ff269176.md @@ -13,29 +13,34 @@ params: recommender: - https://colinwalker.blog/dailyfeed.xml - https://colinwalker.blog/livefeed.xml + - https://roytang.net/blog/feed/rss/ categories: [] relme: - https://micro.blog/vasta: false https://phire.place/@vasta: true - https://twitter.com/vasta: false - last_post_title: Asparagus season + https://www.inthemargins.ca/: true + last_post_title: 'Media Diet: May and June' last_post_description: |- - There is an asparagus farm a stone’s throw away from our house, and every spring, I’m so thankful that it’s there. - I didn’t grow up eating asparagus; it wasn’t something that was easily put - last_post_date: "2024-05-23T12:45:00-04:00" - last_post_link: https://www.inthemargins.ca/asparagus + A quick look at the movies, television shows, and books that have captured my attention over the past two months. + Shrinking TV shows about father-daughter relationships will always have a cherished + last_post_date: "2024-06-29T18:38:00-04:00" + last_post_link: https://www.inthemargins.ca/media-diet-0624 last_post_categories: [] - last_post_guid: 8effd9984e1724f52ac631acc1b119ed + last_post_language: "" + last_post_guid: a80e7d9372b28983903093c523ad850e score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-8b2528aa58d52de13260c328b87b0dea.md b/content/discover/feed-8b2528aa58d52de13260c328b87b0dea.md new file mode 100644 index 000000000..ef8f01f12 --- /dev/null +++ b/content/discover/feed-8b2528aa58d52de13260c328b87b0dea.md @@ -0,0 +1,60 @@ +--- +title: Board and Card Games Thoughts +date: "2024-04-22T18:21:00-07:00" +description: "" +params: + feedlink: https://boardgamethoughts.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 8b2528aa58d52de13260c328b87b0dea + websites: + https://boardgamethoughts.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - card game + - dumbal + - dutch card game + - klaverjas + - klaverjassen + - nepalese card game + relme: + https://boardgamethoughts.blogspot.com/: true + https://coderthoughts.blogspot.com/: true + https://hikersthoughts.blogspot.com/: true + https://laarderhoogt.blogspot.com/: true + https://lightdarknesspainting.blogspot.com/: true + https://on-software-architecture.blogspot.com/: true + https://osgithoughts.blogspot.com/: true + https://rockabillfilmsoc.blogspot.com/: true + https://rockabillfilmsociety.blogspot.com/: true + https://testblogaswebsite.blogspot.com/: true + https://www.blogger.com/profile/13786738766478890804: true + last_post_title: Klaverjassen + last_post_description: "" + last_post_date: "2019-06-27T21:30:00-07:00" + last_post_link: https://boardgamethoughts.blogspot.com/2019/06/klaverjassen.html + last_post_categories: + - card game + - dutch card game + - klaverjas + - klaverjassen + last_post_language: "" + last_post_guid: af28b4b88482df1f2e6519f9ce5994e0 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8b2afd3b17d5f6c02590b589b18b0ac5.md b/content/discover/feed-8b2afd3b17d5f6c02590b589b18b0ac5.md new file mode 100644 index 000000000..35b11622c --- /dev/null +++ b/content/discover/feed-8b2afd3b17d5f6c02590b589b18b0ac5.md @@ -0,0 +1,113 @@ +--- +title: Coleção de mapas interativos +date: "1970-01-01T00:00:00Z" +description: mapas brasileiros feitos com software livre +params: + feedlink: https://mapasnaweb.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 8b2afd3b17d5f6c02590b589b18b0ac5 + websites: + https://mapasnaweb.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - F_Alovmap + - F_Kamap + - F_Mapbuilder + - F_OpenLayers + - F_Pmapper + - F_SpringWeb + - F_Terraviewweb + - F_VGWebMap + - F_i3geo + - F_próprio + - I_Estadual + - I_Federal + - I_Municipal + - I_Ong + - I_Privado + - Mato Grosso do Sul + - R_Amazônia + - R_Bahia + - R_Brasil + - R_Ceará + - R_Goiás + - R_Mato Grosso + - R_Minas Gerais + - R_Nordeste + - R_Paraná + - R_Paraíba + - R_Piauí + - R_Rio Grande do Norte + - R_Rio Grande do Sul + - R_Rio de Janeiro + - R_Roraima + - R_Santa Catarina + - R_São Paulo + - R_pará + - R_pernambuco + - S_Alovmap + - S_Geoserver + - S_Mapnik + - S_SpringWeb + - S_Terralib + - S_Tilecache + - S_mapserver + - S_não identificado + - T_Agricultura + - T_Cidades + - T_Cultura + - T_Economia + - T_Educação + - T_Geologia + - T_Gestão + - T_IDE + - T_Meio ambiente + - T_Mineração + - T_Recursos hídricos + - T_Saúde + - T_Sismologia + - T_Trabalho + - T_Transporte + - T_Turismo + - T_populações + relme: + https://edmarmoretti.blogspot.com/: true + https://mapasnaweb.blogspot.com/: true + https://www.blogger.com/profile/15675245972117324157: true + last_post_title: Cidade de São Carlos - SP + last_post_description: |- + Link principal:  http://www.saocarlos.sp.gov.br/ + Acesso direto: http://geo.saocarlos.sp.gov.br/ + Instituição: Prefeitura Municipal de São Carlos + + Framework: próprio + Servidor:  não + last_post_date: "2012-09-14T16:09:00Z" + last_post_link: https://mapasnaweb.blogspot.com/2012/09/cidade-de-sao-carlos-sp.html + last_post_categories: + - F_próprio + - I_Municipal + - R_São Paulo + - S_não identificado + - T_Cidades + last_post_language: "" + last_post_guid: 2261570f03df1165292d25a2cbcea68a + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8b4546985bb823db0202623df3686b0a.md b/content/discover/feed-8b4546985bb823db0202623df3686b0a.md index 2d4711728..57005048b 100644 --- a/content/discover/feed-8b4546985bb823db0202623df3686b0a.md +++ b/content/discover/feed-8b4546985bb823db0202623df3686b0a.md @@ -15,14 +15,8 @@ params: categories: - Society & Culture relme: - https://drupal.org/user/17600: false https://github.com/reinvented/: true - https://orcid.org/0000-0002-7690-4909: false https://ruk.ca/: true - https://speakerdeck.com/reinvented: false - https://vimeo.com/ruk: false - https://wiki.ruk.ca/: false - https://www.youtube.com/reinvented: false last_post_title: Adriatic last_post_description: |- We’re posted up 50 m from the Adriatic, in Numana. @@ -33,17 +27,22 @@ params: last_post_date: "2024-05-08T06:07:01-03:00" last_post_link: https://ruk.ca/sound/adriatic last_post_categories: [] + last_post_language: "" last_post_guid: 28c08f568fd40402959ec8b4af2ad1fb score_criteria: cats: 1 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 11 + score: 15 ispodcast: true isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-8b66c31519170fad0a47782270df62c3.md b/content/discover/feed-8b66c31519170fad0a47782270df62c3.md new file mode 100644 index 000000000..a6a4251e1 --- /dev/null +++ b/content/discover/feed-8b66c31519170fad0a47782270df62c3.md @@ -0,0 +1,147 @@ +--- +title: Информатика в экономике и управлении +date: "1970-01-01T00:00:00Z" +description: Свободное программное обеспечение для бизнеса и дома. +params: + feedlink: https://infineconomics.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 8b66c31519170fad0a47782270df62c3 + websites: + https://infineconomics.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - AGGREGATE + - Apache OpenOffice + - Assembler + - Basic + - BugHunting + - Calc + - Draw + - Excel + - HLOOKUP + - IBM + - IRC-канал + - LibreOffice + - Linux + - MS Excel + - MS Word + - Open Font Library + - Open Source + - OpenOffice.org + - Oracal + - SUBTOTAL + - SUM + - SUMIF + - SUMIFS + - TDF + - The Document Foundation + - VLOOKUP + - Writer + - XY + - bash + - bugs + - gimp + - macros + - patch + - Бабочка + - ВПР + - ВССиТ + - ГПР + - Ганта + - Линии + - Программирование + - Сердце + - Торнадо + - автоформат + - биржевая + - гистограмма + - график + - десятка + - диаграмма + - диапазон + - животные + - интегрирование + - интерфейс + - инфраструктура + - история + - календарь + - книги + - командная строка + - круговая + - кулинария + - линейный график + - лист + - макрос + - мастер диаграмм + - математика + - миграции + - навигация + - научно-популярное + - новости + - нумерация + - обзоры + - область + - общество + - оглавление + - официальные сайты + - переводы + - почтовая рассылка + - приколы + - психология + - пузырьковая + - раздел + - расчеты + - релиз + - сайт + - сетчатая + - сообщество + - сортировка + - спидометр + - стиль + - таблица + - таблицы + - типы данных + - тригонометрия + - указатели + - философия + - форматирование + - формулы + - функция + - хитрости + - шаблон + - шрифты + - эеспертные настройки + relme: + https://dnimruoynepo.blogspot.com/: true + https://infineconomics.blogspot.com/: true + https://tagezi.blogspot.com/: true + https://www.blogger.com/profile/06477487516753870290: true + last_post_title: Миграция на LibreOffice в Российской Федерации + last_post_description: Целью статьи, является освещение положения дел с внедрением + LibreOffice на территории Российской Федерации, для + last_post_date: "2018-02-24T11:11:00Z" + last_post_link: https://infineconomics.blogspot.com/2018/02/migrationlibreofficerussianfederation.html + last_post_categories: + - LibreOffice + - миграции + last_post_language: "" + last_post_guid: 94d46fcfb51fbf9d1d86a6a7efc4f947 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8b7ee32f092879c0b77f2f8ceadc9bf1.md b/content/discover/feed-8b7ee32f092879c0b77f2f8ceadc9bf1.md deleted file mode 100644 index de3ce3f54..000000000 --- a/content/discover/feed-8b7ee32f092879c0b77f2f8ceadc9bf1.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Zmanda -date: "1970-01-01T00:00:00Z" -description: The Leader in Cloud Backup and Open Source -params: - feedlink: https://www.zmanda.com/feed/?cat=22 - feedtype: rss - feedid: 8b7ee32f092879c0b77f2f8ceadc9bf1 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8b836f5285748111cf58d10874ea54d5.md b/content/discover/feed-8b836f5285748111cf58d10874ea54d5.md deleted file mode 100644 index 62f668ef3..000000000 --- a/content/discover/feed-8b836f5285748111cf58d10874ea54d5.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Cwtch Releases -date: "1970-01-01T00:00:00Z" -description: Recent Cwtch Releases -params: - feedlink: https://cwtch.im/releases/index.xml - feedtype: rss - feedid: 8b836f5285748111cf58d10874ea54d5 - websites: - https://cwtch.im/: false - https://cwtch.im/download: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://fosstodon.org/@cwtch: false - last_post_title: Cwtch 1.14.7 Release - last_post_description: |- - Cwtch 1.14 is now available for download A special thanks to the amazing volunteer translators and testers who made this release possible. - This fix mainly addresses several long standing issues with - last_post_date: "2024-02-27T00:00:00Z" - last_post_link: https://cwtch.im/download - last_post_categories: [] - last_post_guid: bfdbe1f3eda3e9fb98640735acba69ab - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8ba1c0856cdd2f52ddc1f20679a1ac82.md b/content/discover/feed-8ba1c0856cdd2f52ddc1f20679a1ac82.md deleted file mode 100644 index a53a9ee8d..000000000 --- a/content/discover/feed-8ba1c0856cdd2f52ddc1f20679a1ac82.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: "Paul Robert Lloyd \U0001F422" -date: "1970-01-01T00:00:00Z" -description: Public posts from @paulrobertlloyd@mastodon.social -params: - feedlink: https://mastodon.social/@paulrobertlloyd.rss - feedtype: rss - feedid: 8ba1c0856cdd2f52ddc1f20679a1ac82 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8ba4f3ba9fea2e8de10698681954bc8e.md b/content/discover/feed-8ba4f3ba9fea2e8de10698681954bc8e.md deleted file mode 100644 index 76e4093ee..000000000 --- a/content/discover/feed-8ba4f3ba9fea2e8de10698681954bc8e.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: OpenStack Archives - Xen Project -date: "1970-01-01T00:00:00Z" -description: Bringing the Power of Virtualization Everywhere -params: - feedlink: https://xenproject.org/tag/openstack/feed/ - feedtype: rss - feedid: 8ba4f3ba9fea2e8de10698681954bc8e - websites: - https://xenproject.org/tag/openstack/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Announcements - - libvirt - - OpenStack - relme: {} - last_post_title: Xen Project now in OpenStack Nova Hypervisor Driver Quality Group - B - last_post_description: A few weeks ago, we introduced the Xen Project – OpenStack - CI Loop, which is testing Nova commits against the Xen Project Hypervisor and - Libvirt. Xen Project community is pleased... - last_post_date: "2015-05-20T12:00:47Z" - last_post_link: https://xenproject.org/2015/05/20/xen-project-now-in-openstack-nova-hypervisor-driver-quality-group-b/ - last_post_categories: - - Announcements - - libvirt - - OpenStack - last_post_guid: b07d81fb1760f8ce2e1a3afdb96415c9 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8ba85c4a5d2e83847af12179a0da270d.md b/content/discover/feed-8ba85c4a5d2e83847af12179a0da270d.md index 2a9889b97..61b4f6308 100644 --- a/content/discover/feed-8ba85c4a5d2e83847af12179a0da270d.md +++ b/content/discover/feed-8ba85c4a5d2e83847af12179a0da270d.md @@ -17,24 +17,30 @@ params: categories: - Technology relme: {} - last_post_title: 'Trailer: What is AI & I?' - last_post_description: Learn how the smartest people in the world are using AI to - think, create, and relate. Each week I interview founders, filmmakers, writers, - investors, and others about how they use AI tools like - last_post_date: "2024-05-29T11:30:36Z" - last_post_link: https://podcasters.spotify.com/pod/show/how-do-you-use-chat-gpt/episodes/Trailer-What-is-AI--I-e2k8b14 + last_post_title: She Built an AI Product Manager Bringing in Six Figures—As A Side + Hustle - Ep. 24 with Claire Vo + last_post_description: "Claire Vo built ChatPRD—an on-demand chief product officer + powered by AI. It’s now used by over 10,000 product managers and is pulling in + six figures in revenue. \n\nThe best part?\n\nClaire has a" + last_post_date: "2024-06-20T13:26:38Z" + last_post_link: https://podcasters.spotify.com/pod/show/how-do-you-use-chat-gpt/episodes/She-Built-an-AI-Product-Manager-Bringing-in-Six-FiguresAs-A-Side-Hustle---Ep--24-with-Claire-Vo-e2l3slr last_post_categories: [] - last_post_guid: a99a7062380912f483820a28b3b21dfc + last_post_language: "" + last_post_guid: 439dfc613b5b20e3e6fc940eb68b45e8 score_criteria: cats: 1 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 12 + score: 16 ispodcast: true isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-8bafcd26508be6e5a1f5e5aa28ee02f3.md b/content/discover/feed-8bafcd26508be6e5a1f5e5aa28ee02f3.md new file mode 100644 index 000000000..88e54857e --- /dev/null +++ b/content/discover/feed-8bafcd26508be6e5a1f5e5aa28ee02f3.md @@ -0,0 +1,142 @@ +--- +title: SnapStreaks Features +date: "1970-01-01T00:00:00Z" +description: Snapstreak is very famous. Its has many feature please visit daily page + for more. +params: + feedlink: https://kingheraclious.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 8bafcd26508be6e5a1f5e5aa28ee02f3 + websites: + https://kingheraclious.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - snapchat + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Snap Streaks All Feature + last_post_description: Snap Streaks Events: In the B2B industry, numerous live occasions + can be transferred on Snapchat like conferences, visits, visits, and Tradeshow + cooperations, opening functions of the new plant, + last_post_date: "2021-04-21T11:24:00Z" + last_post_link: https://kingheraclious.blogspot.com/2021/04/snap-streaks-all-feature.html + last_post_categories: + - snapchat + last_post_language: "" + last_post_guid: 2676b4aa4d91a748ec9a68c34914293e + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8bb602837120f56cf7367635568ead43.md b/content/discover/feed-8bb602837120f56cf7367635568ead43.md deleted file mode 100644 index fee480805..000000000 --- a/content/discover/feed-8bb602837120f56cf7367635568ead43.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: 'Kommentare zu:' -date: "1970-01-01T00:00:00Z" -description: a weblog mainly about the open, portable, interoperable, small, social, - synaptic, semantic, structured, distributed, (re-)decentralized, independent, microformatted - and federated social web -params: - feedlink: https://notiz.blog/about/feed/ - feedtype: rss - feedid: 8bb602837120f56cf7367635568ead43 - websites: - https://notiz.blog/about/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8bc0de20be6511f5fa8472cf3fa9e3af.md b/content/discover/feed-8bc0de20be6511f5fa8472cf3fa9e3af.md index 5bde9f978..9b95ebc49 100644 --- a/content/discover/feed-8bc0de20be6511f5fa8472cf3fa9e3af.md +++ b/content/discover/feed-8bc0de20be6511f5fa8472cf3fa9e3af.md @@ -16,25 +16,29 @@ params: - http://scripting.com/rssNightly.xml categories: [] relme: {} - last_post_title: 'Unjust Termination and the Preservation of Black Families: A Conversation - with Angela Burton' - last_post_description: 'Unjustly terminated for doing what she was hired to do: - advocate against the destruction of Black families, Burton states how all Black - people want is to be left alone and collectively self-determine' - last_post_date: "2024-03-18T16:50:14Z" - last_post_link: https://logicmag.io/policy/unjust-termination-and-the-preservation-of-black-families + last_post_title: 'View From the Nuba Mountains: An Interview with Kuna' + last_post_description: An interview with Kuna (a pseudonym for her protection), + a Nuba diaspora returnee currently displaced within Sudan due to the ongoing war + between the Rapid Support Forces and the Sudanese Armed + last_post_date: "2024-07-08T17:25:27Z" + last_post_link: https://logicmag.io/issue-21-medicine-and-the-body/view-from-the-nuba-mountains-an-interview-with-kuna last_post_categories: [] - last_post_guid: ee8c61032f063a286ea83c152638430e + last_post_language: "" + last_post_guid: 58e4b64bba3e77c9e5267328cd0ba7d6 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-8bcac9172478b4f24938d4044eac7839.md b/content/discover/feed-8bcac9172478b4f24938d4044eac7839.md deleted file mode 100644 index f6dfbb6ff..000000000 --- a/content/discover/feed-8bcac9172478b4f24938d4044eac7839.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Set Studio -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://set.studio/feed - feedtype: rss - feedid: 8bcac9172478b4f24938d4044eac7839 - websites: - https://set.studio/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - The Index - relme: - https://mastodon.design/@setstudio: true - https://mastodon.social/@belldotbz: true - last_post_title: 'The Index: Issue #26' - last_post_description: Happy Monday! I’m doing a bit of admin at the moment in relation - to bringing Piccalilli back. Some of you might remember the Piccalilli newsletter. - It was the precursor to this newsletter. I’m - last_post_date: "2024-01-29T07:24:00Z" - last_post_link: https://set.studio/the-index-issue-26/ - last_post_categories: - - The Index - last_post_guid: 9a49184c6eceb923f8782e30e52291c1 - score_criteria: - cats: 0 - description: 0 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8be54f6de22f1a0548648a142789515b.md b/content/discover/feed-8be54f6de22f1a0548648a142789515b.md deleted file mode 100644 index 9ae4533e4..000000000 --- a/content/discover/feed-8be54f6de22f1a0548648a142789515b.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: All Things Distributed -date: "1970-01-01T00:00:00Z" -description: Werner Vogels on building scalable and robust distributed systems -params: - feedlink: https://www.allthingsdistributed.com/atom.xml - feedtype: rss - feedid: 8be54f6de22f1a0548648a142789515b - websites: - https://www.allthingsdistributed.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Hacking our way to better team meetings - last_post_description: My team and I set out to build a simple note taking aide, - which transcribes and summarizes our meetings using Bedrock. Today, we’re making - the proof of concept available to everyone. - last_post_date: "2024-05-08T06:30:00-08:00" - last_post_link: https://www.allthingsdistributed.com/2024/05/hacking-our-way-to-better-team-meetings.html?utm_campaign=inbound&utm_source=rss - last_post_categories: [] - last_post_guid: ca1219aeaa345ec9d648c29e8cd8a29f - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8bed8b48e39586bd977f9ce9a5056304.md b/content/discover/feed-8bed8b48e39586bd977f9ce9a5056304.md new file mode 100644 index 000000000..aefb53685 --- /dev/null +++ b/content/discover/feed-8bed8b48e39586bd977f9ce9a5056304.md @@ -0,0 +1,50 @@ +--- +title: Fabrizio Tarizzo - Sito personale +date: "1970-01-01T00:00:00Z" +description: Sito web personale di Fabrizio Tarizzo, sviluppatore, sysadmin e attivista + per le libertà digitali +params: + feedlink: https://www.fabriziotarizzo.org/feeds/feed.rss + feedtype: rss + feedid: 8bed8b48e39586bd977f9ce9a5056304 + websites: + https://www.fabriziotarizzo.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - OpenPGP + - Web Key Directory + - software + relme: + https://github.com/roughconsensusandrunningcode: true + https://www.fabriziotarizzo.org/: true + last_post_title: Rilasciato WKD.NET + last_post_description: Rilasciata una implementazione C# di OpenPGP Web Key Directory + (WKD), un servizio per individuare una chiave OpenPGP associate ad un indirizzo + e-mail utilizzando un servizio Web e il protocollo HTTPS + last_post_date: "2023-01-04T22:00:20+01:00" + last_post_link: https://www.fabriziotarizzo.org/redirect/software/wkd-dotnet/repo/ + last_post_categories: + - OpenPGP + - Web Key Directory + - software + last_post_language: "" + last_post_guid: 6787551fe1e4dd0d109be9a3fedf1091 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: it +--- diff --git a/content/discover/feed-8bfb0db7230a97ae7b2752ea5e14ced1.md b/content/discover/feed-8bfb0db7230a97ae7b2752ea5e14ced1.md new file mode 100644 index 000000000..4a83794ef --- /dev/null +++ b/content/discover/feed-8bfb0db7230a97ae7b2752ea5e14ced1.md @@ -0,0 +1,49 @@ +--- +title: Informatics and engineering +date: "1970-01-01T00:00:00Z" +description: Reports from the software front +params: + feedlink: https://informatics-science.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 8bfb0db7230a97ae7b2752ea5e14ced1 + websites: + https://informatics-science.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - eclipse e4 indigo + - eclipse e4 osgi self + - eclipse e4 self eclipsecon osgi + - scala eclipse e4 osgi + - self + relme: + https://informatics-science.blogspot.com/: true + https://www.blogger.com/profile/14259735131084627450: true + last_post_title: Back from ECE/OSGi Community Event 2012 + last_post_description: |- + I am slowly getting my shape back after a very exhausting week, full of interesting discussions and beers at Hotel Nestor's bar! + + I'm very glad I had the opportunity to meet many peers of the Eclipse + last_post_date: "2012-10-29T10:43:00Z" + last_post_link: https://informatics-science.blogspot.com/2012/10/my-eclipsecon-europe-osgi-community.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 2ae4afeb0d47e13e7645efa24c34e60c + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8c0db80719a1b1ea3f8afc158201be11.md b/content/discover/feed-8c0db80719a1b1ea3f8afc158201be11.md new file mode 100644 index 000000000..e82476eb6 --- /dev/null +++ b/content/discover/feed-8c0db80719a1b1ea3f8afc158201be11.md @@ -0,0 +1,139 @@ +--- +title: Ddosing World +date: "2023-11-16T04:22:48-08:00" +description: All is well when ddosing is written on my blog +params: + feedlink: https://jovemazul.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 8c0db80719a1b1ea3f8afc158201be11 + websites: + https://jovemazul.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ddos + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: So Ddosing is Really Cool + last_post_description: "" + last_post_date: "2021-04-16T09:01:36-07:00" + last_post_link: https://jovemazul.blogspot.com/2021/04/so-ddosing-is-really-cool.html + last_post_categories: + - ddos + last_post_language: "" + last_post_guid: 6a02d26d6a1326d60266dd0cf3bbb9d4 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8c1358cfa34ccc6e8b0a84c23332d55e.md b/content/discover/feed-8c1358cfa34ccc6e8b0a84c23332d55e.md new file mode 100644 index 000000000..3ff773d5b --- /dev/null +++ b/content/discover/feed-8c1358cfa34ccc6e8b0a84c23332d55e.md @@ -0,0 +1,42 @@ +--- +title: Chris Miles Writes Python +date: "2024-03-09T11:20:15+11:00" +description: Chris Miles writes about the Python programming language. +params: + feedlink: https://chris-miles-writes-python.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 8c1358cfa34ccc6e8b0a84c23332d55e + websites: + https://chris-miles-writes-python.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - pylons + - python + relme: + https://chris-miles-writes-python.blogspot.com/: true + last_post_title: PYPI mirror + last_post_description: "" + last_post_date: "2010-10-11T17:47:00+11:00" + last_post_link: https://chris-miles-writes-python.blogspot.com/2010/10/pypi-mirror.html + last_post_categories: [] + last_post_language: "" + last_post_guid: f6cdeca2228c3f8918e062079a0664d0 + score_criteria: + cats: 2 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8c1b67c8eb815b3569a48bf639b59cf6.md b/content/discover/feed-8c1b67c8eb815b3569a48bf639b59cf6.md deleted file mode 100644 index 5e41ec1d4..000000000 --- a/content/discover/feed-8c1b67c8eb815b3569a48bf639b59cf6.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: '@btconf.bsky.social - beyond tellerrand' -date: "1970-01-01T00:00:00Z" -description: 'beyond tellerrand is the affordable single-track event where creativity - and technology meet. Taking place in a renowned, familiar and friendly atmosphere. - Next event: Berlin, September 11–12' -params: - feedlink: https://bsky.app/profile/did:plc:eonmw4yebwrzdizbkjmk54a2/rss - feedtype: rss - feedid: 8c1b67c8eb815b3569a48bf639b59cf6 - websites: - https://bsky.app/profile/btconf.bsky.social: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8c2789a73ee74526fcd2bc351e2141c7.md b/content/discover/feed-8c2789a73ee74526fcd2bc351e2141c7.md deleted file mode 100644 index 936e51d2b..000000000 --- a/content/discover/feed-8c2789a73ee74526fcd2bc351e2141c7.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Calum Ryan - Bookmarks -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://calumryan.com/feeds/bookmarks/rss - feedtype: rss - feedid: 8c2789a73ee74526fcd2bc351e2141c7 - websites: - https://calumryan.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://fed.brid.gy/r/https:/calumryan.com/: false - https://github.com/calumryan: true - https://indieweb.org/User:Calumryan.com: false - https://micro.blog/calumryan: false - https://toot.cafe/@calumryan: false - last_post_title: CSS :has( ) A Parent Selector Now - last_post_description: "" - last_post_date: "1970-01-01T00:00:00Z" - last_post_link: https://calumryan.com/bookmarks/3588 - last_post_categories: [] - last_post_guid: 29bcf1b061f5f2eccacfc7599cd6e819 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8c375b3ddaaf5392c94025c37cfa8c94.md b/content/discover/feed-8c375b3ddaaf5392c94025c37cfa8c94.md deleted file mode 100644 index c1d75d470..000000000 --- a/content/discover/feed-8c375b3ddaaf5392c94025c37cfa8c94.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Microformats Wiki - Recent changes [en] -date: "2024-06-04T12:59:54Z" -description: Track the most recent changes to the wiki in this feed. -params: - feedlink: https://microformats.org/wiki/index.php?feed=atom&title=Special%3ARecentChanges - feedtype: atom - feedid: 8c375b3ddaaf5392c94025c37cfa8c94 - websites: - https://microformats.org/wiki/User:PaulDowney: false - https://microformats.org/wiki/User:Pfefferle: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8c378eb11d01b5af21990e9da1210331.md b/content/discover/feed-8c378eb11d01b5af21990e9da1210331.md new file mode 100644 index 000000000..cefa26a6b --- /dev/null +++ b/content/discover/feed-8c378eb11d01b5af21990e9da1210331.md @@ -0,0 +1,49 @@ +--- +title: Thots that remain Thot +date: "2024-03-14T00:21:22-07:00" +description: "" +params: + feedlink: https://meomalai.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 8c378eb11d01b5af21990e9da1210331 + websites: + https://meomalai.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Government Officials + - Indian System + - Ration Card + relme: + https://eclipseo.blogspot.com/: true + https://meomalai.blogspot.com/: true + https://quickfix-bpm.blogspot.com/: true + https://www.blogger.com/profile/04319454473329758815: true + last_post_title: Getting a Ration Card !! - Not A Tasty Piece of Cake + last_post_description: "" + last_post_date: "2012-07-01T20:54:58-07:00" + last_post_link: https://meomalai.blogspot.com/2012/07/getting-ration-card-piece-of-cake.html + last_post_categories: + - Government Officials + - Indian System + - Ration Card + last_post_language: "" + last_post_guid: 5e86187df3bae733aae1ac91e6cb897c + score_criteria: + cats: 3 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8c78d4797053603a28d74a921e2c2488.md b/content/discover/feed-8c78d4797053603a28d74a921e2c2488.md deleted file mode 100644 index b7bb13e96..000000000 --- a/content/discover/feed-8c78d4797053603a28d74a921e2c2488.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: OpenStack on Silicon Loons -date: "1970-01-01T00:00:00Z" -description: Recent content in OpenStack on Silicon Loons -params: - feedlink: https://www.siliconloons.com/categories/openstack/index.xml - feedtype: rss - feedid: 8c78d4797053603a28d74a921e2c2488 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Running Openstack and OVN in Vagrant - last_post_description: OVN has been evolving a lot since it was announced over a - year ago. The project is being developed by many developers from VMware, Red Hat, - IBM, eBay and other companies and individuals. If you - last_post_date: "2016-02-20T15:06:39-06:00" - last_post_link: https://blog.siliconloons.com/posts/2016-02-20-ovn-vagrant/ - last_post_categories: [] - last_post_guid: db3549c7868996e3eb771282da130269 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8c8557e2697c329411cb9592492f9cbc.md b/content/discover/feed-8c8557e2697c329411cb9592492f9cbc.md deleted file mode 100644 index d662ea19e..000000000 --- a/content/discover/feed-8c8557e2697c329411cb9592492f9cbc.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: sexplanations -date: "1970-01-01T00:00:00Z" -description: Sexplanations is sexedutainment for the universe hosted by Dr. Lindsey - Doe, doctor of human sexuality and clinical sexologist. -params: - feedlink: https://rss.nebula.app/video/channels/sexplanations.rss?plus=true - feedtype: rss - feedid: 8c8557e2697c329411cb9592492f9cbc - websites: - https://nebula.tv/sexplanations/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8c8c9995177bc40c3cb93d8ea8e0b684.md b/content/discover/feed-8c8c9995177bc40c3cb93d8ea8e0b684.md index 88e2865e0..6e4fc17f3 100644 --- a/content/discover/feed-8c8c9995177bc40c3cb93d8ea8e0b684.md +++ b/content/discover/feed-8c8c9995177bc40c3cb93d8ea8e0b684.md @@ -12,14 +12,10 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: - Business - Technology @@ -39,17 +35,22 @@ params: - leadership - meetups - remote work + last_post_language: "" last_post_guid: 28c9f154c9657e8f57a12da7c5663cec score_criteria: cats: 2 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 16 + score: 20 ispodcast: true isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-8c8fbe095b570dffdd84a8a18212447b.md b/content/discover/feed-8c8fbe095b570dffdd84a8a18212447b.md index 4e0c3a760..4f9d400f4 100644 --- a/content/discover/feed-8c8fbe095b570dffdd84a8a18212447b.md +++ b/content/discover/feed-8c8fbe095b570dffdd84a8a18212447b.md @@ -17,24 +17,29 @@ params: categories: - News relme: {} - last_post_title: Inside TikTok's extraordinary almost-deal with the U.S. - last_post_description: TikTok offered the Biden administration a kill switch. Today - on “Post Reports,” why the U.S. government declined.Read more:In 2022, TikTok - offered the U.S. government an extraordinary deal. The - last_post_date: "2024-06-03T21:58:20Z" - last_post_link: https://www.washingtonpost.com/podcasts/post-reports/inside-tiktoks-extraordinary-almostdeal-with-the-us/?tid=aud_rsslink&utm_source=podcasts&utm_medium=referral&utm_campaign=post-reports + last_post_title: France is in turmoil. Will the Olympics be okay? + last_post_description: Last week, France was preparing for the possibility of its + first far-right government since World War II. Now, it faces a political crossroads, + just weeks before the Olympics kick off in Paris.French + last_post_date: "2024-07-08T22:10:47Z" + last_post_link: https://www.washingtonpost.com/podcasts/post-reports/france-is-in-turmoil-will-the-olympics-be-okay/?tid=aud_rsslink&utm_source=podcasts&utm_medium=referral&utm_campaign=post-reports last_post_categories: [] - last_post_guid: 7751d17588863c39531311f29cbe43dd + last_post_language: "" + last_post_guid: 3ac449c8e84fe39d9c15582d77bb2a2f score_criteria: cats: 1 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 12 + score: 16 ispodcast: true isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-8c9383859e139eb5ee7bf9668b623345.md b/content/discover/feed-8c9383859e139eb5ee7bf9668b623345.md deleted file mode 100644 index 08fdd1bb7..000000000 --- a/content/discover/feed-8c9383859e139eb5ee7bf9668b623345.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Seb -date: "1970-01-01T00:00:00Z" -description: Public posts from @sebsel@mastodon.social -params: - feedlink: https://mastodon.social/@sebsel.rss - feedtype: rss - feedid: 8c9383859e139eb5ee7bf9668b623345 - websites: - https://mastodon.social/@sebsel: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://seblog.nl/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8c9a1eaf0067eac0cb7c19eb69927245.md b/content/discover/feed-8c9a1eaf0067eac0cb7c19eb69927245.md new file mode 100644 index 000000000..6ad95004a --- /dev/null +++ b/content/discover/feed-8c9a1eaf0067eac0cb7c19eb69927245.md @@ -0,0 +1,83 @@ +--- +title: Java Persistence Performance +date: "2024-07-03T03:19:45-07:00" +description: A blog on Java, performance, scalability, concurrency, object-relational + mapping (ORM), Java Persistence API (JPA), persistence, databases, caching, Oracle, + MySQL, NoSQL, XML, JSON, EclipseLink, +params: + feedlink: https://java-persistence-performance.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 8c9a1eaf0067eac0cb7c19eb69927245 + websites: + https://java-persistence-performance.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - batch + - batch-fetch + - benchmark + - cache + - cluster + - concurrency + - eclipselink + - hierarchical + - history + - index + - java + - join-fetch + - jpa + - jpql + - json + - jvm + - kryo + - lists + - maps + - mongo-db + - moxy + - no-sql + - partitioning + - pof + - reflection + - sequence + - serialization + - sql + - synchronized + - tuning + - volatile + - xml + relme: + https://draft.blogger.com/profile/07275512393744882781: true + https://java-persistence-performance.blogspot.com/: true + last_post_title: Optimizing Java Serialization - Java vs XML vs JSON vs Kryo vs + POF + last_post_description: "" + last_post_date: "2013-08-27T05:52:00-07:00" + last_post_link: https://java-persistence-performance.blogspot.com/2013/08/optimizing-java-serialization-java-vs.html + last_post_categories: + - eclipselink + - json + - kryo + - moxy + - pof + - serialization + - xml + last_post_language: "" + last_post_guid: 746730ab1201ce9f561d4331487fcc5e + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8c9ea0d957ff5f7629f6016c2fafc29b.md b/content/discover/feed-8c9ea0d957ff5f7629f6016c2fafc29b.md deleted file mode 100644 index 950618819..000000000 --- a/content/discover/feed-8c9ea0d957ff5f7629f6016c2fafc29b.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: mandy brown -date: "1970-01-01T00:00:00Z" -description: Public posts from @aworkinglibrary@mstdn.social -params: - feedlink: https://mstdn.social/@aworkinglibrary.rss - feedtype: rss - feedid: 8c9ea0d957ff5f7629f6016c2fafc29b - websites: - https://mstdn.social/@aworkinglibrary: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://aworkinglibrary.com/: true - https://everythingchanges.us/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8ca75f76ce7864839b5085bf05c62b63.md b/content/discover/feed-8ca75f76ce7864839b5085bf05c62b63.md new file mode 100644 index 000000000..0df48618c --- /dev/null +++ b/content/discover/feed-8ca75f76ce7864839b5085bf05c62b63.md @@ -0,0 +1,133 @@ +--- +title: JP Moresmau's Programming Blog +date: "1970-01-01T00:00:00Z" +description: In this blog I talk about some of the personal programming I do as a + hobby. From Java to Rust via Haskell, I've played around with a lot of technologies + and still try to have fun with new languages +params: + feedlink: https://jpmoresmau.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 8ca75f76ce7864839b5085bf05c62b63 + websites: + https://jpmoresmau.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Android + - Artificial Intelligence + - Aspects + - Cabal + - Compilation + - Concurrent Programming + - Debugging + - Design By Contract + - Dynamic languages + - Eclipse + - EclipseFP + - FRP + - Flex + - Functional Programming + - GHC + - GUI + - Genetic Programming + - Genetic algorithms + - HGL + - HTML 5 + - Haskell + - Hibernate + - Hoogle + - HughesPJ + - IDE + - JSON + - Java + - JavaFX + - JavaScript + - Linux + - Mobile + - Monads + - NXT + - Network + - Neural Network + - Object Oriented Programming + - Parsec + - PostgreSQL + - Python + - RIA + - Rhino + - Rust + - SQL + - SWT + - Scala + - Scion + - Security + - Software design + - Ubuntu + - WebAssembly + - Windows + - algorithms + - annotations + - bevy + - buildwrapper + - cassandra + - closures + - databases + - development + - docker + - elastic + - fun + - functions + - game + - games + - generics + - golang + - graph databases + - graphql + - hidden markov model + - jobs + - maths + - mazes + - natural language processing + - parsing + - performance + - properties + - rant + - robotics + - scripting + - self-indulgence + - self-pity + - self-publicity + - testing + - tooling + relme: + https://jpmoresmau.blogspot.com/: true + https://www.blogger.com/profile/09964251063221757176: true + last_post_title: Experimenting with car physics in Bevy + last_post_description: I was curious about how a racing game, say, would implement + the physics of a car (accelerating, braking) in a ECS setting. I found this page + https://asawicki + last_post_date: "2023-06-16T12:15:00Z" + last_post_link: https://jpmoresmau.blogspot.com/2023/06/experimenting-with-car-physics-in-bevy.html + last_post_categories: + - Rust + - bevy + - game + last_post_language: "" + last_post_guid: 0932d40ecfa0866e789c609e6befa371 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8cacf78a16d8981c158e6e33e4a0f3a6.md b/content/discover/feed-8cacf78a16d8981c158e6e33e4a0f3a6.md new file mode 100644 index 000000000..e3965492f --- /dev/null +++ b/content/discover/feed-8cacf78a16d8981c158e6e33e4a0f3a6.md @@ -0,0 +1,46 @@ +--- +title: Marcos Costales +date: "1970-01-01T00:00:00Z" +description: Recent content on Marcos Costales +params: + feedlink: https://costales.github.io/index.xml + feedtype: rss + feedid: 8cacf78a16d8981c158e6e33e4a0f3a6 + websites: + https://costales.github.io/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://costales.github.io/: true + https://costales.github.io/posts/: true + https://github.com/costales: true + last_post_title: Create a Bitcoin node into your Raspberry PI with only a few GBs, + even for the installation + last_post_description: |- + Which is the main purpose of this? + Run a Bitcoin node needs over 1/2 TB of hard disk. It's not so much, but if you have a Raspberry PI or any other small computer, the space is a problem. + A pruned + last_post_date: "2023-06-11T18:22:45+02:00" + last_post_link: https://costales.github.io/posts/bitcoin-pruned-node/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 86ac92c454e1019e84eab72e3b92aa91 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-8cb29ae94a72ad668279e9af9bf1b17c.md b/content/discover/feed-8cb29ae94a72ad668279e9af9bf1b17c.md new file mode 100644 index 000000000..bc1a16608 --- /dev/null +++ b/content/discover/feed-8cb29ae94a72ad668279e9af9bf1b17c.md @@ -0,0 +1,53 @@ +--- +title: AspectJ and Eclipse Programming +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://andrewclement.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 8cb29ae94a72ad668279e9af9bf1b17c + websites: + https://andrewclement.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - annotations + - aspectj + - grails + - groovy + - introductory + - java + - jdt + - ltw + - release + - sts + relme: + https://andrewclement.blogspot.com/: true + https://www.blogger.com/profile/09652435321228153340: true + last_post_title: AspectJ 1.9.0.RC1 released + last_post_description: The first release candidate of AspectJ 1.9 is out. This is + the version to use if working on Java 9 - but it also works on Java 8 too. It + includes a recent version of the Eclipse Java9 compiler (from + last_post_date: "2017-10-23T22:26:00Z" + last_post_link: https://andrewclement.blogspot.com/2017/10/aspectj-190rc1-released.html + last_post_categories: [] + last_post_language: "" + last_post_guid: be7b321b9ebfa077bbb6334cae420def + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8cbb4f819c6e61493cb11a627ca30ef7.md b/content/discover/feed-8cbb4f819c6e61493cb11a627ca30ef7.md new file mode 100644 index 000000000..c7e9c2ceb --- /dev/null +++ b/content/discover/feed-8cbb4f819c6e61493cb11a627ca30ef7.md @@ -0,0 +1,47 @@ +--- +title: squeaki.sh +date: "1970-01-01T00:00:00Z" +description: Hey! I'm Stefano, the Founder and CEO at DatoCMS. Follow my thinking + on business, society, programming, and whatever else is on my mind. +params: + feedlink: https://squeaki.sh/rss.xml + feedtype: rss + feedid: 8cbb4f819c6e61493cb11a627ca30ef7 + websites: + https://squeaki.sh/: true + blogrolls: [] + recommended: [] + recommender: + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php + categories: [] + relme: + https://github.com/stefanoverna: true + https://mastodon.social/@steffoz: true + https://squeaki.sh/: true + last_post_title: 10 days of Vipassana meditation + last_post_description: |- + In my quest to try new things for short periods of time, I had the opportunity to participate in a 10-day Vipassana meditation course, "as taught by Goenka". + What is Vipassana? It's a meditation + last_post_date: "2024-05-19T10:38:21Z" + last_post_link: https://squeaki.sh/p/10-days-of-vipassana-meditation + last_post_categories: [] + last_post_language: "" + last_post_guid: 4bce8ec57813e3823032321412a109cc + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8cbfc8dda44a01548394340e34ee0def.md b/content/discover/feed-8cbfc8dda44a01548394340e34ee0def.md new file mode 100644 index 000000000..6e661311e --- /dev/null +++ b/content/discover/feed-8cbfc8dda44a01548394340e34ee0def.md @@ -0,0 +1,45 @@ +--- +title: dominikhofer dot me +date: "1970-01-01T00:00:00Z" +description: Hi and welcome to my personal lil corner of the internet. I hope you + enjoy your stay! +params: + feedlink: https://dominikhofer.me/rss.xml + feedtype: rss + feedid: 8cbfc8dda44a01548394340e34ee0def + websites: + https://dominikhofer.me/: true + blogrolls: [] + recommended: [] + recommender: + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php + categories: [] + relme: + https://dominikhofer.me/: true + https://mastodon.design/@dominik: true + last_post_title: Adapting to the algorithm + last_post_description: It’s really weird when you discover that you have developed + a behaviour, that you despise in others, unconsciously yourself. + last_post_date: "2024-02-29T00:00:00Z" + last_post_link: https://dominikhofer.me/adapting-to-the-algorithm + last_post_categories: [] + last_post_language: "" + last_post_guid: a93ef4414394d07a0352bc44467d677f + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8cc2ed2a72c75167d1f28d0e246c3769.md b/content/discover/feed-8cc2ed2a72c75167d1f28d0e246c3769.md index 758fd569d..501ebde53 100644 --- a/content/discover/feed-8cc2ed2a72c75167d1f28d0e246c3769.md +++ b/content/discover/feed-8cc2ed2a72c75167d1f28d0e246c3769.md @@ -12,33 +12,35 @@ params: blogrolls: [] recommended: [] recommender: - - https://chrisburnell.com/feed.xml - https://rknight.me/subscribe/posts/rss.xml categories: [] relme: - https://codepen.io/daviddarnes: false - https://dribbble.com/daviddarnes: false + https://darn.es/: true https://github.com/daviddarnes: true https://mastodon.design/@daviddarnes: true - https://twitter.com/DavidDarnes: false - https://www.linkedin.com/in/daviddarnes/: false - last_post_title: RSS reader snapshot - last_post_description: Anywho I found the export button and did a little formatting - to present a snapshot of all the feeds I'm following right now. - last_post_date: "2024-05-17T08:09:21Z" - last_post_link: https://darn.es/rss-reader-snapshot/ + last_post_title: 'zeroheight x Storybook: Design system workflow tips' + last_post_description: I was joined by Rosie from our Product Team and Varun from + Chromatic (Storybook) about the features and benefits of using Storybook with + zeroheight. + last_post_date: "2024-07-02T14:00:00Z" + last_post_link: https://zeroheight.com/webinars/zeroheight-x-storybook-design-system-workflow-tips/ last_post_categories: [] - last_post_guid: 7d870b24fa854e61aa2db2fdd003e17c + last_post_language: "" + last_post_guid: e53f3b04f1272259e02bc542170f7346 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-8cceac1fd780f94cfcf1158529a9bf45.md b/content/discover/feed-8cceac1fd780f94cfcf1158529a9bf45.md new file mode 100644 index 000000000..550e29dea --- /dev/null +++ b/content/discover/feed-8cceac1fd780f94cfcf1158529a9bf45.md @@ -0,0 +1,57 @@ +--- +title: Look Beyond the Code +date: "1970-01-01T00:00:00Z" +description: A software developer's perspective on issues beyond the code that he + writes. +params: + feedlink: https://lookbeyondthecode.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 8cceac1fd780f94cfcf1158529a9bf45 + websites: + https://lookbeyondthecode.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Blogging + - Setting a Good Example + - defining terminology + - google + - internet access + - net neutrality + - telcos + - think before you speak + - web 2.0 + relme: + https://eclipsetacy.blogspot.com/: true + https://lookbeyondthecode.blogspot.com/: true + https://www.blogger.com/profile/10420435504140055673: true + last_post_title: Defining Web 2.0 + last_post_description: I was recently sitting in a presentation at a conference + about the latest offerings from Myspodblog. This presentation, not unlike several + others I've heard, was being given by Dan. (Obviously + last_post_date: "2006-12-10T21:09:00Z" + last_post_link: https://lookbeyondthecode.blogspot.com/2006/12/defining-web-20.html + last_post_categories: + - defining terminology + - think before you speak + - web 2.0 + last_post_language: "" + last_post_guid: 782cbff52f16f45b07e0847d7dc76cbc + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8d2cde9f463ce284d098f79383081891.md b/content/discover/feed-8d2cde9f463ce284d098f79383081891.md new file mode 100644 index 000000000..625445769 --- /dev/null +++ b/content/discover/feed-8d2cde9f463ce284d098f79383081891.md @@ -0,0 +1,53 @@ +--- +title: Linux Australia +date: "1970-01-01T00:00:00Z" +description: Representing Free Software and Open Source Communities +params: + feedlink: https://linux.org.au/feed/ + feedtype: rss + feedid: 8d2cde9f463ce284d098f79383081891 + websites: + https://linux.org.au/: true + https://linux.org.au/jobs/: false + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Grants and Grant Applications + - Linux Australia + - grant application + - grants + - grants program + relme: + https://linux.org.au/: true + last_post_title: Linux Australia’s 2024 Grants Program is now open + last_post_description: Linux Australia is pleased to announce that the 2024 Grants + Program is now open. Applications are welcome from all members of Linux Australia. + Membership of Linux Australia is free. As in 2023, there + last_post_date: "2024-06-18T10:49:29Z" + last_post_link: https://linux.org.au/linux-australias-2024-grants-program-is-now-open/ + last_post_categories: + - Grants and Grant Applications + - Linux Australia + - grant application + - grants + - grants program + last_post_language: "" + last_post_guid: 785f76534560be1f2e086b40b314326a + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-8d2e0677c482526255d5dc638473ab37.md b/content/discover/feed-8d2e0677c482526255d5dc638473ab37.md deleted file mode 100644 index 679a178de..000000000 --- a/content/discover/feed-8d2e0677c482526255d5dc638473ab37.md +++ /dev/null @@ -1,2406 +0,0 @@ ---- -title: I am busy changing the world -date: "2024-06-15T13:00:34+07:00" -description: I write, therefore I am. -params: - feedlink: https://www.dangtrinh.com/feeds/posts/default/-/openstack - feedtype: atom - feedid: 8d2e0677c482526255d5dc638473ab37 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - python - - ubuntu - - django - - linux - - error - - php - - openstack - - script - - wordpress - - edx - - bash - - quote - - shell - - user - - javascript - - mysql - - edx-platform - - nginx - - moodle - - html - - command line - - fix - - windows - - Open edX - - Searchlight - - course - - configuration - - docker - - active directory - - jquery - - list - - api - - bug - - csv - - plugin - - issue - - server - - ssh - - template - - database - - ldap - - convert - - email - - file - - mariadb - - pip - - query - - search - - stein - - Google - - Multisite - - css - - form - - password - - update - - delete - - google apps script - - upgrade - - xubuntu - - book - - container - - filter - - pdf - - reset - - ssl - - PowerSchool - - SQLAlchemy - - celery - - cli - - command - - education - - image - - install - - online - - task - - Oracle - - Seth Godin - - Udemy - - admin - - apt-get - - authentication - - config - - db - - get - - hack - - module - - permission - - rabbitmq - - setting - - virtualenv - - check - - console - - exercise - - git - - google drive sdk - - migrate - - migration - - music - - photography - - service - - string - - table - - theme - - tool - - wp-cli - - Freelancer - - Kubernetes - - Redmine - - ansible - - crontab - - excel - - export - - installation - - lecture - - local - - model - - tacker - - video - - AD - - Android - - Apache - - CMS - - LMS - - Microsoft - - Ruby - - cool - - curl - - dashboard - - data - - debug - - deploy - - devstack - - dpkg - - js - - login - - opensource - - path - - philosophy - - read - - snippet - - sql - - test - - utility - - web - - "14.04" - - backup - - blog - - dictionary - - editor - - free - - import - - key - - life - - love - - memory - - movie - - photo - - remove - - rename - - restore - - seminar - - settings - - text - - Atom - - DN - - ElasticSearch - - account - - app - - aws - - cache - - change - - cloud - - custom - - day - - dns - - find - - function - - great - - gunicorn - - hide - - missing - - remote - - report - - review - - root - - session - - sort - - source - - spreadsheet - - supervisord - - troubleshoot - - virtualbox - - Gitlab - - Internet - - POST - - URL - - VMware - - VNF - - Vyatta - - awesome - - certificate - - cmd - - code - - copy - - debian - - domain - - download - - github - - images - - inkscape - - json - - mindtouch - - multiple - - network - - paramiko - - php5-fpm - - proxy - - rake - - registry - - smtp - - start - - ubuntu 16.04 - - upload - - username - - vagrant - - weekly report - - "2015" - - Calendar - - Chrome - - Field - - GUI - - Gmail - - Google App Engine - - Kolla - - MOOCs - - OpenEdX - - PyCon - - REST - - Rails - - SSO - - Steve Jobs - - UI - - Upstart - - Vancouver - - VyOS - - ajax - - all - - auth - - basic - - batch - - command prompt - - community - - customization - - default - - dict - - directory - - documentary - - driver - - drupal - - empty - - existed - - film - - firewall - - folder - - gateway - - google app - - handy - - heroku - - ingress - - istio - - k8s - - keystone - - kong - - link - - npm - - number - - object - - open - - option - - package - - page - - process - - project management - - purge - - quote of the day - - random - - registration - - release - - repository - - rss - - school - - students - - supervisor - - svg - - trusty - - users - - varnish - - vnfd - - weekly - - widget - - wxPython - - "2013" - - "2018" - - BeagleBone Black - - Bootstrap - - CPU - - Canada - - DHCP - - Da Lat - - GAE - - Google Drive - - HTTP - - HTTPS - - IMAP - - IdP - - ImageField - - JAVA - - Juju - - Loop - - Montreal - - Moosh - - NFV - - NoSQL - - OpenWRT - - PPA - - PostgreSQL - - PowerShell - - PySAML2 - - Redis - - SFC - - Summit - - TOSCA - - UserProfile - - Vietnamese - - W3 Total Cache - - Windows Server 2008 R2 - - attribute - - block - - browser - - build - - bundle - - clip - - column - - comment - - core - - cover - - date - - datetime - - design - - development - - django-auth-ldap - - dsquery - - element - - example - - expired - - extension - - feed - - formset - - fullstack - - generate - - genius - - gitlab-ce - - grep - - groups - - happiness - - history - - host - - idea - - if - - insert - - inspired - - instance - - interface - - language - - lists - - log - - mass - - media - - meetup - - menu - - merge - - message - - mp4 - - name - - note - - notification - - odoo - - of - - openldap - - openssl - - os - - output - - packages - - panel - - parent - - pdftk - - php.ini - - php5-ldap - - platform - - port - - production - - profile - - programmatically - - project - - push - - question - - redirect - - replace - - request - - resize - - rotate - - row - - rule - - saml2 - - save - - security - - server block - - server-vars.yml - - service mesh - - setup - - share - - sheet - - song - - spam - - static - - storage - - story - - student - - studio - - sublime text - - talk - - terminal - - the - - unicode - - upstream training - - usage - - version - - view - - views - - vulnerability - - webinar - - work - - workaround - - world - - xml - - xqueue - - yaml - - "12.04" - - "16.04" - - "17.04" - - "2014" - - 3D printer - - Apple - - BIOS - - Bill Gates - - CLI_SCRIPT - - CPU load - - ChromiumOS - - Denver - - GAM - - HCMC - - IDE - - Internet Explorer - - JPG - - Korean drama - - Linux Foundation - - Logstash - - M3D - - Mac OSX - - ModelForm - - ORA-01109 - - ORA-10873 - - OpenStack Korea User Group - - PEM - - Plone - - PyCon2014 - - Rest API - - RubyOnRails - - SAML - - SSLv3 - - Seoul - - Stop and Go Boutique - - TED - - The Heirs - - Tiki wiki - - Tikiwiki - - Trusty Tahr - - VNFFG - - VNFM - - VTC - - VietOpenInfra - - Wordpress Multisite - - XBlock - - XFDE - - access - - add - - address - - administration - - administrator - - age - - alive - - alter - - apps - - apt - - architecture - - archive - - array - - articles - - audio - - automation - - awk - - background - - bashrc - - beautiful - - beginner - - bicycle - - birthday - - blocked - - blueprint - - branch - - broker - - buffer - - bulk - - button - - bypass - - category - - certbot - - change the world - - cherrypy - - clean - - client - - collection - - commandline - - compute - - conf - - conference - - conjure-up - - cookie - - count - - crap - - create - - credentials - - crown - - crt - - cx_Oracle - - cycle - - dash - - datastore - - deb - - demo - - deployment - - desktop - - digital forensics - - disable - - discussion - - display - - django-admin - - django-celery - - djcelery - - dms - - document - - dpkg-reconfigure - - dream - - e-commerce - - ebook - - echo - - ecs - - edxapp - - effect - - embedded - - enroll - - environment - - exclude - - execute - - existing - - facebook - - failed - - fast - - fastcgi - - feature - - featured image - - features - - feeling - - fetch - - ffmpeg - - files - - find and replace - - firefox - - flags - - flask - - flower - - foreach - - forloop - - forms - - forwarding graph - - freeradius - - fun - - functions - - functions.php - - gem - - google apps - - grid - - group - - grub - - head - - heart - - highlights - - home - - hook - - howto - - include - - integer - - ip - - isdigit - - item - - jinja2 - - just married - - kernel - - keycloak - - kill - - korean - - last - - layout - - lenovo - - letsencrypt - - limit - - line - - links - - lms.env.json - - logs - - mac - - machine - - make - - manage - - management - - map - - mapping - - master - - meeting - - message framework - - milestone - - mind - - mode - - mongo - - mongodb - - monitor - - moodle2.7 - - morning - - mozilla - - mp3 - - my.cnf - - nat - - navigation - - neat - - neutron - - new - - node - - nodejs - - nova - - openpyxl - - opensourced - - order - - overwrite - - p770 - - pagination - - parser - - paver - - pear - - phantomjs - - photos - - piano - - plan - - playbook - - policy - - portrait - - postgres - - print - - programming - - project update - - projects - - ps - - public - - pull - - python-dev - - quick - - re-install - - reader - - real - - reinstall - - remember - - repl - - repo - - repositories - - research - - reserved ip - - responsive - - restart - - result - - rewrite - - rsync - - scanner - - schedule - - second - - secret - - sed - - select - - shortcut - - show - - simplesamlphp - - single sign on - - site - - slapd - - social - - sock - - software - - sources - - south - - sp - - sshd_config - - streaming - - sudo - - sync - - syntax - - sys - - tag - - tail - - teacher - - team - - template course - - text editor - - thing - - think - - time - - timezone - - tip - - toggle - - tox - - train - - translate - - transparent - - travel - - type - - ubuntu 12.04 - - university - - unmet dependencies - - up - - upstream - - vCenter - - value - - vector - - virtual machine - - vm - - website - - wedding - - wifi - - wiki - - words - - write - - wsgi - - wxr - - xfce - - yml - - youtube - - '#13' - - '#adminmenu' - - $PATH - - .NET - - .zshrc - - '/bin/bash/ ' - - /bin/echo - - /bin/sh - - /usr/local - - "04" - - "1.7" - - 100% - - 100th - - 127.0.0.1 - - "13.10" - - "1698" - - "16:9" - - "180" - - "2.7" - - 2008 R2 - - 2008 sp2 - - "2017" - - "2019" - - "2030" - - "2042" - - "28000" - - 2D - - "401" - - "443" - - "45" - - 6 minutes - - 7.8.1 - - 8.14.0 - - "80" - - "8614" - - "9.0" - - ADB - - AI - - Aaron Swartz - - Admin Console - - AirBnB - - Alchemist - - Apache Directory Studio - - AppleScript - - April - - Artificial Intelligencel - - Atto - - Augustine - - AuthenticationForm - - B2B - - BBB - - BC - - BFS - - BIND - - Back to top - - BeagleBone - - Blogger - - Butterfly - - C++ - - CC - - CFG - - CORS - - CQL - - CR2 - - CRUB - - CURLOPT_POSTFIELDS - - CURLOPT_SAFE_UPLOAD - - C_FORCE_ROOT - - CanCham - - Chinese - - Chris Hart - - Chrome Dev Tool - - ChromeOS - - Cleanmgr.exe - - Codeready - - Collaboration - - Computer - - Copernicus - - Craig Newmark - - Craigslist - - Cryptography - - Cryptography_HAS_SSL_ST - - DBMS - - DIY - - DKIM - - Desktop Experience - - Destiny - - Disaster recovery - - Disk Clean Up - - Django 1.7 - - DockerHub - - Dongmyo - - Dynamic DNS - - EACCES - - EDID - - ENTER key - - EOL - - ERROR 1698 - - ETSI - - Edison - - Elon Musks - - English - - FTP - - Fabric - - FileField - - FileSystemStorage - - FilteredSelectMultiple - - Frank Miller - - FreeTDS - - Freedom - - French - - G minor - - GADS - - GEM_CACHE - - GEM_HOME - - GEM_PATH - - GIMP - - Gates - - Gemfile - - Gemfile.lock - - Google API Console - - Google App API - - Google App Engine SDK - - Google Apps For Education - - Google Email Settings API - - Google Feed API - - HTTP_X_FORWARDED_FOR - - HUMAN - - Hack Jam - - Hacker Meetup - - Harvard - - Helen Hayes - - Ho Chi Minh City - - HttpResponseRedirect - - ICMP - - IE - - IFS - - IIS - - IP Protocal - - IP addresses - - ISNA - - ImportError - - InfiniteWP - - Innovator - - Internet Options - - InvalidTabsException - - Japanese - - Jay Chou - - Jean-Jacques Rousseau - - Jim Carrey - - John Stuart Mill - - Kabana - - Ken Robinson - - Kindle - - Korea - - LAN - - LC_CTYPE - - LTP Self Service Password - - Launchpad - - Learning Revolution - - Liberty - - LibreOffice - - LinkedIn - - Linux course - - Logtash - - M$ - - M2Crypto - - MACBOOK Air - - MANO - - MAVEN - - MAXREPEAT - - MG - - MS AD - - MS Active Directory - - MSAD - - MSSQL - - MailerHandler - - Maker - - ManyToMany - - Mars - - Maxim Gorky - - Maximum Worker Processes - - Memorial - - Multisites - - MySQL-python - - NLA - - NOPASSWD - - NS - - NSD - - NTP - - Natalie Portman - - OIDC - - ORACLE_HOME - - ORM - - OSM - - OST - - OU - - October - - Oliver Sacks - - OneToOneField - - Open Infrastructure Summit - - Open Source MANO - - OpenAcademy - - OpenDNS - - OpenFiler - - OpenInfra day - - OpenJDK - - OpenStack Foundation - - OpenVAS - - OrderedDict - - Oregan - - Oscar Wilde - - PEAP - - PIL - - PL - - PLA - - PM - - PNG - - POODLE - - PROTOCOL_SSLv3 - - PTG - - PacktPub - - Parent Portal - - Parental Control - - PasteDeploy - - Patrick Modiano - - Paul Graham - - Paulo Coelho - - Pearson - - Percona - - PowerCLI - - Prelude - - PyCon 2015 - - PyCon2016 - - QoS - - Quebec - - QuerySet.datetime - - R-18 - - R-19 - - R-26 - - R-6 - - R-7 - - R-8 - - RAW - - RDP - - RETURN key - - ROT13 - - Red Hat - - Reddit - - RequestContext - - SAM - - SFTP - - SMS - - SSIS - - SaveFileDialog - - Saving the Light - - Screen Options - - Search-Replace-DB - - September - - Shakespeare - - Sites - - Slimming Paint - - Snow - - So You Don't Get Lost in the Neighbourhood - - Socrates - - Soongsil University - - SpaceX - - Spring break - - StackTableJS - - Standford theme - - Statue - - Storyboard - - Super_L - - System32 - - T-Shirt - - THIRD_PARTY_AUTH - - Taiga - - Terry Fox - - Terry Fox Run 2016 - - Tet - - The Arrow - - The Book Thief - - The Verge - - Thich Nhat Hanh - - TinyMCE Advanced - - Toni Morrison - - Tor - - TreeView - - UCI - - UDF - - UEFI - - UNSCHOOL - - US - - USB - - USB to Ethernet adapter - - USR2 - - UTC - - Ubuntu 14.04 - - Ubuntu 17.04 - - Udacity - - Unicorn - - User Group - - VEEAM - - VIM - - VMware Workstation - - VNC - - VPS - - VT - - VT-x - - Viet Nam - - Viet OpenInfra - - Viet OpenStack - - VietStack - - Vietnam - - Vietnam OpenInfra User Group - - Vietnam Tech Conference - - Vietnamese schools - - Vietnamese. Job-alike - - Vine - - Visual Studio Code - - WPA2 Enterprise - - WPScan - - WWW - - Web-CAT - - Windows Active Directory Domain Services - - Windows Management Framework - - Windows Server - - Wittgenstein - - Xenial - - Yann Arthus-Bertrand - - Yiruma - - Zhuang Zhou - - Zhuangzi - - Zope - - _io - - a4 - - absolute path - - academia - - accents - - access denied - - accounts - - ace - - achieving - - activate - - activation - - activity - - adapter - - add_action - - addon - - addons - - admin app - - advanced settings - - afraid - - after - - afternoon - - agile - - album - - algorithm - - alias - - alien - - aligment - - allocated - - allow_root - - alock - - alpha channel - - alternate - - amazing - - amazon - - ampq - - amqp - - amr shortcode any widget - - angularjs - - animation - - annoying - - antispambee - - apache 2.4 - - apc - - api_interface - - apis - - apk - - appearance - - applet - - application - - application pools - - approve - - aptitude - - args - - argument - - art - - article - - ascending - - asset - - asterisk - - asynchromous - - attachment - - attacks - - attendance - - attitude - - aura window manager - - auth_socket - - authenticate - - author - - authorized_keys - - auto enroll - - auto-mount - - auto_now - - auto_now_add - - autocomplete - - automate - - automatic grading - - automatically - - autoremove - - autostart - - avatar - - away - - bPopup - - background-image - - backup mode - - backuppc - - balcony - - barcamp - - bare repository - - base - - bastion - - beautify - - beauty - - bellschedule - - best - - best practices - - beta - - binary - - binlog_format - - bitmap - - bitnami - - blocks - - blog_id - - blogging - - board - - boot - - boot repair - - boot-repair - - boris - - bower - - breadcrumb - - breakfast - - brick - - bridge - - browser detect - - bruteforce - - bug. developer tool - - buildout - - built-in - - bulk action - - bulk email - - bulk update - - bundler - - business - - byobu - - ca - - cached - - cafe - - calculate - - callable - - camera - - candy - - canteen - - capture - - car - - cartoon - - cassandra - - cat - - celerycam - - cell - - central - - ceremony - - cgi - - chage - - challenge - - changecase - - changes - - characters - - cherrymusic - - child - - childhood dreams - - choices - - chown - - chromedriver - - chromium - - chroot - - chsh - - chuyện - - ci - - cipher - - circular imports - - ckeditor - - class-based - - class-based view - - classattendance - - clean up - - clean url - - cleanup - - click - - clone - - close - - clustering - - cms.env.json - - cms_site_name - - coconut - - code editor - - collaboration tool - - collapse - - collectstatic - - combine - - combined - - comic - - comm - - commands - - commencement - - comments - - commit - - compare - - compatible - - compile - - compile assets - - compress - - computer science - - concatenate with condition - - concatenateif - - condition - - config. lib. auth - - config.bat - - configure - - conflicts - - confused - - confusing - - connection - - context - - contrib - - contributor - - control - - controller - - conversation - - coordinator - - copy folder - - counter - - course builder - - course format - - course mode - - coursecatlib.php - - courses - - creative - - credential - - cron - - crossDomain - - cs253 - - csrf_exempt - - csvde - - currency - - custom field - - custom menu - - custom page - - custom-title - - customizatin - - cut - - cvt - - cygwin - - daemon - - daily build - - darklang - - data. sheet - - databases - - date & time - - date based - - date of birth - - dateutil - - db_sync - - dbeaver - - dbtype - - dead - - death - - debt - - decorator - - default domain policy - - default storage - - deflation - - degree - - dekiwiki - - delay - - delegated account - - delimiter - - dependencies - - depression - - descending - - designer - - desired count - - dev - - develop - - developer tool - - dhclient - - dictionaries - - diff - - different - - digital ocean - - digitalocean - - dir - - directories - - directory synced - - disabled - - disappear - - discussion service - - diskspace - - distraction - - distribute - - div - - django-mailer - - django-suit - - django-toolbelt - - django-wiki - - djangosaml2 - - dnsmasq - - dob - - docker-ce - - docker-compose - - docker-compose.yml - - docker.sock - - dockerize - - documentation - - documentroot - - documents - - documentviewer - - domain controller - - domain-wide - - done - - drama - - drawing - - drivedroid - - drop - - dropdown - - drupal-core - - drush - - dsadd - - dsget - - dsmod - - dsrm - - due - - dump - - duplicate - - duplicate dict - - duplicate file - - dynamic - - dynamodb - - easy_install - - eat - - ebooks - - eclipse-che - - ecommerce - - economic - - edtech - - edx-sga - - efibootmgr - - egrep - - eks - - electronic - - emails - - embed - - emotion - - enable - - enabled - - encrypt - - end backup - - end-of-life - - end-user authentication - - engine - - enjoy - - enrollment - - enrolment - - entrepreneur - - environment variable - - environment variables - - envoy - - epub - - equality - - equalize - - err - - erro - - essays - - etc - - event - - event id - - event viewer - - eventlet - - eventvwr - - ex machina - - exception - - exec - - execution - - expand - - expiration - - expire - - expire_on_commit - - explain - - exploits - - expose_php - - extend - - external - - external database - - facebox - - fail-overs - - fake - - fame - - family - - family_ident - - fargate - - fastcgi_param - - fastcgi_read_timeout - - fastest - - fatal error - - favorite - - fclose - - fence - - fgetcsv - - file_managed - - filebrowser - - filename - - files manager - - filetype - - filming - - firefoxos - - first time - - fixed ip - - fixed size - - fixture - - flac - - flag - - flake8 - - flash - - flight - - floating - - flood - - flow - - flowed text - - flowers - - flush - - follet - - follow - - fopen - - force - - force-overwrite - - format - - forum - - forums - - founder - - fragmented - - freeradius-config - - friendship - - from - - fstab - - full - - full path - - function keys - - function-based - - function-based view - - functional tests - - fundraise - - gallery - - garden - - gcc - - geany - - geek squad - - generic views - - get() - - get-aduser - - get_query_var - - get_record - - get_records - - getacl - - getting started - - ghost - - gitlab-ctl - - gitlab-psql - - gitlab-rake - - give - - glob - - global variables - - globals.yml - - gmt_offset - - gnome - - go home - - god - - gone - - good life - - google api - - google code - - googlechrome - - gpg - - granted - - graph - - graph api - - greatness - - group policy - - growth - - gsettings - - gspread - - guide - - guitar - - hack. - - hackermonthly - - hacks - - handle - - hang - - hangs - - happy - - haproxy - - harden - - hash - - hashicorp - - header - - heroku-toolbelt - - highest distinction - - homepage - - horizon - - horizontally - - host_ip - - how - - how-to - - howtos - - href - - htpasswd - - httplib - - human being - - human resource - - humanity - - iOS - - iam - - ibus - - ibus-bogo - - ibus-daemon - - icacls - - icon - - icon tray - - icons - - identity - - idnumber - - ifconfig - - iframe - - ignorance - - illustration - - imagemagick - - img - - import-csv - - income - - incompatibility - - indentation guides - - index - - indexing - - indicator-sound-gtk2 - - indicator-sound-service - - inflation - - info - - infographic - - information - - information overload - - inheritance - - init - - init script - - init.d - - injection - - inline - - innodb - - inside - - installed - - installtion - - instructor dashboard - - integration - - interact - - intermediate - - internal - - intersect - - intro - - invisible characters - - invitation only - - ip_proto - - ipcs - - iptables - - isfile - - isotope - - issue. lost - - issues - - japanese song - - join - - joke - - jquery terminal - - july - - jwysiwyg - - kernal - - kernel 4.10 - - keyboard - - keymap - - keypad - - keys - - keyserver - - keystore - - killall - - koding - - kolla-ansible - - kolla-build - - kolla-genpwd - - kong-ingress-controller - - konga - - kubectl - - kungfu - - kwargs - - label - - lambda - - lame - - large file - - last lecture - - latest posts - - launch - - lavender - - layer - - lcrypto - - ldconfig - - ldif - - leadership - - leading - - learn - - learning - - learnt - - length - - lessons - - letter - - libcurl - - libffi-dev - - liblber - - libldap - - libpq-dev - - librabbitmq - - library - - library management system - - library. - - libxml2-dev - - libxmlsec1-dev - - lie - - lightbox - - lightdm - - lightning - - linux-headers-server - - linux-image - - linux-image-server - - linux. ubuntu - - listdir - - literature - - live - - livecd - - liveusb - - lms_base - - load - - load balancer - - loadbalancer - - locales - - localhost - - lock - - lock screen - - locked - - locked out - - logging - - login required - - login_required - - logs management - - loops - - ls - - lssl - - lxc - - lxd - - lxd-stable - - lxml - - mTLS - - made - - mail - - mail_handler - - mainipulation - - maintenance - - making - - manifesto - - manipulate - - market - - mass apply - - mass enroll - - mass import - - masterpieces - - matched - - max length - - mayan - - media_root - - mediaplayer - - medium - - member - - memcached - - memory segment - - menu_order - - metallb - - method - - microcontroller - - microk8s - - microservices - - mindtouch.js - - mini - - minumum - - mismatched - - missing information - - mobi - - models - - modify - - moment - - money - - mongoengine - - monster - - moodle 3.3 - - motherboard - - motivation - - mount - - mountain - - mouse - - move OU - - movies - - mplayer - - mu-plugins - - multi-cloud - - multilevel - - multiple courses - - multiple profiles - - multiple projects - - my wedding - - myself - - mysql_ - - mysql_native_password - - mysqladmin - - mysqld - - mysqld_safe - - mysqlfragfinder - - mùa đông - - nameserver - - namespace - - nanny - - nano - - nautilus - - navetive - - nemo - - network-manager - - never get up - - new age - - new line - - next - - nginx-extras - - nginx. apache2 - - nginx.conf - - nirvana - - nmap - - no sound - - no version - - no-provision - - noise - - non fiction - - not found - - notes - - novel - - ntfs - - ntfsfix - - ntlm - - ntpd - - "null" - - nursing - - oci8 - - odbc - - office - - office 365 - - old - - old-releases - - omnibus - - onboard - - onboarding - - once - - one-click - - onerror - - online book - - online. lecture - - only - - open in new window - - open-ssh - - openerp - - openid connect - - openvz - - operation - - opportunity - - options - - outside - - overlap - - overlay - - override - - own file - - page not found - - page restriction - - pages - - papersize - - paradise - - parameter - - parameters - - parking - - parse - - partial install - - partition - - passowrd - - password age - - patch - - pdfjam - - pdfjoin - - pecl - - pending - - people - - pep8 - - perl - - person - - philosopher - - phone - - php-fpm - - php5-apc - - php7 - - php7-fpm - - physics - - pidof - - pike - - ping - - pipes - - pix - - pixar - - placeholder - - planning - - play - - plugin. permission - - pointer - - pointer-events - - poor - - porcelain - - portal - - portfolio - - post_save - - postfix - - power - - powerful - - pray - - prc - - pre-wedding - - pre_get_posts - - precheck - - preferences. - - prepare - - prepopulated_fields - - presentation - - preview_lms_base - - price - - primary_key - - private course - - privilege-separated - - privileges - - problem - - proc - - process_new_icon - - processes - - product key - - productivity - - profile manager - - progress bar - - prompt - - pros and cons - - provider - - proxmox - - proxy_read_timeout - - pseudo - - psycopg2 - - pulse - - pulse-access - - purity - - purpose - - pursuing - - putty - - pwd - - pycharm - - pyopenssl - - python 2 - - python 3 - - python-ldap - - python-redmine - - python-requests - - python. active directory - - python3 - - pytz - - qtranslate - - questions - - quiet - - quit - - r-15 - - r-16 - - r-17 - - r-20 - - r-21 - - r-22 - - r-23 - - r13 - - r14 - - rabbit - - rabbitmqclt - - radio - - radio streaming - - radius - - rc1 - - re-size - - reactivate - - read-only - - reading - - readline - - ready - - real ip - - real time - - reblog - - reboot - - record - - recovery - - recruiting - - recursion - - regex - - regular text - - release upgrade - - reminder - - remmina - - remote branch - - remote desktop - - renew - - reopen - - repadmin - - replication - - repos - - requests - - require_once - - required fields - - resolution - - resources - - reverse - - revisions - - revolve - - right - - right click - - rights - - rm - - robot - - role - - rom - - root browser - - root folder - - rooted - - rpm - - rpmdb - - run - - run-one - - rust - - s3 - - safe - - saigon - - sales - - saltstack - - samba - - same - - same name - - sass - - saturday - - saucy - - scale - - scan - - scheduled tasks - - schema - - schimmel - - scoped_session - - screen - - screen solution - - scrolltop - - scss - - sdk - - search all - - search and replace - - sec.day - - seconhand - - selector - - selenium - - self - - send - - serverless - - service account - - service function chaining - - services - - session key - - sessionmaker - - sesskey - - set - - set-aduser - - setfacl - - sevice - - sex - - sfc_flow_classifiers - - sga - - sh - - sha - - shadow - - shared memory - - shell script - - shellscript - - shmall - - shmmax - - shoot - - shortcode - - show space - - shuf - - siblings - - side - - sidebar - - sidecar - - signal - - signals - - signing key - - silent - - simple - - single board pc - - site url - - site_category - - site_name - - sitename - - skin - - skype - - slack - - sleep - - slots - - slug - - slugfield - - small stones - - snaps - - snapshots - - social auth - - social media - - socket - - solitude - - solution - - solve - - sophie - - sorted - - soul - - sound - - soundtracks - - source code - - sources.list - - space - - speak - - special character - - speech - - speed - - spirit - - split - - split string - - sqlplus - - squeeze - - ss - - sshd - - sshpass - - ssl-cert-check - - ssvnc - - stack - - stack.sh - - staff grade assignment - - staging - - stanalone - - standalone - - standalone script - - start small - - startup - - state - - statement - - static page - - static_root - - static_url - - status - - stein-1 - - steve - - stimulate - - stop - - str - - strange - - stress - - strpos - - strstr - - student information system - - student photo - - study - - stuff - - stupid - - style - - subclass - - subprocess - - subscribe - - sucks - - sudoers - - superuser - - support - - survey - - sweet - - switcher - - syncdb - - synced - - synthetic response - - sysctl.conf - - system - - systemd - - tables - - tablesorter - - tadv_settings - - targets - - tasks - - taxonomy - - teach - - telco - - templates - - term - - terraform - - test runner - - testing - - textfield - - the micro - - the world - - theming - - therapy - - therefore - - thesis - - things - - think big - - though - - thought - - thread - - timeout - - timux - - tips - - title bar - - tlist - - tlist_sql - - tmp - - togetherjs - - tombstone lifetime - - tomcat7 - - too large - - touchpad - - trailing - - training - - trans - - transients - - translate-shell - - translationg - - transpose - - trash - - trick - - trip - - "true" - - trusted sites - - truth - - try - - tuning - - tunnel - - tunnelling - - tutorial - - twitter - - txt - - typography - - tzdata - - tzinfo - - ubuntu 16 - - uname - - unbox - - unidecode - - unikey - - unique - - unity-panel-service - - unix - - unlock - - unpacking - - updatable - - update-rc - - updater - - upgrade checker - - upload_to - - uploads - - uploads.json - - url redirect - - urlparse - - usb network - - user_passes_test - - usermod - - utf8 - - utf8mb4 - - utilities - - utils - - vSphere - - valid - - valuable - - variables - - varnish 4 - - vault - - vbs - - vcl_recv - - vcl_synth - - ve - - verification - - version migration - - versioned nova notifications - - vga - - vhost - - vi - - video/mp4 - - virtual - - virtual environment - - virtual router id - - virtualbox 4.3 - - virtualization - - visibility level - - visible - - vision - - visual - - visual basic - - visual c++ - - visudo - - vnffgd - - vorbis-tools - - vzctl - - vzlist - - w3wp.exe - - walker - - war - - warning - - wc - - wealth - - web developers - - web development - - web interface - - web2py - - week - - weekend - - wget - - wheel - - while - - whl - - whoami - - widgets - - width - - wifi password - - wildcard - - wildcards - - windows 7 - - wireless - - wizard - - words wrap - - work around - - workbook - - worker - - worker processes - - working - - workplace - - wp-admin - - wp-config - - wp-config.php - - wp2 enterprise - - wp_delete_user - - wpdb - - wrap up - - writeup - - wx.Dialog - - x64 - - xamp - - xfconfig-query - - xflock4 - - xibo - - xkcd - - xmlsec - - xmodmap - - xmodule - - xqueue_consumer - - xrandr - - xscreensaver - - xtrabackup - - xubuntu 13.10 - - year - - yq - - zenity - - zesty - - zfs - - zoneinfo - - zsh - - zshell - - zuul - relme: {} - last_post_title: '"Searchlight for U" at the Korea&Vietnam OpenInfra User Group - meetup' - last_post_description: "" - last_post_date: "2019-10-02T09:08:29+07:00" - last_post_link: https://www.dangtrinh.com/2019/10/searchlight-for-u.html - last_post_categories: - - community - - meetup - - openstack - - OpenStack Korea User Group - - project update - - Searchlight - - Vietnam OpenInfra User Group - last_post_guid: 0e2c575730ec2a827c404b8a476efad1 - score_criteria: - cats: 5 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 14 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8d41896e961ea909d2d91611130d181f.md b/content/discover/feed-8d41896e961ea909d2d91611130d181f.md new file mode 100644 index 000000000..7e5386b73 --- /dev/null +++ b/content/discover/feed-8d41896e961ea909d2d91611130d181f.md @@ -0,0 +1,139 @@ +--- +title: Snapchat Pictures. +date: "2024-06-02T03:13:21-07:00" +description: Snapchat photo makes your life easy. +params: + feedlink: https://microkinetours.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 8d41896e961ea909d2d91611130d181f + websites: + https://microkinetours.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Snap Chat photos + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: snapchat is Makes Photos Better. + last_post_description: "" + last_post_date: "2021-04-19T10:31:16-07:00" + last_post_link: https://microkinetours.blogspot.com/2021/04/snapchat-is-makes-photos-better.html + last_post_categories: + - Snap Chat photos + last_post_language: "" + last_post_guid: 36ed86a78790931c7e8fd39f7c381965 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8d441134170fb14af777d7bfa01e5683.md b/content/discover/feed-8d441134170fb14af777d7bfa01e5683.md index 0366f72d3..13629d401 100644 --- a/content/discover/feed-8d441134170fb14af777d7bfa01e5683.md +++ b/content/discover/feed-8d441134170fb14af777d7bfa01e5683.md @@ -1,6 +1,6 @@ --- title: Tantek Çelik -date: "2024-05-30T11:21:00-07:00" +date: "2024-07-08T16:03:00-07:00" description: "" params: feedlink: https://tantek.com/updates.atom @@ -12,34 +12,33 @@ params: recommended: [] recommender: - http://scripting.com/rss.xml - - https://hacdias.com/feed.xml + - http://scripting.com/rssNightly.xml categories: [] relme: - https://fed.brid.gy/r/https:/tantek.com/: false https://github.com/tantek: true - https://indieweb.org/User:Tantek.com: false - https://instagram.com/tantek/: false - https://micro.blog/t: false - https://twitter.com/intent/user?screen_name=t: false - https://www.flickr.com/people/tantek/: false - https://www.threads.net/@tantek: false + https://tantek.com/: true https://xoxo.zone/@t: true - last_post_title: "" + last_post_title: Responsible Inventing last_post_description: "" - last_post_date: "" - last_post_link: "" + last_post_date: "2024-06-28T08:50:00-07:00" + last_post_link: https://tantek.com/2024/180/b1/responsible-inventing last_post_categories: [] - last_post_guid: "" + last_post_language: "" + last_post_guid: 1412c8ad6533057698b538f03418f378 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 12 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-8d4b7d53f33605e0acf4cf346ae99a4c.md b/content/discover/feed-8d4b7d53f33605e0acf4cf346ae99a4c.md index 2a1df03bc..6d9b02a00 100644 --- a/content/discover/feed-8d4b7d53f33605e0acf4cf346ae99a4c.md +++ b/content/discover/feed-8d4b7d53f33605e0acf4cf346ae99a4c.md @@ -16,40 +16,47 @@ params: - https://colinwalker.blog/livefeed.xml categories: - Uncategorized + - ai - apple - - gmail - - google - - ipad - - ipados - - mg-siegler + - arc + - john-siracusa + - manuel-moreale - safari + - switcheroo + - the browser company relme: {} - last_post_title: Yes, Safari on iPad should be the real Safari - last_post_description: 'M.G. Siegler, writing on his newish blog Spyglass: the Safari - browser on iPad has always behaved more like the Safari browser on iOS versus - the version built for Macs. Just yesterday I had to log' - last_post_date: "2024-05-30T11:11:40Z" - last_post_link: https://cdevroe.com/2024/05/30/safari-ipados/ + last_post_title: Manuel Moreale on “The Browser Company” + last_post_description: 'Manuel Moreale: It’s called The Browser Company but what + they make is a wrapper around the Chromium web browser. So the browser company + is making everything but the actual browser. Can you imagine' + last_post_date: "2024-06-05T10:20:48Z" + last_post_link: https://cdevroe.com/2024/06/05/manuel-moreale-on-the-browser-company/ last_post_categories: - Uncategorized + - ai - apple - - gmail - - google - - ipad - - ipados - - mg-siegler + - arc + - john-siracusa + - manuel-moreale - safari - last_post_guid: 3b3e0a370bfa3c672c4f340ec67fdb34 + - switcheroo + - the browser company + last_post_language: "" + last_post_guid: bec32934932abad7b13635fccf52b10c score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 16 + score: 20 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-8dca77673309cd3533071fc63f28726d.md b/content/discover/feed-8dca77673309cd3533071fc63f28726d.md index aeaf8126f..d372eee3e 100644 --- a/content/discover/feed-8dca77673309cd3533071fc63f28726d.md +++ b/content/discover/feed-8dca77673309cd3533071fc63f28726d.md @@ -15,22 +15,27 @@ params: - https://jeroensangers.com/podcast.xml categories: [] relme: {} - last_post_title: Dense Discovery – Issue 291 + last_post_title: Dense Discovery – Issue 296 last_post_description: Visit the archive to view the full issue last_post_date: "1970-01-01T00:00:00Z" - last_post_link: https://www.densediscovery.com/issues/291/ + last_post_link: https://www.densediscovery.com/issues/296/ last_post_categories: [] + last_post_language: "" last_post_guid: 16dc900a6cfdde61e04bf5023b3a0f6d score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-8dd07b3245b43b91865fa5f2d7c35f8c.md b/content/discover/feed-8dd07b3245b43b91865fa5f2d7c35f8c.md new file mode 100644 index 000000000..e162d6e43 --- /dev/null +++ b/content/discover/feed-8dd07b3245b43b91865fa5f2d7c35f8c.md @@ -0,0 +1,50 @@ +--- +title: emacs on A Scripter's Notes +date: "2024-01-08T07:42:20-05:00" +description: Emacs, scripting and anything text oriented. +params: + feedlink: https://scripter.co/categories/emacs/atom.xml + feedtype: atom + feedid: 8dd07b3245b43b91865fa5f2d7c35f8c + websites: + https://scripter.co/categories/emacs/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 100daystooffload + - diff + - emacs + - git + - magit + relme: + https://scripter.co/categories/emacs/: true + last_post_title: Using Git Delta with Magit + last_post_description: "" + last_post_date: "2022-07-06T22:04:00-04:00" + last_post_link: https://scripter.co/using-git-delta-with-magit/?utm_source=atom_feed + last_post_categories: + - 100daystooffload + - diff + - emacs + - git + - magit + last_post_language: "" + last_post_guid: 09b6fda7a462ed95037be0a326826133 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-8dd77e22a9644efdf6c82022e1761e2f.md b/content/discover/feed-8dd77e22a9644efdf6c82022e1761e2f.md deleted file mode 100644 index 2d5e75460..000000000 --- a/content/discover/feed-8dd77e22a9644efdf6c82022e1761e2f.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: https://chrismcleod.dev -date: "1970-01-01T00:00:00Z" -description: Public posts from @mstrkapowski@mastodon.online -params: - feedlink: https://mastodon.online/@mstrkapowski.rss - feedtype: rss - feedid: 8dd77e22a9644efdf6c82022e1761e2f - websites: - https://mastodon.online/@mstrkapowski: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://chrismcleod.dev/: false - https://theunderground.blog/: true - https://worldsinminiature.com/: false - https://www.buymeacoffee.com/mrkapowski: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8dded7ddf8a36caf341f2d043606c04c.md b/content/discover/feed-8dded7ddf8a36caf341f2d043606c04c.md deleted file mode 100644 index 54c3c567e..000000000 --- a/content/discover/feed-8dded7ddf8a36caf341f2d043606c04c.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: QueerCalendar -date: "1970-01-01T00:00:00Z" -description: Public posts from @QueerCalendar@tech.lgbt -params: - feedlink: https://tech.lgbt/@QueerCalendar.rss - feedtype: rss - feedid: 8dded7ddf8a36caf341f2d043606c04c - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8e08d5aa0525f149c9ab24e22d4a0f1f.md b/content/discover/feed-8e08d5aa0525f149c9ab24e22d4a0f1f.md new file mode 100644 index 000000000..6282b0ae0 --- /dev/null +++ b/content/discover/feed-8e08d5aa0525f149c9ab24e22d4a0f1f.md @@ -0,0 +1,50 @@ +--- +title: zverok's space +date: "2024-07-01T06:08:48Z" +description: I don't build systems. I imagine them, then write them. +params: + feedlink: https://zverok.space/feed.xml + feedtype: rss + feedid: 8e08d5aa0525f149c9ab24e22d4a0f1f + websites: + https://zverok.space/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - evolution + - ruby + relme: {} + last_post_title: 'Vignettes on language evolution: discovering an old syntax feature + history' + last_post_description: |- + One Ruby thing I never noticed before. + + While working on Ruby Evolution-themed articles (and looking for a shape for the future book), I am starting to look deeper and deeper into the history of the + last_post_date: "2024-07-01T00:00:00Z" + last_post_link: https://zverok.space/blog/2024-07-01-optional-args.html + last_post_categories: + - evolution + - ruby + last_post_language: "" + last_post_guid: 0b249e799b6984abe26123fab697143b + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8e0a15fdb1f97c5eeca914979950208c.md b/content/discover/feed-8e0a15fdb1f97c5eeca914979950208c.md new file mode 100644 index 000000000..0aef7d10c --- /dev/null +++ b/content/discover/feed-8e0a15fdb1f97c5eeca914979950208c.md @@ -0,0 +1,112 @@ +--- +title: Happenings in Python Usergroups +date: "1970-01-01T00:00:00Z" +description: Here are collected postings from the various Python usergroups around + the world, giving notice of upcoming events or summaries of meetings just past. +params: + feedlink: https://python-groups.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 8e0a15fdb1f97c5eeca914979950208c + websites: + https://python-groups.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - AppEngine + - Arizona + - Avahi/Bonjour/Rendevous + - Boston + - BugDays + - Canonical + - Columbus + - Dallas + - England + - GPL + - Goldenware + - IronPython + - LPUG + - Leipzig Python User Group + - Microsoft + - Notes + - OLPC + - Ohio + - Plone + - Pyglet + - Python + - Python Ireland + - 'PythonBarcamp2010 #pybar' + - PythonNorthWest + - Silverlight + - Snaplogic + - Sprinting + - Storm + - Texas + - Tucson + - TuxDroid + - Twisted + - UK + - Unconference + - VPython + - WashingtonDC + - Wing IDE + - amfast + - anniversary + - announcement + - austria + - barcamp + - beer + - brazil + - cologne + - django + - flex + - grupy-sp + - italy + - meeting + - meetup + - metalab + - mod_python + - nebraska + - omaha + - perugia + - pub + - pyCologne + - pyCologne Announcement + - pyCologne Notes + - pyamf + - pycon + - pyinstaller + - pypg + - pyside + - pyugat + - qml + - qt + - são paulo + - vienna + relme: + https://python-groups.blogspot.com/: true + last_post_title: PyUGAT - future events + last_post_description: Please visit our home page for upcoming events. Meetups are + scheduled one month in advance and we always meet at Metalab. + last_post_date: "2013-08-25T18:07:00Z" + last_post_link: https://python-groups.blogspot.com/2013/08/pyugat-future-events.html + last_post_categories: [] + last_post_language: "" + last_post_guid: bce8d9d475e0cc1b599bf0767651e122 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8e0ffea39a0d1f279943fc001086c0c9.md b/content/discover/feed-8e0ffea39a0d1f279943fc001086c0c9.md deleted file mode 100644 index 488c8afbe..000000000 --- a/content/discover/feed-8e0ffea39a0d1f279943fc001086c0c9.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Ben Frain -date: "1970-01-01T00:00:00Z" -description: Ben Frain – author and web developer -params: - feedlink: https://benfrain.com/feed/ - feedtype: rss - feedid: 8e0ffea39a0d1f279943fc001086c0c9 - websites: - https://benfrain.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Web Dev - - neovim - - Text Editing - relme: {} - last_post_title: Neovim – how to do project-wide find and replace? - last_post_description: There are plenty of occasions when using an LSP to ‘rename’ - a symbol isn’t possible. Perhaps you are amending JSON files, or some other basic - data format like csv or txt. In those instances - last_post_date: "2024-04-12T20:43:49Z" - last_post_link: https://benfrain.com/neovim-how-to-do-project-wide-find-and-replace/ - last_post_categories: - - Web Dev - - neovim - - Text Editing - last_post_guid: 6d7a049e8629a958cb72f0086afd058a - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8e1d8a6a6de46e8c86ece979fa09adff.md b/content/discover/feed-8e1d8a6a6de46e8c86ece979fa09adff.md deleted file mode 100644 index 257ec8925..000000000 --- a/content/discover/feed-8e1d8a6a6de46e8c86ece979fa09adff.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Piccalilli -date: "1970-01-01T00:00:00Z" -description: Public posts from @piccalilli@front-end.social -params: - feedlink: https://front-end.social/@piccalilli.rss - feedtype: rss - feedid: 8e1d8a6a6de46e8c86ece979fa09adff - websites: - https://front-end.social/@piccalilli: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://piccalil.li/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8e29130869cbd2096a32c710d4d9ee25.md b/content/discover/feed-8e29130869cbd2096a32c710d4d9ee25.md new file mode 100644 index 000000000..9e3e71078 --- /dev/null +++ b/content/discover/feed-8e29130869cbd2096a32c710d4d9ee25.md @@ -0,0 +1,54 @@ +--- +title: Mastering LibreOffice +date: "1970-01-01T00:00:00Z" +description: Random Notes of An LibreOffice Enthusiast +params: + feedlink: https://libreofficemaster.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 8e29130869cbd2096a32c710d4d9ee25 + websites: + https://libreofficemaster.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Colibre + - Karasa Jaga + - Libre + - LibreOffice + - Windows + - elementary + - impress + - presenter console + - presenter screen + relme: + https://derizal.blogspot.com/: true + https://diggingcomputers.blogspot.com/: true + https://libreofficemaster.blogspot.com/: true + https://selamkomputer.blogspot.com/: true + https://www.blogger.com/profile/09604074690410055948: true + last_post_title: Make Sifr More Eligible for Professional Use and Still Relevant + for Special Needs Users + last_post_description: "" + last_post_date: "2023-01-20T23:33:00Z" + last_post_link: https://libreofficemaster.blogspot.com/2023/01/make-sifr-more-eligible-for.html + last_post_categories: [] + last_post_language: "" + last_post_guid: eb39a04f6970c0f999190abbabe4cb50 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8e2d64afd8255537a7b6c81b8c296291.md b/content/discover/feed-8e2d64afd8255537a7b6c81b8c296291.md deleted file mode 100644 index fac20e64d..000000000 --- a/content/discover/feed-8e2d64afd8255537a7b6c81b8c296291.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: PITN backup copy -date: "2024-06-01T06:28:41-07:00" -description: "" -params: - feedlink: https://polyinthemedia-backup.blogspot.com/feeds/posts/default - feedtype: atom - feedid: 8e2d64afd8255537a7b6c81b8c296291 - websites: - https://polyinthemedia-backup.blogspot.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://www.blogger.com/profile/16008171792811719945: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8e2df3878383a398bbca9db37b67aa58.md b/content/discover/feed-8e2df3878383a398bbca9db37b67aa58.md deleted file mode 100644 index f56f3b239..000000000 --- a/content/discover/feed-8e2df3878383a398bbca9db37b67aa58.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: drikkes -date: "1970-01-01T00:00:00Z" -description: Public posts from @drikkes@mastodon.social -params: - feedlink: https://mastodon.social/@drikkes.rss - feedtype: rss - feedid: 8e2df3878383a398bbca9db37b67aa58 - websites: - https://mastodon.social/@drikkes: true - https://mastodon.social/web/@drikkes: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://drikk.es/: true - https://drikkes.com/: false - https://drikkmarks.glitch.me/: true - https://linkspree.glitch.me/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8e3ac9d5b2bfca8735c96e574fd2e0fc.md b/content/discover/feed-8e3ac9d5b2bfca8735c96e574fd2e0fc.md new file mode 100644 index 000000000..a95dc004a --- /dev/null +++ b/content/discover/feed-8e3ac9d5b2bfca8735c96e574fd2e0fc.md @@ -0,0 +1,52 @@ +--- +title: testkeis +date: "1970-01-01T00:00:00Z" +description: software testing and other stuff +params: + feedlink: https://testkeis.wordpress.com/feed/ + feedtype: rss + feedid: 8e3ac9d5b2bfca8735c96e574fd2e0fc + websites: + https://testkeis.wordpress.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://roytang.net/blog/feed/rss/ + categories: + - Chrome DevTools + - eviltester + - practice + - tools + - web testing + relme: {} + last_post_title: 'One of my best friends: Chrome DevTools' + last_post_description: A colleague recently shared in one of the channels at work + that there’s this YouTube video covering Chrome DevTools for web testing. I pretty + much use Chrome DevTools day in and day out so of + last_post_date: "2022-09-24T03:16:12Z" + last_post_link: https://testkeis.wordpress.com/2022/09/24/one-of-my-best-friends-chrome-devtools/ + last_post_categories: + - Chrome DevTools + - eviltester + - practice + - tools + - web testing + last_post_language: "" + last_post_guid: 42ce63383fd1feca38d76fcf8781cad8 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-8e9a7d29242ca6b14411eea105091d91.md b/content/discover/feed-8e9a7d29242ca6b14411eea105091d91.md new file mode 100644 index 000000000..878e7ff8e --- /dev/null +++ b/content/discover/feed-8e9a7d29242ca6b14411eea105091d91.md @@ -0,0 +1,42 @@ +--- +title: planet on Marcos Costales +date: "1970-01-01T00:00:00Z" +description: Recent content in planet on Marcos Costales +params: + feedlink: https://costales.github.io/tags/planet/index.xml + feedtype: rss + feedid: 8e9a7d29242ca6b14411eea105091d91 + websites: + https://costales.github.io/tags/planet/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://costales.github.io/tags/planet/: true + last_post_title: Clipboard content to file. New app + last_post_description: |- + A simple, easy, fast and useful way to paste your clipboard content (text or image) into a file! + Previously, you had to open editor, paste your clipboard, save file, close editor. Now, right click + last_post_date: "2022-10-22T10:29:27+02:00" + last_post_link: https://costales.github.io/posts/clipboard-to-file/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 7557db864ede4e4a7dc73d1ee31722d6 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-8ea1ff83e78137a8def9f81e8ea5c3ff.md b/content/discover/feed-8ea1ff83e78137a8def9f81e8ea5c3ff.md new file mode 100644 index 000000000..f33282e13 --- /dev/null +++ b/content/discover/feed-8ea1ff83e78137a8def9f81e8ea5c3ff.md @@ -0,0 +1,67 @@ +--- +title: Eclipse Fever +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://tweakeclipse.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 8ea1ff83e78137a8def9f81e8ea5c3ff + websites: + https://tweakeclipse.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - EMF FAQ + - EMF Maps + - EMF Resource + - EMap + - EclipseCon 2009 + - EclipseDay India + - Ed Merks + - Modeling + - RCP + - XMLHelper + - eclipse + - eclipse 3.4 + - extension locations + - ganymede + - help assistant + - keyboard shortcuts Eclipse editors planeteclipse + - manage configuration + - save + - serialize + - without namespace + relme: + https://chetukuli.blogspot.com/: true + https://tweakeclipse.blogspot.com/: true + https://uncctriveni.blogspot.com/: true + https://www.blogger.com/profile/12901447063650143488: true + last_post_title: Family day tomorrow @ Bangalore + last_post_description: Kim Moir pointed out in her post the other day that Eclipse + community is like family. Rightly said! The Eclipse Indian "Family" is huddling-up + tomorrow at Bangalore for Eclipse Day India. Its an + last_post_date: "2010-04-22T12:25:00Z" + last_post_link: https://tweakeclipse.blogspot.com/2010/04/family-day-tomorrow-bangalore.html + last_post_categories: + - EclipseDay India + - eclipse + last_post_language: "" + last_post_guid: 2f35a47e024b7691328fb652f7fc4b4d + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8eaa1a60d494e4576cf55c5958e7989f.md b/content/discover/feed-8eaa1a60d494e4576cf55c5958e7989f.md index 8ca58da01..d6498e7fe 100644 --- a/content/discover/feed-8eaa1a60d494e4576cf55c5958e7989f.md +++ b/content/discover/feed-8eaa1a60d494e4576cf55c5958e7989f.md @@ -12,27 +12,33 @@ params: https://www.gyford.com/phil/writing/: false blogrolls: [] recommended: [] - recommender: [] + recommender: + - https://roytang.net/blog/feed/rss/ categories: [] relme: https://mastodon.social/@philgyford: true https://www.gyford.com/: true - last_post_title: Photos from 4 June 2024 - last_post_description: 2 photos. - last_post_date: "2024-06-04T16:04:40Z" - last_post_link: https://www.gyford.com/phil/2024/06/04/ + last_post_title: Photos from 7 July 2024 + last_post_description: 1 photo. + last_post_date: "2024-07-07T11:49:25Z" + last_post_link: https://www.gyford.com/phil/2024/07/07/ last_post_categories: [] - last_post_guid: b6d821bf6f7c3a5d7254268874e7ac9b + last_post_language: "" + last_post_guid: e086ad931ca9ed20786f332a7d287c28 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 - promoted: 0 + posts: 3 + promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 19 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-8ecf912379244d536a74e8070a923b6e.md b/content/discover/feed-8ecf912379244d536a74e8070a923b6e.md deleted file mode 100644 index 9dbe6cee0..000000000 --- a/content/discover/feed-8ecf912379244d536a74e8070a923b6e.md +++ /dev/null @@ -1,169 +0,0 @@ ---- -title: Home - Henrique Dias -date: "2024-06-03T18:56:43+02:00" -description: "" -params: - feedlink: https://hacdias.com/feed.xml - feedtype: atom - feedid: 8ecf912379244d536a74e8070a923b6e - websites: - https://hacdias.com/: true - blogrolls: - - https://hacdias.com/blogroll/feeds.opml - recommended: - - https://aaronparecki.com/feed.xml - - https://alistairshepherd.uk/feed.xml - - https://alpinelinux.org/atom.xml - - https://ar.al/index.xml - - https://austinhenley.com/blog/feed.rss - - https://barryfrost.com/feed.json - - https://beepb00p.xyz/rss.xml - - https://ben.page/rss - - https://benjamincongdon.me/feed.xml - - https://berjon.com/feed.atom - - https://blog.acolyer.org/feed/ - - https://blog.benjojo.co.uk/rss.xml - - https://blog.codinghorror.com/rss/ - - https://blog.izs.me/feed/feed.json - - https://blog.jethro.dev/index.xml - - https://blog.jim-nielsen.com/feed.xml - - https://blog.joinmastodon.org/index.xml - - https://blog.pesky.moe/index.xml - - https://brainbaking.com/index.xml - - https://brunty.me/index.xml - - https://buttondown.email/ownyourweb/rss - - https://codersblock.com/rss.xml - - https://cprss.s3.amazonaws.com/golangweekly.com.xml - - https://daniel.haxx.se/blog/feed/ - - https://daverupert.com/atom.xml - - https://decentralizedthoughts.github.io/feed.xml - - https://drewdevault.com/blog/index.xml - - https://explog.in/rss.xml - - https://feed.ctrl.blog/latest.atom - - https://feeds.feedburner.com/mariusschulz - - https://feross.org/atom.xml - - https://garrit.xyz/rss.xml - - https://git.sr.ht/~emersion/gamja/refs/rss.xml - - https://git.sr.ht/~emersion/soju/refs/rss.xml - - https://go.dev/blog/feed.atom - - https://goblog.app/.rss - - https://granary.io/url?input=html&output=rss&url=https%3A//jamesg.blog - - https://gregorlove.com/articles.atom - - https://hacdias.com/feed.xml - - https://herman.bearblog.dev/feed/?type=rss - - https://heyokyay.com/feed/ - - https://jan.boddez.net/feed - - https://jfenn.me/blog/feed.xml - - https://jlelse.blog/.min.rss - - https://jonworth.eu/feed/ - - https://jvns.ca/atom.xml - - https://kevquirk.com/feed - - https://macwright.com/rss.xml - - https://manuelmoreale.com/feed/rss - - https://max-inden.de/index.xml - - https://meowni.ca/atom.xml - - https://mew.tv/feeds/news.atom - - https://mikestone.me/feed.xml - - https://miniflux.app/feed.xml - - https://mtlynch.io/index.xml - - https://mxb.dev/feed.xml - - https://neustadt.fr/rss.xml - - https://niqwithq.com/feed.xml - - https://notes.eatonphil.com/rss.xml - - https://ohhelloana.blog/feed.xml - - https://oscarbenedito.com/blog/index.xml - - https://paulstamatiou.com/posts.xml - - https://rakhim.org/index.xml - - https://rusingh.com/feed/ - - https://rustybever.be/index.xml - - https://schollz.com/index.xml - - https://seblog.nl/feed.rss - - https://seirdy.one/atom.xml - - https://simonsafar.com/index.xml - - https://simonwillison.net/atom/entries/ - - https://snarfed.org/feed - - https://stanislas.blog/atom.xml - - https://tantek.com/updates.atom - - https://timharek.no/feed.xml - - https://vmx.cx/cgi-bin/blog/index.cgi/feed/ - - https://werd.io/content/posts?_t=rss - - https://whimsical.club/feed.xml - - https://wizardzines.com/index.xml - - https://words.filippo.io/rss/ - - https://write.as/matt/feed/ - - https://www.arp242.net/feed.xml - - https://www.commitstrip.com/en/feed/ - - https://www.dannyvankooten.com/feed.xml - - https://www.engineersneedart.com/rss.xml - - https://www.jvt.me/kind/articles/feed.xml - - https://www.kytta.dev/blog/atom.xml - - https://www.paritybit.ca/feed.xml - - https://www.security.nl/rss/headlines.xml - - https://www.zylstra.org/blog/feed/ - - https://xeiaso.net/blog.json - - https://xkcd.com/rss.xml - - https://zalberico.com/feed.xml - - https://zdimension.fr/feed.xml - - https://zerokspot.com/index.xml - - https://barryfrost.com/rss - - https://blog.acolyer.org/comments/feed/ - - https://blog.izs.me/feed/feed.xml - - https://daniel.haxx.se/blog/comments/feed/ - - https://dannyvankooten.com/feed.xml - - https://goblog.app/.atom - - https://golangweekly.com/rss/ - - https://herman.bearblog.dev/feed/ - - https://heyokyay.com/comments/feed/ - - https://jamesg.blog/feeds/posts.xml - - https://jan.boddez.net/comments/feed - - https://jlelse.blog/.atom - - https://jlelse.blog/.rss - - https://macwright.com/atom.xml - - https://manuelmoreale.com/feed/instagram - - https://mew.tv/feeds/www.atom - - https://mxb.dev/notes/feed.xml - - https://ohhelloana.blog/feed.links.xml - - https://seirdy.one/notes/atom.xml - - https://seirdy.one/posts/atom.xml - - https://simonwillison.net/atom/everything/ - - https://snarfed.org/comments/feed - - https://granary.io/url?hub=https%3A//bridgy-fed.superfeedr.com/&input=html&output=atom&url=https%3A//werd.io/content/all/ - - https://werd.io/content/all?_t=rss - - https://werd.io/content/bookmarkedpages?_t=rss - - https://www.alistairshepherd.uk/feed.xml - - https://www.commitstrip.com/feed/ - - https://www.jvt.me/kind/articles/feed.articles.xml - - https://www.zylstra.org/blog/comments/feed/ - - https://xeiaso.net/blog.rss - - https://xkcd.com/atom.xml - recommender: - - https://chrisburnell.com/feed.xml - - https://hacdias.com/feed.xml - categories: [] - relme: - https://bsky.app/profile/hacdias.com: false - https://github.com/hacdias: true - https://hacdias.com/pubkey.asc: false - https://instagram.com/hacdias: false - https://linkedin.com/in/hacdias: false - https://reddit.com/u/hacdias: false - https://twitter.com/hacdias: false - last_post_title: Recently in May '24 - last_post_description: "" - last_post_date: "2024-05-31T15:02:01+02:00" - last_post_link: https://hacdias.com/2024/05/31/recently/ - last_post_categories: [] - last_post_guid: 6d89b74c9fe3f7d7fe9f7cdefce79d27 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 10 - relme: 2 - title: 3 - website: 2 - score: 22 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8ef4c9c0531ed058e48d5939c489ce6b.md b/content/discover/feed-8ef4c9c0531ed058e48d5939c489ce6b.md new file mode 100644 index 000000000..8de9a4939 --- /dev/null +++ b/content/discover/feed-8ef4c9c0531ed058e48d5939c489ce6b.md @@ -0,0 +1,59 @@ +--- +title: luxate +date: "2024-04-06T13:56:02-07:00" +description: "" +params: + feedlink: https://luxate.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 8ef4c9c0531ed058e48d5939c489ce6b + websites: + https://luxate.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Anniversary + - Art + - Branding + - Brandnig + - Conference + - Design + - Design Team + - General + - Idea + - LibO + - Private + - Usability + - User Experience + - Website + - Writer + relme: + https://luxate.blogspot.com/: true + https://www.blogger.com/profile/05038500172913638423: true + last_post_title: Comments Ruler Control + last_post_description: "" + last_post_date: "2012-06-09T12:18:14-07:00" + last_post_link: https://luxate.blogspot.com/2012/06/comments-ruler-control.html + last_post_categories: + - Design + - User Experience + - Writer + last_post_language: "" + last_post_guid: c9e91bd06fbb3f17bc113050aad830f3 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8f3c859e322d08d23fb490aa4b43b3cc.md b/content/discover/feed-8f3c859e322d08d23fb490aa4b43b3cc.md new file mode 100644 index 000000000..762241ac9 --- /dev/null +++ b/content/discover/feed-8f3c859e322d08d23fb490aa4b43b3cc.md @@ -0,0 +1,46 @@ +--- +title: Andy Holmes activity +date: "2024-07-08T09:15:24Z" +description: "" +params: + feedlink: https://gitlab.gnome.org/andyholmes.atom + feedtype: atom + feedid: 8f3c859e322d08d23fb490aa4b43b3cc + websites: + https://gitlab.gnome.org/andyholmes: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://gitlab.gnome.org/andyholmes: true + last_post_title: 'Andy Holmes opened issue #748: Google Drive access through Nautilus + not working: Unable to access "myname@gmail.com" Timeout was reached + at GNOME / gvfs' + last_post_description: |- + When I attempt to mount my Google Drive in Nautilus it waits for a while then gives me an error message: + Unable to access "myname@gmail.com" + Timeout was reached + I tried some commands from the + last_post_date: "2024-07-08T09:15:24Z" + last_post_link: https://gitlab.gnome.org/GNOME/gvfs/-/issues/748 + last_post_categories: [] + last_post_language: "" + last_post_guid: 85cf2a79a02ba13b920e4d32f84ee36c + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8f4272655e30c1963d0d03447a8370cf.md b/content/discover/feed-8f4272655e30c1963d0d03447a8370cf.md new file mode 100644 index 000000000..c8dfb5caa --- /dev/null +++ b/content/discover/feed-8f4272655e30c1963d0d03447a8370cf.md @@ -0,0 +1,44 @@ +--- +title: Microformats +date: "1970-01-01T00:00:00Z" +description: building blocks for data-rich web pages +params: + feedlink: https://microformats.org/feed + feedtype: rss + feedid: 8f4272655e30c1963d0d03447a8370cf + websites: + https://microformats.org/: true + blogrolls: [] + recommended: [] + recommender: + - https://alexsci.com/blog/rss.xml + categories: + - News + relme: {} + last_post_title: How to Consume Microformats 2 Data + last_post_description: A (very) belated follow up to Getting Started with Microformats + 2, covering the basics of consuming and using microformats 2 data. Originally + posted on waterpigs.co.uk. More and more people are using + last_post_date: "2022-02-19T19:48:15Z" + last_post_link: https://microformats.org/2022/02/19/how-to-consume-microformats-2-data + last_post_categories: + - News + last_post_language: "" + last_post_guid: 0f073db950fb2d370ca072a226efdd7b + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 1 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-8f44a7807f0721225cce5c64367729de.md b/content/discover/feed-8f44a7807f0721225cce5c64367729de.md deleted file mode 100644 index 3ee1b9c7c..000000000 --- a/content/discover/feed-8f44a7807f0721225cce5c64367729de.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for OpenStack India -date: "1970-01-01T00:00:00Z" -description: blog page for OpenStack India USer Group. -params: - feedlink: https://openstackindia.wordpress.com/comments/feed/ - feedtype: rss - feedid: 8f44a7807f0721225cce5c64367729de - websites: - https://openstackindia.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: 'Comment on OpenStack India Day 2013 announced by Dell Open Source - Ecosystem Digest #28. Issue Highlight: “DevOpsDays Barcelona 2013” - Dell TechCenter - - TechCenter - Dell Community' - last_post_description: '[…] OpenStack India Day Sep 21, 2013 – Bangalore Details - […]' - last_post_date: "2013-08-30T08:33:07Z" - last_post_link: https://openstackindia.wordpress.com/2013/08/14/openstack-india-day-2013-announced/comment-page-1/#comment-5 - last_post_categories: [] - last_post_guid: 704ddfc6afa4257ccd6adec0bdfadae2 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8f65db219ccf19c51f264210189fd510.md b/content/discover/feed-8f65db219ccf19c51f264210189fd510.md index 0ae91805e..07cfab0d4 100644 --- a/content/discover/feed-8f65db219ccf19c51f264210189fd510.md +++ b/content/discover/feed-8f65db219ccf19c51f264210189fd510.md @@ -12,24 +12,30 @@ params: recommended: [] recommender: [] categories: [] - relme: {} + relme: + https://loungeruminator.net/: true last_post_title: Comment on How (Not) to Enter Clubs in New South Wales by Anonymous last_post_description: A cold rainy night we had to walk back 3 blocks to our accommodation , because my wife didn’t have id I did we’re in our 70s . Rules are rules last_post_date: "2023-11-03T01:33:13Z" last_post_link: https://loungeruminator.net/2018/12/28/how-not-to-enter-clubs-in-new-south-wales/#comment-639 last_post_categories: [] + last_post_language: "" last_post_guid: c2fde9909563ca7093ece393f66a4751 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 8 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-8f777063d500fde5a1db09f3d303a54b.md b/content/discover/feed-8f777063d500fde5a1db09f3d303a54b.md new file mode 100644 index 000000000..03a0c0ee3 --- /dev/null +++ b/content/discover/feed-8f777063d500fde5a1db09f3d303a54b.md @@ -0,0 +1,45 @@ +--- +title: Criações Sólidas +date: "2024-03-13T01:45:32-07:00" +description: "" +params: + feedlink: https://solidcreations.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 8f777063d500fde5a1db09f3d303a54b + websites: + https://solidcreations.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - openscad + - reprapbr + - wiki + relme: + https://solidcreations.blogspot.com/: true + last_post_title: Atualizações no Wiki da RepRapBR + last_post_description: "" + last_post_date: "2012-11-19T17:22:52-08:00" + last_post_link: https://solidcreations.blogspot.com/2012/11/atualizacoes-no-wiki-da-reprapbr.html + last_post_categories: + - reprapbr + - wiki + last_post_language: "" + last_post_guid: 807f68e8f9789d1db74f38223604bf26 + score_criteria: + cats: 3 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-8f9b4df9d6418e5f8213cc56f1453a17.md b/content/discover/feed-8f9b4df9d6418e5f8213cc56f1453a17.md index 4a62b17ac..99d7a15ac 100644 --- a/content/discover/feed-8f9b4df9d6418e5f8213cc56f1453a17.md +++ b/content/discover/feed-8f9b4df9d6418e5f8213cc56f1453a17.md @@ -14,50 +14,41 @@ params: recommended: [] recommender: [] categories: - - Open Web - ActivityPub - Fediverse + - Open Web relme: - https://developers.google.com/profile/u/pfefferle: false https://github.com/pfefferle: true https://gitlab.com/pfefferle: true - https://indieweb.org/User:Notiz.blog: false https://mastodon.social/@pfefferle: true - https://micro.blog/pfefferle: false - https://microformats.org/wiki/User:Pfefferle: false - https://notiz.blog/about/: false - https://openwebpodcast.de/: false - https://packagist.org/packages/pfefferle/: false - https://pfefferle.tumblr.com/: false - https://profiles.wordpress.org/pfefferle: false - https://twitter.com/pfefferle: false - https://wordpress.tv/speakers/matthias-pfefferle/: false - https://www.crunchbase.com/person/matthias-pfefferle: false - https://www.flickr.com/people/pfefferle: false - https://www.linkedin.com/in/pfefferle/: false - https://www.npmjs.com/~pfefferle: false - https://www.slideshare.net/pfefferle: false - https://www.xing.com/profile/Matthias_Pfefferle: false + https://notiz.blog/: true + https://notiz.blog/about/: true + https://profiles.wordpress.org/pfefferle/: true last_post_title: The next big social network is just the Web last_post_description: The next big social network is just the Web Jeremiah Lee Schöner kann man das Fediverse nicht beschreiben ❤️ Thanks @Jeremiah last_post_date: "2023-10-23T08:17:38Z" last_post_link: https://notiz.blog/2023/10/23/the-next-big-social-network-is-just-the-web/ last_post_categories: - - Open Web - ActivityPub - Fediverse + - Open Web + last_post_language: "" last_post_guid: 927b3a663a1f8f0f2dd089c1aca15979 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: de --- diff --git a/content/discover/feed-8fc2ee90f8962091a405509ccb80432c.md b/content/discover/feed-8fc2ee90f8962091a405509ccb80432c.md index f3bec2e4d..9c98b2abc 100644 --- a/content/discover/feed-8fc2ee90f8962091a405509ccb80432c.md +++ b/content/discover/feed-8fc2ee90f8962091a405509ccb80432c.md @@ -14,31 +14,30 @@ params: recommender: [] categories: [] relme: - https://github.com/jeremycherfas: false - https://jeremycherfas.net/: false - https://micro.blog/jeremycherfas: false - https://pnut.io/@jeremycherfas: false - https://twitter.com/EatPodcast: false - last_post_title: "Latest episode: Women Butchers.\r\n\r\nCheap supermarket meat - has ..." - last_post_description: |- - Latest episode: Women Butchers. - - Cheap supermarket meat has made life hard for butchers. At the same time, a few younger people are taking an interest in butchery. I shouldn’t have been surprised - last_post_date: "2024-06-04T09:33:40Z" - last_post_link: https://stream.jeremycherfas.net/2024/latest-episode-women-butcherscheap-supermarket-meat-has + https://stream.jeremycherfas.net/content/all: true + last_post_title: Interesting article on whether LLMs are writing ... + last_post_description: Interesting article on whether LLMs are writing PubMed articles, + that seems to conclude that on balance they aren’t. Yet. Perhaps unsurprisingly + for a linguistic analysis, says nothing about the + last_post_date: "2024-07-08T07:21:49Z" + last_post_link: https://stream.jeremycherfas.net/2024/interesting-article-on-whether-llms-are-writing last_post_categories: [] - last_post_guid: c1cbc42487418adb07e580a96932c2b6 + last_post_language: "" + last_post_guid: b57088a96ae58dd79a15d45242259d00 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 9 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-8fc3e5caf1a291e5fc008f6d9f05cea1.md b/content/discover/feed-8fc3e5caf1a291e5fc008f6d9f05cea1.md new file mode 100644 index 000000000..206cf623a --- /dev/null +++ b/content/discover/feed-8fc3e5caf1a291e5fc008f6d9f05cea1.md @@ -0,0 +1,44 @@ +--- +title: GNU Emacs on Free Range Bits +date: "1970-01-01T00:00:00Z" +description: Recent content in GNU Emacs on Free Range Bits +params: + feedlink: https://freerangebits.com/tags/emacs/index.xml + feedtype: rss + feedid: 8fc3e5caf1a291e5fc008f6d9f05cea1 + websites: + https://freerangebits.com/tags/emacs/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://freerangebits.com/tags/emacs/: true + last_post_title: Patching Instead of Pinning + last_post_description: |- + In a previous post I showed how to work around a deadlock + between GnuPG and Emacs. As a brief recap, GnuPG 2.4.1 introduced a + change in its output which breaks a protocol that Emacs relied on, so + I + last_post_date: "2024-01-06T11:44:19-07:00" + last_post_link: https://freerangebits.com/posts/2024/01/patch-instead-of-pin/ + last_post_categories: [] + last_post_language: "" + last_post_guid: a7588b44e4be35616a18f91868e57e7d + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-8fe04d41933cd0f90425ff42ce5d1174.md b/content/discover/feed-8fe04d41933cd0f90425ff42ce5d1174.md deleted file mode 100644 index e32b86e30..000000000 --- a/content/discover/feed-8fe04d41933cd0f90425ff42ce5d1174.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Felipe Contreras -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://felipec.wordpress.com/feed/ - feedtype: rss - feedid: 8fe04d41933cd0f90425ff42ce5d1174 - websites: - https://felipec.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Mexico - - Politics - - income - relme: {} - last_post_title: The myth of Mexico’s extreme poverty - last_post_description: Recently it came to my attention that according to some sources, - Mexico’s extreme poverty increased during Obrador’s administration. I was skeptical - of this conclusion because according to my own - last_post_date: "2024-06-09T06:42:30Z" - last_post_link: https://felipec.wordpress.com/2024/06/09/the-myth-of-mexicos-extreme-poverty/ - last_post_categories: - - Mexico - - Politics - - income - last_post_guid: 7eaeb6c6ad9b48245a86c1eb65e5be8b - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-8ff85d4d632751b9df0e961b13f66b82.md b/content/discover/feed-8ff85d4d632751b9df0e961b13f66b82.md deleted file mode 100644 index ccbed2b2c..000000000 --- a/content/discover/feed-8ff85d4d632751b9df0e961b13f66b82.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Pádraig Brady - OpenStack -date: "1970-01-01T00:00:00Z" -description: Pádraig Brady's OpenStack musings -params: - feedlink: https://www.pixelbeat.org/feed/openstack.rss2.xml - feedtype: rss - feedid: 8ff85d4d632751b9df0e961b13f66b82 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - openstack - - libvirt - - image - - raw - - qcow2 - relme: {} - last_post_title: The life of an OpenStack libvirt image - last_post_description: Details on the transformations and formats involved - last_post_date: "2013-02-25T03:53:32Z" - last_post_link: http://www.pixelbeat.org/docs/openstack_libvirt_images/#1361764412 - last_post_categories: - - openstack - - libvirt - - image - - raw - - qcow2 - last_post_guid: 55b42780bd6b56c56f70d1bc488ec917 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-900e658ad186961dd6e76c46d09758e5.md b/content/discover/feed-900e658ad186961dd6e76c46d09758e5.md new file mode 100644 index 000000000..ef40f4f06 --- /dev/null +++ b/content/discover/feed-900e658ad186961dd6e76c46d09758e5.md @@ -0,0 +1,46 @@ +--- +title: random thoughts of a F/OSS Developer... +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://tauware.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 900e658ad186961dd6e76c46d09758e5 + websites: + https://tauware.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://tauware.blogspot.com/: true + https://www.blogger.com/profile/04887546547450531798: true + last_post_title: Building Packages with Buildah in Debian + last_post_description: |- + 1 Building Debian Packages with buildah + + + + Building packages in Debian seems to be a solved problem. But is it? At the bottom, installing the dpkg-dev package provides all the basic tools needed. + last_post_date: "2020-04-25T12:51:00Z" + last_post_link: https://tauware.blogspot.com/2020/04/building-packages-with-buildah-in-debian.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 298374953fc58248904ee9920f8c70b1 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9030c9bfdeef28334aa781bb626fef47.md b/content/discover/feed-9030c9bfdeef28334aa781bb626fef47.md index 65b9adc9f..f87997be6 100644 --- a/content/discover/feed-9030c9bfdeef28334aa781bb626fef47.md +++ b/content/discover/feed-9030c9bfdeef28334aa781bb626fef47.md @@ -16,7 +16,8 @@ params: - bare metal automation - virtualization - vmware operations - relme: {} + relme: + https://rackn.com/: true last_post_title: Choose your own VMware exit adventure! last_post_description: Moving away from VMware can be complex. Our latest flowchart shows how to move away from single-source VMware Broadcom towards becoming a multi-vendor @@ -28,17 +29,22 @@ params: - bare metal automation - virtualization - vmware operations + last_post_language: "" last_post_guid: 4dd790e65b01e1a3a59df1af469d6187 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 11 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-90464b34d80d198a6f4976902d242df1.md b/content/discover/feed-90464b34d80d198a6f4976902d242df1.md new file mode 100644 index 000000000..b625367a2 --- /dev/null +++ b/content/discover/feed-90464b34d80d198a6f4976902d242df1.md @@ -0,0 +1,51 @@ +--- +title: Alphastream +date: "1970-01-01T00:00:00Z" +description: The Alphastream Game Design Blog +params: + feedlink: https://alphastream.org/index.php/feed/ + feedtype: rss + feedid: 90464b34d80d198a6f4976902d242df1 + websites: + https://alphastream.org/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - Campaigns + - DM Advice + - campaigns + relme: + https://alphastream.org/: true + https://dice.camp/@Alphastream: true + last_post_title: The Campaign Our Players Want? + last_post_description: Our next RPG campaign will be more successful if we consider + what will appeal to our players. + last_post_date: "2024-05-28T05:42:52Z" + last_post_link: https://alphastream.org/index.php/2024/05/27/the-campaign-our-players-want/ + last_post_categories: + - Campaigns + - DM Advice + - campaigns + last_post_language: "" + last_post_guid: dc163368862286c5a90eef7daa5c44d8 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 22 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-90854f1f0dae048e656814729f666c81.md b/content/discover/feed-90854f1f0dae048e656814729f666c81.md deleted file mode 100644 index fb35ed3ab..000000000 --- a/content/discover/feed-90854f1f0dae048e656814729f666c81.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Simon Safar -date: "2024-06-01T10:11:27-07:00" -description: All recent entries from simonsafar.com -params: - feedlink: https://simonsafar.com/index.xml - feedtype: atom - feedid: 90854f1f0dae048e656814729f666c81 - websites: - https://simonsafar.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: [] - relme: - https://github.com/ssafar: true - https://simonsafar.com/: true - last_post_title: Making VMs from the Inside Out - last_post_description: "Making VMs from the Inside Out \n 2024/06/01 \n\n - \ \n ... originally titled \"Making VMs the Borg Way\"... which - kind of makes sense for the beginning of the process; \"stuff" - last_post_date: "2024-05-31T17:00:00-07:00" - last_post_link: https://simonsafar.com/2024/vms_from_the_inside_out/ - last_post_categories: [] - last_post_guid: 36c628372a5e9e17fe7038020af01db5 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 15 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-909abee169ddfc6192b766807449f66f.md b/content/discover/feed-909abee169ddfc6192b766807449f66f.md index e9a1515fc..0828d777f 100644 --- a/content/discover/feed-909abee169ddfc6192b766807449f66f.md +++ b/content/discover/feed-909abee169ddfc6192b766807449f66f.md @@ -8,45 +8,47 @@ params: feedid: 909abee169ddfc6192b766807449f66f websites: https://www.pixelbeat.org/: true + https://www.pixelbeat.org/patches/coreutils/: false blogrolls: [] recommended: [] recommender: [] categories: - - windows - "11" + - cpu - older - systems - - cpu + - windows relme: https://github.com/pixelb: true https://keybase.io/pb: true - https://reddit.com/user/pixelbeat_/: false https://stackoverflow.com/users/4421/pixelbeat: true - https://twitter.com/pixelbeat_: false - https://www.facebook.com/pixelb: false - https://www.linkedin.com/in/pixelbeat: false - https://www.openhub.net/accounts/1118: false + https://www.pixelbeat.org/: true last_post_title: Installing windows 11 on unsupported systems last_post_description: Using windows 11 on an X1 Yoga Gen2 laptop last_post_date: "2023-10-11T17:04:24+01:00" last_post_link: http://www.pixelbeat.org/systems/x1-yoga-gen2/#1697040264 last_post_categories: - - windows - "11" + - cpu - older - systems - - cpu + - windows + last_post_language: "" last_post_guid: f88f1e3b199084bf092f39530f6fd937 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-90a89da6bc4dc3f55e0d432b9bbdf505.md b/content/discover/feed-90a89da6bc4dc3f55e0d432b9bbdf505.md deleted file mode 100644 index d8c1e6031..000000000 --- a/content/discover/feed-90a89da6bc4dc3f55e0d432b9bbdf505.md +++ /dev/null @@ -1,56 +0,0 @@ ---- -title: 'Adactio: Journal' -date: "1970-01-01T00:00:00Z" -description: The online journal of Jeremy Keith, an author and web developer living - and working in Brighton, England. -params: - feedlink: https://adactio.com/journal/rss - feedtype: rss - feedid: 90a89da6bc4dc3f55e0d432b9bbdf505 - websites: - https://adactio.com/: false - https://adactio.com/articles/: false - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: - - books - - reading - - bookshelves - - balance - - gender - - fiction - - nonfiction - relme: {} - last_post_title: Reading patterns - last_post_description: |- - I can’t resist bookshelves. - - If I’m shown into someone’s home and left alone while the host goes and does something, you can bet I’m going to peruse their bookshelves. - - I don’t know why. - last_post_date: "2024-05-31T10:04:11Z" - last_post_link: https://adactio.com/journal/21175 - last_post_categories: - - books - - reading - - bookshelves - - balance - - gender - - fiction - - nonfiction - last_post_guid: caea0006781b33bfe9d2c6539fcc0ff9 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 15 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-90afc187a5494efa17a44c74cacd3166.md b/content/discover/feed-90afc187a5494efa17a44c74cacd3166.md index b45536f26..8fcffb2ef 100644 --- a/content/discover/feed-90afc187a5494efa17a44c74cacd3166.md +++ b/content/discover/feed-90afc187a5494efa17a44c74cacd3166.md @@ -12,14 +12,15 @@ params: recommended: [] recommender: [] categories: - - Report - - News + - April Fools + - Distraction - Jest - Musing + - News + - Report - Review - - April Fools - - Distraction relme: + https://resonaances.blogspot.com/: true https://www.blogger.com/profile/08947218566941608850: true last_post_title: How large is the W mass anomaly last_post_description: 'Everything is larger in the US: cars, homes, food portions, @@ -28,17 +29,22 @@ params: last_post_date: "2022-04-19T09:05:00Z" last_post_link: https://resonaances.blogspot.com/2022/04/how-large-is-w-boson-anomaly.html last_post_categories: [] + last_post_language: "" last_post_guid: 9e75ec1e3d83f4c02097ea25ce3d0506 score_criteria: cats: 5 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-90b43bc9bcbae8dec35dda11e7773196.md b/content/discover/feed-90b43bc9bcbae8dec35dda11e7773196.md new file mode 100644 index 000000000..511fefbf1 --- /dev/null +++ b/content/discover/feed-90b43bc9bcbae8dec35dda11e7773196.md @@ -0,0 +1,42 @@ +--- +title: NOT ALL WHO WANDER ARE LOST +date: "2024-07-09T03:20:36Z" +description: 'Not All Who Wander Are Lost: Longform thoughts and shorter reflections + as I journey along.' +params: + feedlink: https://wand3r.net/feed/ + feedtype: atom + feedid: 90b43bc9bcbae8dec35dda11e7773196 + websites: + https://wand3r.net/: true + blogrolls: [] + recommended: [] + recommender: + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php + categories: [] + relme: {} + last_post_title: Sunday Review (07-06-2024) + last_post_description: A review of the week ending on July 5, 2024 + last_post_date: "2024-07-08T03:16:10Z" + last_post_link: https://wand3r.net/sunday-review-07-06-2024/ + last_post_categories: [] + last_post_language: "" + last_post_guid: df3e3395f512dca8d98d3e20b0c07715 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-90b695717e020df3b07fbfcc0a44f3b4.md b/content/discover/feed-90b695717e020df3b07fbfcc0a44f3b4.md deleted file mode 100644 index 0c1e30cbb..000000000 --- a/content/discover/feed-90b695717e020df3b07fbfcc0a44f3b4.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Linux Kernel Podcast -date: "1970-01-01T00:00:00Z" -description: Periodic summary of Linux Kernel Development -params: - feedlink: https://kernelpodcast.org/feed/ - feedtype: rss - feedid: 90b695717e020df3b07fbfcc0a44f3b4 - websites: - https://kernelpodcast.org/: true - https://kernelpodcast.org/series/linux-kernel-podcast/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Uncategorized - relme: {} - last_post_title: S2E4 – 2023/04/24 - last_post_description: Season 2 – Episode 4 – 2023/04/24 Summary The latest stable - kernel is Linux 6.3, released by Linus Torvalds on Sunday, April 23rd, 2023. The - latest mainline (development) kernel is 6.3. The Linux - last_post_date: "2023-04-25T00:11:26Z" - last_post_link: https://kernelpodcast.org/2023/04/24/s2e4-2023-04-24/ - last_post_categories: - - Uncategorized - last_post_guid: 8c9551d5fa50a650e1da5eee1bfae935 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-90cbe990fd14c012bb05d0603191cad5.md b/content/discover/feed-90cbe990fd14c012bb05d0603191cad5.md new file mode 100644 index 000000000..de8b033cf --- /dev/null +++ b/content/discover/feed-90cbe990fd14c012bb05d0603191cad5.md @@ -0,0 +1,58 @@ +--- +title: Bartosz Milewski's Programming Cafe +date: "1970-01-01T00:00:00Z" +description: Category Theory, Haskell, Concurrency, C++ +params: + feedlink: https://bartoszmilewski.com/feed/ + feedtype: rss + feedid: 90cbe990fd14c012bb05d0603191cad5 + websites: + https://bartoszmilewski.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - AI + - Category Theory + - Lens + - Neural Networks + - Optics + - Profunctors + - Programming + - Tambara Modules + relme: + https://bartoszmilewski.com/: true + last_post_title: Neural Networks, Pre-lenses, and Triple Tambara Modules, Part II + last_post_description: I will now provide the categorical foundation of the Haskell + implementation from the previous post. A PDF version that contains both parts + is also available. The Para Construction There’s been a + last_post_date: "2024-03-24T15:02:04Z" + last_post_link: https://bartoszmilewski.com/2024/03/24/neural-networks-pre-lenses-and-triple-tambara-modules-part-ii/ + last_post_categories: + - AI + - Category Theory + - Lens + - Neural Networks + - Optics + - Profunctors + - Programming + - Tambara Modules + last_post_language: "" + last_post_guid: df528cdcc98b4989362d13fdba2da792 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-90d9239f363edadfdcdb9434c506c6e1.md b/content/discover/feed-90d9239f363edadfdcdb9434c506c6e1.md new file mode 100644 index 000000000..3be175e69 --- /dev/null +++ b/content/discover/feed-90d9239f363edadfdcdb9434c506c6e1.md @@ -0,0 +1,47 @@ +--- +title: Adrien Plazas +date: "2024-06-10T10:55:27+02:00" +description: "" +params: + feedlink: https://adrienplazas.com/feed.xml + feedtype: atom + feedid: 90d9239f363edadfdcdb9434c506c6e1 + websites: + https://adrienplazas.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - blog + - organizing + relme: + https://adrienplazas.com/: true + https://mamot.fr/@KekunPlazas: true + last_post_title: One Device to Do it All + last_post_description: 'On January 1st 2023 at 00:30, my Android smartphone died, + and it made me realize how dependent on that device I was. I used it for many + aspects of my life: to stay organized, to be informed, to be' + last_post_date: "2023-08-26T00:00:00+02:00" + last_post_link: https://adrienplazas.com/blog/2023/08/26/one-device-to-do-it-all.html + last_post_categories: + - blog + - organizing + last_post_language: "" + last_post_guid: 6bb2e8f2481c2f4ba17cb7e32787872f + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 12 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-90e4683ca9d531156108432fb96c83d1.md b/content/discover/feed-90e4683ca9d531156108432fb96c83d1.md new file mode 100644 index 000000000..ac6c390f7 --- /dev/null +++ b/content/discover/feed-90e4683ca9d531156108432fb96c83d1.md @@ -0,0 +1,97 @@ +--- +title: commonplace.net +date: "1970-01-01T00:00:00Z" +description: Data. The final frontier. +params: + feedlink: https://commonplace.net/feed/ + feedtype: rss + feedid: 90e4683ca9d531156108432fb96c83d1 + websites: + https://commonplace.net/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ARK + - Catmandu + - DC + - Data + - EDM + - ETL + - Infrastructure + - LAM + - Library + - OAI + - Triply + - api's + - authority files + - collections + - content negotiation + - heritage + - infrastructure + - interoperability + - library systems + - licensing + - linked data + - marc + - metadata + - open data + - persistent identifiers + - rdf + relme: + https://commonplace.net/: true + https://lukaskoster.nl/: true + https://masto.ai/@lukask: true + https://www.openstreetmap.org/user/lukask99: true + last_post_title: Infrastructure for heritage institutions – Open and Linked Data + last_post_description: 'In my June 2020 post in this series, “Infrastructure for + heritage institutions – change of course  ” , I said: “The results of both Data + Licences and the Data Quality projects (Object' + last_post_date: "2021-06-01T12:25:19Z" + last_post_link: https://commonplace.net/3227/ + last_post_categories: + - ARK + - Catmandu + - DC + - Data + - EDM + - ETL + - Infrastructure + - LAM + - Library + - OAI + - Triply + - api's + - authority files + - collections + - content negotiation + - heritage + - infrastructure + - interoperability + - library systems + - licensing + - linked data + - marc + - metadata + - open data + - persistent identifiers + - rdf + last_post_language: "" + last_post_guid: 1b27fece3af0d4d46bbeeccf8c70cd1c + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-90ead54505c7989e20ece74fc7a6990b.md b/content/discover/feed-90ead54505c7989e20ece74fc7a6990b.md deleted file mode 100644 index efc2ec216..000000000 --- a/content/discover/feed-90ead54505c7989e20ece74fc7a6990b.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Antonio Cambronero - Blogpocket -date: "1970-01-01T00:00:00Z" -description: Cómo hacer un blog con WordPress -params: - feedlink: https://www.blogpocket.com/author/antonio/feed/ - feedtype: rss - feedid: 90ead54505c7989e20ece74fc7a6990b - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Inteligencia artificial - - ChatGPT - relme: {} - last_post_title: Fin del proyecto WP A DAY (podcast hecho con IA) y lecciones aprendidas - last_post_description: |- - Fin del proyecto WP A DAY (podcast hecho con IA) y lecciones aprendidas - Finalizado el proyecto WP A DAY, nuestro podcast de WordPress hecho con IA, es hora de reflexionar acerca de las lecciones - last_post_date: "2024-06-05T06:00:00Z" - last_post_link: https://www.blogpocket.com/2024/06/05/fin-del-proyecto-wp-a-day-podcast-hecho-con-ia-y-lecciones-aprendidas/ - last_post_categories: - - Inteligencia artificial - - ChatGPT - last_post_guid: 3b52d30ce8bd9b4e6c6fb9d13dab7eaa - score_criteria: - cats: 0 - description: 3 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-90ef0a1df98a9ae0ea5a47c5f1ba05e4.md b/content/discover/feed-90ef0a1df98a9ae0ea5a47c5f1ba05e4.md new file mode 100644 index 000000000..2f20b1e8b --- /dev/null +++ b/content/discover/feed-90ef0a1df98a9ae0ea5a47c5f1ba05e4.md @@ -0,0 +1,60 @@ +--- +title: Curiosity-driven development +date: "2024-03-05T22:45:18-08:00" +description: Development diary of a developer sailing on the seas of open-source +params: + feedlink: https://curiositydrivendevelopment.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 90ef0a1df98a9ae0ea5a47c5f1ba05e4 + websites: + https://curiositydrivendevelopment.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - android + - building + - buildlog + - development + - dripdexon + - electronics + - embedded + - experiences + - games + - gnome + - migration + - ndk + - open-source + - redmine + - tutorial + - valawhole + - work + relme: + https://curiositydrivendevelopment.blogspot.com/: true + last_post_title: Calculator and GTK4 + last_post_description: "" + last_post_date: "2021-11-15T23:22:44-08:00" + last_post_link: https://curiositydrivendevelopment.blogspot.com/2021/11/calculator-and-gtk4.html + last_post_categories: + - development + - gnome + - open-source + last_post_language: "" + last_post_guid: 43e9190251a45cc2918471dacc238379 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-90fa84cd4a2271f6f3b45f3ad5ae49dd.md b/content/discover/feed-90fa84cd4a2271f6f3b45f3ad5ae49dd.md deleted file mode 100644 index 8de9e4749..000000000 --- a/content/discover/feed-90fa84cd4a2271f6f3b45f3ad5ae49dd.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: "\U0001F38F Glitch" -date: "1970-01-01T00:00:00Z" -description: Public posts from @glitchdotcom@mastodon.social -params: - feedlink: https://mastodon.social/@glitchdotcom.rss - feedtype: rss - feedid: 90fa84cd4a2271f6f3b45f3ad5ae49dd - websites: - https://mastodon.social/@glitchdotcom: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://blog.glitch.com/: false - https://glitch.com/: true - https://help.glitch.com/: false - https://support.glitch.com/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-910c635d5a5072bfad0bfdd733413f15.md b/content/discover/feed-910c635d5a5072bfad0bfdd733413f15.md index 1c651513a..b7e1e7e09 100644 --- a/content/discover/feed-910c635d5a5072bfad0bfdd733413f15.md +++ b/content/discover/feed-910c635d5a5072bfad0bfdd733413f15.md @@ -23,10 +23,7 @@ params: - https://rknight.me/subscribe/posts/rss.xml categories: [] relme: - https://instagram.com/canion: false - https://micro.blog/canion: false - https://social.lol/@canion: false - https://twitter.com/canion: false + https://canion.blog/categories/article/: true last_post_title: Slash Guy last_post_description: |- On Hemispheric Views it has become a bit of a running gag that when I become interested in something new or different, the phrase, “I’m an insert interest here guy!” is unleashed. @@ -34,17 +31,22 @@ params: last_post_date: "2024-05-29T18:20:33+08:00" last_post_link: https://canion.blog/2024/05/29/slash-guy.html last_post_categories: [] + last_post_language: "" last_post_guid: c55d7be4659e8f3686f60ae9bfb89a1c score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 4 - relme: 1 + relme: 2 title: 3 website: 2 - score: 15 + score: 20 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-910c8b1192720f206b009d34fd9b354d.md b/content/discover/feed-910c8b1192720f206b009d34fd9b354d.md new file mode 100644 index 000000000..49dd681a1 --- /dev/null +++ b/content/discover/feed-910c8b1192720f206b009d34fd9b354d.md @@ -0,0 +1,46 @@ +--- +title: Cabal Testing Summer of Code +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://cabaltest.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 910c8b1192720f206b009d34fd9b354d + websites: + https://cabaltest.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - alsa-mixer + - cabal + relme: + https://cabaltest.blogspot.com/: true + https://www.blogger.com/profile/00544931944194441070: true + last_post_title: Introducing alsa-mixer + last_post_description: Besides being "that cabal test guy"... Actually, that was + about it, until now. Having recently discovered that the complement of ALSA bindings + on Hackage lacked an interface to the mixer API, I + last_post_date: "2011-01-07T00:36:00Z" + last_post_link: https://cabaltest.blogspot.com/2011/01/introducing-alsa-mixer.html + last_post_categories: + - alsa-mixer + last_post_language: "" + last_post_guid: d30fa58c0232036cfc3821539363dbda + score_criteria: + cats: 2 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-910e79b9b2aaebc72c5a0ba23a3f21c6.md b/content/discover/feed-910e79b9b2aaebc72c5a0ba23a3f21c6.md deleted file mode 100644 index 4a2c3aac0..000000000 --- a/content/discover/feed-910e79b9b2aaebc72c5a0ba23a3f21c6.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: WordPress.tv Blog -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://blog.wordpress.tv/feed/ - feedtype: rss - feedid: 910e79b9b2aaebc72c5a0ba23a3f21c6 - websites: - https://blog.wordpress.tv/: true - https://wordpress.tv/: false - https://wordpress.tv/speakers/matthias-pfefferle/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Video Highlight - - beginner - - graphic - relme: {} - last_post_title: WordCamp Video Highlight 2018/09/28 - last_post_description: I had the pleasure of attending WordCamp Pittsburgh on September - 22, 2018. This is very convenient for me since it is only an hours drive. I had - volunteered to help out with the video cameras. Jim - last_post_date: "2018-09-28T12:52:32Z" - last_post_link: https://blog.wordpress.tv/2018/09/28/wordcamp-video-highlight-2018-09-28/ - last_post_categories: - - Video Highlight - - beginner - - graphic - last_post_guid: 425186ad1c0663555326c04d9cfc6b4b - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9128c714a17a663e481c65901281be92.md b/content/discover/feed-9128c714a17a663e481c65901281be92.md new file mode 100644 index 000000000..9246820be --- /dev/null +++ b/content/discover/feed-9128c714a17a663e481c65901281be92.md @@ -0,0 +1,50 @@ +--- +title: Darek Kay +date: "2024-02-01T11:39:16Z" +description: Darek Kay is a professional front-end developer and an accessibility + advocate. +params: + feedlink: https://darekkay.com/atom.xml + feedtype: atom + feedid: 9128c714a17a663e481c65901281be92 + websites: + https://darekkay.com/: false + blogrolls: [] + recommended: [] + recommender: + - https://danq.me/comments/feed/ + - https://danq.me/feed/ + - https://danq.me/kind/article/feed/ + - https://danq.me/kind/note/feed/ + categories: + - css + - quick-tip + - theme + relme: {} + last_post_title: Website themes with uBlock Origin + last_post_description: Creating custom website skins with the uBlock Origin ad blocker. + last_post_date: "2024-02-01T11:39:16Z" + last_post_link: https://darekkay.com/blog/ublock-website-themes/ + last_post_categories: + - css + - quick-tip + - theme + last_post_language: "" + last_post_guid: 7f8d2e47e5173514416165a74514e516 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 1 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9128f5bfaa608798f16f4b6d60baeb87.md b/content/discover/feed-9128f5bfaa608798f16f4b6d60baeb87.md new file mode 100644 index 000000000..438975712 --- /dev/null +++ b/content/discover/feed-9128f5bfaa608798f16f4b6d60baeb87.md @@ -0,0 +1,39 @@ +--- +title: Adam Silver +date: "2024-06-30T00:00:00Z" +description: Sharing what I've learned. +params: + feedlink: https://adamsilver.io/atom.xml + feedtype: atom + feedid: 9128f5bfaa608798f16f4b6d60baeb87 + websites: {} + blogrolls: [] + recommended: [] + recommender: + - https://alexsci.com/blog/rss.xml + categories: [] + relme: {} + last_post_title: Why toggle switches suck (and what to do instead) + last_post_description: "" + last_post_date: "2024-06-30T00:00:00Z" + last_post_link: https://adamsilver.io/blog/why-toggle-switches-suck-and-what-to-do-instead/ + last_post_categories: [] + last_post_language: "" + last_post_guid: c30aecbccae43ddedd094c1a0331da1c + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 0 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-912f4fb01871051bdb1c2b688254bc5c.md b/content/discover/feed-912f4fb01871051bdb1c2b688254bc5c.md new file mode 100644 index 000000000..9691754ac --- /dev/null +++ b/content/discover/feed-912f4fb01871051bdb1c2b688254bc5c.md @@ -0,0 +1,40 @@ +--- +title: "\U0001F4E8 popey's newsletters" +date: "1970-01-01T00:00:00Z" +description: Newsletter archive +params: + feedlink: https://newsletter.popey.com/archive.xml + feedtype: rss + feedid: 912f4fb01871051bdb1c2b688254bc5c + websites: + https://newsletter.popey.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://newsletter.popey.com/: true + last_post_title: ✘ UK/US Politics-Free Zone ⤵ + last_post_description: "" + last_post_date: "2024-06-25T23:49:06Z" + last_post_link: https://newsletter.popey.com/archive/2024-07-05 + last_post_categories: [] + last_post_language: "" + last_post_guid: 202b01517ffd41a3488763197d29f4b6 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-913c57dcdf7fc88731c0cadab24d9313.md b/content/discover/feed-913c57dcdf7fc88731c0cadab24d9313.md index 2835849a1..d5e98035b 100644 --- a/content/discover/feed-913c57dcdf7fc88731c0cadab24d9313.md +++ b/content/discover/feed-913c57dcdf7fc88731c0cadab24d9313.md @@ -1,6 +1,6 @@ --- title: The Verge - Apples -date: "2024-06-04T05:22:11-04:00" +date: "2024-07-08T16:37:25-04:00" description: "" params: feedlink: https://www.theverge.com/rss/apple/index.xml @@ -13,23 +13,28 @@ params: recommender: [] categories: [] relme: - https://mastodon.social/@verge: false - last_post_title: Aptoide’s iOS game store launches on Thursday + https://www.theverge.com/apple: true + last_post_title: How to create PDFs on iPhones last_post_description: "" - last_post_date: "2024-06-04T05:22:11-04:00" - last_post_link: https://www.theverge.com/2024/6/4/24171037/aptoide-ios-game-store-eu-third-party-app-dma + last_post_date: "2024-07-08T16:37:25-04:00" + last_post_link: https://www.theverge.com/24191864/pdf-iphone-ipad-ios-how-to last_post_categories: [] - last_post_guid: 64011e9e5930ede114dfd145c139c203 + last_post_language: "" + last_post_guid: 0531704adca6009651f616d2be2adccb score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 6 + score: 11 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-9141f844f84af6b523a335d1df000b49.md b/content/discover/feed-9141f844f84af6b523a335d1df000b49.md new file mode 100644 index 000000000..40ecdd865 --- /dev/null +++ b/content/discover/feed-9141f844f84af6b523a335d1df000b49.md @@ -0,0 +1,46 @@ +--- +title: Ruby on Rails +date: "2024-07-05T10:37:23Z" +description: A web-app framework that includes everything needed to create database-backed + web applications according to the Model-View-Controller (MVC) pattern. +params: + feedlink: https://rubyonrails.org/feed.xml + feedtype: atom + feedid: 9141f844f84af6b523a335d1df000b49 + websites: + https://rubyonrails.org/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - news + relme: {} + last_post_title: Configurable compressor for encryption, Rack 3 streaming and more + last_post_description: Hi, Wojtek here. See the short list of changes from this + past week. + last_post_date: "2024-07-05T00:00:00Z" + last_post_link: https://rubyonrails.org/2024/7/5/this-week-in-rails + last_post_categories: + - news + last_post_language: "" + last_post_guid: 6b62154ffc64c774b4b3f706a2df9072 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-91536ea68328813c74f869ae7ddf6bbb.md b/content/discover/feed-91536ea68328813c74f869ae7ddf6bbb.md deleted file mode 100644 index ef8038e26..000000000 --- a/content/discover/feed-91536ea68328813c74f869ae7ddf6bbb.md +++ /dev/null @@ -1,53 +0,0 @@ ---- -title: Podcast Feed -date: "1970-01-01T00:00:00Z" -description: About A Minute is a PicoPodcast -params: - feedlink: https://shkspr.mobi/blog/feed/podcast/ - feedtype: rss - feedid: 91536ea68328813c74f869ae7ddf6bbb - websites: - https://shkspr.mobi/: false - https://shkspr.mobi/blog: true - https://shkspr.mobi/blog/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Technology - relme: - https://bsky.app/profile/edent.tel: false - https://github.com/edent: false - https://gitlab.com/edent: false - https://keybase.io/edent: false - https://linkedin.com/in/TerenceEden/: false - https://mastodon.social/@Edent: true - https://reddit.com/user/edent: false - https://twitter.com/edent: false - https://www.flickr.com/people/edent: false - https://www.wikidata.org/wiki/Q15733094: false - last_post_title: Episode 32 - Switching from being a developer to being a manager - last_post_description: We're back again with Kim Rowan. Listen to her thoughts about - what it's like to become a manager of technical teams. Read about how she got - into tech. - last_post_date: "2019-10-21T14:32:45Z" - last_post_link: https://shkspr.mobi/blog/2019/10/episode-32-switching-from-being-a-developer-to-being-a-manager/ - last_post_categories: - - About A Minute - - managment - - podcast - - tech - last_post_guid: 9b14814435acadf9e9461581b1d70e0b - score_criteria: - cats: 1 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 14 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-91571468438324a994eb0cf3773e7bfb.md b/content/discover/feed-91571468438324a994eb0cf3773e7bfb.md index c428ddeb8..752d1f800 100644 --- a/content/discover/feed-91571468438324a994eb0cf3773e7bfb.md +++ b/content/discover/feed-91571468438324a994eb0cf3773e7bfb.md @@ -17,26 +17,34 @@ params: - https://miraz.me/podcast.xml categories: [] relme: - https://micro.blog/crossingthethreshold: false + https://ctt.omg.lol/: true https://social.lol/@ctt: true - last_post_title: Anger and The Nun - or don't judge the book by the cover - last_post_description: |- - This story share by Robert Rackley on his blog Canned Dragons reminded me of a story that I heard about a Tibetan Buddhist nun. - A friend of mine, herself a Buddhist nun at the time, was studying at - last_post_date: "2024-06-09T10:33:14+02:00" - last_post_link: https://www.crossingthethreshold.net/2024/06/09/anger-and-the.html + https://www.crossingthethreshold.net/: true + https://www.crossingthethreshold.net/about/: true + https://www.crossingthethreshold.net/behind-the-thoughts/: true + last_post_title: 'The Story Behind the Photograph: The Taj Mahal' + last_post_description: While going through my mixed up and messily catalogued, that + is a very generous term, slides, I came across these two images of the Taj Mahal. + I am pretty sure that I have some more, but the state of + last_post_date: "2024-07-07T16:35:17-10:00" + last_post_link: https://www.crossingthethreshold.net/2024/07/07/the-taj-mahal.html last_post_categories: [] - last_post_guid: fb320b8a00c6834415654e439f3b0ed7 + last_post_language: "" + last_post_guid: f4bf7bc2510b31745c2888fc631964d3 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 12 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-915ef179b20c121854fe7d12274d65e1.md b/content/discover/feed-915ef179b20c121854fe7d12274d65e1.md index 2234a1cff..d2e03ce53 100644 --- a/content/discover/feed-915ef179b20c121854fe7d12274d65e1.md +++ b/content/discover/feed-915ef179b20c121854fe7d12274d65e1.md @@ -13,30 +13,42 @@ params: recommender: - https://jeroensangers.com/feed.xml - https://jeroensangers.com/podcast.xml + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml categories: - - "\U0001F393 Continuous Learning" - - Best Books + - decision making + - fear + - optionality + - ✨  Better Thinking relme: {} - last_post_title: Ness Labs Best Books of May 2024 - last_post_description: What should you read this month? This is your May 2024 guide - to discovering the most insightful, inspiring, and transformative books on mindful - productivity, creative growth, holistic ambition, and - last_post_date: "2024-05-29T14:21:11Z" - last_post_link: https://nesslabs.com/best-books-may-2024?utm_source=rss&utm_medium=rss&utm_campaign=best-books-may-2024 + last_post_title: The Affliction of Abundance + last_post_description: You’re about to launch a new product, but you can’t decide + on the tech stack. You’ve been researching for weeks, worried that you might miss + out on the perfect solution. Sounds familiar? This + last_post_date: "2024-07-03T08:14:00Z" + last_post_link: https://nesslabs.com/fobo?utm_source=rss&utm_medium=rss&utm_campaign=fobo last_post_categories: - - "\U0001F393 Continuous Learning" - - Best Books - last_post_guid: e5dc60f4aabf85ae8521d454a0ab6b82 + - decision making + - fear + - optionality + - ✨  Better Thinking + last_post_language: "" + last_post_guid: 35916aff354d43845bf9de7c9c938401 score_criteria: cats: 0 description: 3 - postcats: 2 + feedlangs: 1 + postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 15 + score: 20 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-9161c0470162cdb040e030ab8ad24e18.md b/content/discover/feed-9161c0470162cdb040e030ab8ad24e18.md deleted file mode 100644 index b324520f0..000000000 --- a/content/discover/feed-9161c0470162cdb040e030ab8ad24e18.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: Christian Heilmann -date: "1970-01-01T00:00:00Z" -description: For a better web with more professional jobs - can talk, will travel -params: - feedlink: https://christianheilmann.com/feed/ - feedtype: rss - feedid: 9161c0470162cdb040e030ab8ad24e18 - websites: - https://christianheilmann.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: - - General - - ai - - content - - publishing - - web - relme: {} - last_post_title: Witnessing the death of the web as a news medium - last_post_description: As some of you may know, I started out as a radio journalist. - And when I discovered the web in around 1996, I knew that, to me, radio and TV - were not the dominant news media any longer. Nowhere but - last_post_date: "2024-06-03T21:18:29Z" - last_post_link: https://christianheilmann.com/2024/06/03/witnessing-the-death-of-the-web-as-a-news-medium/ - last_post_categories: - - General - - ai - - content - - publishing - - web - last_post_guid: 2a9863a8f871ab85073f29d921d27e5d - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 16 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-91712295514b19e00e2d31f57f4f7610.md b/content/discover/feed-91712295514b19e00e2d31f57f4f7610.md new file mode 100644 index 000000000..c6b7682ae --- /dev/null +++ b/content/discover/feed-91712295514b19e00e2d31f57f4f7610.md @@ -0,0 +1,54 @@ +--- +title: 'Martin-Éric Racine: Perkelix' +date: "2024-02-08T17:01:13+02:00" +description: Récits d'une utopie européenne, Suomen tavalla. Blogitud quebeci keeles, + конешно! +params: + feedlink: https://perkelix.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 91712295514b19e00e2d31f57f4f7610 + websites: + https://perkelix.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Europe + - Finlande + - Immigration + - anarchie + - droit + - démocratie + - déracinement + - expatriation + - justice + - outrage + - ras-le-bol + relme: + https://perkelix.blogspot.com/: true + https://q-funk.blogspot.com/: true + https://www.blogger.com/profile/00394315280689943764: true + last_post_title: Blogeur sur Magma.fi + last_post_description: "" + last_post_date: "2009-05-29T14:01:47+03:00" + last_post_link: https://perkelix.blogspot.com/2009/05/blogeur-sur-magmafi.html + last_post_categories: [] + last_post_language: "" + last_post_guid: de6504ad54d70d342d4b39c51fef4a68 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-917411260d9bd460e4c3ace9ececdfff.md b/content/discover/feed-917411260d9bd460e4c3ace9ececdfff.md new file mode 100644 index 000000000..68bbda538 --- /dev/null +++ b/content/discover/feed-917411260d9bd460e4c3ace9ececdfff.md @@ -0,0 +1,45 @@ +--- +title: Poetry and stuff for fun +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://poetryandstuffforfun.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 917411260d9bd460e4c3ace9ececdfff + websites: + https://poetryandstuffforfun.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://flosslinuxblog.blogspot.com/: true + https://linuxbitsandscripts.blogspot.com/: true + https://poetryandstuffforfun.blogspot.com/: true + https://www.blogger.com/profile/17644077996431326998: true + last_post_title: Mille Regretz - A paraphrase + last_post_description: Mille regretz de vous abandonner Et d'eslonger vostre fache + amoureuse, J'ay si grand dueil et paine douloureuse, Qu'on me verra brief mes + jours definer.  I regret abandoning you a thousand + last_post_date: "2024-01-21T20:54:00Z" + last_post_link: https://poetryandstuffforfun.blogspot.com/2024/01/mille-regretz-paraphrase.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 54e94855360a72e81e5bfd40197a6680 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-91872fb9b2459896d84ccb2317ecc053.md b/content/discover/feed-91872fb9b2459896d84ccb2317ecc053.md new file mode 100644 index 000000000..4f1b2f2a0 --- /dev/null +++ b/content/discover/feed-91872fb9b2459896d84ccb2317ecc053.md @@ -0,0 +1,50 @@ +--- +title: Sonia Sulaiman +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://soniasulaiman.com/feed/ + feedtype: rss + feedid: 91872fb9b2459896d84ccb2317ecc053 + websites: + https://soniasulaiman.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - Palestinian Fiction + - books + - 'thyme travellers: an anthology of palestinian speculative fiction' + relme: {} + last_post_title: Links for Preordering Thyme Travellers + last_post_description: 'By popular demand, here is a list of places where you can + preorder Thyme Travellers: An Anthology of Palestinian Speculative Fiction. Ebooks + are at a discount until August 15, 2024. Firstly, if' + last_post_date: "2024-06-26T22:16:56Z" + last_post_link: https://soniasulaiman.com/2024/06/26/links-for-preordering-thyme-travellers/ + last_post_categories: + - Palestinian Fiction + - books + - 'thyme travellers: an anthology of palestinian speculative fiction' + last_post_language: "" + last_post_guid: 18912d4215635ba72092ad8a11424c91 + score_criteria: + cats: 0 + description: 0 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-918ac783beaafffdaa331815c1b2f11d.md b/content/discover/feed-918ac783beaafffdaa331815c1b2f11d.md new file mode 100644 index 000000000..11c2b4ed2 --- /dev/null +++ b/content/discover/feed-918ac783beaafffdaa331815c1b2f11d.md @@ -0,0 +1,140 @@ +--- +title: Online Job Near You +date: "2024-03-18T20:10:43-07:00" +description: Here you will get best online teching job for teens. Here is best links + for you. +params: + feedlink: https://pdtotolink.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 918ac783beaafffdaa331815c1b2f11d + websites: + https://pdtotolink.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - job + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Near You Teaching Job Online + last_post_description: "" + last_post_date: "2021-05-13T15:25:01-07:00" + last_post_link: https://pdtotolink.blogspot.com/2021/05/near-you-teaching-job-online.html + last_post_categories: + - job + last_post_language: "" + last_post_guid: e15b202ad7a20e18b0501bd2bf180322 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-918c57fc3e8037249f5ee2f8d5d32d6d.md b/content/discover/feed-918c57fc3e8037249f5ee2f8d5d32d6d.md new file mode 100644 index 000000000..1207c04a6 --- /dev/null +++ b/content/discover/feed-918c57fc3e8037249f5ee2f8d5d32d6d.md @@ -0,0 +1,65 @@ +--- +title: Kaloyan Raev +date: "2024-02-08T06:06:00+02:00" +description: You have an idea. I have an idea. We swap. Now we each have two ideas. +params: + feedlink: https://kaloyanraev.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 918c57fc3e8037249f5ee2f8d5d32d6d + websites: + https://kaloyanraev.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Bulgarian community + - CSS + - EJB Tools + - JPA Diagram Editor + - Libra + - OSGi + - PDE + - PDT + - User experience + - Virgo + - WTP + - Zend Studio + - android + - eclipse + - git + - performance + - releng + - sapnwcloud + - sourceforge + - update site + - zend + relme: + https://hitrini.blogspot.com/: true + https://kaloyanraev.blogspot.com/: true + https://www.blogger.com/profile/01871652990952962890: true + last_post_title: Why Does 'Building Workspace' Block Launching Programs? + last_post_description: "" + last_post_date: "2016-04-13T10:50:03+03:00" + last_post_link: https://kaloyanraev.blogspot.com/2016/04/why-does-building-workspace-block.html + last_post_categories: + - eclipse + - performance + last_post_language: "" + last_post_guid: 390fc27c23e79ee7f507be062eb7bf5e + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9199c0114731abd09d83e132e651a762.md b/content/discover/feed-9199c0114731abd09d83e132e651a762.md new file mode 100644 index 000000000..38361f77b --- /dev/null +++ b/content/discover/feed-9199c0114731abd09d83e132e651a762.md @@ -0,0 +1,55 @@ +--- +title: BioclipseBlog +date: "1970-01-01T00:00:00Z" +description: A blog dedicated to Bioclipse - a workbench for life science +params: + feedlink: https://bioclipse.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 9199c0114731abd09d83e132e651a762 + websites: + https://bioclipse.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - R + - bioclipse + - bioclipse2 + - conference + - echoing + - http://www.blogger.com/img/gl.link.gif + - javascript + - poster + - release + - scripting + - sot + - threading + relme: + https://bioclipse.blogspot.com/: true + https://www.blogger.com/profile/10379047094508592338: true + last_post_title: Bioclipse 2.6 released + last_post_description: The Bioclipse team is proud to announce the release of Bioclipse + version 2.6. The release contains new Decision Support models (such as for ChEMBL + and Chemspider), the latest CDK with e.g. improved + last_post_date: "2012-12-21T23:45:00Z" + last_post_link: https://bioclipse.blogspot.com/2012/12/bioclipse-26-released.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 301f57c71eac6a409f62ee21ff8caf55 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-919d414e163daf70b4aa7db4338a5886.md b/content/discover/feed-919d414e163daf70b4aa7db4338a5886.md deleted file mode 100644 index 01a489434..000000000 --- a/content/discover/feed-919d414e163daf70b4aa7db4338a5886.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: Longreads -date: "1970-01-01T00:00:00Z" -description: 'Longreads : The best longform stories on the web' -params: - feedlink: https://longreads.com/feed/ - feedtype: rss - feedid: 919d414e163daf70b4aa7db4338a5886 - websites: - https://longreads.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Nonfiction - - Minnesota - - murder - - small town - - The Atavist - - True Crime - relme: {} - last_post_title: A Vigilante Murder in Grand Marais - last_post_description: How a shocking crime divided a small Minnesota town. - last_post_date: "2024-06-04T10:00:00Z" - last_post_link: https://longreads.com/2024/06/04/murder-true-crime-small-town-minnesota/ - last_post_categories: - - Nonfiction - - Minnesota - - murder - - small town - - The Atavist - - True Crime - last_post_guid: 37683c77236a4b5a17452eb7e2c3c840 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-91da502a7a01c669276559bddbe53461.md b/content/discover/feed-91da502a7a01c669276559bddbe53461.md index 7baa0bfa6..c9aaf4937 100644 --- a/content/discover/feed-91da502a7a01c669276559bddbe53461.md +++ b/content/discover/feed-91da502a7a01c669276559bddbe53461.md @@ -14,28 +14,33 @@ params: - https://alexsci.com/blog/rss.xml categories: [] relme: - https://bsd.network/@solene: false - last_post_title: Improve your SSH agent security + https://dataswamp.org/~solene/: true + last_post_title: WireGuard and Linux network namespaces last_post_description: |- # Introduction - If you are using SSH quite often, it is likely you use an SSH agent which stores your private key in memory so you do not have to type your password every time. + This guide explains how to setup a WireGuard tunnel on Linux using a dedicated network namespace so you can choose to run a program on the VPN or over clearnet. - This method is - last_post_date: "2024-05-27T00:00:00Z" - last_post_link: https://dataswamp.org/~solene/2024-05-24-ssh-agent-security-enhancement.html + I have been able to + last_post_date: "2024-07-04T00:00:00Z" + last_post_link: https://dataswamp.org/~solene/2024-07-02-linux-vpn-netns.html last_post_categories: [] - last_post_guid: 05767a719f134956143af88ba5012e28 + last_post_language: "" + last_post_guid: 392d687ed26c633fd50c973043a4da01 score_criteria: cats: 0 description: 0 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 11 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-91f932b3f07b924ea47226e383695bfb.md b/content/discover/feed-91f932b3f07b924ea47226e383695bfb.md new file mode 100644 index 000000000..68277f47a --- /dev/null +++ b/content/discover/feed-91f932b3f07b924ea47226e383695bfb.md @@ -0,0 +1,45 @@ +--- +title: Oaksmoker's Grove +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://oaksmokingdoomage.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 91f932b3f07b924ea47226e383695bfb + websites: + https://oaksmokingdoomage.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: [] + relme: + https://oaksmokingdoomage.blogspot.com/: true + last_post_title: 'Castle Blackstone Log 1: Megadungeon Epiphanies' + last_post_description: SouthCenterThe formatting on mobile for this website is a + fucking nightmare.Here it is folks, I finally finished about half of Sub level + 1a. It is huge, and goes off the center map upwards and to the + last_post_date: "2023-12-23T07:12:00Z" + last_post_link: https://oaksmokingdoomage.blogspot.com/2023/12/castle-blackstone-log-1-megadungeon.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 016bd0a34d49a791da46434a99bc12d7 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-92104cac67e7e36dd457ce46ab0fa306.md b/content/discover/feed-92104cac67e7e36dd457ce46ab0fa306.md index 65055fce8..b583e20c6 100644 --- a/content/discover/feed-92104cac67e7e36dd457ce46ab0fa306.md +++ b/content/discover/feed-92104cac67e7e36dd457ce46ab0fa306.md @@ -19,17 +19,22 @@ params: last_post_date: "2024-02-26T11:00:32Z" last_post_link: https://medium.com/@kellyleeGDS/tired-of-fortnightly-sprints-were-trying-something-different-add529ac7d8b?source=rss-124291626346------2 last_post_categories: [] + last_post_language: "" last_post_guid: ac02931bc94b3bcf77dd608e69de36aa score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-921d04bc69434c35280b3db15ba0c8a3.md b/content/discover/feed-921d04bc69434c35280b3db15ba0c8a3.md index c1518f1f3..0791d0c68 100644 --- a/content/discover/feed-921d04bc69434c35280b3db15ba0c8a3.md +++ b/content/discover/feed-921d04bc69434c35280b3db15ba0c8a3.md @@ -21,17 +21,22 @@ params: last_post_link: https://booktwo.org/notebook/to-the-mountain/ last_post_categories: - Book 2.0 + last_post_language: "" last_post_guid: 8b9f0dacdc0f9d53f89ed3abf07a17f6 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 12 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-921d166a233a9e275da5b9d2f95858be.md b/content/discover/feed-921d166a233a9e275da5b9d2f95858be.md deleted file mode 100644 index 0d145a00e..000000000 --- a/content/discover/feed-921d166a233a9e275da5b9d2f95858be.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Comments for Political Wire -date: "1970-01-01T00:00:00Z" -description: All the political news in one place -params: - feedlink: https://politicalwire.com/comments/feed/ - feedtype: rss - feedid: 921d166a233a9e275da5b9d2f95858be - websites: - https://politicalwire.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9240ccd4eb85020a3c21c793003dc320.md b/content/discover/feed-9240ccd4eb85020a3c21c793003dc320.md deleted file mode 100644 index c7f916b09..000000000 --- a/content/discover/feed-9240ccd4eb85020a3c21c793003dc320.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Chris M., Internet random -date: "1970-01-01T00:00:00Z" -description: Public posts from @chrisplusplus@social.lol -params: - feedlink: https://social.lol/@chrisplusplus.rss - feedtype: rss - feedid: 9240ccd4eb85020a3c21c793003dc320 - websites: - https://social.lol/@chrisplusplus: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://chrismcleod.dev/: true - https://theunderground.blog/: false - https://worldsinminiature.com/: true - https://www.buymeacoffee.com/mrkapowski: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9240e3c3e1d4989c5ac78267284b4d57.md b/content/discover/feed-9240e3c3e1d4989c5ac78267284b4d57.md deleted file mode 100644 index f094d6f45..000000000 --- a/content/discover/feed-9240e3c3e1d4989c5ac78267284b4d57.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: openstack on System Administration, Hosting, Cloud and technologies in between -date: "1970-01-01T00:00:00Z" -description: Recent content in openstack on System Administration, Hosting, Cloud - and technologies in between -params: - feedlink: https://dmsimard.com/categories/openstack/index.xml - feedtype: rss - feedid: 9240e3c3e1d4989c5ac78267284b4d57 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: 'AnsibleFest 2018: Community project highlights' - last_post_description: |- - With two days of AnsibleFest instead of one this time around, we had 100% more time to talk about Ansible things ! - I got to attend great sessions, learn a bunch of things, chat and exchange war - last_post_date: "2018-10-08T00:00:00Z" - last_post_link: https://dmsimard.com/2018/10/08/ansiblefest-2018-community-project-highlights/ - last_post_categories: [] - last_post_guid: 879a3fd8e0fc060b93883490d4f18855 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-924a112bb80bdf026c6872084afc0c01.md b/content/discover/feed-924a112bb80bdf026c6872084afc0c01.md deleted file mode 100644 index 7db968e2f..000000000 --- a/content/discover/feed-924a112bb80bdf026c6872084afc0c01.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: beyond tellerrand -date: "1970-01-01T00:00:00Z" -description: Public posts from @btconf@mastodon.social -params: - feedlink: https://mastodon.social/@btconf.rss - feedtype: rss - feedid: 924a112bb80bdf026c6872084afc0c01 - websites: - https://mastodon.social/@btconf: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://beyondtellerrand.com/: true - https://beyondtellerrand.com/newsletter/: true - https://youtube.com/btconf: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-925a63f634856290ac662b7a1cda47bc.md b/content/discover/feed-925a63f634856290ac662b7a1cda47bc.md deleted file mode 100644 index 1c7087fb3..000000000 --- a/content/discover/feed-925a63f634856290ac662b7a1cda47bc.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: heyokyay -date: "1970-01-01T00:00:00Z" -description: Comics -params: - feedlink: https://heyokyay.com/feed/ - feedtype: rss - feedid: 925a63f634856290ac662b7a1cda47bc - websites: - https://heyokyay.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: - - Comics - relme: {} - last_post_title: Weird species - last_post_description: "" - last_post_date: "2024-05-27T20:27:16Z" - last_post_link: https://heyokyay.com/weird-species/ - last_post_categories: - - Comics - last_post_guid: 40317785e7bc49c57a0fdfd5c6f1c2ef - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 14 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9262033005c9288e16619e5eadbe59ab.md b/content/discover/feed-9262033005c9288e16619e5eadbe59ab.md new file mode 100644 index 000000000..bfa50b813 --- /dev/null +++ b/content/discover/feed-9262033005c9288e16619e5eadbe59ab.md @@ -0,0 +1,43 @@ +--- +title: Posts on swick's blog +date: "1970-01-01T00:00:00Z" +description: Recent content in Posts on swick's blog +params: + feedlink: https://blog.sebastianwick.net/posts/index.xml + feedtype: rss + feedid: 9262033005c9288e16619e5eadbe59ab + websites: + https://blog.sebastianwick.net/: false + https://blog.sebastianwick.net/posts/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://blog.sebastianwick.net/posts/: true + last_post_title: Booting into Toolbox Containers + last_post_description: There are a lot of tangible benefits in using toolbox containers + for development to the point that I don’t want to use anything else anymore. Even + with a bunch of tricks at our disposal, there are + last_post_date: "2024-01-30T13:23:30+01:00" + last_post_link: https://blog.sebastianwick.net/posts/booting-into-toolbox-containers/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 74e291d028415d3552a6fcdbdc4dfb82 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-927ec88c8aae7eac01e61207582da945.md b/content/discover/feed-927ec88c8aae7eac01e61207582da945.md index 316e684c5..396f34bbf 100644 --- a/content/discover/feed-927ec88c8aae7eac01e61207582da945.md +++ b/content/discover/feed-927ec88c8aae7eac01e61207582da945.md @@ -13,33 +13,38 @@ params: recommender: - http://scripting.com/rss.xml - http://scripting.com/rssNightly.xml - - https://chrisburnell.com/feed.xml - https://colinwalker.blog/dailyfeed.xml - https://colinwalker.blog/livefeed.xml - https://joeross.me/feed.xml categories: - Uncategorized relme: + https://chriscoyier.net/: true https://front-end.social/@chriscoyier: true - last_post_title: Multipage Version - last_post_description: Super cool zine from Mat. Me, I like HTML, and I wanted to - do something with a little texture to it. So I asked a bunch of people way more - talented than I am if they were down to contribute to a zine - last_post_date: "2024-05-29T17:12:45Z" - last_post_link: https://chriscoyier.net/2024/05/29/multipage-version/ + last_post_title: Bend e-MTB Access + last_post_description: I’ve got an eMountain Bike, but I can’t actually ride it + on most of the mountain biking trails around here unless I flagrantly flaunt the + “law”. I do that, sometimes. I’m not obnoxious + last_post_date: "2024-07-03T16:24:14Z" + last_post_link: https://chriscoyier.net/2024/07/03/bend-e-mtb-access/ last_post_categories: - Uncategorized - last_post_guid: 8d1ca48e92a9738cb0acbb739a76e9ce + last_post_language: "" + last_post_guid: 0bba72bed77fd6cd6e2b45041737c444 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 16 + score: 20 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-9281580806e6284ab60472a86f82b40b.md b/content/discover/feed-9281580806e6284ab60472a86f82b40b.md new file mode 100644 index 000000000..b583f31ce --- /dev/null +++ b/content/discover/feed-9281580806e6284ab60472a86f82b40b.md @@ -0,0 +1,62 @@ +--- +title: Olde School Wizardry +date: "1970-01-01T00:00:00Z" +description: Adventures in tabletop role-playing +params: + feedlink: https://oldeschoolwizardry.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 9281580806e6284ab60472a86f82b40b + websites: + https://oldeschoolwizardry.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 5th ed + - B/X + - Bawal Bayan + - Book of War + - Dagger RPG + - Dwimmermount + - Homeguard + - Learning the Dungeon + - Lesson Plan + - Marvel Super Heroes + - Olde School Wizardry + - Original Artwork + - Sheberoth + - Stonehell + - actual play + - campaign concept + - middle school + - summer + - white star + relme: + https://oldeschoolwizardry.blogspot.com/: true + last_post_title: Another Big Day for OSW + last_post_description: 'Here in the hallowed halls of The Collegium Mysterium, we + are celebrating another momentous day ...Olde School Wizardry: The Nine Ancient + Runes of Magic is now available for general sales both as a' + last_post_date: "2021-03-02T02:34:00Z" + last_post_link: https://oldeschoolwizardry.blogspot.com/2021/03/another-big-day-for-osw.html + last_post_categories: + - Olde School Wizardry + last_post_language: "" + last_post_guid: f0ca479d31ffe0de4a9a24dde66a877a + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9283646eb3bca7761abec7b17fb7ee84.md b/content/discover/feed-9283646eb3bca7761abec7b17fb7ee84.md index 8bf9370f1..01f751410 100644 --- a/content/discover/feed-9283646eb3bca7761abec7b17fb7ee84.md +++ b/content/discover/feed-9283646eb3bca7761abec7b17fb7ee84.md @@ -1,6 +1,6 @@ --- title: pfefferle packages -date: "2024-05-13T15:01:12Z" +date: "2024-07-01T10:47:10Z" description: Latest packages updated on Packagist of pfefferle. params: feedlink: https://packagist.org/feeds/vendor.pfefferle.rss @@ -12,23 +12,30 @@ params: recommended: [] recommender: [] categories: [] - relme: {} - last_post_title: pfefferle/wordpress-webmention (5.3.1) - last_post_description: A Webmention plugin for WordPress https://wordpress.org/plugins/webmention/ - last_post_date: "2024-05-13T15:01:12Z" - last_post_link: https://packagist.org/packages/pfefferle/wordpress-webmention + relme: + https://packagist.org/packages/pfefferle/: true + last_post_title: pfefferle/wordpress-activitypub (2.5.0) + last_post_description: The ActivityPub protocol is a decentralized social networking + protocol based upon the ActivityStreams 2.0 data format. + last_post_date: "2024-07-01T10:47:10Z" + last_post_link: https://packagist.org/packages/pfefferle/wordpress-activitypub last_post_categories: [] - last_post_guid: 88498b79d2d4ea1a805ed68e5aa4d8dd + last_post_language: "" + last_post_guid: 0fcc4e7ffd6c7122b5dba4e631df0a5f score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 8 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-929d270d272f8dd3b68d649aef2b425e.md b/content/discover/feed-929d270d272f8dd3b68d649aef2b425e.md new file mode 100644 index 000000000..3cea07082 --- /dev/null +++ b/content/discover/feed-929d270d272f8dd3b68d649aef2b425e.md @@ -0,0 +1,43 @@ +--- +title: ArcLib Development Blog +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://arclib.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 929d270d272f8dd3b68d649aef2b425e + websites: + https://arclib.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://arclib.blogspot.com/: true + https://www.blogger.com/profile/09392619674246400530: true + last_post_title: 2nd to Last Status Update... + last_post_description: Hey All, I'm in the real world now, where there is less time + for just "what the heck why not" projects, I need to work with my time a lot more + strategically now. I've taken up Taekwando and Hapkido, + last_post_date: "2010-05-21T23:37:00Z" + last_post_link: https://arclib.blogspot.com/2010/05/2nd-to-last-status-update.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 34138c8fc1022f0e3a74639ae8265ea8 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-92a0f90ec38a82edc1499c95156ede80.md b/content/discover/feed-92a0f90ec38a82edc1499c95156ede80.md new file mode 100644 index 000000000..9144a3056 --- /dev/null +++ b/content/discover/feed-92a0f90ec38a82edc1499c95156ede80.md @@ -0,0 +1,142 @@ +--- +title: Dank are World +date: "1970-01-01T00:00:00Z" +description: Dank memes are truly inspire for me therefore i like to share this one + with you. +params: + feedlink: https://sinhalalovesms.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 92a0f90ec38a82edc1499c95156ede80 + websites: + https://sinhalalovesms.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Dank memes + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Dank Memes + last_post_description: Richard Dawkins first thought of the possibility of an image + in his 1976 book "The Selfish Gene". Basically, images are thoughts that advance + as per similar rules that administer organic development. + last_post_date: "2020-03-29T10:00:00Z" + last_post_link: https://sinhalalovesms.blogspot.com/2020/03/dank-memes.html + last_post_categories: + - Dank memes + last_post_language: "" + last_post_guid: 827e22085f80a08fe92c3a76e844e55f + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-92a78dbc415d43f37987967ae1c3ef9a.md b/content/discover/feed-92a78dbc415d43f37987967ae1c3ef9a.md new file mode 100644 index 000000000..d3fafe5c1 --- /dev/null +++ b/content/discover/feed-92a78dbc415d43f37987967ae1c3ef9a.md @@ -0,0 +1,40 @@ +--- +title: Jim Fulton +date: "2024-03-08T14:27:20-08:00" +description: "" +params: + feedlink: https://j1mfulton.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 92a78dbc415d43f37987967ae1c3ef9a + websites: + https://j1mfulton.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://j1mfulton.blogspot.com/: true + last_post_title: An API that tries too hard + last_post_description: "" + last_post_date: "2011-03-21T05:08:58-07:00" + last_post_link: https://j1mfulton.blogspot.com/2011/03/api-that-tries-too-hard.html + last_post_categories: [] + last_post_language: "" + last_post_guid: baa8a90399ba597bc0bbf56e303cd43d + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-92baaf9e33270fa7a526ee9fd279b080.md b/content/discover/feed-92baaf9e33270fa7a526ee9fd279b080.md new file mode 100644 index 000000000..76fe70df6 --- /dev/null +++ b/content/discover/feed-92baaf9e33270fa7a526ee9fd279b080.md @@ -0,0 +1,57 @@ +--- +title: DS in Chablais +date: "1970-01-01T00:00:00Z" +description: |- + Après DS in Paris, et les autres blogs + d'utilisateurs de Nintendo DS dans le + monde... voici le Chablais, aux portes de Genève, capitale + internationale s'il en est! A vos (3)DS! + + On va tenter +params: + feedlink: https://ds-in-chablais.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 92baaf9e33270fa7a526ee9fd279b080 + websites: + https://ds-in-chablais.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://ds-in-chablais.blogspot.com/: true + https://ggravier.blogspot.com/: true + https://gillesgravierphotography.blogspot.com/: true + https://thinkingopensource.blogspot.com/: true + https://www.blogger.com/profile/18374683443794882592: true + last_post_title: Nouvelle page facebook pour DS in Chablais + last_post_description: |- + Hop! + + La page facebook de DS in Chablais existe maintenant! Allez-y en cliquant ici! + + A bientôt! + + Gilles. + last_post_date: "2013-04-18T19:38:00Z" + last_post_link: https://ds-in-chablais.blogspot.com/2013/04/nouvelle-page-facebook-pour-ds-in.html + last_post_categories: [] + last_post_language: "" + last_post_guid: bbd94cb73f8920c14bdc6c183670ddde + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-92d88f2edab0b8aa31f9169c372e7245.md b/content/discover/feed-92d88f2edab0b8aa31f9169c372e7245.md index 08715d13e..b0b512dab 100644 --- a/content/discover/feed-92d88f2edab0b8aa31f9169c372e7245.md +++ b/content/discover/feed-92d88f2edab0b8aa31f9169c372e7245.md @@ -1,6 +1,6 @@ --- title: "" -date: "2024-05-02T20:55:54Z" +date: "2024-07-03T04:30:02Z" description: Mostly The Lonely Howls Of Mike Baying His Ideological Purity At The Moon params: @@ -11,31 +11,34 @@ params: https://mikestone.me/: true blogrolls: [] recommended: [] - recommender: - - https://hacdias.com/feed.xml - - https://jlelse.blog/.min.rss - - https://jlelse.blog/.rss - - https://jlelse.blog/index.xml + recommender: [] categories: [] relme: https://fosstodon.org/@mike: true - last_post_title: Back to School - last_post_description: Well, the title pretty much gives it all away. I’m going - back to school. I’ve gotten classes signed up for and I’m ready to begin. - last_post_date: "2023-07-22T19:36:37Z" - last_post_link: https://mikestone.me/back-to-school + https://mikestone.me/: true + last_post_title: Housekeeping + last_post_description: It’s looking pretty dusty around here. As I noted yesterday, + it’s been a while since I’ve put anything up. Also, it’s been a while since I’ve + done any kind of work on this site in general. + last_post_date: "2024-06-14T19:36:37Z" + last_post_link: https://mikestone.me/housekeeping1 last_post_categories: [] - last_post_guid: dbcfa1fe773394f8e8950f720d1f86d2 + last_post_language: "" + last_post_guid: 0e090e04a0bb83444c3a5199048b95d6 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 - promoted: 5 + posts: 3 + promoted: 0 promotes: 0 relme: 2 title: 0 website: 2 - score: 12 + score: 11 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-92e2e5b4e23f7ccc1e4f71498dfc176d.md b/content/discover/feed-92e2e5b4e23f7ccc1e4f71498dfc176d.md index 9d8027f88..3eabb138d 100644 --- a/content/discover/feed-92e2e5b4e23f7ccc1e4f71498dfc176d.md +++ b/content/discover/feed-92e2e5b4e23f7ccc1e4f71498dfc176d.md @@ -1,6 +1,6 @@ --- title: Christian Luijten activity -date: "2024-05-30T18:37:08Z" +date: "2024-06-30T07:41:14Z" description: "" params: feedlink: https://gitlab.com/islandsvinur.atom @@ -12,32 +12,42 @@ params: recommended: [] recommender: [] categories: [] - relme: {} - last_post_title: Christian Luijten pushed to project branch master at Christian - Luijten / islandsvinur.gitlab.io + relme: + https://gitlab.com/islandsvinur: true + last_post_title: Christian Luijten pushed to project branch main at Christian Luijten + / envoy-prometheus-exporter-rs last_post_description: |- Christian Luijten - (573f5786) + (69bb3513) at - 30 May 18:37 + 30 Jun 07:41 + + + Finish it! - Aanmelden - last_post_date: "2024-05-30T18:37:08Z" - last_post_link: https://gitlab.com/islandsvinur/islandsvinur.gitlab.io/-/commit/573f57861edecca3bdf9339f9debbacf95f84867 + ... and + 1 more commit + last_post_date: "2024-06-30T07:41:14Z" + last_post_link: https://gitlab.com/islandsvinur/envoy-prometheus-exporter-rs/-/compare/6356178b0351ad1c1581d536b5db26ff7577d53f...69bb3513fddbe331f725b0d5ae0280022a56ba50 last_post_categories: [] - last_post_guid: f76ab6f996360454eb93914d0986dae8 + last_post_language: "" + last_post_guid: 641002f71b269bd67380319c95a8e16a score_criteria: cats: 0 description: 0 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 5 + score: 10 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-92f09cc26a5d77ab15b6382fdd705a20.md b/content/discover/feed-92f09cc26a5d77ab15b6382fdd705a20.md new file mode 100644 index 000000000..2372d6722 --- /dev/null +++ b/content/discover/feed-92f09cc26a5d77ab15b6382fdd705a20.md @@ -0,0 +1,64 @@ +--- +title: Le Goût du Libre +date: "1970-01-01T00:00:00Z" +description: Comprendre et atteindre la dirabilité et la liberté technologique avec + les logiciels libres +params: + feedlink: https://legoutdulibre.com/feed/ + feedtype: rss + feedid: 92f09cc26a5d77ab15b6382fdd705a20 + websites: + https://legoutdulibre.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - AnyDesk + - Apache Guacamole + - Debian + - LogMeIn + - RDP + - SSH + - Self-hosted + - TeamViewer + - VNC + relme: + https://legoutdulibre.com/: true + https://magicfab.ca/: true + https://mastodon.social/@magicfab: true + https://mastodon.social/@magicfab/tagged/images: true + last_post_title: Apache Guacamole 1.4.0 disponible ! + last_post_description: La communauté Apache Guacamole est fière d’annoncer la disponibilité + d’Apache Guacamole 1.4.0. Apache Guacamole est une passerelle d’accès à distance + sans client qui supporte les + last_post_date: "2022-01-03T03:25:28Z" + last_post_link: https://legoutdulibre.com/2022/01/apache-guacamole-1-4-0-released/ + last_post_categories: + - AnyDesk + - Apache Guacamole + - Debian + - LogMeIn + - RDP + - SSH + - Self-hosted + - TeamViewer + - VNC + last_post_language: "" + last_post_guid: 6d46247e305059d7ea040619dc37b58f + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: fr +--- diff --git a/content/discover/feed-92f1769967df35157b8816eb9e00dbfe.md b/content/discover/feed-92f1769967df35157b8816eb9e00dbfe.md deleted file mode 100644 index b4e93e650..000000000 --- a/content/discover/feed-92f1769967df35157b8816eb9e00dbfe.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Stefan Bohacek -date: "1970-01-01T00:00:00Z" -description: Public posts from @stefan@stefanbohacek.online -params: - feedlink: https://stefanbohacek.online/@stefan.rss - feedtype: rss - feedid: 92f1769967df35157b8816eb9e00dbfe - websites: - https://stefanbohacek.online/@stefan: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://botwiki.org/author/stefan: true - https://github.com/stefanbohacek: true - https://soundcloud.com/stefanbohacek: false - https://stefanbohacek.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-92ff85adaedd75d46d33a6c13a6df91f.md b/content/discover/feed-92ff85adaedd75d46d33a6c13a6df91f.md index b9990302a..094ce26e0 100644 --- a/content/discover/feed-92ff85adaedd75d46d33a6c13a6df91f.md +++ b/content/discover/feed-92ff85adaedd75d46d33a6c13a6df91f.md @@ -7,7 +7,6 @@ params: feedtype: rss feedid: 92ff85adaedd75d46d33a6c13a6df91f websites: - https://www.leaningforward.com/blog: false https://www.leaningforward.com/blog/: true blogrolls: [] recommended: [] @@ -24,17 +23,22 @@ params: last_post_link: https://www.leaningforward.com/blog/2024/05/fortnote-27th-may/?utm_source=rss&utm_medium=rss&utm_campaign=fortnote-27th-may last_post_categories: - Uncategorized + last_post_language: "" last_post_guid: 372222191d48dc333a5dcfe1fe17a358 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 11 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-93001fa894671a84967583fb3cd92b59.md b/content/discover/feed-93001fa894671a84967583fb3cd92b59.md new file mode 100644 index 000000000..bbab2e9a0 --- /dev/null +++ b/content/discover/feed-93001fa894671a84967583fb3cd92b59.md @@ -0,0 +1,60 @@ +--- +title: Madhura's Blog +date: "2024-03-13T23:00:58-07:00" +description: "" +params: + feedlink: https://madhuracj.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 93001fa894671a84967583fb3cd92b59 + websites: + https://madhuracj.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ESRI shape files + - Editing GIS data + - FOSS + - GSoC + - GSoC 2011 + - MySQL spatial indexes + - OpenGIS support + - OpenLayers + - OpenStreetMaps + - SVG + - Visualizing GIS data + - WKB + - WKT + - jQuery SVG + - p + - phpMyAdmin + - phpMyAdmin Developer + relme: + https://madhuracj.blogspot.com/: true + https://www.blogger.com/profile/05971454704476276713: true + last_post_title: phpMyAdmin work during twenty fifth, twenty sixth and twenty eighth + weeks + last_post_description: "" + last_post_date: "2016-04-07T20:27:36-07:00" + last_post_link: https://madhuracj.blogspot.com/2016/04/phpmyadmin-work-during-twenty-fifth.html + last_post_categories: + - phpMyAdmin Developer + last_post_language: "" + last_post_guid: bdc74cd841fea1fa13b1760ef630a4ce + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9302b83228b6ac8ec5e83d68ddd2c73c.md b/content/discover/feed-9302b83228b6ac8ec5e83d68ddd2c73c.md deleted file mode 100644 index b0dd5a902..000000000 --- a/content/discover/feed-9302b83228b6ac8ec5e83d68ddd2c73c.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Comments for Secret Blogging Seminar -date: "1970-01-01T00:00:00Z" -description: Representation theory, geometry and whatever else we decide is worth - writing about today. -params: - feedlink: https://sbseminar.wordpress.com/comments/feed/ - feedtype: rss - feedid: 9302b83228b6ac8ec5e83d68ddd2c73c - websites: - https://sbseminar.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on About by Definitely Downriver - last_post_description: Hii great reading your post - last_post_date: "2024-05-26T18:44:22Z" - last_post_link: https://sbseminar.wordpress.com/about/#comment-27922 - last_post_categories: [] - last_post_guid: 9b833c351fa71d3b59e023624ba0d9ad - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-930ccfe6426f56f4878be8b53ceabba7.md b/content/discover/feed-930ccfe6426f56f4878be8b53ceabba7.md new file mode 100644 index 000000000..c52c18d3d --- /dev/null +++ b/content/discover/feed-930ccfe6426f56f4878be8b53ceabba7.md @@ -0,0 +1,61 @@ +--- +title: Gilles Gravier's Blog +date: "2024-03-08T05:04:51+01:00" +description: Ravings about many things... but not about work (mostly). I post to this + blog various things I see while walking around carrying my cell phone, or that I + think are important enough to mention. I blog +params: + feedlink: https://ggravier.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 930ccfe6426f56f4878be8b53ceabba7 + websites: + https://ggravier.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - boiron + - carrefour + - colis + - ddpp + - dgccrf + - fedex + - fraude + - fraudeur + - homeopathie + - la poste + - mysql + - oscillococcinum + - promotions + - sante + - suivi + relme: + https://ds-in-chablais.blogspot.com/: true + https://ggravier.blogspot.com/: true + https://gillesgravierphotography.blogspot.com/: true + https://thinkingopensource.blogspot.com/: true + https://www.blogger.com/profile/18374683443794882592: true + last_post_title: Is Your Open Source Strategy Serving Your Corporate Strategy ? + last_post_description: "" + last_post_date: "2016-12-05T14:58:44+01:00" + last_post_link: https://ggravier.blogspot.com/2016/12/is-your-open-source-strategy-serving.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 1af5da2cb5fd13af476f7caf60bb4572 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-931d94428bed7f883c101a30cb875925.md b/content/discover/feed-931d94428bed7f883c101a30cb875925.md new file mode 100644 index 000000000..a4d126a96 --- /dev/null +++ b/content/discover/feed-931d94428bed7f883c101a30cb875925.md @@ -0,0 +1,44 @@ +--- +title: Comments for Down South Farm +date: "1970-01-01T00:00:00Z" +description: Living Happy in Sunny Tasmania +params: + feedlink: https://downsouthfarm.com/comments/feed/ + feedtype: rss + feedid: 931d94428bed7f883c101a30cb875925 + websites: + https://downsouthfarm.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://downsouthfarm.com/: true + last_post_title: Comment on How to Make Rough Cider by Jeremy Warnes + last_post_description: |- + In reply to tserong. + + Thanks Tim. + The residual cider that was left after the sediment settled tasted fine and + last_post_date: "2023-08-07T07:41:50Z" + last_post_link: https://downsouthfarm.com/2017/01/how-to-make-rough-cider/#comment-304331 + last_post_categories: [] + last_post_language: "" + last_post_guid: 9e162e7d3ea1d0954fabee9d54182aff + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9320d5f681d994ec0ba998dca711ba71.md b/content/discover/feed-9320d5f681d994ec0ba998dca711ba71.md deleted file mode 100644 index ccc15fcd6..000000000 --- a/content/discover/feed-9320d5f681d994ec0ba998dca711ba71.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: ADMIN magazine -date: "1970-01-01T00:00:00Z" -description: Public posts from @adminmagazine@hachyderm.io -params: - feedlink: https://hachyderm.io/@adminmagazine.rss - feedtype: rss - feedid: 9320d5f681d994ec0ba998dca711ba71 - websites: - https://hachyderm.io/@adminmagazine: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/approved/: true - https://eepurl.com/hyVfYv: false - https://opensourcejobhub.com/: false - https://www.admin-magazine.com/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9325fce4a2c275e0c234cc5542103d50.md b/content/discover/feed-9325fce4a2c275e0c234cc5542103d50.md deleted file mode 100644 index 325aab64f..000000000 --- a/content/discover/feed-9325fce4a2c275e0c234cc5542103d50.md +++ /dev/null @@ -1,58 +0,0 @@ ---- -title: calvaris' blog -date: "1970-01-01T00:00:00Z" -description: This blog is about hacking, Igalia and maybe some personal opinions -params: - feedlink: https://blogs.igalia.com/xrcalvar/feed/ - feedtype: rss - feedid: 9325fce4a2c275e0c234cc5542103d50 - websites: - https://blogs.igalia.com/xrcalvar/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Igalia.com - - Planet GStreamer - - Planet Igalia - - Planet WebKit - - Planet WebKitGtk+ - - decryption - - eme - - encrypted media - - Encrypted Media Extensions - - gstreamer - - media - relme: {} - last_post_title: Serious Encrypted Media Extensions on GStreamer based WebKit ports - last_post_description: Encrypted Media Extensions (a.k.a. EME) is the W3C standard - for encrypted media in the web. This way, media providers such as Hulu, Netflix, - HBO, Disney+, Prime Video, etc. can provide their contents - last_post_date: "2020-09-02T14:59:47Z" - last_post_link: https://blogs.igalia.com/xrcalvar/2020/09/02/serious-encrypted-media-extensions-on-gstreamer-based-webkit-ports/ - last_post_categories: - - Igalia.com - - Planet GStreamer - - Planet Igalia - - Planet WebKit - - Planet WebKitGtk+ - - decryption - - eme - - encrypted media - - Encrypted Media Extensions - - gstreamer - - media - last_post_guid: ee8530cd3f8e5b6bbd6801f8a3012743 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-93366d483a0874bb1d78faed8c0a8b95.md b/content/discover/feed-93366d483a0874bb1d78faed8c0a8b95.md new file mode 100644 index 000000000..794c319d7 --- /dev/null +++ b/content/discover/feed-93366d483a0874bb1d78faed8c0a8b95.md @@ -0,0 +1,45 @@ +--- +title: Tavlin Consulting +date: "1970-01-01T00:00:00Z" +description: Musings, thoughts, and services for engineering leaders +params: + feedlink: https://daydreamsinruby.com/rss.xml + feedtype: rss + feedid: 93366d483a0874bb1d78faed8c0a8b95 + websites: + https://daydreamsinruby.com/: false + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: [] + relme: {} + last_post_title: 'Unlocking Advanced Facilitation Skills: Insights from Georgetown + University''s Transformational Leadership Facilitation Certification' + last_post_description: In February, I had the privilege of completing Georgetown + University’s Institute for Transformational Leadership’s Facilitation Certification + course. It was an amazing experience and one that a + last_post_date: "2024-05-28T00:00:00Z" + last_post_link: https://www.daydreamsinruby.com/blog/2024-05-28-unlocking-advanced-facilitation-skills/ + last_post_categories: [] + last_post_language: "" + last_post_guid: d52f7d787cda6de646320f0e3f12b3f1 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 1 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9337514542b594494b257e8a73922152.md b/content/discover/feed-9337514542b594494b257e8a73922152.md deleted file mode 100644 index e23a25dc0..000000000 --- a/content/discover/feed-9337514542b594494b257e8a73922152.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: pwa.io -date: "1970-01-01T00:00:00Z" -description: Philipp Waldhauer -params: - feedlink: https://pwa.io/feed.xml - feedtype: rss - feedid: 9337514542b594494b257e8a73922152 - websites: - https://pwa.io/: true - blogrolls: [] - recommended: [] - recommender: - - https://jlelse.blog/.min.rss - - https://jlelse.blog/.rss - - https://jlelse.blog/index.xml - categories: [] - relme: - https://github.com/pwaldhauer: false - https://norden.social/@pwa: false - last_post_title: Building an all-in-one container to create PDFs with Browsershot - last_post_description: In the past few months, I've encountered several situations - where I needed to capture web page screenshots or convert HTML templates into - PDF files for printing. Fortunately, we now have the - last_post_date: "2023-06-16T12:00:00+02:00" - last_post_link: https://pwa.io/articles/browsershot-all-in-one - last_post_categories: [] - last_post_guid: 23ab11a0983fc2b8a846e73ccf8391d0 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 14 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-93418b4b9dd688566f1fa5919bc999e5.md b/content/discover/feed-93418b4b9dd688566f1fa5919bc999e5.md new file mode 100644 index 000000000..3952ecc7f --- /dev/null +++ b/content/discover/feed-93418b4b9dd688566f1fa5919bc999e5.md @@ -0,0 +1,146 @@ +--- +title: Информатика в экономике и управлении +date: "2024-03-01T10:16:18+02:00" +description: Свободное программное обеспечение для бизнеса и дома. +params: + feedlink: https://infineconomics.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 93418b4b9dd688566f1fa5919bc999e5 + websites: + https://infineconomics.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - AGGREGATE + - Apache OpenOffice + - Assembler + - Basic + - BugHunting + - Calc + - Draw + - Excel + - HLOOKUP + - IBM + - IRC-канал + - LibreOffice + - Linux + - MS Excel + - MS Word + - Open Font Library + - Open Source + - OpenOffice.org + - Oracal + - SUBTOTAL + - SUM + - SUMIF + - SUMIFS + - TDF + - The Document Foundation + - VLOOKUP + - Writer + - XY + - bash + - bugs + - gimp + - macros + - patch + - Бабочка + - ВПР + - ВССиТ + - ГПР + - Ганта + - Линии + - Программирование + - Сердце + - Торнадо + - автоформат + - биржевая + - гистограмма + - график + - десятка + - диаграмма + - диапазон + - животные + - интегрирование + - интерфейс + - инфраструктура + - история + - календарь + - книги + - командная строка + - круговая + - кулинария + - линейный график + - лист + - макрос + - мастер диаграмм + - математика + - миграции + - навигация + - научно-популярное + - новости + - нумерация + - обзоры + - область + - общество + - оглавление + - официальные сайты + - переводы + - почтовая рассылка + - приколы + - психология + - пузырьковая + - раздел + - расчеты + - релиз + - сайт + - сетчатая + - сообщество + - сортировка + - спидометр + - стиль + - таблица + - таблицы + - типы данных + - тригонометрия + - указатели + - философия + - форматирование + - формулы + - функция + - хитрости + - шаблон + - шрифты + - эеспертные настройки + relme: + https://dnimruoynepo.blogspot.com/: true + https://infineconomics.blogspot.com/: true + https://tagezi.blogspot.com/: true + https://www.blogger.com/profile/06477487516753870290: true + last_post_title: Миграция на LibreOffice в Российской Федерации + last_post_description: "" + last_post_date: "2018-02-26T19:32:27+02:00" + last_post_link: https://infineconomics.blogspot.com/2018/02/migrationlibreofficerussianfederation.html + last_post_categories: + - LibreOffice + - миграции + last_post_language: "" + last_post_guid: 213590f3543443643c7fe344e288b342 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-93457ca876f6df9fcc68fd85e88ea346.md b/content/discover/feed-93457ca876f6df9fcc68fd85e88ea346.md new file mode 100644 index 000000000..f502c126d --- /dev/null +++ b/content/discover/feed-93457ca876f6df9fcc68fd85e88ea346.md @@ -0,0 +1,40 @@ +--- +title: Sonny's +date: "2024-07-09T03:06:37Z" +description: "" +params: + feedlink: https://blog.sonny.re/feed/ + feedtype: rss + feedid: 93457ca876f6df9fcc68fd85e88ea346 + websites: + https://blog.sonny.re/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://blog.sonny.re/: true + last_post_title: Workbench News + last_post_description: "" + last_post_date: "2024-05-28T14:22:30Z" + last_post_link: https://blog.sonny.re/workbench-news?pk_campaign=rss-feed + last_post_categories: [] + last_post_language: "" + last_post_guid: 63a6cf0406317c0969e70bdc1b946782 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-93480431769d1c97b4f9950089ab574b.md b/content/discover/feed-93480431769d1c97b4f9950089ab574b.md new file mode 100644 index 000000000..35f8f259b --- /dev/null +++ b/content/discover/feed-93480431769d1c97b4f9950089ab574b.md @@ -0,0 +1,42 @@ +--- +title: Failures in Fishkeeping +date: "2024-03-14T07:25:54+11:00" +description: They teach with their lives. +params: + feedlink: https://failuresinfishkeeping.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 93480431769d1c97b4f9950089ab574b + websites: + https://failuresinfishkeeping.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://failuresinfishkeeping.blogspot.com/: true + https://ghcsparc.blogspot.com/: true + https://www.blogger.com/profile/08287674468193351664: true + last_post_title: 9x Cyprichromis leptosoma Mpulungu fry RIP + last_post_description: "" + last_post_date: "2012-10-30T14:29:32+11:00" + last_post_link: https://failuresinfishkeeping.blogspot.com/2012/10/9x-cyprichromis-leptosoma-mpulungu-fry.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 65613d4816b760d25247a305ca42d42e + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9359b0b4c0d486e345054a8822bdb223.md b/content/discover/feed-9359b0b4c0d486e345054a8822bdb223.md deleted file mode 100644 index 7f36262c0..000000000 --- a/content/discover/feed-9359b0b4c0d486e345054a8822bdb223.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: OpenCost -date: "1970-01-01T00:00:00Z" -description: Public posts from @opencost@hachyderm.io -params: - feedlink: https://hachyderm.io/@opencost.rss - feedtype: rss - feedid: 9359b0b4c0d486e345054a8822bdb223 - websites: - https://hachyderm.io/@OpenCost: false - https://hachyderm.io/@opencost: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/approved/: false - https://github.com/opencost: true - https://slack.cncf.io/: false - https://www.opencost.io/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-935f0d94da1fc2f0ab8cfdde3292d1bb.md b/content/discover/feed-935f0d94da1fc2f0ab8cfdde3292d1bb.md index dad464371..bfb768318 100644 --- a/content/discover/feed-935f0d94da1fc2f0ab8cfdde3292d1bb.md +++ b/content/discover/feed-935f0d94da1fc2f0ab8cfdde3292d1bb.md @@ -12,307 +12,311 @@ params: recommended: [] recommender: [] categories: - - talking - - star - - model - - data - - bayes - - statistics - - spectroscopy - - seminar - - writing - - imaging - - code - - exoplanet - - sdss - - Milky Way - - galaxy - - practice - - meeting - - time - - dynamics - - calibration - - astrometry - - gaia - - cosmology - - photometry - - not research - - machine learning - - radial velocity - - chemistry - - kinematics - - mathematics - - information - - graphical model - - Kepler - - literature - - substructure - - MCMC - - regression - - quasar - - optimization - - linear algebra - - philosophy - - proposal - - TheCannon - - computing - - large-scale structure - - decision - - Gaussian process - - disk - - binary star - - noise - - visualization - - telescope - - galex - - dark sector - - funding - - catalog - - star formation - - travel - - theory - - gravitational lensing - - gravity - - LTFDFCF - - thinking - - hardware - - causation - - black hole - - asteroseismology - - clustering - - dust - - supernova - - point-spread function - - HARPS - - halo - - classification - - life - - proper motion - - LSST - - TESS - - search - - gastrophysics - - particle physics - - reading - - Solar System - - group theory - - meta data - - atlas - - nucleosynthesis - - cluster - - tractor - - engineering - - electricity and magnetism - - spitzer - - cosmography - - experiment - - panstarrs - - interstellar medium - - open science - - web 2.0 - - wise - - white dwarf - - EXPRES - - microscopy - - project management - 2mass - - HST + - ALMA + - API + - ASASSN + - Bart - CDM - - geometry - - merging - - testing - - Terra Hunting - - observing - - radio - - fundamental astronomy - - intergalactic medium - - database + - Cassini + - Chandra + - CoRoT + - DESI + - EXPRES - Earth - Euclid - - baryon acoustic feature - - pulsar - - eating - - GALAH - - signal processing - - comet - - politics - - LAMOST - - citizen science - - email - - phase space - - brown dwarf - - transparency - - LIGO - - environment + - FRBs - Fermi - - Planck - - Sun + - GALAH + - Gaussian process + - HARPS - HMF - - PHAT - - interferometry - - planet - - robot - - cosmic ray - - parallax - - thermodynamics + - HST - Herschel - - atomic physics - - design - - gamma-ray burst - - minor planet - - thresher - - nuclear physics - - primus - - rave - - ultraviolet - JWST - - charge-coupled device - - compressed sensing - - evolution - - refereeing - - relativity - - roweis - - accretion - - causality - - interpolation - - neuroscience - - selection function - - units - - digital camera - - hipparcos - - history - - inflation - - quantum mechanics - - sailing - - text - - amateur - - biology - - deep learning - - diffraction - - drinking - - optics - - WFIRST - - archive - - education - - string theory - - anthropic - - archetype - - architecture - - discussion - - hacking - - usno-b - - API - - dissertation - - intelligence - - music - - osss - - reproducibility - - science - - astrobiology - - coffee - - pipeline - - spherex - - teaching - - weather + - KNN + - Kepler + - LAMOST - LHC - - WMAP - - ad hockery - - anthropology - - climate - - correlation - - density estimation - - diagnosis - - editing - - geology - - mentoring - - post-starburst - - social media - - ALMA - - Bart - - DESI - - P1640 - - apass - - compression - - confusion - - demographics - - ethics - - fail - - farm machinery - - learning - - outreach - - scattering - - sonification - - x-ray - - Cassini - - Chandra + - LIGO - LISA - - Moon - - NuSTAR - - PTF - - Saturn - - ZTF - - administration - - aliens - - balloon - - bullshit - - daft - - flickr - - frequentism - - gambling - - game theory - - nasa - - plasma - - press - - procrastination - - sound - - vlt-sphere - - ASASSN - - CoRoT - - FRBs - - KNN - LMIRcam + - LSST + - LTFDFCF - Local Group + - MCMC + - Milky Way + - Moon + - NuSTAR + - P1640 + - PHAT - PLATO + - PTF + - Planck - SDO - SVM + - Saturn + - Solar System + - Sun + - TESS + - Terra Hunting + - TheCannon - VLA + - WFIRST + - WMAP - Willman 1 + - ZTF + - accretion + - ad hockery + - administration - advice + - aliens + - amateur + - anthropic + - anthropology + - apass + - archetype + - architecture + - archive - askap + - asteroseismology + - astrobiology - astrology + - astrometry + - atlas + - atomic physics + - balloon + - baryon acoustic feature + - bayes + - binary star + - biology + - black hole + - brown dwarf + - bullshit + - calibration + - catalog + - causality + - causation - chaos monkey + - charge-coupled device + - chemistry + - citizen science + - classification + - climate - clothing + - cluster + - clustering + - code + - coffee - combinatorics + - comet + - compressed sensing + - compression + - computing - condensed matter + - confusion + - correlation + - cosmic ray + - cosmography + - cosmology + - daft + - dark sector + - data + - database + - decision + - deep learning + - demographics + - density estimation + - design + - diagnosis + - diffraction + - digital camera + - discussion + - disk + - dissertation - documentation - dragonfly + - drinking + - dust + - dynamics + - eating + - editing + - education + - electricity and magnetism + - email - emotions + - engineering + - environment + - ethics - ethnography + - evolution - exomoon + - exoplanet + - experiment + - fail + - farm machinery + - flickr + - frequentism - frisbee + - fundamental astronomy + - funding + - gaia + - galaxy + - galex + - gambling - game + - game theory + - gamma-ray burst + - gastrophysics - gauge + - geology + - geometry + - graphical model + - gravitational lensing + - gravity - group meeting + - group theory + - hacking + - halo - handicapping + - hardware + - hipparcos + - history + - imaging + - inflation + - information + - intelligence + - interferometry + - intergalactic medium + - interpolation + - interstellar medium + - kinematics + - large-scale structure - law + - learning + - life + - linear algebra + - literature + - machine learning - making + - mathematics + - meeting + - mentoring + - merging + - meta data + - microscopy + - minor planet + - model + - music + - nasa + - neuroscience + - noise + - not research + - nuclear physics + - nucleosynthesis + - observing + - open science + - optics + - optimization + - osss + - outreach + - panstarrs + - parallax + - particle physics + - phase space + - philosophy - phone + - photometry + - pipeline + - planet + - plasma - point cloud + - point-spread function - polarization - polemic + - politics + - post-starburst + - practice + - press + - primus + - procrastination + - project management + - proper motion + - proposal + - pulsar + - quantum mechanics + - quasar + - radial velocity + - radio - rant + - rave + - reading + - refereeing + - regression - regret + - relativity + - reproducibility - ring + - robot + - roweis + - sailing + - scattering + - science + - sdss + - search + - selection function - semantics + - seminar + - signal processing + - social media + - sonification + - sound + - spectroscopy + - spherex + - spitzer + - star + - star formation + - statistics - storytime + - string theory + - substructure + - supernova - swift + - talking + - teaching + - telescope + - testing + - text + - theory + - thermodynamics + - thinking + - thresher + - time - topology + - tractor + - transparency + - travel - ukidss + - ultraviolet + - units + - usno-b - virtual observatory + - visualization + - vlt-sphere - volcanism - water - weapons + - weather + - web 2.0 + - white dwarf + - wise + - writing + - x-ray relme: + https://hoggideas.blogspot.com/: true + https://hoggmaker.blogspot.com/: true + https://hoggresearch.blogspot.com/: true + https://hoggteaching.blogspot.com/: true https://www.blogger.com/profile/18398397408280534592: true last_post_title: submitted! last_post_description: OMG I actually just submitted an actual paper, with me as @@ -321,17 +325,22 @@ params: last_post_date: "2024-03-16T20:28:00Z" last_post_link: https://hoggresearch.blogspot.com/2024/03/submitted.html last_post_categories: [] + last_post_language: "" last_post_guid: 16f692a7cefeacab9072d0cc6014ce58 score_criteria: cats: 5 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-936a05dcec9da2dea330692f6c7a46f0.md b/content/discover/feed-936a05dcec9da2dea330692f6c7a46f0.md deleted file mode 100644 index e05a4e22e..000000000 --- a/content/discover/feed-936a05dcec9da2dea330692f6c7a46f0.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: The Verge - All Posts -date: "2024-06-04T12:53:59-04:00" -description: "" -params: - feedlink: https://theverge.com/rss/index.xml - feedtype: atom - feedid: 936a05dcec9da2dea330692f6c7a46f0 - websites: - https://theverge.com/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Former OpenAI employees say whistleblower protection on AI safety - is not enough - last_post_description: "" - last_post_date: "2024-06-04T12:53:59-04:00" - last_post_link: https://www.theverge.com/2024/6/4/24171283/openai-safety-open-letter-whistleblower-agi - last_post_categories: [] - last_post_guid: f3a92be685af9aa927ffb5263b76659f - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 4 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-93880cc483a24edfd1c5083e4977c210.md b/content/discover/feed-93880cc483a24edfd1c5083e4977c210.md new file mode 100644 index 000000000..bd26603ab --- /dev/null +++ b/content/discover/feed-93880cc483a24edfd1c5083e4977c210.md @@ -0,0 +1,62 @@ +--- +title: Handy News Reader +date: "2024-07-05T08:04:10+02:00" +description: A convenient, distraction-free way of being up-to-date with Your Interests + & Passions. +params: + feedlink: https://handynewsreader.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 93880cc483a24edfd1c5083e4977c210 + websites: + https://handynewsreader.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - advanced + - de + - download + - first steps + - id + - info + - news + - pl + - ru + - us + - us id ru + relme: + https://aboutthomasleigh.blogspot.com/: true + https://handynewsreader.blogspot.com/: true + https://jaktamjaponski.blogspot.com/: true + https://moliumpodcast.blogspot.com/: true + https://smartthemesfor.blogspot.com/: true + https://thomascafepodcast.blogspot.com/: true + https://thomasleighthemes.blogspot.com/: true + https://thomasleighuniverse.blogspot.com/: true + https://www.blogger.com/profile/01268074830941697525: true + https://zrodlokreacji.blogspot.com/: true + last_post_title: Häufig gestellte Fragen. + last_post_description: "" + last_post_date: "2020-07-25T00:12:51+02:00" + last_post_link: https://handynewsreader.blogspot.com/2020/07/haufig-gestellte-fragen.html + last_post_categories: + - de + last_post_language: "" + last_post_guid: 6506788fbdf676332c2107c7f1a24884 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-939662320afeece7a3a3348f65f541ac.md b/content/discover/feed-939662320afeece7a3a3348f65f541ac.md deleted file mode 100644 index d5b69a550..000000000 --- a/content/discover/feed-939662320afeece7a3a3348f65f541ac.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Oglaf! -- Comics. Often dirty. -date: "1970-01-01T00:00:00Z" -description: Comics. Often dirty. Updates Sundays. -params: - feedlink: https://oglaf.com/feeds/rss/ - feedtype: rss - feedid: 939662320afeece7a3a3348f65f541ac - websites: - https://oglaf.com/latest/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Huff and Puff - last_post_description: "" - last_post_date: "2024-06-02T00:00:00Z" - last_post_link: https://www.oglaf.com/huffnpuff/ - last_post_categories: [] - last_post_guid: ad37663eaead9e6e3e5061ff91e8e75b - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-93af9540ad3b778a6be667c2c421260e.md b/content/discover/feed-93af9540ad3b778a6be667c2c421260e.md deleted file mode 100644 index 863cc8715..000000000 --- a/content/discover/feed-93af9540ad3b778a6be667c2c421260e.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Tantek Çelik -date: "1970-01-01T00:00:00Z" -description: Public posts from @t@xoxo.zone -params: - feedlink: https://xoxo.zone/@t.rss - feedtype: rss - feedid: 93af9540ad3b778a6be667c2c421260e - websites: - https://xoxo.zone/@t: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://tantek.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-93d06e85a32adc540200d515e110da66.md b/content/discover/feed-93d06e85a32adc540200d515e110da66.md new file mode 100644 index 000000000..987e95687 --- /dev/null +++ b/content/discover/feed-93d06e85a32adc540200d515e110da66.md @@ -0,0 +1,44 @@ +--- +title: Arne’s Weekly +date: "1970-01-01T00:00:00Z" +description: A weekly newsletter with the best stories of the internet. +params: + feedlink: https://arne.me/weekly/feed.xml + feedtype: rss + feedid: 93d06e85a32adc540200d515e110da66 + websites: + https://arne.me/: false + https://arne.me/book-reviews: false + https://arne.me/weekly: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - '#153' + relme: + https://arne.me/weekly: true + last_post_title: 153 / htmx sucks + last_post_description: 'Issue #153 of Arne’s Weekly' + last_post_date: "2024-07-07T00:00:00Z" + last_post_link: https://arne.me/weekly/153 + last_post_categories: + - '#153' + last_post_language: "" + last_post_guid: efb3581dc86fd28139ccecdd64c70204 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-93dfce646a57c4913c5efdc97bdf0be1.md b/content/discover/feed-93dfce646a57c4913c5efdc97bdf0be1.md index 8eb42ac5f..0e5d5476e 100644 --- a/content/discover/feed-93dfce646a57c4913c5efdc97bdf0be1.md +++ b/content/discover/feed-93dfce646a57c4913c5efdc97bdf0be1.md @@ -1,6 +1,6 @@ --- title: Jonstraveladventures -date: "2024-06-16T19:38:39+02:00" +date: "2024-07-07T08:28:53+02:00" description: Dr Shock searches for some enlightenment in the strange world of string theory in the hope that he may stumble across some great food and interesting experiences on this preposterous quest (England - @@ -14,348 +14,50 @@ params: recommended: [] recommender: [] categories: - - photography - - China - - Beijing - - physics - - Spain - - Galicia - - Santiago de Compostela - - videos - - work - - atmospheric optics - - food - - talks - - travel - - astronomy - - japan - - music - - couchsurfing - - books - - travels - - Chinese - - astrophotography - - tips - - science - - South Africa - - papers - - string theory - - korea - - video - - 22 degree solar halo - - Munich - - art - - language - - news - - reviews - - Germany - - cooking - - Oxford - - England - - Spanish - - Seoul - - TED - - lectures - - scitalks - - Kyoto - - Moon - - Tokyo - - conferences - - eclipse - - movies - - research - - Links - - architecture - - languages - - update - - updates - - Festival - - HDR - - KITPC - - Kruger National Park - - London - - Toomanytribbles - - advertising - - computers - - flights - - technology - - weather - - Argentina - - BAblog - - Cape Town - - Christmas - - Dublin - - Morocco - - Olympics - - Shanghai - - UK - - Wudaokou - - Wuhan - - blogs - - nature - - storms - - sundogs - - Africa - - Baoji - - Barcelona - - Blogger - - Buenos Aires - - Flickr - - Jupiter - - Pingliang - - South America - - animals - - computing - - education - - films - - friends - - madrid - - mathematics - - rain - - seminars - - sightseeing - - sunset - - AdS/QCD - - CERN - - California - - Chinese food - - D22 - - France - - Gansu - - Internet - - Jiuzhaigou - - Kabuki - - Korean food - - LHC - - Mathematica - - New Year - - Porto - - Portugal - - TED conference - - air pollution - - blogging - - complex systems summer school - - fireworks - - hints - - holidays - - maths - - recipes - - review - - software - - stars - - summary - - trains - - venus - - 22 degree lunar halo - - Asturias - - B physics - - Bariloche - - Cargese - - Carnival - - Geneva - - Haiku - - Ireland - - Kimchi - - Korean - - Lijiang - - Mac - - Monterey - - Mozambique - - Paris - - Patagonia - - Perseids - - Pimsleur - - Politics - - Santiagiago de Compostela - - Shaanxi - - Steinbeck - - Stephen Hawking - - USA - - Yunnan - - animations - - block - - culture - - drink - - evolution - - inspiration - - juggling - - meteors - - molecular gastronomy - - motivation - - particle physics - - pipes - - rainbow - - recipe - - stories - - strings 2007 - - stupidity - - telescopes - - traffic - - upper tangent arc - - web 2.0 - - wedding - - ACER - - API - - Aboriginal culture - - Burt Rutan - - CMS - - Capoeira - - Chengdu - - Chinglish - - Cine Europa - - Coursera - - Croatia - - Data - - Dave Feldman - - Dubai - - Dubrovnik - - Eiffel tower - - English corner - - Fes - - Gamma ray burster - - Genius - - Gijon - - Greece - - Hangul - - Japanese - - Jonathan Tel - - Kongtong shan - - Kubrick - - La Coruna - - LaTeX - - Macro - - Marrakech - - May day - - Michel Thomas - - Milos - - Monte Pindo - - NASA - - Nav - - Nicholas Negroponte - - Phil Plait - - Pohang - - Pollution - - QFT - - Semana Santa - - Sichuan - - Sidney Coleman - - Sitges - - Solar cooking - - Study - - Switzerland - - Tate Modern - - Ted talks - - Television - - Tim Ferris - - Titan - - Udacity - - Windows Vista - - Wolfram Alpha - - ads/cft - - apology - - atmosperic optics - - bills - - biology - - bird's nest - - blog - - cameras - - cathedral - - chicken soup - - clubs - - coastline - - concerts - - conjunction - - experiments - - extra solar planets - - fair - - family - - fiction - - flashcards - - genetic algorithms - - google - - google reader - - guide - - hacks - - hair cuts - - history - - hospitals - - insect - - jazz - - lamprey - - life - - literature - - magazines - - mandarin - - medicine - - midi festival - - milky way - - mobile phones - - moonrise - - museum - - net nanny - - nostalgia - - obituary - - octopus - - one laptop per child - - opening ceremony - - operating systems - - outreach - - photgraphy - - photograpy - - planets - - police - - program - - random - - reading - - reflections - - religion - - rocket launch - - schools - - scientists - - search - - solar halo - - spiders - - string cosmology - - summer - - summer school - - sushi - - tannery - - temples - - tiredness - - trees - - trip - - turing machine - - views - - visa - - writing - 120 degree parhelion + - 22 degree lunar halo + - 22 degree solar halo - "798" - A coruna + - ACER - AI - AIMS + - API - ATLAS + - Aboriginal culture - AdS Collective + - AdS/QCD - Addons - Adobe Acroread + - Africa - Akihabara - Alday - Alzheimer's - Amazonian Giant Centipede + - Argentina - Artificial Intelligence + - Asturias - Atlantic - Australia - Austria - Awards + - B physics + - BAblog - BBC news - BDS - BMX + - Baoji - Baoli - Barajas + - Barcelona + - Bariloche - Basque country + - Beijing - Beijing City Weekender - Bergman - Berlin - Big Sur + - Blogger - Boingboing - Bookworm - Borough Market @@ -371,22 +73,38 @@ params: - Brussels - Buckingham Palace - Budapest + - Buenos Aires - Burj Dubai + - Burt Rutan - Buster Keaton - CCTV tower + - CERN + - CMS + - California - Cambridge + - Cape Town - Cape of Good Hope + - Capoeira + - Cargese - Carl Sagan + - Carnival - Carolyn Porco - Casa Marcelo - Cassini - Catholicism - Changgyeongung - Chaoyang + - Chengdu - Cherry blossom - Chin + - China - China's Instant Cities + - Chinese + - Chinese food - Chinesepod + - Chinglish + - Christmas + - Cine Europa - Cineuropa - Clay Shirky - Comet 17/P holmes @@ -396,8 +114,11 @@ params: - Copenhagen - Cory Doctorow - Cosmos + - Coursera - Craig Venter - Craigs list + - Croatia + - D22 - DIAS - DSLR - Daegu @@ -405,6 +126,8 @@ params: - Dan Dennet - Danial Tammat - Dashanzi + - Data + - Dave Feldman - Dawson Bros - Denmark - Descartes @@ -415,39 +138,60 @@ params: - Dreaming in Code - Dreamtime - Dropbox + - Dubai + - Dublin + - Dubrovnik - Dunhuang - Earth day - Earth hour - Earthshine - Echineselearning + - Eiffel tower - El Ateneo - Elliott Sharp - Encounters at the end of the world + - England - English Garden + - English corner - Everest + - Fes + - Festival - Fiesta - Firefox - First impressions - Fisterra + - Flickr - Fonseca Prize + - France - Francis Elizabeth Allen - Freemind - Freud - Fuji - GFW - Gaia + - Galicia + - Gamma ray burster + - Gansu - Gatecrasher + - Geneva + - Genius + - Germany + - Gijon - Glory - Gobi - Gongti - Goodbyes - Google squared - Grease Monkey + - Greece - Green flash - Guinness - Gwoyeu Romatzyh + - HDR - Haidian park + - Haiku - Halloween + - Hangul - Harvard - Health - Henning Samtleben @@ -466,92 +210,144 @@ params: - Indian - Inhambane - International Space Station + - Internet - Internet access + - Ireland - Isla de Cies - Italian - James Glazier - James Lovelock + - Japanese - Jerry Fodor - Jiayuguan - Jinan park - Jingshan + - Jiuzhaigou - Johannesburg - John Armstrong + - Jonathan Tel - July 22nd 2009 + - Jupiter + - KITPC + - Kabuki - Kenkoku Kinenbi - Kevin Rudd - Kim Ki Duk + - Kimchi - Kiyomizu + - Kongtong shan + - Korean + - Korean food - Korean independence day + - Kruger National Park + - Kubrick - Kurt Vonnegut + - Kyoto + - LHC - LHC startup + - La Coruna - La Plata + - LaTeX - Lagoon nebula - Lanzhou - Leon + - Lijiang + - Links + - London - London Eye - M42 - MIT media lab - MITx + - Mac + - Macro - Maldacena - Mario Vargas Llosa - Marquez + - Marrakech - Mars + - Mathematica - Max Roach + - May day - Meebo - Mercury - Michael Standaert + - Michel Thomas - Michelin Star - Microsoft + - Milos - Mind maps - Mnemosyne - Money Jungle + - Monte Pindo + - Monterey + - Moon + - Morocco + - Mozambique - Mozamique + - Munich - Muros - Museum of contemporary art - Museum of natural history - Museum of the Pobo Galego + - NASA - NOMA - Namsan - Nara - National Aquatics centre - National Gallery + - Nav - Neil Turok + - New Year - Newton Institute + - Nicholas Negroponte - Nishiki - Noche de San Juan - Noctilucent clouds - Noia - Ochanomizu - Olympic Games + - Olympics - Orion - Orion nebula - Ourense - Oviedo + - Oxford - PC - Palacio de Congresos - Pamelia Kursten - Panba - Pandora + - Paris - Park - Park Chan Wook - Parque de Bonaval + - Patagonia - Paths of glory - Pattie Maes - Peking Duck + - Perseids - Pharyngula + - Phil Plait - Phineas Gage - Phoenix - Photograhy - Pico Sacro + - Pimsleur + - Pingliang - Planck + - Pohang - Poland + - Politics + - Pollution - Port + - Porto + - Portugal - Praia das Catedrais - Pub Fuco Luis - Pudong - Puppetry - QCD + - QFT - Qing Ming Jie - RAW format - RSS @@ -567,32 +363,55 @@ params: - San Francisco - San Nak Ji - San Pedro + - Santiagiago de Compostela - Santiago de Chile + - Santiago de Compostela - Saturn - Scaled Composites + - Semana Santa + - Seoul - Seoul Shinmun - Seoul tower - Setsubun + - Shaanxi + - Shanghai - Shinjuku - Shinkansen + - Sichuan - Sichuan pepper + - Sidney Coleman - Sir Ken Robinson + - Sitges - Slovakia + - Solar cooking - Solstice - Soom + - South Africa + - South America - Southampton + - Spain + - Spanish - Sphere - St Paul's + - Steinbeck - Stellarium + - Stephen Hawking - Steven Pinker + - Study - Summer Palace - Sundays + - Switzerland - TASI + - TED + - TED conference - TED prize - TEDtalks - TV - Taegu - Takoyaki + - Tate Modern + - Ted talks + - Television - Thai green curry - The Adventures of the Pisco Kid - The Beijing of Possibilities @@ -603,7 +422,11 @@ params: - Tian Tan - Tiananmen - Tim + - Tim Ferris - Tim Minchin + - Titan + - Tokyo + - Toomanytribbles - Torres Strait Islanders - Transformers - Trey Ratcliff @@ -612,6 +435,9 @@ params: - Turing Prize - Tussock moth - Txalaparta + - UK + - USA + - Udacity - Uranus - Valdivia - Vapourer @@ -623,23 +449,40 @@ params: - Westin Hotel - Whale watching - Wild Strawberries + - Windows Vista + - Wolfram Alpha + - Wudaokou + - Wuhan - X-price - XP - Yahoo Pipes - Yuan Ming Yuan - Yukawa Institute + - Yunnan - Zhangye - Zhejiangh - abiogenesis + - ads/cft + - advertising + - air pollution + - animals + - animations - anniversary - apan + - apology - appendicitis - aquarium + - architecture - architecture. - arranged marriage + - art - artWALK - articles - arxiv + - astronomy + - astrophotography + - atmosperic optics + - atmospheric optics - atoptics - autism - autumn @@ -652,11 +495,19 @@ params: - beetle - beginnings - bhuna + - bills + - biology + - bird's nest - birds - black holes + - block + - blog - blog rolling + - blogging + - blogs - boat - boing boing + - books - bookshops - border controls - boycott @@ -668,34 +519,48 @@ params: - but that's ok - cafe culture - call my bluff + - cameras - cards - catchup - caterpillars + - cathedral - celebrations - chaos - chemistry - chicken + - chicken soup - circumscribed halo - cloning - clothing - cloud seeding - cloud shadow - clouds + - clubs + - coastline - coding - coffee - comedy - comet - comments - complaints + - complex systems summer school - computation + - computers + - computing + - concerts - cone snail + - conferences + - conjunction - conservation + - cooking + - couchsurfing - counterculture - creativity - crepuscular rays - crescent - criteo - cross + - culture - culture shock - cycling - cyclists @@ -707,7 +572,10 @@ params: - devendra bernhardt - dish - dragonfly + - drink - earthquake + - eclipse + - education - eel - elephant - endings @@ -716,61 +584,94 @@ params: - epiphany - ethics - events + - evolution - exercise - experience + - experiments - explanations - explosion - extra dimensions + - extra solar planets - extra terrestrial intelligence - faces - factory + - fair + - family - fashion - feed reader + - fiction - fiestas + - films - fire - fire jumping + - fireworks - fish + - flashcards - flat - flat-hunting + - flights - flowers + - food + - friends - future - gadgets - games - gastronomy - gauged supergravity + - genetic algorithms - geometry - giraffe - gluon scattering + - google + - google reader - google system blog - gravitational waves + - guide + - hacks + - hair cuts - health service - heat - heavens above - hiking + - hints + - history - history in the making - hole in the universe - holiday + - holidays - homatropine - home - homeopathy - honking - horses + - hospitals - hyena - ice pillars - impala - information extraction + - insect - insomnia + - inspiration + - japan - jaw + - jazz - jet-lag + - juggling - kafkaesque - killer's kiss - kitchenalia + - korea + - lamprey + - language - language exchange + - languages - leather - leaves - leaving + - lectures - leopard - lessons + - life - lifehacks - lighthouse - lightning @@ -778,58 +679,94 @@ params: - linear confinement - linguistics - link + - literature - lollamprey - lowitz arcs - lunar halo + - madrid + - magazines - manatees + - mandarin - manga - market + - mathematics + - maths + - medicine - memes - memories - memory + - meteors - methane + - midi festival + - milky way + - mobile phones + - molecular gastronomy - moods + - moonrise + - motivation - mountains + - movies - moving food - msn + - museum - museums + - music - mydriasis - myriapod - n-gram - national geographic - natto + - nature - nebula + - net nanny - neuroscience + - news - newspaper - night and day - nightscene - nightsky - nigiri + - nostalgia + - obituary + - octopus - old man + - one laptop per child - onion puree - online learning - onnagata - onomatopoeia - open letter + - opening ceremony + - operating systems - optics + - outreach - packing - paella - panoramas + - papers - parhelic circle - parthenogenesis - particle accelerators + - particle physics - party - perigee + - photgraphy + - photography + - photograpy - photoshop - photosynth + - physics - pictures - pig's trotters - pinyin + - pipes + - planets - plans - playing - podcast - poetry - poisoning + - police - prado - preserved lemons - pressure cooking @@ -837,33 +774,55 @@ params: - problems - procession - productivity + - program - psychology - public figures - queuing - quotations - radio + - rain + - rainbow + - random - rants + - reading + - recipe + - recipes - recordings + - reflections + - religion + - research - researhch - restaurants - return + - review + - reviews - roads + - rocket launch - routine - satellites - scenery + - schools - sci-fi + - science + - scientists + - scitalks - sculpture + - search - seasons - secret plans + - seminars - sequences - shooting stars + - sightseeing - skype - skyscraper - slideshow - social commentary - social networking + - software - solar eclipse - solar filter + - solar halo - solar photography - solar pilar - somerset house @@ -872,29 +831,48 @@ params: - space flight - spare ribs - sperm whale + - spiders - spiral staircase - stadium - star gazing + - stars - startup - stock + - stories + - storms - stream of consciousness + - string cosmology + - string theory + - strings 2007 - students + - stupidity - subconscious - subsun - success - sufjan stevens + - summary + - summer + - summer school - sun pillars + - sundogs + - sunset - sunspots - supergravity - supersymmetry - surrealism + - sushi - swimming + - talks - tallest building - tangent arc + - tannery - tap water - taxis - tea - teaching + - technology + - telescopes + - temples - the onion - the technology singularity - the universe @@ -902,20 +880,40 @@ params: - thermodynamics - thoughts - timewasting + - tips + - tiredness - totality - tourism - tourist - tradition + - traffic + - trains + - travel - traveladventures - traveling + - travels + - trees - trekking + - trip - trips - troubles + - turing machine + - update + - updates + - upper tangent arc - valentine + - venus + - video + - videos + - views + - visa - water cooler + - weather - web + - web 2.0 - web technology - webcast + - wedding - whaling - whisky - widgets @@ -923,28 +921,38 @@ params: - windows media player - winter school - words + - work - worlfram - writers + - writing - www - yuba relme: + https://alittleplaceiknowincapetown.blogspot.com/: true + https://emergingbehaviour.blogspot.com/: true + https://jonstraveladventures.blogspot.com/: true https://www.blogger.com/profile/11667852535983804885: true last_post_title: Reflections last_post_description: "" last_post_date: "2018-02-20T21:28:36+01:00" last_post_link: https://jonstraveladventures.blogspot.com/2017/12/reflections.html last_post_categories: [] + last_post_language: "" last_post_guid: cc470c6845a14a0dcc6d2defa0a8a92f score_criteria: cats: 5 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-93e6c294dafe8b57a963868dd6b11174.md b/content/discover/feed-93e6c294dafe8b57a963868dd6b11174.md deleted file mode 100644 index 8579166ac..000000000 --- a/content/discover/feed-93e6c294dafe8b57a963868dd6b11174.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Steven Bridges -date: "1970-01-01T00:00:00Z" -description: Magician turned card counter, documenting my life of diving into the - world of playing high stakes blackjack. -params: - feedlink: https://rss.nebula.app/video/channels/stevenbridges.rss?plus=true - feedtype: rss - feedid: 93e6c294dafe8b57a963868dd6b11174 - websites: - https://nebula.tv/stevenbridges/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Entertainment - relme: {} - last_post_title: Ex-Card Cheat Reveals How He Beat Casinos | Nebula Plus - last_post_description: "In this Nebula Plus video I sit down with former professional - card cheat, Dustin Marks. \nDustin: Https://dustinmarks.com \nFollow me: https://twitter.com/stevenbridges - & https://instagram" - last_post_date: "2023-08-10T13:46:33Z" - last_post_link: https://nebula.tv/videos/stevenbridges-excard-cheat-reveals-how-he-beat-casinos/ - last_post_categories: - - Entertainment - last_post_guid: e8b6df2c30676866f3bbf6a7b0286143 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9417e92ed42b42a9df3959016838f82d.md b/content/discover/feed-9417e92ed42b42a9df3959016838f82d.md index a19046823..d2b5ebee0 100644 --- a/content/discover/feed-9417e92ed42b42a9df3959016838f82d.md +++ b/content/discover/feed-9417e92ed42b42a9df3959016838f82d.md @@ -1,6 +1,6 @@ --- title: Manuel Moreale RSS Feed -date: "2024-06-03T18:10:00+02:00" +date: "2024-07-06T16:10:00+02:00" description: A collection of random thoughts about tech, life, design and pretty much everything else I find interesting. params: @@ -15,37 +15,40 @@ params: - https://amerpie.lol/feed.xml - https://blog.numericcitizen.me/feed.xml - https://blog.numericcitizen.me/podcast.xml - - https://chrisburnell.com/feed.xml - https://colinwalker.blog/dailyfeed.xml - https://colinwalker.blog/livefeed.xml - - https://hacdias.com/feed.xml - - https://jlelse.blog/.min.rss - - https://jlelse.blog/.rss - - https://jlelse.blog/index.xml - - https://kevq.uk/feed - - https://kevq.uk/feed.xml - - https://kevq.uk/feed/ - https://kevquirk.com/feed + - https://kevquirk.com/feed/ + - https://kevquirk.com/notes-feed + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php + - https://roytang.net/blog/feed/rss/ + - https://therealadam.com/feed.xml categories: [] relme: {} - last_post_title: They might not make it - last_post_description: Months ago I ranted about Arc Search. My thoughts on the - subject have not changed. Not long after that post, the fun people at The Browser - Company released a teaser video for an upcoming 5 video - last_post_date: "2024-06-03T18:10:00+02:00" - last_post_link: https://manuelmoreale.com/@/page/RwtFLl3wOh8h4fmv + last_post_title: A moment with my 35th bday + last_post_description: I’m turning 35 today. For the first time in 35 years a birthday + managed to sneak up on me without me realizing it. There will be a time to share + and elaborate on all the mental struggles and the + last_post_date: "2024-07-06T16:10:00+02:00" + last_post_link: https://manuelmoreale.com/@/page/AsCj45WJdBiBvSzR last_post_categories: [] - last_post_guid: 00768c29589a0add0bd57a7771db0fe0 + last_post_language: "" + last_post_guid: 55dbd88ce1172e6ec3621b7b098ed5db score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-941deb2e95539d897c63a9ed2a4bbedb.md b/content/discover/feed-941deb2e95539d897c63a9ed2a4bbedb.md deleted file mode 100644 index 7995ee093..000000000 --- a/content/discover/feed-941deb2e95539d897c63a9ed2a4bbedb.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Comments for calvaris' blog -date: "1970-01-01T00:00:00Z" -description: This blog is about hacking, Igalia and maybe some personal opinions -params: - feedlink: https://blogs.igalia.com/xrcalvar/comments/feed/ - feedtype: rss - feedid: 941deb2e95539d897c63a9ed2a4bbedb - websites: - https://blogs.igalia.com/xrcalvar/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on VCR to WebM with GStreamer and hardware encoding by - Rigel - last_post_description: Sorry for your loss. I hope those old tapes bring you some - measure of comfort. - last_post_date: "2021-08-17T13:17:07Z" - last_post_link: https://blogs.igalia.com/xrcalvar/2019/10/24/vcr-to-webm-with-gstreamer-and-hardware-encoding/#comment-3943 - last_post_categories: [] - last_post_guid: 40e06a4e55f7e595836645209abfff13 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9432d6124e479c831759d22a866635b8.md b/content/discover/feed-9432d6124e479c831759d22a866635b8.md index 44c86eae4..abc9e98ce 100644 --- a/content/discover/feed-9432d6124e479c831759d22a866635b8.md +++ b/content/discover/feed-9432d6124e479c831759d22a866635b8.md @@ -15,31 +15,37 @@ params: - https://colinwalker.blog/livefeed.xml - https://jeroensangers.com/feed.xml - https://jeroensangers.com/podcast.xml - - https://www.manton.org/feed + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php - https://www.manton.org/feed.xml - https://www.manton.org/podcast.xml categories: - blog relme: {} - last_post_title: solitude and humans - last_post_description: Back from Japan (reluctantly). Having a blog makes you realise - how quickly time passes. Easily a month can pass by without any new entries here. - But that month would feel like a blink to me. So I did - last_post_date: "2024-05-10T12:18:53Z" - last_post_link: https://rebeccatoh.co/solitude-and-humans/ + last_post_title: somewhere + last_post_description: Time is bizarre and life equally so. So many mixed feelings + about these two things and so many thoughts that cannot find expression because + I’m just not good enough of a writer. So I fall back on + last_post_date: "2024-07-07T17:56:12Z" + last_post_link: https://rebeccatoh.co/somewhere/ last_post_categories: - blog - last_post_guid: 7cc15be820238dc7ea74ba6a1b1be239 + last_post_language: "" + last_post_guid: 85be6b252a9f1b4430833903d3865cd6 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 11 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-943ab5bd903e99e6dc6f1447293f24d3.md b/content/discover/feed-943ab5bd903e99e6dc6f1447293f24d3.md new file mode 100644 index 000000000..2348566bd --- /dev/null +++ b/content/discover/feed-943ab5bd903e99e6dc6f1447293f24d3.md @@ -0,0 +1,49 @@ +--- +title: Benjamin Sonntag +date: "1970-01-01T00:00:00Z" +description: Journal de bord d'un activiste à l'ère numérique +params: + feedlink: https://benjamin.sonntag.fr/feed + feedtype: rss + feedid: 943ab5bd903e99e6dc6f1447293f24d3 + websites: + https://benjamin.sonntag.fr/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - français + relme: + https://benjamin.sonntag.fr/: true + https://l-internet.fr/: true + https://mamot.fr/@neodiablow: true + https://mamot.fr/@vincib: true + https://piaille.fr/@thibault: true + https://www.octopuce.fr/: true + last_post_title: Comment connaître les limites de sa circonscription ? + last_post_description: Les élections législatives se profilent, et certain.e.s militant.e.s + vont tracter, coller des affiches etc. Mais pour cela il faut bien connaître les + limites de sa circonscription, car rien ne + last_post_date: "2022-05-14T09:45:42Z" + last_post_link: https://benjamin.sonntag.fr/2022/comment-connaitre-les-limites-de-sa-circonscription.html + last_post_categories: + - français + last_post_language: "" + last_post_guid: 3d62bd1fb389a5ff8d8917bed6c4dde5 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: fr +--- diff --git a/content/discover/feed-9448a45cf2c7982471b11b4f13700d53.md b/content/discover/feed-9448a45cf2c7982471b11b4f13700d53.md new file mode 100644 index 000000000..24a793d17 --- /dev/null +++ b/content/discover/feed-9448a45cf2c7982471b11b4f13700d53.md @@ -0,0 +1,42 @@ +--- +title: Stefan's blog +date: "2024-03-13T11:48:47-07:00" +description: "" +params: + feedlink: https://stefandimov.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 9448a45cf2c7982471b11b4f13700d53 + websites: + https://stefandimov.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Eclipse JPA Diagram Editor + relme: + https://stefandimov.blogspot.com/: true + https://www.blogger.com/profile/02284226527305502570: true + last_post_title: JPA Diagram Editor released with Indigo + last_post_description: "" + last_post_date: "2011-06-28T00:53:15-07:00" + last_post_link: https://stefandimov.blogspot.com/2011/06/jpa-diagram-editor-released-with-indigo.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 2523521c287562fe0eeb3d6764677a78 + score_criteria: + cats: 1 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 11 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-944a526b4f18b89a705614cba486ab0a.md b/content/discover/feed-944a526b4f18b89a705614cba486ab0a.md deleted file mode 100644 index 4399d0adf..000000000 --- a/content/discover/feed-944a526b4f18b89a705614cba486ab0a.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Martin Feld -date: "1970-01-01T00:00:00Z" -description: Public posts from @martinfeld@social.lol -params: - feedlink: https://social.lol/@martinfeld.rss - feedtype: rss - feedid: 944a526b4f18b89a705614cba486ab0a - websites: - https://social.lol/@martinfeld: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://feldfoto.com/: false - https://hemisphericviews.com/: false - https://loungeruminator.net/: false - https://www.rsspod.net/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-946b73e309fe1b03d81f281153064adf.md b/content/discover/feed-946b73e309fe1b03d81f281153064adf.md deleted file mode 100644 index 722e19595..000000000 --- a/content/discover/feed-946b73e309fe1b03d81f281153064adf.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Comments for The Fediverse Report -date: "1970-01-01T00:00:00Z" -description: The relevant news on the Fediverse -params: - feedlink: https://fediversereport.com/comments/feed/ - feedtype: rss - feedid: 946b73e309fe1b03d81f281153064adf - websites: - https://fediversereport.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "Comment on Last Week in Fediverse – ep 70 by Chris Alemany\U0001F1FA\U0001F1E6\U0001F1E8\U0001F1E6\U0001F1EA\U0001F1F8" - last_post_description:

@LaurensHof how about this for a fediverse report? :)
Cory Doctorow. - - Hi, thanks for the reply! I think Google Photos counts as a success -- for example I see this - last_post_date: "2020-07-06T20:45:54Z" - last_post_link: https://pluralistic.net/2020/06/29/female-furies/#comment-51 - last_post_categories: [] - last_post_guid: ca220b339f15bf1a39ee088cd6c59dd4 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-95d5bc36e08b1fa78b4e38050f1e6ff8.md b/content/discover/feed-95d5bc36e08b1fa78b4e38050f1e6ff8.md deleted file mode 100644 index 55a51950a..000000000 --- a/content/discover/feed-95d5bc36e08b1fa78b4e38050f1e6ff8.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Adam Keys -date: "1970-01-01T00:00:00Z" -description: Public posts from @therealadam@ruby.social -params: - feedlink: https://ruby.social/@therealadam.rss - feedtype: rss - feedid: 95d5bc36e08b1fa78b4e38050f1e6ff8 - websites: - https://ruby.social/@therealadam: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://short.therealadam.com/: false - https://therealadam.com/: false - https://til.therealadam.com/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-95d9adbf8986a43b383868facc2250dc.md b/content/discover/feed-95d9adbf8986a43b383868facc2250dc.md new file mode 100644 index 000000000..d630b6635 --- /dev/null +++ b/content/discover/feed-95d9adbf8986a43b383868facc2250dc.md @@ -0,0 +1,97 @@ +--- +title: OSGi thoughts +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://osgithoughts.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 95d9adbf8986a43b383868facc2250dc + websites: + https://osgithoughts.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Declarative Services + - EJB + - HTTP Service + - JavaEE + - JavaSE 8 + - JavaSE 9 + - JavaSE8 + - OSGi Connect + - OSGi PaaS + - PaaS + - PojoSR + - Servlet + - apache aries + - apache felix + - aries + - as7 + - benefits of osgi + - blueprint + - c/c++ + - cloud + - cloud computing + - eeg + - enterprise osgi + - felix + - java + - javascript + - jax + - jboss + - jboss osgi + - jbossas7 + - jigsaw + - modularity + - native osgi + - openjdk + - osgi + - osgi community event + - osgi devcon + - osgi specifications + - penrose + - remote services + - rfc 119 + - rfc 183 + - universal osgi + relme: + https://boardgamethoughts.blogspot.com/: true + https://coderthoughts.blogspot.com/: true + https://hikersthoughts.blogspot.com/: true + https://laarderhoogt.blogspot.com/: true + https://lightdarknesspainting.blogspot.com/: true + https://on-software-architecture.blogspot.com/: true + https://osgithoughts.blogspot.com/: true + https://rockabillfilmsoc.blogspot.com/: true + https://rockabillfilmsociety.blogspot.com/: true + https://testblogaswebsite.blogspot.com/: true + https://www.blogger.com/profile/13786738766478890804: true + last_post_title: 'Presentation: The Benefits of OSGi in Practise' + last_post_description: A little while ago I created a presentation around how I + see the benefits of OSGi. It can serve as an introduction to those who like to + learn more about OSGi and how it can solve real-world problems + last_post_date: "2013-08-12T09:50:00Z" + last_post_link: https://osgithoughts.blogspot.com/2013/08/presentation-benefits-of-osgi-in.html + last_post_categories: + - benefits of osgi + - osgi + last_post_language: "" + last_post_guid: 1cb676e80cd3e14bd45dee00b08c26c7 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-95e9f59edb0b002044e117916f081ea6.md b/content/discover/feed-95e9f59edb0b002044e117916f081ea6.md new file mode 100644 index 000000000..2da05a9f9 --- /dev/null +++ b/content/discover/feed-95e9f59edb0b002044e117916f081ea6.md @@ -0,0 +1,161 @@ +--- +title: DSHR's Blog +date: "2024-07-08T17:28:08-07:00" +description: I'm David Rosenthal, and this is a place to discuss the work I'm doing + in Digital Preservation. +params: + feedlink: https://blog.dshr.org/feeds/posts/default + feedtype: atom + feedid: 95e9f59edb0b002044e117916f081ea6 + websites: + https://blog.dshr.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - AGI + - CLOCKSS + - CNI2009spring + - CNI2012Fall + - CNI2013Spring + - CNI2016Spring + - CNI2017Spring + - CNI2018Fall + - CNI2105Fall + - DRM + - ElPub2013 + - EndTimes + - EverCloud + - IoT + - OAIS + - P2P + - PREMIS + - advertising + - amazon + - anadp + - annotations + - anonymity + - anti-trust + - audit + - autonomous vehicles + - benchmarks + - big data + - bitcoin + - blog-science + - chatbots + - cloud economics + - copyright + - crowdfunding + - deduplication + - digital preservation + - distributed web + - e-books + - e-journals + - e-science + - emulation + - fast11 + - fast12 + - fast13 + - fast14 + - fast15 + - fast16 + - fast17 + - fast18 + - fast19 + - fast20 + - fast2009 + - fault tolerance + - format migration + - format obsolescence + - games + - government information + - green preservation + - human error + - hypothes.is + - idcc15 + - idcc2008 + - idcc2013 + - iipc13 + - iipc2016 + - institutional repositories + - intellectual property + - ipres2008 + - ipres2010 + - ipres2013 + - ipres2016 + - ipres2017 + - iso16363 + - jcdl2010 + - kryder's law + - library of congress + - link rot + - linux + - long-lived media + - malware + - memento + - metadata + - metastablecoins + - moore's law + - named data networking + - national hosting + - networking + - normalization + - nvidia + - object storage + - open access + - patent + - pda2011 + - pda2012 + - peer review + - personal + - personal digital preservation + - platform monopolies + - publishing business + - scholarly communication + - seagate + - security + - social networks + - software preservation + - stock buybacks + - storage costs + - storage failures + - storage media + - techno-hype + - terms of service + - theatre + - trac + - twitter + - union mounts + - unix + - venture capital + - web archiving + - web3 + relme: + https://blog.dshr.org/: true + https://dshr-hikes.blogspot.com/: true + https://www.blogger.com/profile/14498131502038331594: true + last_post_title: X Window System At 40 + last_post_description: "" + last_post_date: "2024-07-04T06:58:45-07:00" + last_post_link: https://blog.dshr.org/2024/07/x-window-system-at-40.html + last_post_categories: + - personal + last_post_language: "" + last_post_guid: 6bf55210514999d7a413f905f0c33451 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9604908a71c6453dd854bfbdbd737b1e.md b/content/discover/feed-9604908a71c6453dd854bfbdbd737b1e.md new file mode 100644 index 000000000..5c2f9121d --- /dev/null +++ b/content/discover/feed-9604908a71c6453dd854bfbdbd737b1e.md @@ -0,0 +1,48 @@ +--- +title: LiPyrary - Python for books +date: "2024-07-07T07:55:22+02:00" +description: A blog about my daily work with Python and digitized books. +params: + feedlink: https://lipyrary.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 9604908a71c6453dd854bfbdbd737b1e + websites: + https://lipyrary.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - libxml2 + - lxml + - microsoft + - multiprocessing + - psf + - python + - python multiprocessing + - ubuntu + relme: + https://lipyrary.blogspot.com/: true + last_post_title: 'Python and Linux kernel 3.0: sys.platform != ''linux2''' + last_post_description: "" + last_post_date: "2011-09-12T13:39:59+02:00" + last_post_link: https://lipyrary.blogspot.com/2011/09/python-and-linux-kernel-30-sysplatform.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 8877bc04b16ce827b6444e30bf894317 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-962a5bd389277170c3f20b3814fe3944.md b/content/discover/feed-962a5bd389277170c3f20b3814fe3944.md new file mode 100644 index 000000000..39756d35b --- /dev/null +++ b/content/discover/feed-962a5bd389277170c3f20b3814fe3944.md @@ -0,0 +1,46 @@ +--- +title: 'The Horizon of Reason: Exploring the Limits of Reality on The Horizon of Reason' +date: "1970-01-01T00:00:00Z" +description: 'Recent content in The Horizon of Reason: Exploring the Limits of Reality + on The Horizon of Reason' +params: + feedlink: https://horizonofreason.com/index.xml + feedtype: rss + feedid: 962a5bd389277170c3f20b3814fe3944 + websites: + https://horizonofreason.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://aus.social/@danderzei: true + https://github.com/pprevos/: true + https://horizonofreason.com/: true + https://lucidmanager.org/: true + last_post_title: The Bidirectional Relationship Between Magic and Science + last_post_description: Magicians present theatrical illusions that seemingly breach + the laws of the physical sciences. Still, they often deploy the principles of + these and other sciences to create these illusions. + last_post_date: "2018-04-12T10:00:00Z" + last_post_link: https://horizonofreason.com/magic/relationship-between-magic-and-science/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 280aeb1e80ecb42023557249ec93328e + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-962c2afd4752c8ae8428546656eaa2d1.md b/content/discover/feed-962c2afd4752c8ae8428546656eaa2d1.md new file mode 100644 index 000000000..fff40d2df --- /dev/null +++ b/content/discover/feed-962c2afd4752c8ae8428546656eaa2d1.md @@ -0,0 +1,42 @@ +--- +title: SummerMute +date: "2024-03-19T13:55:58+01:00" +description: Worklog for the porting of WinterMute Lite to ScummVM +params: + feedlink: https://summermute2012.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 962c2afd4752c8ae8428546656eaa2d1 + websites: + https://summermute2012.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://cellacc.blogspot.com/: true + https://summermute2012.blogspot.com/: true + https://www.blogger.com/profile/15228832038565149878: true + last_post_title: 'WME Testing: Chivalry is not dead' + last_post_description: "" + last_post_date: "2012-12-03T12:38:43+01:00" + last_post_link: https://summermute2012.blogspot.com/2012/12/wme-testing-chivalry-is-not-dead.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 1cf80ee5357e5f64b420acec822e5f41 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9647535d802a5c3d5be02de138cd9f0f.md b/content/discover/feed-9647535d802a5c3d5be02de138cd9f0f.md new file mode 100644 index 000000000..464754869 --- /dev/null +++ b/content/discover/feed-9647535d802a5c3d5be02de138cd9f0f.md @@ -0,0 +1,50 @@ +--- +title: UNICASE +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://unicase.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 9647535d802a5c3d5be02de138cd9f0f + websites: + https://unicase.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Eclipse + - Egit + - Git + - Tutorial + relme: + https://computerfibel.blogspot.com/: true + https://unicase.blogspot.com/: true + https://www.blogger.com/profile/18196528196170889175: true + last_post_title: EGit Tutorial for Beginners + last_post_description: 'This Post has been moved here: http://eclipsesource.com/blogs/tutorials/egit-tutorial/' + last_post_date: "2011-01-19T10:24:00Z" + last_post_link: https://unicase.blogspot.com/2011/01/egit-tutorial-for-beginners.html + last_post_categories: + - Eclipse + - Egit + - Git + - Tutorial + last_post_language: "" + last_post_guid: 171965053aaaf8e60f818d1e6fe7fa0d + score_criteria: + cats: 4 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-964cc130e512a6b354646da379f16140.md b/content/discover/feed-964cc130e512a6b354646da379f16140.md deleted file mode 100644 index 9995f8e40..000000000 --- a/content/discover/feed-964cc130e512a6b354646da379f16140.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Comments for Nikhil Kathole -date: "1970-01-01T00:00:00Z" -description: Open source Enthusiast -params: - feedlink: https://nikhilkathole.wordpress.com/comments/feed/ - feedtype: rss - feedid: 964cc130e512a6b354646da379f16140 - websites: - https://nikhilkathole.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on FreeIPA integration with Foreman by Hamid - last_post_description: Thanks, Complete and useful. - last_post_date: "2020-09-02T14:18:13Z" - last_post_link: https://nikhilkathole.wordpress.com/2018/12/16/freeipa-integration-with-foreman/comment-page-1/#comment-139 - last_post_categories: [] - last_post_guid: 7125ad174814b73d1fcb8534beaa1d0a - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-964fa75c4fd501f3075d05a245e1a356.md b/content/discover/feed-964fa75c4fd501f3075d05a245e1a356.md new file mode 100644 index 000000000..3ffacae5c --- /dev/null +++ b/content/discover/feed-964fa75c4fd501f3075d05a245e1a356.md @@ -0,0 +1,41 @@ +--- +title: "Alicia's Notes \U0001F680" +date: "1970-01-01T00:00:00Z" +description: Thankful to be here ðŸŒ� +params: + feedlink: https://www.aliciasykes.com/feed.rss + feedtype: rss + feedid: 964fa75c4fd501f3075d05a245e1a356 + websites: {} + blogrolls: [] + recommended: [] + recommender: + - https://alexsci.com/blog/rss.xml + categories: [] + relme: {} + last_post_title: "SvelteKit 1.0 - Building a Blog that fetches from RSS \U0001F984" + last_post_description: The aim of this post is to provide a whistle-stop tour of + the latest version of SvelteKit. We're going to build a developer portfolio and + blog website, that fetches data from your RSS feed, as well + last_post_date: "2023-02-20T22:10:08Z" + last_post_link: https://notes.aliciasykes.com/42764/sveltekit-1-0-building-a-blog-that-fetches-from-rss + last_post_categories: [] + last_post_language: "" + last_post_guid: 0918e24a065ee6c866457b511ea78e10 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 0 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-965dedab4c634405a126b25f6ed7c221.md b/content/discover/feed-965dedab4c634405a126b25f6ed7c221.md deleted file mode 100644 index 5daf770c2..000000000 --- a/content/discover/feed-965dedab4c634405a126b25f6ed7c221.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: '@hacktoberfest.com - Hacktoberfest' -date: "1970-01-01T00:00:00Z" -description: "The official account for #Hacktoberfest \U0001F4BB, a month-long celebration - of open-source projects, their maintainers, and the entire community of contributors. - \U0001F499" -params: - feedlink: https://bsky.app/profile/did:plc:5kc3hem3ybfs6uy4vamw44d5/rss - feedtype: rss - feedid: 965dedab4c634405a126b25f6ed7c221 - websites: - https://bsky.app/profile/hacktoberfest.com: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - '#Hacktoberfest' - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 1 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-965e14d23f2d3276018d2a6f3765b82b.md b/content/discover/feed-965e14d23f2d3276018d2a6f3765b82b.md new file mode 100644 index 000000000..840f205e8 --- /dev/null +++ b/content/discover/feed-965e14d23f2d3276018d2a6f3765b82b.md @@ -0,0 +1,45 @@ +--- +title: Rambling fool +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://jc-rambling-fool.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 965e14d23f2d3276018d2a6f3765b82b + websites: + https://jc-rambling-fool.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://foreach-hour-life.blogspot.com/: true + https://i-want-to-paint.blogspot.com/: true + https://jc-rambling-fool.blogspot.com/: true + https://www.blogger.com/profile/02963297031531256476: true + last_post_title: Gun crime graph + last_post_description: I've been getting in an argument with some Americans about + gun ownership and associated legislation. I decided to take a look at some figures + for the UK. Here's a graph, with Poisson errors:UK + last_post_date: "2012-11-21T16:31:00Z" + last_post_link: https://jc-rambling-fool.blogspot.com/2012/11/gun-crime-graph.html + last_post_categories: [] + last_post_language: "" + last_post_guid: a64ec3cfe208bea25d7208b3cf4caa45 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-966906f85a9c6ef8c5bd97cb2fc27560.md b/content/discover/feed-966906f85a9c6ef8c5bd97cb2fc27560.md deleted file mode 100644 index e035419f0..000000000 --- a/content/discover/feed-966906f85a9c6ef8c5bd97cb2fc27560.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Sean Carroll -date: "1970-01-01T00:00:00Z" -description: in truth, only atoms and the void -params: - feedlink: https://www.preposterousuniverse.com/blog/feed/ - feedtype: rss - feedid: 966906f85a9c6ef8c5bd97cb2fc27560 - websites: - https://www.preposterousuniverse.com/blog/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Science - relme: {} - last_post_title: 'New Course: The Many Hidden Worlds of Quantum Mechanics' - last_post_description: 'In past years I’ve done several courses for The Great Courses/Wondrium - (formerly The Teaching Company): Dark Matter and Dark Energy, Mysteries of Modern - Physics:Time, and The Higgs Boson and Beyond' - last_post_date: "2023-11-27T18:30:34Z" - last_post_link: https://www.preposterousuniverse.com/blog/2023/11/27/new-course-the-many-hidden-worlds-of-quantum-mechanics/ - last_post_categories: - - Science - last_post_guid: cedfa1be65faf2f9e87baba730432b42 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-966d91ccb1b3a14e66e601f75ad4ab00.md b/content/discover/feed-966d91ccb1b3a14e66e601f75ad4ab00.md new file mode 100644 index 000000000..0156e99ea --- /dev/null +++ b/content/discover/feed-966d91ccb1b3a14e66e601f75ad4ab00.md @@ -0,0 +1,61 @@ +--- +title: Conquering Entropy +date: "2024-03-14T02:36:10Z" +description: Creating order out of chaos +params: + feedlink: https://conquering-entropy.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 966d91ccb1b3a14e66e601f75ad4ab00 + websites: + https://conquering-entropy.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - bird-dog + - birds + - chuck gliders + - contact cleaner + - covering + - fixes + - fuselage + - gliders + - glueing + - kit + - plane + - senator + - tailplane + - telescope + - tissue + - tools + - undercarriage + - vintage computers + - wakefield + - webcam + - wing + relme: + https://conquering-entropy.blogspot.com/: true + last_post_title: West Wings "de Havilland D.H. 80A Puss Moth" - wings and tail completed + last_post_description: "" + last_post_date: "2017-02-13T19:28:26Z" + last_post_link: https://conquering-entropy.blogspot.com/2017/02/west-wings-de-havilland-dh-80a-puss_13.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 275645ce6ea8f0196d1fc03ccc4dc28f + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-967d06c88d443dc536b8528892b4d954.md b/content/discover/feed-967d06c88d443dc536b8528892b4d954.md new file mode 100644 index 000000000..37ef09200 --- /dev/null +++ b/content/discover/feed-967d06c88d443dc536b8528892b4d954.md @@ -0,0 +1,42 @@ +--- +title: A GeoSpatial World +date: "2024-03-21T21:01:03-07:00" +description: "" +params: + feedlink: https://ageoguy.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 967d06c88d443dc536b8528892b4d954 + websites: + https://ageoguy.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://ageoguy.blogspot.com/: true + https://www.blogger.com/profile/11921226078659968838: true + last_post_title: Transformation de formats 3D (OBJ, PLY, STL, VTP) vers PostGIS + WKT POLYHEDRALSURFACE + last_post_description: "" + last_post_date: "2014-09-10T02:38:23-07:00" + last_post_link: https://ageoguy.blogspot.com/2014/09/transformation-de-formats-3d-obj-ply.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 630aa27add82b3507db202b36decea77 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-967de550372764d8afb8144beffea2cf.md b/content/discover/feed-967de550372764d8afb8144beffea2cf.md index 79ad01358..055bb4416 100644 --- a/content/discover/feed-967de550372764d8afb8144beffea2cf.md +++ b/content/discover/feed-967de550372764d8afb8144beffea2cf.md @@ -13,26 +13,32 @@ params: recommender: [] categories: - Business Pulse - relme: {} - last_post_title: FWC lifts minimum wage by 3.75% + relme: + https://cciwa.com/: true + last_post_title: Xplorate expanding aerial intelligence presence globally last_post_description: |- - Australia’s Fair Work Commission has lifted the national minimum and award wages by 3.75% from July 1, raising it to $913.91 a week or $24.10 an hour.  - The post FWC lifts minimum wage by 3.75% - last_post_date: "2024-06-04T07:41:26Z" - last_post_link: https://cciwa.com/business-pulse/fwc-lifts-minimum-wage-by-3-75/ + WA-based aerial intelligence company Xplorate anticipates at least four-fold growth in the next 12 months and beyond, as it expands internationally. + The post Xplorate expanding aerial intelligence + last_post_date: "2024-07-08T08:54:39Z" + last_post_link: https://cciwa.com/business-pulse/xplorate-expanding-aerial-intelligence-presence-globally/ last_post_categories: - Business Pulse - last_post_guid: 28adfb570b04ed35634c047529bb5bc3 + last_post_language: "" + last_post_guid: d642b2a1f41f44469b1a9ab9fa2e7f2c score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 9 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-967ed06b4b278bd80541eef8891e95a9.md b/content/discover/feed-967ed06b4b278bd80541eef8891e95a9.md index 8a3584d59..e641d1deb 100644 --- a/content/discover/feed-967ed06b4b278bd80541eef8891e95a9.md +++ b/content/discover/feed-967ed06b4b278bd80541eef8891e95a9.md @@ -14,25 +14,30 @@ params: - https://alexsci.com/blog/rss.xml categories: [] relme: {} - last_post_title: Email DNS Records Cheatsheet + last_post_title: Whose CIDR is it anyway? last_post_description: |- - A quick - summary of the SMTP related DNS records together with - brief examples. - last_post_date: "2024-04-12T16:02:49-04:00" - last_post_link: https://www.netmeister.org/blog/email-dns-records.html + A look at + CIDR block ownership from a RIR-, country-, and + organization level. Originally presented at RIPE88. + last_post_date: "2024-06-12T21:04:41-04:00" + last_post_link: https://www.netmeister.org/blog/cidr-allocations.html last_post_categories: [] - last_post_guid: 18d5ff746e03aa470b225201e73ad4a9 + last_post_language: "" + last_post_guid: c3e1f68527403021dc240acf6fb51dd1 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-9684d726e9c55d62e7d97a99d7ab547a.md b/content/discover/feed-9684d726e9c55d62e7d97a99d7ab547a.md new file mode 100644 index 000000000..4839dde0b --- /dev/null +++ b/content/discover/feed-9684d726e9c55d62e7d97a99d7ab547a.md @@ -0,0 +1,41 @@ +--- +title: Johan Tibell +date: "2024-03-14T03:23:59-07:00" +description: Haskell and other things that interest me +params: + feedlink: https://blog.johantibell.com/feeds/posts/default + feedtype: atom + feedid: 9684d726e9c55d62e7d97a99d7ab547a + websites: + https://blog.johantibell.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://blog.johantibell.com/: true + https://www.blogger.com/profile/06875432206357419172: true + last_post_title: The design of the Strict Haskell pragma + last_post_description: "" + last_post_date: "2015-11-16T02:47:08-08:00" + last_post_link: https://blog.johantibell.com/2015/11/the-design-of-strict-haskell-pragma.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 56f82c2168a77bb14ecfb2d60320c30a + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9703f6667d37e4622fa155c53d6cd166.md b/content/discover/feed-9703f6667d37e4622fa155c53d6cd166.md index 580d3bff5..20ca6571e 100644 --- a/content/discover/feed-9703f6667d37e4622fa155c53d6cd166.md +++ b/content/discover/feed-9703f6667d37e4622fa155c53d6cd166.md @@ -13,31 +13,30 @@ params: recommender: [] categories: [] relme: - https://github.com/jeremycherfas: false - https://jeremycherfas.net/: true - https://micro.blog/jeremycherfas: false - https://pnut.io/@jeremycherfas: false - https://twitter.com/EatPodcast: false - last_post_title: "Latest episode: Women Butchers.\r\n\r\nCheap supermarket meat - has ..." - last_post_description: |- - Latest episode: Women Butchers. - - Cheap supermarket meat has made life hard for butchers. At the same time, a few younger people are taking an interest in butchery. I shouldn’t have been surprised - last_post_date: "2024-06-04T09:33:40Z" - last_post_link: https://stream.jeremycherfas.net/2024/latest-episode-women-butcherscheap-supermarket-meat-has + https://stream.jeremycherfas.net/: true + last_post_title: Interesting article on whether LLMs are writing ... + last_post_description: Interesting article on whether LLMs are writing PubMed articles, + that seems to conclude that on balance they aren’t. Yet. Perhaps unsurprisingly + for a linguistic analysis, says nothing about the + last_post_date: "2024-07-08T07:21:49Z" + last_post_link: https://stream.jeremycherfas.net/2024/interesting-article-on-whether-llms-are-writing last_post_categories: [] - last_post_guid: 68e21cc1f4c4cda108921c3e9651edea + last_post_language: "" + last_post_guid: 8622e1f14e14d46410dfad854d1d5243 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-97073ba333c2e385f68fee59a217ea7d.md b/content/discover/feed-97073ba333c2e385f68fee59a217ea7d.md new file mode 100644 index 000000000..b222c294a --- /dev/null +++ b/content/discover/feed-97073ba333c2e385f68fee59a217ea7d.md @@ -0,0 +1,122 @@ +--- +title: Corri por Aí +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://www.corriporai.com.br/feeds/posts/default?alt=rss + feedtype: rss + feedid: 97073ba333c2e385f68fee59a217ea7d + websites: + https://www.corriporai.com.br/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 13 de julho + - alagoas + - aracaju + - belo horizonte + - bonito + - brasilia + - brennand + - caldas novas + - calçadão + - ciclofaixa + - circuito das estações + - corja + - corrida + - corrida cidade de aracaju + - corrida das pontes + - diário + - ecorun + - escocia + - etapa paiva + - eu amo recife + - fernando de noronha + - galo da madrugada + - goiania + - highlands + - história + - ibirapuera + - inverness + - japaratinga + - jaqueira + - joao pessoa + - lochness + - maragogi + - maratona + - maratona de porto alegre + - maratona do rio + - maratona lochness + - meia da conceição + - meia maratona + - meia maratona do rio de janeiro + - meia maratona do sol + - meia maratona eu amo recife + - meia maratona internacional de joão pessoa + - meia maratona internacional de são paulo + - monte dos guararapes + - natal + - oficina brennand + - olinda + - orla aracaju + - orla boa viagem + - paraiba + - parque da caicara + - parques + - percursos + - pernambuco + - picos + - porto alegre + - praia do paiva + - primeira maratona + - quartel do derby + - recife + - recife runners + - reino unido + - rotas + - royal tumbridge wells + - sanharó + - sao miguel dos milagres + - serra das russas + - soledade + - são paulo + - são silvestre + - tamandaré + - unic running + - volta internacional da pampulha + - we are rec + relme: + https://www.corriporai.com.br/: true + last_post_title: 'Meia Maratona eu Amo Recife - 10 anos :: Obrigado 2023! Sub-2 + na trave!' + last_post_description: O percurso segue a partir da Avenida Rio Branco no Recife + Antigo em direção a via Mangue pela Avenida Sul, retornando na altura o colégio + GGE no mesmo percurso de volta até o pórtico de largada. + last_post_date: "2023-10-18T00:48:00Z" + last_post_link: https://www.corriporai.com.br/2023/10/meia-maratona-eu-amo-recife-10-anos.html + last_post_categories: + - eu amo recife + - meia maratona + - meia maratona eu amo recife + - recife + - recife runners + last_post_language: "" + last_post_guid: 91c6ec0de686e92b2fcfdccdd34560d1 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-97159ce6080110d6a4fe8a795f9bee84.md b/content/discover/feed-97159ce6080110d6a4fe8a795f9bee84.md index 22e54be82..7eb1c64e2 100644 --- a/content/discover/feed-97159ce6080110d6a4fe8a795f9bee84.md +++ b/content/discover/feed-97159ce6080110d6a4fe8a795f9bee84.md @@ -14,24 +14,30 @@ params: recommended: [] recommender: - http://scripting.com/rss.xml + - http://scripting.com/rssNightly.xml categories: [] relme: {} - last_post_title: AIs Stole My Stuff - last_post_description: What if that's a good thing? - last_post_date: "2024-03-30T03:54:31Z" - last_post_link: https://zerothprinciples.substack.com/p/ais-stole-my-stuff + last_post_title: Monica Anderson Biography + last_post_description: Experimental AI Epistemologist + last_post_date: "2024-07-08T20:37:13Z" + last_post_link: https://zerothprinciples.substack.com/p/monica-anderson-biography last_post_categories: [] - last_post_guid: 4b037463906c8f888f7e5e061dc2fd9d + last_post_language: "" + last_post_guid: 7b4ecf71c64fd7be816a8dd81ba0b119 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-972211a33b89bcad1d4614a3e907da47.md b/content/discover/feed-972211a33b89bcad1d4614a3e907da47.md index c248f6d22..a708fd02d 100644 --- a/content/discover/feed-972211a33b89bcad1d4614a3e907da47.md +++ b/content/discover/feed-972211a33b89bcad1d4614a3e907da47.md @@ -11,36 +11,41 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: - Engineering relme: {} - last_post_title: The Biggest Fire Fighting Operation Ever - last_post_description: The Kuwait oil fires, ignited during the Gulf War in 1991, - were one of history's largest environmental disasters. Around 700 oil wells were - set ablaze, spewing thick smoke for months. An - last_post_date: "2024-05-04T12:59:30Z" - last_post_link: https://nebula.tv/videos/realengineering-the-biggest-fire-fighting-operation-ever/ + last_post_title: The Problem with Wind Energy + last_post_description: |- + Wind energy has great potential, but building a grid with wind comes with issues + Credits: + Producer/Writer/Narrator: Brian McManus + Head of Production: Mike Ridolfi + Senior Editor: Dylan Hennessy + Cinema + last_post_date: "2024-06-29T14:21:33Z" + last_post_link: https://nebula.tv/videos/realengineering-the-problem-with-wind-energy/ last_post_categories: - Engineering - last_post_guid: 10d6dbd096a8eb0c5913a40c048c10ec + last_post_language: "" + last_post_guid: 4d5e3cc544c7fd8d6e05741aa0db0547 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 14 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-975351aadc3200da367379bd03515c3f.md b/content/discover/feed-975351aadc3200da367379bd03515c3f.md new file mode 100644 index 000000000..c8e626c41 --- /dev/null +++ b/content/discover/feed-975351aadc3200da367379bd03515c3f.md @@ -0,0 +1,63 @@ +--- +title: Muttering to myself +date: "2024-03-14T09:36:43-05:00" +description: Obscure thoughts on the state of user assistance in the technological + world +params: + feedlink: https://cpp-muttering.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 975351aadc3200da367379bd03515c3f + websites: + https://cpp-muttering.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - CDT + - DITA + - EclipseCon + - Indigo + - Plugin Spy + - TOC + - beta + - bio + - bugzilla + - cheat sheets + - docs + - documentation + - eclipse + - help + - index + - intro + relme: + https://cpp-muttering.blogspot.com/: true + https://hyperspatialgamingreality.blogspot.com/: true + https://www.blogger.com/profile/16367423341141776840: true + last_post_title: Help Us Help You with CDT + last_post_description: With the release of the latest Eclipse 3.6 and CDT 7.0 in + Helios we on the CDT team have taken a deep breath, stepped back, and looked hard + at what the needs of C/C++ developers will be for the + last_post_date: "2010-07-07T13:38:24-05:00" + last_post_link: https://cpp-muttering.blogspot.com/2010/07/help-us-help-you-with-cdt.html + last_post_categories: + - CDT + - Indigo + last_post_language: "" + last_post_guid: d52c3d65cbb245fb0d0c130720c7b1f9 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-975c20c1343b56f76f9318596089f92d.md b/content/discover/feed-975c20c1343b56f76f9318596089f92d.md index ad58f60de..2303a9b5a 100644 --- a/content/discover/feed-975c20c1343b56f76f9318596089f92d.md +++ b/content/discover/feed-975c20c1343b56f76f9318596089f92d.md @@ -13,35 +13,30 @@ params: recommended: [] recommender: - https://frankmeeuwsen.com/feed.xml - - https://hacdias.com/feed.xml categories: [] relme: - https://facebook.com/sebastiaan.andeweg: false - https://github.com/sebsel: false - https://instagram.com/sebsel: false - https://mastodon.social/@sebsel: false - https://micro.blog/sebsel: false - https://sebastiaanandeweg.nl/: false - https://strava.com/athletes/sebsel: false - https://twitter.com/sebandeweg: false - https://twitter.com/sebsel: false - https://www.linkedin.com/in/sebastiaanandeweg: false + https://seblog.nl/feed: true last_post_title: Een like op Seblog last_post_description: Seb vindt dit leuk. last_post_date: "2024-05-23T08:31:49Z" last_post_link: https://seblog.nl/2024/05/23/1/like last_post_categories: [] + last_post_language: "" last_post_guid: b61aba72e6d792929b90741c30224843 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 14 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-975ed15e69c4288df9327eb1f51b8d6e.md b/content/discover/feed-975ed15e69c4288df9327eb1f51b8d6e.md new file mode 100644 index 000000000..770b6ef78 --- /dev/null +++ b/content/discover/feed-975ed15e69c4288df9327eb1f51b8d6e.md @@ -0,0 +1,53 @@ +--- +title: The Changelog +date: "1970-01-01T00:00:00Z" +description: Comments on family, technology, and society +params: + feedlink: https://changelog.complete.org/feed + feedtype: rss + feedid: 975ed15e69c4288df9327eb1f51b8d6e + websites: + https://changelog.complete.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Freedom + - Internet + - Online Life + - Technology + - email + relme: + https://changelog.complete.org/: true + https://github.com/jgoerzen: true + last_post_title: Review of Reputable, Functional, and Secure Email Service + last_post_description: I last reviewed email services in 2019. That review focused + a lot of attention on privacy. At the time, I selected mailbox.org as my provider, + and have been using them for these 5 years since. + last_post_date: "2024-05-16T17:42:31Z" + last_post_link: https://changelog.complete.org/archives/10711-review-of-reputable-functional-and-secure-email-service + last_post_categories: + - Freedom + - Internet + - Online Life + - Technology + - email + last_post_language: "" + last_post_guid: a3368cb6627ed187c36e0ca236be7ce4 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-977660a2f18e15a1cf9e24246ca092ee.md b/content/discover/feed-977660a2f18e15a1cf9e24246ca092ee.md new file mode 100644 index 000000000..17285dc88 --- /dev/null +++ b/content/discover/feed-977660a2f18e15a1cf9e24246ca092ee.md @@ -0,0 +1,141 @@ +--- +title: Toothpast for teeth +date: "1970-01-01T00:00:00Z" +description: Keep visiting to my blogspot page and get all information about chiclets + teeth. +params: + feedlink: https://noproblem44.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 977660a2f18e15a1cf9e24246ca092ee + websites: + https://noproblem44.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Have delightful teeth + last_post_description: |- + We love taking photographs of ourselves and chiclets teeth others. We make + it a highlight to carry our helpful camera to save superb recollections we can + carry on through life during events. So + last_post_date: "2022-02-14T12:46:00Z" + last_post_link: https://noproblem44.blogspot.com/2022/02/have-delightful-teeth.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 5a00a671ebd4f440c4ffea792bbe5ad5 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-97967f86a6a5e662adde7eaccb144071.md b/content/discover/feed-97967f86a6a5e662adde7eaccb144071.md new file mode 100644 index 000000000..853686a6e --- /dev/null +++ b/content/discover/feed-97967f86a6a5e662adde7eaccb144071.md @@ -0,0 +1,42 @@ +--- +title: Emacs on GeekSocket +date: "1970-01-01T00:00:00Z" +description: Recent content in Emacs on GeekSocket +params: + feedlink: https://geeksocket.in/tags/emacs/index.xml + feedtype: rss + feedid: 97967f86a6a5e662adde7eaccb144071 + websites: + https://geeksocket.in/tags/emacs/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://geeksocket.in/tags/emacs/: true + last_post_title: EmacsConf 2021 + last_post_description: |- + EmacsConf 2021 happened in November last year. Same as last two years, it was an online conference. Thanks to all the volunteers and organizers, it was a great experience. + EmacsConf is the conference + last_post_date: "2022-01-30T13:46:12+05:30" + last_post_link: https://geeksocket.in/posts/emacsconf-2021/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 2dab3415c3637e8215cd205140137f97 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-97b15dab57b9f160993f55430e0f2170.md b/content/discover/feed-97b15dab57b9f160993f55430e0f2170.md new file mode 100644 index 000000000..3c58b6481 --- /dev/null +++ b/content/discover/feed-97b15dab57b9f160993f55430e0f2170.md @@ -0,0 +1,122 @@ +--- +title: Eclipse and Java Blog by Michael Scharf +date: "2024-06-02T12:14:01+02:00" +description: Here I collect interesting links and findings about eclipse and java... +params: + feedlink: https://michaelscharf.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 97b15dab57b9f160993f55430e0f2170 + websites: + https://michaelscharf.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - '@alexwg' + - AI + - Alan Cooper + - Alexander D. Wissner-Gross + - C/C++ entwicklung + - CDT + - CDT buch + - ConcurrentModificationException + - Crevasse of Doom + - DDD + - Domain Driven Design + - Douglas Crockford + - Dreyfus model of skill acquisition + - EMF text editor + - Eric Evens + - IDE + - IllegalAccessError + - Interaction design + - IxD + - JavaScript + - Martin Fowler + - The Good Parts + - Yawning Dan North + - blog + - bloggers.com + - break into blog + - closures + - databinding + - diversity + - download + - dpunkt + - eclipse + - eclipse plugin + - eclipsecon2008 + - editor + - emfatic plugin + - equation of intelligence + - extension location + - force of intelligence + - fragment + - full screen + - fullscreen + - fund raising + - future + - future of eclipse + - google + - hijack + - java memory model + - junit + - launches + - learning + - link file + - links directory + - mobile + - open source + - p2 + - pde + - peep pressure + - plugin + - protoypte based language + - pydev + - python + - robust iterators + - runtime application + - sample projects + - slides + - spam + - spammers + - tragedy of the commons + - update manage + - web + - wrong plugins + relme: + https://draft.blogger.com/profile/16708708879318235495: true + https://michaelscharf.blogspot.com/: true + last_post_title: How to make eclipse attractive to new communities? + last_post_description: "" + last_post_date: "2014-10-15T18:13:31+02:00" + last_post_link: https://michaelscharf.blogspot.com/2014/05/how-to-make-eclipse-attractive-to-new.html + last_post_categories: + - IDE + - JavaScript + - eclipse + - editor + - future + - mobile + - python + - tragedy of the commons + - web + last_post_language: "" + last_post_guid: 66ee54c3c964bfb73809be35e3883476 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-97b7097e7e9f28d2ad4ce3c30eb5e569.md b/content/discover/feed-97b7097e7e9f28d2ad4ce3c30eb5e569.md index e8a6f93f2..b3cd6ba16 100644 --- a/content/discover/feed-97b7097e7e9f28d2ad4ce3c30eb5e569.md +++ b/content/discover/feed-97b7097e7e9f28d2ad4ce3c30eb5e569.md @@ -1,6 +1,6 @@ --- title: App Addict -date: "2024-06-04T08:00:00Z" +date: "2024-07-08T08:40:13Z" description: "" params: feedlink: https://apps.louplummer.lol/feed.atom @@ -14,26 +14,38 @@ params: categories: - Mac Apps relme: - https://social.lol/@amerpie: false - last_post_title: A Privacy and Security Toolkit - last_post_description: In the modern age, it takes a real strategy to protect yourself - from invasive mega-corporations who want to track you, bad actors on the malware - front and in your face non-stop advertising. Whatever - last_post_date: "2024-06-04T08:44:39Z" - last_post_link: https://apps.louplummer.lol/post/a-privacy-and-security-toolkit + https://amerpie.lol/: true + https://amerpie.omg.lol/: true + https://amerpie2.micro.blog/: true + https://amerpiegateway.micro.blog/: true + https://apps.louplummer.lol/: true + https://linkage.lol/: true + https://louplummer.lol/: true + https://social.lol/@amerpie: true + last_post_title: Downie - Video Downloader + last_post_description: If you want to download video from YouTube, there are a variety + of ways. There is a Raycast Extension. There is the great free YouTube muti-action + app, Freetube. For CLI folks, there is yt-dlp.  + last_post_date: "2024-07-08T08:44:04Z" + last_post_link: https://apps.louplummer.lol/post/downie-video-downloader last_post_categories: - Mac Apps - last_post_guid: 3d4debdd3cd0c458dbef7bcce66fb826 + last_post_language: "" + last_post_guid: 04a1bde20a032050f2a09beddf43e918 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 7 + score: 12 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-97c83ef7ec8683aefeb2caaedf0835d3.md b/content/discover/feed-97c83ef7ec8683aefeb2caaedf0835d3.md deleted file mode 100644 index 1eb35d6aa..000000000 --- a/content/discover/feed-97c83ef7ec8683aefeb2caaedf0835d3.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: 'Cees-Jan Kiewiet :rp: :wm:' -date: "1970-01-01T00:00:00Z" -description: Public posts from @wyri@haxim.us -params: - feedlink: https://toot-toot.wyrihaxim.us/@wyri.rss - feedtype: rss - feedid: 97c83ef7ec8683aefeb2caaedf0835d3 - websites: - https://haxim.us/@wyri: false - https://toot-toot.wyrihaxim.us/@wyri: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/wyrihaximus/: false - https://twitter.com/wyrihaximus/: false - https://wyrihaximus.net/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-97c8c234bcb2168f7e2206f8f590bee7.md b/content/discover/feed-97c8c234bcb2168f7e2206f8f590bee7.md new file mode 100644 index 000000000..8003d3ddb --- /dev/null +++ b/content/discover/feed-97c8c234bcb2168f7e2206f8f590bee7.md @@ -0,0 +1,50 @@ +--- +title: nominolo's Blog +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://nominolo.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 97c8c234bcb2168f7e2206f8f590bee7 + websites: + https://nominolo.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Haskell + - Lisp + - Tutorial + - Virtual Machines + - darcs + - git + relme: + https://nominolo.blogspot.com/: true + https://www.blogger.com/profile/04274984206279511399: true + last_post_title: Beyond Package Version Policies + last_post_description: When I read the announcement of the latest GHC release candidate, + I did not feel excitement but rather annoyance. The reason is that now I have + to go and check all my packages' dependency + last_post_date: "2012-08-17T15:14:00Z" + last_post_link: https://nominolo.blogspot.com/2012/08/beyond-package-version-policies.html + last_post_categories: + - Haskell + last_post_language: "" + last_post_guid: b63da7e0a5402105c9dc25a12fa08489 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-97ce9c22e0797d1a7d277c7662430c8f.md b/content/discover/feed-97ce9c22e0797d1a7d277c7662430c8f.md new file mode 100644 index 000000000..0040de4ce --- /dev/null +++ b/content/discover/feed-97ce9c22e0797d1a7d277c7662430c8f.md @@ -0,0 +1,120 @@ +--- +title: Lin.ear th.inking +date: "2024-07-01T23:10:41-07:00" +description: Because the shortest distance between two thoughts is a straight line +params: + feedlink: https://lin-ear-th-inking.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 97ce9c22e0797d1a7d277c7662430c8f + websites: + https://lin-ear-th-inking.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - GEOS + - GTFS + - JUMP + - OpenLayers + - QGIS + - REST + - SQL + - algorithms + - big data + - bing + - books + - cartography + - cloud computing + - computation + - computational geometry + - computer art + - computer languages + - conference + - conflation + - coverage + - crime + - data model + - database + - esri + - foss4g + - fractals + - functional programming + - geocoding + - geometry + - geoserver + - geospatial + - geoweb + - gis + - google + - google-earth + - gps + - hardware + - history + - humour + - java + - javascript + - jeql + - json + - jts + - kml + - lisp + - maps + - mathematics + - microsoft + - news + - nostalgia + - ogc simple features + - open source + - opengeo + - openstreetmap + - overlay + - population explosion + - postgis + - postgres + - pre-cambrian-pc + - presentations + - raster + - robotics + - software + - spatial index + - topology + - uml + - visualization + - web + - web mapping + relme: + https://call-of-the-wild.blogspot.com/: true + https://lin-ear-th-inking.blogspot.com/: true + https://www.blogger.com/profile/02383381220154739793: true + last_post_title: RelateNG Performance + last_post_description: "" + last_post_date: "2024-05-27T16:14:59-07:00" + last_post_link: https://lin-ear-th-inking.blogspot.com/2024/05/relateng-performance.html + last_post_categories: + - GEOS + - algorithms + - computational geometry + - geometry + - geospatial + - jts + - ogc simple features + - topology + last_post_language: "" + last_post_guid: 16facc6c7f913379adc3e1e5e6c5779b + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-97e9b715bcd65b0befdca677d9bf9801.md b/content/discover/feed-97e9b715bcd65b0befdca677d9bf9801.md new file mode 100644 index 000000000..9bdb7bd19 --- /dev/null +++ b/content/discover/feed-97e9b715bcd65b0befdca677d9bf9801.md @@ -0,0 +1,42 @@ +--- +title: all that's past is prologue... +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://prologuist.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 97e9b715bcd65b0befdca677d9bf9801 + websites: + https://prologuist.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://prologuist.blogspot.com/: true + last_post_title: The Quick Fix - a Build Post + last_post_description: For years, when I got a new haircut or color I have wanted + to go out to celebrate it.So tonight we went to Lowe's (and Home Depot) — proving + I am Officially Old. Though we did run into another + last_post_date: "2024-07-09T01:40:00Z" + last_post_link: https://prologuist.blogspot.com/2024/07/the-quick-fix-build-post.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 51c3db27c18c8b2c3742a402c69bad5a + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-980273d4a610222eff08b9b44f885bf0.md b/content/discover/feed-980273d4a610222eff08b9b44f885bf0.md new file mode 100644 index 000000000..d4d9d66a5 --- /dev/null +++ b/content/discover/feed-980273d4a610222eff08b9b44f885bf0.md @@ -0,0 +1,43 @@ +--- +title: "" +date: "1970-01-01T00:00:00Z" +description: Recent content on +params: + feedlink: https://www.dyerdwelling.family/index.xml + feedtype: rss + feedid: 980273d4a610222eff08b9b44f885bf0 + websites: + https://www.dyerdwelling.family/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: [] + relme: {} + last_post_title: Deer Evie Video + last_post_description: Timelapse of some nursery art, this time with little or no + colour. + last_post_date: "2024-07-05T08:38:00+01:00" + last_post_link: https://www.dyerdwelling.family/art--videos/20240705083840--deer-evie-video-omn8a225aba/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 70801860e23e300cb43bd1f63c1650e2 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 0 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-98094cd9f977a01cf98513bc479dcfbb.md b/content/discover/feed-98094cd9f977a01cf98513bc479dcfbb.md new file mode 100644 index 000000000..dc8e6aeb3 --- /dev/null +++ b/content/discover/feed-98094cd9f977a01cf98513bc479dcfbb.md @@ -0,0 +1,41 @@ +--- +title: geomajas +date: "2024-07-02T19:06:00-07:00" +description: "" +params: + feedlink: https://geomajas.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 98094cd9f977a01cf98513bc479dcfbb + websites: + https://geomajas.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://geomajas.blogspot.com/: true + https://www.blogger.com/profile/05849361102076577325: true + last_post_title: 'Geomajas: backend 1.9.0 + 10 plug-in releases' + last_post_description: "" + last_post_date: "2011-07-08T00:13:00-07:00" + last_post_link: https://geomajas.blogspot.com/2011/07/geomajas-backend-190-10-plug-in.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 25107ae377afdd55ece46536bf1ecf57 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-980a94273809255fe20ccf072877a898.md b/content/discover/feed-980a94273809255fe20ccf072877a898.md deleted file mode 100644 index 923796233..000000000 --- a/content/discover/feed-980a94273809255fe20ccf072877a898.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: Mark Sutherland -date: "2024-04-28T20:43:00+01:00" -description: Web Developer based in Leicester, UK -params: - feedlink: https://marksuth.dev/feed/posts.xml - feedtype: rss - feedid: 980a94273809255fe20ccf072877a898 - websites: - https://marksuth.dev/: true - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: [] - relme: - https://codepen.io/marksuth: false - https://github.com/marksuth: true - https://marksuth.dev/: true - https://mastodon.social/@marksuth: true - https://medium.com/@marksuth: false - https://twitter.com/marksuth: false - https://www.discogs.com/user/marksuth: false - https://www.linkedin.com/in/marksuth: false - last_post_title: 'Week Notes: 2024-04-28' - last_post_description: The main theme for me in the past week has seemingly been - "bug fixes and performance improvements", as I've spent more time going to the - gym than I have for years, sorted various things out and - last_post_date: "2024-04-28T20:43:00+01:00" - last_post_link: https://marksuth.dev/posts/2024/04/week-notes-2024-04-28 - last_post_categories: [] - last_post_guid: 63809309945663040c41a5020b5ef0a2 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 15 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-981386632ec927b251ab55e668c6b76d.md b/content/discover/feed-981386632ec927b251ab55e668c6b76d.md deleted file mode 100644 index 69756f102..000000000 --- a/content/discover/feed-981386632ec927b251ab55e668c6b76d.md +++ /dev/null @@ -1,57 +0,0 @@ ---- -title: Planet GStreamer – calvaris' blog -date: "1970-01-01T00:00:00Z" -description: This blog is about hacking, Igalia and maybe some personal opinions -params: - feedlink: https://blogs.igalia.com/xrcalvar/category/planets/planet-gstreamer/feed/ - feedtype: rss - feedid: 981386632ec927b251ab55e668c6b76d - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Igalia.com - - Planet GStreamer - - Planet Igalia - - Planet WebKit - - Planet WebKitGtk+ - - decryption - - eme - - encrypted media - - Encrypted Media Extensions - - gstreamer - - media - relme: {} - last_post_title: Serious Encrypted Media Extensions on GStreamer based WebKit ports - last_post_description: Encrypted Media Extensions (a.k.a. EME) is the W3C standard - for encrypted media in the web. This way, media providers such as Hulu, Netflix, - HBO, Disney+, Prime Video, etc. can provide their contents - last_post_date: "2020-09-02T14:59:47Z" - last_post_link: https://blogs.igalia.com/xrcalvar/2020/09/02/serious-encrypted-media-extensions-on-gstreamer-based-webkit-ports/ - last_post_categories: - - Igalia.com - - Planet GStreamer - - Planet Igalia - - Planet WebKit - - Planet WebKitGtk+ - - decryption - - eme - - encrypted media - - Encrypted Media Extensions - - gstreamer - - media - last_post_guid: 56e45be10baa9bd9e08631d564979e7f - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-982cc14ac9611bb67c15df12cbb5c8ea.md b/content/discover/feed-982cc14ac9611bb67c15df12cbb5c8ea.md new file mode 100644 index 000000000..f701c8feb --- /dev/null +++ b/content/discover/feed-982cc14ac9611bb67c15df12cbb5c8ea.md @@ -0,0 +1,143 @@ +--- +title: Whiskey With Coca +date: "1970-01-01T00:00:00Z" +description: Whiskey and coca make taste awesome. +params: + feedlink: https://7250radioscanning.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 982cc14ac9611bb67c15df12cbb5c8ea + websites: + https://7250radioscanning.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Coca and whiskey. + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Whiskey And Coca Taste Like + last_post_description: |- + The Decanters are + extraordinary present for the luxurious setting as well, as there are numerous + collectable pieces too in the market befitting each location impeccably. The most famous + collectable + last_post_date: "2021-05-03T18:55:00Z" + last_post_link: https://7250radioscanning.blogspot.com/2021/05/whiskey-and-coca-taste-like.html + last_post_categories: + - Coca and whiskey. + last_post_language: "" + last_post_guid: 79029ae6c25bf7db3c908c0829bbc658 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-982e381891369d86f76078cbff5023c5.md b/content/discover/feed-982e381891369d86f76078cbff5023c5.md deleted file mode 100644 index 215b8193d..000000000 --- a/content/discover/feed-982e381891369d86f76078cbff5023c5.md +++ /dev/null @@ -1,64 +0,0 @@ ---- -title: OpenStack Archives - sarob -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://sarob.com/category/openstack/feed/ - feedtype: rss - feedid: 982e381891369d86f76078cbff5023c5 - websites: - https://sarob.com/category/openstack/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Leadership - - Open Source - - OpenStack - - Build - - open source - - Open Source First - - Partner - - Product - - Project - - Report - - Review - - Schedule - - strategy - - Test - relme: {} - last_post_title: 10 Steps for the Boss to Understand Your Upstream Project - last_post_description: |- - Previous articles on Open Source First  have been more strategy than recipe. You need a clear, easy to understand plan... - The post 10 Steps for the Boss to Understand Your Upstream Project appeared - last_post_date: "2017-03-11T21:12:46Z" - last_post_link: https://sarob.com/2017/03/project-product-steps/ - last_post_categories: - - Leadership - - Open Source - - OpenStack - - Build - - open source - - Open Source First - - Partner - - Product - - Project - - Report - - Review - - Schedule - - strategy - - Test - last_post_guid: 6047f909ef203cbbbf502637c7559d2b - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-982eba8aefc1a8115d167615cac1f9a7.md b/content/discover/feed-982eba8aefc1a8115d167615cac1f9a7.md deleted file mode 100644 index 6e1143941..000000000 --- a/content/discover/feed-982eba8aefc1a8115d167615cac1f9a7.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Beehaw -date: "1970-01-01T00:00:00Z" -description: Public posts from @beehaw@hachyderm.io -params: - feedlink: https://hachyderm.io/@beehaw.rss - feedtype: rss - feedid: 982eba8aefc1a8115d167615cac1f9a7 - websites: - https://hachyderm.io/@beehaw: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://beehaw.org/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-98358f37e66b370bd1a6c1db819fc3d4.md b/content/discover/feed-98358f37e66b370bd1a6c1db819fc3d4.md new file mode 100644 index 000000000..216e67d0c --- /dev/null +++ b/content/discover/feed-98358f37e66b370bd1a6c1db819fc3d4.md @@ -0,0 +1,138 @@ +--- +title: Meme expired Blogs +date: "1970-01-01T00:00:00Z" +description: Here we have world best blogs for you. +params: + feedlink: https://memeig.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 98358f37e66b370bd1a6c1db819fc3d4 + websites: + https://memeig.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: expired Blog + last_post_description: There are so many people around the word on the internet + but you can get expired web 2.0 blogs on these links. + last_post_date: "2020-02-22T20:54:00Z" + last_post_link: https://memeig.blogspot.com/2020/02/expired-blog.html + last_post_categories: [] + last_post_language: "" + last_post_guid: c1e83e355b4957b33b285ba19c5f66fd + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-983f54d5a514619a1adeb0fe2319aa9d.md b/content/discover/feed-983f54d5a514619a1adeb0fe2319aa9d.md index 1c0aeaaa9..9e6b4f73d 100644 --- a/content/discover/feed-983f54d5a514619a1adeb0fe2319aa9d.md +++ b/content/discover/feed-983f54d5a514619a1adeb0fe2319aa9d.md @@ -1,6 +1,6 @@ --- title: i.webthings.directory -date: "2024-06-03T16:45:15Z" +date: "2024-07-08T13:08:29Z" description: "" params: feedlink: https://iwebthings.joejenett.com/iwd.atom @@ -13,48 +13,40 @@ params: recommender: [] categories: [] relme: - https://bsky.app/profile/jenett.bsky.social: false - https://directory.jenett.org/: true + https://bulltown.2022.joejenett.com/: true https://directory.joejenett.com/: true - https://github.com/joejenett: false + https://fediverse-webring-enthusiasts.glitch.me/profiles/jenett_toot.community/index.html: true + https://github.com/joejenett: true https://ideas.joejenett.com/: true - https://iwebthings.jenett.org/: true https://iwebthings.joejenett.com/: true - https://jenett.org/: true - https://joe.jenett.org/: true - https://joe.joejenett.com/: false https://joejenett.com/: true https://joejenett.github.io/i.webthings/: true - https://linkscatter.jenett.org/: false - https://linkscatter.joejenett.com/: false - https://micro.blog/joejenett: false - https://photo.jenett.org/: false - https://photo.joejenett.com/: false - https://pointers.dailywebthing.com/: false - https://simply.jenett.org/: true + https://linkscatter.joejenett.com/: true + https://photo.joejenett.com/: true https://simply.joejenett.com/: true - https://the.dailywebthing.com/: false https://toot.community/@jenett: true - https://twitter.com/iwebthings: false - https://twitter.com/joejenett: false - https://wiki.jenett.org/: true https://wiki.joejenett.com/: true last_post_title: directory notes 04-13-23 last_post_description: "" last_post_date: "2023-04-13T18:03:06Z" last_post_link: https://iwebthings.joejenett.com/directory-notes-04-13-23/ last_post_categories: [] + last_post_language: "" last_post_guid: 1e6f8dd4753bcfef82aecb52e5ec8b6e score_criteria: cats: 0 description: 0 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 7 + score: 10 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-984d33ccc1e0956243380d16d5a550de.md b/content/discover/feed-984d33ccc1e0956243380d16d5a550de.md new file mode 100644 index 000000000..6c842cf5f --- /dev/null +++ b/content/discover/feed-984d33ccc1e0956243380d16d5a550de.md @@ -0,0 +1,60 @@ +--- +title: The Lego Mirror +date: "2024-07-08T03:48:43Z" +description: "" +params: + feedlink: https://blog.legoktm.com/feeds/all.atom.xml + feedtype: atom + feedid: 984d33ccc1e0956243380d16d5a550de + websites: + https://blog.legoktm.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Tech + - archiveteam + - bandwidth + - podman + - quadlet + - systemd + - warrior + relme: + https://blog.legoktm.com/: true + https://freedom.press/people/kunal-mehta/: true + https://legoktm.com/: true + https://meta.wikimedia.org/wiki/User:Legoktm: true + https://wikis.world/@legoktm: true + last_post_title: Running the ArchiveTeam Warrior under Podman + last_post_description: I'm finally back on an unlimited internet connection, so + I've started running the ArchiveTeam Warrior once again. The Warrior is a software + application for archiving websites in a crowdsourced manner + last_post_date: "2024-07-08T03:48:43Z" + last_post_link: https://blog.legoktm.com/2024/07/08/running-the-archiveteam-warrior-under-podman.html + last_post_categories: + - Tech + - archiveteam + - bandwidth + - podman + - quadlet + - systemd + - warrior + last_post_language: "" + last_post_guid: eaf27037e8af7244b783b728cff37b1f + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-985b1878dbeea0d53002105469aeee8e.md b/content/discover/feed-985b1878dbeea0d53002105469aeee8e.md new file mode 100644 index 000000000..b4d61e8d6 --- /dev/null +++ b/content/discover/feed-985b1878dbeea0d53002105469aeee8e.md @@ -0,0 +1,56 @@ +--- +title: Xenion Hosting +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://xenionhosting.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 985b1878dbeea0d53002105469aeee8e + websites: + https://xenionhosting.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - caching + - downtime + - freebsd + - lusca + - outage + - solaris + - squid + - xenion + - xenion_news + relme: + https://adrianchadd.blogspot.com/: true + https://cacheboy.blogspot.com/: true + https://lusca-cache.blogspot.com/: true + https://www.blogger.com/profile/17496219706861321916: true + https://xenionhosting.blogspot.com/: true + last_post_title: Xenion Updates! + last_post_description: It seems that although I've written posts, I've not put them + to be published! I apologise for this!Posts will be going out shortly, so please + stay tuned! + last_post_date: "2011-06-19T10:06:00Z" + last_post_link: https://xenionhosting.blogspot.com/2011/06/xenion-updates.html + last_post_categories: + - xenion_news + last_post_language: "" + last_post_guid: 427f2ede4360e76f7b09058a0b86c168 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9861d9f92de9ac7d8c1172539b6d92b8.md b/content/discover/feed-9861d9f92de9ac7d8c1172539b6d92b8.md deleted file mode 100644 index 01b43f363..000000000 --- a/content/discover/feed-9861d9f92de9ac7d8c1172539b6d92b8.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Jacobo Nájera -date: "1970-01-01T00:00:00Z" -description: Public posts from @jacobonajera@mastodon.social -params: - feedlink: https://mastodon.social/@jacobonajera.rss - feedtype: rss - feedid: 9861d9f92de9ac7d8c1172539b6d92b8 - websites: - https://mastodon.social/@jacobonajera: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://www.torproject.org/about/people/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-98640c681e1e9f65e9d47fa5f9ed6639.md b/content/discover/feed-98640c681e1e9f65e9d47fa5f9ed6639.md deleted file mode 100644 index 9fee0cf30..000000000 --- a/content/discover/feed-98640c681e1e9f65e9d47fa5f9ed6639.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: A History of Rock Music in 500 Songs -date: "1970-01-01T00:00:00Z" -description: Andrew Hickey presents a history of rock music from 1938 to 1999, looking - at five hundred songs that shaped the genre. -params: - feedlink: https://500songs.com/feed/podcast/ - feedtype: rss - feedid: 98640c681e1e9f65e9d47fa5f9ed6639 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - http://scripting.com/rss.xml - - http://scripting.com/rssNightly.xml - categories: - - Music - - Society & Culture - - History - relme: {} - last_post_title: 'Song 174B: “I Heard it Through the Grapevine” Part Two, “It Takes - Two”' - last_post_description: For those who haven’t heard the announcement I posted , songs - from this point on will sometimes be split among multiple episodes, so this is - the second part of a two-episode look at the song “I - last_post_date: "2024-05-24T20:58:55Z" - last_post_link: https://500songs.com/podcast/song-174b-i-heard-it-through-the-grapevine-part-two-it-takes-two/ - last_post_categories: - - Ashford and Simpson - - Barrett Strong - - Berry Gordy - - Bert Berns - - David Ruffin - - Harvey Fuqua - - Holland-Dozier-Holland - - James Brown - - Kim Weston - - Luther Dixon - - Martha and the Vandellas - - Marvin Gaye - - Mary Wells - - Mickey Stevenson - - Norman Whitfield - - Smokey Robinson - - Tammi Terrell - - The Beatles - - The Temptations - last_post_guid: 36939aefc1656c79c6f1c29635e519de - score_criteria: - cats: 3 - description: 3 - postcats: 3 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 17 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-98640f8d7cb3f0178b320fb8ce01d9ea.md b/content/discover/feed-98640f8d7cb3f0178b320fb8ce01d9ea.md new file mode 100644 index 000000000..31139b227 --- /dev/null +++ b/content/discover/feed-98640f8d7cb3f0178b320fb8ce01d9ea.md @@ -0,0 +1,43 @@ +--- +title: Tomaz's dev blog +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://tomazvajngerl.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 98640f8d7cb3f0178b320fb8ce01d9ea + websites: + https://tomazvajngerl.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://tomazvajngerl.blogspot.com/: true + https://www.blogger.com/profile/17183461757847157603: true + last_post_title: Chart Data Tables + last_post_description: Chart data table is a feature of charts, that presents in + the chart area a data table with the values that are visualised by the chart. + The data table is positioned automatically at the bottom of the + last_post_date: "2022-09-15T13:18:00Z" + last_post_link: https://tomazvajngerl.blogspot.com/2022/09/chart-data-tables.html + last_post_categories: [] + last_post_language: "" + last_post_guid: bbae467ae429db8ff0d9c0bb853c960b + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-987132f81b2983a2db31b7e02ef15e0a.md b/content/discover/feed-987132f81b2983a2db31b7e02ef15e0a.md deleted file mode 100644 index 890041c12..000000000 --- a/content/discover/feed-987132f81b2983a2db31b7e02ef15e0a.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: The Evolutionarily Improbable Dog -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://pigdogweb.wordpress.com/feed/ - feedtype: rss - feedid: 987132f81b2983a2db31b7e02ef15e0a - websites: - https://pigdogweb.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Uncategorized - - messaging - - openstack - - oslo.messaging - - python - relme: {} - last_post_title: 'Oslo.Messaging: The Cloud is Calling' - last_post_description: This is the second post in my series about the Oslo.Messaging - library.  The previous post gave a high level introduction to Oslo.Messaging.  - In this post we’ll dig a little deeper. Climb Aboard - last_post_date: "2017-06-02T21:06:46Z" - last_post_link: https://pigdogweb.wordpress.com/2017/06/02/oslo-messaging-the-cloud-is-calling/ - last_post_categories: - - Uncategorized - - messaging - - openstack - - oslo.messaging - - python - last_post_guid: 9a3ce8617fbde2f9a0be5c2d7db44f32 - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-987d512cbf6cc56a1fc909258e43b4ae.md b/content/discover/feed-987d512cbf6cc56a1fc909258e43b4ae.md deleted file mode 100644 index 9e415f255..000000000 --- a/content/discover/feed-987d512cbf6cc56a1fc909258e43b4ae.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: joe jenett -date: "1970-01-01T00:00:00Z" -description: Public posts from @jenett@mastodon.online -params: - feedlink: https://mastodon.online/@jenett.rss - feedtype: rss - feedid: 987d512cbf6cc56a1fc909258e43b4ae - websites: - https://mastodon.online/@jenett: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://iwebthings.jenett.org/: false - https://simply.jenett.org/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-98999fd050ed47f9884d86b62d49a5a6.md b/content/discover/feed-98999fd050ed47f9884d86b62d49a5a6.md new file mode 100644 index 000000000..c536efae1 --- /dev/null +++ b/content/discover/feed-98999fd050ed47f9884d86b62d49a5a6.md @@ -0,0 +1,44 @@ +--- +title: briankardell +date: "1970-01-01T00:00:00Z" +description: Betterifying the web +params: + feedlink: https://briankardell.wordpress.com/feed/ + feedtype: rss + feedid: 98999fd050ed47f9884d86b62d49a5a6 + websites: + https://briankardell.wordpress.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Uncategorized + relme: + https://briankardell.wordpress.com/: true + last_post_title: Potentially Scattered Thoughts on Web Components and Frameworks + last_post_description: Chances are pretty good that you’ve seen at least one of + the many articles and tweets flying around lately about Web Components and Frameworks. + For the past week I’ve watched as all sorts of + last_post_date: "2016-09-07T01:19:06Z" + last_post_link: https://briankardell.wordpress.com/2016/09/06/potentially-scattered-thoughts-on-web-components-and-frameworks/ + last_post_categories: + - Uncategorized + last_post_language: "" + last_post_guid: 06c37c553d73223a326ed8778b6eeed9 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-989cbfa9bd4c2785899536eae099c2f1.md b/content/discover/feed-989cbfa9bd4c2785899536eae099c2f1.md new file mode 100644 index 000000000..db3447167 --- /dev/null +++ b/content/discover/feed-989cbfa9bd4c2785899536eae099c2f1.md @@ -0,0 +1,80 @@ +--- +title: Andrew Niefer +date: "2024-03-13T17:09:41-05:00" +description: One more Eclipse developer. +params: + feedlink: https://aniefer.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 989cbfa9bd4c2785899536eae099c2f1 + websites: + https://aniefer.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - -XX:MaxPermSize + - Compiler Arguments + - Cycles + - EPP + - Eclipse + - EclipseCon + - Equinox + - Galileo + - Launcher + - OpenDocument + - Orion + - PDE Build + - RCP + - Releng + - Signing + - Source Generation + - Splash Screen + - Swing + - Tips + - Tips Tricks + - Versions + - Workspace Names + - console + - deltapack + - docs + - e4 + - examples + - feature patches + - git + - p2 + - parallel + - permgen + - tests + - version suffixes + relme: + https://an-tst.blogspot.com/: true + https://aniefer-projects.blogspot.com/: true + https://aniefer.blogspot.com/: true + https://www.blogger.com/profile/10918930759740557341: true + last_post_title: 'Quick Tip: Naming Eclipse Workspaces' + last_post_description: "" + last_post_date: "2013-05-06T09:48:56-05:00" + last_post_link: https://aniefer.blogspot.com/2013/05/quick-tip-naming-eclipse-workspaces.html + last_post_categories: + - Eclipse + - Tips + - Workspace Names + last_post_language: "" + last_post_guid: 4d19d6139fb78b5b085b28cca84d066b + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-98a12a4f09b71a72fb27f78ad0d25d75.md b/content/discover/feed-98a12a4f09b71a72fb27f78ad0d25d75.md deleted file mode 100644 index 3cd3c2f00..000000000 --- a/content/discover/feed-98a12a4f09b71a72fb27f78ad0d25d75.md +++ /dev/null @@ -1,50 +0,0 @@ ---- -title: Miraz Jordan -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://miraz.me/feed.xml - feedtype: rss - feedid: 98a12a4f09b71a72fb27f78ad0d25d75 - websites: - https://miraz.me/: true - blogrolls: - - https://miraz.me/.well-known/recommendations.opml - recommended: - - https://alexink.micro.blog/feed.xml - - https://blog.cheribaker.com/feed/ - - https://blog.martin-haehnel.de/feed.xml - - https://cliffordbeshers.micro.blog/feed.xml - - https://maique.eu/feed.xml - - https://mastodon.social/@sundogplanets.rss - - https://micro.anniegreens.lol/feed.xml - - https://micro.welltempered.net/feed.xml - - https://www.crossingthethreshold.net/feed.xml - - https://www.estebantxo.com/feed.xml - - https://cliffordbeshers.micro.blog/podcast.xml - - https://www.crossingthethreshold.net/podcast.xml - recommender: - - https://jabel.blog/feed.xml - - https://jabel.blog/podcast.xml - categories: [] - relme: - https://micro.blog/Miraz: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 6 - relme: 1 - title: 3 - website: 2 - score: 17 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-98a86d3c3d6a3a1dc116869218d4075b.md b/content/discover/feed-98a86d3c3d6a3a1dc116869218d4075b.md index a59b34e15..f0a45b9b5 100644 --- a/content/discover/feed-98a86d3c3d6a3a1dc116869218d4075b.md +++ b/content/discover/feed-98a86d3c3d6a3a1dc116869218d4075b.md @@ -1,6 +1,6 @@ --- title: Unauthoritative Pronouncements -date: "2024-05-31T22:26:38Z" +date: "2024-07-01T21:38:25Z" description: By Joseph Rosensteel params: feedlink: https://joe-steel.com/feed @@ -13,22 +13,27 @@ params: - https://rknight.me/subscribe/posts/rss.xml categories: [] relme: {} - last_post_title: Vulcan Hello 91 - “Life, Itself” + last_post_title: Old Man Yells at iCloud last_post_description: "" - last_post_date: "2024-05-31T23:18:00Z" - last_post_link: https://www.theincomparable.com/vulcanhello/91/ + last_post_date: "2024-06-29T23:53:00Z" + last_post_link: https://joe-steel.com/2024-06-29-Old-Man-Yells-at-iCloud.html last_post_categories: [] - last_post_guid: 4f90b8a33f7391dbef583fe38c8a72f4 + last_post_language: "" + last_post_guid: 3d25ffd75615907823abf14ceb58b5c4 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 11 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-98afd10e2add77fdadac37afaede9868.md b/content/discover/feed-98afd10e2add77fdadac37afaede9868.md new file mode 100644 index 000000000..9a1a8462a --- /dev/null +++ b/content/discover/feed-98afd10e2add77fdadac37afaede9868.md @@ -0,0 +1,136 @@ +--- +title: alp's notes +date: "2024-03-16T02:16:46-07:00" +description: "" +params: + feedlink: https://alp-notes.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 98afd10e2add77fdadac37afaede9868 + websites: + https://alp-notes.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ASF + - Aeolus + - Bacula + - Beeline + - Bug + - Chromium + - Coral Travel + - DBMS + - DLink + - DRBD + - DTrace + - Debian + - Education + - Extensions + - FIDO + - FPM + - FreeBSD + - French + - Gnome + - HA + - Hipster + - Huawei + - Hybernate + - IP + - IPS + - Illumian + - Illumos + - Java + - KDE + - KVM + - Kemer + - Konqueror + - LVM + - Layouts + - LibreOffice + - Licenses + - LinkedImages + - Linux + - Lisp + - Literature + - MVCC + - Monitoring + - Movie + - NFS + - Odeon Tours + - OmniOS + - OpenIndiana + - OpenNMS + - OpenNode + - OpenOffice + - OpenSolaris + - OpenVZ + - Oracle + - PHP + - PocketBook + - Politics + - PostgreSQL + - Private + - Programming Languages + - Proxmox + - Qt + - Redmine + - Ruby + - SMS + - SPARC + - SQL + - Sea Gull Hotel + - Shell + - Skype + - Solaris + - Sun + - Turkey + - UFS + - UPDATING + - Ubuntu + - Ukraine + - Unix + - VMware + - Vim + - Webrick + - Wheezy + - Windows + - Work + - X11 + - XCP + - Yandex.Server + - ZFS + - Zabbix + - Zones + - amd64 + - hstore + - loopback + - raidz + - wine + relme: + https://alp-notes.blogspot.com/: true + https://www.blogger.com/profile/05703436685982405026: true + last_post_title: Creating a simple foreign data wrapper for PostgreSQL + last_post_description: "" + last_post_date: "2023-01-06T02:52:00-08:00" + last_post_link: https://alp-notes.blogspot.com/2023/01/creating-simple-foreign-data-wrapper.html + last_post_categories: + - PostgreSQL + last_post_language: "" + last_post_guid: 6642519a5484dfba3bd77471cfb3a2fb + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-98b7a5bad4956bcf811aca984b6cc466.md b/content/discover/feed-98b7a5bad4956bcf811aca984b6cc466.md deleted file mode 100644 index f2198dc1b..000000000 --- a/content/discover/feed-98b7a5bad4956bcf811aca984b6cc466.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Roboflow Blog -date: "1970-01-01T00:00:00Z" -description: Computer vision, explained, on the Roboflow blog. -params: - feedlink: https://blog.roboflow.com/rss/ - feedtype: rss - feedid: 98b7a5bad4956bcf811aca984b6cc466 - websites: - https://blog.roboflow.com/: true - https://blog.roboflow.com/author/james/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Model Training - relme: {} - last_post_title: How to Fine-Tune a YOLOv10 Model on a Custom Dataset - last_post_description: Learn how to train a YOLOv10 model using a custom dataset. - last_post_date: "2024-05-24T18:48:50Z" - last_post_link: https://blog.roboflow.com/yolov10-how-to-train/ - last_post_categories: - - Model Training - last_post_guid: 936e24587871daaaa085821fda922ac1 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-98c4bcdb84f261808b4c7afe114898cd.md b/content/discover/feed-98c4bcdb84f261808b4c7afe114898cd.md new file mode 100644 index 000000000..8ea8049ec --- /dev/null +++ b/content/discover/feed-98c4bcdb84f261808b4c7afe114898cd.md @@ -0,0 +1,51 @@ +--- +title: The Spicy Web +date: "2024-05-14T10:28:20-07:00" +description: Join a fabulous community of developers learning vanilla web specs like + HTTP, HTML, CSS, JavaScript, & Web Components +params: + feedlink: https://www.spicyweb.dev/feed.xml + feedtype: atom + feedid: 98c4bcdb84f261808b4c7afe114898cd + websites: + https://www.spicyweb.dev/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - architecture + - bestpractices + - courses + - css + relme: {} + last_post_title: 'Building Courseware I Can Understand: The Launch of CSS Nouveau' + last_post_description: "" + last_post_date: "2023-10-23T00:00:00-07:00" + last_post_link: https://www.spicyweb.dev/building-courseware-i-understand/ + last_post_categories: + - architecture + - bestpractices + - courses + - css + last_post_language: "" + last_post_guid: c8ad9cabb080b25628df6b6c85572b20 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-98c9dc22b93073ded45eddf642adaf11.md b/content/discover/feed-98c9dc22b93073ded45eddf642adaf11.md deleted file mode 100644 index b640d9034..000000000 --- a/content/discover/feed-98c9dc22b93073ded45eddf642adaf11.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Paul Robert Lloyd -date: "2024-05-23T00:26:36+01:00" -description: "" -params: - feedlink: https://paulrobertlloyd.com/feed.xml - feedtype: atom - feedid: 98c9dc22b93073ded45eddf642adaf11 - websites: - https://paulrobertlloyd.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: [] - relme: - https://flickr.com/people/paulrobertlloyd: false - https://github.com/paulrobertlloyd: true - https://micro.blog/paulrobertlloyd: false - https://www.linkedin.com/in/paulrobertlloyd: false - last_post_title: Protocols, platforms and priorities - last_post_description: "" - last_post_date: "2024-05-22T23:40:00+01:00" - last_post_link: https://paulrobertlloyd.com/2024/143/a1/protocols/ - last_post_categories: [] - last_post_guid: fcdcb37772e9371eddd14ec25a0a815d - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 12 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-98d1c0cdbb02cbb8044eb87eed7e829f.md b/content/discover/feed-98d1c0cdbb02cbb8044eb87eed7e829f.md new file mode 100644 index 000000000..ccd8a89c0 --- /dev/null +++ b/content/discover/feed-98d1c0cdbb02cbb8044eb87eed7e829f.md @@ -0,0 +1,139 @@ +--- +title: Snap chat vs Nimbus +date: "2024-03-13T09:55:01-07:00" +description: Snap chat is very useful app for talking each other. +params: + feedlink: https://bluedayschile.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 98d1c0cdbb02cbb8044eb87eed7e829f + websites: + https://bluedayschile.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Snap chat is Good for chating. + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Snap chat Vs Nimbuz Chat App + last_post_description: "" + last_post_date: "2021-04-23T13:16:17-07:00" + last_post_link: https://bluedayschile.blogspot.com/2021/04/snap-chat-vs-nimbuz-chat-app.html + last_post_categories: + - Snap chat is Good for chating. + last_post_language: "" + last_post_guid: 7ad33973b34102b690ccdc4b6fcc9485 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-98ff47e1ce00bb617ad1db9203d34435.md b/content/discover/feed-98ff47e1ce00bb617ad1db9203d34435.md deleted file mode 100644 index d2ee33ed9..000000000 --- a/content/discover/feed-98ff47e1ce00bb617ad1db9203d34435.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: 'Alchemists: Projects' -date: "2024-05-31T02:04:43Z" -description: Software projects available for use and in collaboration with others. -params: - feedlink: https://alchemists.io/feeds/projects.xml - feedtype: atom - feedid: 98ff47e1ce00bb617ad1db9203d34435 - websites: - https://alchemists.io/: false - https://alchemists.io/articles: false - https://alchemists.io/projects: true - https://alchemists.io/screencasts: false - https://alchemists.io/talks: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - projects - relme: {} - last_post_title: Etcher Project - last_post_description: "" - last_post_date: "2024-06-03T17:29:00Z" - last_post_link: https://alchemists.io/projects/etcher - last_post_categories: - - projects - last_post_guid: 1cc28eb87dc2154d179f5beea46485b2 - score_criteria: - cats: 1 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9906943c5252c9b08e8969e0742b8a10.md b/content/discover/feed-9906943c5252c9b08e8969e0742b8a10.md new file mode 100644 index 000000000..240734e44 --- /dev/null +++ b/content/discover/feed-9906943c5252c9b08e8969e0742b8a10.md @@ -0,0 +1,40 @@ +--- +title: 'Cogito, Ergo Sumana tag: Python' +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://www.harihareswara.net/rss/python/ + feedtype: rss + feedid: 9906943c5252c9b08e8969e0742b8a10 + websites: + https://www.harihareswara.net/posts/python/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://www.harihareswara.net/posts/python/: true + last_post_title: Links and References For My PyCon US Keynote + last_post_description: Links and References For My PyCon US Keynote + last_post_date: "1970-01-01T00:00:00Z" + last_post_link: http://harihareswara.net/posts/2024/references-pycon-us-keynote/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 474dcb89b13ced483080744f8e1b96fb + score_criteria: + cats: 0 + description: 0 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 11 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-99156b0e4efae5305e68b7d64f37977a.md b/content/discover/feed-99156b0e4efae5305e68b7d64f37977a.md new file mode 100644 index 000000000..9ed8e05d5 --- /dev/null +++ b/content/discover/feed-99156b0e4efae5305e68b7d64f37977a.md @@ -0,0 +1,42 @@ +--- +title: On the Data Platform +date: "2024-03-07T18:55:36-05:00" +description: "" +params: + feedlink: https://dataplat.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 99156b0e4efae5305e68b7d64f37977a + websites: + https://dataplat.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://dataplat.blogspot.com/: true + https://osmusings.blogspot.com/: true + https://www.blogger.com/profile/02062334031161915809: true + last_post_title: Learning BIRT, part 2 + last_post_description: "" + last_post_date: "2008-04-02T15:54:11-04:00" + last_post_link: https://dataplat.blogspot.com/2008/04/learning-birt-part-2.html + last_post_categories: [] + last_post_language: "" + last_post_guid: f8158de10a5341c112dae5175089a21a + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9938fa58d88330b16fc26880ae6234df.md b/content/discover/feed-9938fa58d88330b16fc26880ae6234df.md deleted file mode 100644 index b44952752..000000000 --- a/content/discover/feed-9938fa58d88330b16fc26880ae6234df.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: christian -date: "1970-01-01T00:00:00Z" -description: Public posts from @christian@vivaldi.net -params: - feedlink: https://social.vivaldi.net/@christian.rss - feedtype: rss - feedid: 9938fa58d88330b16fc26880ae6234df - websites: - https://social.vivaldi.net/@christian: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-993c8f2e74cd380ce4167f51e1f207ff.md b/content/discover/feed-993c8f2e74cd380ce4167f51e1f207ff.md new file mode 100644 index 000000000..5a6ce8cb9 --- /dev/null +++ b/content/discover/feed-993c8f2e74cd380ce4167f51e1f207ff.md @@ -0,0 +1,633 @@ +--- +title: LibreOffice i Danmark - Nyheder +date: "2024-03-19T04:00:15+01:00" +description: Her kan du læse artikler fra LibreOffice i Danmarks månedlige nyhedsbrev. + Du kan tilmelde dig nyhedsbrevet ved at sende en mail til nyhedsbrev+subscribe@da.libreoffice.org +params: + feedlink: https://libreofficedk.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 993c8f2e74cd380ce4167f51e1f207ff + websites: + https://libreofficedk.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - "2" + - "2014" + - "2016" + - "2018" + - "4.1" + - "4.2" + - "4.3" + - 4.3.7 + - "4.4" + - 4.4.2 + - "5.0" + - "5.1" + - 5.1.1 + - 5.1.4 + - "5.2" + - "5.3" + - 5.3. + - "5.4" + - "6" + - "6.0" + - 6.0.3 + - "6.1" + - "6.2" + - "6.3" + - "6.4" + - "7.0" + - AD + - AMD + - Aarhus + - Aarhus Kommune + - Access + - Access2base + - Active Directory + - Administration + - Adobe Reader + - Adresse + - Advarsel + - Advisory board + - Albanien + - Alfresco + - Amazon + - Android + - Android LibreOffice Viewer + - Apache Foundation + - Apache Open Office + - Athen + - Autoformat + - Back up + - Barcelona + - Base + - Belgien + - Bern + - Betinget tekst + - Biblioteker + - Bitnami + - BorgerPC + - Bossie Award + - Brasilien + - Brevfletning + - Brno + - Bruxelles + - Bug fix + - Bug hunting session + - Bugfix + - Bulgarien + - CERN + - CHOOSE + - CMIS + - CODE + - CSV + - Calc + - Calc.makro + - Catalonien + - Certificering The Document Foundation + - Ciudad Real + - Clac + - Collabora + - Community + - Coverity + - DO + - DOCX + - DTP + - DanID + - Danmark + - Dansk + - Dansk Sprognævn + - De Grønne + - Deleøkonomi + - Design + - Designing with LibreOffice + - Detektiv + - Document Liberation Project + - Dokumentation + - Draw + - EU + - Emoji + - En måned for LibreOffice + - England + - Estland + - Etiketter + - Europa + - Europa Kommissionen + - Europa Parlamentet + - Europaparlamentet + - Excel + - FAIR + - FAQ + - FILTERXML + - FOR + - FOURIER + - Facebook + - Finland + - Firebird + - Flettebrev + - Fodnoter + - Folketinget + - Fontaine + - Fontwork + - Foreningen Dansk LibreOffice konference 2015 + - Formelredigering + - Formler + - Frankrig + - Free software + - Fri software + - Frigive + - Friprog + - Full Circle Magazine + - Funktionsguide + - Fællesskabet + - Fødselsdag + - GDPR + - GNOME + - GSOD Season of Docs + - GSoC + - GUI + - Galleri + - Genova + - Google + - Google Docs + - Google Drev + - Google Summer of Code + - Grenoble + - Grunddata + - Grækenland + - Grønland + - Guides + - HSQLDB + - HTML5 + - Hamborg + - Helsinki + - Holland + - Hosting + - Hunspell + - Hybrid + - IF + - IIF + - ISO + - Impress + - Indien + - Indlejre + - Indstillinger + - InputBox + - Intel + - Internationalt + - Ipad + - Iphone + - Irland + - Italien + - Job + - Jubilæum + - Kage + - Kalender + - Kommandolinje + - Kommentar + - Kommentarer + - Kommunalvalg + - Konference + - Konference 2014 + - Konference 2015 + - Konference 2016 + - Kopano + - Københavns Kommune + - LOOL + - LanguageTool + - Leipzig + - LiMUX + - Libre + - LibreItalia + - LibreOffice + - LibreOffice 4.1 + - LibreOffice 4.2 + - LibreOffice 4.3 + - LibreOffice 4.4 + - LibreOffice 5.0 + - LibreOffice 5.1 + - LibreOffice 5.2 + - LibreOffice 5.3 + - LibreOffice 5.4 + - LibreOffice 6.0 + - LibreOffice 6.1 + - LibreOffice 6.2 + - LibreOffice 6.3 + - LibreOffice 6.4 + - LibreOffice 7 + - LibreOffice Android + - LibreOffice Calc + - LibreOffice Writer + - LibreOffice certificering + - LibreOffice hjælp + - LibreOffice iOS + - LibreOffice konference + - LibreOffice online + - LibreOffice til Android + - LibreOffice4Android + - Limerick + - Linux + - Litauen + - Litteraturdatabase + - Litteraturliste + - Lorem ipsum + - Lotus 1-2-3 + - Lotus Symphony + - MIT + - MUFFIN + - Mac + - Maskering + - Membership Committee + - Mest læste + - Microsoft Office + - Milano + - MsgBox + - My User Friendly & Flexible INterface + - München + - Nancy + - Nantes + - Navigator + - Navigatoren + - Neerijnen + - NemID + - New Zealand + - NextCloud + - Norge + - Notebook + - Nye funktioner + - Nyt + - Nytår + - OASIS + - ODF + - OGP + - OOXML + - OOXML Strict + - OSX + - Office + - OnfoWorld + - Online redigering + - Opdele + - Open Document Format + - Open Government Partnership + - Open Office + - Open source + - Open365 + - OpenOffice.org + - OpenSourceDays + - OpenType Font + - Oversættelse + - PDF + - PDF-formular + - PDF/UA + - Paginering + - Paletter + - Panel + - Performance + - Persondata + - PlantUML + - Politi + - Pootle + - Portugal + - Powerpoint + - Print + - Problemløser + - ProjectLibre + - Projektplanlægning + - Publisher + - Pydio + - Python + - Q&A + - QR + - QR-kode + - Quattro Pro + - Regulære udtryk + - Release + - Retskrivningsordbogen + - Rhône-Alpes + - Rom + - SELECT + - Samle + - Schweiz + - Scribus + - Seafile + - Self publishing + - Sidetal + - Sjældent brugt + - Skoler + - Skyen + - Solver + - SourceForge + - Spanien + - Specialtegn + - Sporing + - Sprogværktøjer + - Starcenter + - Status + - Stavekontrol + - Stavekontrolden + - Storbritannien + - Store dokumenter + - Studerende + - Sverige + - Sårbarhed + - Sønderborg + - Sønderjylland + - TDF + - Tabeltypografi + - Tag del i arbejdet + - Talinn + - Tekstboks + - The Document Foundation + - Thunderbird + - Tidsregistrering + - Tilpas + - Tips + - Tirana + - Titelside + - Toulouse + - Tyrkiet + - Tyskland + - UML + - UNO + - USA + - Ubuntu + - Udskriv + - Uganda + - Ugenummer + - Umeå + - Ungarn + - Universitet + - Valencia + - Vejledninger + - Verdens bedste nyheder + - Visio + - WEBSERVICE + - WebODF + - Wien + - Wiki + - Wilhelm Tux + - Windows + - Windows XP + - Word + - Writer + - XML + - XP + - akkorder + - arkivet + - array + - automatisk maskering + - autotekst + - avanceret + - baggrund + - bash + - basic + - batch + - beregninger + - beskæftigelse + - bestyrelse + - beta + - betinget formatering + - bidrag + - billeder + - browser + - brugergrænseflade + - brugerindvolvering + - brugerordbog + - brugerprofil + - brugervenlig + - budgetforlig + - bug hunting + - bugs + - børn + - celler + - certificering + - clipart + - cloud + - creative commons + - database + - dato + - dekoration + - deltag + - den offentlige sektor + - diagram + - dialog + - dialoger + - digital signatur + - dokument + - dokumenter + - download + - drøm + - e-bøger + - e-læring + - e-mail + - eksperimentel + - eksport + - eksport filter + - epub + - extension + - faktura + - farver + - fejl + - fejlhåndtering + - fejlrettelse + - felt + - felter + - figur + - filer + - filnavn + - filtre + - finansiering + - fjernkontrol + - flette celler + - fonte + - forbruger + - foredrag + - format + - formatering + - formular + - formularer + - formularfelter + - forum + - forum.liboforum.dk + - fremhæv værdier + - frihed + - funktioner + - fællesskab + - genveje + - genvejstaster + - grammatik + - grammatikkontrol + - historie + - hjælp + - højreklik-menu + - iOS + - ikon + - ikoner + - implementering + - import + - import filter + - indkøb + - installation + - integration + - interoperabilitet + - interview + - it-strategi + - kant + - kapitæler + - klassificering + - kommuner + - kompleks tekst + - konkurrence + - konvertering + - kurve + - kvalitet + - kæder + - køb dansk + - layout + - liboforum.dk + - licenser + - ligatur + - linje + - lyd + - lydeffekt + - makro + - medlem + - mellemrum. tips + - migrering + - mobil + - multiplikatoreffekten + - musik + - noder + - nummerering + - nyheder + - nyhedsbrev + - offentlig + - opdater + - open government + - openSUSE + - openStreetMap + - openclipart + - opgradering + - ordbog + - overskrifter + - ownCloud + - parameter + - patent + - pc + - pimp + - pivotdiagram + - pivottabel + - politik + - portræt + - postlister + - ppt + - pptx + - privatliv + - profil + - programkontrol + - programmering + - præsentationer + - rammer + - ransomware + - regeringer + - regex + - regneark + - regnskab + - release candidate + - risiko + - rollApp + - samarbejde + - samfundsøkonomi + - sammenligning + - sidepanel + - sidetypografi + - sikker tilstand + - sikkerhed + - skabelon + - skole + - skole-IT + - skriftstørrelse + - skrifttyper + - sludretekst + - sponsor + - standerskabelon + - statistik + - stavefejl + - streg + - subrutiner + - svg + - søgning + - tabel + - tastatur + - tegneobjekter + - tegning + - teknisk + - tekst + - tekstbehandling + - tekstramme + - tema + - test + - tilgængelighed + - transponere + - typografi + - udbud + - uddannelse + - udseende + - udveksling + - udvidelse + - udvikling + - underskrift + - underskriftslinje + - undervisning + - unicode + - uǝpısbɐq + - valg + - validering + - version + - version 4.2 + - version 4.4 + - video + - virus + - vækst + - værktøjslinjer + - xls + - xlsx + - Åbne data + - Årsrapport + - Ændringshåndtering + - Østrig + - åbenhed + - åbne standarder + - økonomi + - økosystem + relme: + https://libreofficedk.blogspot.com/: true + https://lodahl.blogspot.com/: true + https://www.blogger.com/profile/08960229448622236930: true + last_post_title: 'Fra arkivet: Statistik' + last_post_description: "" + last_post_date: "2020-03-02T12:00:01+01:00" + last_post_link: https://libreofficedk.blogspot.com/2020/03/fra-arkivet-statistik.html + last_post_categories: + - arkivet + last_post_language: "" + last_post_guid: c8b78b3403f9bf61725072bf6c601c96 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9944dd1a184f3fbc34f8ab4e3d33c5c7.md b/content/discover/feed-9944dd1a184f3fbc34f8ab4e3d33c5c7.md new file mode 100644 index 000000000..de16aaf83 --- /dev/null +++ b/content/discover/feed-9944dd1a184f3fbc34f8ab4e3d33c5c7.md @@ -0,0 +1,45 @@ +--- +title: Reacties voor Lukas Kosters Ruimte +date: "1970-01-01T00:00:00Z" +description: Stukjes over Haarlem, stadsgeschiedenis, cartografie, en dergelijke +params: + feedlink: https://lukaskoster.nl/comments/feed/ + feedtype: rss + feedid: 9944dd1a184f3fbc34f8ab4e3d33c5c7 + websites: + https://lukaskoster.nl/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://commonplace.net/: true + https://lukaskoster.nl/: true + https://masto.ai/@lukask: true + https://www.openstreetmap.org/user/lukask99: true + last_post_title: Reactie op De twee Kruispoorten van Haarlem door Lukas Koster + last_post_description: Een uitgebreidere en verbeterde versie van dit verhaal is + gepubliceerd in het Haerlem Jaarboek 2021 van de Historische + last_post_date: "2022-12-05T14:15:44Z" + last_post_link: https://lukaskoster.nl/816/#comment-53 + last_post_categories: [] + last_post_language: "" + last_post_guid: 564574e7dcd500418d4f1bb1ee2c1e79 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9949f6eb2c7f01edbbf175753d66ded0.md b/content/discover/feed-9949f6eb2c7f01edbbf175753d66ded0.md new file mode 100644 index 000000000..70413a7e9 --- /dev/null +++ b/content/discover/feed-9949f6eb2c7f01edbbf175753d66ded0.md @@ -0,0 +1,42 @@ +--- +title: Comments for TDDPirate's Ideas +date: "1970-01-01T00:00:00Z" +description: Accessibility, Crazy (Event Gripping) Ideas +params: + feedlink: https://tddpirate.zak.co.il/comments/feed/ + feedtype: rss + feedid: 9949f6eb2c7f01edbbf175753d66ded0 + websites: + https://tddpirate.zak.co.il/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://tddpirate.zak.co.il/: true + last_post_title: Comment on First Contact Speculations by tddpirate + last_post_description: |- + See news about the NASA DART mission (https://www.space.com/dart-asteroid-mission). + The collision is expected to occur at 2314 GMT on Sept. 26, 2022 (0214 Israeli DST on Sept. 27, 2022). + last_post_date: "2022-09-25T22:26:12Z" + last_post_link: https://tddpirate.zak.co.il/2016/07/09/first-contact-speculations/#comment-83946 + last_post_categories: [] + last_post_language: "" + last_post_guid: c3ec0280e74ab5b2f068654b13a2a892 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-99512e73eb2444789cc26b630081c59b.md b/content/discover/feed-99512e73eb2444789cc26b630081c59b.md deleted file mode 100644 index 805c00e0c..000000000 --- a/content/discover/feed-99512e73eb2444789cc26b630081c59b.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: remy sharp's l:inks -date: "1970-01-01T00:00:00Z" -description: About [code] and all that jazz -params: - feedlink: https://remysharp.com/links.xml - feedtype: rss - feedid: 99512e73eb2444789cc26b630081c59b - websites: - https://remysharp.com/: true - https://remysharp.com/books: false - https://remysharp.com/speaking/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://flickr.com/photos/remysharp: false - https://front-end.social/@rem: true - https://github.com/remy: true - https://github.com/remy/: true - https://leftlogic.com/: false - https://remysharp.com/books: false - https://remysharp.com/speaking/: false - https://twitter.com/rem: false - https://www.twitch.tv/remysharp: false - last_post_title: Retro print patterns with CSS - last_post_description: |- - Ana Tudor, as always, shows excellent methods to create (what I'd call) retro print effects to images using CSS. - This is something I've typically turned to PhotoShop to (struggle) with, but Ana shows - last_post_date: "2024-05-08T10:18:06Z" - last_post_link: https://remysharp.com/links/2024-05-08-f220c1f6 - last_post_categories: [] - last_post_guid: 60021654bca59ad8d5b7bfb53a2edaf1 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9966a15127b13f2c9b470343b521a53c.md b/content/discover/feed-9966a15127b13f2c9b470343b521a53c.md index 23551e204..73c169d0b 100644 --- a/content/discover/feed-9966a15127b13f2c9b470343b521a53c.md +++ b/content/discover/feed-9966a15127b13f2c9b470343b521a53c.md @@ -1,6 +1,6 @@ --- title: 'Alchemists: News' -date: "2024-06-02T21:44:34Z" +date: "2024-07-01T12:07:22Z" description: All site wide software engineering related news and information. params: feedlink: https://www.alchemists.io/feeds/news.xml @@ -11,34 +11,36 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: - news relme: {} - last_post_title: Site Updates + last_post_title: Git Deployments last_post_description: "" - last_post_date: "2024-06-02T21:44:34Z" - last_post_link: https://alchemists.io/articles/site_updates + last_post_date: "2024-07-01T12:07:22Z" + last_post_link: https://alchemists.io/articles/git_deployments last_post_categories: + - git - milestones - last_post_guid: 5a551cc82f95382953d58a0d0268a162 + last_post_language: "" + last_post_guid: 3385e728745c5b410d40f7fa9bd93e95 score_criteria: cats: 1 description: 3 - postcats: 1 + feedlangs: 0 + postcats: 2 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 1 - score: 14 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-996f226a5c5b8f7a1676bc05a8629642.md b/content/discover/feed-996f226a5c5b8f7a1676bc05a8629642.md deleted file mode 100644 index 4e2c1cada..000000000 --- a/content/discover/feed-996f226a5c5b8f7a1676bc05a8629642.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for The Shining Path of Least Resistance -date: "1970-01-01T00:00:00Z" -description: LeastResistance.Net -params: - feedlink: https://leastresistance.wordpress.com/comments/feed/ - feedtype: rss - feedid: 996f226a5c5b8f7a1676bc05a8629642 - websites: - https://leastresistance.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Building Chef on the BeagleBone Black by David Wolf - last_post_description: |- - In reply to mattray. - - Thank you for you're fast answer! - last_post_date: "2019-08-26T06:24:14Z" - last_post_link: https://leastresistance.wordpress.com/2016/10/20/building-chef-on-the-beaglebone-black/#comment-4252 - last_post_categories: [] - last_post_guid: cdacedd3051fcffbd9ce22d3c06a0212 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9994181a95f01b20909014123ad15176.md b/content/discover/feed-9994181a95f01b20909014123ad15176.md new file mode 100644 index 000000000..509137e6a --- /dev/null +++ b/content/discover/feed-9994181a95f01b20909014123ad15176.md @@ -0,0 +1,141 @@ +--- +title: Ddosing is not Illegal +date: "1970-01-01T00:00:00Z" +description: ddosing is good for internet a and having not any kind of trouble. +params: + feedlink: https://mobincubeapps.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 9994181a95f01b20909014123ad15176 + websites: + https://mobincubeapps.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Ddos is legal + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Is ddosing is Good + last_post_description: You can pay special mind to an organisation offering undeniable + DDoS ensured facilitating that can stop all. Assaults like the UDP floods, TCP + floods, SYN floods, ICMP assaults, HTTP assaults, DNS + last_post_date: "2021-04-22T18:36:00Z" + last_post_link: https://mobincubeapps.blogspot.com/2021/04/is-ddosing-is-good.html + last_post_categories: + - Ddos is legal + last_post_language: "" + last_post_guid: cb4cea848d11441ac4daeb89fb77f643 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-99a2266fd10020397cc83774a2915157.md b/content/discover/feed-99a2266fd10020397cc83774a2915157.md deleted file mode 100644 index 973039b51..000000000 --- a/content/discover/feed-99a2266fd10020397cc83774a2915157.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Aptira -date: "1970-01-01T00:00:00Z" -description: Cloud Solutions for Government and Enterprise -params: - feedlink: https://feeds.feedburner.com/Aptira?format=xml - feedtype: rss - feedid: 99a2266fd10020397cc83774a2915157 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Technical Documentation - relme: {} - last_post_title: Kubernetes Explained - last_post_description: The post Kubernetes Explained appeared first on Aptira. - last_post_date: "2021-08-25T06:06:41Z" - last_post_link: https://aptira.com/kubernetes-explained/ - last_post_categories: - - Technical Documentation - last_post_guid: 744459744b2245ac58bb1f1335bf1ef1 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-99a38ea51f30b5bfa4f5958d97e587e8.md b/content/discover/feed-99a38ea51f30b5bfa4f5958d97e587e8.md new file mode 100644 index 000000000..60ffa4b49 --- /dev/null +++ b/content/discover/feed-99a38ea51f30b5bfa4f5958d97e587e8.md @@ -0,0 +1,141 @@ +--- +title: Ddosing and Impact +date: "1970-01-01T00:00:00Z" +description: Knowing about Ddosing. Much more at one place. +params: + feedlink: https://frontinformation.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 99a38ea51f30b5bfa4f5958d97e587e8 + websites: + https://frontinformation.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ddosing is beautyful + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Ddos is Awesome + last_post_description: There are numerous different alternatives like clean lines, + IPS based avoidance and counteraction through proactive testing. It is just a + question of perseverance and examination when you pick the + last_post_date: "2021-04-16T16:20:00Z" + last_post_link: https://frontinformation.blogspot.com/2021/04/ddos-is-awesome.html + last_post_categories: + - ddosing is beautyful + last_post_language: "" + last_post_guid: e42d9c7a063bd4fbe3a92ffb2ee329d5 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-99bf11e6f5c4def7a704631f6dc5599b.md b/content/discover/feed-99bf11e6f5c4def7a704631f6dc5599b.md new file mode 100644 index 000000000..ce759c4e6 --- /dev/null +++ b/content/discover/feed-99bf11e6f5c4def7a704631f6dc5599b.md @@ -0,0 +1,41 @@ +--- +title: essgee +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://essgee.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 99bf11e6f5c4def7a704631f6dc5599b + websites: + https://essgee.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://essgee.blogspot.com/: true + https://www.blogger.com/profile/14136985405298812577: true + last_post_title: Stockholm beer and whisky. + last_post_description: "" + last_post_date: "2007-09-29T19:45:00Z" + last_post_link: https://essgee.blogspot.com/2007/09/stockholm-beer-and-whisky.html + last_post_categories: [] + last_post_language: "" + last_post_guid: c9e9ea9ac4c71d66bcec13b59256d108 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-99c1da263442f5bc5c55c753e77d0e75.md b/content/discover/feed-99c1da263442f5bc5c55c753e77d0e75.md index 1b9154cc5..e7986730d 100644 --- a/content/discover/feed-99c1da263442f5bc5c55c753e77d0e75.md +++ b/content/discover/feed-99c1da263442f5bc5c55c753e77d0e75.md @@ -18,84 +18,77 @@ params: - News - Sports relme: {} - last_post_title: KEEP. CALLING. HIM. CONVICTED. FELON. DONALD. TRUMP - 6.4.24 - last_post_description: |- - SERIES 2 EPISODE 187: COUNTDOWN WITH KEITH OLBERMANN - A-Block (1:44) SPECIAL COMMENT: The light bulbs may have finally gone off over the heads of the Biden Campaign at 2:03 P-M Eastern yesterday. - last_post_date: "2024-06-04T04:00:00Z" - last_post_link: https://omny.fm/shows/countdown-with-keith-olbermann/keep-calling-him-convicted-felon-donald-trump-6-4 + last_post_title: 'BULLETIN: BIDEN''S TROUBLING "I GAVE IT MY BEST" ANSWER; WARNER + PUSH TO OUST HIM - 7.6.23' + last_post_description: 'SERIES 2 EPISODE 208: COUNTDOWN WITH KEITH OLBERMANN A-Block + (1:44) COUNTDOWN BULLETIN: In a disturbing end to an otherwise low-news interview + with George Stephanopoulos of ABC News, President Biden' + last_post_date: "2024-07-06T01:51:38Z" + last_post_link: https://omny.fm/shows/countdown-with-keith-olbermann/bulletin-bidens-troubling-i-gave-it-my-best-answer last_post_categories: + - ABC News + - Biden + - Biden Crisis + - Biden Investigation + - Biden Withdrawal - Convicted Felon Donald Trump - - Dictator J. Trump + - Countdown - Dementia J. Trump - - Loser J. Trump + - Denis Leary - Diaper J. Trump + - Dictator J. Trump - Dozing J. Trump - - Today's Headlines - - News - - Sports + - Elderly First Offender Donald Trump - Election - - Politics - - Political Commentary - - Biden - - Trump - - Keith Olbermann - - Olbermann - - Countdown - - MSNBC - - Special Comment - Every Dog Has Its Day - - Postscripts To The News + - George Stephanopoulos + - Hakeem Jeffries - In Sports - - Worst Persons In The World - - Things I Promised Not To Tell - - Trump Investigation - - Biden Investigation - - Larry David - - Richard Lewis + - Jack Smith + - January 6 - Jonathan Banks - - Stevie Van Zandt + - Kamala Harris + - Keith Olbermann - Kenny Mayne - - Tony Kornheiser - - Howard Fineman - - Denis Leary + - King Kong Trump + - Larry David + - Loser J. Trump + - MSNBC + - Mark Warner + - Maura Healey - Nancy Faust - - Jack Smith - - January 6 + - News + - Olbermann + - Political Commentary + - Politics + - Postscripts To The News + - Special Comment - Special Counsel + - Sports + - Stevie Van Zandt + - Things I Promised Not To Tell + - Today's Headlines + - Tony Kornheiser + - Trump - Trump Indictments - - King Kong Trump - - Carl Higbie - - Josh Hawley - - Dinesh D'Souza - - 2000 Mules - - Salem Media - - Rick Kaplan - - D-Day - - Chris Matthews - - Jesse Ventura - - Joe Scarborough - - Lester Holt - - CNN - - YouGov - - Senator Mike Lee - - Supreme Court - - Jamie Raskin - - Justice Alito - - Martha-Ann Alito - - Alito Flag Scandal - - Mike Johnson - last_post_guid: a85316ae9f464f52975b2e3e90d2b129 + - Trump Investigation + - Worst Persons In The World + last_post_language: "" + last_post_guid: 831a6650ad6cba2a87a2b7288100c218 score_criteria: cats: 2 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 16 + score: 20 ispodcast: true isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-99cb3fea1912b85b9e27c63be6b85f3a.md b/content/discover/feed-99cb3fea1912b85b9e27c63be6b85f3a.md new file mode 100644 index 000000000..be237aa75 --- /dev/null +++ b/content/discover/feed-99cb3fea1912b85b9e27c63be6b85f3a.md @@ -0,0 +1,137 @@ +--- +title: Ddos is Best friend +date: "2024-03-19T05:57:21-07:00" +description: Ddos is best privacy if you secure it. +params: + feedlink: https://luisfranciscomacias.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 99cb3fea1912b85b9e27c63be6b85f3a + websites: + https://luisfranciscomacias.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: All about Ddos illegal + last_post_description: "" + last_post_date: "2021-04-07T11:13:50-07:00" + last_post_link: https://luisfranciscomacias.blogspot.com/2021/04/all-about-ddos-illegal.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 122e52bed3d5f7e300688ee5268f0170 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-99cd3bf93c841caec43a43c16cb5bdf6.md b/content/discover/feed-99cd3bf93c841caec43a43c16cb5bdf6.md index 97f059b40..beec0c8be 100644 --- a/content/discover/feed-99cd3bf93c841caec43a43c16cb5bdf6.md +++ b/content/discover/feed-99cd3bf93c841caec43a43c16cb5bdf6.md @@ -12,7 +12,8 @@ params: recommended: [] recommender: [] categories: [] - relme: {} + relme: + https://forgefriends.org/: true last_post_title: 'State of the Forge Federation: 2023 edition' last_post_description: |- If you already read the “State of the Forge Federation: 2022 edition”, you may want to skip directly to the “Executive summary” section below. @@ -20,17 +21,22 @@ params: last_post_date: "2023-06-21T01:03:31+02:00" last_post_link: https://forgefriends.org/blog/2023/06/21/2023-06-state-forge-federation/ last_post_categories: [] + last_post_language: "" last_post_guid: e2a9afed318f84f4b50ba8a0eddf7b5a score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 8 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-99e3299d5643ae139035e2e7b7893a89.md b/content/discover/feed-99e3299d5643ae139035e2e7b7893a89.md new file mode 100644 index 000000000..27cf5a9b7 --- /dev/null +++ b/content/discover/feed-99e3299d5643ae139035e2e7b7893a89.md @@ -0,0 +1,46 @@ +--- +title: Tim Harford +date: "1970-01-01T00:00:00Z" +description: The Undercover Economist +params: + feedlink: https://timharford.com/feed/ + feedtype: rss + feedid: 99e3299d5643ae139035e2e7b7893a89 + websites: + https://timharford.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://jeroensangers.com/feed.xml + - https://jeroensangers.com/podcast.xml + categories: + - Undercover Economist + relme: {} + last_post_title: 'Cautionary Tales – Run, Switzer, Run: The Women Who Broke the + Marathon Taboo' + last_post_description: Until the 1960s, women couldn’t compete in Olympic events + any longer than a sprint – and commentators declared that a marathon would kill + them, or leave them unable to have children. Rubbish, of + last_post_date: "2024-07-05T05:01:00Z" + last_post_link: https://timharford.com/2024/07/cautionary-tales-the-loneliness-of-the-long-distance-woman/ + last_post_categories: + - Undercover Economist + last_post_language: "" + last_post_guid: 58fbc552ff39390009473466ce087760 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 1 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-9a021544cb950d25870c2970d850c4e2.md b/content/discover/feed-9a021544cb950d25870c2970d850c4e2.md new file mode 100644 index 000000000..f85c32803 --- /dev/null +++ b/content/discover/feed-9a021544cb950d25870c2970d850c4e2.md @@ -0,0 +1,44 @@ +--- +title: Johan Jeuring's blog +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://johanjeuring.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 9a021544cb950d25870c2970d850c4e2 + websites: + https://johanjeuring.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://finding-palindromes.blogspot.com/: true + https://johanjeuring.blogspot.com/: true + https://www.blogger.com/profile/14035760811349164958: true + last_post_title: The aftermath + last_post_description: We are wrapping up our efforts on the ICFP Programming Contest + 2007. Most contest-related matters have been finished by now.If you want to read + more about the ICFP Programming contest, you should + last_post_date: "2007-10-24T12:53:00Z" + last_post_link: https://johanjeuring.blogspot.com/2007/10/aftermath.html + last_post_categories: [] + last_post_language: "" + last_post_guid: e89ea28bf313f7f81b310fa59429f38e + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9a17104018ed73000009296e7abc9a78.md b/content/discover/feed-9a17104018ed73000009296e7abc9a78.md new file mode 100644 index 000000000..3db26e591 --- /dev/null +++ b/content/discover/feed-9a17104018ed73000009296e7abc9a78.md @@ -0,0 +1,44 @@ +--- +title: Blog - Dino. Communicating happiness. +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://dino.im/blog/index.xml + feedtype: rss + feedid: 9a17104018ed73000009296e7abc9a78 + websites: + https://dino.im/blog/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://dino.im/blog/: true + last_post_title: Dino 0.4 Release + last_post_description: |- + Dino is a secure and open-source messaging application. + It uses the XMPP (Jabber) protocol for decentralized communication. + We aim to provide an intuitive and enjoyable user interface. + The 0.4 + last_post_date: "2023-02-07T22:00:00+01:00" + last_post_link: https://dino.im/blog/2023/02/dino-0.4-release/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 921af50afca0e09bf35e3a0223f528a4 + score_criteria: + cats: 0 + description: 0 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 11 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-9a204b7d13df1081bad4213de6611e65.md b/content/discover/feed-9a204b7d13df1081bad4213de6611e65.md index 14616e381..3853a9464 100644 --- a/content/discover/feed-9a204b7d13df1081bad4213de6611e65.md +++ b/content/discover/feed-9a204b7d13df1081bad4213de6611e65.md @@ -7,40 +7,42 @@ params: feedtype: rss feedid: 9a204b7d13df1081bad4213de6611e65 websites: - https://vmx.cx/: false https://vmx.cx/cgi-bin/blog/index.cgi: true blogrolls: [] recommended: [] - recommender: - - https://hacdias.com/feed.xml + recommender: [] categories: - - en - IPFS - conference + - en - geo relme: - https://github.com/vmx: false - https://twitter.com/vmx: false + https://vmx.cx/cgi-bin/blog/index.cgi: true last_post_title: FOSS4G 2023 last_post_description: '[...]' last_post_date: "2023-07-22T21:50:07+02:00" last_post_link: https://vmx.cx/cgi-bin/blog/index.cgi/foss4g-2023%3A2023-07-22%3Aen%2CIPFS%2Cconference%2Cgeo last_post_categories: - - en - IPFS - conference + - en - geo + last_post_language: "" last_post_guid: 91b0e827e88fbe7c5c5695f6be490f24 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 - promoted: 5 + posts: 3 + promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-9a4d55ac1cf70404188b2d5ca4a6d6ad.md b/content/discover/feed-9a4d55ac1cf70404188b2d5ca4a6d6ad.md index 1bcca3a02..e84de5bdc 100644 --- a/content/discover/feed-9a4d55ac1cf70404188b2d5ca4a6d6ad.md +++ b/content/discover/feed-9a4d55ac1cf70404188b2d5ca4a6d6ad.md @@ -16,23 +16,29 @@ params: - http://scripting.com/rssNightly.xml categories: [] relme: {} - last_post_title: Alito Flies a Treason Flag, Gov. Abbott Pardons and Frees the Killer - of a Black Lives Protester, and College Students Get the Last Word - last_post_description: Episode 318 - last_post_date: "2024-05-21T11:02:11Z" - last_post_link: https://www.michaelmoore.com/p/alito-flies-a-treason-flag-gov-abbott + last_post_title: “Elder Abuse” is Refusing to Give the President a Neurological + Exam — and Instead PUSHING Him to “Soldier On” + last_post_description: 'It’s Definitely a Unique Strategy: Defeat Trump by Letting + Biden Have a Stroke (or worse)' + last_post_date: "2024-07-06T20:50:10Z" + last_post_link: https://www.michaelmoore.com/p/elder-abuse-is-refusing-to-give-the last_post_categories: [] - last_post_guid: b496ab1060ac66f45f4d5bd213cd4f6e + last_post_language: "" + last_post_guid: 50bbc0b547159757c8a0063554bc63be score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-9a741df99e5ca35c80e87bb5bafae896.md b/content/discover/feed-9a741df99e5ca35c80e87bb5bafae896.md deleted file mode 100644 index 8a7443d92..000000000 --- a/content/discover/feed-9a741df99e5ca35c80e87bb5bafae896.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: FluidDyn -date: "1970-01-01T00:00:00Z" -description: Public posts from @fluiddyn@hachyderm.io -params: - feedlink: https://hachyderm.io/@fluiddyn.rss - feedtype: rss - feedid: 9a741df99e5ca35c80e87bb5bafae896 - websites: - https://hachyderm.io/@fluiddyn: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/approved/: true - https://fluiddyn.netlify.app/: true - https://fluiddyn.readthedocs.io/: false - https://foss.heptapod.net/fluiddyn/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9a82f26c973fb7bbd78bf775cef9b9d4.md b/content/discover/feed-9a82f26c973fb7bbd78bf775cef9b9d4.md new file mode 100644 index 000000000..c89871cda --- /dev/null +++ b/content/discover/feed-9a82f26c973fb7bbd78bf775cef9b9d4.md @@ -0,0 +1,82 @@ +--- +title: Michal Čihař's Weblog +date: "1970-01-01T00:00:00Z" +description: Random thoughts about everything... +params: + feedlink: https://blog.cihar.com/index.xml + feedtype: rss + feedid: 9a82f26c973fb7bbd78bf775cef9b9d4 + websites: + https://blog.cihar.com/: true + https://blog.cihar.com/archives/debian/: false + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Bicycle + - Books + - Coding + - Configs + - Crypto + - Czech + - Debian + - Django + - Enca + - English + - GPL + - Gammu + - Gentoo + - History + - Howto + - IMAP + - Japan + - Life + - Linux + - Mailbox + - Maps + - Meego + - Misc + - Odorik + - OpenWrt + - Photography + - Pubs + - SUSE + - StarDict + - Synology + - Travelling + - Ukolovnik + - Wammu + - Weblate + - Website + - photo-uploader + - phpMyAdmin + - python-gammu + - uTidylib + relme: + https://blog.cihar.com/: true + last_post_title: Spring cleanup + last_post_description: What you can probably spot from past posts on my blog, my + open source contributions are heavily focused on Weblate and I've phased out many + other activities. The main reason being reduced amount of + last_post_date: "1970-01-01T00:00:00Z" + last_post_link: https://blog.cihar.com/archives/2019/05/29/spring-cleanup/?utm_source=rss1 + last_post_categories: [] + last_post_language: "" + last_post_guid: 083e0e423b9ab845dc55499a3aa1b794 + score_criteria: + cats: 5 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-9a8473a52d93fa83e9f3b23d635071ff.md b/content/discover/feed-9a8473a52d93fa83e9f3b23d635071ff.md new file mode 100644 index 000000000..ecd2d0376 --- /dev/null +++ b/content/discover/feed-9a8473a52d93fa83e9f3b23d635071ff.md @@ -0,0 +1,45 @@ +--- +title: LiClipse +date: "2024-03-20T19:23:31-07:00" +description: "" +params: + feedlink: https://liclipse.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 9a8473a52d93fa83e9f3b23d635071ff + websites: + https://liclipse.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://liclipse.blogspot.com/: true + https://onreservoirs.blogspot.com/: true + https://pydev.blogspot.com/: true + https://pyvmmonitor.blogspot.com/: true + https://sw-thought.blogspot.com/: true + https://www.blogger.com/profile/04202246218394712738: true + last_post_title: 'LiClipse 11: newer PyDev and on to new Eclipse base (4.30)' + last_post_description: "" + last_post_date: "2024-02-04T03:39:46-08:00" + last_post_link: https://liclipse.blogspot.com/2024/02/liclipse-11-newer-pydev-and-on-to-new.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 29a2859bb44f541735920a881b788785 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9a85e083d7a8b936e889bb4cc34a12bf.md b/content/discover/feed-9a85e083d7a8b936e889bb4cc34a12bf.md new file mode 100644 index 000000000..09f921920 --- /dev/null +++ b/content/discover/feed-9a85e083d7a8b936e889bb4cc34a12bf.md @@ -0,0 +1,43 @@ +--- +title: Functional Fun +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://nibrofun.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 9a85e083d7a8b936e889bb4cc34a12bf + websites: + https://nibrofun.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://nibrofun.blogspot.com/: true + https://www.blogger.com/profile/13840596738426427209: true + last_post_title: Quick update + last_post_description: Just a quick note since I realise I haven't been too good + at writing updates of late...I'm currently working on a complete revamp of the + AST, lexer and parser to allow for exact source info to be + last_post_date: "2009-08-11T19:46:00Z" + last_post_link: https://nibrofun.blogspot.com/2009/08/just-quick-note-since-i-realise-i.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 7279fe3681e6b02d1a58b42a4f603f71 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9a8beca635082f03992038bfdab4d14d.md b/content/discover/feed-9a8beca635082f03992038bfdab4d14d.md index d3e89f283..46310298c 100644 --- a/content/discover/feed-9a8beca635082f03992038bfdab4d14d.md +++ b/content/discover/feed-9a8beca635082f03992038bfdab4d14d.md @@ -1,6 +1,6 @@ --- title: Daring Fireball -date: "2024-06-04T03:08:18Z" +date: "2024-07-09T02:22:31Z" description: By John Gruber params: feedlink: https://daringfireball.net/feeds/main @@ -12,32 +12,39 @@ params: recommended: [] recommender: - http://scripting.com/rss.xml + - http://scripting.com/rssNightly.xml - https://blog.numericcitizen.me/feed.xml - https://blog.numericcitizen.me/podcast.xml + - https://josh.blog/comments/feed - https://josh.blog/feed - - https://www.manton.org/feed - https://www.manton.org/feed.xml - https://www.manton.org/podcast.xml categories: [] relme: + https://daringfireball.net/: true https://mastodon.social/@daringfireball: true https://mastodon.social/@gruber: true - last_post_title: Tickets for The Talk Show Live From WWDC 2024 + last_post_title: '[Sponsor] Dabba' last_post_description: "" - last_post_date: "2024-06-04T03:08:18Z" - last_post_link: https://ti.to/daringfireball/the-talk-show-live-from-wwdc-2024 + last_post_date: "2024-07-09T02:22:31Z" + last_post_link: https://dabba.com/daringfireball last_post_categories: [] - last_post_guid: 6be89b672dc335968c7897c15d67546c + last_post_language: "" + last_post_guid: b55fc72eb5822f6b6d5c1aa6bd6122d6 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-9ac81d33abbd50cc6dfbdd63fb990623.md b/content/discover/feed-9ac81d33abbd50cc6dfbdd63fb990623.md deleted file mode 100644 index e789b13e9..000000000 --- a/content/discover/feed-9ac81d33abbd50cc6dfbdd63fb990623.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Tim Bray -date: "1970-01-01T00:00:00Z" -description: Public posts from @timbray@cosocial.ca -params: - feedlink: https://cosocial.ca/@timbray.rss - feedtype: rss - feedid: 9ac81d33abbd50cc6dfbdd63fb990623 - websites: - https://cosocial.ca/@timbray: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/timbray: true - https://www.tbray.org/ongoing/: true - https://www.threads.net/@twbray: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9ad3cd115f2742edfe88a6787af20e00.md b/content/discover/feed-9ad3cd115f2742edfe88a6787af20e00.md new file mode 100644 index 000000000..7110553a3 --- /dev/null +++ b/content/discover/feed-9ad3cd115f2742edfe88a6787af20e00.md @@ -0,0 +1,45 @@ +--- +title: Comments for The Musings of Chris Samuel +date: "1970-01-01T00:00:00Z" +description: Computers, science, archaeology and other random burblings +params: + feedlink: https://www.csamuel.org/comments/feed + feedtype: rss + feedid: 9ad3cd115f2742edfe88a6787af20e00 + websites: + https://www.csamuel.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://www.csamuel.org/: true + last_post_title: Comment on Vale Dad by Chris Samuel + last_post_description: |- + In reply to Miss X. + + I'm afraid my name isn't Tom. + + For information on the documentary that's in development + last_post_date: "2018-07-06T13:47:32Z" + last_post_link: https://www.csamuel.org/2018/02/25/vale-dad/comment-page-1#comment-149009 + last_post_categories: [] + last_post_language: "" + last_post_guid: 0c05d5240d1f0751cb04d4ad60d722b2 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9ae803cf04a05259bd4d8d2ac1f5b73b.md b/content/discover/feed-9ae803cf04a05259bd4d8d2ac1f5b73b.md new file mode 100644 index 000000000..5422ae7c2 --- /dev/null +++ b/content/discover/feed-9ae803cf04a05259bd4d8d2ac1f5b73b.md @@ -0,0 +1,353 @@ +--- +title: Coder's Log +date: "2024-05-24T14:24:00-07:00" +description: Views and journeys of a hopeless programmer, named Zeeshan Ali Khan. +params: + feedlink: https://zee-nix.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 9ae803cf04a05259bd4d8d2ac1f5b73b + websites: + https://zee-nix.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - "0.10" + - "3.12" + - "3.2" + - "3.8" + - A Coruña. + - A-GPS + - A/V + - API + - ATM + - AV + - Aero-car + - Android + - Ansku + - Arc + - Automobile + - Automotive + - Berlin + - Boxes + - C + - C# + - C++ + - CV + - Cambridge + - Camera + - Canada + - Cancer + - Cellink + - Chalmers University + - Closures + - Clutter + - Coherence + - Collabora + - Comic + - Conference + - D-Bus + - DIDL-Lite + - DLNA + - DVB + - DVB Daemon + - Desktop Summit + - Developer experience + - Embedded Systems + - EuroKaution + - FOSDEM + - Fedora + - Finland + - Finnish + - Firefox + - Firefox OS + - Flatpak + - Forest + - Free Software + - Friends + - GDP + - GIO + - GIR + - GJS + - GNOME + - GNOME Foundation + - GNOME OS + - GNOME Shell + - GOPW + - GObject + - GPS + - GPSD + - GSSDP + - GSlice + - GSoC + - GStreamer + - GUADEC + - GUADEC 2012 + - GUPnP + - Garbage collection + - Geek + - Genivi + - Geoclue + - Germany + - Git + - Go + - Google + - Gothenburg + - Gtk + - Gtk+ + - Guile + - Helsinki + - Humor + - Huopalahti + - IGD + - IRC + - Istanbul + - Java + - JavaScript + - Jeff Waugh + - Job + - Jolla + - Jussi Kukkonen + - KDE + - KVM + - Karachi + - Karl-Lattimer + - Kinvolk + - LEGO + - Lassi + - Lennart + - Linux + - Lisp + - Logo + - London + - MAFW + - MLS + - MMORPG + - Maemo + - Maintainer + - Mango + - Maps + - Mark Shuttleworth + - Marriage + - MediaRenderer + - MediaServer + - Meego + - Memory Management + - Meritähti + - Mexico + - Microsoft + - Mindstorm + - Modem + - ModemManager + - Mom + - Mono + - Moonlight + - Move + - Mozilla + - Murray Cumming + - Mutex + - N81 + - N900 + - NMEA + - Network + - Network Light + - Nokia + - Nominatim + - OGG + - OHMan + - OPW + - OVF + - Open Source + - OpenStreetMap + - OpenWLANMap + - OpenedHand + - PPL(H) + - PS3 + - Party + - Pelagicore + - Pyhon + - Qemu + - Qt + - Quality + - Rant + - Rc + - Red Hat + - Reference counting + - Remote Access + - Rust + - Rygel + - SQLite + - SSDP + - Sampo + - Sauna + - Scheme + - Scripting + - Security + - Skiing + - South Park + - Spice + - Star trek + - Strasbourg + - Summer + - Sweden + - Swedish + - Thessaloniki + - Tools + - Transcoding + - UK + - UPnP + - USB + - Ubuntu + - Ubuntu phone + - VCS + - VNC + - Vacation + - Vala + - Valgrind + - Vodafone + - Windows 7 + - Windows XP + - WoW + - Xbox + - Xchat + - Z-LASIK + - Zaheer + - Zeeshan + - ZeroConf + - Zhaan + - agent + - async + - automated installation + - bank + - bazaar + - binding + - blog move + - bluetooth + - c't + - canon + - cats + - data + - debian + - depression + - device + - distro + - driving + - driving test + - encryption + - evolution + - exopc + - express installation + - filesystem + - flying + - foundation + - framework + - geocode-glib + - geocoding + - geoip + - geolocation + - gmail + - gnome-continuous + - gnome-system-monitor + - gnome-user-share + - gource + - gps-share + - gypsy + - hackfest + - hardware + - helicopters + - history + - hostel + - hotel + - introspection + - irssi + - italy + - kaisla + - libosinfo + - libsoup + - libvirt + - libvirt-glib + - life + - lifetimes + - location + - love + - malloc + - meme + - mollymalones + - mother + - moving in + - mpeg + - multimedia + - oFono + - operating system + - optimization + - ostikka + - performance + - pets + - pilot + - poo + - portability + - printer + - pulse-audio + - pygtk + - python + - release + - religion + - rover + - science + - screenshots + - segfault + - sh + - skills test + - snapshot + - sound server + - tablet + - talk + - theory + - threads + - thumbnails + - tracker + - video + - virt-manager + - virt-tools + - virtual machine + - virtualization + - visualization + - vorbis + - wedding + - wifi + - wifi-geolocation + - win32 + - windows + - winter + - xml + - zbus + relme: + https://zee-nix.blogspot.com/: true + last_post_title: zbus and Implementing Async Rust API + last_post_description: "" + last_post_date: "2021-02-21T09:38:36-08:00" + last_post_link: https://zee-nix.blogspot.com/2021/02/zbus-and-implementing-async-rust-api.html + last_post_categories: + - D-Bus + - Rust + - async + - zbus + last_post_language: "" + last_post_guid: cca792bb1bb8ac413b08f242d49299ae + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9afb1e1a7bc62f75ea7bdf1042440070.md b/content/discover/feed-9afb1e1a7bc62f75ea7bdf1042440070.md index 1cd7169db..feb5adb0e 100644 --- a/content/discover/feed-9afb1e1a7bc62f75ea7bdf1042440070.md +++ b/content/discover/feed-9afb1e1a7bc62f75ea7bdf1042440070.md @@ -14,23 +14,28 @@ params: - http://scripting.com/rssNightly.xml categories: [] relme: {} - last_post_title: Tips and Tricks for Bluesky Search - last_post_description: Let’s dive into all the tips and tricks for advanced Bluesky - search! - last_post_date: "2024-05-31T00:00:00Z" - last_post_link: https://bsky.social/about/blog/05-31-2024-search + last_post_title: Introducing Bluesky Starter Packs + last_post_description: Create a starter pack today — personalized invites that bring + friends directly into your slice of Bluesky. + last_post_date: "2024-06-26T00:00:00Z" + last_post_link: https://bsky.social/about/blog/06-26-2024-starter-packs last_post_categories: [] - last_post_guid: d4141eeeae25cfbb17a3267982b2b584 + last_post_language: "" + last_post_guid: 142f7e72735ef70bf9150e61645b3454 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 11 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-9b1b9edc91caf283629f9f3b7b907e35.md b/content/discover/feed-9b1b9edc91caf283629f9f3b7b907e35.md deleted file mode 100644 index c3d6accdf..000000000 --- a/content/discover/feed-9b1b9edc91caf283629f9f3b7b907e35.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Ísak -date: "1970-01-01T00:00:00Z" -description: Public posts from @isak@vivaldi.net -params: - feedlink: https://social.vivaldi.net/@isak.rss - feedtype: rss - feedid: 9b1b9edc91caf283629f9f3b7b907e35 - websites: - https://social.vivaldi.net/@isak: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://vivaldi.com/is/team: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9b2c2e593e8ad984874bfa9b13dddd7f.md b/content/discover/feed-9b2c2e593e8ad984874bfa9b13dddd7f.md deleted file mode 100644 index a5705bfca..000000000 --- a/content/discover/feed-9b2c2e593e8ad984874bfa9b13dddd7f.md +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: Planet – Felipe Contreras -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://felipec.wordpress.com/category/planet/feed/ - feedtype: rss - feedid: 9b2c2e593e8ad984874bfa9b13dddd7f - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Development - - Linux - - OpenSource - - Planet - - build - - xz - relme: {} - last_post_title: xz backdoor and autotools insanity - last_post_description: |- - I argue autotools' convoluted nature is what enabled the xz backdoor in the first place. - - The truth is nobody needs to use autotools, and I show why. - last_post_date: "2024-04-05T02:01:11Z" - last_post_link: https://felipec.wordpress.com/2024/04/04/xz-backdoor-and-autotools-insanity/ - last_post_categories: - - Development - - Linux - - OpenSource - - Planet - - build - - xz - last_post_guid: 69bd2740ff767de866cdf0bd257f3fe3 - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9b48ed1e5f5d9a0e7a2824713c49a5ec.md b/content/discover/feed-9b48ed1e5f5d9a0e7a2824713c49a5ec.md deleted file mode 100644 index 5b222a645..000000000 --- a/content/discover/feed-9b48ed1e5f5d9a0e7a2824713c49a5ec.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Comments for The Theoretical Diver -date: "1970-01-01T00:00:00Z" -description: Theorizing about scuba diving -params: - feedlink: https://thetheoreticaldiver.org/wordpress/index.php/comments/feed/ - feedtype: rss - feedid: 9b48ed1e5f5d9a0e7a2824713c49a5ec - websites: - https://thetheoreticaldiver.org/wordpress/: false - https://thetheoreticaldiver.org/wordpress/index.php/about-the-theoretical-diver/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: 'Comment on VPM-B: How to compute your deco by robert' - last_post_description: |- - In reply to Chris. - - Thanks for pointing this out. Unfortunatly, up to now, - last_post_date: "2024-05-28T09:08:15Z" - last_post_link: https://thetheoreticaldiver.org/wordpress/index.php/2017/11/02/vpm-b-how-to-compute-your-deco/#comment-19588 - last_post_categories: [] - last_post_guid: cd45f5fe61fa78e6c3f739eb3a5142e8 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9b4c3087d5577844627a796472abcb58.md b/content/discover/feed-9b4c3087d5577844627a796472abcb58.md deleted file mode 100644 index 6e4c89fbe..000000000 --- a/content/discover/feed-9b4c3087d5577844627a796472abcb58.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Emanuel Pina -date: "1970-01-01T00:00:00Z" -description: My last posts -params: - feedlink: https://emanuelpina.pt/feed - feedtype: rss - feedid: 9b4c3087d5577844627a796472abcb58 - websites: - https://emanuel.omg.lol/now/: false - https://emanuelpina.pt/: true - blogrolls: [] - recommended: [] - recommender: - - https://jlelse.blog/.min.rss - - https://jlelse.blog/.rss - - https://jlelse.blog/index.xml - categories: [] - relme: - https://social.lol/@emanuel: true - last_post_title: My May ‘24 in Review - last_post_description: |- - And just like that, another month is over! Here's a brief review. - Health - After almost six months of therapy, I feel that my mental health has improved considerably. I have a better understanding of - last_post_date: "2024-05-31T16:00:00Z" - last_post_link: https://emanuelpina.pt/posts/my-may-24-in-review - last_post_categories: [] - last_post_guid: c441adbb1519cede3c7fa723d73fae60 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 15 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9b5239ae1263fc556356b279e7e92b9b.md b/content/discover/feed-9b5239ae1263fc556356b279e7e92b9b.md new file mode 100644 index 000000000..b179b3939 --- /dev/null +++ b/content/discover/feed-9b5239ae1263fc556356b279e7e92b9b.md @@ -0,0 +1,45 @@ +--- +title: Benoit Langlois +date: "2024-02-06T20:24:28-08:00" +description: "" +params: + feedlink: https://blanglois.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 9b5239ae1263fc556356b279e7e92b9b + websites: + https://blanglois.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - eclipse + - egf + - emf + - generation chain + relme: + https://blanglois.blogspot.com/: true + https://www.blogger.com/profile/07648291610715878543: true + last_post_title: EGF at EclipseDay Paris 2011 + last_post_description: "" + last_post_date: "2011-11-09T23:04:20-08:00" + last_post_link: https://blanglois.blogspot.com/2011/11/egf-at-eclipseday-paris-2011.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 7ef4419ee57a119323c47cadde5eba85 + score_criteria: + cats: 4 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9b5a192533db0c4e93e0bbfa2c93d4a7.md b/content/discover/feed-9b5a192533db0c4e93e0bbfa2c93d4a7.md new file mode 100644 index 000000000..6cd88f6ab --- /dev/null +++ b/content/discover/feed-9b5a192533db0c4e93e0bbfa2c93d4a7.md @@ -0,0 +1,43 @@ +--- +title: Anthony Hunter's Tech Blog +date: "2024-03-08T06:56:26-08:00" +description: Anthony's blog for anything Tech, previously was anything Ubuntu... +params: + feedlink: https://ahunterhunter.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 9b5a192533db0c4e93e0bbfa2c93d4a7 + websites: + https://ahunterhunter.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://ahuntereclipse.blogspot.com/: true + https://ahunterhunter.blogspot.com/: true + https://kmhapeeweeconvenor.blogspot.com/: true + https://www.blogger.com/profile/03060102622123930690: true + last_post_title: Installing Google Chrome 64bit on Ubuntu Wily Werewolf + last_post_description: "" + last_post_date: "2016-03-04T15:39:00-08:00" + last_post_link: https://ahunterhunter.blogspot.com/2016/03/installing-google-chrome-64bit-on.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 79d134fdfc777430f7d09e39d843810f + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9b6c8decde98788a47efb06381ff5fcf.md b/content/discover/feed-9b6c8decde98788a47efb06381ff5fcf.md new file mode 100644 index 000000000..8d540f577 --- /dev/null +++ b/content/discover/feed-9b6c8decde98788a47efb06381ff5fcf.md @@ -0,0 +1,42 @@ +--- +title: A Curious Mind +date: "2024-03-04T22:42:34-08:00" +description: "" +params: + feedlink: https://guicorner.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 9b6c8decde98788a47efb06381ff5fcf + websites: + https://guicorner.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://ericoneclipse.blogspot.com/: true + https://guicorner.blogspot.com/: true + https://www.blogger.com/profile/12038539748479401991: true + last_post_title: What's this blogging thing anyhow ? + last_post_description: "" + last_post_date: "2011-01-11T12:44:07-08:00" + last_post_link: https://guicorner.blogspot.com/2011/01/whats-this-blogging-thing-anyhow.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 30ad585f31b4f519c7d6d9dc0ad97d9e + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9b7729ad1b280e382fcb3e25009eee01.md b/content/discover/feed-9b7729ad1b280e382fcb3e25009eee01.md new file mode 100644 index 000000000..674ed44e6 --- /dev/null +++ b/content/discover/feed-9b7729ad1b280e382fcb3e25009eee01.md @@ -0,0 +1,48 @@ +--- +title: ~ajroach42.com +date: "2024-05-24T13:22:39Z" +description: I'm Andrew. I write about the past and future of tech, music, media, + culture, art, and activism. This is my blog. +params: + feedlink: https://ajroach42.com/feed.xml + feedtype: atom + feedid: 9b7729ad1b280e382fcb3e25009eee01 + websites: + https://ajroach42.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - post + relme: {} + last_post_title: 'Community Software: Building The Future Inside The Rotting Husk + of The Past' + last_post_description: It’s amazing to me how we’re watching the tech world + fall apart at the feet of monetization, enshitifiction, AI, and whatever other + Bullshit trend they’re chasing this week. This + last_post_date: "2024-05-23T00:00:00Z" + last_post_link: http://ajroach42.com/community-software-building-the-future-inside-the-rotting-husk-of-the-past/ + last_post_categories: + - post + last_post_language: "" + last_post_guid: 0929459fd00945806fadf37d505e7448 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9b83ed4aa3358e18b82d20da784eba57.md b/content/discover/feed-9b83ed4aa3358e18b82d20da784eba57.md deleted file mode 100644 index a71277c5d..000000000 --- a/content/discover/feed-9b83ed4aa3358e18b82d20da784eba57.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Shared on this day -date: "1970-01-01T00:00:00Z" -description: Public posts from @shared@social.ericwbailey.website -params: - feedlink: https://social.ericwbailey.website/@shared.rss - feedtype: rss - feedid: 9b83ed4aa3358e18b82d20da784eba57 - websites: - https://social.ericwbailey.website/@shared: true - https://social.ericwbailey.website/@shared/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://buttondown.email/ericwbailey: false - https://ericwbailey.website/published/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9b91030d561fb86e48b8201b469dd058.md b/content/discover/feed-9b91030d561fb86e48b8201b469dd058.md index 151e60af7..118ba654d 100644 --- a/content/discover/feed-9b91030d561fb86e48b8201b469dd058.md +++ b/content/discover/feed-9b91030d561fb86e48b8201b469dd058.md @@ -11,26 +11,35 @@ params: recommended: [] recommender: - http://scripting.com/rss.xml + - http://scripting.com/rssNightly.xml categories: [] relme: {} - last_post_title: Can LLMs Provide References for Their Work? An Experiment - last_post_description: "Summary: We know that LLMs hallucinate. And we know that - we can overcome some of that problem with better prompts. But can LLMs provide - references for their work? I conducted an experiment.\n\n\n\n\n " - last_post_date: "2024-05-31T08:32:29-04:00" - last_post_link: https://www.windley.com/archives/2024/05/can_llms_provide_references_for_their_work_an_experiment.shtml + last_post_title: What Is Decentralized Identity? + last_post_description: |- + Summary: What is decentralized identity and why is it important? My attempt at a simple explanation. + + + + In Yeah, yeah, yeah, yeah, yeah, nah, Alan Mayo references my recent blog post, + last_post_date: "2024-06-25T08:28:28-04:00" + last_post_link: https://www.windley.com/archives/2024/06/what_is_decentralized_identity.shtml last_post_categories: [] - last_post_guid: a818e3abe8846638b762c1851ba35907 + last_post_language: "" + last_post_guid: 9ba15430bd1263e8f8221f03fe876660 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 11 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-9b980173ed2456314881e17a88c541a0.md b/content/discover/feed-9b980173ed2456314881e17a88c541a0.md index 19afa08e1..461115d27 100644 --- a/content/discover/feed-9b980173ed2456314881e17a88c541a0.md +++ b/content/discover/feed-9b980173ed2456314881e17a88c541a0.md @@ -1,6 +1,6 @@ --- title: CJ Eller -date: "2024-06-04T11:26:07Z" +date: "2024-07-09T03:06:23Z" description: Classical Guitar by Training, Cloud Engineer by Accident params: feedlink: https://blog.cjeller.site/feed/ @@ -19,17 +19,22 @@ params: last_post_date: "2022-11-02T00:25:44Z" last_post_link: https://blog.cjeller.site/being-the-cause-of-a-blog?pk_campaign=rss-feed last_post_categories: [] + last_post_language: "" last_post_guid: f4765a89a4a5765863bd19342ef136b7 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 11 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-9b9f583180c8a8e1e14458d4a8b0ab3e.md b/content/discover/feed-9b9f583180c8a8e1e14458d4a8b0ab3e.md new file mode 100644 index 000000000..b42d02c3a --- /dev/null +++ b/content/discover/feed-9b9f583180c8a8e1e14458d4a8b0ab3e.md @@ -0,0 +1,45 @@ +--- +title: think on the brink +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://think-on-the-brink.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 9b9f583180c8a8e1e14458d4a8b0ab3e + websites: + https://think-on-the-brink.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - eclipse + relme: + https://think-on-the-brink.blogspot.com/: true + https://www.blogger.com/profile/00607658376213561341: true + last_post_title: Cooking 2.0 + last_post_description: In my last post I proposed some refactorings on the current + implemention of the EMF Compare match engine and tried to explain (from my point + of view) the reasoning behind it. In this post I'll + last_post_date: "2010-08-10T17:22:00Z" + last_post_link: https://think-on-the-brink.blogspot.com/2010/08/cooking-20.html + last_post_categories: + - eclipse + last_post_language: "" + last_post_guid: 8f3d1062060904ce32ff16afdc614562 + score_criteria: + cats: 1 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 12 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9ba18077ae61aed942e35362039cd33b.md b/content/discover/feed-9ba18077ae61aed942e35362039cd33b.md new file mode 100644 index 000000000..7ed58ef06 --- /dev/null +++ b/content/discover/feed-9ba18077ae61aed942e35362039cd33b.md @@ -0,0 +1,43 @@ +--- +title: Caolán McNamara +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://caolanm.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 9ba18077ae61aed942e35362039cd33b + websites: + https://caolanm.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://caolanm.blogspot.com/: true + https://www.blogger.com/profile/01095733023264403205: true + last_post_title: coverity 2022.6.0 and LibreOffice + last_post_description: After a long slog since November when the previous version + of coverity was EOLed and we had to start using 2022.6.0 with its new suggestions + for std::move etc, LibreOffice is now finally back to a 0 + last_post_date: "2024-02-11T18:02:00Z" + last_post_link: https://caolanm.blogspot.com/2024/02/coverity-202260-and-libreoffice.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 83d880406fdc978cf344d0a332b75a0f + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9bbc5bc92ec7cc57881b180e9bbe703d.md b/content/discover/feed-9bbc5bc92ec7cc57881b180e9bbe703d.md deleted file mode 100644 index 419f4f7fb..000000000 --- a/content/discover/feed-9bbc5bc92ec7cc57881b180e9bbe703d.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Kevin Lee Drum -date: "1970-01-01T00:00:00Z" -description: Kevin Lee Drum -params: - feedlink: https://kld.dev/rss.xml - feedtype: rss - feedid: 9bbc5bc92ec7cc57881b180e9bbe703d - websites: - https://kld.dev/: true - blogrolls: [] - recommended: [] - recommender: - - https://ttntm.me/blog/feed.xml - - https://ttntm.me/everything.xml - - https://ttntm.me/likes/feed.xml - categories: [] - relme: - https://github.com/kevinleedrum: true - https://hachyderm.io/@kevinleedrum: true - https://linkedin.com/in/kevinleedrum: false - https://twitter.com/kevinleedrum: false - last_post_title: 'Writing a slot machine game: Reels' - last_post_description: This is the second article in a series about building a modern - five-reel slot machine game for the browser. - last_post_date: "2024-04-22T05:00:00Z" - last_post_link: https://kld.dev/slot-machine-2/ - last_post_categories: [] - last_post_guid: a31127f5424fb80b0addd3e0855b8573 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 15 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9be10d4c6c4af111d519eebc66074394.md b/content/discover/feed-9be10d4c6c4af111d519eebc66074394.md deleted file mode 100644 index dee871ccc..000000000 --- a/content/discover/feed-9be10d4c6c4af111d519eebc66074394.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Comments for Peter Rohde -date: "1970-01-01T00:00:00Z" -description: Quantum computer scientist & alpinist. -params: - feedlink: https://peterrohde.org/comments/feed/ - feedtype: rss - feedid: 9be10d4c6c4af111d519eebc66074394 - websites: - https://peterrohde.org/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on How do photonic Bell measurements work? by Michael Grimaila - last_post_description: Thank you for providing a very good explanation of this topic. - last_post_date: "2024-02-23T13:24:47Z" - last_post_link: https://peterrohde.org/how-do-photonic-bell-measurements-work/#comment-10565 - last_post_categories: [] - last_post_guid: 4d9470e3356165b1376b97fdfa56099b - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9be3d76c5ef93c36482d176169adb869.md b/content/discover/feed-9be3d76c5ef93c36482d176169adb869.md deleted file mode 100644 index 83e63a03d..000000000 --- a/content/discover/feed-9be3d76c5ef93c36482d176169adb869.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Blog on Tailscale -date: "1970-01-01T00:00:00Z" -description: Recent blog posts from Tailscale -params: - feedlink: https://tailscale.com/blog/index.xml - feedtype: rss - feedid: 9be3d76c5ef93c36482d176169adb869 - websites: - https://tailscale.com/: false - https://tailscale.com/blog/: true - https://tailscale.com/changelog/: false - https://tailscale.com/security-bulletins/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://hachyderm.io/@tailscale: false - last_post_title: Remotely access any system with a PiKVM and Tailscale - last_post_description: "What happens when you want to access your remote access - tool remotely? Tailscale, that's what! \nJoin Alex as he walks you through configuring - a PiKVM with Tailscale." - last_post_date: "2024-06-03T16:00:00Z" - last_post_link: https://tailscale.com/blog/remote-access-with-pikvm-and-tailscale - last_post_categories: [] - last_post_guid: 7aa56a9a6b0c072d7a1a552f7747b937 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9be4a09e7449bf7261e1ef5a316e129b.md b/content/discover/feed-9be4a09e7449bf7261e1ef5a316e129b.md new file mode 100644 index 000000000..b3a5cf858 --- /dev/null +++ b/content/discover/feed-9be4a09e7449bf7261e1ef5a316e129b.md @@ -0,0 +1,49 @@ +--- +title: 'Salvus: Distributed scalable online mathematical software' +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://salvusmath.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 9be4a09e7449bf7261e1ef5a316e129b + websites: + https://salvusmath.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://389a.blogspot.com/: true + https://sagemath.blogspot.com/: true + https://salvusmath.blogspot.com/: true + https://skate389.blogspot.com/: true + https://www.blogger.com/profile/09206974122359022797: true + last_post_title: The Architecture of Salvus (or, a bunch of my favorite programs) + last_post_description: |- + Components + + VPN : tinc, connects all computers at all sites into one unified network address space with secure communication + SSL : stunnel + Client : CoffeeScript + last_post_date: "2012-12-18T05:29:00Z" + last_post_link: https://salvusmath.blogspot.com/2012/12/the-architecture-of-salvus-or-bunch-of.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 4ce81fcf668db1c2a22df43a63d6c842 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9bf1896067c1d5e092a0f5d48d352bda.md b/content/discover/feed-9bf1896067c1d5e092a0f5d48d352bda.md new file mode 100644 index 000000000..e40c9fc94 --- /dev/null +++ b/content/discover/feed-9bf1896067c1d5e092a0f5d48d352bda.md @@ -0,0 +1,40 @@ +--- +title: ApOgEE Ubuntu +date: "2024-01-15T00:37:12-08:00" +description: "" +params: + feedlink: https://apogeeubuntu.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 9bf1896067c1d5e092a0f5d48d352bda + websites: + https://apogeeubuntu.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://apogeeubuntu.blogspot.com/: true + last_post_title: Mount Samba Shares using CLI on Ubuntu 10.04 LTS + last_post_description: "" + last_post_date: "2011-11-30T21:06:32-08:00" + last_post_link: https://apogeeubuntu.blogspot.com/2011/11/mount-samba-shares-using-cli-on-ubuntu.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 5b1e29f2f4c59ee3ef4b2979ff56bf0e + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9c130dbd99befc00f46c42ca130fa72e.md b/content/discover/feed-9c130dbd99befc00f46c42ca130fa72e.md deleted file mode 100644 index 285dbb972..000000000 --- a/content/discover/feed-9c130dbd99befc00f46c42ca130fa72e.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Matthew -date: "1970-01-01T00:00:00Z" -description: Public posts from @matthewhowell@indieweb.social -params: - feedlink: https://indieweb.social/@matthewhowell.rss - feedtype: rss - feedid: 9c130dbd99befc00f46c42ca130fa72e - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9c1637bf0dfa3b3d9eabf295872d649e.md b/content/discover/feed-9c1637bf0dfa3b3d9eabf295872d649e.md index fa3e60748..2b280207f 100644 --- a/content/discover/feed-9c1637bf0dfa3b3d9eabf295872d649e.md +++ b/content/discover/feed-9c1637bf0dfa3b3d9eabf295872d649e.md @@ -1,6 +1,6 @@ --- title: Vincent Ritter -date: "2024-06-04T14:03:52+02:00" +date: "2024-07-09T05:17:33+02:00" description: "" params: feedlink: https://vincentritter.com/feeds/all.rss @@ -12,31 +12,35 @@ params: blogrolls: [] recommended: [] recommender: - - https://www.manton.org/feed - https://www.manton.org/feed.xml - https://www.manton.org/podcast.xml categories: [] relme: - https://micro.blog/vincent: false - https://social.lol/@vincentritter: false - last_post_title: An introduction to Sublime Feed - last_post_description: It's my birthday this week (apparently I am turning 38 on - the 8th according to my calendar reminder — I never know my exact age), and June - is generally an awesome month, and so I am planning a few - last_post_date: "2024-06-03T12:36:00+02:00" - last_post_link: https://vincentritter.com/2024/06/03/an-introduction-to-sublime-feed + https://vincentritter.com/: true + last_post_title: Weeklog — July 5th, 2024 + last_post_description: |- + It's funny, every time I start writing these I have to open up my projects and go through what I actually was doing so that I can write these. + Scribbles + Not much of front-facing changes here this + last_post_date: "2024-07-05T16:01:00+02:00" + last_post_link: https://vincentritter.com/2024/07/05/weeklog-july-5th-2024 last_post_categories: [] - last_post_guid: 059107a53479ce4424cdc095a2ad4b25 + last_post_language: "" + last_post_guid: a84d856c267ce48d0505c76a9f16adea score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 11 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-9c16df8c345c68ceb36ca068cf6f032f.md b/content/discover/feed-9c16df8c345c68ceb36ca068cf6f032f.md index b7cf1d3bc..b7707288f 100644 --- a/content/discover/feed-9c16df8c345c68ceb36ca068cf6f032f.md +++ b/content/discover/feed-9c16df8c345c68ceb36ca068cf6f032f.md @@ -1,6 +1,6 @@ --- title: 'Tedium: The Dull Side of the Internet.' -date: "2024-06-04T07:31:15-04:00" +date: "2024-07-08T16:19:46-04:00" description: A twice-weekly newsletter that takes a deep-dive into the depths of the long tail. Our goal with Tedium? We're trying to reach the bottom. params: @@ -16,25 +16,33 @@ params: recommender: [] categories: [] relme: + https://erniesmith.net/: true + https://midrange.tedium.co/: true https://social.tedium.co/@tedium: true + https://tedium.co/: true https://writing.exchange/@ernie: true - last_post_title: The Bargain Bin Evolves - last_post_description: Thoughts on modern commerce from going to a bin store. It’s - a place where e-commerce returns go to die. - last_post_date: "2024-06-01T23:51:00-04:00" - last_post_link: https://feed.tedium.co/link/15204/16700690/daabin-bin-store-retail-ecommerce-returns + last_post_title: Mind The Pregap + last_post_description: 'Pondering the compatibility issues and complications of + a clever element of the audio CD hidden track boom: The before-album pregap.' + last_post_date: "2024-07-06T14:15:00-04:00" + last_post_link: https://feed.tedium.co/link/15204/16735828/compact-disc-pregap-history last_post_categories: [] - last_post_guid: 655fa7f9a60130bb4116e606696c5fb7 + last_post_language: "" + last_post_guid: 449a1b98c0e017c998503e820bda4b18 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 10 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-9c1864b368a1cc9faaf65796928d27ee.md b/content/discover/feed-9c1864b368a1cc9faaf65796928d27ee.md deleted file mode 100644 index 75f56250b..000000000 --- a/content/discover/feed-9c1864b368a1cc9faaf65796928d27ee.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Leon Paternoster -date: "1970-01-01T00:00:00Z" -description: Public posts from @leonp@fosstodon.org -params: - feedlink: https://fosstodon.org/@leonp.rss - feedtype: rss - feedid: 9c1864b368a1cc9faaf65796928d27ee - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9c2a722bace045682020b93a59da6df5.md b/content/discover/feed-9c2a722bace045682020b93a59da6df5.md index f36545ea2..a6fdcb5b0 100644 --- a/content/discover/feed-9c2a722bace045682020b93a59da6df5.md +++ b/content/discover/feed-9c2a722bace045682020b93a59da6df5.md @@ -14,7 +14,9 @@ params: - https://alexsci.com/blog/rss.xml categories: [] relme: + https://github.com/abstractvector: true https://mastodon.knight.fyi/@matt: true + https://www.mattknight.io/: true last_post_title: Why I migrated my website from Next.js to Eleventy last_post_description: Here's why I switched from Next.js to Eleventy, opting for a lightweight static site approach for my blog site. I describe the benefits, @@ -22,17 +24,22 @@ params: last_post_date: "2024-03-27T00:00:00Z" last_post_link: https://www.mattknight.io/blog/migrating-from-nextjs-to-eleventy last_post_categories: [] + last_post_language: "" last_post_guid: 716d1806f55cc2ea7b5b2e467ff6296d score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 19 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-9c578c9b339399beaab275bb41066c5e.md b/content/discover/feed-9c578c9b339399beaab275bb41066c5e.md new file mode 100644 index 000000000..1320f140c --- /dev/null +++ b/content/discover/feed-9c578c9b339399beaab275bb41066c5e.md @@ -0,0 +1,50 @@ +--- +title: Meta Redux +date: "2024-03-22T11:44:49Z" +description: Meta-x meta-redux +params: + feedlink: https://metaredux.com/feed.xml + feedtype: atom + feedid: 9c578c9b339399beaab275bb41066c5e + websites: + https://metaredux.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Prism + - RuboCop + - Ruby + - posts + relme: + https://metaredux.com/: true + last_post_title: RuboCop 1.62 Introduces (Experimental) Support for Prism + last_post_description: Recently I wrote that it was already possible to run RuboCop + with Ruby’s new Prism parser, but that required a bit of manual work. I also outlined + some plans to add built-in Prism support in + last_post_date: "2024-03-09T10:12:00Z" + last_post_link: https://metaredux.com/posts/2024/03/09/rubocop-1-62-introduces-experimental-support-for-prism.html + last_post_categories: + - Prism + - RuboCop + - Ruby + - posts + last_post_language: "" + last_post_guid: ad73aebc2b159428f91be731b7f88a2b + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9c6e41c7fcdd9ef922fc549dfb7d485a.md b/content/discover/feed-9c6e41c7fcdd9ef922fc549dfb7d485a.md deleted file mode 100644 index c2db0c37e..000000000 --- a/content/discover/feed-9c6e41c7fcdd9ef922fc549dfb7d485a.md +++ /dev/null @@ -1,10753 +0,0 @@ ---- -title: EV Grieve -date: "1970-01-01T00:00:00Z" -description: News about the East Village of NYC -params: - feedlink: https://evgrieve.com/feeds/posts/default?alt=rss - feedtype: rss - feedid: 9c6e41c7fcdd9ef922fc549dfb7d485a - websites: - https://evgrieve.com/: true - blogrolls: [] - recommended: [] - recommender: - - http://scripting.com/rss.xml - - http://scripting.com/rssNightly.xml - categories: - - East Village streetscenes - - Tompkins Square Park - - East Village - - EV Grieve Etc. - - Avenue A - - music videos - - new restaurants - - Week in Grieview - - St. Mark's Place - - the Bowery - - Avenue B - - street art - - Second Avenue - - East Village crime - - CB3 - - NYPD - - Fridays at 5 - - First Avenue - - RIP - - snow - - Avenue C - - Out and About in the East Village - - red-tailed hawks - - every Friday at 5 - - restaurant closings - - signs around the East Village - - Seventh Street - - graffiti - - concerts in Tompkins Square Park - - Astor Place - - Christmas trees - - Mars Bar - - Ray's Candy Store - - Stacie Joy - - pizza - - rats - - fire - - dogs - - March 26 explosion - - Lower East Side - - Citi Bikes - - murals - - for rent - - Halloween - - looking at old New York - - Urban Etiquette Signs - - trees - - Third Avenue - - 121 and 123 Second Ave. - - construction hell - - Union Square - - new development - - 7-Eleven - - COVID-19 - - East River Park - - Hurricane Sandy - - 14th Street - - Cooper Union - - NY See - - NYU - - St. Brigid's - - Ben Shaoul - - community gardens - - ads - - community spirit - - Coronavirus - - signs - - 51 Astor Place - - MTA - - closings 2020 - - sunset - - East Houston Street - - the apocalypse - - Gruber MacDougal - - closings 2019 - - filming around Tompkins Square Park - - P.S. 64 - - WTF - - New York Post - - 35 Cooper Square - - State Liquor Authority - - Superdive - - red-tailed hawk - - EV Grieve is high or something - - New York City streetscenes - - liquor licenses - - Citi Bike - - Christo and Dora - - Icon Realty - - excellent photography - - sinkholes - - PS 64 - - FDNY - - CBGB - - EVG Etc. - - restaurants that are now closed - - the Houston/Bowery Mural Wall - - EV Grieve -- covering the REALLY IMPORTANT NEWS since December 2007 - - Hurricane Irene - - crime - - Gem Spa - - 9th Precinct - - Christodora House - - East Village skyline - - Starbucks - - trash - - 13th Street - - Con Ed - - closings 2018 - - East 14th Street - - cats - - Financial District - - Craigslist - - East Village street scenes - - Films in Tompkins Square Park - - bike lanes - - East 10th Street - - The moon - - mom and pop shops continue to close - - Christo and Amelia - - La Plaza Cultural - - noise - - A visit to - - Cooper Square - - East Seventh Street - - red-tailed hawklets - - sunsets - - Cooper Square Hotel - - East Village nightlife - - MoRUS - - St. Mark's Church in-the-Bowery - - East Ninth Street - - the sunset - - Extra Place - - Key Food - - new bars - - the L train - - buildings for sale - - mystery lot - - rain - - DOH - - this really has nothing to do with the East Village - - Manhattan skyline - - East Village history - - Tompkins Square Park holiday tree - - East Side Coastal Resiliency Project - - Steve Croman - - Tompkins Square Library - - filming in New York City - - great bars - - rumors - - Chico - - Stuy Town - - Zoltar - - mysteries - - closings 2022 - - fliers - - street fairs - - 11th Street - - Avenue D - - ConEd - - closed for renovations - - East Village fires - - McSorley's - - 119 Second Ave. - - SantaCon - - closings 2023 - - 100 Avenue A - - 10th Street - - Gregg Singer - - Raphael Toledano - - '"closed for renovations"' - - bank branches everywhere - - protests - - East Village construction - - Joe Strummer - - The Marshal - - accidents - - filming around the East Village - - this has really nothing to do with the East Village - - Tompkins Square Park dog run - - Veselka - - the Ramones - - East Fifth Street - - Lucy's - - Ninth Street - - expensive homes - - City Cinemas Village East - - St. Mark's Bookshop - - clouds - - new restaurants sort of - - 12th Street - - East Sixth Street - - Houston Street - - MulchFest - - Shepard Fairey - - laundromats - - Duane Reade - - Thanksgiving - - Mary Help of Christians Catholic Church - - blizzard - - closings 2021 - - sunrise - - 3 St. Mark's Place - - David Schwimmer - - IHOP - - Peter Stuyvesant Post Office - - Rite Aid - - Santa - - St. Patrick's Day - - 500 E. 14th Street - - FroYo - - Sex and the City - - Theatre 80 - - Red Square - - Webster Hall - - curbside dining - - dessert - - East Second Street - - Maria Hrynenko - - Wall Street - - fall - - pigeons - - smoke shops - - the Bean - - Generation Bloomberg - - bike share - - film shoots in New York - - missing pets - - 331 East Sixth Street - - Howl Festival - - Sixth Street - - empty storefronts - - The Villager - - 347 Bowery - - Mayor Bloomberg - - Penistrator - - This is what - - Ukraine - - expensive condos - - nice houses - - sinkhole - - slow news day - - tech hub - - Anthology Film Archives - - baby hawks - - coffee - - squirrels - - B&H Dairy - - birds - - 1980s New York - - 200 Avenue A - - East Fourth Street - - dumpsters - - flea markets - - 1 St. Mark's Place - - Billy's Antiques - - Jared Kushner - - Lady GaGa - - sidewalk cafes - - street festivals - - Fulton Street - - Loisaida Festival - - Middle Collegiate Church - - Tompkins Square Bagels - - bars - - docking stations - - killing trees - - the sky - - 23 Third Ave. - - East Third Street - - Mary Help of Christians - - Odessa - - Valentine's Day - - Zum Schneider - - bikes - - lost and found - - the TSP Ratstravaganza - - Cooper Union Engineering Building - - Gallery Watch - - Landmark Sunshine Theater - - Sophie's - - Target - - Ukrainian Festival - - Verizon - - holidays - - humiliating teddy bears - - slow news day my ass - - Subway sandwich shops - - Twitter - - Upright Citizens Brigade - - holiday lights - - lost cats - - new buildings - - sidewalk bridges - - Basquiat - - DBGB - - Hells Angels - - July 4 - - Life Cafe - - No 7-Eleven - - Sex and the City ruined New York CIty - - Subway Sandwich Shop - - The New York Times - - economic collapse - - ping pong - - reader mail - - reader reports - - the Alamo - - 11-17 Second Avenue - - 250 E. Houston St. - - Amelia and Christo - - Bob Arihood - - Easter - - LUNGS - - Lucky Cheng's - - Ravi DeRossi - - hawks - - 112-120 E. 11th Street - - East River - - Lower East Side streetscenes - - Max Fish - - Nino's - - The New York City Marble Cemetery - - The Standard East Village - - gas stations - - 2 Cooper Square - - 37 St. Mark's Place - - Christmas in April - - Extell Development - - French things - - I Am a Rent-Stabilized Tenant - - L-train shutdown - - Le Souk - - The Grassroots Tavern - - Trader Joe's - - condos - - frozen yogurt - - ghost signage - - notes around the East Village - - rainbows - - storefronts - - storms - - the Mystery Lot - - toilets - - 421 E. Sixth St. - - 98-100 Avenue A - - Blarney Cove - - Howl! Happening - - New York City - - New York City Marble Cemetery - - Second Street - - 74-84 Third Avenue - - ATMs - - Christmas in March - - Church of the Nativity - - Donald Trump - - East Village weather - - Katz's - - Kmart - - L train - - Rosie Mendez - - Sin Sin - - bubble tea - - fireworks - - mannequins - - one yogurt shop for every two people who live in New York - - store closings - - 128 Second Ave. - - 7B - - Chase - - First Street - - LinkNYC - - Mikey Likes It - - Mount Sinai Beth Israel - - bicycles - - collisions - - development site - - moons - - skateboarding - - Astor Place reconstruction - - BMW Guggenheim Lab - - Eighth Street - - Essex Card Shop - - Landmarks Preservation Commission - - Love Saves the Day - - New York Times - - President Trump - - Sidewalk Cafe - - cannabis - - dumb ads - - for sale - - models - - psychics - - pub crawls - - 9/11 - - BP - - East First Street - - Fourth Avenue - - Iggy Pop - - King Bloomberg - - Manhattanhenge - - McDonald's - - Mosaic Man - - Smurfs - - Sunshine Cinema - - Third Street - - demolition - - pianos - - sidewalks - - spending too much time on YouTube - - 14th Street fire - - 7A - - Broadway - - Charlie Parker - - Christmas in May - - DeRobertis Pasticceria and Caffe - - East 12th Street - - East Village fire - - East Village sunrise - - Hitchcocktober - - Joey Ramone - - John Penley - - John Varvatos - - Keith Haring - - Theater for the New City - - dicks - - rumormongering - - spring - - summer streets - - very large cranes - - 123 Third Avenue - - 438 E. 12th St. - - Cabrini Center for Nursing and Rehabilitation - - Coney Island - - Fifth Street - - Kita the Wonder Dog of East 10th Street - - Nevada Smith's - - New York City crime - - Odessa Cafe and Bar - - The Clash - - The Village Voice - - Village View - - bank branches - - closings 2024 - - filming in New York - - high rents - - holiday trees - - peter radley - - the Copper Building - - the East Village - - 4 St. Mark's Place - - Coyote Ugly - - Death Star - - EV Grieve has lost his mind - - EV Lambo - - East 13th Street - - Felton Davis - - Films on the Green - - Merchant's House - - New York Yankees - - New York magazine - - The Jefferson - - Tompkins Square Library branch - - art - - books - - buses - - the IBM Watson building - - the cube - - the recession - - thrift stores - - 196 Orchard St. - - 20 St. Mark's Place - - 34 Avenue A - - 360 Bowery - - Aces and Eights - - Art Around the Park - - Bowery - - Dallas BBQ - - East 11th Street - - East Village restaurant news - - Fourth Steet - - L-train - - LeSouk - - Moxy Hotels - - Niagara - - Stage Restaurant - - Times Square - - Yankee Stadium - - bagels - - block parties - - cabs - - expensive cars - - lines - - listicles - - the Odessa - - 11 Avenue C - - 24 First Ave. - - 240 Houston - - 644 E. 14th St. - - 6th and B Garden - - 75 First Avenue - - Amato Opera - - Associated - - Astor Place cube - - Bowery Poetry Club - - George Floyd - - Halloween Dog Parade - - Lou Reed - - Lower East Side Girls Club - - NYCHA - - Peter M. Brant - - Streecha Ukrainian Kitchen - - The Church of the Most Holy Redeemer - - Tompkins Square Greenmarket - - Vazac's - - cut-and-paste journalism - - flyers - - hamburgers - - local record stores - - reader report - - relief efforts - - the Stage - - 171 Avenue A - - 21 E. First St. - - 24 Second Ave. - - 6 Avenue B - - Allen Ginsberg - - Artichoke - - Black Lives Matter - - Drag March - - EV Grieve is leaving notes from EV Grieve - - Holiday Cocktail Lounge - - Jesus - - Q-and-A - - SLA - - St. Brigid School - - Tompkins Square Park playground - - beer - - christmas in New York - - everything is about the Penistrator now - - famous people from Yonkers - - manholes - - mattresses - - recession - - smoke shop - - stuffed animals - - travelers - - 154 Second Avenue - - 1970s New York - - 55 Third Avenue - - B Bar & Grill - - Billy Leroy - - Carlina Rivera - - Cromanated - - EV Grieve is now taking photos of the sky - - East Village real estate - - Graceland - - Madonna - - Momofuku - - New York CIty weather - - New York Sports Clubs - - Stomp - - TV shows that I will never watch - - The Continental - - balloons - - bedbugs - - construction watch - - crusties - - delis - - gas - - high rents in New York City - - restaurants that may possibly be closed now - - shitshows - - the L-train - - 75 First Ave. - - CHARAS - - Christmas in June - - Dunkin Donuts - - E2E4 - - M15 - - Nicholas Figueroa - - Occupy Wall Street - - Otto's Shrunken Head - - Page Six Magazine - - President Obama - - Subway - - Sunburnt Cow - - Trash and Vaudeville - - Village East Cinema - - asylum seekers - - butts - - cars of the East Village - - dog poop - - mulch - - open streets - - parking - - summer - - too many condos - - 190 Bowery - - 200 E. Sixth Street - - 438 E. 14th St. - - 98 Avenue A - - Centre-fuge - - Deitch Wall - - EV Grieve will post anything - - Financial District streetscenes - - HOWL - - Hyatt Union Square - - Jimmy McMillan - - Ludlow Street - - Manitoba's - - Mary Help of Christians Church - - New York history - - Record Store Day - - Robin Raj - - San Loco - - Steiner East Village - - Superiority Burger - - The Brant Foundation Art Study Center - - University Place - - dead trees - - dorms - - heatwave - - historic Willow trees - - new stores - - on the Bowery - - penthouses - - pigs - - pumpkins - - ramen - - summer in the city - - 16 Handles - - 52 E. Fourth Street - - Bloom 62 - - Christmas - - Ciao for Now - - Community Board 3 - - Diablo Royale Este - - East Village Farm and Grocery - - East Village Radio - - Empire Biscuit - - Japadog - - Jerry Delakas - - John's of 12th Street - - Kim's Video - - LES Jewels - - Moxy East Village - - S'MAC - - Two Boots Pizza - - Yaffa Cafe - - bad weather - - chain stores - - dba - - fog - - gentrification - - hookah bars - - ice - - winter 2017 - - winter weather - - 147 First Ave. - - 185-193 Avenue B - - 20 Avenue A - - 350 E. Houston St. - - 432-438 14th St. - - 52E4 - - 7th Street - - Bleecker Bob's - - Blizzard 2015 - - Bowlmor Lanes - - C&B - - Chipotle Mexican Grill - - Christmas in July - - Croxley Ales - - David Bowie - - Dive bars - - Douglas Steiner - - Dunkin' Donuts - - East Village Vintage Collective - - Engine 28 and Ladder 11 - - First Street Green Art Park - - Great Jones Cafe - - Karl Fischer - - Kenny Scharf - - Mobil - - Moishe's Bake Shop - - Mondo Kim's - - Pee Phone - - Pinc Louds - - President Bloomberg - - Richard Hell - - Scott Stringer - - Shake Shack - - Sidewalk Bar and Restaurant - - The Bowery Mission - - The Neighborhood School - - Time Out New York - - Trinity Lower East Side Lutheran Parish - - Westminster - - Zero Irving - - artists can't afford to live in the East Village - - bank robberies - - coffee shops - - free things - - great bars that are now closed - - missing people - - movies that we will never see - - nail salons - - now and then - - sink holes - - stretch limos - - voting - - 118 E. First St. - - 145 Avenue A - - 167 Avenue A - - 2 Bros. Pizza - - 316-318 E. Third St. - - 326-328 E. Fourth St. - - 415 E. Sixth St. - - 444 E. 13th St. - - 45 E. 7th St. - - 99-101 E. Second St. - - ABC No Rio - - Banksy - - Beastie Boys - - Benny's Burritos - - Butter Lane - - Caffe Bene - - Cemusa - - Clinton Street - - DanceFest - - Economakis - - Hop Devil Grill - - IHOP Way - - International Bar - - James and Karla Murray - - Lower Eastside Girls Club - - M14A - - Mount Sinai Downtown Beth Israel - - New York weather - - Orpheum Theatre - - Papa John's - - Papaya King - - Peels - - Peter Brant - - Prune - - Ramy Isaac - - Salvation Army - - Scoopy - - Sushi Lounge - - TF - - The Earth School - - The Sock Man - - The Wayland - - Union Square Tech Training Center - - Veselka Bowery - - Via Della Pace - - Walter De Maria - - Whole Earth Bakery and Kitchen - - World Cup - - brunch - - cupcakes - - election 2008 - - flea market - - free ads - - icons - - landlords - - lost dogs - - noise complaints - - package thief - - plywood - - slow news weekend - - small businesses - - summer storms - - tacos - - too many high rises - - wind - - 2018 store closing - - 31-33 Second Avenue - - 42-46 Second Ave. - - 50-58 East Third Street - - 770 Broadway - - 94-96 Avenue A - - 99-cent pizza - - Avalon Bowery Place - - Big Belly - - Big Gay Ice Cream - - Blarney Stone - - Book Club - - Campos Plaza - - First Park - - Google maps - - Michael Sean Edwards - - Most Holy Redeemer and Nativity Church - - Nicoletta - - Ricky's - - The Bowery Market - - Village East by Angelika - - billboards - - cyclists - - fires - - new coffee shop - - nice homes - - notes - - oops - - outdoor dining - - porta-potties - - posts that I never got around to posting - - starting rumors - - the 13th Step - - the economy - - tourists - - trash cans - - 14th @ Irving - - 170-174 E. Second St. - - 315 E. 10th St. - - 36 St. Mark's Place - - 71 Fourth Avenue - - 89 First Ave. - - 9th Street Espresso - - Ageloff Towers - - Andre Balazs - - Andy Warhol - - Blondie - - Bloomberg - - Bowery Wine Company - - Boys' Club of New York - - C-Squat - - Charlie Parker Jazz Festival - - Con Ed plant - - ConEd substation - - Cookie Walk - - Cooper Square Committee - - East Village institutions - - Eats Village streetscenes - - Essex Street - - Giuseppi Logan - - Gossip Girl - - Greenwich Village Society for Historic Preservation - - Hare Krishna tree - - HiFi - - J. Baczynsky's East Village Meat Market - - Jupiter 21 - - Kate's Joint - - La Salle - - Mayor de Blasio - - Metrograph - - Most Holy Redeemer - - New York in the movies - - New York streetscenes - - Nexus Building Development Group - - Nice Guy Eddie's - - OTBs - - One World Trade Center - - Other Music - - Pangea - - Performance Space New York - - Pride and Joy BBQ - - Rent - - St. Brigid-St. Emeric - - St. Dymphna's - - St. Stanislaus - - Stuyvesant Street - - Super Bowl - - The Cock - - Trailer Park Santa - - bad movies we love - - bears - - boobs - - doomed locations - - double rainbows - - excuse for a gratuitous photo - - lawsuits - - rent hikes - - rentals - - shootings - - sidewalk bridge - - sidewalk sheds - - signage - - sky over the East Village - - the Museum of Reclaimed Urban Space - - trends - - 110 Third Ave. - - 132 Fourth Avenue - - 137 Avenue C - - 174-176 First Ave. - - 175 Avenue B - - 200 E. 11th St. - - 205 Avenue A - - 255 E. Houston St. - - 280 E. Houston St. - - 334 Bowery - - 45 Rivington St. - - 5 Napkin Burger - - 515 E. Fifth St. - - 524 E. 14th St. - - 605 E. Ninth St. - - 79-89 Avenue D - - 84 Second Ave. - - A Building - - Angelina Jolie - - Bar 82 - - Black Seed - - Blizzard16 - - CVS - - Christmas in August - - Christo - - Croman Realty - - Debbie Harry - - EV Grieve is rooting through trash - - East Second Street. East Village streetscenes - - East Side Community School - - East Village restaurants - - Eric Pagan - - Good Friday - - Gov. Cuomo - - Immaculate Conception Church - - Jacob Riis Houses - - James Bond - - Jimmy Webb - - John Legend - - Law and Order - - Luke's Lobster - - M14 - - NYU dorms - - Nexus Flea - - Nicky's - - Os Gêmeos - - Parkside Lounge - - Punjabi Grocery & Deli - - SantaCon 2013 - - Something Sweet - - Sweet Generation - - Swiss Institute - - Tompkins Square Park riots - - Two Boots Pioneer Theater - - Union Market - - Village Green - - Washington Square Park - - Wegmans - - affordable housing - - bars that are now closed - - fire hydrants - - garbage - - gourmet delis - - ice cream - - leaves - - snowmen - - stretch Hummers - - swimming pools - - the Beastie Boys - - the Coen Brothers - - the bad old days - - the richies - - weed - - 117 Second Ave. - - 12C Outdoor Art Gallery - - 26 Avenue B - - 47 E. Third St. - - 64 E. First St. - - Airbnb - - Anthony Bourdain - - Bao - - Ben's Deli - - Bill De Blasio - - Billy Hurricane's - - Boris and Horton - - Brookhill Properties - - Caffe Buon Gusto - - Citizen app - - Congregation Mezritch Synagogue - - DOB - - Delancey Street - - EV Grieve is now posting photos of squirrels - - EV Loves NYC - - East Village Cheese Shop - - Ess-A-Bagel - - Exit9 - - Fillmore East - - Flea Market Cafe - - GG's - - Hearth - - Hot Kitchen - - Irving Plaza - - Joe's Bar - - John Street - - Kiehl's - - Kiss - - Kurve - - La Mama - - La Vie - - Lightstone Group - - Luca Bar - - Mermaid Inn - - Metropolis - - Nassau Street - - New Year's Eve - - New York Marble Cemetery - - Now I'm just being stupid - - Paul Kostabi - - Permanent Brunch - - Pyramid Club - - South Street Seaport - - Star Wars - - Steiner Town - - The Children's Workshop School - - Whole Foods Bowery - - an appreciation - - barf - - bed bugs - - brown paint - - crime scene - - dangerous intersections - - don't fuck with 12th Street - - dry cleaners - - everything is expensive - - great storefronts - - hijinks - - local bands - - more room for condos - - new business - - opossum - - restaurants - - scams - - shit you can't make up - - spring cleaning - - stolen bicycles - - the East Fifth St. Tree Committee - - the sun - - vans - - wisteria - - $1 pizza - - 114 Third Ave. - - 139 E. Houston St. - - 188 First Ave. - - 211 E. 13th St. - - 215 Avenue B - - 222 E. 13th Street - - 253 E. Seventh St. - - 2A - - 327 E. Ninth St. - - 38-48 Second Ave. - - 47 E. 3rd St. - - 50 Avenue A - - 57 Great Jones St. - - 787 Coffee - - Agata Olek - - Alphabet Plaza - - Anton van Dalen - - Bond Street - - Bowery Mural Wall - - Brick Lane Curry - - CBGB movie - - Cienfuegos - - DF Mavens - - EV Grieve is now posting photos of rainbows - - EVGB - - East Eighth Street - - Emmy Squared - - Foot Gear Plus - - Foxface - - Google - - Icicle Audi - - John Holmstrom - - Karaoke - - Kim's - - L-train slowdown - - Lit Lounge - - Loews Village 7 - - Maiden Lane - - Midtown - - Mona's - - Morrison Hotel - - New York Mets - - O'Flaherty's - - PS 122 - - Page Six - - Popeyes - - Prince - - Pulino's Bar and Pizzeria - - Rev. Billy - - Russian Doll - - Second Avenue Star Watchers - - Sonic Youth - - Ten Thousand Saints - - The Telephone Bar - - Tonda - - Unsilent Night - - Village Pourhouse - - Whole Foods - - Wylie Dufresne - - Zips - - art exhibits - - book stores - - chairs - - cool cats - - crowdfunding - - dead things - - empty lots - - fruit vendor - - gyms - - hipsters - - milling and pavement - - movie posters - - music videos we really like - - reader comments - - summer 2013 - - the Con Ed plant - - the Novogratz family - - the Rolling Stones - - the sunrise - - toilet humor - - trends we didn't need to read about - - water main breaks - - why am i in this neighborhood - - winter 2018 - - woo - - wretched excess - - yuppie scum - - 110 University Place - - 14 Second Ave. - - 157 Second Ave. - - 219 First Avenue - - 277 E. Seventh St. - - 28 Avenue A - - 2x4 - - 3rd & B’Zaar - - 6 and B Garden - - 6BC Botanical Garden - - 97 Second Ave. - - 98 Bowery - - 9th St. Bakery - - Alder - - Angel's Share - - Angels and Kings - - Boukiés - - Bush Tetras - - Cafe Orlin - - Cafe Pick Me Up - - Casa Adela - - Christmas 2014 - - Crazy Landlord - - Duane Reade by Walgreens - - East Fifth Street Block Association - - East Village Community Coalition - - East Village accidents - - East Village bars - - Eddie Boros - - Evolution - - F train - - Green Oasis Community Garden - - Jean-Michel Basquiat - - Jennifer's Way Bakery - - Jeremiah's Vanishing New York - - Life on Mars - - Little Poland - - Madison Realty Capital - - Mercadito Cantina - - Moises Ismael Locón Yac - - Mono + Mono - - Native Bean - - Nevada Smiths - - New Order - - New York City parks - - Orpheum - - Ottendorfer Library - - P.C. Richard - - Panda Express - - Physical Graffiti - - Punjabi Grocery and Deli - - Quad Cinema - - Rent Guidelines Board - - Salt - - Sandy - - SantaCon 2015 - - Social Tees - - South Brooklyn Pizza - - St. Denis Hotel - - Stuyvesant Grocery - - The Juice Press - - Thirteen East + West - - Veniero's - - Westside Market - - Whitehouse - - Winter Friday Flashback - - air conditioners - - anniversaries - - arrests in Tompkins Square Park - - bars that had a lot of names - - bendy tree - - cars - - cool - - cops - - cycling - - dioramas - - drinking - - flowers - - flurries - - food carts - - hot dogs - - lightning - - lost pets - - pets - - poop - - street signs - - stupid ads - - the International - - the New York Dolls - - the Strand - - urban etiquette - - vandalism - - 100 Third Avenue - - 141 E. Houston St. - - 193 Avenue B - - 2 Bros. - - 227 Seventh St. - - 298 E. Second St. - - 319 Bowery - - 32 Avenue C - - 397-401 E. Eighth St. - - 532 E. Fifth St. - - Adam Purple - - Alex Stupak - - Arcane - - August Laura - - Benny's - - Block Drugs - - Blockbuster - - Bluestockings - - Boardwalk Empire - - Bounce Deuce - - Brook Hill Properties - - Build the Block - - Bullet Space - - CBD - - Chinatown - - Chloe Sevigny - - Christmas in February - - Christopher Gamble - - Citibank - - Curt Hoppe - - Delancey - - EVIMA - - East Fifth Bliss - - East Houston Reconstruction Project - - East Village Loves Queens - - East Village sinkholes - - Essex Crossing - - FABnyc - - Film Forum - - Forbidden City - - GVSHP - - Germans - - Grassroots Tavern - - Great Jones - - Grieve goes to the movies - - Heathers - - Howl 2009 - - Joey Pepperoni - - Johnny Thunders - - Lakeside Lounge - - Lamborghini - - Lanza's - - Lower East Side (LES) History Month - - Mamoun's - - Marc H. Miller - - Mary Ann's - - Meatball Factory - - Mighty Quinn's - - Moby - - Neptune - - New Colossus Festival - - Obscura Antiques and Oddities - - Papaya Dog - - Patricia Field - - Polonia - - Robert Pattinson - - Russ and Daughters - - Russo's - - Santa Claus - - SantaCon 2014 - - SantaCon 2016 - - Sixth Street Community Center - - Sock Man - - St. Mark's Market - - Suffolk Street - - Sunny and Annie's - - Sunny's - - TATS CRU - - TV shoots - - Taco Bell - - Thai - - The Charles - - The Pyramid Club - - The Redhead - - The Wild Son - - Thunder Blizzard - - Tompkins Square Park basketball courts - - UFOs - - Village Preservation - - art galleries - - autumn in new york - - bees - - bus shelters - - couches - - crows - - curbed - - documentaries - - east village icons - - election 2016 - - expensive things - - fights - - food trucks - - good news - - grocery stores - - gut renovations - - local music - - marijuana - - masks - - motorcycles - - moving - - real estate in Manhattan - - rooftop ragers - - stickers - - the East Coast Resiliency Project - - the Living Room - - things that we like - - tower of toys - - tragedies - - tree pit - - vape - - water main break - - you always take photos of cranes - - 120 St. Mark's Place - - 131 Avenue A - - 14-16 Avenue B - - 14th Street busway - - 23 St. Mark's Place - - 238-240 E. Third St. - - 264 E. Seventh St. - - 300 Lafayette - - 313 Bowery - - 321 E. Third St. - - 33-37 1st Ave. - - 331 E. Houston St. - - 340 Bowery - - 3rd & B'zaar - - 538 E. 14th St. - - 699 E. Sixth St. - - 77 E. Third St. - - Ada Calhoun - - Ariel Palitz - - Art on A Gallery - - B Bar - - Babu Ji - - Bad Burger - - Banjo Jim's - - Bar Veloce - - Barnyard Cheese Shop - - Birdbath Bakery - - Black Market - - Blank Street - - Bowery Electric - - Brant Foundation - - C&B Cafe - - Cafe Hanover - - Cafe Rakka - - Cake Shop - - Caracas Arepa Bar - - Christmas 2013 - - Christmas 2015 - - Christmas in October - - ConEd plant - - Cucina Di Pesce - - Dahlia's - - DeathStar - - Dee Dee Ramone - - Derek Berg - - Downtown Auto - - Dress Shoppe II - - EV Grieve - - EVGrieve Etc. - - East Houston - - East Village Cheese - - East Village Eye - - East Village Organic - - East Village Tavern - - East Village development - - East Village streeetscenes - - El Jardín del Paraíso - - Essex Street Market - - Exit 9 - - Films in Tompkins Park - - First Avenue Pierogi and Deli - - First Avenue bike lanes - - Fontana Shoes - - Fourth Street - - Fu Sushi - - Funkiberry - - Goat Town - - Goldmark Property Management - - Gothamist - - H Mart - - HDFCs - - Happy New Year - - Hello Mary - - Ink on A - - Jim Power - - KFC - - Kembra Pfahler - - Kushnerville - - Lafayette Street - - Law & Order - - Lower East Side nightlife - - Mee Noodle Shop - - Mercadito - - Met Foods - - Michael Jackson - - Mikey's Pet Shop - - Moonstruck Diner - - New York CIty subway - - Niagra - - Northern Spy - - Nuyorican Poets Café - - Open Road Park - - Out East - - Patti Smith - - Phil Kline - - Pinkberry - - Rainbow Music - - Ralph’s Famous Italian Ices - - Rivington House - - SBS - - Schnitz - - Sing for Hope - - Spice - - Suicide - - The Ainsworth - - The Cramps - - The March Hare - - The New Museum - - Tompkins Square Halloween Dog Parade - - Tompkins Square Park field house - - Tree Riders - - Tribeca Film Festival - - Tuome - - Under St. Marks - - Virgin Megastore - - Yippie Cafe - - Zaragoza - - animals - - apartment rentals - - bikinis - - blood - - canopies - - car accidents - - celebrity homes - - chickens - - city pools - - cold weather - - community fridge - - development sites - - free shit - - garbage trucks - - good bars - - guy looking for girlfriend - - helicopters - - hot chicks - - milling - - mural - - music history - - newsstands - - night mayor - - party buses - - pride - - rallies - - rent stabilization - - scaffolding - - sink hole - - smoothies - - snowstorm - - stolen bikes - - street fair - - summer 2014 - - sushi - - teneleven - - the Cadillac with the Tiger in it - - the Shadow - - the creepy guy with a camera - - unhoused - - vomit - - water mains - - wheatpaste - - year in review - - yuppies - - 10 Bond Street - - 12 St. Mark's Place - - 120 First Ave. - - 123 E. 10th Street - - 130 E. 7th St. - - 15 Avenue A - - 165 Avenue B - - 222 E. Seventh Street - - 269 E. Houston St. - - 316 Bowery - - 32 E. First St. - - 324 E. 4th Street - - 372 Lafayette - - 442 E. 13th St. - - 47-53 Third Avenue - - 48 E. Seventh St. - - 500 E. 11th St. - - 58 St. Mark's Place - - 6 St. Mark's Place - - 699 E. 6th St. - - 76 E. Houston St. - - 827 Broadway - - 9300 Realty - - Abraco - - Academy Records - - Alamo - - Anarchy Row - - Aqueduct Racetrack - - Astor Place Greenmarket - - Baker Falls - - Bali Kitchen - - Banjara - - Bareburger - - Bikes by George - - Blank Street coffee - - Blink - - Blizzard of the Feb. 8 - - Boca Chica - - Butcher Bay - - CSA - - Cafe Himalaya - - Casimir - - Catholics - - Checkers - - Christmas lights - - Civic Hall - - Commodities - - Crif Dogs - - Davey's Ice Cream - - David Peel - - Desi Galli - - Donald Suggs - - Earth Day - - East Village Community Fridge - - East Village Farms - - Eleventh and Third - - Elvis Guesthouse - - Empanada Mama - - Empellon Cocina - - Eros - - FDR - - Facebook - - Fall Friday Flashback - - Federal Hall - - Finnerty's - - Flaco - - Frank Ape - - Gaia Italian Cafe - - Gelarto - - Instagram - - J Crew - - Jane's Sweet Buns - - JoeDough - - Jonas - - Jonas Mekas - - Kati Roll Company - - Keith McNally - - Klean and Kleaner - - Labor Day weekend - - Lafayette - - Le Sia - - Liquiteria - - Little Tong Noodle Shop - - Loisaida Open Streets - - MUD Coffee - - Mama's Food Shop - - Mariana Bracetti Plaza - - Martina - - Michael "Bao" Huynh - - Miss Lily's 7A Cafe - - Mother's Day - - Mudspot Café - - NYPress - - Naked New Yorkers - - New York City nightlife - - New York Daily News - - Nick Tosches - - Ninth Avenue - - No Wave - - Nolita - - Open Pantry - - Printed Matter/St. Mark’s - - RBG - - Regal Union Square 14 - - Rent is too Damn High - - Riis Houses - - Root and Bone - - Rosario Dawson - - Saifee Hardware - - Samuel S. Cox - - Sarah Jessica Parker - - SoHo - - St. Mark's Comics - - Step Up - - Supper - - Thai Direct - - The 101 Condominium - - The Adele - - The Bourgeois Pig - - The Damned - - The Kitchen Sink - - The New Yorker - - The Stand - - Tom Cruise - - Tuck Shop - - Turntable Lab - - Van Da - - Village East Cinemas - - Wagamama - - Wall Street Journal - - Water Street - - Williamsburg - - Williamsburg Bridge - - Winter 2020 - - Xoom Juice - - awnings - - beating a horse that is really dead - - being depressing - - benches - - bus lanes - - cabin fever - - chain stores are everywhere - - cheap pizza - - closures 2022 - - condoplexes - - copyright violations - - drunk Santas - - dumplings - - eggs - - expensive rentals - - fancy cocktails - - funny signs - - gelato - - good signs - - holiday weekends - - idiots - - limos - - missing bird - - nests - - new developments - - pee - - preserving old New York - - reader requests - - remembering - - retail - - rhinos - - seizures - - sensitive headlines - - sidewalk sales - - skeletons - - slacktivists - - small business - - spas - - teddy bears - - the A Building - - the East Side Coastal Resiliency Project - - the Pyramid - - the Voluptuous Horror of Karen Black - - there goes the neighborhood again and again - - toilet paper - - too lazy for flickr - - umbrellas - - weather - - window displays - - '''MericaNYC' - - 104 E. 10th St. - - 118-120 E. Fourth St. - - 13 Portals - - 131 First Ave. - - 14 Avenue B - - 180 2nd Ave. - - 186-188 First Ave. - - 189 Avenue C - - 189 E. 7th St. - - 197 E. Third St. - - "1984" - - 212 E. 14th St. - - 21E12 - - 287 E. Houston St. - - 330 Bowery - - 356 E. Eighth St. - - 3rd & B’Zaar Holiday Market - - 427 E. 12th St. - - 436 E. 13th St. - - 57 Second Ave. - - 58-72 Avenue A - - 650 E. Sixth St. - - 67 Avenue C - - 688 Broadway - - 799 Broadway - - 80 E. 10th St. - - 80 St. Mark's Place - - 86 E. Fourth St. - - 95 Avenue A - - ': East Village streetscenes' - - A Gathering of Tribes - - A Repeat Performance - - Adinah's Farm - - Albert's Garden - - AlphaBet Cafe - - American Apparel - - American Felt Building - - Apartment 13 - - Arabella 101 - - Archie and Sons - - Australian Homemade - - B-Side - - BARA - - Bagel Boss - - Bait & Hook - - Bank of America - - Barcade - - Barnyard - - Basics Plus - - Bea Arthur - - Blessing of the Animals - - Bloomberg for president - - Bobwhite Lunch and Supper Counter - - Boss Hog - - Bowery Hotel - - Box Kite Coffee - - Bubbleology Tea - - Cafe Mogador - - Chelsea Thai - - Christmas 2019 - - Christmas in September - - City Hall - - Clayton Patterson - - Coat Drive - - Coney Island Baby - - David Barton - - Department of Sanitation - - Dirt Candy - - Doc Holliday's - - Dojo - - Domino Sugar Refinery - - Downtown Bakery - - DumplingGo - - EV Grieve is now taking photos of the sun - - EV Grieve is really 13 years old - - EVE - - East Village homes - - El Sombrero - - Feast of San Gennaro - - Fine Fare - - FlyeLyfe - - Food Emporium - - Fourth of July - - Free Willie Nelson - - Funzi's Pizzeria - - Gracefully - - Haley Joel Osment - - Hayne Suthon - - Heart Break - - Horus Cafe - - Hotel Toshi - - Hummus Place - - I Need More - - I see dick people - - ICTTSS - - ITTSS - - Il Posto Accanto - - Jiang Diner - - Jim Jarmusch - - Joe and Pat's - - Joe's - - Joey Ramone Place - - Joseph C. Sauer Park - - Juicy Lucy - - Kabin - - Karma - - Katie Holmes - - King Kong - - Korilla BBQ - - Kushner Cos. - - L'Apicio - - Liberty Toye - - Lions & Tigers & Squares - - Little Italy - - Lorcan Otway - - M8 - - MCA - - Mary O's - - Matthew Kenney - - Matty's - - Max - - Memorial Day weekend - - Middle Collegiate - - Morton Tabak - - Nelson Sullivan - - New York City Landmarks Preservation Commission - - New York City Marathon - - New York City rooftops - - New York Healthy Choice - - Nicolina - - Ninth Precinct - - Ninth Street Community Garden - - Ninth Ward - - NoHo - - Nobletree Coffee - - Obama - - Organic Avenue - - PC Richard and Son - - PS122 - - Paul's Da Burger Joint - - Pete Wentz - - Pinky's Space - - Planet Taco - - Polish G. I. Delicatessen - - Pride Weekend - - Proto's Pizza - - Puebla Mexican Food - - Puke Island - - R S Strauss - - RVs - - Red Mango - - Rev. Jen - - Royal Tailor Shop - - Ruan Wen Hui - - SantaCon 2017 - - Sapporo East - - Sauce Pizzeria - - Snack Dragon - - Sophie's bar - - Spider Man - - Spiderman - - St. George's Ukrainian Catholic School - - St. Mark's Ale House - - Stanley Kubrick - - Stanton Street - - Steven Hirsch - - Stogo - - Stromboli Pizza - - Subway Inn - - Suffolk Arms - - Sunny's Florist - - Surprise! Surprise! - - TV shows we may actually watch - - Taberna - - TakeMeHome Rotisserie Chicken - - Taylor Mead - - The Birdman - - The Edge - - The Ukrainian Museum - - The Wall Street Journal - - Three of Cups - - Tompkins Sqaure Park - - Treetops - - Tribeca - - Turntable Retro Bar & Restaurant - - UCBeast - - Unidentified Flying Chickens - - Urban Wine & Spirits - - Verso - - Village Fabrics - - Violet - - Walgreens - - Yunnies - - apartment signs - - bad movies we may love - - barbers - - bendy thing - - big dogs - - break-ins - - cadillacs - - car fires - - churches - - classic cars - - co-naming streets - - condos with slides - - dog shit - - drugs - - dry cleaning - - falafel - - fat cats - - fucked up - - good samaritans - - great homes - - great signs - - hit and run - - hot weather - - indoor dining - - kids today - - life in the East Village - - maps - - meatballs - - moon - - moonlighting - - movie ads - - neon - - new retail - - noted - - photo shoots - - playgrounds - - pool at Sophie's - - pot - - predatory equity landlords - - proof that EV Grieve will post anything - - rent hike - - sex - - shopping - - smoking - - snowffiti - - spring 2021 - - steam - - street co-naming - - summer of bedbugs - - tattoos - - the Beagle - - the Belgian Room - - the China Star - - the Sunburnt Cow - - the Triangle Shirtwaist factory fire - - tree branches - - tree chair - - tumors - - unfortunate typos - - viral - - weddings - - zines - - zoning - - $1.50 pizza - - 10 Degrees Bistro - - 101 E. 10th St. - - 115 Avenue A - - 117 Avenue A - - 119-121 Second Ave. - - 127 Avenue C - - 151 Avenue C - - 152 Second Ave. - - 152-154 Second Ave. - - 192-194 First Ave. - - "1967" - - "1978" - - 1990s East Village - - 2 Bros - - 2 St. Mark's Place - - 202 Avenue A - - 222 Seventh Street - - 238 E. Fourth St. - - 24 St. Mark's Place - - 25 Avenue B - - 28 Avenue B - - 3 E. Third St. - - 300 E. 5th St. - - 306 Bowery - - 40 Avenue B - - 50-64 Third Ave. - - 535 E. 12th St. - - 536 E. 13th St. - - 6 train - - 72 E. First St. - - 72 Gallery - - 84 E. 10th Street - - 92 Seventh Street - - A Place to Bury Strangers - - A-1 Records - - Abracadabra Field Trip Mobile - - Ace Bar - - Al Diaz - - Alfred Hitchcock Presents - - Alphabet Scoop - - Amaran - - Angelica Kitchen - - Anyway Cafe - - April 1 - - Arturo Vega - - Asian Taste - - Avant Garden - - Avenue A Wine and Liquor - - Baoguette - - Bar None - - Bar Virage - - Batman - - Belmont Park - - Ben and Jerry's - - Billy the Artist - - Black Seed bagels - - Blatt Billiards - - Blockheads - - Bluebird - - Boukies - - Boulton and Watt - - Bowery Mission - - Brazen Fox - - Bruce Willis - - Bruno Pizza - - Cadence - - Cafe Centosette - - Cafe DeVille - - Cafecito - - Café Cortadito - - Calexio - - Campos Community Garden - - Carrie Bradshaw - - Cedar Tavern - - Children’s Magical Garden - - China Wok - - Citizens Bank - - Club Cumming - - Con Ed substation - - Congregation Mezritch Synagogue - - Contrada - - Cornell Edwards - - Crunch - - Dan Efram - - Dan and John's Wings - - Dance Parade 2013 - - Danny Meyer - - Daylight Saving Time - - Destination - - Dig Inn - - Dim Sum Go Go - - Dolphin Gym - - Donut Social - - East River park amphitheater - - East Side Ink - - East Village Thai - - East Village apartments - - East Village bikes - - East Village residents - - El Camion - - El Rinconcito - - El Sol Brillante - - Empellón al Pastor - - Feast - - Fifth Avenue - - Finest Pizza and Deli - - First Avenue kiosk - - First Lamb Shabu - - Fleet Week - - Frank James - - Gawker - - Gin Palace - - Gino DiGirolamo - - Girls - - Golden Cadillac - - Han Dynasty - - Historic District - - Holland Bar - - Ideal Glass - - Idle Hands - - Irving Place - - Jeff Buckley - - Jesse Malin - - Jimmy's No. 43 - - Joe's Steam Rice Roll - - Josie's - - Jules Bistro - - King of the Hill - - Kita - - Knitting Factory at Baker Falls - - Koko Wings - - L train entrances - - L'asso EV - - La Lucha - - La Plaza - - Lan Cafe - - Lavagna - - Lebrini's Pizzeria - - Louis 649 - - Lower East Side is too expensive - - Lyric Diner - - MTV - - Manny the Peddler - - Marble Cemetery - - Martha Cooper - - Mary Spink - - Marymount Manhattan College - - Max Brenner - - May Day - - Meatpacking District - - Midtown South - - Miscelanea NY - - Momofuko Ko - - Motor City Bar - - Motorino - - NYC Anarchist Book Fair - - NYSE - - New Double Dragon - - New York Central Art Supply - - New York Giants - - New York movies - - Nowon - - Nublu - - Old Monk - - Otto's Tacos - - PS 19 - - Panna II - - Paper Daisy - - Paquito's - - Paul and Monica Shay - - Pearl Street - - Percy's - - Percy's Tavern - - Peter Cooper - - Phebe's - - Pinks - - Poetica Coffee - - Pretty Boy - - Puddin' - - Pudgie's - - Pure Green - - Quantum Leap - - RS Strauss - - Reciprocal Skateboards - - Rent Guidleines Board - - Rockrose - - Rodeo Bar - - Roman Catholic Archdiocese of New York - - Rossy's Bakery - - Ryan's Irish Pub - - SMØR - - Sam Chang - - Sanitation Department - - SantaCon 2019 - - Santander - - Sen. Brad Hoylman - - Serendipity - - Sigmund Pretzel Shop - - Silver Spurs - - Soothsayer - - Sounds - - Spiegel - - Squish Marshmallows - - Streit's - - Suki - - Sunrise Market - - Surma Books and Music - - Sweetgreen - - TD Bank - - TMZ Grieve - - TV commercials - - Tacos Morelos - - Tarallucci e Vino - - Taxi Driver - - Teavana - - Temperance Fountain - - The Black Rose - - The Deuce - - The Elephant - - The Halal Guys - - The Joyce Theater - - The Robyn - - The Velvet Underground - - This Little Piggy Had Roast Beef - - Tifereth Israel Town & Village Synagogue - - Tim Ho Wan - - Tim Hortons - - Time Warner Cable - - Triangle Factory Fire - - Two Boots Video - - Umbrella House - - University House at Tompkins Square Park - - Upper West Side - - Vampire Freaks - - Vella Market - - Village Works - - Vinny Vincenz - - Virage - - Virgola - - Westville East - - Williamsburg Pizza - - Yakiniku West - - Yippie Museum - - Yonah Schimmel - - Yuca Bar - - abandoned couches - - advertising - - an.mé - - apartment listings - - artisanal cocktail bars - - asbestos - - bacon - - bad headlines - - bakeries - - barber shops - - beer pong - - beheadings - - bicycle thief - - bodegas - - bomb cyclone - - boots - - city council - - clowns - - composting - - conspiracies - - cumgirl8 - - discarded furniture - - drunk brunch - - dummies - - excuse for a gratuitous photo of boobies - - falling air conditioners - - film classics - - flags - - free ad - - free stuff - - gas leak - - great moments in advertising - - holes - - homelessness - - hotels - - jokesters - - kegs - - legs - - life in New York City - - lousy Photoshop skills - - luxury housing - - mannequinns - - mansions - - marriage proposals - - mattress police joke possible - - milling and paving - - mischief - - movies filmed in New York City - - old movie theaters - - our youth - - package theft - - paving - - pay phones - - pet stores - - photos - - pierogis - - pizza rat - - post office - - ramen for everyone - - rolled ice cream - - roof decks - - serial cartoon beheaders - - shit - - shop local - - sketchy pink boxes - - smells - - snow in March - - stray voltage - - the B Bar - - the Depression - - the International Center of Photography - - the Local 269 - - the Parkside - - the Stone - - the Strokes - - the beginning of the end - - the boot - - the future - - the grocery cart garden - - the old days - - things that aren't really subtle - - topless - - townhouses - - tree stumps - - turtles - - vegan ice cream - - vegans - - watermelons - - winter 2015 - - zombies - - '#SaveNYC' - - 115 St. Mark's Place - - 118 1st Ave. - - 119-121 2nd Ave. - - 125 First Avenue - - 127 Avenue D - - 128 E. 13th St. - - 130 St. Mark's Place - - 133 Avenue D - - 133 Third Ave. - - 14 Avenue C - - 149 First Ave. - - 14th Street Y - - 159 Second Ave. - - 179 Suffolk St. - - 180 Second Ave - - 183 Avenue B - - 2 Boots - - 200 Allen St. - - 200 Water Street - - "2013" - - 204 Avenue A - - 227 E. Seventh St. - - 229 E. Second St. - - 24 Avenue A - - 25 Great Jones - - 325 Bowery - - 342 Bowery - - 348 Bowery - - 3rd and B'zaar - - 424 E. 9th St. - - 438-440 E. 13th St. - - 48 E. 7th St. - - 50-62 Clinton St. - - 524 E. 14th Street. - - 534 E. 14th St. - - 58 E. First St. - - 5C Cultural Center and Cafe - - 7-11 - - 7th Street Village Farm - - 8 Stuyvesant St. - - 8-14 Stuyvesant St. - - 85 E. 10th St. - - 93 Avenue A - - 99 Second Ave. - - A&C Kitchen - - A.K. Shoe Repair - - ABC Beer Co. - - Acme Bar and Grill - - Ai Weiwei - - Alphabets - - And how was your weekend - - Angelina Cafe - - Anna - - Anwar Grocery - - Atomic Wings - - Avenue B flea - - Bad Brains - - Bad Pussies mural - - Bagel Belly - - Baker's Pizza - - BaoHaus - - Barbao - - Barrier Free Living - - Ben & Jerry's - - Bereket - - Bespoke Chocolates - - Big Lee's - - Black Iron Burger - - Bleecker Street Bar - - Blimpie - - Blue Door Video - - Blue Ribbon Fried Chicken - - Bon Vivant - - Bong World - - Bowery Ballroom - - Brasserie Saint Marc - - Bread and Butta - - Brian Rose - - Brooklyn Bridge - - Brooklyn Dumpling Shop - - Brownstone East Village - - Buffalo Exchange - - Burkina - - Cafe Mocha - - Capital One - - Carma East - - Casey Rubber Stamps - - Chad Marlow - - Charlie Brown - - Che Cafe - - Cheers Cut - - Cherche Midi - - Chinese food - - Chloë Sevigny - - Chocolate by the Bald Man - - Cholo Noir - - Chubby Mary's - - Ciala - - Citi Field - - Cocoa Grinder - - Confessional - - Cults - - Cure - - DEP shaft site - - Dance Parade 2012 - - Dance Parade 2018 - - Dance Parade 2023 - - Daniel Craig - - David McWater - - David's Shoe Repair - - Derek Jeter - - Dig - - Dinosaur Hill - - Discovery Wines - - Dojo Izakaya - - Domino's Pizza - - Don't fuck with East Fifth Street - - Donohue's Steak House - - EV Grieve has lost his or her mind - - EV Grieve is now taking photos of vomit - - EV Grieve is real mature - - EV Grieve is taking pictures of trees - - EV Heave - - EVG podcast - - East 12th Osteria - - East Vilage - - East Village Dance Project - - East Village Shoe Repair - - East Village businesses - - Echo and the Bunnymen - - Edi and the Wolf - - Elizabeth Lee - - Enz's Boutique - - Esperanto - - Everyman Espresso - - Figaro Villaggio - - Film Academy Cafe - - Fire and Water - - First Avenue Laundry Center - - First Avenue Pierogi and Deli Co. - - Flamingos Vintage Pound - - Fonda - - Forcella — La Pizza di Napoli - - Fresh & Co. - - Friday at 5 - - Fulton Street follies - - GOLES - - Gemma - - Gen Korean BBQ House - - Giuliani - - Gizmo - - Golden Food Market - - Gotham Pizza - - Grace and Hope Mission - - Greenmarket - - Greenwich Marketplace - - Guayoyo - - Habibi Lounge - - Handsome Dick Manitoba - - Haveli - - Headless Santa - - Heart N' Soul - - Hotel Chelsea - - Houston Street Corridor Reconstruction - - Houston Street Mystery Lot - - Howl! Arts/Howl! Archive - - Huertas - - Il Bagatto - - Isaac Hopper Home - - Ivana Trump - - Jamie the check-cashing guy - - Jane's Exchange - - Jason Hennings and Robert Giraldi - - Jennifer Esposito - - Jerry - - Joe and Pat’s - - Joe's Pub - - Joey Bats - - Joseph "Count Slima" Williams - - Juice Press - - Keanu Reeves - - Kellogg's NYC Café - - King Bee - - Kingsley - - Kitchen Sink - - Kotobuki - - La Sirena - - LaMama - - Ladybird - - Le Fournil - - Load Out - - Lower East Side Coffee Shop - - Lui's Thai Food - - Lula’s Apothecary - - Lumos Kitchen - - M14D - - M2M - - Maharlika - - Maison Kayser - - Mamani Pizza - - Manco Studio - - March 26 - - Markey Hayden Bena - - Marlis Momber - - Marshalls - - Mayor Adams - - Meltzer Tower - - Memphis Seoul - - Mercury Lounge - - Michael Shenker - - Milk Bar - - Molecule - - Morris Adjmi - - Mosaic Cafe - - Mother of Pearl - - Mr. Purple - - Mr. White - - NYU 2031 - - Naked Pizza - - NatureEs - - New York Observer - - New York Theatre Workshop - - New Yorkers - - New Yorkers Food Market - - Nick Zedd - - Niko - - No Malice Palace - - No Reservations - - No gas - - Nuyorican Poets Cafe - - OddFellows - - Odessa Cafe - - Olivo's - - One Manhattan Square - - Open Restaurants - - Orchard Street - - P and G Cafe - - P.S. 19 - - Park Row - - Pearl Street diner - - Phil Mushnick - - Phony Express - - Poco - - Poppy's Gourmet Corner - - Porchetta - - Post - - Pouring Ribbons - - President Biden - - Pride Month - - Professor Thom's - - Proletariat - - Provident Loan Society Building - - Punk Magazine - - Rhong Tiam - - Rhong-Tiam - - Richard Leck - - Roastown Coffee - - Roberta's - - Rockit Scientist - - Rolf's - - Russian Souvenirs - - Ryan Gosling - - SPURA - - San Marzano - - Second Avenue Deli - - Sesame Street - - Seth Rogen - - Shakespeare & Company - - Shaun Martin - - Short Stories - - Sidewalk - - Simone - - Sixth Avenue - - Space Mabi - - St. Emeric - - St. George's Ukrainian Catholic Church - - St. Mark’s Church Greenmarket - - St. Nicholas of Myra Orthodox Church - - Stage - - Steve Jobs - - Storm of the Jan. 3 - - Streit’s Matzo Factory - - Sugar - - Sugar Cafe - - Summer 2017 - - Sunshine Hotel - - Surfbort - - Susan Seidelman - - Sutra Lounge - - Tac N Roll - - Taste Wine - - Television - - The Acute - - The Chillmaster - - The De La Vega Museum - - The Fugs - - The Hat - - The Immigrant - - The Ludlow - - The New York Post - - The Source Unltd Copy Shop - - The Taking of Pelham One Two Three - - The VNYL - - The Wash House - - Theater 80 - - Thee Oh Sees - - Third Street Music School Settlement - - Thurston Moore - - Tink's Cafe - - Tofu House - - Tompkins Square Park mini pool - - Tony's Pizza - - Trader Joe's Wine Shop - - Treeman - - Tribe - - Trinity's Services and Food for the Homeless - - Tu Casa Recording Studio - - Two Hands - - Uncle Johnny - - Van Leeuwen - - Vector Gallery - - Virginia's - - Wafels and Dinges - - Westville Bakery - - WiFi - - Winter Storm Gail - - World Cup 2014 - - Xi’an Famous Foods - - Yonekichi - - '[plant-baked]' - - aerial views - - anarchy - - apartment ads - - artists - - awful bars - - bad videos we love - - bars for pregnant women - - bending elm - - benefits - - bike racks - - bitcoins - - booze - - broken windows - - burglary - - chains are evil - - cheap shots - - cheese - - cherry blossoms - - cinema classics - - construction noise - - cool cars - - covering the East Villages of America - - crashes - - d.b.a. - - danger - - deals - - defacing posters - - desserts - - destroying New York in the movies - - douche - - downed trees - - e-bikes - - earthquakes - - fetishes - - filming in the East Village - - fledge - - flu - - football - - former squats - - frathouse - - fruit salad - - giant TVs - - great diners - - greed - - grifter - - gunshots - - hair - - heat wave - - holy fucking shit - - homeless - - homes for sale - - horse heads - - horse racing - - hunts that involve Easter eggs - - hurricanes - - igloos - - it's better than a bank or a Starbucks - - juice craze - - kids - - lead - - letters - - lights - - live music venues - - living in the East Village - - lofts - - lots that are mysteries - - miracles - - missing puppets - - mosaics - - moving wars - - musical interludes - - new apartments - - new bakeries - - new cafes - - nice apartments - - nice toilets - - old New York TV commercials - - payphones - - pet blessings - - pink - - poems - - poke - - pop-up shop - - potholes - - rabbits - - raccoons - - records - - recycle - - retail diversity - - richies - - slashing - - small business closure - - smoke - - spring 2020 - - stalled construction sites - - store closing - - summer 2016 - - that empty lot on 13th Street - - the Aston Martin DBS Volante Convertible - - the Baroness - - the Blarney Cove - - the Emerald Inn - - the Lazy llama - - the Lillian Wald Houses - - the Nativity Church - - the New York Eye and Ear Infirmary of Mount Sinai - - the New York Marble Cemetery - - the Public Theater - - the rich - - there goes the neighborhood - - traffic - - trash bags - - vans of the East Village - - vote - - walking around - - weekend in review - - what am I doing on the Upper West Side - - winter 2016 - - winter 2022 - - yoga - - you always take photos of transformers - - '"Walk Man"' - - 102 E. 7th St. - - 103 Third Avenue - - 111 E. Seventh St. - - 11th Street Bar - - 123 St. Mark's Place - - 125 E. 10th Street - - 130 Second Ave. - - 132 2nd Ave. - - 133 Second Avenue - - 14th Street and First Avenue - - 176 E. Third Street - - 180 Ludlow - - 182 Avenue B - - 188 Second Ave. - - 189 E. Third St. - - 19 St. Mark's Place - - "1971" - - "1993" - - 20 Pine - - "2012" - - "2014" - - 2021 closings - - 204 E. 13th St. - - 21-23 Avenue B - - 215 E. 12th St. - - 218 E. 9th St. - - 22 Bond St. - - 224 E. 14th St. - - 243 E. Second St. - - 245 E. Second St. - - 29 Second Ave. - - 2B n 2C sculpture garden - - 302 E. Second St. - - 309 E. Eighth St. - - 31 Third Ave. - - "311" - - 338 E. Sixth St. - - 351 E. 10th St. - - 363 Lafayette - - 4 train - - 402 E. 12th St. - - 432-438 E. 14th St. - - 44 Avenue A - - 445 E. 9th St. - - 4Knots Festival - - 50 Avenue B - - 535 E. 11th St. - - 54 Second Ave. - - 542 E. Fifth St. - - 56 Leonard Street - - 60 Third Ave. - - 619 E. Sixth St. - - 62 Avenue B - - 642 E. 14th St. - - 82 St. Mark's Place - - 88 E. 2nd St. - - 9 Bleecker St. - - 9-17 Second Avenue - - 96 Avenue B - - 96-98 St. Mark's Place - - 97 St. Mark's Place - - 98 Avenue - - 99 Avenue B - - 99 Favor Taste - - 9th Street Community Garden - - A7 - - AMC Village 7 - - AT&T - - ATM skimmers - - Affaire - - Al Pacino - - Alan Cumming - - Albert Hammond Jr. - - All-Star game - - Alphabet CIty - - Ankara Turkish Restaurant - - Archie's Press - - Arepa Factory - - Arun Bhatia - - Astor Place Hairstylists - - Atelier Jolie - - AuH20 Thriftique - - Ave. A Mini Market - - Avenue A Deli and Grill - - Ayat - - Ayios Greek Rotisserie - - Azaleas - - Baby Yoda - - Baji Baji - - Ballaro - - Bar on A - - Barry McGee - - Beauty Bar - - Beloved Cafe - - Bernie Madoff - - Bernie Sanders - - Best Housekeeping - - Bhakti Center - - Biang - - Black Hound New York - - Black and White - - Blackbird - - Bleecker Street - - Blue - - Boilermaker - - BoingBoing - - Bonnie Slotnick Cookbooks - - Bowery Bar - - Bowery Wine Company Protest - - British things - - Britney Spears - - Brix Wine Shop - - Brodo - - Broken Coconut - - Brooklyn - - Busy Bee - - C & B Cafe - - CLLCTV.NYC - - Cabrini Nursing Center for Rehabilitation - - Cafe 81 - - Cafe Cambodge - - Cafe Colonial - - Call Harvey - - Calliope - - Calvin Klein - - Central Village - - ChaShaMa - - Champagne nightmares - - Cheap Trick - - Cherry Tavern - - Chichen Itzá - - Cindy Adams - - Citi-Spaces - - Coal Yard - - Columbia Care - - Compilation Coffee - - Continuum Coffee - - Courtney Love - - Coyi Cafe - - Crab Du Jour - - Croissanteria - - Croxely Ales - - Cupcake Market - - D.L. Cerney - - Dahlia's Tapas Wine Bar - - Dan & John's - - Dance Parade 2011 - - Dance Parade 2017 - - Dance Parade 2019 - - Daniel Root - - Death and Company - - Delta Phi - - Desi Shack - - Desi Stop - - Desperately Seeking Susan - - Dickchicken - - Dixon Place - - Doc Hollidays - - Don Ceviche - - Donostia - - Dorian Grey Gallery - - Downtown Yarns - - Drunken Dumpling - - Duane Readed - - Duke's - - Dun-Well Doughnuts - - E Smoke Shop - - EV Grieve is fun to hang out with - - EVIL - - EVLambo - - East Village Postal - - East Village flea - - East Village mornings - - East Village retail - - Eastern Bloc - - Eastside Bakery Net - - Edwin and Neal's Fish Bar - - El Diablito Taqueria - - El Sol Brillante Community Garden - - Ella - - Elvis Presley - - Empire State Building - - Endangered New York - - Engine 28/Ladder 11 - - Engine Company 5 - - Ethos Meze - - Everytable - - Extell - - Factory Tamal - - Fares Deli - - Fashion Week - - Fat Buddha - - Fat Sal's - - Feltman’s of Coney Island - - Fiaschetteria Pistoia - - Film Anthology Archives - - First Houses - - First Street Garden - - Five Roses Pizza - - Flaming Pablum - - Forbes - - Frances Goldin - - Fresco - - Friend House - - Gabay's Outlet - - Gandhi - - Gena's Grill - - Ghostbuster references - - Gimme Gimme Records - - Gingersnap's Organic - - Godzilla - - Good Guys - - Good Night Sonny - - Green Garden Buffet - - Gruppo - - Guaco Taco - - Guggenheim - - HAGS - - Halloween Adventure - - Hamptons Market - - Hank Penza - - Hanoi House - - Hare Krishnas - - Haven Plaza - - Hea - - Henri - - Hillary Clinton - - Holy Basil - - Honk - - Hot Box - - Hotel Tortuga - - Houston - - Houston House - - Humans of New York - - Hunan Slurp Shop - - Iconic Hand Rolls - - Irreplaceable Artifacts - - Jay-Z - - Jeremiah Moss - - Jerry's Artarama - - Jerry's Newsstand - - Jillery - - Jodie Lane - - Joe Jr. - - Joe's Pizza - - JoeDoe - - John Travolta - - Jon Spencer - - Jon Spencer Blues Explosion - - Jugger-nut - - Julie's Vintage - - Julius Klein - - Karen Lillis - - Karma Gallery - - Kelly Hurley - - Kentucky Derby - - Key Master - - Khyber Pass - - Ki Smith Gallery - - Kikoo - - King Gyro - - Knitting Factory - - Koi sushi - - Korzo - - L.E.S. Jewels - - La Esquina Bar & Grill - - La La Laundromat - - La Mia Pizza - - LaVie - - Lazarides on the Bowery - - Le Jardin Bistro - - Le Petit Versailles - - Lenin - - Leonardo DiCaprio - - Lime Tree Market - - Lindsay Lohan - - Link5G towers - - Lions BeerStore - - Little Man parking garage - - Little Tong - - Local 92 - - Loisaida CommUnity Fridge and Pantry - - Loisaida Open Streets Community Coalition - - Long Bay - - Love Thy Beast - - Lower East Side rezoning - - Luca Lounge - - Lucien - - Lucky - - Ludlow Hotel - - Lydia Lunch - - Mace - - Macy's Thanksgiving Day Parade - - Major League Baseballl - - Make Me Famous - - Manco Studios - - Mani in Pasta - - Marfa - - Maria's Cafe - - Marion's - - Mark Burger - - Mast Books - - Matcha Cafe Wabi - - Matt Harvey - - Melt Shop - - Merlin - - Met Food - - Michelin - - Mikey Likes It Ice Cream - - Milk Money Kitchens - - Milk and Hops - - Milon - - Minca Ramen Factory - - Miracle on 9th Street - - MoMa - - Mochinut - - Momofucko - - Moonstruck Eatery - - Mr. C's - - Mr. Lower East Side - - Mr. Throwback - - Muzzarella Pizza - - Nai Tapas Bar - - Neapolitan Express - - Nestor - - New Amici - - New York City history - - New York Press - - Night Music - - Nike - - Ninth Street Espresso - - Nizga Liquors - - Nomad - - North River - - Nón Lá - - Oaxaca Taqueria - - Organic Grill - - Original Nicky's Vietnamese Sandwiches - - Orologio - - Overthrow - - Overthrow Hospitality - - P&T Knitwear - - Paloma Rocket - - Pardon My French - - Penny Farthing - - Perbacco - - Petco - - Peter Jarema Funeral Home - - Phase 2 - - Picnic - - Pie Face - - Pizza Bagel Cafe - - Plump Dumpling - - Port 41 - - Pourt - - Prima Strada - - Project Renewal - - Pushcart Coffee - - Pussy Galore - - Queens - - RCN Cable - - Raclette - - Raising Cane's - - Rakka Cafe - - Ranger Rob - - Raul Candy Store - - Raul's Barber Shop - - Rawvolution - - Raíz Modern Mexican - - Rite-Aid - - Robataya - - Rockwood Music Hall - - Ruby's - - Rue-B - - Ruffian Wine Bar - - Russian & Turkish Baths - - Saint's Alp Teahouse - - Sammy's Roumanian Steak House - - Saturday nights - - Saul Leiter - - Scooter LaForge - - Search & Destroy - - Sexyflow - - Sheen Brothers - - Shoolbred's - - Sintir - - Sirovich Senior Center - - Sixth Street and Avenue B Community Garden - - Soho Billiards - - Solas - - Southern Cross Coffee - - Spazio Amanita - - Spider-man - - Spina - - St. James Place - - St. Mark's Church-in-the-Bowery - - St. Mark's horror show - - Standings - - Steamy Hallows - - Steve Cannon - - Stiv Bators - - Strings Ramen - - Sugar Sketch - - SummerStage - - Sundays - - Sustainable NYC - - Tacos Cholula - - Tamam - - Tatsu Ramen - - The 4th Street Food Co-op - - The Cardinal - - The Chippery - - The Coffee Shop - - The Cure - - The Dumpling Shop - - The East Luxe - - The Fourth - - The Gorgeous Ladies of Bloodwrestling - - The Hard Swallow - - The Living Gallery - - The Nathaniel - - The New Museum of Contemporary Art - - The Pigeon lady - - The Russian Orthodox Cathedral - - The Smith - - The Tang - - The Third Man - - The Village Scandal - - The Warriors - - Third Rail Coffee - - Thursday Kitchen - - Tim Burton - - Toasted Deli - - Ton-Up Cafe - - Tower Brokerage - - Town and Village Synagogue - - Trash & Vaudeville - - Trayvon Martin - - Tree Bistro - - Trek - - Trinity Lower East Side - - Trumps - - Twin Peaks - - Twist - - Two Boots Restaurant - - USA Super Stores - - Ummburger - - Union Square holiday market - - Vandaag - - Vasmay Lounge - - Via Della Scrofa - - Viking Waffles - - Villacemita - - Village Kids Footwear - - Wai? Cafe - - Weekend at Bernie's - - Wendigo - - West Village - - What About Me - - Wicked Wolfe BBQ - - William Barnacle Tavern - - Willie Nelson - - Wonder - - World Trade Center - - Wyndham Garden Hotel - - Yogurt Station - - Yuan Noodle - - Zaragoza Mexican Deli & Grocery - - Zerza - - Zoning for Quality and Affordability - - Zucker - - a good start - - a gradient of glazing apertures - - abandoned Citi Bikes - - activism - - ad campaigns - - additions - - another hotel - - apartment ads are terrible - - baby Luna - - bad movies - - bands - - bars without TVs - - bike thieves - - bomb squad - - boners - - books that we will buy - - brass bands - - bro - - bus ads - - car alarms - - car crashes - - carpet - - christmas ruined - - city budget - - condoms - - corn dogs - - corner delis - - corners - - crane tragedy - - dewatering - - discarded things - - dorm - - driveways - - driving in the East Village - - drones - - drunch - - drunks - - e-waste-apalooza - - eBay - - egg cream - - election day - - expensive co-ops - - faded ads - - fall 2017 - - fallen limbs - - falling bricks - - film crews - - fire jumping - - fire trucks - - fish - - fledgling - - floods - - frathole - - gags - - ghost bikes - - gloom and doom - - golf clubs - - good songs - - gorillas - - graffiti artists - - great movies - - green - - grilled cheese - - harassment - - hate crime - - haunted houses - - heartthrobs we've never heard of - - hey kids get off my lawn - - high jinx - - highjinks - - holy shit - - iPad - - iPhones - - juvenile hawks - - liquor stores - - look it's 14th Street - - lost turtles - - manhole explosion - - massage - - microwaves - - monsters - - movies - - murder - - music - - neighbor battles - - new Yankee Stadium - - new building - - new businesses - - night heron - - not better than a Duane Reade or Starbucks - - open fire hydrants - - open house - - papier-mâché man - - parking lots - - parking tickets - - parrots - - pavers gonna pave - - peeing in public - - penthouse I could never afford - - photo follies - - photography - - pile driver - - pirates - - plants - - police barricades - - politics - - porn - - puddles - - reader mailbag - - reindeers - - renovations - - renters - - rezoning - - ridiculous amenities - - sandwiches - - save the Bowery - - schools - - selfies - - sex sells - - slow zone - - slush - - small cars - - snow news day - - so many L train labels - - soccer - - splatter - - splops - - spring 2019 - - squats - - stop work orders - - storm damage - - stormy weather - - street photography - - studios - - summer 2012 - - summer rentals - - sunflower plants - - sunrises - - surveys - - swine flu epidemic - - terrible ads - - that kind of weird sushi place on the Bowery - - the Connelly Theater - - the Half Gallery - - the Library - - the Stranglers - - the Stuyvesant Polyclinic - - the Wild Project - - the homeless - - the police - - the pope - - the reflective pond of Avenue A - - the way we live now - - things we like - - trucks - - turkey - - ugly buildings - - unfunny humor - - vodka - - we'll always have the L train - - weeds - - white lacquered kitchen cabinetry - - wigs - - wind of the century - - your new neighbors - - zpizza - - "007" - - 109 E. 9th St. - - 11-13 Avenue D - - 114 E. 10th St. - - 115 Avenue C - - 115 E. 9th St. - - 116 St. Mark's Place - - 122 Second Ave. - - 125 Second Ave. - - 126-128 E. 13th St. - - 128-130 First Avenue - - 130 First Ave. - - 133 Second Ave. - - 137 Avenue A - - 14+C - - 145 Second Ave. - - 153 Avenue B - - 170 Avenue A - - 171 1st Ave. - - 179 Ludlow Street - - 181 Avenue A - - 188 Allen Street Gallery - - 19-23 St. Mark's Place - - "1985" - - "1987" - - "1997" - - 2 Gold Street - - 201 E. Second St. - - "2016" - - 21 E. Second St. - - 212 Arts - - 225 Avenue B - - 225 E. Houston St. - - 229 E. 13 St. - - 23 Wall Street - - 249 E. Second St. - - 265 E. Houston St. - - 273 Mott Street - - 276 E. Third St. - - 29 Third Ave. - - 305 E. 11th St. and 310 E. 12th St. - - 315 Bowery - - 32 St. Mark's Place - - 320 E. Sixth St. - - 325 E. 10th St. - - 325 E. 10th Street - - 333 E. 14th St. - - 35 Stuyvesant St. - - 350 E. 10th St. - - 350 E. Ninth St. - - 355 Bowery - - 358 Bowery - - 42 E. 2nd St. - - 420 E. 12th St. - - 432 E. 13th St. - - 48 Clinton St. - - 5 Napkin Burger Express - - 511 E. Fifth St. - - 55 Avenue C - - 56 E. 1st St. - - 58 E. 1st St. - - 606 Broadway - - 619 E. 6th St. - - 64 Second Ave. - - 64 Seventh St. - - 6B Community Garden - - 710 E. Ninth St. - - 75 Degrees Cafe & Bakery - - 751 E. 6th St. - - 809 Broadway - - 82 E. 10th St. - - 85 Second Ave. - - "886" - - 8bc - - 95 Avenue B - - 98 Favor Taste - - 99 Second Avenue - - AO Bowl - - Abraço Espresso - - Afandi Grill - - Ahimsa - - Albert Trummer - - Aliens of Brooklyn - - All The King's Horses Cafe - - Allen Street - - Allied Hardware - - Alphaville - - Amanda Bynes - - Amor Bakery - - Angelika Kitchen - - Animal House - - Antifolk Festival - - Apiary - - Apollo Bagels - - Arnold Schwarzenegger - - Arthur Russell - - Asher Levy Playground - - Atlas Cafe - - Attorney Street - - Aubreve Espresso - - Auriga Cafe - - Avenue A Sushi - - Avenue A cornfield - - B and H - - BBQ - - Back Forty - - Bagel Market - - Bago - - Bait and Hook - - Bakeri - - Bar Bacon - - Bar Primi - - Bar Taco - - Barnyard Express - - Bastille Day - - Beard Papa's - - Becky's Bites - - Beekman Street - - Beetle House - - Beijing Express - - Belcourt - - Ben Stiller - - Bento Burger - - Beyond Sushi - - Beyond Vape - - Bib Gourmand - - Bin 141 - - Bingbox Snow Cream - - Black & White - - Black Ant - - Black Emperor - - Black Friday - - Blah Blog Blah - - Blank City - - Blast of Silence - - Blick - - Blue & Gold Tavern - - Blue 9 Burger - - Blue and Cream - - Blue and Gold Tavern - - Bluestone Lane Coffee - - Bodhi Tree - - Bowery Beef - - Bowery Coffee - - Bowery Market - - Bowery Poetry - - Brandon Sines - - Brindle Room - - Bronx Brewery - - Brooklyn Bean Roastery - - Brooklyn Dark Hemp Bar - - Brooklyn Piggies - - Burrata Pizza - - By Chloe - - CONSTRUCTION - - Cabrini Nursing Center for Nursing and Rehabilitation - - Cafe Sandra - - Cafe Silan - - Caffe Corretto - - Caffe Cotto - - Café Social 68 - - Caleta - - Camellia - - Can't Stop the Music - - Candace Bushnell - - Cannabis Parade - - Carmen Pabon - - Carmine's - - Cat Power - - Central Park - - Central bar - - Chao Chao - - Chef's Local Harvest - - Chi Ken - - Chinese Graffiti - - Christ - - Christmas 2016 - - Christmas in December - - Christo and everyone - - Churro Cone - - Cinnamon Girl - - Citi bank - - CityRacks - - Clay Pot - - Clint Mario - - Clinton Street Baking Company - - Cloister Cafe - - Club 57 - - CoCo Fresh Tea and Juice - - Columbia students - - Come Back Daily - - Commerce Bank - - Common Ground - - Community Council - - Company - - Company Bar and Grill - - Con Edison - - Cooper Station - - Cooper Station Post Office - - Cornerstone Cafe - - Cosmic Cantina - - Cowgirl Cupcake - - Cristina Martinez - - Cro-Mags - - Crocodile Lounge - - Crossroads Trading - - Cup and Saucer - - Cure Thrift Shop - - Cutlets - - DOT - - DSNY - - Daily News - - Dance Parade 2009 - - Dance Parade 2014 - - Dance Parade 2015 - - Dance Parade 2022 - - Danny's Cycles - - Dante and Diego - - Darinka - - David Duchovny - - David Godlis - - David Lynch - - David's Bagels - - David's Cafe - - Davidovich Bakery - - Daylight Savings Time - - De-Flea Market - - Dempsey's - - Di Bella Bros. - - Dia - - Dian Kitchen - - Dick Tracy - - Dim Sum Palace - - Dorothy Day - - Double Down Saloon - - Double Wide - - Downtown Beirut - - Downtown Burritos Cocina Mexicana - - Downtown Music Gallery - - Dr. Doom 6 First St. - - Dry Dock Playground - - Dual Specialty Store - - Dunkin' - - Durden - - Dwell95 - - EV Grieve is now interviewing bikes - - EV Grieve leaves a note from EV Grieve - - Earth School - - East Third Street - - East 9th Street - - East River Park Track - - East River bandshell - - East Side Tavern - - East Village Books - - East Village History Project - - East Village Podcasts - - East Village Social - - East Village Village street scenes - - East Village Wines - - East Village streetreetscenes - - East Village weekends - - East Yoga - - East of Bowery - - EastVille Comedy Club - - Economy Candy - - Eighth Avenue - - Eileen Fisher - - El Churro - - El Colmado - - El Maguey y La Tuna - - El Primo Red Tacos - - Election 2012 - - Election 2013 - - Eleven Consignment Boutique - - Eli Manning - - Elizabeth Street - - Eric Garner - - Essex Squeeze - - Etherea Records - - Evelyn Drinkery - - Everything Bagels - - Evil Katsu - - Exchange Alley - - Extell Lake - - Fasta - - Fat Cat Kitchen - - Father's Heart Ministry Center - - FedEx - - Federal Reserve - - Fiona Silver - - Five Tacos - - Flinders Lane - - Flo Fox - - Florent - - Flywheel Sports - - Fourth Arts Block - - Frank - - Friday the 13th - - Fries Factory - - Frisson Espresso - - Fuku - - Fun City Tattoo - - Furry Land Pet Supplies - - GG Allin - - GNC - - Gabriel Stulman - - Gale Brewer - - Gavin DeGraw - - Gia - - Ginger - - Glaze - - Glizzy's - - Gnocco - - Gods - - Good Beer - - Good Records NYC - - Gothic Cabinet Craft - - Grace Farrell - - Gramercy Cafe - - Grand Sichuan - - Grape and Grain - - Great Jones Street - - Greekito - - Green Thumb - - Greenwich Village - - Guac - - Guerra Paint & Pigment Corp. - - Gusto House - - HSBC - - HYSTERIA - - Hakata Hot Pot - - Hamilton Fish Park - - Hamilton Fish Park Library - - Hanjoo - - Hanksy - - Hanoi Soup Shop - - Hanukkah - - Harry & Ida's - - Harry and Ida's Meat & Supply Co. - - Harvest Arts Festival - - Hattie Hathaway - - Heath Ledger - - HiLa tHe KiLLA - - High Vibe - - Himalayan Vision - - Hollywood in the East Village - - Honest Chops - - Honeybee - - Hospital Productions - - Hot Pot Central - - Hotel Indigo - - Hotel Reserve - - Hou Yi Hot Pot - - Housing Works Cannabis Co. - - Houston Village Farm - - Hub Thai - - Hurricane Maria - - I Coppi - - INA - - Ian Schrager - - Ichibantei - - Ikinari Steak - - In Vino - - Instant Noodle Factory - - Intermix - - Iris Bakery Cafe - - It's hot - - Ivanka Trump - - J-Mar Special Touch barber shop - - J-Spec - - J. Baczsky's East Village Meat Market - - JAM Paper & Envelope - - Jakobson Properties - - Jaws - - Jazba - - Jeepney - - Jeff Bridges - - Jeff Koons - - Jell & Chill - - Jen the bookseller - - Jeremy Lin - - Jersey Shore - - Jimi Hendrix - - Jimmy Carbone - - Jolene - - Jones LES - - JuiceGo - - Julian Casablancas - - Juneteenth - - Just for Fen - - KC Gourmet Empanadas - - Kamakura Coffee Shop - - Katinka - - KavasutrA - - Kebab Garden - - Ken Friedman and April Bloomfield - - Keybar - - Khiladi - - Kids Dental - - Km1 - - Kona Coffee and Company - - Korean hot dogs - - Kung Fu Tea - - La Palapa - - Lancelotti Housewares - - Le Gamin Cafe - - Leftover Crack - - Leonard Abrams - - Lexington Avenue - - Liberty Street - - Librae Bakery - - Limited to One - - Lion Beerstore - - Little Amal - - Lois - - Lollo Italian Restaurant - - Lords of the New Church - - Los Tacos - - Lovecraft Bar - - Low Life - - Lucky bar - - Luzzo's - - M9 - - Mad Hatters - - Mad Men - - Mad for Chicken - - Madame Vo BBQ - - Madman Espresso - - Mahalo New York Bakery - - Makki Deli & Grocery - - Mama's Bar - - Mambo Italiano Pizzeria - - Mancora - - Marc Jacobs - - Marcha Cocina - - Marinara Pizza - - Martin Luther King Jr. - - Martin Scorsese - - Mary O'Hallorans - - Mayahuel - - McCain - - McKinley Playground - - Meet Noodles - - Meg - - Meineke Car Care Center - - Mermaid Parade - - MetroCard - - Mi Tea - - Milk Burger - - Mimi's Hummus - - Miracle Grill - - Mister Softee - - Mitali East - - Mitt Romney - - Modern Love Club - - Moira Johnston - - Moko - - Mona's Bar - - Monk - - Montauk Salt Cave - - Moral Panic - - Morrissey - - Mr. Bing - - Mr. Pizza - - Mr. Robot - - Mug & Cup - - NY Grill & Deli - - NYC Anarchist Film Festival - - NYC Icy - - NYPD Tweet Tower - - Nathan Kensinger - - National Night Out - - Navy Yard Cocktail Lounge - - Netflix - - New Corner Magazine - - New York City business - - New York Comedy Club - - New York Jets - - New York Knicks - - New York Macaroni Co. - - New York Public Library - - New York Stock Exchange - - New York bands - - Night of 1000 Stevies - - Nonna's Pizza - - Nor'easter - - Norman's Sound & Vision - - Nutella Cafe - - O'Hanlon's - - Octavia's Porch - - Octoberfest - - Oh K-Dog - - Oktoberfest - - Olivier Sarkozy - - Olympic Restaurant - - One Great Jones Alley - - Ori Carino - - P.F. Chang's - - PJ O’Rourke - - PYT - - Pabst Blue Ribbon - - Pado - - Pak Punjab Deli and Grocery - - Panache Cafe - - Patisserie Florentine - - Patrick Swayze - - Paul Dougherty - - Pearl Diner - - Pearl Theatre Company - - Peet's Coffee - - Penn Badgley - - Penn Station - - Peridance - - Peter Hujar - - Petopia - - Philip Seymour Hoffman - - Pier 42 - - Pinks Cantina - - Pizza Rollio - - Pizza Shop - - Poke Village - - Pop's Eat-Rite - - Port Authority - - Portal - - Porto Rico Importing Co. - - Pretty Sick - - Prime and Beyond New York - - Prince Tea House - - Puck Fair - - Punto Rojo - - Queen Vic - - Quintessence - - Quiznos - - RIchard Sandler - - Ralph's Famous Italian Ices - - Rapture Cafe - - Ravagh Persian Grill - - Ray Deter - - Red & Gold Crab Shack - - Red Gate Bakery - - Red Hook Lobster Pound - - Reverend Billy - - Rififi - - Robert Ceraso - - Robert DeNiro - - Rock and Roll Hall of Fame - - Rolling Stone - - Roseland Ballroom - - Rosemary's Baby - - Rosie's Mexican - - Royale - - Ruby's Cafe - - Rue B - - Rue St. Denis - - Rustico - - S & P Liquor & Wine - - SBJSA - - SMØR Bakery - - Sage Kitchen - - Sahara East - - Sally Davies - - Sammy - - Sammy's Halal - - Sammy's Roumanian Steakhouse - - Sanatorium - - Sandwicherie - - Sanpoutei Ramen - - Sanshi Noodle House - - Santa Barbara Deli Superette - - Sarge's - - Savor Por Favor - - Schmackary's - - Scooby-Doo - - Screaming Mimi's - - Seasoned Vegan - - Second on Second - - Sei Shin Dojo - - Sensitive Skin - - Sestina - - Shakespeare - - Shakespeare in the Parking Lot - - Shepard Fairy - - Shima - - Shops of Fifth Street - - Sid Vicious - - Siggy's - - Silky Kitchen - - Sister Midnight - - Sixth Street Specials - - Skateboard Gardener - - Smithereens - - Smoke and Beer - - Soho House - - Somtum Der - - Spark Pretty - - Spicy Moon - - Spinner's - - Spiritea - - Spooksvilla + Friends - - Spots' Cafe - - St. Mark's Burger - - St. Mark's Hotel - - St. Marks Cinema - - Steve Cuozzo - - Steve's on the Bowery - - Steven Croman - - Stonewall - - Stranded Records - - Sun's Laundry - - Sunny & Annie's - - Sunrise Mart - - Sweet Smell of Success - - Sweet Village Marketplace - - Sylvain Sylvain - - T-Mobile - - T-shirts - - T.G.I. Friday's - - TIle Bar - - TK Kitchen - - TabeTome - - Table 12 - - Tableside - - Tai Thai - - Tal Bagels - - Tamam Falafel - - Taqueria St. Mark's - - Tasti D-Lite - - Tau Delta Phi - - Taylor Swift - - Teriyaki Boy - - Teso Life - - Thailand Cafe - - Thaimee Box - - Thanks - - The Alley - - The Asphalt Jungle - - The Avenue Cafe - - The Beach Boys - - The Boiler Room - - The Boilery - - The Bowery District - - The Brownstone - - The Burger Shop - - The Carrie Diaries - - The Commodore - - The Dead Boys - - The Dolly llama - - The Donut Pub - - The Drift - - The East Village of Iowa - - The Empire Strips Back - - The Four-Leaf Clover Lady - - The Grayson - - The Honey Fitz - - The Jones - - The Knickerbocker Bar & Grill - - The L.E.S. Dwellers - - The Lower East Side - - The Musical Box - - The Málà Project - - The New School - - The Official Animal Rights March - - The Onion Tree Pizza Co. - - The Phoenix - - The PokéSpot - - The Porch - - The Roost - - The San Isidoro y San Leandro Western Orthodox Catholic Church of the Hispanic - Mozarabic Rite - - The Surprise Garden - - The Vanishing City - - The Whiskey Ward - - The Winslow - - They Might Be Giants - - Three Seat Espresso - - Tiger Lily Kitchen - - Times Up - - Timna - - Timna NYC - - Tits Dick Ass - - Tokio7 - - Tommy Ramone - - Tompkins Finest Deli & Grill - - Tompkins Square - - Tompkins Square Middle School - - Tompkins Square Park Greenmarket - - Top A Nails - - Tower Records - - Tribal Soundz - - Triona's - - Tut - - USPS - - UWS - - Ukrainian Sports Club - - Ukrainian community - - Uluh Tea House - - Unemployment Olympics - - Uniqlo - - University Diner - - Unregular Pizza - - Uogashi - - Urban Bike Etiquette Signs - - Vanity Fair - - Verameat - - Vietnamese sandwiches - - Villa Capri - - Village Square Pizza - - Village Style - - Vitamin Shoppe - - Viva Herbal Pizzeria - - WTF Johnny Damon - - Wacky Wok - - Waikiki Wally's - - Wall 88 - - Wall 88 Restaurant - - Wall Street the movie - - Wara - - Water Witch - - Whim Golf - - White Negro - - Wild Combination - - Winnie the Pooh - - Wise Men - - WitchsFest - - Y7 - - Yahoo - - Yelp - - Yerba Buena - - Your Desire in Food - - Yummy House - - Zadie's Oyster Room - - Zen Yai Pho Shop - - Zine Fair - - a bedraggled man spat in anger - - abandoned bikes - - accidents waiting to happen - - album cover art - - almost summer - - animal-loving snow shoveler - - attack dogs - - auctions - - bailout - - balls - - banks - - bars for sale - - bartenders - - baseball - - basketball - - beQu Juice - - because we need more fucking hotels around here - - beds - - bike shares - - birthdays - - biscuits and jam - - blimps - - blizzards - - block association - - blog mafia - - blogs - - blue jays can be annoying - - bones - - bongs - - boutiques - - bras - - building collapse - - buildings in danger - - buildings sold - - burlesque - - cafes with themes - - candy - - car chases - - celebrity hangouts - - cheap rents - - chocolate - - cigarettes - - clocks - - closed by court order - - co-ops - - college students - - communists - - concerts - - continuing to pick on the Post - - converted firehouses - - cottage - - cows - - curbs - - d.b.a. holiday shopping - - davey drill - - deaths - - deer heads - - derecho - - destroying the past - - development watch - - dinosaurs - - dogs in cars - - dogs in windows - - doomed - - dream homes - - eggy sauce - - end of the world - - epoxy finishes - - eviction - - evil clouds - - explosion - - explosions - - fake snow - - fakes ads - - fall 2019 - - fall 2020 - - false alarms - - fashion - - fast-food mascots - - filming in Tompkins Square Park - - firefighters - - fiscal crisis - - fuck music let's paint - - fun with Flickr - - future development sites - - gas explosion trial - - gas issue - - gas issues - - glazed bricks - - golf - - golf bags - - grass - - gripped with fear - - gun shots - - hats - - heads - - heat - - help wanted - - heroin - - high heels - - high rents in New York City streetscenes - - hipster vatican - - hot air - - hot news - - huh - - iSouvlaki - - ice cream trucks - - inflatable rats - - interesting-looking boiler-service trucks - - jokes that aren't funny - - junk - - kittens - - laundro-bar - - let it snow - - lists - - live like a rock star - - lottery - - manhole - - marching bands - - marriage murals - - menus - - missing heads - - mosque - - moving away from Manhattan - - mysterious smells - - needless remakes - - new devlopment - - new hotels - - new shops - - news bars - - nice cars - - nightmares - - now hiring - - nude sushi models - - obituaries - - old electronics - - outdoors - - overheard - - pancakes - - parking garages - - pastel-hued townhouses - - patios - - patrol tower - - pedicabs - - peep shows - - people who complain about buses - - pep talks - - phone books - - phones - - photo club - - pickles - - pipes - - pizza run - - preservationists - - prom - - public access - - radio - - ramenators - - readers reports - - restaurant openings - - rhyme and reason - - rich jerks - - road work - - rooftop parties - - ruining the neighborhood one glitzy shop after another - - sculpture - - shooting fish in a barrel - - shoplifting - - short-term rentals - - sidewalk collapse - - skies - - slices - - slush puddles - - smart cars - - smashed windows - - snakes - - snow in July - - solar eclipse - - speed bumps - - speeding - - sports bars - - spring 2022 - - spring break - - steam vents - - stereotypes - - sticker art - - stoop sales - - strippers - - stupid headlines - - summer 2020 - - summer fridays - - summer rain - - sun - - supermodels - - supermoon - - swearing - - swimming in dumpsters - - swimsuit season - - the Chinese Hawaiian Kenpo Academy - - the EVAC - - the East Village Mini Market - - the East Village Neighbors Fridge - - the George Jackson Academy - - the Hamilton-Holly House - - the Horsebox - - the Joker - - the Lower Manhattan Congregation Jehovah's Witness - - the Rockettes - - the Royal WIgs - - the Shops on East Fifth Street - - the Superdive Diaries - - the Ugly Duckling - - the Village People - - the Whitehouse - - the same shit that you always see - - the truth is out there - - theater - - things that I like - - things that melt - - things we don't need - - this really has nothing to do with he East Village - - tigers - - tires - - tomfoolery - - too many bars - - total solar eclipse - - tour buses - - trainwrecks - - trash can fire - - tree house living rooms - - tropical storm Isaias - - true love - - ugh - - urban wildlife - - vaccinations - - vaping - - vegan desserts - - vintage - - vintage New York City TV commercials - - warnings - - water - - welcome to the East Village - - wild horses - - window shopping - - wings - - winter flowers - - yarn - - yarn carts - - yellow DensGlass® Sheathing - - young love - - '"The Limits of Control"' - - '"closed for renovations' - - '#Baonanas' - - 1 Avenue B - - 100 Gates - - 100 Second Ave. - - "10003" - - 104 Second Ave. - - 109 Avenue A - - 10Below - - 10th Congressional District - - 10th Street Free Press - - 11 Essex Street - - 110 2nd Ave. - - 110 St. Mark's Place - - 116 Second Ave. - - 116 University Place - - 118 Second Ave. - - 118 St. Mark's Place - - 119 St. Mark's Place - - 11th Street Community Garden - - 120 E. 10th St. - - 122 Community Center - - 123 Avenue A - - 128 E. Seventh St. - - 129 Fourth Ave. - - 12th Street bike lane - - 132 E. Seventh St. - - 133 E. 7th St. - - 135 Bowery - - 136 Second Ave. - - 137 Second Ave. - - 137 Second Ave. the Stuyvesant Polyclinic - - 13th - - 140-150 E. Seventh St. - - 145 Avenue C - - 149 Avenue B - - 14D - - 14th St. Candy & Grocery - - 151 Avenue A - - 151 Avenue B - - 169 1st Ave. - - 170 2nd Ave. - - 172 Stanton St. - - 175 First Ave. - - 188 Allen - - 194 E. Second St. - - 194 First Ave. - - 194-196 Avenue A - - 195 Avenue A - - 1960s - - "1969" - - "1973" - - "1976" - - "1977" - - 1990s - - "1994" - - "1995" - - 2003 blackout - - "2007" - - "2017" - - "2018" - - 202 First Ave. - - 209 E. Second St. - - 215 Chrystie - - 220 E. 9th St. - - 225 First Ave. - - 231 1st Ave. - - 235 E. 4th St. - - 23rd Street - - 25 Bleecker St. - - 250 Bowery - - 250 E. 14th St. - - 253 E7 - - 260 Bowery - - 263 Bowery - - 268 E. Seventh St. - - 27 Avenue D - - 27 E. Seventh St. - - 27 Second Ave. - - 287/LES - - 290 Mulberry - - 292 Theatre/Gallery - - 29B - - 2nd Street - - 3 E. 3rd St. - - 30 Rock - - 30 St. Mark's Place - - 301 E. 10th St. - - 308 E. Sixth St. - - 311 E. Sixth St. - - 327 E. 12th St. - - 329 E. Ninth St. - - 33 St. Mark's Place - - 332 Bowery - - 332 E. 6th St. - - 337 E. 8th St. - - 338 Bowery - - 341 E. 10th St. - - 343 E. Sixth St. - - 350 W. Broadway - - 356 Bowery - - 37 Avenue B - - 37 Great Jones - - 38 Avenue B - - 399 E. Eighth St. - - 403 E. 8th St. - - 404 E. 14th St. - - 41 St. Mark's Place - - 42 Avenue B - - 42nd Street - - 432-438 14th St. 438 E. 14th St. - - 433 E. 13th St. - - 44 Avenue B - - 44 E. First St. - - 44 Stuyvesant St. - - 44. E. First St. - - 441 E. 9th St. - - 45 Great Jones Street - - 45-47 Second Ave. - - 4th Street Food Co-op - - 5 Napkin Express - - 50 Third Ave. - - 50-54 Second Ave. - - 503 E. Sixth St. - - 503-505 E. 12th St. - - 505 E. 12th St. - - 51 Astor - - 514-516 E. Sixth St. - - 526 E. Fifth St. - - 531-533 E. 12th St. - - 536 E. 14th St. - - 55 Express Tailor Repair - - 56 St. Mark's Place - - 58 Third Ave. - - 5C Café and Cultural Center - - 602 E. Sixth St. - - 61 Fourth Avenue - - 615 E. Sixth St. - - 629 E. Fifth St. - - 638 E. 12th St. - - 639 E. 9th St. - - 64 E. 7th St. - - 645 E. 9th St. - - 65 E. Second St. - - 656 E. 12th St. - - 7 Spices - - 7 p.m. cheer - - 701 E. Sixth St. - - 72 Avenue A - - 74 E. 4th St. - - 746 E. 5th St. - - 77 E. 3rd St. - - 7th Street Burger - - 8 Bit and Up - - 80 E. Second St. - - 82 Second Ave. - - 85 Avenue A - - 86 E. 10th St. - - 87 E. Houston St. - - 8th Street Winecellar - - 9 Avenue B - - 9 Second Avenue - - 9 St. Mark's Place - - 90 Third Ave. - - "911" - - 92 E. 7th Street - - 92 Second Ave. - - 92 St. Mark's Place - - 92-94 Second Avenue - - 94 St. Mark's Place - - 95 First Avenue - - 95 Wall Street - - 96 Tears - - 96 Third Ave. - - 97 E. Seventh St. - - 98 Favor - - 99 Miles to Philadelphia - - 9th Street Community Garden & Park - - ': East Village history' - - A & C Kitchen - - A Sustainable Village - - A'more Caffè - - A-Rod - - A1 Records - - AA - - AIG - - Abraço - - Absinthe - - Academy Awards - - Ace Frehley - - Ace Hardware - - Ada Louise Huxtable - - Addiction - - Adela Fargas - - Afternoon - - Ahimsa Garden - - Akina Sushi - - Akkas Ali - - Al Horno Lean Mexican Kitchen - - Alamo Drafthouse - - Alex Harsley - - Alex Rodriguez - - Alphabet City Deli & Grill - - Alphabet Lounge - - Altes House - - Alumni Hall - - Amazon - - American Deli & Grocery - - Amigo - - Amona Deli & Grocery - - Amor y Amargo - - Amore Opera - - Amoun - - Angels on A - - Anonymous - - Anthony Pisano - - Apple - - Après - - Arata - - Archangels Antiques - - Argosy - - Arleen Schloss - - Arlene's Grocery - - Army and Navy Bags - - Arrow Bar - - Art Bike Parade - - Art+Ray - - Arthur Nersesian - - Ashlee Simpson - - Astor Barber All-Stars - - Astor Plate - - Astroland - - Astroturf - - Atino Eyewear Optical - - Attorney General Eric T. Schneiderman - - Audrey Hepburn - - Aura - - Autre Kyo Ya - - Avenida Cantina - - Avenue C - - Avenue A Classic Food - - Avenue A ice sculpture - - Avenue Apizza - - Avenue B Cleaners - - Avenue C Restaurant - - Awash - - B Cup Cafe - - B-52's - - BBQ Chicken - - BMW - - Babel Lounge - - Baci e Vendetta - - Back 40 - - Back to the Future - - Backhoe Beamer - - Bad Habit - - Bake Culture - - Baked Cravings - - Banana Leaf - - Bar Akuda - - Baraza - - Barnacle Bill - - Barney - - Baron's Dim Sum - - Bars at dawn - - Bartender Wars - - Basics - - Be Juice - - Beastie Boys Square - - Bedlam - - Beekman Tower - - Beer & Smoke Shop - - BeetleBug - - Bela Lugosi - - Bella McFadden - - Belmont Stakes - - Berlin — Under A - - Best Price Deli & Grocery - - Between the Seas Festival - - Beyoncé - - Big Pink - - Biker Bill - - Bill Murray - - Bill Rice - - Biomed Drugs & Surgical Supply Co. - - Birria LES - - Bishops and Barons - - Bistro Cafe and Grill - - Bite Me Best - - Blarney Rock - - Blessing of the Bicycles - - Blind Barber - - Bloom Bloom - - Blue Bloods - - Blue Bottle - - Blue Bottle Coffee Company - - Blue Man Group - - Blue Mercury - - Bob Gruen - - Bob Sheppard - - Bond Street Chocolate - - Bondy's - - Borkot Ullah - - Borscht - - Boticarios - - Bowery Alliance of Neighbors - - Bowery Neighbors Alliance - - Bowery Pizza - - Bowery at Midnight - - Bowlmor - - Bret Easton Ellis - - Brighton Beach - - Brix - - Brix Wine Bar - - Brix Wines - - Broad City - - Broadway Panhandler - - Brooke Smith - - Brooklyn Bagel & Coffee Company - - Brothers Deli - - Brownstone Bar & Grill - - Bud Light - - Buffalo Wild Wings - - Bugs - - Buka - - Bulb Concepts - - Bull McCabe's - - Bungalow - - Burgers on B - - Burkelman - - Bush - - Butch Judy's - - Butch Morris - - Butterdose - - C & B Convenience Store - - C-Town - - CB# - - CBGB Gallery - - CR7 Gourmet Deli - - CTown - - Cabin Down Below - - Cacio e Vino - - Cadillac's Castle - - Cafe Amore - - Cafe Brama - - Cafe Che - - Cafe Chrystie - - Caffe Pepe Rosso - - Café Charbon - - Cake Shake - - Campout New York Post - - Canada - - Capitol One - - Captain Cookie & the Milk Man - - Caracas - - Caravan of Dreams - - Carlisle Brigham - - Casey Neistat - - Caswell-Massey - - Cava Grill - - Cellar 58 - - Champion Coffee - - Chase Plaza - - Chat N Chew - - Cheep's Pita Creations - - Chef Hans - - Cherin Sushi - - Cheska's - - Chewy - - Chi Snack Shop - - Chick-N-Smash - - Chicken & the Egg - - Chickpea - - Cho-Ko - - Chocolate Bar - - Choice Cleaners - - Chopt - - Chouchou - - Chrissy's Pizza - - Christmas in January - - Christmas in November - - Chrome Cranks - - Chrystie NYC - - Cicadas - - Cigkoftem - - Cinco de Mayo - - CineKink - - Cinema Paradiso - - Citizens of the Anthropocene - - City Harvest - - City Lore - - City of Saints Coffee Roasters - - City of Yes - - Clash City Tattoo - - Classic Man Barber Lounge - - Clayworks Pottery - - Cloud99 Vapes - - Cocaine Bear - - Cocktail - - Coddiwomple - - Coffee Project New York - - Coinstar - - Cold Stone Creamery - - Collateral Beauty - - Confectionery - - Conflux festival - - Conor's Goat - - Continuum - - Cookout Grill - - Cooktop Garden - - Cooper Craft and Kitchen - - Cork 'n Fork - - Count Dankula - - Counter - - Crab Shack - - Craft+Carry - - Crispy Burger - - Crooked Tree - - Cupid - - Curly's - - D-Lish Pita - - D-list celebrities - - DA Alvin Bragg - - DHS - - DL - - Dan Witz - - Dance Parade 2020 - - Dance Parade 2024 - - Dance Tracks - - Daniel Boulud - - Darth Vader - - Dash Snow - - David Choe - - David Cross - - David Dunlap - - Day of the Dead - - Day of the Dead Ride - - Daydream - - Daytripper - - Dean & Deluca - - Dear Rufino - - Debi the Gardener - - Deborah Harry - - Dec. 25 - - Deep-set casement windows - - Delaney Fried Chicken - - Dennis Edge - - Deno's - - Desert Rose Cafe - - Die Hard with a Vengenace - - Dim Sum - - Dinah Hookah Lounge - - Dion Cleaners - - Dok Suni - - Dokodemo - - Dollface Diner - - Don Holley - - Don Juan’s Barbershop - - Donna Harris - - Dorian Gray Tap & Grill - - Dorian Grey - - Downtown Threads - - Döner Haus - - Dr. Smood - - Drom - - Dryden Gallery - - Dua Kafe - - Dua Kafe Wine + Beer - - Duane Park - - Ducks Eatery - - Dumpling Lab - - DumplingGuo - - Dunhuang East Village - - Dutch Elm Disease - - Dyke March - - DöKham - - E7 Deli & Cafe - - EV Grieve is helpful - - EV Grieve is now posting photos of old menus - - EV Grieve is now posting photos of steam vents - - EV Grieve is romantic - - EV Grieve is vain - - EV Grieve is writing headlines about him or herself - - EV Grieve will burn in Hell - - EV Grieve's favorite baseball players - - EV Scharfman Coalition - - EVG Etc. EV Grieve Etc. - - East Berlin - - East Side Gourmet Deli - - East Side Outside Community Garden - - East Sixth Street fire - - East Union Square - - East Village Acupuncture & Massage - - East Village Bed & Coffee - - East Village Burritos & Bar - - East Village Buyers - - East Village Community Cookbook - - East Village Finest Deli - - East Village Fruit and Vegetable - - East Village Howler - - East Village Independent Merchants Association - - East Village Loves NYC - - East Village Music Store - - East Village Mutual Aid - - East Village Neighbors - - East Village Pharmacy - - East Village artists - - East Village map - - East Village proposals - - East Village rent - - East Village s - - East Village streetscene - - East Villlage - - Easter Sunday - - Eastville ComedyClub - - Eastville Gardens - - Eat Pray Love - - Ed. Varie - - Eddie Huang - - Edgar Oliver - - Educational Alliance - - Edward Arrocha - - Eggloo - - Eiyo Bowl - - Electric Burrito - - Electric Circus - - Ella Funt & Club 82 - - Elsa - - Elsewhere Espresso - - Emilia by Nai - - Emily Rubin - - Empire Gyro - - Enchantments - - End of Avenue A Block Association - - Equinox - - Ergot Records - - Esperanto Fonda - - Essex Market - - Etérea - - Etna Tool and Die - - Euro 2012 - - Eurocobble - - Excel Art and Framing Store - - Express Thali - - Eye Beauty Spa - - FAB Festival - - Fab 208 - - Fabulous Fanny's - - Fahim Saleh - - Fair Folks & a Goat - - Fairway - - Faith and Hope Mission - - Fantastic Tea Shop - - Farmwich - - Federal Cafe - - Fineline Tattoo - - Firemen's Garden - - First Avenue and 14th Street - - First Street Green - - Fish Bar - - Fit Ritual - - Fithouse - - Five Guys - - Flaming Cactus - - Flatbush - - Flordel Florist - - Florence and the Machines - - Flower Power - - Flowerbox - - Forbidden Planet - - Fortnight Institute - - Forum - - Four Four South Village - - Four Loko - - Fourth Street Arts Block - - Frank Prisinzano - - Freakfest - - Freddy Sez - - FreshDirect - - 'Friday The 13th Part VIII: Jason Takes Manhattan' - - Frigid New York Festival - - FringeNYC on Fourth - - Friterie Belgian Fries - - FryGuysNYC - - Funny Face - - Future You Café - - G's Cheesesteaks - - Gaia Cafe - - Gala - - Galleria J. Antonio - - Gap - - Garland Jeffreys - - Gas Mask Bongs - - Gemini Rosemont Development - - Gentlemen this is Hell - - Gil Scott-Heron - - Gino Sorbillo - - Girl Scout Cookies - - Gjelina - - Glasgow Vintage - - Glenn Branca - - Glinda the Good Bus - - Gnocchi on 9th - - God help us - - Golody Halal Buffet - - Gone but Not Forgotten - - Gong Cha - - Good Old Lower East Side - - Good Time Pilates - - Goofy wore a hate and drove a car - - Google Glass - - Google's 10th anniversary - - Gordon Gekko - - Gorin Ramen - - Gothic Renaissance - - Gov. Paterson - - Grace Church of New York - - Grace Exhibition Space - - Grace Jones - - Gramercy Kitchen - - Grand Openings - - Great GoogaMooga - - Greecologies - - Green Land Gourmet Deli - - Gregoire Alessandrini - - Groupon - - Ha Noi House - - Habib's Place - - Haile Bistro - - Hakata Zen - - Half Gallery - - Handsome Dan's - - Hans Gruber - - Happy Days - - Harry Potter - - Hash Halper - - Hawkeye - - Healthfully - - Healthy Choice Foods Market - - Heap of Ruins - - Heaven Can Wait - - Heavenly Market - - Hecho en Dumbo - - Hekate Café & Elixir Lounge - - Helen Mirren - - Helen the accordion lady - - Hell's Angels - - Hello - - Hemingway the cat - - Henry Street - - Here Nor There - - Herringbone pattern Cambric Persian White Classico honed marble tile floors - - Hester Street Fair - - Hetal Convenience Store - - Hi Noona - - Hi-Fi - - Hibachi Dumpling Express - - Hickey's - - Hilary Duff - - Hilly Kristal - - Ho Foods - - Hokkaido Baked Cheese Tart - - Holiday - - Holy Reedemer - - Holyland Market - - Home Town Village Convenience Store - - Honey House - - Honeybee's - - Honeyfitz - - Horridor - - Horse Trade Theater Company - - Hospital - - Hot Dog - - Hotel Carter - - Hotel Edison - - Hotel Ludlow - - Housing Works - - Howard Johnson's - - Hummers - - Hurri - - Hurricane - - I Cipressi - - I Love Panzerotti - - I can't sleep thinking about what might go in here - - I don't REALLY think Predator is the greatest film ever made - - I hate Time Warner - - I love New York campaign - - I posted a Rush video - - I'd rather go swimming - - IDNYC - - IG-Fit - - IHOb - - IHOb Way - - IQ Decor - - Ice-T - - Icys - - Identity Bar and Lounge - - Idlewild Coffee Co. - - If You Don't like... - - Immaculate Conception School - - Improv Everywhere - - Indian video store - - Inkstop Tattoo - - Insomnia Cookies - - Iron Chef - - Irving Farm New York - - Isabella - - J. Crew - - JQK Floral Tea - - JR - - JUICE Gallery - - James Cagney - - James Chance - - James Maher - - James Panitz - - Jane Doe - - Jiang's Kitchen - - Jim Andralis - - Jim Carroll - - Jim Joe - - John Farris - - John Leguizamo - - John Lurie - - Johnny Favorites - - Johnny Ramone - - Joli Beauty Bar - - Jones Diner - - Joselito - - Joya Loves Louie - - Joyface - - Juice Vitality - - Julep - - Julie and Julia - - Jum Mum - - KGB Bar - - Kajitsu - - Kambi Ramen House - - Karma Books - - Kasadela Izakaya - - Kate Moss - - Kavasutra Kava bar - - Kebabwala - - Kelly's Sports Bar - - Ken Schles - - Ken and Barbie - - Kenkeleba House - - Kenmare Street - - Kenneth Cole - - Kent's Dumpling House - - Kermit - - Kevin Durant - - Key Foods - - Keyapalooza - - Kim Kardashian - - Kin Asian Bistro - - Kindred - - King Samson - - King Tut's Wah-Wah Hut - - Kinofest - - Kips Bay - - Klatch - - Knickerbocker Village - - Knit New York - - Kobe Bryant - - Koi - - Kojak - - Kolachi - - Kolkata Chai Cafe - - Kraine Theater - - Krust - - Kumo Sushi - - Kuppi Coffee - - Kyuramen - - Kōbo by Nai - - LES Dwellers - - LES Ecology Center - - LRC - - La Cabra - - La Colombe - - La Contrada - - La Isla - - La MaMa Galleria - - La Zarza Lounge - - Lab 321 - - Lamia's Fish Market - - Lana Del Rey - - Land of Buddha - - Landmark Bicycles - - Lard lane - - Larry David - - Launderette - - Le Burger - - Le Phin - - Leekan Designs - - Legs McNeil - - Lehman Brothers - - Leif Garrett - - Lena Dunham - - Lenny Kaye - - Lent - - Leo the cat - - Leonard Cohen - - Lhasa - - Life - - Lil' Frankies Grocery - - Lilly Coogan's - - Lilly's Shakes & Crepes - - Lily Donaldson - - Little Joe's Pizza - - Little Missionary's Day Nursery - - Little Pakistan - - Little Rebel - - Lobster Joint - - Loew's Avenue B - - Loisaida - - Loisaida Ave. Deli - - Loisaida Center - - Loisaida Open Street Community Coalition - - Looker - - Lord Hamm's - - Lori McLean - - Lost Lady - - Lot Stop - - Lot6C - - Love Gang - - Love Shine - - Lovecraft - - Lovenburg - - Loverboy - - Lovewild Design - - Lower East Side People's Federal Credit Union - - 'Lower East Side: An Endangered Place' - - Lower Manhattan - - Lucky Chengs - - Lucky Star - - Lucky's Famous Burgers - - Lui's - - Lume - - Lunasa - - Lux Living - - M Sonii - - M. White - - MAD Toast House - - Madame Vo - - Madison Avenue - - Madison Square Garden - - Madison Street - - Madonna's old house - - Make Sandwich - - Make love not war - - Malcriada - - Mama Fina - - Mandolino Pizzeria - - Manhattan Pawffice - - Mannequin - - Manon Macasaet - - Mara's Homemade - - March - - March 14 - - March 2019 - - March Madness - - March gallery - - Mardi Gras - - Mariah Carey - - Mariah Carey is my inspiration - - Marilyn Monroe - - Markand Thakar - - Mars Bars - - Martha Stewart - - Marufuku Ramen - - Masak - - Mascot Studio - - Mast - - Master Softee - - Matt Damon - - Matt Wolf - - Mattress Mobile - - Max's Kansas City - - MedRite Urgent Care - - Medan Pasar - - Medina's Turkish Kitchen - - Meet Fresh - - Meet Me in the Bathroom - - Melrose Place - - Meltzer Towers - - Memorial Day - - Meow Parlour - - Merica NYC - - Meskel Ethiopian Restaurant - - Met Fresh - - Metropolitan Playhouse - - Mi Casa Latina - - Mi Garba - - Mi Salsa Kitchen - - Michael Brody - - Michael Brown - - Michael Cohen - - Michael White - - Mick Jagger - - Mickey Mantle - - Mickey Mouse - - Middle Church - - Mighty Mighty Bosstones - - Mike Brown - - Mike Doughty - - Mila Kunis - - Milano's - - Millions March NYC - - Minnie McSorley - - Missed Connections - - Mister Paradise - - Mocha Red - - Mod World - - Momofuko - - Monsieur Vo - - Morton Williams - - Motel No Tell - - Mott Street - - Movie Under the Stars - - Mr. Kim - - Mr. Moustache - - Mud Truck - - Mudspot - - Muhammad Ali - - Mulberry Street - - Mumbles - - Muppets - - Murray Hill - - My Bloody Valentine - - Möge Tee - - NASA - - NY Village Deli - - NYC Convenience Gifts - - NYC skyline - - NYPL - - NYU Village - - Nan Xiang Xiao Long Bao - - National Ukrainian Home restaurant - - National Youth Climate Strike - - Natori - - Neighborhood Loading Zone - - Neither More Nor Less - - Nepal - - Nevada's Smiths - - New Jersey - - New Year's Day - - New York CIty subway movies - - New York City in the movies - - New York City landmarks - - New York Dolls - - New York nightlife - - New York radio - - Nic Cage - - Niconeco Zakkaya - - Nightengale Lounge - - Nightmarket - - Nimble Fitness - - Nite Owl - - No Relation - - Nobody is Perfect - - Nolita Pizza - - Noor - - Norfolk Street - - Norman's Sound and Vision - - Northwest East Village - - Nostro - - Not Jesus - - Novum EV - - Now Yoga - - NuNoodle - - Nudibranch - - Numero 28 Pizzeria - - Nuovo York Pizza - - O.O.T.D. - - ODA House - - OWS - - Ocean's 8 - - Odd Eye NYC - - Office of Nightlife - - Offside Tavern - - Oh-K Dog - - Oishi Village Sushi - - Old Fashioned Pizza - - Old Flat Top - - Olde Brooklyn Bagel Shoppe - - Olivia - - On the Mark Cleaners - - One Zo - - Orange is the New Black - - Orchard Alley - - Otafuku - - Our Lady of Guadalupe - - Our Lady of PMS - - Oyama - - O’Flaherty’s - - P.S. 20 - - PLNT Burger - - PS4 - - Palladium - - Panera Bread - - Panya - - Papilles - - Paradiso - - Paris Baguette - - Parlor - - Parmys - - Partea - - Patti Astor - - Paul Newman - - Paul Richard - - Penn State - - Penny Pollak - - People's Pops - - Perk Espresso and Coffee Bar - - Perry Farrell - - Pete's Tavern - - Pete's-A-Place - - Peter Bennett - - Peter Missing - - Peter's - - Petit Chou - - Photo Tech - - Photobooth - - Piccola Positano - - Pier 17 - - Pig & Butter - - Pillow-Cat Books - - Pink Bear Ice Cream - - Pink Louds - - Pink Olive - - Pirate's Booty - - Planet Rose - - Planeta Space - - Plantshed - - Plantworks - - Podunk - - Poke N' Roll - - Pommes Frites - - Pope Francis - - Popeye - - Poppy Lofts - - Porchetta.Hog - - Porsena - - Potenza Centrale - - Predator - - Prim Thai - - Printed Matter - - Public Access T.V. - - Public Hotel - - Puerto Rico - - Pukk - - Pulaski Day Parade - - Purple Ginger - - Q&A - - Q. Sakamaki - - Rachel Amodeo - - Rake Wine Bar - - Ralph Feldman - - Ramen Setagaya - - Ramen Zundo-ya - - Ray LeMoine - - Rebelmatic - - Red Onion - - Red Pepper - - Regal Union Square Stadium 17 - - Relaxation Garden - - Remember Me - - Restaurant (turnover) Row - - Restaurant Week - - Revel - - Revival - - Revolutionary Road - - Rickshaw Spidey - - Riff - - Rob Sacher - - Robert Sietsema - - Rock and Roll Hall of Fame Annex - - Roe v. Wade - - Roll It Up - - Ron English - - Root & Bone - - Rose and Basil - - Rose&Basil - - Rowdy Rooster - - Roxana Sorina Buta - - Royal Bangladesh Indian Restaurant - - Ruff Club - - Run DMC - - Run-DMC - - Russ & Daughters - - Russ and Daughters Cafe - - Ryan Adams - - Rybak Development - - SEO baby - - SOS Chefs - - Saabsicle - - Sacco - - Saint Pizza - - Sal's - - Sally Beauty - - Salter House - - Saltwater NYC - - Sam & Sadie Koenig Garden - - San Franciso - - SantaCon 2018 - - SantaCon 2022 - - SantaCon 2023 - - Sao Mai - - Sara Curry - - Sara D. Roosevelt Park - - Saramsam - - Savings Paradise - - Scooping Sam Champion and Al Roker - - Scully and Mulder - - Second Hand Rose - - Second Street Cathedral - - Select Bus - - Sembrado’s Tacos al Pastor - - Sen Ya - - Sen. Chuck Schumer - - Serenity Spa - - Seymour Burton - - Shampoo Avenue B - - Shape of Lies - - Shaun White - - Shea Stadium - - Sheldon Silver - - Shibuyala - - Shinbashi - - Shinbashi Sushi - - Shinn East - - Sid and Nancy - - Sidney's Five - - Sioné - - Skinny Buddha - - Sleepy's - - Slider's - - Sliders - - Sly Fox - - Smell it like Beckham - - Smokey and the Bandit references - - Snack Bowery - - Snickers - - Snowdays - - Snowvember - - Soda Club - - Solo Pizza - - Song 7.2 - - Sorbet Cray Cray - - Sorbillo - - Souen - - South Bronx - - South Florida - - Spice Cove - - Spike's - - Spot Dessert Bar - - Spot Dessert Shoppe - - Spotted Lanternfly - - Spring Into Pride - - St Mark's Place - - St. John's - - St. Marks Bar and Grill - - St. Marks Barbershop - - St. Mark’s Comics - - Standard East Village - - Starbanks - - Stargirl - - Staten Island Ferry - - Staten Island Yankees - - Stealing images from I Am Legend - - Steve Keene - - Still House - - Stoned Gourmet Cannabis Pizza - - Stop Asian Hate - - Storm of the Feb. 8 - - Straight Outta Tompkins - - Strauss - - StuyTown - - Stuyraq - - Stuyvesant Gourmet Deli - - Subman - - Sugared+Bronzed - - Sullivan St. bakery - - Sunday Dreamin' - - Sunflower - - Sunflower Bean - - Supercuts - - Surprise! Surprise! high rents - - Sushi Fan - - Sushi by M - - Switch - - Szechuan Mountain House - - T Swirl Crepe - - T-swirl crêpes - - TKettle - - TR Crandall Guitars - - TV Grieve - - Tabby Twitch - - Table Verta - - Tacombi - - Tacos El Porky - - Tahini - - Tailors Atelier of NY - - Taiwan Bear House - - Takahachi - - Talking Heads - - Taqueria Diana - - Tasty Garden - - Tatyana - - Taverna Kyclades - - Tea Dealers - - Tea Drunk - - Ten Degrees Bistro - - Terroir - - Tesla - - Thai Terminal - - Thai me up - - Thaimee Table - - Thayer - - The Athenian NYC - - The Bank - - The Barrel - - The Black 6 Coffee Trading Co. - - The Blacklist - - The Blind Pig - - The Braised Shop - - The Brant Foundation - - The Deep End Club - - The Dip - - The Dolar Shop - - The East Village Brownstone - - The East Village Film Series - - The East Village New Deli - - The Eddy - - The Eyes of Laura Mars - - The French Connection - - The High Line - - The Hole - - The Immigrant Tap Room - - The Joint - - The Lions Bar & Grill - - The Marvelous Mrs. Marvel - - The Mayfly - - The Mighty Quinn - - The Nite Owl - - The Nugget Spot - - The Pink Elephant - - The Red Room - - The Royal - - The Space at Tompkins - - The Standard hotel - - The Summer of Bees - - The Swarm - - The Thirsty Scholar - - The University of the Streets - - The Upper Rust - - The V-Spot - - The Village - - The Virgins - - The Wren - - Theatre Condos - - Think Coffee - - Third Avenue East Village streetscenes - - Third North dorm - - Thirstea Café tea shop - - Three Seat Espresso & Barber - - Tiffany's - - Timbuktu - - Time Square - - Tina's Cuban Cuisine - - Tinkersphere - - Tiny Empire - - Tio Pio - - Todd Hase - - Tokmpkins Square Greenmarket - - Tom Verlaine - - Tom's Juice - - Tompkins Square Bar - - Tompkins Square Dog - - Tompkins Square Park Art Bar - - Tompkins Square Park Bagels - - Tompkins Square Park quinzhee - - TonkatsuYa - - Tony's Famous Pizza - - Topshop - - Toucan and the Lion - - Town Hall Meeting - - Trader Joe's Pronto - - Tramonti Pizza - - Tre Scalini - - Triangle Shirtwaist Factory Fire - - Tribeca Pediatrics - - Tsukimi - - Tyson Beckford - - Ukrainian National Home - - Union Square Greenmarket - - Union Square Supply - - Unleashed by Petco - - Untitled - - Urban Lobster - - Urban Tree Etiquette Signs - - Utrecht - - VVN’s Tea - - Vanessa's Dumpling House - - Vanishing New York - - Veeray Da Dhaba - - Vegan Grill - - Vegtown Juice - - Veloce Pizzeria - - Verdigreen - - Vicky's - - Village Cafe & Grill - - Village Farm and Grocery - - Village Joker - - Village X - - Vin Sur Vingt Wine Bar - - Vincent D'Onofrio - - Vinyl - - Viva Cucina - - Vogue - - Vspot - - W.H. Auden - - WNYC - - Walmart - - Walter Kühr - - Walter Wlodarczyk - - Wanyoo Café - - Washington Mutual - - Wen Hui Ruan - - Wen Ruan Hui - - Wendy O. WIlliams - - Wi-Fi - - Wild Mirrors - - Wild Rabbit Coffee - - Will Smith - - William Burroughs - - Wingstop - - Wolfgang Puck - - Woody Allen - - XEO Cantina - - XYZ - - Xi'an Famous Foods - - Xing Fu Tang - - Y Cafe - - YGF Malatang - - Yam! - - Yankee Tavern - - Yi Fang Taiwan Fruit Tea - - Yiddish Theatre Walk of Fame - - Yo La Tengo - - Yoli Restaurant - - Yoo's Convenience Store - - You'll never eat lunch in this Roastown again - - Young Republicans - - Yubu - - Yummy Hive - - ZaabVer Thai - - Zagat's - - Zaitzeff - - Zen Palate - - Zhe Zhe - - Zi Pep - - Ziegfeld Theatre - - Zipper - - Zucker Bakery - - a dive bar no more - - abs - - afternoon delight - - air - - air pollution - - alarms - - aliens - - angry neighbors - - animal rights - - annoying people - - apartments for rent - - art in odd places - - asphalt - - assholes - - backhouses - - backpacks - - baked apple - - banana - - band ads - - bands that make you go zzzzzzzzzzzzzzzzzz - - bandshell - - bars that I've never been to - - basements - - bats - - bawdy turbulence - - being an asshole - - being boring talking about how much better things were then - - being really dramatic - - being too earnest - - big-ass condos - - bike corrals - - bikers - - bikini models covered in mud - - black duvetyne - - bling - - block party - - blond-tailed squirrel - - bobbleheads - - bomb scare - - bombogenesis - - book excerpt - - books that we will never read - - bookstores - - bouncy rides - - bowling - - break ins - - breakfast - - bricks - - broken hips - - brokers - - bubble man - - buildings - - buses that caught fire - - cafes - - camels - - campers - - cat cafe - - celebrities - - chairs in trees - - cheap beer - - cheesy TV commercials - - chess tables - - classic New York - - classics - - clever ideas - - closed for some reasons - - closings - - clothing exchange - - cobblers - - cold case - - collision - - comments - - community affairs - - community journalism at its finest - - community spirt - - complaints - - compost - - concrete blocks - - cone-eating sewer grates - - controversies - - cooling centers - - costumes - - crack - - cracks - - crime beat - - crimes - - crosses - - curb your dog - - curfew - - dancing - - dangerous chicken - - date night - - dating - - de-dorm isn't really a word - - deliveries - - dessert trucks - - dicks Penetrator - - diners - - disappearing New York - - disaster relief - - discarded hearts - - discarded toilets - - disco - - divorces - - do not try this at home - - doors - - dorks with cameras - - driving in New York - - drug store wars - - dude - - duh - - easter bunnies - - eat me - - economy - - election 2022 - - electrical shock - - every Friday at 5. music videos - - fake news - - fake orgasms - - famous bikes - - father's day - - ferrets - - film shoots - - fire escapes - - fire scare - - fireballs - - first world problems - - fish heads - - fish market - - flashbacks - - food halls - - foosball - - for lease - - former snow - - found photos - - free meals - - free screenings - - friendly as the DMV - - fruit stand - - fuck yeah - - fun landlords - - fun with the media - - fungi - - gangsters - - gardens - - giant pencils - - giving cats a bad name - - glinting East River - - goats - - good day for a road trip to the far ends of the Earth - - good deals - - good morning - - good things - - great bands - - great concerts - - great horse races - - great places - - great songs - - groceries - - gross-looking food - - gumball machines - - guns - - gushers - - hackers - - halal carts - - happy hours - - hardcore - - have bedbugs will travel - - headlines like Time Out New York coverlines - - heh - - hide - - hit-and-run - - hmm -- beer and cupcakes - - hoarding - - hoaxes - - holiday decorations - - holiday markets - - homemade videos - - horror shows - - horses - - hostels - - hot ass - - hot dog vendors - - hot pot - - housing costs - - how many exclamation points can I use in one post - - iGirl - - ice skates - - ices - - idiots who drive stupid cars - - if you see something say something - - important questions - - important research - - in memorium - - independent stores - - inflatables - - jet skis - - jugs of urine - - just another Saturday night - - kale - - killjoys - - kissing - - kitchen sinks - - knitty gritty - - lakes - - landmarks - - laundro-cafe - - le Petit Parisien - - leads - - leaks - - legal washer dryers - - let's get drunk - - life's a beach - - lingerie - - linkbaiting - - litter - - little puppies - - local TV news sucks - - local businesses - - looting - - lowriders - - lunar eclipse - - luxury - - mail - - mailboxes - - matcha tea - - matresses - - meat - - memorials - - mh PROJECT nyc - - mice - - mirrors - - missing paintings - - mistakes - - mom and pop - - movie theaters - - moving on up - - moving to Manhattan - - my Maserati does 185 - - mysterious holes - - mysterious vans - - n'eat - - nasty-smelling smoke - - new - - new hotel - - new storefront - - new url - - ngine 28 and Ladder 11 - - nice days - - no ball playing - - nude paintings - - nudity - - oil - - old TV shows - - op-ed - - open fire hyrdrant - - open houses - - opening parties - - openings 2019 - - order from Odessa - - original photography - - ousting tenants - - owls - - packages - - panic shopping - - panuozzo - - parakeet - - parking meters - - parlors - - partying - - pass me a tuna roll - - pasta your way - - pastrami - - pathmark - - pavement - - peace - - peeing on the subway - - pests - - petitions - - pilates - - pillows - - pink houses - - pink shirts - - pink sports bras - - pit bulls - - pitbulls - - pity purchases - - pizza wars - - places that I love - - plastic - - polar vortex - - police cars - - population - - pork pie hats - - possum - - potato chips - - pretty much lost all control of this site now - - puns - - pussies - - putting naked woman as a tag to see how many people will be disappointed - - ragers - - rain and wind - - rainbow - - random acts of kindness - - readers report - - reality shows - - record covers - - red zebra sweaters - - red-taild hawks - - refrigerator - - renderings - - rent control - - rent regulations - - robot butlers - - roof parties - - rooftop garden - - rotisserie chicken - - running a joke into the ground - - salons - - salt spreader - - sand - - sandbox - - sausage - - saying fuck - - scandals - - scanvenger hunt - - screams - - secret bars - - seized - - sharks - - shattered glass - - shaved ice - - shoddy reporting - - shoe repair shops - - shoes - - shorts at the office - - sidewalk fires - - single-story buildings - - sketchy blue boxes - - sleeping - - sleet - - slow deaths - - small apartments - - small victories in the East Village - - smashing pumpkins - - smokeshop - - snow cream - - snow in April - - snow in November - - snowboarding - - snuggies - - spring 2016 - - spring 2018 - - spring 2023 - - spring forward - - star girl - - starfucking - - stolen dogs - - stop the violence - - street repairs - - street scenes - - streetscenes - - stupid names - - sublets - - subways - - summer 2018 - - summer 2019 - - summer 2021 - - swanky apartments - - synagogues - - table tennis - - tacky marketing - - taco carts - - tag sale - - tall people - - tax day - - tea - - tearing apart the East Village - - teddy bars - - teeth - - tenant rights - - the Batmobile - - the Buzzcocks - - the Citizens of the Anthropocene - - the Cooper Building - - the Copper Still - - the Dessert Kitchen - - the Gap - - the Gas Station - - the Gray Mare - - the Hairy Lemon - - the Jam - - the Kardashians - - the Lisa Project - - the Long Pour - - the Low Line - - the Mecca of Hair - - the Middle Collegiate Church - - the Pineapple Club - - the Plaza - - the Specials - - the Wayside - - the Who - - the World Class Learning Academy - - the dildo of darkness - - the doorshitter - - the end of the world - - the fast and the furious - - the future of the East Village - - the good ol bad days - - the great dry cleaning war of 2009 - - the price of things - - the race for mayor - - the way we were - - theft - - things that aren't funny - - things that moo - - things that sound dirty - - things to do that don't involve bars - - things we probably don't really need - - think this is funny fuckers? - - thrift - - tow trucks - - traditions - - tree stump art - - tree well - - trenches - - trendspotting - - tubes of beer - - turkey vultures - - typewriters - - typos - - udder nonsense - - unemployment - - unhoused residents - - unicorns - - vacant storefronts - - vanity plates - - vegetables - - video shoots - - video tapes - - videos we will never watch - - watch out - - water tanks - - water towers - - waxing - - we're No. 1 - - we're going to need my bank branches then - - weather channel - - weiners - - welcome to the neighborhood - - what the fuck is bubble tea? - - what things cost - - whippets - - why it's tough to find a parking spot - - wildly speculating - - will EV Grieve ever use the Gary Busey tag - - winter - - winter 2019 - - winter 2021 - - your cheatin' heart - - youth is wasted on the young - - yuck - - yule log - - Íxta - - '" the Bowery' - - '"Automats' - - '"Midsummer: A Banquet"' - - '#TrashTara' - - $1 - - '&Beer' - - '&pizza' - - '''Most Interesting Man in the World''' - - 00 + Co. - - 000 Steps A Hungarian Bookstore - - 1 Eleven - - 1 Great Jones - - "10" - - 100 Norfolk Street - - 100 Second Ave - - 100% Healthy - - 10000 Steps A Hungarian Bookstore - - "10009" - - 103 St. Mark's Place - - 104 2nd Ave. - - 104 E. 7th St. - - 105 Avenue B - - 106 Avenue C - - 106 E. 10th St. - - 107 First Avenue - - 10th Avenue - - "11" - - 11 Avenue A - - 11 Great Jones - - 11 Tigers - - 110 E. 10th Street - - 110 E. Seventh St. - - 110 First Ave. - - 111 Fourth Ave. - - 111 St. Mark's Place - - 111 Third Ave. - - 112 4th Ave. - - 113 E. Second St. - - 114 E. First St. - - 114 E. Seventh St. - - 114 First St. - - 115 Fourth Avenue - - 115 Second Ave. - - 116 E. 4th St. - - 119 Avenue A - - 12 Avenue A - - 121 St. Mark's Place - - 122 E. 10th St. - - 122 E. Seventh St. - - 125 E. Fourth St. - - 125 E. Seventh St. - - 127 E. 7th St. - - "128" - - 129-131 Avenue C - - 12th Street Al House - - 13 E. Seventh St. - - 13 First Ave. - - 130 E. 12th St. - - 130 E. 7th S. - - 131 1st Ave. - - 132 1st Ave. - - 135 3rd Ave. - - 135 First Ave. - - 136 E. Third St. - - 138 Ludlow St. - - 139 E. Houston St. Sunshine Cinema - - 139-141 Ludlow St. - - 14 Second Ave - - 14 St. Mark's Place - - 14 Words - - 141 E. Houston Street - - 141 Houston St. - - 145 Fourth Ave. - - 147 1st Ave. - - 147 E. Houston St. - - 149 1st Ave. - - 14A - - 14t Street - - 14th St Lotto & Magazine - - 15 Avenue B - - 150 E. Second St. - - 153 First Ave. - - 154 Ludlow St. - - 155 Avenue B - - 155 Avenue C - - 159 E. Second Ave. - - 16 St. Mark's Place - - 161 Ridge St. - - 165-167 Avenue A - - 166 Second Ave. - - 166 Second Avenue - - 169 Avenue A - - 169 Bar - - 171 Suffolk St. - - 172 Avenue B - - 174 Rivington Street Bar and Gallery - - 175 E. Houston St. - - 179 E. Third St. - - 179 Essex St. - - 180 1st Ave. - - 182 E. Seventh St. - - 182-184 Avenue A - - 186 Avenue A - - 188 E. Second St. - - 1889 Lexington Ave. - - 189 Avenue A - - "1913" - - 192 Second Ave. - - "1928" - - "1929" - - "1933" - - 1940s - - "195" - - 195 Avenue C - - "1968" - - 197 2nd Ave. - - 197 E. 3rd St. - - 197 E. Seventh St. - - "1970" - - "1972" - - "1974" - - "1975" - - 198 Avenue A - - "1983" - - "1986" - - "1988" - - "199" - - 199 Avenue B - - 199 E. Fourth St. - - 199 Second Ave. - - "1998" - - "1999" - - 1st Avenue - - 20 St. Mark's Place. Grassroots Tavern - - 201 Second Ave. - - 201 and 203 East Fourth Street - - "2010" - - "2011" - - 2014 sucks - - "2019" - - 2020 openings - - "2021" - - |- - 2021 - Oh-K! Another Korean-style hot-dog chain to give the East Village a go - - Oh-K Dog - - 2021 closures - - "2022" - - "2023" - - 203 E. 13th St. - - 204 Seventh Street - - 206 First Ave. - - 207 E. 4th. St - - 21 Club - - 21-23 - - 210 Avenue A - - 210 E. 5th St. - - 210 First Ave. - - 212Wall - - 214 E. 9th St. - - 216 Bowery - - 216 E. 13th Street - - 217 E. 3rd St. - - 220 Avenue a - - 222 Bowery - - 222 E. 12th St. - - 224 Avenue B - - 226 E. 13th St. - - 226 E. 14th St. - - 227 E. 14th St. - - 228 Avenue B - - 228 E. 13th St. - - 22nd Street - - 23 Avenue A - - 230 E. Seventh St. - - 234 E. Seventh St. - - 235 Second Ave. - - 237 First Ave. - - 24 Avenue C - - 24 John Street - - 243 E. Seventh St. - - 244 E. 7th St. - - 244 E. Seventh St. - - 245 E. Sixth St. - - 246 E. Fourth St. - - 249 E. Houston St. - - 25 E. Seventh St. - - 250 E. Hoouston St. - - 250 E. HoustonSt. - - 251 E. Houston St. - - 255 E. Second St. - - 262 E. Seventh St. - - 264 Bowery - - 264 E. 10th St. - - 266 Bowery - - 269 E. 10th St. - - 27 Cooper Square - - 27 E. Fourth St. - - 27 Stuyvesant St. - - 276 Bowery - - 279 E. Houston - - 280 Bowery - - 282 Bowery - - 29 Avenue B - - 292 Theatre - - 294 Houston St. - - 295 E. 8th St. - - 298 Mulberry St. - - 299 Bowery - - 2nd Ave. Convenience Store - - 2nd Street Block Association - - 300 E. Fifth St. - - 302 Bowery - - 303 E. 12th St. - - 304 Mulberry St. - - 309 E. 5th St. - - 310 E - - 310 E. Ninth St. - - 311 will get a workout - - 317 E. Eighth St. - - 319 E. 10th St. - - 319 E. Sixth St. - - 320-326 E. Sixth St. - - 321 E. Sixth St. - - 325 E. 14th St. - - 326 E. 14th St. - - 328 E. Sixth St. - - 329 E. 10th St. - - 33 1st Ave. - - 330 E. Sixth St. - - 331 E. 14th St. - - 331 E. Ninth St. - - 332 E. 14th St. - - 33rd Street - - 33rd and Madison - - 345 Cantina - - 347 E. 4th St. - - 347 E. Fifth St. - - 348 Lafayette - - 35 E. Seventh St. - - 35 First. Ave. - - 350 Bowery - - 350 Lafayette - - 352 Bowery - - 353 Bowery - - 354 Bowery - - 36 Third Ave. - - 364 E. 8th St. - - 367 Bowery - - 36th Street - - 37 Avenue A - - 37 Vibrations - - 371-373 E. 10th St. - - 377 E. 10th St. - - 377 E. 10th Street - - 38 E. First St. - - 3E3 - - 3rd Avenue - - 3rd Avenue EL - - 4/20 - - 40 Bleecker St.. - - 40 Gold Street - - 404 E. 9th St. - - 405 E. 13th St. - - 406 E. 13th St. - - 407 E. 6th St. - - 41 Cooper Square - - 41 Great Jones - - 41-43 E. Seventh St. - - 417 E. Ninth St. - - 424 E. 10th St. - - 426-420 E. 14th St. - - 428 E. 10th St. - - 428 E. 13th St. - - 428 E. 14th St. - - 428 E. 9th St. - - 43 St. Mark's Place - - 432 E. 10th St. - - 440 E. 14th St. - - 441-445 E. Ninth St. - - 448 E. 13th St. - - 45 Bond St. - - 45 E. 1st St. - - 45 John Street - - 45-51 Avenue D - - 47 Avenue A - - 47 St. Mark's Place - - 49 E. Seventh St. - - 49 Seventh St. - - 4DX - - 4th Street - - 50 years - - 504-508 E. 11th St. - - 506 E. 13th St. - - 507 E. 6th Street - - 508 E. 12th St. - - 51 Avenue B - - 510 E. 12th St. - - 52 E. 7th St. - - 52 E. Seventh St. - - 520 E. 11th St. - - 521-523 E. 12th St. - - 528 E. 13th St. - - 529 E. 13th St. - - 53 Avenue B - - 53-55 First Ave. - - 530 E. Fifth St. - - 534 E. Fifth Street - - 536 E. Fifth St. - - 53rd Street - - 54-56 Third Ave. - - 540 E. Sixth Street - - 57 1st Ave. - - 57 St. Mark's Place - - 57th Street - - 58 3rd Ave. - - 58 Avenue B - - 58 E. Seventh St. - - 6 E. Second St. - - 6 First St. - - 6 shots - - 600 E. Sixth St. - - 601 E. 12th St. for rent - - 602 E. 12th St. - - 61 E. Seventh St. - - 610 E. 9th Street - - 62 Third Ave. - - 624 E. Ninth St. - - 629 E. Sixth St. - - 64 Third Ave. - - 646 E. 14th Street - - 65 St. Mark's Place - - 66 E. Seventh St. - - 66 Second Ave. - - "666" - - 67 Avenue D - - 67 Second Ave. - - 68 2nd Ave. - - 6th Street Kitchen - - 6th Street community center - - 7 Second Avenue - - 7-Eleve - - 70 Avenue A - - 73-75 E. Third St. - - 735 E. Ninth St. - - 743 E. Sixth St. - - 75 E. Second St. - - 77 E. 3rd S - - 77 Ludlow - - 77. E. Seventh St. - - 79 E. Second St. - - 79 Second Ave. - - 7th Precinct - - 7th and A - - 8 Ball Community - - 8 Crown Trade - - 8 tracks - - 8-Bit Bites - - 813 Broadway - - 82 E. Third St. - - 827-831 Broadway - - 86 E. Seventh St. - - 87 Second Avenue - - 88 3rd Ave. - - 90 E. 10th St. - - 91 E. Seventh St. - - 93 E. 7th St. - - 94 Avenue C - - 95 E. Seventh St. - - 96-98 Avenue A - - 99-cent store - - 99¢ and Up Magic Deals - - 9th Street - - ': 13th Street' - - ': 38-48 Second Ave.' - - ': East River Park' - - A Day Without Immigrants - - A Walk Around the Block - - A-1 Music - - A10 Kitchen - - ABC - - ABC Animal Hospital - - ABC Playground - - Aaron Spelling - - Ab Lounge - - Abby Rosen - - Abe Lebewohl - - Abe Vigoda - - Abetta Boiler & Welding Service - - Abraham Lincoln - - Abrons Arts Center - - Aby Rosen - - Accidental Bar - - Ace of Cuts - - Acme - - Adam Zhu - - Adam from Canarsie - - Adam's Deli - - Adda Indian Canteen - - Adler - - Aeon Bookstore - - Affirmed - - Afrika Bambaataa - - After Earth - - Against the Grain - - Agave Azul - - Agavi Juice - - Agozar - - Aisling House - - Alan Shenker - - Alan Vega - - Alanis Morissette lyrics for headlines - - Albert Ayler - - Alec Baldwin - - Alex Picken - - Alex Shoe Repair - - Alexandria Ocasio-Cortez - - Alexi Lubomirski - - Ali Smith - - Alibaba Smoke Shop - - All Tomorrow's Parties - - Allan Tannenbaum - - Allegro Coffee Roasters - - Allen Henson - - Allouche Gallery - - Ally Sheedy - - Alpha Women - - Alphabet 99-Cent Fresh Pizza - - Alphabet City Neighbors - - Alphabet City Sanctuary - - Alphabet Grocery - - Alphabet Pizza and Deli - - Alright Frankie - - Alton Sterling - - Ama Raw Bar - - Amalgamated Lithographers of America - - Amanda Burden - - Amazon Fresh - - Ambiance - - American Buffalo - - American Dream Gourmet Deli - - Amos Poe - - Amsterdam Avenue - - Amsterdam Billiards - - Amy Adams - - Anarchy Road - - Anders Fogh Rasmussen - - Anderson Cooper - - Anderson Theatre - - Ando Patisserie - - Andrea Fabano - - Andrea Peyser - - Andrew Glover - - Andrew Kowalczyk - - Andrew McCarthy - - Andy Gil - - Angel "LA II" Ortiz - - Angel Memorial House - - Angelika Film Center - - Angels Boutique - - Anheuser-Busch trucks - - Anjelly - - Anna Colombia - - Anna Wintour - - Anne Frank - - Anne Hathaway - - Anne Shirley - - Annie - - Anthony Lane - - Anthony Weiner - - Aoi Kitchen - - Appas Pizza - - Apple Bank - - Apple Maps Car - - Appolodine - - April 15 - - April 2018 - - April 2019 - - April 2020 - - April 2021 - - April 2022 - - April 2023 - - April 2024 - - April Fools on April 8 - - April in review - - Archie - - Area 140 First - - Arka - - Arlo and Esme - - Arpad Miklos - - Art Gotham - - Art Loisaida Foundation - - Art on A - - Art on A Gallery and Shop - - Artists Row - - Ash Wednesday - - Ashiya Sushi - - Ashley Kristen Alexandra Nina Vanetta DiPietro Dupre - - Asian American International Film Festival - - Asian Wave - - Asian hate - - AssCastles - - Astor Barber All Stars - - Astor Place 6 train - - Astor Wines & Spirits - - Astpr Place cube - - Atelier Sucré - - Atla - - Atlantic City - - Au Za'atar - - Au Za’atar - - Aubrey O'Day - - Audio Visual Arts - - Augers Well - - Augurs Well - - August 10 - - August 2018 - - August 2020 - - August 2022 - - August 2023 - - August Fridays - - Aum Namaste Book & Crystal Gallery - - Aum Shanti - - Aureus Contemporary - - Austin Mahone - - Austrian wine taverns - - Autre Kyo-ya - - Autumn - - Avalon Chrystie Place - - Ave. A Deli and Food - - Avenue - - Avenue A Copy Center - - Avenue A Copy Center & Shipping Outlet - - Avenue A Mini Market - - Avenue A pipeline - - Avenue C Laundromat - - Avenue C Studio - - Avenue D and 3rd Street - - Avenues - - Avenues for Justice Way - - Avrenue B - - Avänt Candle - - Axe - - Azure Arts - - B Cup - - B-Bar & Grill - - BAM - - BBC - - BHQFU - - BLT - - BRUD - - Ba - - Baar Baar - - Babe Ruth - - Babeland - - Babs Home and Pantry - - Baby Jane - - BabyCakes - - Babyland - - Baci & Vendetta - - Back in the New York Groove - - Backstreet Boys - - Bad Company - - Bad Lieutenant - - Bagel Deli - - Bald Eagles - - Balducci's - - Balinese paintings - - Ball Park Lanes - - Balloon Porn - - Baltimore - - Banco Popular - - Bandslam - - Bank Street Head Start - - Bank the Nine - - Bar 81 - - Bar Lula - - Bar Lulu - - Bar Miller - - Bar Show 08 - - Bar Verde - - BarBacon - - Barbara Corcoran - - Barbara Feinman Millinery - - Barbara Shaum - - Barbie - - Barbone - - Barclays Cycle Hire - - Bargain - - Barney Rosset - - Barry Manilow refrigerator magnets - - Basic Plus - - Bathhouse Studios - - Batsu - - Baya Bar - - Becky's Dips - - Bed-Stuy - - Bee Liquors - - Beer & Cigars - - Beer Factory - - Beer Store - - Beetlehouse - - Beetlejuice - - Beijing - - Bejeweled NYC - - Belgian fries - - Bella Tiles - - Bella's Beauty Supply - - Belle Helmets - - Bellevue - - Below 7th - - Belse - - Belse Restaurant - - Ben Ari Arts - - Ben Gazzara - - Ben's Deli & Grill - - Benemon - - Benjamin Restaurant & Bar - - Benton's old fashioned - - Bergdorf Goodman - - Berlin - - Berlin East - - Beronberon - - Berry Mania - - Best Buy - - Betelnut - - Betola Espresso Bar - - Bibi - - Bibi Wine Bar - - Big A - - Big Arc Chicken - - Big Ash - - Big Bar - - Big Daddy - - Big in England - - BikeFix NYC - - Bill Binzen - - Bill Murray throw pillows - - Bistro Avenue - - Bites of Xi'an - - Black Gumball - - Black History Bowl - - Black Seed Pizza - - Blake Lively - - Blind Pig - - Blizzard 2015 No. 2 - - Block Fair - - Bloods - - Bloomberg's Robot Army - - Blue & Cream - - Blue Angels - - Blue Bird - - Blue Owl - - Blue Quarter - - Blue Velvet - - Blueestockings - - Bluemercury - - Blythe Ann's - - Boats N Hoes - - Bob Dylan - - Bobby - - Bobby 'Books' Brooks - - Bobby Gorman - - Bobby Hill - - Bobby Steele - - Bobby Williams - - Bobby’s Night Out - - Bodhi - - Body Shop - - Boglioli - - Bohemian Rhapsody - - Bon Jovi - - Bona Fides - - Bonaparte's Consignment - - Bonefade - - Bonnie and Clyde - - Book Club Bar - - Book Swap - - Bored 2 Death - - Bored Ape Yacht Club - - Boris and Norton - - Borrachito - - Boston Globe - - Boston Red Sox - - Boulevard of Broken Dreams - - Boulton & Watt - - Boutique 67 - - Bowery Bliss - - Bowery Boogie - - Bowery Bums - - Bowery Dish - - Bowery Road - - Bowery Social Justice Short Film Festival - - Brad Hoylman - - Bravo Pizza - - Bravo Supermarkets - - Brazilia Café - - Breathless - - Breeze Nails - - Breonna Taylor - - Brick Wine Bar - - Brickman and Sons - - Bright Audio - - Bright Horizons - - Bring It Back - - Bring it On references in headlines - - Bristol Palin - - BroHerds - - Broadway Apothecary - - Broadway Windows - - Brock Turner - - Brooklyn Roasting Company - - Brownies - - Bruce Lee - - Bryant Park - - Bud Light Lime Display Tree - - Buddha Garden - - Budget car rental - - Budweiser - - Burger Town - - Burger-Klein - - Burritoville - - Bushwick - - Busy Bee Bikes - - Butch Cassidy - - Butthole Bandits - - Buy Nothing Day - - Buzzcocks - - By Name - - C is for Charlie - - C'est Magnifique - - C-Lounge - - CB - - CBGBs - - CC Cyclery & Co. - - CC Cyclery and Company - - CHristmas in Rockefeller Center - - CJ Tattoo - - CNBC - - CNN - - COVID 19 - - COVID-29 - - COZMOS - - Cabaret Law - - Cabin - - Cabin on 9th - - Caddy swim - - Cadet - - Cafe Adela - - Cafe Bari - - Cafe Edison - - Cafe Gigi - - Cafe Joah - - Cafe La Fe - - Cafe Rama - - Cafe Zaiya - - Cafe de L'Enfe - - Caffe Bene Bistro - - Café Floral Delight - - Café Maud - - Cagen - - Cakes by Klein - - Cakeshake - - Calexico - - Californication - - Call Me By Your Name - - Camp David - - Canal Pizza - - CannaCulture NYC - - Cantina Cubana - - Capa Café - - Captain America - - Cara Marie Piazza - - Carnegie Deli - - Carnitas Ramirez - - Carnitas Ramírez - - Casa Bond - - Casa Gusto - - Casablanca - - Casse-Cou Chocolate - - Cassette Store Day - - Casual Grill - - Catherine Keener - - Catherine Muller - - Catholic Worker - - Caviarteria - - Celebrating the Crone - - Cellino & Barnes - - Cello's Pizzeria - - Census 2010 - - Census 2020 - - Central Park SummerStage - - Certain Lives - - Cha-An Bonbon - - Chaim Joseph - - Champions Martial Arts - - Change of Habit - - Channel 7 - - Charles - - Charles Cushman - - Charlie - - Charlie Kaufman - - Charlie Sheen - - Charlie Victor Romeo - - Charlie's - - Charshanbe Suri - - Che - - CheLi - - Cheer New York - - Cheese Grille - - Cheetah Chrome - - Chef Tan - - Chelsea Girls - - Cher - - Cherry trees - - Chest of Pleasure - - Chewie - - Chewie Get Us Out of Here - - Chez Betty - - Chi Snacks - - Chic-hen - - Chick-In - - China 1 - - China Town Restaurant - - Chinatown fire - - Chinese restaurants - - Chino Garcia - - Chizza - - Chomp Chomp Thai Kitchen - - Chong Qing Xiao Mian - - Chow Mein - - Chris Santana - - Chris Stein - - Christeene - - Christian Slater - - Christmas 2012 - - Christmas 2017 - - Christmas 2018 - - Christmas 2020 - - Christmas Day - - Christmas Eve - - Christmas in May. Gruber MacDougal - - Christmas on Mars - - Christopher Street - - Christopher Walken - - Chrysler Building - - Chrystie Street - - Chuck Berry - - Chuck Close - - Chupa Barbara Insurance - - Cienfuego - - Cinderella - - Cinema - - Cinema Nolita - - Cinema Village - - Cinnamon Garden - - Cipriani - - Circa Tabac - - Citadel Property Management Corp. - - Citizens Committee for New York City - - City Fun - - City Gourmet Cafe - - City MD - - Citysearch East Village - - Citysearch. Ryan's Sports Bar - - Claire Forlani's disembodied scotch ad hands - - Classic Kicks - - Classic Stage Company - - Clearview Cinemas - - Clemente Soto Vélez Cultural & Educational Center - - Cleveland - - Cliff Mott - - Cliff Street - - Clockwork Bar - - Clover Deli - - Clyde Romero Memorial Garden - - Co-Op Sale - - Coca Crystal - - Cockshark - - Coco Fresh Juice and Tea - - Coco McPherson - - Codex - - Coffee Project - - Coldplay - - Cole Porter - - Colin Simpson - - Collective Hardware - - College Food Pantry - - Colonnade Row - - Colors - - Colt 45 - - Columbua Avenue - - Columbus Day - - Community 54 - - Community Grocery & Candy - - Compare Foods - - Con Ed ConEd substation - - Conan O'Brien - - Condo Fucks - - Condo finishes - - Connelly Theater Upstairs - - Connie Bush - - Continuum Cycles - - Convive Wine & Spirits - - Cool Gear - - Cooper 35 - - Cooper Hotel - - Cooper Square Residence Hall - - Copper Square Hotel - - Corey Capers - - Cornell Edwards Way - - Corner Soul - - Cosmic Cat Cafe - - Cotan - - Couchon3rd - - Coup - - Cozy Lounge - - Crack Pie - - Cragslist - - Crain's - - Crazy Burger - - Crazy Legs Conti - - Creative Little Garden - - Crepe Master - - CroNuts - - Croman' in the rain - - Cromanation - - Crops for Girls - - Crossfit East Village - - Crown Heights - - Crown of shit - - Cubo New York - - Culturefix - - Cuomo - - Curley's - - Current Coffee - - Curry Flavor - - Curtis Blow - - CycleBar - - Cáit O’Riordan - - Côte - - C’est Magnifique - - D & D Salvage - - DIY - - DJ Lenny M - - DM Restaurant - - DNA - - DNAInfo - - DV Mavens - - DVD Funhouse - - DVDs - - Daddy Burger - - Dairy Dan - - Dairy Queen - - Dallas - - Damages - - Dan Goldman - - Dan Marino - - Dance Parade 2008 - - Dance Parade 2016 - - Daniel Delaney - - Daniel's Bike Shop - - Danny Stiles - - Darkstar Coffee - - Darth Vaper - - Daryl Hall closed my banh mi shop for a night - - Dashane Santana - - Dave Crish - - David Blaine - - David Carradine - - David France - - David Freeland - - David Harbour - - David Johanse - - David Lee Roth - - David S - - DayLife - - December 2018 - - December 2019 - - December 2020 - - December 2021 - - December 2023 - - Decision 2016 - - Deep Playa Bike Ride - - Deli Convenience - - Delicacy - - Delicatessen - - Delphine le Goff - - Deluge - - Dennis Hopper - - Department of Efficiency - - Depeche Mode - - Desnuda - - Deth Killers of Bushwick - - Dev Hynes - - Devo - - DexterDexterDexter - - Dharma Punx - - Dhom - - 'Diablo Royale Este opens today: features two bars' - - Diamond Jim Brady's - - Diane McLean - - Diaper Genie - - Dieci - - Digital Society - - Ding a Ling - - Dinosaur Hare - - Dirty Dancing - - Dirty Dancing references - - Disco Donut - - Disco-O-Rama - - District attorney - - Divya's Kitchen - - Dockers - - Dodge Landesman - - Dodge balls - - Dog Beach - - Dog shit days of summer - - Doja Cat - - Dollar Plus - - Dollar and More - - Dolly Parton - - Doma Food and Drinks - - Dominic Philbert - - Dominic Pisciotta - - Domino - - Don Fleming - - Don King - - Don't fuck with Joe - - Donahue - - Donald - - Donner and Blitzen's Reindeer Lounge - - Donnybrook - - Dora Park - - Dora and Winston - - Dora's Restaurant - - Dore Ashton - - Double Chicken Please - - Double Crown - - Doublewide - - Doughnut Plant - - Down & Out NYC - - Downtime - - Downtown Girls - - Dr. Dave - - Dr. David Ores - - Dr. Robert Glatter - - Dr. Toothy - - Dragon Fest - - Drained - - Drake - - Dream Baby - - Drew Carey - - Drew Hubner - - Drexler's - - Drinking Water Sampling Stations - - Drv-In - - Dry Bar - - Dry Dock Pool - - Dumpling Man - - Dumpling N' Dips - - Dunae Reade - - Dunzo Journalism - - Duo Cafe - - Duo NYC - - Duran Duran - - Dusty Buttons - - Dutch Street - - E-Nail - - E-smoke - - E. 10th St. Finest Deli - - E. 64th Street - - E. 7th St. - - E. Vil - - E.U. - - E14 MedArts - - EMTs - - ESPN - - EV Grieve doesn't know a thing about Lord of the Rings - - EV Grieve drinks lead - - EV Grieve has heatstroke - - EV Grieve is blind - - EV Grieve is lazy - - EV Grieve is now taking Vines of the sun - - EV Grieve is now writing his xtc cassette - - EV Grieve is taking photos of Celine Dion perfume sets - - EV Grieve is taking photos of private documents - - EV Grieve keeps leaving notes from EV Grieve - - EV Grieve keeps posting photos of Citi Bikes - - EV Grieve likes the first few snowfalls of the season - - EV Grieve needs some more hobbies - - EV Grieve never leaves the city - - EV Grieve was walking in Murray Hill - - EV Groeve Etc. - - EV grieve is now interviewing 7 year olds - - EV3 - - EVCS - - EVG is not even trying with headlines like this - - EVG weather - - EVLazarus - - EXPG Studio - - Eak the Geek - - East - - East 10 Street - - East 4th Street Rehab - - East 6th Street shooting - - East 7th Street shooting - - East Fifth Diss - - East Hardware - - East Harlem - - East Houston St. - - East Houston Street Wine & Liquor - - East Houston Wine and Liquor - - East River Blueway - - East River Park Action - - East River Promenade - - East River Side - - East Second Street lot - - East Second Street. East Village - - East Village 3 - - East Village Barber Shop - - East Village Brewery and Beer Shop - - East Village Building Blocks - - East Village Burritos and Bar - - East Village Caffé - - East Village Christmas - - East Village Community Cokbook - - East Village Community School - - East Village Deli & Grill - - East Village Exotics - - East Village Farm - - East Village Jim Joe - - East Village Pizza - - East Village Relief - - East Village Tattoo - - East Village Visitors Center - - East Village Visitors Center and Cafe - - East Village bands - - East Village buildings - - East Village crimee - - East Village crimes - - East Village is popular - - East Village life - - East Village street scene - - East Village streets - - East Village streetscens - - East Village stretscenes - - East Village tsunami warnings - - East Villager - - East Villlages - - East Yoga Center - - Easter in November - - Eastside Market - - Eastside Tavern - - Easy Village - - Eataly - - Eater - - Eats Khao Man Gai - - Eats Village crime - - Eat’s Khao Man Gai - - Eben Klemm - - Ecological City - - Economy Foam - - Ed Hamilton - - Ed Koch - - Ed Shostak - - Ed Skyler - - Edgard Mercado - - Edmund V. Gillon - - Eight Avenue - - Eights Pizza - - Eighty East Tenth - - Eisenberg's Sandwich Shop - - El Carnaval - - El Muchacho - - El Pulpo - - El Sol Brillante Jr. Garden - - Eldridge Street - - Eleanor Rigby - - Election 08 - - Electric Company - - Eleven - - Elim House of Worship - - Eliot Spitzer - - Eliza's Local - - Elk Hotel - - Elk Street - - Ella FItzgerald - - Ellen Turrietta - - Ellesd - - Elliman - - Elmo - - Elvis - - Embassy Suites - - Emey Hoffman - - Eminem - - Emma's Dillemma - - Empanadas - - Empellón Cocina - - Empire Cannabis Clubs - - Empire Smoke Shop - - Eric Bogosian - - Eric Mabius - - Eric Paulin - - Escape from New York - - España en Llamas - - Espoleta - - Essex Flowers - - Ethan Minsker - - Etherea - - Etiquette Vigilantism - - Euphoria Loves Rawvolution - - European Wax Center - - Euzkadi - - Evening Dew Spa - - Everythings Fine Vintage - - Evidence Rule 901 - - Exclusive Smoke Shop - - Exile Above 2A - - Exotic Minature Breeds - - Exquisite Cleaners - - Eyes on Second - - F train Daily News - - FA - - FLicKeR - - FTC Skateboarding - - Fab 5 Freddie - - Fabulous Nobodies - - Factory 380 - - Fall Out Bar - - Fall into the City - - Famous 99-cent Pizza - - Famous Cuts - - Famous Original Ray's Pizza - - Fancy Juice - - FangVan - - Farmers Market - - Farrah Fawcett - - Fast Times at Ridgemont High - - Fat Cat Cafe - - Fatal Attraction - - Fatburger - - Father Pat - - Father’s Heart Ministry Center - - Faye Dunaway - - February 2019 - - February 2020 - - February 2021 - - February 2022 - - February 2023 - - February 2024 - - Fei Ma - - Felix Roasting Co. - - Fennec fox - - Fern Cliff Delicatessen - - Ferrarris - - Festival Calle 6 - - Festival of Ideas - - Fetus Squat - - Fierce Pussy - - Fifth S - - Fifty Paces - - Filing around the East Village - - Fire TV Stick - - First & First Finest Deli - - First Communion - - First Flight Music - - Fisher Space Pen - - Five Points - - Flame Job - - Flamin' Jesus Shots - - Flaming Lips - - Flavorwire - - Fluffy - - Fly - - Fly Girl NYC - - Flyfish Club - - Follia - - Fontana's - - Fonzie - - Food Bank for New York City - - Food for Life at Tompkins Square Park - - Foot Locker - - Foreigner - - Forever 21 - - Forever Yogurt - - Forgotten NY - - Formula Retail Zoning - - Forrest Myers - - Forsythia - - Fort Apache the Bronx - - Foul Witch - - Fountains of Wayne - - Fran Lebowitz - - Francis Bacon - - Frani Bruni - - Frank O'Hara - - Frank Restaurant - - Frank Sinatra - - Frank Stella - - Franklin Park - - Franz Ferdinand - - Frederic Tuten - - Free Cooper Union - - Freeman's Sporting Club - - Freemans Alley - - Fresh Apple Fries - - Fresh Direct - - Freud - - Fridays at 5 Thursdays - - Friend of a Barber - - Friends of Tompkins Square Park - - Frisbee-catching dogs - - From Lucie - - Fucking Awesome - - Full Tank Moto Cafe - - FultonHaus - - Funky Town - - Future You Cafe - - GBGB Gallery - - GOP Hard - - Gaia Lounge - - Gallagher's Steakhouse - - Galleria J Antonio - - Gallery Vercon - - Game of Thrones - - Garage Sale Vintage - - Gardens Rising - - Gary Busey - - Gary Kurfirst - - Gary Oldman - - Gary's Papaya - - Gas House District - - Gelatoville - - Gem Saloon - - Gemina Coffee Shop - - Gen Spa - - Gene Frankel Theater - - Gene SImmons - - Gene Wilder - - Genshinkan Aikido - - Gentrification in Progress - - George Carlin - - George Clooney - - George Hecht Viewing Gardens - - George Schneeman - - Gestations - - Getir - - Giblet - - Gilbert Gottfried - - Gilmore Girls - - Girl Dick - - Gizmo's - - Glenn O'Brien - - Globe Slicers - - Glosslab - - Go Nightclubbing - - GoLocker - - God - - Gold Street - - Golden Crêpes - - Golden Market - - Golden Nugget - - Goldie Hawn - - Goldman Sachs - - Goloka Juice Bar & Health Shop - - Gomi - - Gonzalez y Gonzalez - - Good Friday 2019 - - GoodFellas - - Goodbye New York - - Google Street View - - Got it 4 cheap™ - - Gotham - - Gotham Smash - - Gotti - - Gourmet Garage - - Governors Island - - Grabstein's Bagels - - Grace Church School - - Grace School - - Gramercy Park - - Gramercy Typewriter - - Gramstand - - Grassroots - - Gratin - - Great videos - - Green Acres - - Green Wave - - Greenstreets - - Greenwich Village Country Club - - Greg Masters - - Gregg Allman - - Grey Era - - Griddle Melts - - Grocer John's - - GrowNYC - - Guerrilla gardening - - Gumball - - Gummy bear carnage - - Guns N' Roses - - Guss' Pickles - - Gym NYC - - Gyu-Kaku - - HBO - - Hair of the Dog - - Haiti - - Hal Steinbrenner - - Hall and Oates - - HallowNor'easter - - Hallowee - - Hamilton Fish Recreation Center - - Hampton Jitney - - Hanky Panky - - Hannah Montana - - Hannah Storm - - Hans Smit - - Hanson - - Happy Days references - - Happy Wok - - Hard to Explain - - Harold Hunter - - Harvey Epstein - - Harvey Milk High School - - Harvey Weinstein - - HaveAHeart Studio - - Hawaiian Tropic - - Hawkers - - Hayaty Hookah Bar - - Headless Widow - - Health department - - Healthy Green Gourmet - - Healthy Greens Gourmet - - HearUSA - - Heart of India - - Heathily Deli - - Hedgehog Coffee - - Heidi Klum - - Heidi and Spencer - - Heights + Kenchi - - Heights+Kenchi - - Helen Levitt - - Hell's Village - - Hello Banana Vintage - - Hen House NYC - - Henry - - Henry Miller - - Henry Street Settlement - - Hercules - - Hester Street - - Heterosexuals - - Heyday - - Hi Society - - Hi-Note - - HiLot - - Hidden Grounds Chai & Coffee House - - High Teen Boogie - - Higher Empire - - Hilary Swank - - Hoboken - - Holland - - Holland Tunnel - - Hollywood Hair - - Honey Crepes - - HoneyBrains - - Honeyhaus - - Hook and Ladder II - - Hooters - - Hop Devil Lounge - - Hopper House - - Hot and Crust - - Hotel East Houston - - Hotel New Yorker - - House - - House of Fluff - - House of Munchies - - House of Physical Therapy - - Houston St. - - Howie Pyro - - Howl Arts - - Hudson East - - Huey Lewis and the News - - Hulk Hogan - - Huminska - - Hurr - - Hype Lounge - - I Am Legend - - I Love New York - - I actually liked Roger Moore - - I cannot blow out matches - - I know what you did last summer - - I love the East Village - - I love you man - - I see rich people looking at dead people - - I see stupid people - - I want to believe - - I want to know what love is - - I'll never look at Cocoon the same way again - - I'll pretty much post anything today - - I'm Keith Hernandez - - ICYMI - - IFC - - IRS - - IT - - Ice Cream University - - Ice Spice - - Ichabod's - - Ichi 88 - - Ichimi Cosme - - Icon - - Icon EV - - If Lucy Fell - - Iftar in the City - - Iggy and the Stooges - - Iggy's pizza - - Iglesia Pentecostal El Divino Maestro - - Ikea - - Il Bagato - - Il Cantinori - - Il Mattone - - Illumina East - - Immaculate Conception - - Imogene Beauty Salon - - Impossible Burger - - In Living Stereo - - In the Air Tonight - - In-N-Out Burger - - InCircles - - Inauguration - - Independence Day references - - Indian food - - Indiana Jones and the Kingdom of the Crystal Skull - - Interfaith Community Services Food For Life - - International Transgender Day of Visibility - - International Women's Day 2017 - - Inutilious Retailer - - Ippin - - Ippudo - - Ipswich Watch & Clock Shop - - Iran - - Ireland - - Iron Fairies - - Iron Sushi - - Ironside - - Is this how the Plain White T's got started? - - Ise Restaurant - - Itzocan Café - - Ivy - - Ixta - - Izakaya NYC - - Izods - - J and R Music World - - JAPAN Fes - - JVC TV-VHS VCR combo - - Jack Henry Abbott - - Jack Kerouac - - Jack Lemmon - - Jack Nicholson - - Jackdaw - - Jacuzzi - - Jade Mountain - - Jade Tourniquet - - Jager - - Jairo Pastoressa - - James Franco - - James Jowers - - James Romberger - - James Wolcott - - Jan. 24 - - Jane - - Jane Pratt - - Janko Puls - - January 2020 - - January 2021 - - January 2022 - - January 2023 - - January 2024 - - Janus - - Japapdog - - Jason Bourne - - Jason Wang - - Javascripts - - Jay Joe's Classic Cuts - - Jay McInerney - - Jebon Sushi & Noodle - - Jeff Goldblum - - Jefferson Theater - - Jehangir Mehta - - Jehovah's Witnesses - - Jen Fisher - - Jennie Willink - - Jennifer Blowdryer - - Jennifer Connelly - - Jennifer Convertible - - Jennifer Convertibles - - Jerk off the Grill - - Jerry O'Connell - - Jersey Shore Store - - Jesper Haynes - - Jessica Alba - - Jessica Delfino - - Jessica Jones - - Jessie Malin - - Jesus candles - - Jewel Bako - - Jewel bake - - Jewel of India - - Jews - - Jian Bing Man - - Jiang Kitch - - Jiang Kitchen - - Jill Anderson - - Jim Dolan - - Jimi Zhivago - - Jimmy Tarangelo - - Jin Soon Natural Hand & Foot Spa - - Jo Laurie Loves - - Jo's Tacos - - Joan Crawford - - Joan Rivers - - Joe & MissesDoe - - Joe Ades - - Joe Franklin - - Joe Hug - - Joe Junior - - Joe Pesci - - Joe Stummer - - Joe and Misses Doe - - Joe's Custom Tailors - - Joe's Locksmith - - Joe's Tavern - - Joe's Wine Co. - - Joey Fatone - - Joey Skaggs - - Joe’s Steam Rice Roll - - John Cale - - John Giorno - - John Lennon - - John Lydon - - John Marshall Mantel - - John Milisenda - - John Strausbaugh - - John's - - Johnny Air Cargo - - Johnny Cash - - Jonas Brothers - - Jones Beach - - Jordan Neely - - Jose Luis - - Jose Reyes - - Joseph Papp Way - - Josh Ozersky - - Joshua Coombes - - Joy - - Joy Ryder - - Judd Apatow - - Judith Warner - - Jugo - - Juice Generation - - Juke - - Jule's Bistro - - Julia - - Julia Roberts - - Julian Baczynsky - - Julie Salamon - - July 2019 - - July 2020 - - July 2022 - - July 2023 - - June 2019 - - June 2020 - - June 2021 - - June 2022 - - June 2023 - - June First Skincare - - Juno - - Justin Bieber - - Justin Binder - - K'ook - - KGB - - Kadidja Kabore-Lamport - - Kafana - - Kaley Roshitsh - - Kamaran Deli & Grocery - - Kamaran Deli and Grocery - - Kamui Den - - Kane Hodder as the directory of photography - - Kanoyama - - Kanye West - - Kardashianism - - Karen - - Kasadoro Deli - - Kate Hudson - - Kate Millett - - Kate and William - - Katz's After Dark - - Kavanaugh - - Kaz - - Keith Hernandez - - Keith Masco - - Keith Richards - - Keith Urban - - Kelly Cogswell - - Ken Cro-Ken - - Kenkeleba House Garden - - Kennedy Fried Chicken - - Kenneth Moreno - - Kenny Shopsin - - Kentucky Fried Chicken - - Ketamine - - Kevin Bacon - - Khiladi NYC - - Kiang Diner - - Kickstarter - - Kid Creole and the Coconuts - - Kid Cudi - - Kids the movie - - Kiev - - Killer's Kiss - - Kim Petras - - Kimoni Pet - - King Tut - - Kings Hairstyling - - Kingston Hall - - Kinka - - Kissaki - - Ko - - Koffeecake Corner - - Kolkata Chai Co. - - Korean Street Foods - - Kosmic Community Anti Bar - - Kossar's Bialy - - Kraut - - Kuboya - - Kulture - - Kura - - Kurt Russell - - Kyp Malone - - Kyu Ramen - - LES Bid - - LES Clothing Co. - - LES Convenience - - LES Puerto Rican Parade & Festival - - LES Unity Rally - - LES amis - - LIRR - - LIVE @ THE APT - - LPC - - LRCHQEV - - La Betola - - La Bonne Bouffe - - La Botanica - - La Flaca - - La Fleur Café - - La Linea - - La Newyorkina - - La Pizza - - La Vera Pizza - - La Zerza - - LaSalle - - Lab -321 - - Lady Bunny - - Lady Wong - - Lahore Deli - - Lake Mars - - Lanaza's - - Lancelotti's - - Landlord Greed - - Landmark Preservation Commission - - Laroc - - Larry Fagin - - Latin Bar Lounge - - Laura Dern - - Laura Levine - - Laurie Anderson - - Lazarides the Bowery - - Le Café Coffee - - Le Village - - LeBron James - - Lead Belly - - Leah Tinari - - Led Zeppole - - Legacy Russell - - Lemmy - - Lenwich - - Leon's Cafe - - Leshko's - - Let them Chirp Away - - Lettertown - - Lexus - - Li'l Park Drag Show - - Liev Schreiber - - Life - Kitchen and Bar - - Life Time - - Life magazine - - Liftonic - - Lil BUB - - Lilly Dancyger - - Linda Scott - - Linen Cafe - - Lingerie Football - - Linus Coraggio - - Lionel Richie - - Lionel Ziprin - - Lipstick Jungle - - Liquid Liquid - - Listen.fm - - Little Dartmouth Gangsta's Paradise - - Little Free Library - - Little Fugitive - - Little Gio's Pizza - - Little India - - Little Kirin - - Little Myanmar - - Little Tokyo - - Little Uluh - - Live Fast - - Liz Christy Community Garden - - Liz Colby Sound - - Local 138 - - Lodging House - - Lola - - Lolita Bar - - London - - Lorc - - Lord of the Rings references - - Los Angeles - - Los Angeles Times - - LosLES - - Lost City - - Lost New York - - Loud Fast Jews - - Louis C.K. - - Louis Rodriguez - - Love & Sex on 10th Street - - Love Not Money - - Love is a Battlefield - - Lovewild Designs - - Lower East Side Democratic Club - - Lower East Side People’s Federal Credit Union - - Lower East Side Rehab Group 5 - - Lower East Side Sports Academy - - Lower East Side stereotypes - - Lower East Village - - Lower Eats Side - - Luc Sante - - Ludlow Garage - - Ludlow Guitars - - Ludlow House - - Luigi's 3rd Ave. Pizza - - Lukka - - Lululemon Athletica - - Luna - - Luna Cafe Lounge - - Luscious Market Deli - - Luster Photo & Digital - - Lux Interior - - Luxury Home Improvement - - Luz Market + Restaurant - - Lydia's - - M & J Asian Cuisine - - M&G Foodstuff - - M-8 - - M. Henry Jones - - M103 - - MAGA - - MARTE - - MIA - - MLB playoffs - - MTV2 - - Mable's Hacienda and Tex Mex - - Macaron Parlour - - Mace 503-505 E. 12th St. - - Macs - - Mad Max references - - Madam Vo BBQ - - Madame Vo I presume - - Made Up There Farms - - Maggie Estep - - Magnetic Fields - - Magnolia Bakery - - Majesty Pizza and Grill - - Majorie Ingall - - Make Music New York - - Makiinny - - Man in the Van - - Mandala Tibetan Store - - Mandolino Pizza - - Mangoo Mango - - Mangora - - Manhattan Bridge - - Manhattan Marketplace - - Manhattan Marriage Bureau - - Manhattan is expensive - - Manhattan's first Water Taxi Beach - - Manhattan45 - - Manny Cantor Center - - Manuel Plaza - - Mar Bar - - Marathon Man - - Marble Dust - - Marc Miller - - March 2018 - - March 2020 - - March 2021 - - March 2022 - - March 2023 - - March 2024 - - March Craneness - - Margarita March - - Margot Gayle - - Maria Bartiromo - - Mario Batali - - Mario Lopez - - Marjory Warren - - Mark Spink - - Mark's Place - - Marky Ramone - - Marlboro Reds - - Marmaduke - - Maroon 5 - - Marquee - - Marshall Stack - - Mary-Kate Olsen - - Maryhouse - - Marylou - - Mashawsha to go - - Mashbill - - Mathieu Lehanneur - - Matiell Consignment Shop - - Matilda - - Matt Dillon - - Matt Weber - - Matto Espresso - - Maximum Overdrive - - Maxx Starr - - May 2018 - - May 2019 - - May 2020 - - May 2021 - - May 2022 - - May 2023 - - May 2024 - - May in review - - MayRee - - Mayamezcal - - Mayanoki - - Maybelline - - Mayor Fiorello La Guardia - - McMansions - - Me Cue - - Mealz - - Meat + Bread - - Meatball - - Meatball Factory IHOP Way - - Mechanix Illustrated - - Medieval frog thing - - Mehayne - - Memorial House - - Memory Motel - - Menkui Tei - - Mercury East Presents - - Merle Ratner - - Merry Christmas - - Meryl Meisler - - MetroPCS - - Metropolitan City Market - - Mezcla - - Mi Salsa - - MiGarba - - MiMa - - Michael Alan Alien - - Michael Bao Huynh - - Michael Douglas - - Michael Largo - - Michael Lydon - - Michael Moore - - Michael Mutt Gallery - - Michelle Alteration & Boutique - - Michelle Obama - - Microsoft - - Middle Collegi - - Midnight Cowboy - - Midnight Wednesday - - Midtown Express - - Midtown West - - Midwinter Kitchen - - Mike Bakaty - - Mike Hamm - - Mil Mundos Books - - Milady's - - Miley Cyrus - - Milk and Honey - - Mill Quality Cleaners - - Millenium Film Workshop - - Millennium Film Workshop - - Miller High Life - - Min Sushi - - Min's Market - - Minetta Tavern - - Mini Burger - - Mink DeVille - - Minor Threat - - Miracle on 12th Street - - Miriam Friedlander - - Miron Properties - - Misirizzi - - Miso Sushi - - Miss Manhattan Non-Fiction Reading Series - - Miss Pakistan - - Missing Foundation - - Mission Cafe - - Mixed Blood - - Mixed Use - - Mo' Eats - - MoMaCha - - Mocha Dream Lounge - - Mochii - - Mohan's Tattoo Inn - - Mokyo - - Molly Fitch - - Molly Ringwald - - Mom's Liquor - - Momofuku Ko - - Momofuku Ssäm Bar - - Montessori school - - Moonraker - - Morgenstern's - - Morningwood - - Moroccan arts and crafts - - Moskowitz & Lupowitz - - Motek - - Motörhead - - Mount Sinai Union Square - - Mousey's Bar - - Movie Nights On The Elevated Acre - - Moxie - - Mozzarella Pizza - - Mr. Lower East Side Pageant - - Mug Lounge - - Muji - - Mulan East - - Mulberry Street Bar - - Murphy's - - Museum of the American Gangster - - Museum of the City of New York - - My Dead Boyfriend - - My Little Village Postal Store - - Mystery Puddle - - N25 - - NFTs - - NLYU - - NOT AGAIN - - NY Copy & Printing - - NY Health Choice - - NYC Bodypainting Day - - NYC Bridge Runners Legends Never Die - - NYC Cannabis Parade & Rally - - NYC Convenience - - NYC Exotic Snax - - NYC Municipal Archives - - NYC Velo - - NYC eye candy appetite - - NYC history - - NYC streets - - NYPD Blue - - NYSAT - - NabeWise - - Nacho Fries - - Nadja Rose - - Nair - - Naks - - Natalie Portman - - Nathaniel Hunter Jr. - - National Hummus Day - - National Preparedness Month - - National Underwear Day - - Nationall Debt - - Neil Young - - Neil's Coffee Shop - - Neon by Cheng - - Never Ending Taste - - New Amsterdam Market - - New Arc Chicken - - New Herbal World - - New Post - - New Swan Valet Cleaners - - New Up & Up Laundromat - - New Yok City - - New York City videos - - New York CIty men - - New York Cares - - New York Cheesecake Heads - - New York City Poker Tour - - New York City anecdotes - - New York City on TV - - New York City politics - - New York City radio stations - - New York City streets - - New York City videos - - New York Compost - - New York Health Choice - - New York Health and Racquet Club - - New York Hot Tracks - - New York I Love You - - New York Inn - - New York Jazz Festival - - New York Punk and Underground Record Fair - - New York Sal's Pizza - - New York Sports Club - - New York Sun - - New York is competitive - - New York is dead - - New York music history - - New York traditions - - New Yorkers are punished - - New Yorkiversary - - New Yorok Post - - Newsies - - Newt Gingrich - - Niagata - - NiceBrow - - Nicholas Fraser - - Nick and Norah's Infinite Playlist - - Nicki Minaj - - Nighthawks - - Nirvana - - Nirvavna - - No Bar - - No Fun - - No Kids in Cages - - No More Cafe - - No Nukes - - No Pants - - No Standing - - No Tell Motel - - NoEVil - - Noah Baumbach - - Noho Food Market - - Noho Star - - Nohohon - - Nolita hot spots - - Noot Seear - - Noreetuh - - Not as Bitter - - Not for Tourists - - November 2018 - - November 2019 - - November 2020 - - November 2021 - - November 2022 - - November 2023 - - Now You're Clean - - Nydia M. Velázquez - - O Ramen & Dim Sum M - - O Ramen Dim Sum - - OJ Gallery - - OMG - - OO + Co. - - Oak Bar - - Oak Room - - Occupy East 4th Street - - Oct. 21 - - October 2018 - - October 2019 - - October 2020 - - October 2021 - - October 2022 - - October 2023 - - October's Very Own - - Odin - - Officer Tubbs - - Ohio Theatre - - Oiji - - Okiboru Udon - - Old Good Things - - Old OLD Essex Market - - Olde Good Things - - Oliva - - Olsen Twins - - Omakase Sushi - - Omega Salad Bar & Deli - - Ommatt Cruz - - On the Mark Barber Shop - - On the Town - - One Avenue B - - One Crazty Summer - - One Fifth Avenue - - One Plus One - - One and One - - OneTigris - - Only Love Strangers - - Open Strees - - Open Your Lobby - - Ophelia - - Opheum - - Opportunity Zone - - Oprah - - Optyx - - Orange - - Orange-Dusted Fingerprints - - Orangetheory Fitness - - Organic SOul Cafe - - Orlando - - Osaka Grub - - Osakana - - Oscar - - Oscar Wilde - - Osees - - Ost Cafe - - Othello - - Otis WIlliams Jr. - - Otto's Tqacos - - Our Town Downtown - - Out of the Box Theatrics - - P.S - - P.S 64 - - P.S. 34 - - P.S. 63 - - PAUSE - - PDA - - PDT - - PJ Hanley's - - PS General Slocum - - PSAs - - PTA - - Pac Lab - - PadMapper - - Paint Puff "N" Peace - - Pan - - Pandemic Pee Glove - - Panic in Needle Park - - Panificio - - Paprika - - Paradise Gourmet Deli - - Paris Hilton - - Paris Hilton for president - - Parker and Lily - - Party WIth Sluts - - Passing Stranger - - Past Lives - - Pasta de Pasta - - Pastel Spa and Nails - - Pat Benatar - - Pata Negra - - Patagonia - - Patis Bakery - - Paul Giamatti - - Paul Rudd - - Paul's Boutique - - Paulie Gee's Slice Shop - - Pause Cafe - - Pearl of India - - Pee Phone imposter - - Peeler Man - - Peggy Noonan - - Pelican Bay - - Peng's Body Work - - Penny - - Penny Arcade - - Peppermint Lounge - - Peps-Cola sign - - Pere Ubu - - Perfect Glow - - Pete Davidson - - Pete Margolis - - Peter Corbin - - Peter Kane - - Petrella's Point - - Phase 1 - - Phase 3 - - Philip Glass - - Piccolo Cafe - - Pie by the Pound - - Pila de Boba - - Pilar's - - Pilotworks - - Pimbeche Vintage - - Pinche taqueria - - Pinisi Cafe and Bakery - - Pinkey's Brow Bar - - Pinks 242 - - Pinky's Village Spa - - Pinto - - Piola - - Pita Pan - - Pita Shop - - Pitbull - - Pizza Girls - - Pizza Loves Sauce - - Pizza Pazzo - - Pizza Pusha - - Plado - - Planet Fitness - - Planters Grove - - Plantmade - - PlayHardLookDope - - Plaza Athénée - - Please Kill Me - - Plum Pizzeria - - Poetry Project - - Pogopalooza 10 - - Poke Kitchen - - Pokemon Go - - Pokespot - - Polish history - - Poop Emoji Slippers - - Poppy Seed Bagel Sparrow's Nest - - Porky's - - Porsche - - Pound and Pence - - Powerball - - Prefab Sprout - - Presidents Day - - Pressed Juicery - - Prince Harry - - Princess Madeleine of Sweden - - Princess Pamela - - Pringle-izing - - Prohibition - - Prohibition Bakery - - Provincetown Playhouse - - Prunce - - Psychedelic Furs - - Psychedelic Furs references in headlines - - Public School 64 - - Puck Building - - Puerto Rican Day Parade - - Puff & Puff Convenience - - Punk Art - - Punk lives (online) - - Punk lives kind of but not really - - Puppydog Poop Mitts - - Pure Wine - - Purple Rain - - Pussycat Lounge - - Q&As - - Quartino Bottega Organica - - Queen - - Queens Museum - - Queensboro Bridge - - Quentin Crisp - - Quiet Reading - - 'Quintessence: East Village history' - - R Bar - - R.A. Dickey - - RAE - - REEC - - RSS - - Rabbit - - Radio Shack - - Radiohead - - Rafael Toledano - - Rafael's Barber Shop - - Rag & Bone - - Rag and Bone - - Rai Rai Ken - - Ralphabet CIty - - Ramadan - - Random Accessories - - Raphael Ward - - Rapid Realty - - Raquel Shapira - - Raquel's garden - - Ras Redemption - - Ray's Pizza & Bagel Cafe - - Ray's the bar - - Raymour & Flanigan - - ReBoot - - Ready New York City - - Reagan Youth - - Rebecca Lepkoff - - Recreational Cannabis Dispensary - - Recycle-A-Bicycle - - Red Boutique - - Red Bull - - Red Hook - - Red Horse Hopper - - Red Koi - - Red Room Projects - - Redrum - - Regal Cinemas theater - - Regal Essex Crossing - - Remedy Diner - - Remix - - Renegade Mermaid - - Retna - - Revered Billy - - Rexobox - - Ric Ocasek - - Rice Bird NYC - - Rice Thief - - Rice to Riches - - Richard Gere - - Richard Kern - - Richard Ocejo - - Richard Woods - - Ricky Gervais - - Rico - - Rihanna - - Rikers Island - - Risotteria - - Risotteria Melotti - - Ritz Thrift Shop - - Rizzo's - - Roast Kitchen - - Roasted NYC - - Robert DeNior - - Robert Frank - - Robert Galinsky - - Robert Lesko - - Robin Hoods - - Robin WIlliams - - Robins - - Robokid - - Robot Dreams - - Rock & Roll Explorer Guide to New York City - - Rocky’s Crystals & Minerals - - Rod Stuart - - Roger Clark - - Roger Clemens - - Roger's Garden - - Rogue House Salon - - Roman and Williams - - Ron Jeremy - - Ronald McDonald's long-lost half brother - - Roosevelt Island - - Rosella - - Rosemary Home - - Rosemary's - - Rosenberg atomic-bomb spy case - - Ross Global Academy Charter School - - Roy Scheider - - Ruby Lounge - - Rude New York - - Rudolph references - - Rudy Volcano - - Rudy's - - Ruffian - - Rumba Bar & Grill - - Run Rudolph Run - - Russian Tea Room - - Russian spies - - Ruth Ades-Laurent - - Ruth Greenglass - - Ryan John Lee - - Rynn - - S Klein - - SAFH - - SHI MIAODAO Yunnan Rice Noodle - - SLCT Stock - - SRO - - SS General Slocum - - SSHH - - Sa Aming Nayon - - Saan Saan - - Sabrina's bear coat - - Sabu - - Sade - - Sadie's Ward - - Sahara Citi - - Saints Tavern - - Sakagura - - Sal's Pizza - - Salad Days - - Salma - - Salon Chérie Chéri - - Salon Seven - - Salvador Dalí - - Sam Rockwell - - Same Old Gallery - - Sami & Susu - - Sammy L Coffee - - Sammy’s Roumanian Steakhouse - - Samuel Mark - - San Diego - - San Francisco - - Sanpoutei Gyoza & Ramen - - Sanshi Rice Noodle - - SantCon 2022 - - Santa Claud - - Santa Con for Dogs - - SantaCon Detour - - Santcon - - Santo Mollica - - Santos Variety Shop - - Sara Kay Gallery - - Saturday - - Saturday filler - - Sauce City - - Sauced - - Sauced Up - - Sauced Up! - - Sauced Up! new restaurants - - Save NYC - - Save the Lower East Side - - Saxon & Parole - - Saxon and Parole - - Scarab Lounge - - Scarr's Pizza - - Schinasi Mansion - - School for the Dogs - - Scotland - - Scott James - - Scouting NY - - Screamin' Jay Hawkins - - Screme gelato bar - - Sculpture for Intimacy - - Scumbags and Superstars - - Sea Salt - - Sean Connery - - Sean Spicer - - Search and Destroy - - Searchlight Sculptures - - Sebastian Brecht - - Secara Restaurant - - Secchu Yokota - - Second Avenue Subway - - Second Avenue and Houston - - Secret Garden - - Secretariat - - Segway - - Senya - - Sept. 11 - - September 2018 - - September 2019 - - September 2020 - - September 2021 - - September 2022 - - September 2023 - - Seth Tobocman - - Seventh Avenue - - Seward Park - - Señor Pollo - - Shadowman - - Shake and Tail - - Shalom Harlow - - Sham 69 - - Shaquille O'Neal - - Sharaku Japanese Restaurant - - Shark Bar - - Sharknado - - Shawarma House - - She NYC Arts Summer Theater Festival - - Shearson Hammill - - Shiina - - Shinzo Omakase - - Shiti Bikes - - Shop Fare - - Shorty's - - Showgirls - - Shrek - - Shu Han Ju II - - Sidney Lumet - - Siempre Verde Community Garden - - Sigiri - - Signs of the Yunnipocalypse - - Silver Monuments Works - - Silverstone Property Group - - Sincerely - - Sinead O'Connor - - Sing Sing - - Sing Sing Karaoke - - Single and the City - - Siouxsie and the Banshees - - Sip + Co. - - Sir Shadow - - Siren Festival - - Sirovich Center - - Siskel and Ebert - - Sister Jane - - Six-dollar doughnuts - - Sixth Street Yoga Junction - - Sizzler balloons - - Skippy's Palace - - Sky East - - Slowear - - Slum Goddess - - Smacked LLC - - Smart Smokers - - Smileys - - SmithStone - - Snickers Bar Squirrel - - Sniff - - Snoopy - - Snow Gallery - - So I Married An Axe Murderer - - SobaKoh - - Sogie Mart Rolls & Puffs - - Soho Grand - - Solas Gone Wild - - Solil Management - - Sonar Gaow - - Sonny Rollins - - Sons and Daughters - - Sony Walkman - - Soogil - - Soon Beauty Lab - - Sophie's. Jeremiah's Vanishing New York - - Sorcerer's Apprentice - - South Street - - Spa Belles - - Space 194 - - Spaceballs - - Spandau Ballet - - Speakeasy - - Special - - Special Special - - Spice Brothers - - Spicewala Bar Indian Cuisine - - Spicy House - - Spicy Noodle Hot Pot - - Spin - - Spin City - - Spinal Tap - - Spinmaster Elmo Giggle and Shake Chair - - Spinning into Butter - - Spotted Owl Tavern - - Spring Spa - - Squatter's Opera - - Squeaky fences - - Squeegee men - - Squeegee traveler - - Squeeze - - Ssäm Bar - - St Marks Wine and Liquor - - St. - - St. Bridget School - - St. Jerome's - - St. Joseph House - - St. Mark's E-Smoke - - St. Mark's Is Dead - - St. Mark's Vegan Food Court - - St. Marks Is Dead - - St. Marks Place - - St. Patrick's Cathedral - - St. Patrick's Day 2019 - - St. Vincent's - - Stable Court - - Stairs Bar - - Stand Coffee - - Stand by Me - - Stand-Up MRI - - Standings Bar - - Stanley Cohen - - Stanton Street CSA - - Stanton Street Yoga - - Staple Street - - Staples - - Stapleton Shoe Company - - Star Fucking Hipsters - - Star Shoe Shop - - Star Team - - Star Trek - - 'Star Wars: The Force Awakens' - - Starland Vocal Band - - Station B - - Stay - - Stay Classy - - Stcie Joy - - Stella - - Stella LES - - Stephen Colbert - - Steve Buscemi - - Steven Harvey Fine Art Projects - - Steven Tyler - - Stickett Inn - - Sticky's Finger Joint - - Stik - - Stillwater Bar & Grill - - Stinky Toys - - Stone Temple Pilots - - Stop Drop and Go - - Stop N Swap - - Stop the Bans - - Storefront Tracker - - Straight to Hell - - Street Safety Managers - - Street Wars - - Studio 55C - - Stuffed Ice Cream - - StuyFitness - - Stuyvesant Casino - - Stuyvesant Cove Park - - Stuyvesant Deli Grocery - - Stuyvesant Organic - - Stuyvesant Swim Club - - Stylus - - Subject Bar - - Subway bathrooms - - Suds Buds - - Sugar Mouse - - Sujan Sarkar - - Suki Japanese Kitchen - - Summer Solstice - - Summit - - Sunday C&C Eatery - - Sunflower Cafe - - Sunrise Cleaners - - Super Bad Brad - - Super Girl - - Supreme - - Surnburnt Cow - - Susan Blond - - Susan Cheever - - Susan Schiffman - - Susan Setzer - - Sushi & Sake - - Sushi Dojo - - Sushi Kai - - Sushi Mumi - - Sushi Park - - Swap NYC - - Sweet Cake - - Sweet Chick - - Sweet and Sour Smoke Shop - - SweetHaus - - Sweetie - - Sweetooth - - Swift Hibernian Lounge - - Sympathy for the Kettle - - Synecdoche New York - - Synergy - - T Magazine - - T-swirl Crêpe - - TGI Friday's - - TLC Tea House - - TLK - - TMC - - TORNADO - - TV - - TV on the Radio - - TV pilots - - TVs - - TaPea - - TabeTomo - - Tacos Mary - - Taj Mahal - - Taj Majl - - Tammy Faye Starlite - - Tampa - - Tao Group - - Tapanju Turntable - - Taproom 307 - - Taqueria Ramirez - - Taqueria St. Mark's Place - - Tarallucci e Vino East Village - - Taras Shevchenko Place - - Taser - - Taste of 7th Street - - Taste of East Village - - Taste of India - - Taste of the East Village - - Tasty Tasty - - Tatum O'Neal - - Taureau - - Taxi Dances - - Taxi Parts - - Taxi of Tomorrow - - Taylor Hawkins - - Tea Dealers & Ceramics - - Tears for Fears - - Ted Danson - - Temakase - - Tempo - - Ten Degrees - - Tenants Taking Control - - Tepito - - Terminal 5 - - Terminal B - - Terminator - - Terra Thai - - Terry Galmitz - - Tetchy - - Thayer Press - - The 12C Canvas for Positivity - - The 2nd Ave. Smoke Shop & News - - The A-Building - - The Albert - - The Albino Bowler - - The Alchemist's Kitchen - - The Apartment - - The Avenue C Studio - - The B - - The Bad Lieutenant - - The Baltimore Sun - - The Battle Hymn of the Republic - - The Beacon - - The Big Dip - - The Boneyard - - The Bowery Diner - - The Bowery Poet Tree - - The Catcher in the Rye - - The Central bar - - The Champagne Diet - - The Chocolate Bar - - The Crack™ - - The Creeper - - The Crusaders - - The Dance - - The Dark Knight - - The Design Trust for Public Space - - The Detox Market - - The Drunken Canal - - The East Village Eviction Free Zone - - The East Village Experience - - The East Village Other - - The East Village is dead - - The East Village of Austin - - The Economist - - The Eldridge - - The English Beat - - The Exterminator - - The Fern - - The Food Network - - The Foreigner - - The Forward - - The Frenchmen - - The Go-Betweens - - The Godfather - - The Graduate - - The Grafton - - The Grey Art Museum - - The Hills - - The Hummus & Pita Co. - - The Internet sucks just like Tina Fey said - - The Irish Times Pub and Eatery NYC - - The Izakaya - - The Last Shadow Puppets - - The Last Three - - The Laurels - - The Little Tree That Could - - The Loop - - The Love Boat - - The Main Event - - The Mediterranean Grill - - The Might Be Giants - - The Mildred - - The Misfits - - The Modern Lovers - - The New Stand - - The New York City Rescue Mission - - The New York Nobody Sings - - The Newsroom - - The Nolitan Hotel - - The Nook NYC - - The Panic in Needle Park - - The Paris Review - - The Pastry Box - - The Pied Pipers of the Lower East Side - - The Popup Florist - - The Poseidon Adventure - - The Professional Bull Riders 2009 Invitational - - The Rainbow Room - - The Really Really Free Market - - The Red and Gold Boil - - The Rise and Fall of CBGB - - The Sabieng Thai - - The Schumacher - - The Secret Garden - - The Shack - - The Shaloms - - The Shell-Shocked Nut - - The Shining - - The Simpsons - - The Slipper Room - - The Smell - - The Stand Presents Night Market - - The Step - - The Swiss Water® Coffee Studio - - The Theater For The New City Building - - The Tompkins Square Halloween Dog Festival - - The Trash Bags - - The Tree - - The Tree Shop NYC - - The Treehouse - - The Trouble With Bliss - - The UPS Store - - The Ukrainian Congress Committee of America - - The Universe & Everything - - The Unusuals - - The Velvet Undergound - - The Village Veterinarian - - The Waterfall - - The Whale Tea - - The White Shirt Bar - - The Wineshop - - The Witty Brothers - - The York - - The elusive Tompkins Square Park white rat - - The other Bowery Wall - - Theater in Quarantine - - Theaters at 45 Bleecker Street - - There shall be NO cabaret - - Thirft NYC - - This could be Heaven or this could be Hell - - Three Jewels - - Three Kings Day - - Three Kings Tattoo - - Three Seat Espresso and Barber - - Tiengarden - - Tiger - - Tikbuk2 - - Tiki on 12th - - Tilted Axes Mobile Electric Guitar Procession - - Tim Tebow - - Time magazine - - Times - - Tina Turner - - Tina Turnstile - - Tinto Fino - - Tiny's - - Tish and Snooky - - To Eat Sushi - - Todaro Bros. - - Tokio 7 - - Tokuyama Salon Cafe - - Tokyo Rebel - - Toll Brothers - - Tom & Jerry's - - Tom Brady - - Tom DiCillo - - Tom Mulligan - - Tom Petty - - Tom Selleck - - Tom Snyder - - Tommy Hilfiger - - Tompkin - - Tompkins Spring - - Tompkins Square Halloween Dog Festival - - Tompkins Square Park Library Branch - - Tompkins Square Park Tompkins S - - Tompkins Square Park diets - - Tompkins Square Park. Temperance Fountain - - Tompkins Square Psrk - - Tompkins Square Station - - Tompkins Village Cafe - - Tompkns Square Park - - Tony Rosenthal - - Toots Shor - - Top Hops - - Topless male models - - Torishiki - - Toronto Film Festival - - Toshio Tomita - - Totally Clueless - - Touchy Blinky - - Toy Tokyo - - Toyo Tsuchiya - - Toyota East Children's Learning Garden - - Trachtenburg Family Slideshow Players - - Tramezzini NYC - - Travel and Leisure - - Travis Barker - - Treasure Chest - - Tree Tops - - TreeCycle - - Tribeca Grand Hotel - - Tribes of Morocco - - Tribute in Light - - Trilby - - TripAdvisor - - Triple Crown - - Trocha Gallery - - Tropic Bowl - - Trump Soho - - Trump magazine - - Tu-Lu's Gluten Free Bakery - - Tuesday - - Twinkies - - Twister - - Two Boots Pionner Theater - - Two Bridge's Diner - - Two Perrys - - Two for Tuesday - - Typhoon Lounge - - Tyra Banks - - U.S. Air Force - - U.S. Open - - U2 - - UPS - - UPS Store - - Uber - - Ugly Betty - - Ugly Kitchen - - Ultimate weekends - - Uncle Buck - - Uncle Floyd - - Unemployed Olympics - - Uni K Wax Center - - Uni Wax Center - - Union Square Park - - Unique Antique & Estate Sales - - Unique Omakase - - United Copy & Print - - Unprofessional Variety Show - - Unregular Bakery - - Untitled Queen - - Uogasji - - Upworthy headline jokes are so May 2014 - - Urbain J. Ledoux - - Urban Air - - Urban Design Week - - Urban Etiquette Signs on Bags - - Urban Juicery - - Urban Outfitters - - Urbanite - - Urbanspace - - Urge Lounge - - Utshob Restaurant - - V ❤️ U - - VHS - - VIPs - - VK Nagrani - - Valentine Six - - Valentine's Day. community gardens - - Valentines - - Vamos a Sembrar - - Vaness Hudgens - - Vape Lounge NYC - - Vape N Smoke - - Variety - - Variety Theater - - Vegan Love - - Velvet Cigar Lounge - - Velvet Underground - - Veniero's Pasticceria - - Venus Body Arts - - Venus Over Manhattan - - Vermont - - Versace - - Very Berry - - Very Thai - - VeryThai - - Veterans Day - - Via Della Pace Pizza - - Via Delle Zoccolette - - Vic's - - Vic's Pizza - - Victory Tattoo NYC - - VideoGamesNewYork - - Vietnamese - - Vigilant Hotel - - Villa Cemita - - Village Bean - - Village Craft Beer and Smoke - - Village Creperie - - Village Crêperie - - Village Farm Grocery - - Village Grannies - - Village Happy House Convenience - - Village Voices - - Village of the Damned - - Village s - - Vincent Gallo - - Vincent Spano - - Vinyl Market - - Vio - - Vita Rat - - Vitamin Shop - - Vivi Bubble Tea - - VolaVida Gallery - - Vortexity Books - - W magazine - - WOOf deck - - WPA - - WQXR - - WaMu - - Wafels & Dinges - - Waga - - Waiting on a Friend - - Wal-Mart - - Waldorf Hysteria - - Walid Menswear - - Wall Dogs - - Walter's - - Warwick - - Wasan - - Water Taxi Beach - - Wattle Cafe - - Wayne Kramer - - We pack and deliver like UPS trucks - - We're No. 4 - - Websiter Hall - - Wechsler's Currywurst & Bratwurst - - Wechsler's Currywurst and Bratwurst - - Wednesdays at A's - - Week in Griview - - Wells Fargo - - West 8th Street - - West Broadway - - Westerlind - - Westville - - Whale and Crown - - What Pints - - When Caitlin met Cáit - - Whiskers Holistic Pet Care - - Whiskey Dick's - - Whiskey Ward - - White Glove Bandit - - White Rabbit - - White Slab Palace - - Whitebox - - Whitehouse Hotel - - Whitney Houston - - Who killed Heath Ledger - - Whodini - - Whynot Coffee - - Wicked Heathens - - WienerMobile - - Wiggle Room - - Wigstock - - WikiLeaks - - Wikipedia - - Wild Style - - William Gottlieb - - William S. Burroughs - - Wilmer Jennings Gallery - - Winebar - - Wing Stop - - Winter Store Gail - - Winter Storm Gale - - Wire - - WitchsFest USA - - Wolfie - - Wollman Rink - - Womp - - Wonder Woman - - Wood Vibz - - Woodward Gallery - - Woody Woodpecker - - Woolworth Building - - World Aids Day - - World Cup 2018 - - World Naked Bike Ride - - World Series - - Wowfulls - - X-Files - - X-Men - - Xe May Sandwich Shop - - Yaki Sushi - - Yankees Stadium - - Yellow Page - - Yellow Rose - - Yippies - - Yo! Sushi - - Yoga to the People - - Yokox Omakase - - Yon Chome - - York Avenue - - Yoshino New York - - Yoshitomo Nara - - You're gonna make it after all - - Young Chow III - - Youth - - Youthquake - - Yuba - - Yummy Asian Food - - Zabb City - - Zafi’s Luncheonette - - Zen 6 - - Zibalee - - ZipCar - - Zoku Sushi - - Zoubi - - Zumiez - - a dramatic Thermador vented range hood - - a grand single-family home - - a sticky addictiveness - - a threading and waxing salon - - abandoned Vespas - - abandoned cars - - abandoned pizza - - acupuncture - - advertisers aren't even trying anymore - - affordable housing. 302 E. 2nd St. - - after midnight - - air rights - - airy things - - alligators - - aloha - - alt.coffee - - alternate snow - - amazing cat paintings - - ambulances that once belonged to the Shriners - - and Vaudeville." - - and stay out - - angled parking - - anniversary - - apartment hunting - - apes - - archery - - architecture - - arf - - arrows - - art shows - - articles that have been done to death - - aseball tickets - - ashes - - asking for toruble - - ast Village - - ast Village streetscenes - - awful ads - - awk - - açaí bowls - - b4 - - baby Isabella Jane - - baby Jesus - - baby lambs - - backyards - - bad ideas - - bad landlords - - bad puns - - bad reviews - - bad storefronts - - bad timing - - bag snatchers - - bags - - bags full of guns - - bake news - - baking soda - - banana peels - - banana pudding - - banana roller skates - - bangs - - bank brqanches - - banners - - barbed wire - - barber poles - - bars are loud - - bars that need a jukebox - - baseball references - - bathtubs - - be careful - - beans - - beautiful day - - because we need more expensive fucking apartments here - - beeps - - beer cup holders - - beer guts - - beer is good - - being whiny - - bending tree - - bespoke finishes - - best cities to live in America - - best hoods - - better than a Duane Reade or Starbucks - - big balls - - big news - - big things - - big-ass vehicles - - bike helmets - - bike lane - - bike messengers - - bike shop - - biking - - bikini bars - - biting people - - black bloc - - black mold - - blackout - - blaming Albany - - blanking - - bleeding heart carnivores - - blobs - - blog post headlines that make little or no sense - - bloggers make so many mistakes - - blue picket fence - - blue skies - - bocce - - body work - - bogus stats - - bohemia - - boisterous bacchanals - - bologna - - book readings - - book signings - - books are good and stuff - - books that we will read - - bouncy castles - - bounties - - bowling balls - - bozos - - branding - - bread dumps - - break-in - - breaking news - - breaking the law - - breathing fire - - brickhouses - - bridge-and-tunnel - - broken lamps - - broken wheels Second Avenue - - bros - - brown furry things stuck in trees - - buck wild - - budget cuts - - buidling - - building permits - - building sales - - bull riding - - bulletproof plastic - - bumper stickers - - bunnies - - buns - - burgers - - bus - - bus bulbs - - bus lane - - bus lines - - bus stops - - busts - - buzz - - cabanas - - cable access TV - - cactus - - calamari - - candles - - canned poison - - cans - - canvassers - - car bomb drinks - - carbs - - cardboard - - cardigan sweaters - - cardigan sweaters. Wall Street - - cargo shorts - - carnivals - - carrots - - cars vs. cranes - - cartoon ham - - carts - - cash - - cash mob - - cash registers - - cash-free businesses - - cassettes - - cat art - - cat fight - - catalytic converters - - catch basins - - catheters - - celebrations - - cellos - - chainsaws - - chameleons UK - - change freaks - - charmers - - cheap food - - cheerleaders - - cheesy TV shows - - chess - - childlike drawings of President Obama urinating - - chimneys - - church bells - - cigars - - circus amok. Tompkins Square Park - - city cuts - - city living - - class acts - - class rings - - classical music - - clean getaways - - cliches - - climbing walls - - closed - - closed for - - closing 2020 - - closoings 2021 - - closures 2021 - - clothes make the man - - clubs - - clusterfucks - - cocaine - - cockatiels - - cockroaches - - coffee art - - coffins - - cole slaw - - collapse - - combacks - - comedy clubs - - comets - - coming soon - - commercial rent - - commercials of the 1970s - - community gardens - - community center - - community facility - - community garden - - compound modifiers - - computers - - congestion pricing - - construction as harassment - - construction crates - - consumerism - - convenience stores - - convertibles - - cookies - - cop - - copious custom white wood cabinetry - - cornhole - - country music jamboree - - cover bands - - cow tipping - - cows decorated like the American flag - - craft beers - - cranes - - cranks - - crap - - crappy music - - crappy places to work - - crash virgins - - cream cheese - - creativity - - creatures - - credit card debt - - credit cards - - credit collapse - - crepes - - crispy and wispy - - crosswalks - - crowds - - crêpes - - curbside - - curious decisions - - cussing - - d.b.a. DBA - - dancers - - dares - - day drunk - - dead bodies - - dead ends - - dead hamsters - - dead icons - - dead tree benches - - deal - - death of a view - - death of bohemia - - debates - - decent housing at a resonable cost - - decorative camels - - deep dryer - - demonstrations - - dentist - - depressing places we recommend - - depression - - dessert. desserted island - - diapers - - dice - - diplomats - - dipping - - dirty bombs - - discarded TVs - - discarded paintings of Swiss Villages - - discovering New York - - discussions that I missed - - dives - - do you remember? - - doag shit - - dog attacks - - dog carriers in trees - - dogs in sweaters - - dogs of the East Village - - dogs on motorcycles - - doll parts - - dolls - - dominos - - don't we have enough problems without going and looking what's happening on the - West Coast? - - donkey ball - - doofy guys in pleated slacks get all the good seats - - doorways - - drag - - drag racing - - dreadful buildings - - dreams - - drink and draw - - drinking and shopping is fun - - drinking makes you hot - - drinking on Sunday afternoons - - drinks to go - - drips - - dropping dead - - drug stores - - ducks - - dumb drinks - - dumb ideas - - dumps - - dying a little more every day - - eVil Sublet - - eagles - - ebola - - eclipse - - economy cars - - eek - - eerie after-storm glow - - eerie splendors - - election 2017 - - elephants - - elevators - - emails - - empty catchphrases - - end of summer - - entrapment - - essays - - euphemisms for masterbation - - everyone loves cyclists - - evflorist - - evgrieve.com - - extra floors - - eye of the tiger - - eyebrow threading - - faith communities - - fake ad - - fake rain - - fake train stops - - falling branches - - falling debris - - fancy digs - - fancy drinks - - fashion disasters - - fast food - - fast food trifecta - - fatalities - - fatcats - - feds - - fiddle players - - film festivals - - filming around the East Village Double Down Saloon - - filmmakers - - finger painting - - finger sucking - - fingers - - fire alarms - - fire boxes - - fire breathing - - fire excapes - - fire extinguisher - - fire pits - - fireflies - - fireplaces - - first dates - - fishing - - flagpole - - flake news - - flaky pies - - flat tires - - flaunting it - - fleabag hotels - - flippers - - floating East River pool - - flophouses - - floppy sweats - - fluted glass - - fonts - - food - - food festivals - - food on a stick - - foodies - - fool's good - - football season - - for rent - - forgive me - - former East Village residents - - found art - - four more months until winter - - franchises - - fratty heat spots - - free ad for New York magazine - - free ads for Microsoft - - free booze - - free clothes give-a-way - - free falling -- and not related to Tom Petty - - free shows - - free vodka - - fried stuff - - fro-yo - - frozen hydrants - - frozen pipes - - fuck art let's protest - - fuck you - - fucking Brooklyn - - fucking fuckers - - fueds - - full body shots - - full moon - - fully glazed façade - - fundraisers - - funeral homes - - funny - - fur - - furry fish - - furry vests - - gangs - - gas mains - - gas station kitty - - gaudy insults to centuries past - - getting floppy with it - - ghost guns - - ghosts - - giant antennas - - giant chipmunks - - giant praying mantis - - giant rubbers - - giant sushi rolls - - gift ideas - - gingerbread houses - - giving thanks - - glass towers - - glorified pub crawls - - gluten-free - - gnomes - - go-go dancers - - golf carts - - good causes - - good reading - - good shops - - good storefronts - - good timing - - goodsugar - - gorilla hands - - gotta go to Mo's - - gourmet cannabis edibles - - graduation day - - graffiti 11th and 2nd - - grainy photos - - greasy spoons - - great articles - - great offers - - great records - - great tastes in restaurants - - green beer - - green things - - grid greats - - grindhouse - - gripes - - grumps - - guardian angels - - guilty pleasures - - guinea pigs - - guitars - - gunfire - - gurgling tub - - guys in loinclothes - - gypsies - - ha-ha - - hair in New York City - - ham - - hammocks - - hand jobs - - hand-cut in Italy - - hands - - hangovers - - happy clouds - - happy ending for new spa - - happy returns - - hard-core kids - - harmful products - - harmonicas - - harps - - hash - - hashish - - hate crimes - - headless giraffes - - headlines that are longer than the actual post - - headlines that sound dirty - - headlines that sound like a Russ Meyer movie - - health and wellness - - health care - - health clubs New York Yankees - - health permits - - hearts - - heavenly empty bars - - heesy TV commercials - - hell - - hello Doggy Daddy - - here comes another new apartment building - - hidden gems of New York City - - high gluten flour - - high-pitched screeching - - highway robbery - - hip college neighborhood - - hip-hop - - hippies - - hipster assholes - - his stuff - - history - - history of buildings - - ho's - - hoarders - - hockey - - holding your breath - - holiday 2017 - - holidays 2018 - - holidays 2019 - - holy cow - - home prices - - homeless models - - honoring firefighters - - hoodies - - hookups - - hope - - hope that you're not hungry - - hornswoggled - - hot cheese nachos - - hot tubs - - houses of the week - - housing slump - - hoverboards - - how to behave in a bar - - how will I get to work - - humanitarians - - hunks - - hype - - iL Matone - - icicles - - idling trucks - - if you don't like nice fall Saturdays - - illegal bag searches - - illegal hotels - - illegal parking - - image - - important decisions - - impromptu concerts - - inclusionary housing - - incubating - - ineffective sunshine - - inflation - - influencers - - ironing boards - - isn't it ironic - - it has come to this - - it really does look at little like Miami - - it's electric - - it's nice up there - - jackets of the East Village - - jackhammers - - jazz - - jello wrestling - - jellyfish - - jiggle joints - - job opportunities - - jobs - - juice - - jukebox - - junk food - - just another Saturday nightnot - - just asking - - just give me a goddamn beer - - kava - - keeping it raunchy - - keyboards - - kicking it - - kids would pay top dollar for that outfit in Williamsburg - - kitchens - - kitsch - - knights in shining armor - - knitting - - knives - - kung-fu fighting - - large grasshoppers - - large mouths - - lasers - - last call - - last night - - last of its kind - - late night - - law firms - - layoffs - - lead. construction as harassment - - leaf blowers - - leg lights - - let it go - - lettuce - - liars - - libeling Sesame Street characters - - life in America - - life of the party - - limes - - literally - - live music - - living downtown - - local cuisine - - locksmith - - lofts with missing walls - - logs - - loitering - - looking at New York circa 1998 - - looking at old New York circa 2001 - - looking at older New York - - losing my mind - - lost photos - - lots - - low-income housing - - lowest common denominator - - luggage - - lunch - - macaroni and cheese - - machete - - malls - - man caves - - man's best friend - - manholes. Con Ed - - manure - - marauding drunks - - marches - - maryjane - - mascots - - matchbooks - - maybe the world won't end soon - - meat pie - - meat slicers - - mechanical exhaust fan in proposed toilet - - memorabilia - - men dressed as trees - - men with swords - - men with vans - - men without vans - - mermaids - - messes - - meteor woo - - micro lofts - - middle class - - milk - - mimes - - mini food truck movement - - mini-pitch - - misery - - missing a chance to make a priceless joke - - missing a chance to make a tasteless joke - - missing pets. lost dogs - - mist - - mobile boilers - - mobile homes - - mockingbirds - - model homes - - modeling agencies - - modern Australian - - modern riffs - - mold - - moles - - money-grubbers - - monopolies - - moose head - - more bars - - motorhomes - - movie shoots - - movie tickets - - movies that we will see - - mumblecore - - munchies - - murder of Seventh Street - - murder on Seventh Street - - music that we would never listen to - - music video - - music videos. - - mutant plants - - mystery l - - naming condos - - narcotics - - nasty kiddie pools - - navelgazing - - needles - - neighborhood bars - - net worth - - neurotic - - new buildngs - - new construction - - new jack cornballs - - new old restaurants - - new places that close for renovation - - new political parties - - new res - - new restaurant - - new stores kind of - - new to New York - - new-fangled retainers - - newcomers - - news releases - - nice views - - nickel beer - - nightlife horror shows - - ninja turtles - - nipples - - no credit to the people who have been reporting on the story all along - - no filter - - nobody can eat 50 eggs - - noisy bars - - noisy sex - - nose jobs - - nosh Up - - nostalgia - - not biased or anything - - nothing is gonna stop us now - - novelty T-shirts - - now I got worry - - now I want you to cup your breasts - - nuclear attack - - obsessing - - off-off-Bowery - - oh God - - oh fuck - - old New - - old mattresses that may or may not have a large blood stain on them - - old photos - - old theaters - - old things - - old war stoiries - - one man's Shrek is another man's trash - - one screening room and spit-roast pigs in the backyard - - one-level structures are extinct - - open - - open hydrants - - open summons warrants - - opera - - opinion - - optical illusions - - orange juice - - orange quilt - - ostriches - - ouch - - out of place - - out of season - - outdoor laundry rooms - - overdose - - overhead projectors - - oxymorons - - packing peanuts - - paint splatter - - pandas - - pants of shame - - paper plates - - parties - - passive aggressive - - peanut butter and jelly sandwiches - - pear tree - - pedestrian mall - - peeing on the roof - - penis balloons - - pens and pencils - - people I've never heard of who live in the East Village - - people dressed as trees - - people dressed like chickens - - people we continue to write about for no good reason - - people we like - - people we wish would go away - - people who go to Trader Joe's in their pajamas - - pepper spray - - performances - - personal lubricants - - pet lizards - - pets for sale - - phew - - phoning it in - - phoning it on - - photo projects - - photos of men walking around with cats perched on their head - - physical therapy - - piano bars - - pickets - - picking your nose on national TV - - piles of shoes - - ping-pong - - pink boas - - pink sweaters - - pizza pigeon - - piñatas - - plagues - - planets - - plant bandit - - plant thief - - plastic bags - - please explain - - please indulge me with this post - - pleasure carts - - podcasts - - poetry - - pointless conversations - - poker - - polar bears - - police chase - - police lights - - ponies - - ponzi scheme - - pool - - poor EVG - - pop ups - - pork - - port-a-potties - - possible good news - - post no bills - - pot. - - power tools - - print shop - - printers broken or not - - private party rooms - - promos - - pronghorn - - psych - - psycho-sexual youth - - public advocate - - public art - - public service announcements - - public urination - - pudgy purse snatchers - - punk - - punk-hippie girls - - punks - - purses - - putting naked woman as a tag to see how people will be disappointed - - quality of life - - queer cinema - - questions - - quotation marks - - quoting Footloose in the headline - - racial quality - - racism - - radiation - - rains - - raves - - real-life Bourne Ultimatum - - real-tailed hawks - - really big houses - - rebel scum - - recipes - - recording studios - - red blobs - - red hot pokers - - red tailed hawks - - red-tails hawks - - redevelopment - - references to Starship songs - - relief - - religion - - reminders - - removable codpiece - - renaming neighborhoods - - rent abatement - - rent increase - - rent laws - - restaurant closures - - restaurants for sale - - restaurants named after horses - - restaurnt closings - - resurfacers gonna resurface - - retail to residential - - reverse psychology - - rewards - - rice krispie treats - - rich people - - rich zip codes - - right place - - road trip - - road wok - - roadwork - - robot drummers - - robot lawnmowers - - rock - - rock stars and their baby names - - rockets - - rogue rings - - roll-down gates - - roll-down gates. 100 Gates - - rolldown gates - - roller derby - - roller skating - - rompers - - rooftop pools - - rooftop santa - - rotten tenants - - rub - - ruckus - - rude behavior - - rudy mancuso - - ruining the neighborhood one bonbon at a time -- ha - - rules - - rum - - rumos - - runaway dogs - - rusty fridge - - s and m clubs - - sad cat photos - - safer streets - - saints - - sales - - saloons - - same as it ever was - - same-sex marriage - - scalies - - scavenger hunts - - scofflaw patrol - - scotch - - screeches - - seasons - - see you in the emergency room - - seize the day - - send help - - sensible footwear - - serial evictees - - severed arms - - severed dog heads - - severed party heads on a stick - - severed stuffed zebra heads - - sewage repairs - - sex parties - - sexism - - sexy - - shameless plugs - - sheep - - shilling - - shirtless shopping - - shitholes - - shithows - - shitter's clogged - - shitty gifts - - shockers - - shooting around the East Village - - shop - - shop shops - - shot heard 'round the world - - shots fired - - shrubs - - shut up - - sidewalk repairs - - sidewalk scenes - - signal poles - - silly inventions - - singalongs - - single-screen movie theaters - - sit-ups - - six-foot subs - - skateboarders - - skind row - - skywriters - - slugs - - sluts - - smartphones - - smoking Puff & Pass - - smooth shaves - - sneakers - - snow bills - - snow in August - - snow in October - - snow man - - snow squall - - snow tires are for pussies - - snowplow - - snowplows - - social experiments - - social workers - - socks - - sofas - - solidcore - - some view - - songs we've always liked - - sonkhole - - soon - - soothing our jangled nerves - - soul - - soup - - space shuttle - - special retail district - - speechless - - spelling - - spending too much time on Flickr - - spider webs - - spiders - - spit-roasting cow - - spray paint - - spring? - - squash - - squirt guns - - stage freight - - stairwell collapses - - standard-of-living bubble - - standing around - - stargazing - - statues - - staycation - - stealing cabs - - stealing table settings - - steam pipes - - stern signs - - still got it - - still talking about the damn stoop - - stock market - - stolen artwork - - stolen benches - - stolen flower pots - - stolen menus - - stolen plants - - stoop - - stories of neighbors - - storm of the Saturday - - storm sex - - strange but true probably - - straw - - strawberries - - street - - street art. murals - - street cleaning - - street festival - - street lights - - street sweepers - - street-smart attire - - streetart - - streeteateries - - streetlights - - string cheese - - stuck cats - - student newspapers - - stunt burgers - - stunt parking - - stupid magic tricks - - stupid stuff people throw away - - subprime-mortgage crisis - - suburbs in Times Square - - subway ads - - subway grates - - subway series - - summer 2015 - - summer concerts - - summer ruined - - sun soakers - - sunglasses - - suntans - - super blood moon - - super moon - - super sugary breakfast cereal - - supportive housing - - surfing - - surprises - - sutra - - sweeps - - sxxssxz - - t-rex - - tages - - tags - - tailors - - tales from the crypt - - tapas - - tar - - tarot cards - - tattoo artists - - tattooed bartenders - - tax photo collection - - taxi relief stand - - taxidermy - - technology - - tenant harassment - - tenant notification - - tenant relocator - - tenement life - - tents - - terraces - - terrestrial snails - - thank you Jesus - - thank you motherfuckers - - that motorcycle - - that nerdy guy who looks like he could be in Weezer - - that sinking feeling - - that weird-looking sky last night - - that woman who sits on newspaper boxes - - the - - the 292 Theatre/Gallery - - the Bhakti Center - - the Black Keys - - the Bling Pig - - the Blue Door - - the Bowery Hotel - - the Bowery Presents - - the Bowery. zoning - - the Breeders - - the Brindle Room - - the Calyx - - the Clemente Center - - the Colonel - - the Cornelia Connelly Center - - the Dark Side - - the Dictators - - the Drunken Clam - - the Dugout - - the E. 10th St. Finest Deli - - the East Village Book Club - - the East Village Community Coalition - - the East Village and Lower East Side Bike Friendly Business District - - the Empire Strikes Back - - the Famous Cozy Soup 'n' Burger - - the Financial District - - the Fleshtones - - the Fragile Flour - - the Gatsby Hotel - - the Giants - - the God of Gambling - - the Goodies - - the Gun Club - - the Hamptons - - the Historic Landmarks Preservation Center - - the Incubator Arts Project - - the Inn on Irving Place - - the LGBTQ History Project - - the Lee - - the Little Laptop Shop - - the Lower East Side Playground Field - - the Market Line - - the Masalawala - - the Metropolitan Museum of Art - - the Miracle Garden - - the MoniMonimax 4000W - - the Monimax 4000W - - the Museum of the City of New York - - the NYC Department of Pedestrian Etiquette - - the New York City Pharmacy - - the New York Funny Songs Fest - - the New York Shock Exchange - - the Nightlife Advisory Board - - the Oasis Cafe - - the Office of Mr. Moto - - the Parish of Calvary-St. George’s - - the Pizza Spot - - the Ramone - - the Soho/Noho upzoning plan - - the Spin Doctors - - the Swankery - - the Tower of Toys - - the Train - - the Unicorn Frame Shop - - the Village Winery Club - - the Voidoids - - the Whole Foods Market® Bowery - - the Williamsburg Bridge - - the Wowery - - the Yeah Yeah Yeahs - - the barricaded chair of 5th Street - - the book man - - the bull - - the city that never sleeps cliches - - the country - - the death star - - the downturn - - the east village is fun - - the fast and the curious - - the flu - - the goes the neighborhood again and again - - the good life - - the goold old days - - the humanity - - the majestic aroma of the neighborhood - - the most important story of the year - - the old man is still talking - - the one day when we recall that song by Arcadia - - the person taking photos of his check - - the rat - - the rat pack? - - the rece - - the rules of journalism - - the sky is falling - - the sperm bank neighborhood - - the subway - - the sunsets - - the superficial - - the three-wheeled Polaris Slingshot - - the worst people in the world - - theaters - - then move to - - these grow so fast - - these models have no public hair - - thew Boiler Room - - things in fur - - things that I can do - - things that I don't get - - things that I'll never do - - things that are dead - - things that are long - - things that are saturated - - things that are vague - - things that aren't dogs - - things that no one cares about - - things that vibrate - - things that we don't need any more of - - things that you can't make up - - things that you dip - - things to do at midnight - - things we can't afford - - think about the children - - thinking too much about things - - this is Henry Hudson's fault - - this is just wrong - - this joke never gets old - - this really has noting to do with the East Village - - thongs - - three base movements of heave - - thrifty - - thunderstorm - - tide pods - - timber - - time capsules - - time warps - - time-lapse - - to submerge yourself - - toe tappers - - toga parties - - tomorrow - - too many storylines in one post - - toothless children - - tourism - - towing - - townhouse conversions - - tranhumanism - - treadmills - - tree - - tree wells - - trendy places - - trombones - - trophies - - truck bombs - - truck nuts - - trust funds - - try decaf - - tubas - - turkey-stuffed donuts - - u turns - - ugly stereotypes - - unapproved menacing - - underage drinking - - underewear - - underwear - - unicycles - - unions - - unlocked front door - - unrest - - unshoveled sidewalks - - upscale lounges - - urballoon - - urban gardens - - urban legends - - urban pioneers - - urbanites of our new age - - used books - - user reviews - - vacations - - vaccinatiopns - - vaccines - - vegan doughnuts - - vibrators - - vice presidential debates - - videos - - vikings - - vintage TV - - visit these sites - - visitnyc.com - - volt - - voting Election 2020 - - vowels - - walk-don't walk - - walk-up building - - walks of shame - - walnut vanities - - warlocks - - warming centers - - water gun assassinations - - waterfalls - - wax - - wax on - - way off point - - we OWN this fucking story - - we don't know what to do with our money - - we'd still rather buy coffee from the guy at the coffee cart next to our office - - wean you off Ukrainian delivery - - weapons - - wedding crashers - - wedding destination - - week in review - - wet paint - - wet red paint - - what lies beneath - - what would Hilly think - - what year is this - - what's for dinner - - whatever - - whatever happened to... - - wheat paste - - where did it all go wrong - - where the streets have no green - - whips - - white lines - - white noise - - who gives a shit - - who's running this town anyway - - who's who - - whoa - - why EV Grieve doesn't write about food - - why I went to journalism school - - why am i walking in the snow at this hour? - - why bother even saying anything - - why does someone need 12 bathrooms? - - why this is horrible - - wicker vanity tables - - wilding - - wildlife - - wind chimes - - window lentel - - window lintel - - window washing - - windows - - wine bars - - wine stores - - winter 2024 - - winter storms - - wires - - wishful thinking - - wolfwomen - - woo is me - - woo — we were on TV - - wood chips - - wood lathe - - woodcock - - woomageddon - - worse idea ever - - wrong time - - yarn hammocks - - yarn-covered rickshaws on Avenue A - - yoga with dogs - - you beautiful beast you - - you can really deep fry anything - - you're a llama - - you're a mean one Mr. Grinch - - you're old - - young Flanagan - - young lawyers - - young professionals - - young real-estate moguls - - your source for mannequin sightings - - yuk yuk - - zebra chairs - - zipper bench - relme: {} - last_post_title: Greenmarket season begins on Astor Place - last_post_description: The Astor Place Greenmarket returns today. GrowNYC's seasonal - market is here Tuesdays from 8 a.m. to 5 p.m. through Nov. 26.Confirmed participants - this first week: • Kernan Farms Vegetables — - last_post_date: "2024-06-04T09:26:00Z" - last_post_link: http://evgrieve.com/2024/06/greenmarket-season-begins-on-astor-place.html - last_post_categories: - - Astor Place Greenmarket - last_post_guid: ef6ff11635b9109795d9dd09e424e382 - score_criteria: - cats: 5 - description: 3 - postcats: 1 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 19 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9c71b4cf55964907992d33f1de3cc0cc.md b/content/discover/feed-9c71b4cf55964907992d33f1de3cc0cc.md deleted file mode 100644 index 98e207190..000000000 --- a/content/discover/feed-9c71b4cf55964907992d33f1de3cc0cc.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: ooh.directory -date: "1970-01-01T00:00:00Z" -description: Public posts from @OohDirectory@mastodon.social -params: - feedlink: https://mastodon.social/@OohDirectory.rss - feedtype: rss - feedid: 9c71b4cf55964907992d33f1de3cc0cc - websites: - https://mastodon.social/@OohDirectory: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://ooh.directory/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9ca881be4815978b6f0ce112834c765f.md b/content/discover/feed-9ca881be4815978b6f0ce112834c765f.md index 23e1a954e..6bb8e32a1 100644 --- a/content/discover/feed-9ca881be4815978b6f0ce112834c765f.md +++ b/content/discover/feed-9ca881be4815978b6f0ce112834c765f.md @@ -1,6 +1,6 @@ --- title: jimkang.com -date: "2024-02-07T19:00:00-05:00" +date: "2024-07-04T20:00:00-04:00" description: It's dot com. params: feedlink: https://jimkang.com/weblog/feed.xml @@ -11,34 +11,37 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: [] relme: {} - last_post_title: The mystery of the Confucian Girl - last_post_description: We finished Season 1 of Girls’ High Mystery Class, which - was fun. The mysteries were well-designed (though, I don’t think I actually solved - any of them), and it was good times to watch the - last_post_date: "2024-02-07T19:00:00-05:00" - last_post_link: http://jimkang.com/weblog/articles/mystery-of-the-confucian-girl/ + last_post_title: The Daily Sutra + last_post_description: |- + Last Friday, I found myself a liturgical space while listening to a news podcast. + + + The Daily is a daily news podcast. It’s hit-or-miss, but one segment I do appreciate consistently is the + last_post_date: "2024-07-04T20:00:00-04:00" + last_post_link: http://jimkang.com/weblog/articles/daily-sutra/ last_post_categories: [] - last_post_guid: c22e6c90112de3ea79b6c657535e025d + last_post_language: "" + last_post_guid: 9c752d042b8d30b14ec53ded50cbcaad score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-9cdc20631798c52d4d9742820ab7c611.md b/content/discover/feed-9cdc20631798c52d4d9742820ab7c611.md deleted file mode 100644 index ccb6a068e..000000000 --- a/content/discover/feed-9cdc20631798c52d4d9742820ab7c611.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Jake Archibald's blog -date: "2024-05-01T14:47:14Z" -description: "" -params: - feedlink: https://jakearchibald.com/posts.rss - feedtype: atom - feedid: 9cdc20631798c52d4d9742820ab7c611 - websites: - https://jakearchibald.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: [] - relme: {} - last_post_title: HTML attributes vs DOM properties - last_post_description: They're completely different, but often coupled. - last_post_date: "2024-04-24T01:00:00Z" - last_post_link: https://jakearchibald.com/2024/attributes-vs-properties/ - last_post_categories: [] - last_post_guid: 438c21260f4fb2cfedb92b184d98978d - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9cf2279f7eda043cfb3d7b7fa13590a6.md b/content/discover/feed-9cf2279f7eda043cfb3d7b7fa13590a6.md deleted file mode 100644 index 304fbf586..000000000 --- a/content/discover/feed-9cf2279f7eda043cfb3d7b7fa13590a6.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: anticdent -date: "1970-01-01T00:00:00Z" -description: Public posts from @anticdent@hachyderm.io -params: - feedlink: https://hachyderm.io/@anticdent.rss - feedtype: rss - feedid: 9cf2279f7eda043cfb3d7b7fa13590a6 - websites: - https://hachyderm.io/@anticdent: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://anticdent.org/: true - https://github.com/cdent: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9d079f383fb017623a0bc9d4b3d589b4.md b/content/discover/feed-9d079f383fb017623a0bc9d4b3d589b4.md new file mode 100644 index 000000000..14ac30445 --- /dev/null +++ b/content/discover/feed-9d079f383fb017623a0bc9d4b3d589b4.md @@ -0,0 +1,43 @@ +--- +title: Scoutess GSOC +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://projectscoutess.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 9d079f383fb017623a0bc9d4b3d589b4 + websites: + https://projectscoutess.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://projectscoutess.blogspot.com/: true + https://www.blogger.com/profile/15526193185905577771: true + last_post_title: Mission Report + last_post_description: Well, that's the end of my GSoC project and I'm pleased to + inform you that Scoutess was a success! While it hasn't been smooth sailing for + every minute of the journey, I've learnt a lot and am very + last_post_date: "2012-08-15T18:06:00Z" + last_post_link: https://projectscoutess.blogspot.com/2012/08/mission-report.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 259d0a0522c153fa017023d9b77267bd + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9d0de2011fe4c31c6fb16a1b42fe066c.md b/content/discover/feed-9d0de2011fe4c31c6fb16a1b42fe066c.md deleted file mode 100644 index 14f6e33a7..000000000 --- a/content/discover/feed-9d0de2011fe4c31c6fb16a1b42fe066c.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: Links • Cory Dransfeldt -date: "1970-01-01T00:00:00Z" -description: Links I've liked. -params: - feedlink: https://feedpress.me/coryd-links - feedtype: rss - feedid: 9d0de2011fe4c31c6fb16a1b42fe066c - websites: - https://coryd.dev/: false - https://coryd.dev/contact: false - https://coryd.dev/feeds: false - https://coryd.dev/links: true - https://coryd.dev/music: false - https://coryd.dev/now: false - https://coryd.dev/webrings: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://buymeacoffee.com/cory: false - https://coryd.dev/contact: false - https://coryd.dev/webrings: false - https://github.com/cdransf: false - https://listenbrainz.org/user/cdransf/: false - https://social.lol/@cory: false - https://www.instapaper.com/p/coryd: false - https://www.npmjs.com/~cdransf: false - last_post_title: Jack Dorsey, Bluesky, decentralised social networks and the very - common crowd via David Gerard - last_post_description: Twitter founder Jack Dorsey has been interviewed in Pirate - Wires by Mike Solana about social media and why he left the Bluesky social network - site and the Bluesky company board. - last_post_date: "2024-06-04T01:38:00Z" - last_post_link: https://feedpress.me/link/23849/16702809/jack-dorsey-bluesky-decentralised-social-networks-and-the-very-common-crowd - last_post_categories: [] - last_post_guid: e142793698fa959f2fed43405a8411d4 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9d20bc8847701cdf2799fcc8a730be80.md b/content/discover/feed-9d20bc8847701cdf2799fcc8a730be80.md new file mode 100644 index 000000000..d3d4d751c --- /dev/null +++ b/content/discover/feed-9d20bc8847701cdf2799fcc8a730be80.md @@ -0,0 +1,53 @@ +--- +title: GeePawHill.org +date: "1970-01-01T00:00:00Z" +description: Helping Geeks Produce. +params: + feedlink: https://www.geepawhill.org/feed/ + feedtype: rss + feedid: 9d20bc8847701cdf2799fcc8a730be80 + websites: + https://www.geepawhill.org/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - Change + - Change Harvesting + - Leading Technical Change + - Muses + relme: + https://www.geepawhill.org/: true + last_post_title: Optimize for Our Humans + last_post_description: 'Leading Technical Change is a small, live, remote seminar + aimed squarely at a single topic: Real Change in the Real World. A new cohort + is open now: March 11,12,14, & 15, 10am to noon Eastern (UTC-5)' + last_post_date: "2024-02-23T17:38:01Z" + last_post_link: https://www.geepawhill.org/2024/02/23/optimize-for-our-humans/ + last_post_categories: + - Change + - Change Harvesting + - Leading Technical Change + - Muses + last_post_language: "" + last_post_guid: cc6cf29cd0be11e0947098482e3ec80f + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 22 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-9d233378c486bbdb2f5665e60e1ce5a5.md b/content/discover/feed-9d233378c486bbdb2f5665e60e1ce5a5.md deleted file mode 100644 index 3af1dc08c..000000000 --- a/content/discover/feed-9d233378c486bbdb2f5665e60e1ce5a5.md +++ /dev/null @@ -1,53 +0,0 @@ ---- -title: simply. -date: "2024-06-04T13:04:02Z" -description: "" -params: - feedlink: https://simply.jenett.org/feed.atom - feedtype: atom - feedid: 9d233378c486bbdb2f5665e60e1ce5a5 - websites: - https://simply.jenett.org/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://bsky.app/profile/jenett.bsky.social: false - https://directory.joejenett.com/: false - https://github.com/joejenett: false - https://ideas.joejenett.com/: true - https://iwebthings.joejenett.com/: true - https://jenett.org/: false - https://joe.joejenett.com/: false - https://joejenett.com/: false - https://joejenett.github.io/i.webthings/: true - https://linkscatter.joejenett.com/: false - https://mastodon.online/@iwebthings: false - https://mastodon.online/@jenett: true - https://micro.blog/joejenett: false - https://photo.joejenett.com/: false - https://pointers.dailywebthing.com/: false - https://simply.joejenett.com/: false - https://the.dailywebthing.com/: false - https://toot.community/@jenett: false - https://wiki.joejenett.com/: false - last_post_title: whataya mean - pulled a Jack? - last_post_description: "" - last_post_date: "2024-05-28T12:52:06Z" - last_post_link: https://simply.jenett.org/whataya-mean-pulled-a-jack/ - last_post_categories: [] - last_post_guid: 82141352d0d160430ef9b75f5878afe6 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9d424b404ff03643b6e45dedf6d539bf.md b/content/discover/feed-9d424b404ff03643b6e45dedf6d539bf.md deleted file mode 100644 index ed3baf6da..000000000 --- a/content/discover/feed-9d424b404ff03643b6e45dedf6d539bf.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Learn With Jason Episodes RSS Feed -date: "1970-01-01T00:00:00Z" -description: Learn from the web’s leading experts. Build something new. Grow your - career. Let’s do it together. -params: - feedlink: https://lwj.dev/episodes/rss.xml - feedtype: rss - feedid: 9d424b404ff03643b6e45dedf6d539bf - websites: - https://lwj.dev/newsletter: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: AnalogJS is the full-stack meta-framework for Angular (with Brandon - Roberts) - last_post_description: There’s a whole lot of interesting innovation happening in - AnalogJS. Creator Brandon Roberts will teach us why it’s exciting, whether you’re - an Angular dev or not. - last_post_date: "2024-05-30T16:30:00Z" - last_post_link: https://www.learnwithjason.dev/analogjs-is-the-full-stack-meta-framework-for-angular/ - last_post_categories: [] - last_post_guid: ce2128c4668d8d5383b379106e32cbef - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9d47f372af74850833602fb6babb68ae.md b/content/discover/feed-9d47f372af74850833602fb6babb68ae.md new file mode 100644 index 000000000..52bb412f0 --- /dev/null +++ b/content/discover/feed-9d47f372af74850833602fb6babb68ae.md @@ -0,0 +1,42 @@ +--- +title: Firefox Test Pilot - Medium +date: "1970-01-01T00:00:00Z" +description: Helping you help build Firefox - Medium +params: + feedlink: https://medium.com/feed/firefox-test-pilot + feedtype: rss + feedid: 9d47f372af74850833602fb6babb68ae + websites: + https://medium.com/firefox-test-pilot?source=rss----46b1a2ddb811---4: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - firefox + relme: + https://medium.com/firefox-test-pilot?source=rss----46b1a2ddb811---4: true + last_post_title: Adios, Amigo + last_post_description: "" + last_post_date: "2019-01-15T21:00:45Z" + last_post_link: https://medium.com/firefox-test-pilot/adios-amigo-51bec2a00072?source=rss----46b1a2ddb811---4 + last_post_categories: + - firefox + last_post_language: "" + last_post_guid: aba36937cbbdb87285c305c54ea51f96 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9d4b4754202c5fa6265e7953789cbc31.md b/content/discover/feed-9d4b4754202c5fa6265e7953789cbc31.md new file mode 100644 index 000000000..fe75d778d --- /dev/null +++ b/content/discover/feed-9d4b4754202c5fa6265e7953789cbc31.md @@ -0,0 +1,66 @@ +--- +title: Paco's Miscellaneous Stuff +date: "2024-05-25T17:21:13+02:00" +description: Miscellaneous stuff done mostly by me. Almost all of it is for Warhammer + Fantasy Roleplay (WFRP). +params: + feedlink: https://pacomiscelaneousstuff.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 9d4b4754202c5fa6265e7953789cbc31 + websites: + https://pacomiscelaneousstuff.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - 1st edition + - 2nd edition + - 4th edition + - CC0 + - Images + - JavaScript + - Maps + - Oldenhaller + - RPG + - Random Generator + - Tutorial + - WFRP + - Warhammer Fantasy Role Play + - Zweihander + - castellano + - español + relme: + https://pacomiscelaneousstuff.blogspot.com/: true + last_post_title: Quick, dirty and ugly JavaScript tutorial for random generators + (Part 5) + last_post_description: "" + last_post_date: "2023-03-26T12:13:35+02:00" + last_post_link: https://pacomiscelaneousstuff.blogspot.com/2023/03/quick-dirty-and-ugly-javascript.html + last_post_categories: + - CC0 + - JavaScript + - Maps + - Random Generator + - Tutorial + last_post_language: "" + last_post_guid: ffa1cc475d16d90cf13d55312590f25a + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 26 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9d818991c73df8efa44c41339607d4a9.md b/content/discover/feed-9d818991c73df8efa44c41339607d4a9.md deleted file mode 100644 index 7d9b1c154..000000000 --- a/content/discover/feed-9d818991c73df8efa44c41339607d4a9.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Email is good. -date: "1970-01-01T00:00:00Z" -description: A site about email productivity. -params: - feedlink: https://email-is-good.com/feed - feedtype: rss - feedid: 9d818991c73df8efa44c41339607d4a9 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://kevq.uk/feed - - https://kevq.uk/feed.xml - - https://kevq.uk/feed/ - - https://kevquirk.com/feed - categories: - - Uncategorized - relme: {} - last_post_title: Stop signing your emails? - last_post_description: I don’t 100% know what Michael Lopp means here but my guess - is that you don’t need any email signature at all. Not a big crazy one that is - longer than the email itself like your last realtor had. - last_post_date: "2024-05-28T15:42:30Z" - last_post_link: https://email-is-good.com/2024/05/28/stop-signing-your-emails/ - last_post_categories: - - Uncategorized - last_post_guid: 0d8dbb3d069f79c36cf17e29de840df7 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 12 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9d97f59650142dd0563fb20640ddb0fb.md b/content/discover/feed-9d97f59650142dd0563fb20640ddb0fb.md deleted file mode 100644 index 792d57117..000000000 --- a/content/discover/feed-9d97f59650142dd0563fb20640ddb0fb.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: New Releases -date: "2024-06-04T12:01:22Z" -description: Latest releases of all packages. -params: - feedlink: https://packagist.org/feeds/releases.rss - feedtype: rss - feedid: 9d97f59650142dd0563fb20640ddb0fb - websites: - https://packagist.org/explore/: true - https://packagist.org/packages/pfefferle/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: helsingborg-stad/wpservice (1.25.1) - last_post_description: Simplifies WordPress integration by providing a centralized - WpService that exposes global WordPress functions in a streamlined manner. Simplify - your development workflow and enhance WordPress - last_post_date: "2024-06-04T12:01:22Z" - last_post_link: https://packagist.org/packages/helsingborg-stad/wpservice - last_post_categories: [] - last_post_guid: 78c290b2e7f6d0161daacebb74dab167 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9daa8609e2591e0b813f3e9e412a49ed.md b/content/discover/feed-9daa8609e2591e0b813f3e9e412a49ed.md new file mode 100644 index 000000000..175fd0a6e --- /dev/null +++ b/content/discover/feed-9daa8609e2591e0b813f3e9e412a49ed.md @@ -0,0 +1,77 @@ +--- +title: Cacheboy Development +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://cacheboy.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 9daa8609e2591e0b813f3e9e412a49ed + websites: + https://cacheboy.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - BGP + - TPROXY + - anycast + - as250 + - cacheboy + - cacheboy ipv6 + - cdn + - cyberduck + - dns + - downtime + - freebsd + - geoip + - ipv6 + - lighttpd + - lusca + - mozilla + - news + - nnrp + - nntp + - olpc + - oprofile + - performance + - proxy + - quagga + - squid + - sugarlabs + - usenet + - videolan + - wiki + - wishlist + relme: + https://adrianchadd.blogspot.com/: true + https://cacheboy.blogspot.com/: true + https://lusca-cache.blogspot.com/: true + https://www.blogger.com/profile/17496219706861321916: true + https://xenionhosting.blogspot.com/: true + last_post_title: Where's cacheboy been hiding? + last_post_description: I've had a few people ask where Cacheboy has been hiding + since late 2009.In short - I had a lack of reliable traffic nodes and my bachelor's + degree to finish off.Now, the long version.The university + last_post_date: "2011-07-16T02:04:00Z" + last_post_link: https://cacheboy.blogspot.com/2011/07/wheres-cacheboy-been-hiding.html + last_post_categories: + - cacheboy + last_post_language: "" + last_post_guid: 3e36cba8bf968785e666acaa5d190afb + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9db307171bd6b8b685c312ba2026c750.md b/content/discover/feed-9db307171bd6b8b685c312ba2026c750.md deleted file mode 100644 index e6966fc48..000000000 --- a/content/discover/feed-9db307171bd6b8b685c312ba2026c750.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Maggie Appleton -date: "1970-01-01T00:00:00Z" -description: Public posts from @maggie@indieweb.social -params: - feedlink: https://indieweb.social/@maggie.rss - feedtype: rss - feedid: 9db307171bd6b8b685c312ba2026c750 - websites: - https://indieweb.social/@maggie: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://maggieappleton.com/: true - https://twitter.com/mappletons: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9dbb44fb4dcef4f66bc9eab91a8c44e2.md b/content/discover/feed-9dbb44fb4dcef4f66bc9eab91a8c44e2.md new file mode 100644 index 000000000..196491943 --- /dev/null +++ b/content/discover/feed-9dbb44fb4dcef4f66bc9eab91a8c44e2.md @@ -0,0 +1,45 @@ +--- +title: Feed of "Simon Vieille" +date: "2024-07-09T05:19:30+02:00" +description: "French devop driven by the culture of free and hacking \U0001F987" +params: + feedlink: https://gitnet.fr/deblan.rss + feedtype: rss + feedid: 9dbb44fb4dcef4f66bc9eab91a8c44e2 + websites: + https://gitnet.fr/deblan: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://github.com/simmstein: true + https://gitnet.fr/deblan: true + https://mamot.fr/@deblan: true + https://www.deblan.io/: true + last_post_title: Simon Vieille pushed to pages at deblan/side_menu_doc + last_post_description: |- + d52cc56e760a8836bc55bc95f931149b53c1ac54 + Build + last_post_date: "2024-07-05T13:11:58+02:00" + last_post_link: https://gitnet.fr/deblan/side_menu_doc/commit/d52cc56e760a8836bc55bc95f931149b53c1ac54 + last_post_categories: [] + last_post_language: "" + last_post_guid: 5ac9836739c23fac91eba126afc3f126 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9dcd84ddd111273253de8f38cf4640e7.md b/content/discover/feed-9dcd84ddd111273253de8f38cf4640e7.md deleted file mode 100644 index 35aafa0b9..000000000 --- a/content/discover/feed-9dcd84ddd111273253de8f38cf4640e7.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Dr. Adam Procter -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://discursive.adamprocter.co.uk/feed.xml - feedtype: rss - feedid: 9dcd84ddd111273253de8f38cf4640e7 - websites: - https://discursive.adamprocter.co.uk/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/adamprocter: true - https://instagram.com/adamprocter: false - https://micro.blog/adamprocter: false - https://twitter.com/adamprocter: false - last_post_title: Manage our tendency to anthropomorphize - last_post_description: |- - This article in general is an argument against the idea of using science fiction to think critically about AI - - Instead, I ask whether science fiction is sometimes not only an inadequate context for - last_post_date: "2024-05-23T08:17:04+01:00" - last_post_link: https://discursive.adamprocter.co.uk/2024/05/23/manage-our-tendency.html - last_post_categories: [] - last_post_guid: dfc22b0c4b363b690d59b3627601f6b4 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9dd6dee55a2e91fa86e3731e3b1d2918.md b/content/discover/feed-9dd6dee55a2e91fa86e3731e3b1d2918.md new file mode 100644 index 000000000..1bc005d07 --- /dev/null +++ b/content/discover/feed-9dd6dee55a2e91fa86e3731e3b1d2918.md @@ -0,0 +1,43 @@ +--- +title: Comments for WindfluechterNet Blog +date: "1970-01-01T00:00:00Z" +description: '"Allen Gewalten zum Trotz sich erhalten"' +params: + feedlink: https://blog.windfluechter.net/comments/feed/ + feedtype: rss + feedid: 9dd6dee55a2e91fa86e3731e3b1d2918 + websites: + https://blog.windfluechter.net/: true + https://blog.windfluechter.net/author/ij/: false + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://blog.windfluechter.net/: true + last_post_title: Comment on Wieder mehr bloggen… by Steffen Voß + last_post_description:

@ij + Willkommen Zuhause!

Einfach bloggen, als ob es keiner liest!

I've decided to take a new job as an early engineering manager/tech + lead, at a data analytics/database startup. And I hope to begin + blogging/journaling here more about software development and + last_post_date: "2023-09-20T00:00:00Z" + last_post_link: https://tychoish.com/post/the-mid-career-shuffle/ + last_post_categories: [] + last_post_language: "" + last_post_guid: e4d75a6c9ccbd59b8aa206e0fcc37792 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-9f3109ddc94f790030e44a9e5a80b8a4.md b/content/discover/feed-9f3109ddc94f790030e44a9e5a80b8a4.md new file mode 100644 index 000000000..0f4f3cebb --- /dev/null +++ b/content/discover/feed-9f3109ddc94f790030e44a9e5a80b8a4.md @@ -0,0 +1,44 @@ +--- +title: Open Source Musings +date: "2024-03-12T19:39:56-07:00" +description: Random thoughts and discussions mostly about open source, including business + and economic models. Discussions about software engineering, Eclipse, SOA, game + theory, project management, and other +params: + feedlink: https://osmusings.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 9f3109ddc94f790030e44a9e5a80b8a4 + websites: + https://osmusings.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://dataplat.blogspot.com/: true + https://osmusings.blogspot.com/: true + https://www.blogger.com/profile/02062334031161915809: true + last_post_title: WPI Presentation + last_post_description: "" + last_post_date: "2013-06-27T12:20:15-07:00" + last_post_link: https://osmusings.blogspot.com/2013/06/wpi-presentation.html + last_post_categories: [] + last_post_language: "" + last_post_guid: cd3a2b07354cae249d41a5c2e518144b + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9f3494d28e2596d3b3cfb829d175275d.md b/content/discover/feed-9f3494d28e2596d3b3cfb829d175275d.md deleted file mode 100644 index e18914659..000000000 --- a/content/discover/feed-9f3494d28e2596d3b3cfb829d175275d.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: NewPipe Blog -date: "1970-01-01T00:00:00Z" -description: The latest blog posts -params: - feedlink: https://newpipe.net/blog/feeds/news.rss - feedtype: rss - feedid: 9f3494d28e2596d3b3cfb829d175275d - websites: - https://newpipe.net/: true - https://newpipe.net/blog/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: State of the Pipe 2023 - last_post_description: |- - As the year comes to a close, it’s an opportune moment to reflect on the journey of NewPipe over the past year and to cast a glance toward the project’s future. - - - - NewPipe in 2023 - - In 2023, - last_post_date: "2023-12-31T09:00:00+01:00" - last_post_link: https://newpipe.net/blog/pinned/announcement/State-of-the-Pipe-2023/ - last_post_categories: [] - last_post_guid: eda3459ed26b5f64b98793ba44c4dcce - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9f5fa7dc828d684ea83a7b5db1b710d0.md b/content/discover/feed-9f5fa7dc828d684ea83a7b5db1b710d0.md index 16039d074..dd3a29105 100644 --- a/content/discover/feed-9f5fa7dc828d684ea83a7b5db1b710d0.md +++ b/content/discover/feed-9f5fa7dc828d684ea83a7b5db1b710d0.md @@ -1,66 +1,60 @@ --- title: i.webthings hub -date: "2024-06-03T16:45:15Z" +date: "2024-07-08T13:08:29Z" description: i.webthings - an independent, noncommercial web initiative. params: feedlink: https://iwebthings.joejenett.com/feed.xml feedtype: atom feedid: 9f5fa7dc828d684ea83a7b5db1b710d0 websites: - https://iwebthings.jenett.org/: false https://iwebthings.joejenett.com/: true blogrolls: [] recommended: [] recommender: - http://scripting.com/rss.xml + - http://scripting.com/rssNightly.xml categories: - - resources - - gratis + - inspiration + - linkylove relme: - https://bsky.app/profile/jenett.bsky.social: false - https://directory.jenett.org/: true + https://bulltown.2022.joejenett.com/: true https://directory.joejenett.com/: true - https://github.com/joejenett: false + https://fediverse-webring-enthusiasts.glitch.me/profiles/jenett_toot.community/index.html: true + https://github.com/joejenett: true https://ideas.joejenett.com/: true - https://iwebthings.jenett.org/: true https://iwebthings.joejenett.com/: true - https://jenett.org/: true - https://joe.jenett.org/: true - https://joe.joejenett.com/: false https://joejenett.com/: true https://joejenett.github.io/i.webthings/: true - https://linkscatter.jenett.org/: false - https://linkscatter.joejenett.com/: false - https://micro.blog/joejenett: false - https://photo.jenett.org/: false - https://photo.joejenett.com/: false - https://pointers.dailywebthing.com/: false - https://simply.jenett.org/: true + https://linkscatter.joejenett.com/: true + https://photo.joejenett.com/: true https://simply.joejenett.com/: true - https://the.dailywebthing.com/: false https://toot.community/@jenett: true - https://twitter.com/iwebthings: false - https://twitter.com/joejenett: false - https://wiki.jenett.org/: true https://wiki.joejenett.com/: true - last_post_title: “You can find inspiration here.” - last_post_description: Free to Use and Reuse Sets ⇾ [alastc] - last_post_date: "2024-06-03T11:55:13Z" - last_post_link: https://iwebthings.joejenett.com/you-can-find-inspiration-here/ + last_post_title: linkylove.inspired 07-08-24 + last_post_description: "Jacob Hall↪linkroll↪wordways CogDogBlog↪Barking Dog Studio↪CogDog + is Alan Levine indieblog.page ⇦↪List of all Blogs↪\U0001F3B2 Open Random Blog + Post → → Graham’s Island Size Of Life" + last_post_date: "2024-07-08T11:40:25Z" + last_post_link: https://iwebthings.joejenett.com/linkylove-inspired-07-08-24/ last_post_categories: - - resources - - gratis - last_post_guid: d320cdac8f54ad6bb6ed1fa4c1b4a2cc + - inspiration + - linkylove + last_post_language: "" + last_post_guid: 690b95ac65d71fdca643238b28d900d0 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 2 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 17 + score: 20 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-9f62a729522eba68e5b7dd9cee48caec.md b/content/discover/feed-9f62a729522eba68e5b7dd9cee48caec.md new file mode 100644 index 000000000..d72b0e6e8 --- /dev/null +++ b/content/discover/feed-9f62a729522eba68e5b7dd9cee48caec.md @@ -0,0 +1,108 @@ +--- +title: How 2 Map +date: "2024-07-07T16:16:03+10:00" +description: Design, Discussion and Documentation from around the Java GIS world. +params: + feedlink: https://www.how2map.com/feeds/posts/default + feedtype: atom + feedid: 9f62a729522eba68e5b7dd9cee48caec + websites: + https://www.how2map.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Drink-Eat-Enjoy + - api + - australia + - blogging + - book + - boundless + - ccip + - codesprint + - community + - conference + - csw + - developers guide + - documentation + - eclipse + - esri + - foss4g + - foss4gna + - funny + - geoapi + - georabble + - geoserver + - geotools + - git + - history + - incubation + - java + - java apple + - java.net + - jdk + - jts + - latinoware + - lisasoft + - locationtech + - mac + - maven + - netbeans + - ogc + - opengeo + - openlayers + - osgeo + - osgeo livedvd lisasoft + - osgeolive + - osm + - parsing + - picture + - picutre + - pycsw + - qgis + - rcp + - rectangle + - refractions + - schema + - standards + - udig + - udig release + - user guide + - version hell + - welcome + - win32 + - wps + - xml + - xsd + relme: + https://www.blogger.com/profile/10376195727731958785: true + https://www.how2map.com/: true + last_post_title: FOSS4G 2018 + last_post_description: "" + last_post_date: "2018-11-07T05:12:51+11:00" + last_post_link: https://www.how2map.com/2018/11/foss4g-2018.html + last_post_categories: + - foss4g + - geoserver + - geotools + - locationtech + - osgeo + last_post_language: "" + last_post_guid: 50a2b7d4449888ef74b5bb32cf2faf09 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9f64b0612bce1793983c3f0c22fa8baf.md b/content/discover/feed-9f64b0612bce1793983c3f0c22fa8baf.md index 6bf79a724..42e97be97 100644 --- a/content/discover/feed-9f64b0612bce1793983c3f0c22fa8baf.md +++ b/content/discover/feed-9f64b0612bce1793983c3f0c22fa8baf.md @@ -16,6 +16,7 @@ params: - gnome relme: https://nondeterministic.computer/@ramcq: true + https://ramcq.net/: true last_post_title: Update from the GNOME board last_post_description: It’s been around 6 months since the GNOME Foundation was joined by our new Executive Director, Holly Million, and the board and I wanted @@ -25,17 +26,22 @@ params: last_post_categories: - GNOME - gnome + last_post_language: "" last_post_guid: 08751526b19a861ab8521abb8edf8135 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 2 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 12 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-9f784d0dce77b257ec842a9e652f3fde.md b/content/discover/feed-9f784d0dce77b257ec842a9e652f3fde.md new file mode 100644 index 000000000..2db5c0581 --- /dev/null +++ b/content/discover/feed-9f784d0dce77b257ec842a9e652f3fde.md @@ -0,0 +1,41 @@ +--- +title: 'GSoC 2022: GNOME' +date: "2024-03-08T23:23:56+05:30" +description: This blog is about my experiences as a contributor for the GNOME Foundation + in GSoC'22. +params: + feedlink: https://utkarsh2401.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 9f784d0dce77b257ec842a9e652f3fde + websites: + https://utkarsh2401.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://utkarsh2401.blogspot.com/: true + last_post_title: 'GSoC 2022: Third Update!' + last_post_description: "" + last_post_date: "2022-08-10T17:30:27+05:30" + last_post_link: https://utkarsh2401.blogspot.com/2022/08/gsoc-2022-third-update.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 310bf879a4ca6b9290b5167c44a38b37 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9f87bb00b5c63030aae8aabace9de9c8.md b/content/discover/feed-9f87bb00b5c63030aae8aabace9de9c8.md new file mode 100644 index 000000000..160d01231 --- /dev/null +++ b/content/discover/feed-9f87bb00b5c63030aae8aabace9de9c8.md @@ -0,0 +1,42 @@ +--- +title: Shed Skin - A (restricted) Python-to-C++ Compiler +date: "1970-01-01T00:00:00Z" +description: blog +params: + feedlink: https://shed-skin.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: 9f87bb00b5c63030aae8aabace9de9c8 + websites: + https://shed-skin.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://shed-skin.blogspot.com/: true + last_post_title: Shed Skin restricted-Python-to-C++ compiler 0.9.9 + last_post_description: I have just released version 0.9.9 of Shed Skin, a restricted-Python-to-C++ + compiler. It comes with many changes under the hood to improve the code base. + For example, Shakeeb has started adding type + last_post_date: "2024-06-27T08:11:00Z" + last_post_link: https://shed-skin.blogspot.com/2024/06/shed-skin-restricted-python-to-c.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 390ecf4fa1293d523256b69dfddbe822 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9f9914b60b20e4d91cf8cb5c10d9a235.md b/content/discover/feed-9f9914b60b20e4d91cf8cb5c10d9a235.md new file mode 100644 index 000000000..0e64285de --- /dev/null +++ b/content/discover/feed-9f9914b60b20e4d91cf8cb5c10d9a235.md @@ -0,0 +1,55 @@ +--- +title: Craig Maloney +date: "2024-03-25T15:34:00-04:00" +description: More than you cared to know +params: + feedlink: https://decafbad.net/feed/atom.xml + feedtype: atom + feedid: 9f9914b60b20e4d91cf8cb5c10d9a235 + websites: + https://decafbad.net/: true + https://decafbad.net/contact/: false + blogrolls: [] + recommended: [] + recommender: [] + categories: + - A Day In The Life + - Cancer + - Zen Habits + - misc + relme: + https://craigmaloney.itch.io/: true + https://decafbad.net/: true + https://dice.camp/@craigmaloney: true + last_post_title: 'Checking In: 2024-03-25' + last_post_description: |- + Checking in for 2024-03-25: + Buckle up. This is a big update. + + Yesterday I felt like I was going to explode. I compared it to the video game "Dig Dug", which has been an interesting litmus test for + last_post_date: "2024-03-25T15:34:00-04:00" + last_post_link: https://decafbad.net/2024/03/25/checking-in-2024-03-25/ + last_post_categories: + - A Day In The Life + - Cancer + - Zen Habits + - misc + last_post_language: "" + last_post_guid: 1d8793e14f905a06b867994fe3dd62e9 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9f9db21af131bf2c7eebacd750cc9a30.md b/content/discover/feed-9f9db21af131bf2c7eebacd750cc9a30.md new file mode 100644 index 000000000..68895d595 --- /dev/null +++ b/content/discover/feed-9f9db21af131bf2c7eebacd750cc9a30.md @@ -0,0 +1,77 @@ +--- +title: Minimal Solaris +date: "2024-07-02T19:54:45-07:00" +description: "" +params: + feedlink: https://alexeremin.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 9f9db21af131bf2c7eebacd750cc9a30 + websites: + https://alexeremin.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ARM + - Busybox + - CD + - CI + - Caiman + - DTrace + - DevOps + - IRIX + - Jenkins X + - MilaX + - Octane + - OpenSolaris + - Rust + - SGI + - Silicon Graphics + - Solaris + - Sparc + - SunStudio + - Ubuntu VM + - boot + - ddu + - failsafe + - fdisk + - firefly + - gnome + - illumos + - istatd + - kstat + - mdb + - osstat + - pipeline automation + - ripgrep + - smbios + - tardist + - unleashed + - v9os + relme: + https://alexeremin.blogspot.com/: true + https://www.blogger.com/profile/04819890114311693093: true + last_post_title: How to determine PXE mac address when booting illumos via PXELinux/iPXE + last_post_description: "" + last_post_date: "2020-08-02T07:31:47-07:00" + last_post_link: https://alexeremin.blogspot.com/2020/08/how-to-determine-pxe-mac-address-when.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 91afaaaf182b89392b583aa5c9071e76 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9f9f7c2775d87af1e75809e6cb1115e3.md b/content/discover/feed-9f9f7c2775d87af1e75809e6cb1115e3.md new file mode 100644 index 000000000..2ea249483 --- /dev/null +++ b/content/discover/feed-9f9f7c2775d87af1e75809e6cb1115e3.md @@ -0,0 +1,40 @@ +--- +title: PythonByExample +date: "2024-04-30T15:56:12-04:00" +description: "" +params: + feedlink: https://pythonbyexample.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 9f9f7c2775d87af1e75809e6cb1115e3 + websites: + https://pythonbyexample.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://pythonbyexample.blogspot.com/: true + last_post_title: Python Training "Text Movies" + last_post_description: "" + last_post_date: "2013-01-14T12:54:04-05:00" + last_post_link: https://pythonbyexample.blogspot.com/2013/01/python-training-text-movies.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 51ad4870015aad1eef21684ad1c3b615 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9fada3d32336216768cf5f3ccdd4b2d0.md b/content/discover/feed-9fada3d32336216768cf5f3ccdd4b2d0.md index fed8684c5..0f633e81d 100644 --- a/content/discover/feed-9fada3d32336216768cf5f3ccdd4b2d0.md +++ b/content/discover/feed-9fada3d32336216768cf5f3ccdd4b2d0.md @@ -12,12 +12,11 @@ params: recommended: [] recommender: - https://weidok.al/feed.xml - - https://www.manton.org/feed - https://www.manton.org/feed.xml - https://www.manton.org/podcast.xml categories: [] relme: - https://micro.blog/sod: false + https://dahlstrand.net/: true last_post_title: End of May Hyperlink Dump last_post_description: May has been great weather-wise, and I’ve spent some time relaxing in the hammock, away from the keyboard. It’s been pleasant, but it means @@ -25,17 +24,22 @@ params: last_post_date: "2024-05-30T13:58:07+02:00" last_post_link: https://dahlstrand.net/2024/05/30/end-of-may.html last_post_categories: [] + last_post_language: "" last_post_guid: 48b7fc61e57e9a4bbff5750a33141661 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 11 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-9fde18f0e6557cda1c6a58ec2134baec.md b/content/discover/feed-9fde18f0e6557cda1c6a58ec2134baec.md deleted file mode 100644 index 21941c4a9..000000000 --- a/content/discover/feed-9fde18f0e6557cda1c6a58ec2134baec.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Trys Mudford's Blog -date: "1970-01-01T00:00:00Z" -description: Posts, thoughts, links and photos from Trys -params: - feedlink: https://www.trysmudford.com/blog/index.xml - feedtype: rss - feedid: 9fde18f0e6557cda1c6a58ec2134baec - websites: - https://trysmudford.com/: false - https://www.trysmudford.com/: false - https://www.trysmudford.com/blog/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/trys: false - https://instagram.com/trysmudford: false - https://mastodon.social/@trys: false - https://photography.trysmudford.com/: false - https://twitter.com/trysmudford: false - last_post_title: Data all the way down - last_post_description: We had our bi-monthly company hack day last week. I had the - pleasure of teaming up with a colleague who isn’t in engineering (yet), but would - love to move into the backend engineering space. We - last_post_date: "2024-06-04T00:00:00Z" - last_post_link: https://www.trysmudford.com/blog/data-all-the-way-down/ - last_post_categories: [] - last_post_guid: 8c8621412715ec6481aa036c10b61229 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-9feb55e5c8639112f8bf8495cd554627.md b/content/discover/feed-9feb55e5c8639112f8bf8495cd554627.md new file mode 100644 index 000000000..597408442 --- /dev/null +++ b/content/discover/feed-9feb55e5c8639112f8bf8495cd554627.md @@ -0,0 +1,41 @@ +--- +title: Java Development +date: "2024-07-01T03:44:51-05:00" +description: "" +params: + feedlink: https://marty-java-dev.blogspot.com/feeds/posts/default + feedtype: atom + feedid: 9feb55e5c8639112f8bf8495cd554627 + websites: + https://marty-java-dev.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://marty-java-dev.blogspot.com/: true + https://www.blogger.com/profile/01457652216051770227: true + last_post_title: Spring 3 session level Model Attributes with Multi Tab browsers + last_post_description: "" + last_post_date: "2010-09-26T10:58:40-05:00" + last_post_link: https://marty-java-dev.blogspot.com/2010/09/spring-3-session-level-model-attributes.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 1b2cb4ed9266009af4ad617ef098355d + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-9ff83d3ea8db80cd1fd38b33d1f47e8e.md b/content/discover/feed-9ff83d3ea8db80cd1fd38b33d1f47e8e.md deleted file mode 100644 index 6d81391cd..000000000 --- a/content/discover/feed-9ff83d3ea8db80cd1fd38b33d1f47e8e.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: NetObserv -date: "1970-01-01T00:00:00Z" -description: Public posts from @netobserv@hachyderm.io -params: - feedlink: https://hachyderm.io/@netobserv.rss - feedtype: rss - feedid: 9ff83d3ea8db80cd1fd38b33d1f47e8e - websites: - https://hachyderm.io/@netobserv: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/approved/: true - https://github.com/netobserv: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a0141050edcce5e61f3b417aae884188.md b/content/discover/feed-a0141050edcce5e61f3b417aae884188.md deleted file mode 100644 index 121dc827b..000000000 --- a/content/discover/feed-a0141050edcce5e61f3b417aae884188.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: PyPI recent updates for coverage -date: "1970-01-01T00:00:00Z" -description: Recent updates to the Python Package Index for coverage -params: - feedlink: https://pypi.org/rss/project/coverage/releases.xml - feedtype: rss - feedid: a0141050edcce5e61f3b417aae884188 - websites: - https://pypi.org/project/coverage/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: 7.5.3 - last_post_description: Code coverage measurement for Python - last_post_date: "2024-05-28T14:03:57Z" - last_post_link: https://pypi.org/project/coverage/7.5.3/ - last_post_categories: [] - last_post_guid: 221acb2c9001608a8e67c5cb70260c44 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a01abd80da5107b181dbe69c2fecb4b0.md b/content/discover/feed-a01abd80da5107b181dbe69c2fecb4b0.md deleted file mode 100644 index 79bc6f271..000000000 --- a/content/discover/feed-a01abd80da5107b181dbe69c2fecb4b0.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Manuel Moreale Instagram Style RSS Feed -date: "2024-05-23T14:35:00+02:00" -description: All the moments AKA posts with a picture and a caption published on my - website. I thought some of you might want to have this content as a separate feed - so there you have it. -params: - feedlink: https://manuelmoreale.com/feed/instagram - feedtype: rss - feedid: a01abd80da5107b181dbe69c2fecb4b0 - websites: - https://manuelmoreale.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: A moment with a birthday good boy - last_post_description: 3 years. Easily the most weird, wild, challenging, difficult, - stressful, joyful, surprising 3 years of my life. You being in my life didn’t - make it any easier but I’m still grateful to have you - last_post_date: "2024-05-23T14:35:00+02:00" - last_post_link: https://manuelmoreale.com/@/page/LZEW29WzkqmNqT4e - last_post_categories: [] - last_post_guid: 1dd7c0ec49c40528d37ba1e86bf59da9 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a02428c0bd308c78db82117f035947b0.md b/content/discover/feed-a02428c0bd308c78db82117f035947b0.md new file mode 100644 index 000000000..9438c2e15 --- /dev/null +++ b/content/discover/feed-a02428c0bd308c78db82117f035947b0.md @@ -0,0 +1,77 @@ +--- +title: Kev Quirk - Notes +date: "1970-01-01T00:00:00Z" +description: Latest notes +params: + feedlink: https://kevquirk.com/notes-feed + feedtype: rss + feedid: a02428c0bd308c78db82117f035947b0 + websites: + https://kevquirk.com/: true + blogrolls: + - https://kevquirk.com/blogroll/kevquirk.opml + recommended: + - https://baty.net/everything.rss + - https://brandonwrites.xyz/feed/ + - https://btxx.org/index.rss + - https://buttondown.email/ownyourweb/rss + - https://chriscoyier.net/feed + - https://email-is-good.com/feed + - https://gkeenan.co/avgb/feed.xml + - https://herman.bearblog.dev/feed/?type=rss + - https://jlelse.blog/index.xml + - https://manuelmoreale.com/feed/rss + - https://niqwithq.com/feed.xml + - https://rknight.me/subscribe + - https://robinrendle.com/feed.xml + - https://thejollyteapot.com/feed.rss + - https://www.eddiedale.com/blog-feed + - https://www.lkhrs.com/blog/index.xml + - https://baty.net/feed + - https://btxx.org/index.atom + - https://chriscoyier.net/feed/ + - https://email-is-good.com/comments/feed/ + - https://email-is-good.com/feed/ + - https://herman.bearblog.dev/feed/ + - https://jlelse.blog/.atom + - https://jlelse.blog/.rss + - https://manuelmoreale.com/feed/instagram + - https://rknight.me/subscribe/posts/atom.xml + - https://rknight.me/subscribe/posts/rss.xml + - https://robinrendle.com/cascadefeed.xml + - https://robinrendle.com/essayfeed.xml + - https://robinrendle.com/newsletterfeed.xml + - https://www.lkhrs.com/index.xml + recommender: [] + categories: [] + relme: + https://fosstodon.org/@kev: true + https://github.com/kevquirk: true + https://kevquirk.com/: true + https://social.lol/@kevquirk: true + last_post_title: 5 July 2024 at 16:38 + last_post_description: "There's me, resizing and reformatting all my images like + some kind of caveman, when all it needed was 4 lines of code in a @getkirby blueprint + to automate the whole thing. \U0001F926‍♂️\ncreate:\n " + last_post_date: "2024-07-05T16:40:00+01:00" + last_post_link: https://kevquirk.com/notes/20240705-1638 + last_post_categories: [] + last_post_language: "" + last_post_guid: e57a3402b70879a7a75592353f1fdeaf + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 10 + relme: 2 + title: 3 + website: 2 + score: 24 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-a02f276d5d8d5a7564c1532438eefb64.md b/content/discover/feed-a02f276d5d8d5a7564c1532438eefb64.md new file mode 100644 index 000000000..aaf5e9827 --- /dev/null +++ b/content/discover/feed-a02f276d5d8d5a7564c1532438eefb64.md @@ -0,0 +1,44 @@ +--- +title: QGIS.org blog +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://blog.qgis.org/feed/ + feedtype: rss + feedid: a02f276d5d8d5a7564c1532438eefb64 + websites: + https://blog.qgis.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Plugin update + relme: + https://blog.qgis.org/: true + last_post_title: Plugin Update – April to May, 2024 + last_post_description: Between April and May there were 33 new plugins published + in the QGIS plugin repository. Here follows the quick overview… Read more Plugin + Update – April to May, 2024 + last_post_date: "2024-07-08T07:04:00Z" + last_post_link: https://blog.qgis.org/2024/07/08/plugin-update-april-to-may-2024/ + last_post_categories: + - Plugin update + last_post_language: "" + last_post_guid: 9027b20c550d6a330a617032abe0e5da + score_criteria: + cats: 0 + description: 0 + feedlangs: 1 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 12 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-a0381766eaba5c40d472eeccf3956852.md b/content/discover/feed-a0381766eaba5c40d472eeccf3956852.md new file mode 100644 index 000000000..41143e2b9 --- /dev/null +++ b/content/discover/feed-a0381766eaba5c40d472eeccf3956852.md @@ -0,0 +1,55 @@ +--- +title: Self-Referential +date: "1970-01-01T00:00:00Z" +description: Reflections on JNode, Java, software developement and other things of + interest +params: + feedlink: https://lsantha.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: a0381766eaba5c40d472eeccf3956852 + websites: + https://lsantha.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - eos + - first post + - fosdem + - java quine + - jedit + - jnode + - openjdk + - self-reference + - swing + - swtswing + relme: + https://lsantha.blogspot.com/: true + https://www.blogger.com/profile/07461860174464006430: true + last_post_title: Why JNode? + last_post_description: There seems to be a certain confusion in the community about + the motivation of the JNode project and specifically the unusual choice of the + Java language for implementing it. I think some explanation + last_post_date: "2009-03-04T19:18:00Z" + last_post_link: https://lsantha.blogspot.com/2009/03/why-jnode.html + last_post_categories: + - jnode + last_post_language: "" + last_post_guid: 7ecf801278e9287766dfb4417b6e5ac8 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a0398fd8ccd4d64317c2e1516d9d3534.md b/content/discover/feed-a0398fd8ccd4d64317c2e1516d9d3534.md new file mode 100644 index 000000000..d142e8164 --- /dev/null +++ b/content/discover/feed-a0398fd8ccd4d64317c2e1516d9d3534.md @@ -0,0 +1,59 @@ +--- +title: Sesivany's blog +date: "1970-01-01T00:00:00Z" +description: A Blog of Jiri Eischmann +params: + feedlink: https://blog.eischmann.cz/feed/ + feedtype: rss + feedid: a0398fd8ccd4d64317c2e1516d9d3534 + websites: + https://blog.eischmann.cz/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Mastodon + - Software + - Vivaldi + - Web + - fediverse + - migrace + - sociální sítě + relme: + https://blog.eischmann.cz/: true + https://eischmann.cz/: true + https://enblog.eischmann.cz/: true + https://social.vivaldi.net/@sesivany: true + last_post_title: Změnil jsem instanci Mastodonu + last_post_description: Před několika dny jsem po několika letech změnil instanci + Mastodonu. Proč jsem se k tomu odhodlal? Podle čeho jsem vybíral novou? Co obnáší + samotná migrace a jak jsem na nové instanci + last_post_date: "2024-07-04T06:00:00Z" + last_post_link: https://blog.eischmann.cz/2024/07/04/zmenil-jsem-instanci-mastodonu/ + last_post_categories: + - Mastodon + - Software + - Vivaldi + - Web + - fediverse + - migrace + - sociální sítě + last_post_language: "" + last_post_guid: 7e84a6b9bc4ebed8ee2ae2e090c1f644 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: cs +--- diff --git a/content/discover/feed-a049ad3b83f678a091e10cd5388a01d0.md b/content/discover/feed-a049ad3b83f678a091e10cd5388a01d0.md new file mode 100644 index 000000000..706bc1271 --- /dev/null +++ b/content/discover/feed-a049ad3b83f678a091e10cd5388a01d0.md @@ -0,0 +1,48 @@ +--- +title: Testbit +date: "1970-01-01T00:00:00Z" +description: Timj’s bits and tests +params: + feedlink: https://testbit.eu/rss2.xml + feedtype: rss + feedid: a049ad3b83f678a091e10cd5388a01d0 + websites: + https://testbit.eu/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - cgroup + - cpuset + relme: + https://social.tchncs.de/@timj: true + https://testbit.eu/: true + last_post_title: Profiling with CPUset Isolation + last_post_description: |- + I recently worked on some hashtable lookup code that could benefit from + SIMD optimizations and microbenchmarking of modulus and hash functions + to improve the code quality. However, modern CPUs are + last_post_date: "2023-12-30T23:38:09Z" + last_post_link: https://testbit.eu/2023/cgroup-cpuset + last_post_categories: + - cgroup + - cpuset + last_post_language: "" + last_post_guid: a97194ddf1ca3ff2cd38676a8f32b233 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-a04ad63408b2e6096a9fc6bd7a750a66.md b/content/discover/feed-a04ad63408b2e6096a9fc6bd7a750a66.md index 2732272d2..9ca6c87e9 100644 --- a/content/discover/feed-a04ad63408b2e6096a9fc6bd7a750a66.md +++ b/content/discover/feed-a04ad63408b2e6096a9fc6bd7a750a66.md @@ -14,27 +14,32 @@ params: - http://scripting.com/rss.xml - http://scripting.com/rssNightly.xml categories: - - Asides + - Online version relme: {} - last_post_title: Monday 3 June, 2024 - last_post_description: Airport, interior Faro, Thursday afternoon. Quote of the - Day “We don’t know who discovered water, but we know it wasn’t the fish.” Marshall - McLuhan Musical alternative to the morning’s - last_post_date: "2024-06-02T23:25:34Z" - last_post_link: https://memex.naughtons.org/monday-3-june-2024/39508/ + last_post_title: Monday 8 July, 2024 + last_post_description: Washing up Provence, June 2024. Quote of the Day “Loneliness + as a situation can be corrected, but as a state of mind it is an incurable illness” + Vladimir Nabokov Musical alternative to the + last_post_date: "2024-07-06T23:06:17Z" + last_post_link: https://memex.naughtons.org/monday-8-july-2024/39614/ last_post_categories: - - Asides - last_post_guid: a21177ff55160ab729ec8c511cb83aa8 + - Online version + last_post_language: "" + last_post_guid: eb185d9b884baf482ae2dc40c10e5af1 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 14 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-a0536cdd75a573f3b2e50f0e03073894.md b/content/discover/feed-a0536cdd75a573f3b2e50f0e03073894.md deleted file mode 100644 index fb2f239b2..000000000 --- a/content/discover/feed-a0536cdd75a573f3b2e50f0e03073894.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Assaf Muller -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://assafmuller.com/feed/ - feedtype: rss - feedid: a0536cdd75a573f3b2e50f0e03073894 - websites: - https://assafmuller.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Uncategorized - relme: {} - last_post_title: The Complete Guide to a Kick-ass Videoconferencing Setup - last_post_description: We all cope with COVID differently – my coping mechanism - of choice is to obsess, research, and then buy things – my mind recently decided - to zoom in on re-doing my videoconferencing setup. I - last_post_date: "2021-04-26T13:24:35Z" - last_post_link: https://assafmuller.com/2021/04/26/the-complete-guide-to-a-kick-ass-videoconferencing-setup/ - last_post_categories: - - Uncategorized - last_post_guid: 6ed2a83105675ee9e784b8ddbd48ae1d - score_criteria: - cats: 0 - description: 0 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a05ffea33179b69a3cf71d9f236f652a.md b/content/discover/feed-a05ffea33179b69a3cf71d9f236f652a.md new file mode 100644 index 000000000..bdfb93a2e --- /dev/null +++ b/content/discover/feed-a05ffea33179b69a3cf71d9f236f652a.md @@ -0,0 +1,43 @@ +--- +title: AppSignal +date: "1970-01-01T00:00:00Z" +description: The AppSignal blog. Product updates, Ruby Magic, Elixir Alchemy, AppSignal + Academy and more. +params: + feedlink: https://blog.appsignal.com/category/ruby-feed.xml + feedtype: rss + feedid: a05ffea33179b69a3cf71d9f236f652a + websites: {} + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: [] + relme: {} + last_post_title: Debugging in Ruby with Debug + last_post_description: We'll introduce the basics of the debug gem before diving + into its more advanced features. + last_post_date: "2024-07-03T05:00:00Z" + last_post_link: https://blog.appsignal.com/2024/07/03/debugging-in-ruby-with-debug.html + last_post_categories: [] + last_post_language: "" + last_post_guid: e625370d03e8872a35ddb28dded558d3 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 0 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a0819ade34dd6d7f92422bb3c0eb523c.md b/content/discover/feed-a0819ade34dd6d7f92422bb3c0eb523c.md new file mode 100644 index 000000000..d1151c9f9 --- /dev/null +++ b/content/discover/feed-a0819ade34dd6d7f92422bb3c0eb523c.md @@ -0,0 +1,86 @@ +--- +title: TenFourFox Development +date: "1970-01-01T00:00:00Z" +description: What's new in TenFourFox, the Mozilla browser for Power Macs. +params: + feedlink: https://tenfourfox.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: a0819ade34dd6d7f92422bb3c0eb523c + websites: + https://tenfourfox.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 68k + - PowerPC + - anfscd + - applesnark + - biggerbetterfastermore + - bsd + - catchthewave + - classilla + - d'oh + - disgusting + - eclipse + - endian little hate we + - floydian + - fpr + - getoffmylawn + - gopher + - hacking + - icymi + - intel + - judgment day + - justbecauseyouareparanoiddoesnotmeantheyarenotafteryou + - kubrick + - linux + - meow + - mozilla + - mte + - oldbrowsers + - parity + - ppc970 + - qte + - rip + - sad + - security + - shame + - shoutout + - sluggo + - spectre + - statistics + - talos + - tenfourfoxbox + - tensixfox + - thereisnoxulonlywebextensions + - transition + relme: + https://tenfourfox.blogspot.com/: true + last_post_title: macOS Sequoia + last_post_description: Do you like your computers to be big, fire-prone and inflexible? + Then you'll love macOS Sequoia, another missed naming opportunity from the company + that should have brought you macOS Mettler, macOS + last_post_date: "2024-06-10T21:14:00Z" + last_post_link: https://tenfourfox.blogspot.com/2024/06/macos-sequoia.html + last_post_categories: + - applesnark + last_post_language: "" + last_post_guid: 3928793362a8c7a0350eaaa277d5cff0 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a08e8c511d53d1860343a90c5c4e2418.md b/content/discover/feed-a08e8c511d53d1860343a90c5c4e2418.md index 49580491c..3c62e35bc 100644 --- a/content/discover/feed-a08e8c511d53d1860343a90c5c4e2418.md +++ b/content/discover/feed-a08e8c511d53d1860343a90c5c4e2418.md @@ -17,9 +17,26 @@ params: - https://rknight.me/subscribe/posts/rss.xml categories: [] relme: + https://3x2.pics/: true + https://andrewcanion.com/: true + https://canion.blog/: true + https://canion.omg.lol/: true + https://cv.omg.lol/: true + https://feldnotes.com/: true https://github.com/jasonburk: true - https://grepjason.sh/proven.lol/c9b953: false + https://grepjason.sh/: true + https://hemisphericviews.com/: true + https://jason.omg.lol/: true + https://letterboxd.com/canion/: true + https://martinfeld.info/: true + https://martinfeld.info/now: true + https://martinfeld.omg.lol/: true + https://social.lol/@3x2: true + https://social.lol/@canion: true + https://social.lol/@hemisphericviews: true https://social.lol/@jason: true + https://social.lol/@martinfeld: true + https://www.rsspod.net/: true last_post_title: Buying Weird Old Digital Cameras last_post_description: It’s logical to assume that you would recommend something to others if you buy and love something. Most of the time, this is correct. Except @@ -27,17 +44,22 @@ params: last_post_date: "2024-05-18T19:00:00Z" last_post_link: https://grepjason.sh/2024/buying-weird-old-digital-cameras last_post_categories: [] + last_post_language: "" last_post_guid: 6e490fd7ab061d24065deebf9750cf92 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-a098c633f9e29fea0eb6e8c26d1f1227.md b/content/discover/feed-a098c633f9e29fea0eb6e8c26d1f1227.md deleted file mode 100644 index 6ce8e1d7a..000000000 --- a/content/discover/feed-a098c633f9e29fea0eb6e8c26d1f1227.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: tyler.io -date: "1970-01-01T00:00:00Z" -description: Public posts from @tylerdotio@mastodon.social -params: - feedlink: https://mastodon.social/@tylerdotio.rss - feedtype: rss - feedid: a098c633f9e29fea0eb6e8c26d1f1227 - websites: - https://mastodon.social/@tylerdotio: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://tyler.io/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a0affc8d0a7ecf9deaa4e581b55a3a34.md b/content/discover/feed-a0affc8d0a7ecf9deaa4e581b55a3a34.md new file mode 100644 index 000000000..56aef3fe6 --- /dev/null +++ b/content/discover/feed-a0affc8d0a7ecf9deaa4e581b55a3a34.md @@ -0,0 +1,56 @@ +--- +title: 'Kebe Says: a blog by Dan McD.' +date: "1970-01-01T00:00:00Z" +description: Dan McDonald -- illumos engineer and RTI advocate at Joyent. This blog + formerly resided on Sun's blog roll as, "End-to-end... and everything in between." +params: + feedlink: https://kebesays.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: a0affc8d0a7ecf9deaa4e581b55a3a34 + websites: + https://kebesays.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - git + - hg + - illumos + - scm + - zfs + relme: + https://kebesays.blogspot.com/: true + https://www.blogger.com/profile/02293330539766533891: true + last_post_title: Goodbye blogspot + last_post_description: |- + First off, long time no blog! + + + + This is the last post I'm putting on the + Blogspot site. In the spirit of + eating my own dogfood, I've now set up a + self-hosted blog on my HDC. I'm sure it + won't be + last_post_date: "2020-08-21T17:43:00Z" + last_post_link: https://kebesays.blogspot.com/2020/08/goodbye-blogspot.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 08bec21569676c1cfa5ac7d1e02158ac + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a0e13bfad011d230d1c34d3e0af236f5.md b/content/discover/feed-a0e13bfad011d230d1c34d3e0af236f5.md new file mode 100644 index 000000000..3aaf263f4 --- /dev/null +++ b/content/discover/feed-a0e13bfad011d230d1c34d3e0af236f5.md @@ -0,0 +1,142 @@ +--- +title: Good Quality Chesses +date: "1970-01-01T00:00:00Z" +description: Every body is worried about qualities of chees here are many. +params: + feedlink: https://astrofame.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: a0e13bfad011d230d1c34d3e0af236f5 + websites: + https://astrofame.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Quality of Chess Have a matter. + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Good quality Cheeses + last_post_description: |- + Blues:The determination of blue cheeses would fuse solid, medium, + gentle, and extra velvety cheeses. It would likewise be helpful to give lesser + referred to blue cheeses to tastings as English blue + last_post_date: "2021-04-27T17:59:00Z" + last_post_link: https://astrofame.blogspot.com/2021/04/good-quality-cheeses.html + last_post_categories: + - Quality of Chess Have a matter. + last_post_language: "" + last_post_guid: 27e7091716c907c4559d60a6d4070669 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a0e874af7f1756548fa6e8df6820de92.md b/content/discover/feed-a0e874af7f1756548fa6e8df6820de92.md new file mode 100644 index 000000000..8091969a5 --- /dev/null +++ b/content/discover/feed-a0e874af7f1756548fa6e8df6820de92.md @@ -0,0 +1,49 @@ +--- +title: Emanuele Rocca +date: "1970-01-01T00:00:00Z" +description: Recent content on Emanuele Rocca +params: + feedlink: https://www.linux.it/~ema/index.xml + feedtype: rss + feedid: a0e874af7f1756548fa6e8df6820de92 + websites: + https://www.linux.it/~ema: false + https://www.linux.it/~ema/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://www.linux.it/~ema/: true + last_post_title: PGP keys on Yubikey, with a side of Mutt + last_post_description: |- + How do you use your PGP keys on the Yubikey on other systems? + Go to another system, if it does have a ~/.gnupg directory already move it + somewhere else. + + Import your public key: + + gpg -k + gpg - + last_post_date: "2024-04-05T15:22:40+02:00" + last_post_link: https://www.linux.it/~ema/posts/pgp-keys-on-yubikey/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 22c3ccdb4f4c452fed7beeadef24e085 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-a118888add4b03d4ee820612fb6640f5.md b/content/discover/feed-a118888add4b03d4ee820612fb6640f5.md new file mode 100644 index 000000000..17a7ebef6 --- /dev/null +++ b/content/discover/feed-a118888add4b03d4ee820612fb6640f5.md @@ -0,0 +1,139 @@ +--- +title: All Area Code +date: "2024-03-08T01:06:31-08:00" +description: We have all Details About area code information. +params: + feedlink: https://dichvuquangcao247.blogspot.com/feeds/posts/default + feedtype: atom + feedid: a118888add4b03d4ee820612fb6640f5 + websites: + https://dichvuquangcao247.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - area + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: City Area Code + last_post_description: "" + last_post_date: "2022-01-03T07:15:04-08:00" + last_post_link: https://dichvuquangcao247.blogspot.com/2022/01/city-area-code.html + last_post_categories: + - area + last_post_language: "" + last_post_guid: d4a5364d37be88e6b9b214299ba1ccca + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a12a60d2919f3881036f0c738e5f97a3.md b/content/discover/feed-a12a60d2919f3881036f0c738e5f97a3.md index 72e88837b..f8f8b961e 100644 --- a/content/discover/feed-a12a60d2919f3881036f0c738e5f97a3.md +++ b/content/discover/feed-a12a60d2919f3881036f0c738e5f97a3.md @@ -12,160 +12,166 @@ params: recommended: [] recommender: [] categories: - - LHC - - dark matter - - Higgs - - ATLAS - - Ceres - - CMS - - LHC restart - - LHCb - - B physics - - Planck - - Rosetta - - direct detection - - excess - - neutrinos - - Mars - - Pluto - - arXiv - - diphoton - - galactic centre excess - - long-lived - - naturalness - - AMS - - Fermi - - XMASS - - cosmic rays - - dark photon - - diboson - - BICEP2 - - LIGO - - New Horizons - - Stawell - - portal - - string theory + - '''t Hooft' - 2HDM - 3.5 keV line - - DES - - Interstellar - - Kepler - - Randall - - SABRE - - SUPL - - Weinberg - - Wilczek - - Z' - - annual modulation - - climate change - - eclipse - - exoplanet - - extinctions - - hierarchy problem - - leptogenesis - - multiverse - - neutrinoless double beta - - pentaquark - - scalar - - self-interaction - - top quark - - '''t Hooft' - ALICE + - AMS - APS + - ATLAS - Andromeda - Apollo - Arkani-Hamed + - B physics + - BICEP2 - BaBar - Big Bang Theory - Bjorken - CERN + - CMS - CRAYFIS - Cassini + - Ceres - CosPA + - DES - DZERO - Dawid - Dilbert - EPSHEP - Einstein ring - Europa + - Fermi - Fitch - HESS - Hawking + - Higgs - Hubble - IBL - ICARUS - INSPIRE + - Interstellar + - Kepler - Kibble - LEGO + - LHC + - LHC restart - LHCP + - LHCb + - LIGO - LUX - MCT - MT2 + - Mars - MiniBooNE - Moriond - N3LO - NA48/2 - NASA - NOvA + - New Horizons - Nobel Prize - OPERA - Opportunity + - Planck + - Pluto + - Randall - Reticulum II + - Rosetta + - SABRE - SHiP - SMAP + - SUPL - SUSY + - Stawell - TAUP - THE - The Simpsons - Vub - W' + - Weinberg + - Wilczek - Witten - XENON + - XMASS + - Z' - Zhang - annihilation + - annual modulation + - arXiv - asteroid - aurora - black holes + - climate change + - cosmic rays - cosmology - dakr matter + - dark matter + - dark photon - data + - diboson + - diphoton + - direct detection - displaced + - eclipse - effective field theory + - excess + - exoplanet + - extinctions + - galactic centre excess - game of thrones + - hierarchy problem - indirect detection - inflation - lattice QCD + - leptogenesis + - long-lived - mono-Z' + - multiverse + - naturalness + - neutrinoless double beta + - neutrinos - normal ordering - on-Z + - pentaquark - pheno15 - poetry + - portal - pulsars - razor variables - rotation curve - satellite galaxies + - scalar - see-saw + - self-interaction + - string theory - supernova - tau - top mass + - top quark relme: + https://syymmetries.blogspot.com/: true https://www.blogger.com/profile/06935684943024856641: true last_post_title: 'Naturalness: A Pragmatist''s Guide' last_post_description: "" last_post_date: "2017-07-09T10:30:33+10:00" last_post_link: https://syymmetries.blogspot.com/2017/06/naturalness-pragmatists-guide.html last_post_categories: [] + last_post_language: "" last_post_guid: 5cde0119cb68656d00425b2ee37f71ca score_criteria: cats: 5 description: 0 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 12 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-a139fac31dca0505ae8ed3c9490d9f7c.md b/content/discover/feed-a139fac31dca0505ae8ed3c9490d9f7c.md index 250f32e24..4c9032aaa 100644 --- a/content/discover/feed-a139fac31dca0505ae8ed3c9490d9f7c.md +++ b/content/discover/feed-a139fac31dca0505ae8ed3c9490d9f7c.md @@ -1,6 +1,6 @@ --- title: Terence Eden activity -date: "2024-06-04T13:54:33Z" +date: "2024-07-08T20:30:17Z" description: "" params: feedlink: https://gitlab.com/edent.atom @@ -13,32 +13,44 @@ params: recommender: [] categories: [] relme: + https://edent.tel/: true + https://github.com/edent: true + https://gitlab.com/edent: true + https://keybase.io/edent: true + https://mastodon.social/@Edent: true + https://mastodon.social/@edent: true https://shkspr.mobi/blog/: true - last_post_title: Terence Eden pushed to project branch main at Terence Eden / EMF - Infrared + https://stackoverflow.com/users/1127699/terence-eden: true + last_post_title: Terence Eden pushed to project branch main at Terence Eden / Solar + Data last_post_description: |- Terence Eden - (5a695ad3) + (28a38bb2) at - 04 Jun 13:54 + 08 Jul 20:30 - Upload all - last_post_date: "2024-06-04T13:54:33Z" - last_post_link: https://gitlab.com/edent/emf-infrared/-/commit/5a695ad3eefc78f486e945851444686d64ca72c1 + Latest Update + last_post_date: "2024-07-08T20:30:17Z" + last_post_link: https://gitlab.com/edent/solar-data/-/commit/28a38bb295d83c29b0ab2f0d525cef9dd1e8fa6c last_post_categories: [] - last_post_guid: bf870b5e06f4c26e60649c2fb18e8212 + last_post_language: "" + last_post_guid: 8ee365ab14a0cf0708eb2ce9b97782eb score_criteria: cats: 0 description: 0 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 7 + score: 10 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-a16a577535e82033ae3b9d3848702dba.md b/content/discover/feed-a16a577535e82033ae3b9d3848702dba.md new file mode 100644 index 000000000..bafe80c35 --- /dev/null +++ b/content/discover/feed-a16a577535e82033ae3b9d3848702dba.md @@ -0,0 +1,41 @@ +--- +title: "" +date: "1970-01-01T00:00:00Z" +description: Recent content on +params: + feedlink: https://danluu.com/atom.xml + feedtype: rss + feedid: a16a577535e82033ae3b9d3848702dba + websites: {} + blogrolls: [] + recommended: [] + recommender: + - https://roytang.net/blog/feed/rss/ + categories: [] + relme: {} + last_post_title: A discussion of discussions on AI bias + last_post_description: There've been regular viral stories about ML/AI bias with + LLMs and generative AI for the past couple years. One thing I find interesting + about discussions of bias is how different the reaction is in + last_post_date: "2024-06-16T00:00:00Z" + last_post_link: https://danluu.com/ai-bias/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 5be7aa73a501c0e6faf39b1f11ea00ab + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 0 + website: 0 + score: 12 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-a1814277e17913a395f1b98ab0412dbd.md b/content/discover/feed-a1814277e17913a395f1b98ab0412dbd.md deleted file mode 100644 index 7c7880195..000000000 --- a/content/discover/feed-a1814277e17913a395f1b98ab0412dbd.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Notes on software development -date: "1970-01-01T00:00:00Z" -description: Notes on software development -params: - feedlink: https://notes.eatonphil.com/rss.xml - feedtype: rss - feedid: a1814277e17913a395f1b98ab0412dbd - websites: - https://notes.eatonphil.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: [] - relme: {} - last_post_title: How I run a software book club - last_post_description: |- - I've been running software book clubs almost continuously since last - summer, about 12 months ago. We read through Designing Data-Intensive - Applications, Database - Internals, - Systems - Performance, - last_post_date: "2024-05-30T00:00:00Z" - last_post_link: http://notes.eatonphil.com/2025-05-30-how-i-run-book-clubs.html - last_post_categories: [] - last_post_guid: 6684bddca3ea7dbbab1f13df73f8a106 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a192f3adf2fdadd0fef49981d00f7a21.md b/content/discover/feed-a192f3adf2fdadd0fef49981d00f7a21.md deleted file mode 100644 index c40eeb156..000000000 --- a/content/discover/feed-a192f3adf2fdadd0fef49981d00f7a21.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Hachyderm Infrastructure -date: "1970-01-01T00:00:00Z" -description: Public posts from @hachyinfra@hachyderm.io -params: - feedlink: https://hachyderm.io/@hachyinfra.rss - feedtype: rss - feedid: a192f3adf2fdadd0fef49981d00f7a21 - websites: - https://hachyderm.io/@hachyinfra: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/approved: true - https://grafana.hachyderm.io/public: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a1bfe1407b21f6a94506751f2ea20b73.md b/content/discover/feed-a1bfe1407b21f6a94506751f2ea20b73.md deleted file mode 100644 index d5aaee89a..000000000 --- a/content/discover/feed-a1bfe1407b21f6a94506751f2ea20b73.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Gabriel Garrido -date: "1970-01-01T00:00:00Z" -description: Public posts from @ggpsv@social.coop -params: - feedlink: https://social.coop/@ggpsv.rss - feedtype: rss - feedid: a1bfe1407b21f6a94506751f2ea20b73 - websites: - https://social.coop/@ggpsv: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://garrido.io/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a1dd312422c9395902a2dfb7a239e8e2.md b/content/discover/feed-a1dd312422c9395902a2dfb7a239e8e2.md deleted file mode 100644 index db81a7aac..000000000 --- a/content/discover/feed-a1dd312422c9395902a2dfb7a239e8e2.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: 'Alchemists: Talks' -date: "2024-05-09T00:00:00Z" -description: Talks on software engineering design, patterns, techniques, learnings, - and more. -params: - feedlink: https://www.alchemists.io/feeds/talks.xml - feedtype: atom - feedid: a1dd312422c9395902a2dfb7a239e8e2 - websites: - https://www.alchemists.io/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - talks - relme: {} - last_post_title: Ruby Fusion Talk - last_post_description: "" - last_post_date: "2024-05-09T00:00:00Z" - last_post_link: https://alchemists.io/talks/ruby_fusion - last_post_categories: - - talks - last_post_guid: b3712f2d12f985e954f9de79ca69c0cf - score_criteria: - cats: 1 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a1e82bd1259bd26c0dd3761f6279088e.md b/content/discover/feed-a1e82bd1259bd26c0dd3761f6279088e.md new file mode 100644 index 000000000..680007151 --- /dev/null +++ b/content/discover/feed-a1e82bd1259bd26c0dd3761f6279088e.md @@ -0,0 +1,46 @@ +--- +title: Angles and Braces +date: "1970-01-01T00:00:00Z" +description: Angles and Braces +params: + feedlink: https://chainofcommand.hashnode.dev/rss.xml + feedtype: rss + feedid: a1e82bd1259bd26c0dd3761f6279088e + websites: + https://chainofcommand.hashnode.dev/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Programming Tips + - engineering + relme: + https://chainofcommand.hashnode.dev/: true + last_post_title: The Purple Link Effect + last_post_description: Hello, once again friends and foes! I wasn't told I'll be + writing to you again this soon. It was on such short notice, but I guess it is + what it is. I'm probably just bored and looking for someone to + last_post_date: "2022-11-28T16:55:01Z" + last_post_link: https://chainofcommand.hashnode.dev/the-purple-link-effect + last_post_categories: + - Programming Tips + - engineering + last_post_language: "" + last_post_guid: efeb3174195899d373493f7f8a4b1ef7 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-a1f4d4dd24c1872a49cf0023ee357552.md b/content/discover/feed-a1f4d4dd24c1872a49cf0023ee357552.md index f2e70b14f..63fde221d 100644 --- a/content/discover/feed-a1f4d4dd24c1872a49cf0023ee357552.md +++ b/content/discover/feed-a1f4d4dd24c1872a49cf0023ee357552.md @@ -23,28 +23,49 @@ params: recommender: [] categories: [] relme: - https://instagram.com/canion: false - https://micro.blog/canion: false + https://3x2.pics/: true + https://andrewcanion.com/: true + https://canion.blog/: true + https://canion.omg.lol/: true + https://cv.omg.lol/: true + https://feldnotes.com/: true + https://github.com/jasonburk: true + https://grepjason.sh/: true + https://hemisphericviews.com/: true + https://jason.omg.lol/: true + https://letterboxd.com/canion/: true + https://martinfeld.info/: true + https://martinfeld.info/now: true + https://martinfeld.omg.lol/: true + https://social.lol/@3x2: true https://social.lol/@canion: true - https://twitter.com/canion: false - last_post_title: Slash Guy - last_post_description: |- - On Hemispheric Views it has become a bit of a running gag that when I become interested in something new or different, the phrase, “I’m an insert interest here guy!” is unleashed. - Most recently - last_post_date: "2024-05-29T18:20:33+08:00" - last_post_link: https://canion.blog/2024/05/29/slash-guy.html + https://social.lol/@hemisphericviews: true + https://social.lol/@jason: true + https://social.lol/@martinfeld: true + https://www.rsspod.net/: true + last_post_title: Oppenheimer, 2023 - ★★★½ + last_post_description: A 4-hour flight was the catalyst needed to watch this marathon + movie. I didn’t realise I was signing up for a political thriller. It kept me + engaged so it must have been okay. + last_post_date: "2024-07-01T16:56:31+08:00" + last_post_link: https://canion.blog/2024/07/01/oppenheimer.html last_post_categories: [] - last_post_guid: a421647bf8afa27a00b791f5ef23e840 + last_post_language: "" + last_post_guid: f28e4d56d45951de6fc856ea987c0613 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 4 relme: 2 title: 3 website: 2 - score: 11 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-a204b4e71d79a596932bf87ae0ba61bf.md b/content/discover/feed-a204b4e71d79a596932bf87ae0ba61bf.md new file mode 100644 index 000000000..eae20f7fe --- /dev/null +++ b/content/discover/feed-a204b4e71d79a596932bf87ae0ba61bf.md @@ -0,0 +1,42 @@ +--- +title: 'PyInformatics: Bioinformatics and Data Science in Python' +date: "1970-01-01T00:00:00Z" +description: Python, mostly applied to big data and other random projects. +params: + feedlink: https://pyinformatics.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: a204b4e71d79a596932bf87ae0ba61bf + websites: + https://pyinformatics.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://pyinformatics.blogspot.com/: true + last_post_title: Wooey v. 0.9.3 released + last_post_description: This was an often requested feature that is now implemented. + The output of scripts as well and execution status of a script will be updated + in real time so there is no need to reload a page for job + last_post_date: "2016-07-28T12:04:00Z" + last_post_link: https://pyinformatics.blogspot.com/2016/07/wooey-v-093-released.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 502323b4be2622337d0ccf9383649430 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a208f0cd32b7a8f131354eac202f53cb.md b/content/discover/feed-a208f0cd32b7a8f131354eac202f53cb.md index 54dd51a18..60b97d270 100644 --- a/content/discover/feed-a208f0cd32b7a8f131354eac202f53cb.md +++ b/content/discover/feed-a208f0cd32b7a8f131354eac202f53cb.md @@ -12,26 +12,33 @@ params: recommended: [] recommender: - https://visitmy.website/feed.xml - categories: [] + categories: + - weeknote relme: {} - last_post_title: '[2024] Interlude 02' - last_post_description: I’ve been in Austin, TX for a week primarily to attend the - ATX Television festival but also just because I like Austin (and bbq, tacos and - dive bars – of which Austin has plenty.) The biggest - last_post_date: "2024-06-02T22:05:31Z" - last_post_link: https://digitalbydefault.com/2024/06/02/2024-interlude-02/ - last_post_categories: [] - last_post_guid: 8db79ee42e21795a5e1e080d07084ed3 + last_post_title: '[2024] Week 27' + last_post_description: Hello from my very nice hotel room in very rainy Manchester. + I’m up here for Open Data Camp ~ where I made a cameo today just to check in but + attended a few sessions yesterday, caught up with some + last_post_date: "2024-07-07T12:46:36Z" + last_post_link: https://digitalbydefault.com/2024/07/07/2024-week-27/ + last_post_categories: + - weeknote + last_post_language: "" + last_post_guid: 9294c00fb05ff10f2691fa7de09024e9 score_criteria: cats: 0 description: 0 - postcats: 0 + feedlangs: 1 + postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 10 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-a20deda3f95fbbd73e8854a85ad428e9.md b/content/discover/feed-a20deda3f95fbbd73e8854a85ad428e9.md new file mode 100644 index 000000000..b5058ff5e --- /dev/null +++ b/content/discover/feed-a20deda3f95fbbd73e8854a85ad428e9.md @@ -0,0 +1,140 @@ +--- +title: Area Code 855 USA +date: "1970-01-01T00:00:00Z" +description: All you know about area Code please keep visiting to my blogspot. +params: + feedlink: https://viparaclatransfer.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: a20deda3f95fbbd73e8854a85ad428e9 + websites: + https://viparaclatransfer.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: City Area Code + last_post_description: |- + Whatever their end game, 855 area code location these tricks work + by imparting the requirement for guaranteed activity. The alleged + "grandparent trick" utilizes this technique, with the guest + last_post_date: "2022-01-13T11:09:00Z" + last_post_link: https://viparaclatransfer.blogspot.com/2022/01/city-area-code.html + last_post_categories: [] + last_post_language: "" + last_post_guid: e7936094b962b77e6672f0389d2d3e71 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a20ff0ce08adc018cc5a536730867f29.md b/content/discover/feed-a20ff0ce08adc018cc5a536730867f29.md deleted file mode 100644 index 2001c4d53..000000000 --- a/content/discover/feed-a20ff0ce08adc018cc5a536730867f29.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: wynlim -date: "1970-01-01T00:00:00Z" -description: Public posts from @wynlim@kopiti.am -params: - feedlink: https://kopiti.am/@wynlim.rss - feedtype: rss - feedid: a20ff0ce08adc018cc5a536730867f29 - websites: - https://kopiti.am/@wynlim: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://instagram.com/wynlim: false - https://winnielim.org/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a2292f176e29d340cf730fb6154d7eb5.md b/content/discover/feed-a2292f176e29d340cf730fb6154d7eb5.md deleted file mode 100644 index 6ff322784..000000000 --- a/content/discover/feed-a2292f176e29d340cf730fb6154d7eb5.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: PyPI recent updates -date: "1970-01-01T00:00:00Z" -description: Recent updates to the Python Package Index -params: - feedlink: https://pypi.org/rss/updates.xml - feedtype: rss - feedid: a2292f176e29d340cf730fb6154d7eb5 - websites: - https://pypi.org/: true - https://pypi.org/project/coverage/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: ngsolve 6.2.2403.post59.dev0 - last_post_description: NGSolve - last_post_date: "2024-06-04T15:19:39Z" - last_post_link: https://pypi.org/project/ngsolve/6.2.2403.post59.dev0/ - last_post_categories: [] - last_post_guid: d4f6b2b76366a4f990d4e379517c7d0d - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a23dae66a5b0185532f6e9e80bcf27d4.md b/content/discover/feed-a23dae66a5b0185532f6e9e80bcf27d4.md new file mode 100644 index 000000000..b7af423ba --- /dev/null +++ b/content/discover/feed-a23dae66a5b0185532f6e9e80bcf27d4.md @@ -0,0 +1,41 @@ +--- +title: ilManzo's blog +date: "1970-01-01T00:00:00Z" +description: Recent content on ilManzo's blog +params: + feedlink: https://ilmanzo.github.io/index.xml + feedtype: rss + feedid: a23dae66a5b0185532f6e9e80bcf27d4 + websites: + https://ilmanzo.github.io/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://github.com/ilmanzo: true + https://ilmanzo.github.io/: true + last_post_title: Measure your program's power consumption + last_post_description: Understand how much power you are using + last_post_date: "2024-06-30T00:00:00Z" + last_post_link: https://ilmanzo.github.io/post/measure_your_power_consumption/ + last_post_categories: [] + last_post_language: "" + last_post_guid: fcc3a81faeead26d5ebf049ad0e546d3 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-a25de209b504f65f5aa8e970b443a03e.md b/content/discover/feed-a25de209b504f65f5aa8e970b443a03e.md deleted file mode 100644 index f1011f009..000000000 --- a/content/discover/feed-a25de209b504f65f5aa8e970b443a03e.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: John Johnston -date: "1970-01-01T00:00:00Z" -description: Public posts from @johnjohnston@social.ds106.us -params: - feedlink: https://social.ds106.us/@johnjohnston.rss - feedtype: rss - feedid: a25de209b504f65f5aa8e970b443a03e - websites: - https://social.ds106.us/@johnjohnston: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://johnjohnston.info/blog/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a265f33d7a864866d3bbe0b66c8e7e7f.md b/content/discover/feed-a265f33d7a864866d3bbe0b66c8e7e7f.md new file mode 100644 index 000000000..96314dc57 --- /dev/null +++ b/content/discover/feed-a265f33d7a864866d3bbe0b66c8e7e7f.md @@ -0,0 +1,62 @@ +--- +title: Board and Card Games Thoughts +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://boardgamethoughts.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: a265f33d7a864866d3bbe0b66c8e7e7f + websites: + https://boardgamethoughts.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - card game + - dumbal + - dutch card game + - klaverjas + - klaverjassen + - nepalese card game + relme: + https://boardgamethoughts.blogspot.com/: true + https://coderthoughts.blogspot.com/: true + https://hikersthoughts.blogspot.com/: true + https://laarderhoogt.blogspot.com/: true + https://lightdarknesspainting.blogspot.com/: true + https://on-software-architecture.blogspot.com/: true + https://osgithoughts.blogspot.com/: true + https://rockabillfilmsoc.blogspot.com/: true + https://rockabillfilmsociety.blogspot.com/: true + https://testblogaswebsite.blogspot.com/: true + https://www.blogger.com/profile/13786738766478890804: true + last_post_title: Klaverjassen + last_post_description: Klaverjassen is a very traditional Dutch card game which + also exists in similar or slightly different forms in other countries. There are + several variants played in the Netherlands, this is the one I + last_post_date: "2019-06-24T17:42:00Z" + last_post_link: https://boardgamethoughts.blogspot.com/2019/06/klaverjassen.html + last_post_categories: + - card game + - dutch card game + - klaverjas + - klaverjassen + last_post_language: "" + last_post_guid: 3729bc1903302c0eb792b2f404e25f20 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a26dae0057687627f36b781e2378291d.md b/content/discover/feed-a26dae0057687627f36b781e2378291d.md index e0bd1f9b6..e0d646375 100644 --- a/content/discover/feed-a26dae0057687627f36b781e2378291d.md +++ b/content/discover/feed-a26dae0057687627f36b781e2378291d.md @@ -18,17 +18,22 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: [] relme: https://calebhearth.com/: true + https://calebhearth.com/links: true + https://calebhearth.com/newsletter: true + https://calebhearth.com/now: true + https://calebhearth.com/referrals: true + https://calebhearth.com/statistics: true + https://calebhearth.com/swift: true + https://calebhearth.com/uses: true + https://cohost.org/calebhearth: true + https://dev.to/calebhearth: true https://github.com/calebhearth: true https://pub.calebhearth.com/@caleb: true https://social.lol/@c: true @@ -37,17 +42,22 @@ params: last_post_date: "2024-04-03T18:04:30Z" last_post_link: https://adactio.com/journal/21027 last_post_categories: [] + last_post_language: "" last_post_guid: f76ea50833e18c1cbe16469c1366c669 score_criteria: cats: 0 description: 0 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 12 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-a2715cbbcdacd7fba2267b909ec0bd74.md b/content/discover/feed-a2715cbbcdacd7fba2267b909ec0bd74.md deleted file mode 100644 index 4b38bbf74..000000000 --- a/content/discover/feed-a2715cbbcdacd7fba2267b909ec0bd74.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: 'sporksmith :unicycle: :rust:' -date: "1970-01-01T00:00:00Z" -description: Public posts from @sporksmith@hachyderm.io -params: - feedlink: https://hachyderm.io/@sporksmith.rss - feedtype: rss - feedid: a2715cbbcdacd7fba2267b909ec0bd74 - websites: - https://hachyderm.io/@sporksmith: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/sporksmith/: true - https://www.torproject.org/about/people/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a2719bd73610f3a2df2b774510d4de68.md b/content/discover/feed-a2719bd73610f3a2df2b774510d4de68.md new file mode 100644 index 000000000..a5ad4bf37 --- /dev/null +++ b/content/discover/feed-a2719bd73610f3a2df2b774510d4de68.md @@ -0,0 +1,54 @@ +--- +title: Dennis Schubert - Blog +date: "2024-05-11T17:04:02Z" +description: "" +params: + feedlink: https://overengineer.dev/blog/feeds/all.xml + feedtype: atom + feedid: a2719bd73610f3a2df2b774510d4de68 + websites: + https://overengineer.dev/: true + https://overengineer.dev/me/card/: false + blogrolls: [] + recommended: [] + recommender: [] + categories: + - electronics + - hacking + - hardware + - overengineering + - rant + relme: + https://github.com/denschub: true + https://mastodon.schub.social/@denschub: true + https://overengineer.dev/: true + https://overengineer.dev/me/card/: true + last_post_title: Thread - the tech we can't use or teach + last_post_description: "" + last_post_date: "2024-05-10T18:34:17Z" + last_post_link: https://overengineer.dev/blog/2024/05/10/thread/ + last_post_categories: + - electronics + - hacking + - hardware + - overengineering + - rant + last_post_language: "" + last_post_guid: 17ea4b30ab4f4ebb152606f4964190f2 + score_criteria: + cats: 0 + description: 0 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-a299b92c3521735860d579d44e1bc41c.md b/content/discover/feed-a299b92c3521735860d579d44e1bc41c.md index bae9ef4d2..aae7493d8 100644 --- a/content/discover/feed-a299b92c3521735860d579d44e1bc41c.md +++ b/content/discover/feed-a299b92c3521735860d579d44e1bc41c.md @@ -22,17 +22,22 @@ params: last_post_date: "2024-01-13T00:00:00Z" last_post_link: https://zoeaubert.me/blog/2023-what-happened-with-me last_post_categories: [] + last_post_language: "" last_post_guid: a54bac521827ce967a0d3683603f1869 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 11 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-a2b5cd8872e75af2838b5be9f1a102ea.md b/content/discover/feed-a2b5cd8872e75af2838b5be9f1a102ea.md deleted file mode 100644 index 961a20bbe..000000000 --- a/content/discover/feed-a2b5cd8872e75af2838b5be9f1a102ea.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Feld Notes -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://feldnotes.com/feed.xml - feedtype: rss - feedid: a2b5cd8872e75af2838b5be9f1a102ea - websites: - https://feldnotes.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://micro.blog/martinfeld: false - https://social.lol/@martinfeld: false - https://twitter.com/martinfeld: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a2b75423734acda0ad049fec610cac37.md b/content/discover/feed-a2b75423734acda0ad049fec610cac37.md new file mode 100644 index 000000000..4244679e4 --- /dev/null +++ b/content/discover/feed-a2b75423734acda0ad049fec610cac37.md @@ -0,0 +1,46 @@ +--- +title: Komentáře k Sesivany's blog +date: "1970-01-01T00:00:00Z" +description: A Blog of Jiri Eischmann +params: + feedlink: https://blog.eischmann.cz/comments/feed/ + feedtype: rss + feedid: a2b75423734acda0ad049fec610cac37 + websites: + https://blog.eischmann.cz/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://blog.eischmann.cz/: true + https://eischmann.cz/: true + https://enblog.eischmann.cz/: true + https://social.vivaldi.net/@sesivany: true + last_post_title: Komentář k příspěvku Změnil jsem instanci Mastodonu od Kepi + last_post_description: |- + Odpověď na Jiří Eischmann. + +

Mechanical + last_post_date: "2024-07-08T18:27:01Z" + last_post_link: https://bankuei.wordpress.com/2024/07/08/mechanical-fiction-spectrum/ + last_post_categories: + - design + - theory + last_post_language: "" + last_post_guid: 4e226f55d79e823764546550d1bda96c + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 2 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-a3819ed1c77054895af50dc8915271c9.md b/content/discover/feed-a3819ed1c77054895af50dc8915271c9.md new file mode 100644 index 000000000..6dc28336b --- /dev/null +++ b/content/discover/feed-a3819ed1c77054895af50dc8915271c9.md @@ -0,0 +1,49 @@ +--- +title: Philip Withnall +date: "1970-01-01T00:00:00Z" +description: Free software, the outdoors and the environment. +params: + feedlink: https://tecnocode.co.uk/feed/ + feedtype: rss + feedid: a3819ed1c77054895af50dc8915271c9 + websites: + https://tecnocode.co.uk/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - GNOME + - GUADEC + - talks + relme: + https://mastodon.social/@pwithnall: true + https://tecnocode.co.uk/: true + last_post_title: GUADEC 2023 + last_post_description: I attended GUADEC 2023 this year in-person in Rīga. It was + nice to be able to see more people in person than last year’s mini-GUADEC in Berlin, + and nice to be able to travel overland/oversea to + last_post_date: "2023-08-07T11:52:20Z" + last_post_link: https://tecnocode.co.uk/2023/08/07/guadec-2023/ + last_post_categories: + - GNOME + - GUADEC + - talks + last_post_language: "" + last_post_guid: a6748ac75681874bcd1e6ee6bba0f469 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-a39f33c5b8755da2d1164ac3010e0e39.md b/content/discover/feed-a39f33c5b8755da2d1164ac3010e0e39.md new file mode 100644 index 000000000..01726a7bb --- /dev/null +++ b/content/discover/feed-a39f33c5b8755da2d1164ac3010e0e39.md @@ -0,0 +1,52 @@ +--- +title: Marc Richter's personal site +date: "1970-01-01T00:00:00Z" +description: About Linux, programming in Python and Music +params: + feedlink: https://www.marc-richter.info/feed/ + feedtype: rss + feedid: a39f33c5b8755da2d1164ac3010e0e39 + websites: + https://www.marc-richter.info/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Allgemein + - Planet Python Articles + - Python + - heroku + relme: + https://mas.to/@mindofjudge: true + https://www.marc-richter.info/: true + last_post_title: Heroku’s attempt to scare away users and its impact on my Heroku-Fanboy + position + last_post_description: Anyone who may have read my past posts on this blog or knows + my personal-IT life is most certainly aware of my preference to host personal + and pre-MVP projects on Heroku – a formerly great choice + last_post_date: "2022-08-28T19:23:30Z" + last_post_link: https://www.marc-richter.info/herokus-attempt-to-scare-away-users-and-its-impact-on-my-heroku-fanboy-position/ + last_post_categories: + - Allgemein + - Planet Python Articles + - Python + - heroku + last_post_language: "" + last_post_guid: 4a6ce300b70c70b5f4a54c30c060fe4b + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-a3ad01a96b86adc67ec349638890c403.md b/content/discover/feed-a3ad01a96b86adc67ec349638890c403.md new file mode 100644 index 000000000..4c5b53fe1 --- /dev/null +++ b/content/discover/feed-a3ad01a96b86adc67ec349638890c403.md @@ -0,0 +1,44 @@ +--- +title: Mile Stretcher +date: "2024-03-18T20:15:54-07:00" +description: Getting the most from each and every frequent flier mile,. +params: + feedlink: https://mile-stretcher.blogspot.com/feeds/posts/default + feedtype: atom + feedid: a3ad01a96b86adc67ec349638890c403 + websites: + https://mile-stretcher.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://mile-stretcher.blogspot.com/: true + https://ncommander.blogspot.com/: true + https://spanish90.blogspot.com/: true + https://www.blogger.com/profile/17676152296271896899: true + last_post_title: Turning SkyPesos into SkyMiles aka Finding Low Delta Awards (part + 1) + last_post_description: "" + last_post_date: "2010-11-10T18:02:52-08:00" + last_post_link: https://mile-stretcher.blogspot.com/2010/10/turning-skypesos-into-skymiles-part-1.html + last_post_categories: [] + last_post_language: "" + last_post_guid: e55d5dc1be378fcd91391d3c5aa375e0 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a3b953bcb1dfd2dc25582582e738f8ff.md b/content/discover/feed-a3b953bcb1dfd2dc25582582e738f8ff.md deleted file mode 100644 index b9c735dfb..000000000 --- a/content/discover/feed-a3b953bcb1dfd2dc25582582e738f8ff.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Alexander Hansen Færøy -date: "1970-01-01T00:00:00Z" -description: Public posts from @ahf@mastodon.social -params: - feedlink: https://mastodon.social/@ahf.rss - feedtype: rss - feedid: a3b953bcb1dfd2dc25582582e738f8ff - websites: - https://mastodon.social/@ahf: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://ahf.me/: true - https://ahf.me/contact/: true - https://www.torproject.org/about/people/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a3bd722c09c12947f3040cad8b4c9dbc.md b/content/discover/feed-a3bd722c09c12947f3040cad8b4c9dbc.md index a02bbf6ae..5ff85d0b2 100644 --- a/content/discover/feed-a3bd722c09c12947f3040cad8b4c9dbc.md +++ b/content/discover/feed-a3bd722c09c12947f3040cad8b4c9dbc.md @@ -1,6 +1,6 @@ --- title: Miriam Eric Suzanne -date: "2024-01-24T00:00:00Z" +date: "2024-07-06T00:00:00Z" description: Art, writing, and code from Miriam Suzanne params: feedlink: https://www.miriamsuzanne.com/feed.xml @@ -11,39 +11,56 @@ params: blogrolls: [] recommended: [] recommender: - - https://chrisburnell.com/feed.xml + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml categories: - - post + - cascade layers - code - css - - preferences + - eleventy + - post + - webc relme: - https://codepen.io/miriamsuzanne/: false + https://business-business.business/: true https://front-end.social/@mia: true https://github.com/mirisuzanne: true - https://www.miriamsuzanne.com/feed.xml: false - last_post_title: User Styles + https://www.miriamsuzanne.com/: true + last_post_title: Eleventy Buckets & Cascade Layers last_post_description: |- -

You’re allowed to have preferences. - Set your preferences.

- last_post_date: "2024-01-24T00:00:00Z" - last_post_link: https://www.miriamsuzanne.com/2024/01/24/have-preferences/ + Solving a problem I created + I’m re-working this site from scratch – + sticking with Eleventy, + but moving from + Nunjucks templates/macros + to WebC + and web components. + Outside of static-site templates + last_post_date: "2024-07-06T00:00:00Z" + last_post_link: https://www.miriamsuzanne.com/2024/07/06/buckets-layers/ last_post_categories: - - post + - cascade layers - code - css - - preferences - last_post_guid: ae3f89b07217c3a75a742b753af756c4 + - eleventy + - post + - webc + last_post_language: "" + last_post_guid: fb0ba2b7c4b280dfe8c33797c9f424ba score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 18 + score: 22 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-a3d5366a5e3eb32f79f919d68d4b8a4a.md b/content/discover/feed-a3d5366a5e3eb32f79f919d68d4b8a4a.md new file mode 100644 index 000000000..00f173c07 --- /dev/null +++ b/content/discover/feed-a3d5366a5e3eb32f79f919d68d4b8a4a.md @@ -0,0 +1,44 @@ +--- +title: Comments for hypatia dot ca +date: "1970-01-01T00:00:00Z" +description: Leigh Honeywell's Blog +params: + feedlink: https://hypatia.ca/comments/feed/ + feedtype: rss + feedid: a3d5366a5e3eb32f79f919d68d4b8a4a + websites: + https://hypatia.ca/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://hypatia.ca/: true + last_post_title: Comment on The Ministry for the Future of Slightly Confusing Narrators + by Leigh Honeywell + last_post_description: |- + In reply to hughesmanthonygmailcom. + + Hey Mark! Great to hear from you. It's been a + last_post_date: "2021-07-22T13:55:25Z" + last_post_link: https://hypatia.ca/2021/07/20/the-ministry-for-the-future-of-slightly-confusing-narrators/#comment-867 + last_post_categories: [] + last_post_language: "" + last_post_guid: 90e10e4d0c1ea99ce3f57adab2b16575 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a3e9311c82177a96060643ce611a0d7a.md b/content/discover/feed-a3e9311c82177a96060643ce611a0d7a.md deleted file mode 100644 index b6953dca7..000000000 --- a/content/discover/feed-a3e9311c82177a96060643ce611a0d7a.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Hypercode Blog -date: "1970-01-01T00:00:00Z" -description: Weblog des Digital Product Studio Hypercode aus Köln. -params: - feedlink: https://hypercode.de/feed.xml - feedtype: rss - feedid: a3e9311c82177a96060643ce611a0d7a - websites: - https://hypercode.de/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: 'Hypercode goes Hochschule: Web-Technologien, User Experience und - Web-Analytics an der HMKW' - last_post_description: 'In der kommenden Woche ist es wieder soweit: Die Vorlesungszeit - beginnt und mit ihr das dritte Seminar unseres Geschäftsführers und Co-Founders - Stefan Grund an der HMKW Hochschule für Medien,' - last_post_date: "2024-04-04T16:00:00Z" - last_post_link: https://hypercode.de/blog/lehre-web-technologien-und-ux/ - last_post_categories: [] - last_post_guid: 7c92fd22f2174730e86b24fc609a5734 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a402a0109c4716adce4ef91f77841c06.md b/content/discover/feed-a402a0109c4716adce4ef91f77841c06.md new file mode 100644 index 000000000..1284632c7 --- /dev/null +++ b/content/discover/feed-a402a0109c4716adce4ef91f77841c06.md @@ -0,0 +1,48 @@ +--- +title: James Bennett (b-list.org) +date: "2023-12-24T21:08:26-06:00" +description: "" +params: + feedlink: https://www.b-list.org/feeds/entries/ + feedtype: atom + feedid: a402a0109c4716adce4ef91f77841c06 + websites: + https://www.b-list.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Django + - Python + relme: + https://github.com/ubernostrum: true + https://infosec.exchange/@ubernostrum: true + https://www.b-list.org/: true + last_post_title: Know your Python container types + last_post_description: This is the last of a series of posts I’m doing as a sort + of Python/Django Advent calendar, offering a small tip or piece of information + each day from the first Sunday of Advent through Christmas + last_post_date: "2023-12-24T21:08:26-06:00" + last_post_link: https://www.b-list.org/weblog/2023/dec/24/python-container-types/ + last_post_categories: + - Django + - Python + last_post_language: "" + last_post_guid: 6d90b7ecb11ec5f9a65f64b92bf2bdce + score_criteria: + cats: 0 + description: 0 + feedlangs: 1 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-a40b6d5db48ef326b3a2e58b545c6d71.md b/content/discover/feed-a40b6d5db48ef326b3a2e58b545c6d71.md new file mode 100644 index 000000000..efaa3d0dd --- /dev/null +++ b/content/discover/feed-a40b6d5db48ef326b3a2e58b545c6d71.md @@ -0,0 +1,263 @@ +--- +title: 'Mobidéia: Idéias & Mobilidade' +date: "1970-01-01T00:00:00Z" +description: Repositório de idéias, projetos e alguns "delírios" durante essa vida + pessoal,acadêmica e profissional de Marcel Caraciolo +params: + feedlink: https://mobideia.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: a40b6d5db48ef326b3a2e58b545c6d71 + websites: + https://mobideia.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - .NET + - 3G + - Apple + - Artificial Intelligence + - BlackBerry + - Grafos + - I.A. + - IDE + - Inteligencia artificial + - Iphone + - Java + - JavaFX + - JavaME + - MAS + - Modelagem + - S60 + - SCMAD + - Wap + - Wireless + - a + - acelerometro + - agenda + - algoritmos + - android + - api + - aplicativos + - apresentaçao + - arduino + - arte + - artigo + - ase + - assistentes virtuais + - atepassar + - aula + - aulas + - automação + - biometria + - bionica + - blog + - bluetooth + - bots + - bugs + - c++ + - carbide + - celulares + - checkin + - cin + - citi + - classificadores + - comparacoes + - compras + - compras coletivas + - computacao pervasiva + - computacao ubiqua + - computação científica + - computação ubíqua + - comunidade + - contatos + - controle + - convegencia + - crab + - crowdsourcing + - curso + - data mining + - depoimento + - desafios + - desempenho + - design patterns + - devmedia + - dicas + - django + - educação + - emulador + - encontro + - ensol + - esportes + - evento + - expressoes regulares + - facebook + - flashlite + - fotos + - foursquare + - framework + - geotagging + - google + - google maps + - gps + - graficos + - gtk + - hardware + - humor + - ideas + - ideias + - ifpe + - image recognition + - inteligencia coletiva + - interface + - internet + - ipython + - joblib + - jogos + - lg + - linguagens + - livro + - location + - lojas + - lua + - mac os + - maemo + - mapas + - marketing + - mashups + - matplotlib + - mercado + - metodologias + - mineracao de dados + - mobile + - mobile marketing + - mobile sensing + - mobile sensor + - motorola + - mp3 + - musica + - n900 + - n97 + - netbeans + - nlp + - nokia + - nokia maps + - numpy + - oauth + - oculos + - opensource + - operadora + - otimizaçao + - ovi + - palestra + - pdf + - perceptron + - perguntas e respostas + - pernambuco + - pervasive computing + - pesquisa + - pingmind + - plataformas + - playstation + - portais + - powerpoint + - programação + - projeto + - propaganda + - publicidade + - pug + - pyS60 + - pycursos + - pyfoursquare + - pygame + - pyqt + - python + - pythonBrasil + - qt + - realidade aumentada + - recomendação + - recommendation systems + - reconhecimento de imagens + - redes neurais + - redes sociais + - remobile + - rest + - reuso + - ringtones + - rotas + - scanner + - scipy + - scrum + - sdk + - sincronizaçao + - sistemas de recomendação + - slides + - sms + - social networks + - socket + - software livre + - sun + - symbian + - syncML + - tablet + - tags + - touchscreen + - tracking + - transito + - turismo + - tutorial + - tv digital + - tweephoto + - twitpic + - twitter + - ubiquitous computing + - ufpe + - video + - videos + - web + - web services + - widgets + - wiki + - windows + - windows mobile + - workshop + - wrt + - xp + - yahoo maps + relme: + https://mobideia.blogspot.com/: true + last_post_title: Slides das Palestra Novas tendências para a Educação a Distância + last_post_description: |- + Olá pessoal, + + + Semana passada tive a oportunidade de apresentar 2 palestras a convite do CITI (Empresa Júnior do Centro de Informática) e do PET (Programa Educação para Todos) no Centro de + last_post_date: "2012-06-19T16:51:00Z" + last_post_link: https://mobideia.blogspot.com/2012/06/slides-das-palestra-novas-tendencias.html + last_post_categories: + - atepassar + - educação + - palestra + - pingmind + - pycursos + - redes sociais + - slides + last_post_language: "" + last_post_guid: 58dba6d319feab44afe474e4dc0490a9 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a41174e401ff39dddd20ffac0ec7c7ab.md b/content/discover/feed-a41174e401ff39dddd20ffac0ec7c7ab.md deleted file mode 100644 index 8a5b86221..000000000 --- a/content/discover/feed-a41174e401ff39dddd20ffac0ec7c7ab.md +++ /dev/null @@ -1,49 +0,0 @@ ---- -title: Techdirt -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://www.techdirt.com/feed - feedtype: rss - feedid: a41174e401ff39dddd20ffac0ec7c7ab - websites: {} - blogrolls: [] - recommended: [] - recommender: - - http://scripting.com/rss.xml - - http://scripting.com/rssNightly.xml - categories: - - copyright - - death - - ownership - - video game library - - video game preservation - - video games - relme: {} - last_post_title: 'You Don’t Own The Video Games You’ve Bought: The Death Edition' - last_post_description: In my basement at home, I have a handful of old gaming consoles - that were left to our family after other family members either got too old to - want them any longer or after they passed away. Coming - last_post_date: "2024-06-04T03:09:00Z" - last_post_link: https://www.techdirt.com/2024/06/03/you-dont-own-the-video-games-youve-bought-the-death-edition/ - last_post_categories: - - copyright - - death - - ownership - - video game library - - video game preservation - - video games - last_post_guid: 709c969d8ece758cb7fb845f070f65b4 - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a419f3502c121df51afffe6f85fbaf9b.md b/content/discover/feed-a419f3502c121df51afffe6f85fbaf9b.md deleted file mode 100644 index 6455e4cc9..000000000 --- a/content/discover/feed-a419f3502c121df51afffe6f85fbaf9b.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Glitch Community Forum - Latest topics -date: "1970-01-01T00:00:00Z" -description: Latest topics -params: - feedlink: https://support.glitch.com/latest.rss - feedtype: rss - feedid: a419f3502c121df51afffe6f85fbaf9b - websites: - https://support.glitch.com/: false - https://support.glitch.com/latest: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Coding Help - relme: {} - last_post_title: How do create a whatsapp webhook? for multiagent - last_post_description: I’m a doctor not a coder but I’m learning. How do I create - a WhatsApp webhook so there is one business number available but the message will - go to different agents’ numbers and only one agent - last_post_date: "2024-06-04T12:35:01Z" - last_post_link: https://support.glitch.com/t/how-do-create-a-whatsapp-webhook-for-multiagent/67549 - last_post_categories: - - Coding Help - last_post_guid: 273f7f5d727921813e0df59f416b48d7 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a41f11809e89364e827e15515e95c0e0.md b/content/discover/feed-a41f11809e89364e827e15515e95c0e0.md new file mode 100644 index 000000000..0df2e9dbd --- /dev/null +++ b/content/discover/feed-a41f11809e89364e827e15515e95c0e0.md @@ -0,0 +1,52 @@ +--- +title: Snap Happy +date: "1970-01-01T00:00:00Z" +description: |- + Hi, I'm Alexandra + + + + Welcome to my photography blog, here you'll find photos of: + + The places I've been + The things I've seen<... +params: + feedlink: https://snaphappy.me/feed/?type=rss + feedtype: rss + feedid: a41f11809e89364e827e15515e95c0e0 + websites: + https://snaphappy.me/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://alexandrawolfe.ca/: true + https://snaphappy.me/: true + https://social.lol/@alexandra: true + last_post_title: Half a Door + last_post_description: Quebec doesn't like to do things by halves, or so I am told. + But there's one thing they love to split in half and I'm not talking cake. I'm + talking doors ... or, to be more exact, addresses. Check + last_post_date: "2024-07-08T19:25:00Z" + last_post_link: https://snaphappy.me/half-a-door/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 92ae102828093dc629f1022ed05e8877 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a4371ed85932cf36102b27d68cf2f1a9.md b/content/discover/feed-a4371ed85932cf36102b27d68cf2f1a9.md deleted file mode 100644 index 637cbeae8..000000000 --- a/content/discover/feed-a4371ed85932cf36102b27d68cf2f1a9.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: MetaFilter Projects -date: "2024-05-22T11:59:24Z" -description: The past 20 posts to MeFi Projects -params: - feedlink: https://rss.metafilter.com/projects.rss - feedtype: rss - feedid: a4371ed85932cf36102b27d68cf2f1a9 - websites: - https://projects.metafilter.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: MetaFilter activity stats - last_post_description: Tracking monthly active users, posts, and comments on MetaFilter - and subsites. Automatically updated whenever the Infodump updates.There have been - various activity stats produced over the years, - last_post_date: "2024-05-22T11:59:24Z" - last_post_link: https://projects.metafilter.com/6277/MetaFilter-activity-stats - last_post_categories: [] - last_post_guid: e6bd22f2838a959f070392c72fe01e42 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a447ff2aa2506842c9edccbca4fee273.md b/content/discover/feed-a447ff2aa2506842c9edccbca4fee273.md new file mode 100644 index 000000000..e95db1175 --- /dev/null +++ b/content/discover/feed-a447ff2aa2506842c9edccbca4fee273.md @@ -0,0 +1,59 @@ +--- +title: azakai's blog +date: "1970-01-01T00:00:00Z" +description: |- + Alon Zakai aka kripken | Compiling to the Web: Emscripten, Binaryen, asm.js, WebAssembly, etc. + + New posts at: https://kripken.github.io/blog/ +params: + feedlink: https://mozakai.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: a447ff2aa2506842c9edccbca4fee273 + websites: + https://mozakai.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - box2d + - e10s + - emscripten + - ipc + - javascript + - meego + - n900 + - performance + - power + - pypy + - python + - sqlite + - xpcom + relme: + https://mozakai.blogspot.com/: true + last_post_title: 2 recent Emscripten stories + last_post_description: |- + In case you missed them: + + First, DOSBox is an open source emulator that lets you run old DOS programs (which means, mostly games ;) . It simulates a PC compatible machine, complete with Intel CPU and + last_post_date: "2015-01-06T22:29:00Z" + last_post_link: https://mozakai.blogspot.com/2015/01/2-recent-emscripten-stories.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 936efe0a95c1654cdf0c10cb47a6a7dc + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a459d4c8afad82f231e4110240b91682.md b/content/discover/feed-a459d4c8afad82f231e4110240b91682.md new file mode 100644 index 000000000..b51d676f3 --- /dev/null +++ b/content/discover/feed-a459d4c8afad82f231e4110240b91682.md @@ -0,0 +1,47 @@ +--- +title: Comments for Tom Lokhorst's blog +date: "1970-01-01T00:00:00Z" +description: Writings from a happy Swift coder. +params: + feedlink: https://tom.lokhorst.eu/comments/feed + feedtype: rss + feedid: a459d4c8afad82f231e4110240b91682 + websites: + https://tom.lokhorst.eu/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://github.com/nonstrict-hq: true + https://mastodon.social/@mathijskadijk: true + https://mastodon.social/@nonstrict: true + https://mastodon.social/@tomlokhorst: true + https://nonstrict.eu/: true + https://tom.lokhorst.eu/: true + last_post_title: Comment on Server Driven UI by Olayeni Ogundimu + last_post_description:

Fantastic Article and Video! Looking into implement server + driven UI for an app, but it will only be needed for sending UI instructions to + the client, because actual files may be too big. I want + last_post_date: "2021-06-07T12:53:08Z" + last_post_link: https://tom.lokhorst.eu/2020/07/server-driven-ui/comment-page-1#comment-20073 + last_post_categories: [] + last_post_language: "" + last_post_guid: 5ac8e0e32bd7f027198f67e5d68e7040 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a4689d4402a5bfa91b8a4834a8463fc0.md b/content/discover/feed-a4689d4402a5bfa91b8a4834a8463fc0.md new file mode 100644 index 000000000..9cb633335 --- /dev/null +++ b/content/discover/feed-a4689d4402a5bfa91b8a4834a8463fc0.md @@ -0,0 +1,55 @@ +--- +title: Virtual Thoughts! +date: "2024-03-05T19:20:59-08:00" +description: "" +params: + feedlink: https://mksamuel.blogspot.com/feeds/posts/default + feedtype: atom + feedid: a4689d4402a5bfa91b8a4834a8463fc0 + websites: + https://mksamuel.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Eclipse RAP Rich Ajax Platform Java + - Fiction + - Gene Machine Biography System Architecture Xtext EMF Eclipse RAP Java + - Grady Booch Perspective + - I Like Eclipse PlanetEclipse committment dedication + - Inception + - Java Getters Setters Software Object Oriented Programming OOPS + - Mind Graph Theory MindGraph Dreams Explained Nightmare Map brain imagination God + Concentration Mediation subconscious consious + - rules + - software tool development passion enthusiasm java hard work hardwork eclipse + relme: + https://dummywebsite.blogspot.com/: true + https://eclipse-info.blogspot.com/: true + https://iosdribbles.blogspot.com/: true + https://mksamuel.blogspot.com/: true + https://www.blogger.com/profile/05191409900046165475: true + last_post_title: Coronavirus Spread, is it time to follow the Koreans? + last_post_description: "" + last_post_date: "2020-03-18T21:45:43-07:00" + last_post_link: https://mksamuel.blogspot.com/2020/03/coronavirus-spread-is-it-time-to-follow.html + last_post_categories: [] + last_post_language: "" + last_post_guid: f1c76ddcb491802bd54cacfc83e17ea2 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a468a776d41436824059bf2f09f9f688.md b/content/discover/feed-a468a776d41436824059bf2f09f9f688.md deleted file mode 100644 index a4e30d583..000000000 --- a/content/discover/feed-a468a776d41436824059bf2f09f9f688.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Hacktoberfest -date: "1970-01-01T00:00:00Z" -description: Public posts from @hacktoberfest@hachyderm.io -params: - feedlink: https://hachyderm.io/@hacktoberfest.rss - feedtype: rss - feedid: a468a776d41436824059bf2f09f9f688 - websites: - https://hachyderm.io/@hacktoberfest: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/approved: true - https://hacktoberfest.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a48513fcc01fb97497e3e67aa2f70b96.md b/content/discover/feed-a48513fcc01fb97497e3e67aa2f70b96.md new file mode 100644 index 000000000..3923267cb --- /dev/null +++ b/content/discover/feed-a48513fcc01fb97497e3e67aa2f70b96.md @@ -0,0 +1,45 @@ +--- +title: Mary Knize | mary.codes +date: "1970-01-01T00:00:00Z" +description: The personal website of Mary Knize. Web development, art, and tinkering + with fun projects. +params: + feedlink: https://mary.codes/rss.xml + feedtype: rss + feedid: a48513fcc01fb97497e3e67aa2f70b96 + websites: + https://mary.codes/: true + blogrolls: [] + recommended: [] + recommender: + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php + categories: [] + relme: + https://github.com/captainpainway: true + https://graphics.social/@mary: true + https://mary.codes/: true + last_post_title: I started painting again + last_post_description: "" + last_post_date: "2024-04-01T20:00:00Z" + last_post_link: https://mary.codes/blog/art/i_started_painting_again/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 811f14d7707d0f42113aa84828fee829 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a489563583535a9fe6289d206b672ac1.md b/content/discover/feed-a489563583535a9fe6289d206b672ac1.md new file mode 100644 index 000000000..4091a036b --- /dev/null +++ b/content/discover/feed-a489563583535a9fe6289d206b672ac1.md @@ -0,0 +1,64 @@ +--- +title: Gilles Gravier's Blog +date: "1970-01-01T00:00:00Z" +description: Ravings about many things... but not about work (mostly). I post to this + blog various things I see while walking around carrying my cell phone, or that I + think are important enough to mention. I blog +params: + feedlink: https://ggravier.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: a489563583535a9fe6289d206b672ac1 + websites: + https://ggravier.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - boiron + - carrefour + - colis + - ddpp + - dgccrf + - fedex + - fraude + - fraudeur + - homeopathie + - la poste + - mysql + - oscillococcinum + - promotions + - sante + - suivi + relme: + https://ds-in-chablais.blogspot.com/: true + https://ggravier.blogspot.com/: true + https://gillesgravierphotography.blogspot.com/: true + https://thinkingopensource.blogspot.com/: true + https://www.blogger.com/profile/18374683443794882592: true + last_post_title: Is Your Open Source Strategy Serving Your Corporate Strategy ? + last_post_description: |- + I just posted a new article on Wipro's corporate page about how to leverage your open source strategy to better serve your corporate strategy. + + The article is posted here : http://www.wipro + last_post_date: "2016-12-05T13:58:00Z" + last_post_link: https://ggravier.blogspot.com/2016/12/is-your-open-source-strategy-serving.html + last_post_categories: [] + last_post_language: "" + last_post_guid: ecd94ab418c8a4c088cc813fe5675b02 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a499e4c74717fabb709e55627150a4ab.md b/content/discover/feed-a499e4c74717fabb709e55627150a4ab.md index 7e2349607..456de85fe 100644 --- a/content/discover/feed-a499e4c74717fabb709e55627150a4ab.md +++ b/content/discover/feed-a499e4c74717fabb709e55627150a4ab.md @@ -12,7 +12,8 @@ params: recommended: [] recommender: [] categories: [] - relme: {} + relme: + https://hackademix.net/: true last_post_title: Comment on Contextual Policies & LAN Protection (ABE Quantum) in NoScript 11.3! by MadManMoon last_post_description: |- @@ -22,17 +23,22 @@ params: last_post_date: "2022-03-30T12:10:25Z" last_post_link: https://hackademix.net/2022/02/17/contextual-policies-lan-protection-abe-quantum-in-noscript-113/#comment-45840 last_post_categories: [] + last_post_language: "" last_post_guid: 78d1d010663ebe0a3b20741abd5f6db1 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 8 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-a49bbb9f577984d62d08057f0725a459.md b/content/discover/feed-a49bbb9f577984d62d08057f0725a459.md index 07a79f890..19035179f 100644 --- a/content/discover/feed-a49bbb9f577984d62d08057f0725a459.md +++ b/content/discover/feed-a49bbb9f577984d62d08057f0725a459.md @@ -16,27 +16,49 @@ params: categories: - Society & Culture relme: - https://micro.blog/martinfeld: false - https://social.lol/@martinfeld: false - https://twitter.com/martinfeld: false + https://3x2.pics/: true + https://andrewcanion.com/: true + https://canion.blog/: true + https://canion.omg.lol/: true + https://cv.omg.lol/: true + https://feldnotes.com/: true + https://github.com/jasonburk: true + https://grepjason.sh/: true + https://hemisphericviews.com/: true + https://jason.omg.lol/: true + https://letterboxd.com/canion/: true + https://martinfeld.info/: true + https://martinfeld.info/now: true + https://martinfeld.omg.lol/: true + https://social.lol/@3x2: true + https://social.lol/@canion: true + https://social.lol/@hemisphericviews: true + https://social.lol/@jason: true + https://social.lol/@martinfeld: true + https://www.rsspod.net/: true last_post_title: '''An Eye for an Ear'' at Micro Camp March 2022' last_post_description: I had the pleasure of giving a video presentation online at Micro Camp March 2022, titled ‘An Eye for an Ear’. Micro Camp is an opportunity to meet and learn from users of the Micro.blog service, - last_post_date: "2022-03-12T15:42:00+11:00" + last_post_date: "2022-03-12T14:42:00+10:00" last_post_link: https://feldnotes.com/2022/03/12/an-eye-for.html last_post_categories: [] + last_post_language: "" last_post_guid: 3d1e2e2dab9459e6b5e45bc0a54093df score_criteria: cats: 1 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 0 website: 2 - score: 7 + score: 12 ispodcast: true isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-a4a8aa5d80a798b1d1df01a8cfa1a857.md b/content/discover/feed-a4a8aa5d80a798b1d1df01a8cfa1a857.md new file mode 100644 index 000000000..fcfb11eef --- /dev/null +++ b/content/discover/feed-a4a8aa5d80a798b1d1df01a8cfa1a857.md @@ -0,0 +1,48 @@ +--- +title: Daten|teiler +date: "2022-10-24T17:15:21Z" +description: Kopieren als Kulturtechnik +params: + feedlink: https://www.datenteiler.de/feed/atom/ + feedtype: atom + feedid: a4a8aa5d80a798b1d1df01a8cfa1a857 + websites: + https://www.datenteiler.de/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Gnu/Linux + - Open Source + - Powershell + relme: + https://www.datenteiler.de/: true + last_post_title: PowerShell und Jupyter Notebooks unter Linux in VS Code + last_post_description: Jupyter Notebook ist eine Open Source-Webanwendung, mit der + man Dokumente erstellen und teilen kann, die Live-Code, mathematische Gleichungen, + Visualisierungen von Daten und beschreibenden Text + last_post_date: "2022-10-24T17:15:21Z" + last_post_link: https://www.datenteiler.de/powershell-und-jupyter-notebooks-unter-linux-in-vs-code/ + last_post_categories: + - Gnu/Linux + - Open Source + - Powershell + last_post_language: "" + last_post_guid: ce134521e4e65055f80e8f9a0aba29eb + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: de +--- diff --git a/content/discover/feed-a4af6fd3879a81b1f25abd22df61a35f.md b/content/discover/feed-a4af6fd3879a81b1f25abd22df61a35f.md new file mode 100644 index 000000000..67dbd908e --- /dev/null +++ b/content/discover/feed-a4af6fd3879a81b1f25abd22df61a35f.md @@ -0,0 +1,45 @@ +--- +title: Improve the Debian boot process - blog +date: "1970-01-01T00:00:00Z" +description: Project Webpage and my webpage +params: + feedlink: https://bootdebian.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: a4af6fd3879a81b1f25abd22df61a35f + websites: + https://bootdebian.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - linux debian boot + relme: + https://bootdebian.blogspot.com/: true + https://www.blogger.com/profile/12649439812700566673: true + last_post_title: Etch boots as fast as Woody... + last_post_description: With the Post-etch frenzy, I installed Debian 4.0 stable + as soon as I could. I used the same system used a few months ago for the google + Summer of Code. Under the same conditions, the system required + last_post_date: "2007-04-11T21:14:00Z" + last_post_link: https://bootdebian.blogspot.com/2007/04/etch-boots-as-fast-as-woody.html + last_post_categories: + - linux debian boot + last_post_language: "" + last_post_guid: 0351d2cb8c1492f37d3e1af1c6661df9 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a4c43d0bbf2aa9fb1bb42f1e74ac823a.md b/content/discover/feed-a4c43d0bbf2aa9fb1bb42f1e74ac823a.md deleted file mode 100644 index cbf083e6c..000000000 --- a/content/discover/feed-a4c43d0bbf2aa9fb1bb42f1e74ac823a.md +++ /dev/null @@ -1,60 +0,0 @@ ---- -title: Alessio Ababilov's Blog -date: "1970-01-01T00:00:00Z" -description: A blog about IT, clouds, and my favourite Linux -params: - feedlink: https://aababilov.wordpress.com/feed/ - feedtype: rss - feedid: a4c43d0bbf2aa9fb1bb42f1e74ac823a - websites: - https://aababilov.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Linux - - chrome os - - chromium os - - gentoo - - hp mini - - intel graphics media accelerator - - linux - - netbook - - portage - - POSIX - - software - - tips and tricks - relme: {} - last_post_title: 'Chromium OS on HP Mini: xf86-video-modesetting' - last_post_description: When I was choosing my netbook, I knew that I will install - Linux on it, so, I put attention on its hardware. Having noticed that it has an - Intel videocard, […] - last_post_date: "2013-09-08T08:17:44Z" - last_post_link: https://aababilov.wordpress.com/2013/09/08/chromium-os-on-hp-mini-xf86-video-modesetting/ - last_post_categories: - - Linux - - chrome os - - chromium os - - gentoo - - hp mini - - intel graphics media accelerator - - linux - - netbook - - portage - - POSIX - - software - - tips and tricks - last_post_guid: 97864f2c357387a9706a5fe71779a965 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a4cff19fa1d2479628434e63c9a1316a.md b/content/discover/feed-a4cff19fa1d2479628434e63c9a1316a.md new file mode 100644 index 000000000..a037e2648 --- /dev/null +++ b/content/discover/feed-a4cff19fa1d2479628434e63c9a1316a.md @@ -0,0 +1,83 @@ +--- +title: Рождён быть свободным +date: "2024-03-20T20:37:00-07:00" +description: Путешествие... жизнь, и мысли по дороге... +params: + feedlink: https://tagezi.blogspot.com/feeds/posts/default + feedtype: atom + feedid: a4cff19fa1d2479628434e63c9a1316a + websites: + https://tagezi.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Зима + - Хакасия + - буддизм + - вера + - воспитание + - выжигание + - дочь + - жизнь + - исправлять до опупения + - кагью + - карма + - книга + - кость + - кот + - культура + - ложь + - лыжи + - медитация + - мысли + - наука + - нганасаны + - нищий + - осознанность + - ощущения + - песнопения + - письменность + - поделки + - практика + - предварительная + - психология + - путешествия + - рассказ + - религии + - руны + - сострадание + - споры + - стимул + - тренировка + - тюрки + - эго + relme: + https://dnimruoynepo.blogspot.com/: true + https://infineconomics.blogspot.com/: true + https://tagezi.blogspot.com/: true + https://www.blogger.com/profile/06477487516753870290: true + last_post_title: 200 дней + last_post_description: "" + last_post_date: "2020-04-04T02:24:03-07:00" + last_post_link: https://tagezi.blogspot.com/2020/04/200-41.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 1c18f506fcb18dc22f18a475ffc9e99e + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a4e0ef5d86b73a69ab79e780b7f0c687.md b/content/discover/feed-a4e0ef5d86b73a69ab79e780b7f0c687.md deleted file mode 100644 index 6fd324430..000000000 --- a/content/discover/feed-a4e0ef5d86b73a69ab79e780b7f0c687.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: To be continued.... -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://richard-spiers.blogspot.com/feeds/posts/default?alt=rss - feedtype: rss - feedid: a4e0ef5d86b73a69ab79e780b7f0c687 - websites: - https://richard-spiers.blogspot.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Section One Roughly Done - last_post_description: So far so good - I have finished the signaling section for - the pymsn library. It is very rough, only handles one case etc, but it will allow - me to move onto the next section of work. It shouldn't be - last_post_date: "2008-07-04T11:04:00Z" - last_post_link: https://richard-spiers.blogspot.com/2008/07/section-one-roughly-done.html - last_post_categories: [] - last_post_guid: f94b6351ee33b24114c95889fc3d1da8 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a4fbf23e6f033cdef5360dd590b90e7d.md b/content/discover/feed-a4fbf23e6f033cdef5360dd590b90e7d.md deleted file mode 100644 index 86c57ad5e..000000000 --- a/content/discover/feed-a4fbf23e6f033cdef5360dd590b90e7d.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: foreverliketh.is -date: "1970-01-01T00:00:00Z" -description: Public posts from @accordionpolar@indieweb.social -params: - feedlink: https://indieweb.social/@accordionpolar.rss - feedtype: rss - feedid: a4fbf23e6f033cdef5360dd590b90e7d - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a50cce4b8d00a7813eafc7d5534a2ca0.md b/content/discover/feed-a50cce4b8d00a7813eafc7d5534a2ca0.md deleted file mode 100644 index 97b8dbabe..000000000 --- a/content/discover/feed-a50cce4b8d00a7813eafc7d5534a2ca0.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Danny van Kooten -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://dannyvankooten.com/feed.xml - feedtype: rss - feedid: a50cce4b8d00a7813eafc7d5534a2ca0 - websites: - https://dannyvankooten.com/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: C++ development setup in 2024 - last_post_description: |- - I've been doing a lot of C and C++ programming lately. After trying - a myriad of editors and related tooling, it seems I've finally settled on a - satisfactory set-up that is both performant, reliable - last_post_date: "2024-04-06T00:00:00Z" - last_post_link: https://www.dannyvankooten.com/blog/2024/cpp-development-setup/ - last_post_categories: [] - last_post_guid: 768e352ca13b849bc9cbb3c75ee33a0a - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 4 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a5356e8332e8a750a8acf84e590e25b6.md b/content/discover/feed-a5356e8332e8a750a8acf84e590e25b6.md new file mode 100644 index 000000000..9fe56d42e --- /dev/null +++ b/content/discover/feed-a5356e8332e8a750a8acf84e590e25b6.md @@ -0,0 +1,50 @@ +--- +title: What is Jan Holešovský - Kendy doing +date: "1970-01-01T00:00:00Z" +description: LibreOffice & related hacking... +params: + feedlink: https://holesovsky.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: a5356e8332e8a750a8acf84e590e25b6 + websites: + https://holesovsky.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Android + - LibreOffice + - News + - OpenOffice.org + relme: + https://holesovsky.blogspot.com/: true + https://www.blogger.com/profile/07431782463042875548: true + last_post_title: New features in the Online since the last conference + last_post_description: |- + On Wednesday, I had a presentation about the latest features implemented for LibreOffice / Collabora Online in the past year at the annual LibreOffice Conference: + + + + Please enjoy, there's a lot of + last_post_date: "2018-09-28T14:25:00Z" + last_post_link: https://holesovsky.blogspot.com/2018/09/new-features-in-online-since-last.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 4ca556e8dc6cb18e5d78a9a67c63c9d0 + score_criteria: + cats: 4 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a539b97c0bbdafb12ff9137db447b8a5.md b/content/discover/feed-a539b97c0bbdafb12ff9137db447b8a5.md new file mode 100644 index 000000000..6f5b00e73 --- /dev/null +++ b/content/discover/feed-a539b97c0bbdafb12ff9137db447b8a5.md @@ -0,0 +1,73 @@ +--- +title: Fabián Rodríguez, « MagicFab » +date: "1970-01-01T00:00:00Z" +description: Consultant et conférencier en logiciels libres et GNU/Linux basé à Montréal, + Québec (Canada) +params: + feedlink: https://magicfab.ca/feed/ + feedtype: rss + feedid: a539b97c0bbdafb12ff9137db447b8a5 + websites: + https://magicfab.ca/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Android + - Apple + - General + - Google + - IPhone + - Review + - Sécurité + - canada + - eSIM + - mobile + - rogerssucks + - téléphonie + - xiaomi + relme: + https://legoutdulibre.com/: true + https://magicfab.ca/: true + https://mastodon.social/@magicfab: true + https://mastodon.social/@magicfab/tagged/images: true + last_post_title: Qu’est-ce qu’une eSIM et pourquoi est-il avantageux de vous en + procurer ? + last_post_description: La technologie eSIM (pour embedded SIM en anglais), également + connue sous le nom de SIM intégrée, est une technologie relativement nouvelle + qui a été introduite pour la première fois en 2016. + last_post_date: "2023-03-08T01:28:50Z" + last_post_link: https://magicfab.ca/2023/03/quest-ce-quune-esim-et-pourquoi-est-il-avantageux-de-vous-en-procurer/ + last_post_categories: + - Android + - Apple + - General + - Google + - IPhone + - Review + - Sécurité + - canada + - eSIM + - mobile + - rogerssucks + - téléphonie + - xiaomi + last_post_language: "" + last_post_guid: 57ea669f32edb255474277cd0817ff4c + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: fr +--- diff --git a/content/discover/feed-a54f85c09a66400c1c58e2c97025ceec.md b/content/discover/feed-a54f85c09a66400c1c58e2c97025ceec.md new file mode 100644 index 000000000..bed03a32e --- /dev/null +++ b/content/discover/feed-a54f85c09a66400c1c58e2c97025ceec.md @@ -0,0 +1,139 @@ +--- +title: Ddos is working Database +date: "1970-01-01T00:00:00Z" +description: Don't be fool please visit all site. +params: + feedlink: https://theinspiredquilter.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: a54f85c09a66400c1c58e2c97025ceec + websites: + https://theinspiredquilter.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Ddos is on it Best + last_post_description: Technomantic is circulated disavowal of administration assaults + is turning into a typical danger on the web. They've gotten simpler to dispatch, + harder to stop. Energized by massive botnets, DDoS + last_post_date: "2021-04-07T19:02:00Z" + last_post_link: https://theinspiredquilter.blogspot.com/2021/04/ddos-is-on-it-best.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 2e64cd544a9cc13c935b93fecc5be31e + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a559edf54327dd71c3ed0ede77bd2de2.md b/content/discover/feed-a559edf54327dd71c3ed0ede77bd2de2.md new file mode 100644 index 000000000..7b54ead94 --- /dev/null +++ b/content/discover/feed-a559edf54327dd71c3ed0ede77bd2de2.md @@ -0,0 +1,139 @@ +--- +title: Ddosing Vs Internet Report +date: "2024-03-04T20:09:44-08:00" +description: ddosing is having many caring things. +params: + feedlink: https://thedigiezone.blogspot.com/feeds/posts/default + feedtype: atom + feedid: a559edf54327dd71c3ed0ede77bd2de2 + websites: + https://thedigiezone.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Ddosing is care + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Ddosing is About Care + last_post_description: "" + last_post_date: "2021-04-22T11:46:12-07:00" + last_post_link: https://thedigiezone.blogspot.com/2021/04/ddosing-is-about-care.html + last_post_categories: + - Ddosing is care + last_post_language: "" + last_post_guid: 3c45eb82acabf970c48fa46db266175c + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a56b84e5638b0d5f0af961fb60029a98.md b/content/discover/feed-a56b84e5638b0d5f0af961fb60029a98.md deleted file mode 100644 index 2f812032d..000000000 --- a/content/discover/feed-a56b84e5638b0d5f0af961fb60029a98.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Radyology -date: "2023-01-13T13:31:17-06:00" -description: Technology, Programming, and General Makery -params: - feedlink: https://www.benrady.com/atom.xml - feedtype: atom - feedid: a56b84e5638b0d5f0af961fb60029a98 - websites: - https://www.benrady.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://twitter.com/benrady: false - last_post_title: Testing with FIRE - last_post_description: Updated April 25th, 2023 For years now, I've held the belief - that effective automated test suites have four essential attributes. These attributes - have been referenced by other authors, and were the - last_post_date: "2023-04-25T09:49:12-05:00" - last_post_link: https://www.benrady.com/2016/11/testing-with-fire.html - last_post_categories: [] - last_post_guid: 73a67bd83fdcdb6136147a726e0c76d9 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a56fe54dd7a4f0708173bb05c4e23392.md b/content/discover/feed-a56fe54dd7a4f0708173bb05c4e23392.md deleted file mode 100644 index 12020098e..000000000 --- a/content/discover/feed-a56fe54dd7a4f0708173bb05c4e23392.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for What's new -date: "1970-01-01T00:00:00Z" -description: Updates on my research and expository papers, discussion of open problems, - and other maths-related topics. By Terence Tao -params: - feedlink: https://terrytao.wordpress.com/comments/feed/ - feedtype: rss - feedid: a56fe54dd7a4f0708173bb05c4e23392 - websites: - https://terrytao.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: 'Comment on Work hard by Work Hard ent101 on June 29, 2024 at 11:27 - Hacker News: Front Page - Bharat Courses' - last_post_description: '[…] Article URL: https://terrytao.wordpress.com/career-advice/work-hard/ - […]' - last_post_date: "2024-06-29T21:37:24Z" - last_post_link: https://terrytao.wordpress.com/career-advice/work-hard/comment-page-2/#comment-685247 - last_post_categories: [] - last_post_guid: 7340cef980d85364e9daa1dba1ce12bc - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a5716a11e8f154406b7b5370e0ba7313.md b/content/discover/feed-a5716a11e8f154406b7b5370e0ba7313.md new file mode 100644 index 000000000..12fa58b2d --- /dev/null +++ b/content/discover/feed-a5716a11e8f154406b7b5370e0ba7313.md @@ -0,0 +1,64 @@ +--- +title: Python, Zope and Plone Experiments +date: "1970-01-01T00:00:00Z" +description: Blog para postar exemplos de código e estudos utilizando a linguagem + de programação Python, o framework Zope e o CMS Plone. +params: + feedlink: https://python-blog.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: a5716a11e8f154406b7b5370e0ba7313 + websites: + https://python-blog.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Associação Python Brasil + - Ciência + - Colaboração + - Engenharia de Software + - Eventos + - Five + - Grupo de Usuários + - Linguagem de Programação + - Lisp + - Manipulação de arquivos + - Plone + - Python + - RelStorage + - Scheme + - Social Network Service + - Threads + - ZODB + - Zope + - buildout + - pythonbrasil + - twitter + relme: + https://python-blog.blogspot.com/: true + last_post_title: '18 de junho agora é #dornelesday' + last_post_description: 'Hoje é um dia muito especial, pois hoje é dia de homenagear + uma grande pessoa: Dorneles Treméa. Pois ele, com seus gestos simples, paciência, + perseverança e generosidade, se tornou um exemplo' + last_post_date: "2011-06-19T00:37:00Z" + last_post_link: https://python-blog.blogspot.com/2011/06/18-de-junho-agora-e-dornelesday.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 4bd1bdef51ebf8880b4e4660c8af69be + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a58404e6859a4fd5c1d4a962c5a5436a.md b/content/discover/feed-a58404e6859a4fd5c1d4a962c5a5436a.md new file mode 100644 index 000000000..41c1d7b3d --- /dev/null +++ b/content/discover/feed-a58404e6859a4fd5c1d4a962c5a5436a.md @@ -0,0 +1,61 @@ +--- +title: Muttering to myself +date: "1970-01-01T00:00:00Z" +description: Obscure thoughts on the state of user assistance in the technological + world +params: + feedlink: https://cpp-muttering.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: a58404e6859a4fd5c1d4a962c5a5436a + websites: + https://cpp-muttering.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - CDT + - DITA + - EclipseCon + - Indigo + - Plugin Spy + - TOC + - beta + - bio + - bugzilla + - cheat sheets + - docs + - documentation + - eclipse + - help + - index + - intro + relme: + https://cpp-muttering.blogspot.com/: true + https://hyperspatialgamingreality.blogspot.com/: true + https://www.blogger.com/profile/16367423341141776840: true + last_post_title: Help Us Help You with CDT + last_post_description: "" + last_post_date: "2010-07-07T18:13:00Z" + last_post_link: https://cpp-muttering.blogspot.com/2010/07/help-us-help-you-with-cdt.html + last_post_categories: + - CDT + - Indigo + last_post_language: "" + last_post_guid: 064115e0c5071d9973a0eca377aff2a9 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a584360ce5ddb2a72253f73adfade2bd.md b/content/discover/feed-a584360ce5ddb2a72253f73adfade2bd.md new file mode 100644 index 000000000..b4d655fc2 --- /dev/null +++ b/content/discover/feed-a584360ce5ddb2a72253f73adfade2bd.md @@ -0,0 +1,53 @@ +--- +title: Baty.net +date: "1970-01-01T00:00:00Z" +description: Latest posts from Jack Baty +params: + feedlink: https://baty.net/feed + feedtype: rss + feedid: a584360ce5ddb2a72253f73adfade2bd + websites: + https://baty.net/: true + https://baty.net/feeds: false + https://baty.net/posts: false + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: [] + relme: + https://baty.net/: true + https://baty.net/feeds: true + https://daily.baty.net/: true + https://glass.photo/jbaty: true + https://jackbaty.com/: true + https://mastodon.social/@batybot: true + https://social.lol/@jbaty: true + last_post_title: Film vs Digital and value over time + last_post_description: Something I've noticed about my photographs is that digital + photos start out looking all "Wow! so punchy and clean!" but the excitement fades + over time. Film photographs start out "Meh, it's soft and + last_post_date: "2024-07-07T18:10:00Z" + last_post_link: https://baty.net/journal/2024/07/07/film-vs-digital-and-value-over-time + last_post_categories: [] + last_post_language: "" + last_post_guid: ca7ea83e4f77a5f37a8c6639e0ed9514 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-a5a6d1f211fd042594c3c83309e339f8.md b/content/discover/feed-a5a6d1f211fd042594c3c83309e339f8.md deleted file mode 100644 index b9f865631..000000000 --- a/content/discover/feed-a5a6d1f211fd042594c3c83309e339f8.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: تعليقات لموقع يونس بن عمارة -date: "1970-01-01T00:00:00Z" -description: 'يونس بن عمارة: كاتب ومُترجم وصانع محتوى من الجزائر، مؤسس المجتمع الرقميّ - رديف' -params: - feedlink: https://youdo.blog/comments/feed/ - feedtype: rss - feedid: a5a6d1f211fd042594c3c83309e339f8 - websites: - https://youdo.blog/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: تعليق على أشهرُ الألعاب العالمية وإهانة المقدّسات الإسلامية دون - الحاجة لذلك بواسطة يونس بن عمارة - last_post_description: |- - ردًا على Ahmad. - - نحتاج إلى صحافة - last_post_date: "2024-06-04T11:07:58Z" - last_post_link: https://youdo.blog/2024/06/04/how-mainstream-video-games-are-unethically-targeting-a-specific-religion/comment-page-1/#comment-45130 - last_post_categories: [] - last_post_guid: 80450ec3aa6d7ef85ac99f4ac0b2e34c - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a5b34c01ab1d15a2e852099453131c8e.md b/content/discover/feed-a5b34c01ab1d15a2e852099453131c8e.md new file mode 100644 index 000000000..b2105117e --- /dev/null +++ b/content/discover/feed-a5b34c01ab1d15a2e852099453131c8e.md @@ -0,0 +1,95 @@ +--- +title: POKE 1,52 +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://poke152.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: a5b34c01ab1d15a2e852099453131c8e + websites: + https://poke152.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 1TB + - 31mb + - 32mb + - 33mb + - createuser + - crypto + - daoc + - debian + - dell + - electronics + - emulator + - encryption + - entropy + - f10 + - f12 + - fedora + - flood + - gstreamer + - gw2 + - hang + - homeplug + - host protected area + - hpa + - initrd + - kerberos + - nash + - opengl + - openldap + - openwrt + - postgres + - preupgrade + - public folders + - pulseaudio + - random + - rce + - rsyslogd + - sasl + - security + - shrink + - sound + - subtitles + - systray + - totem + - ubuntu + - virtualgl + - vlan + - vnc + - wine + - wireless + - zcs + - zimbra + relme: + https://poke152.blogspot.com/: true + https://www.blogger.com/profile/00138914995463391512: true + last_post_title: It's no IDA, yet? + last_post_description: Since I didn't have an ST62 disassembler, I started writing + something myself. Took the opportunity to get familiar with all the new C++11 + constructs. Don't know yet if I'll take this prototype much + last_post_date: "2013-08-13T17:00:00Z" + last_post_link: https://poke152.blogspot.com/2013/08/its-no-ida-yet.html + last_post_categories: + - rce + last_post_language: "" + last_post_guid: 50a06aecdc91b1c4fd929e7218fc22fe + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a5b6de9019e5df42887fd58b8c9e1dd7.md b/content/discover/feed-a5b6de9019e5df42887fd58b8c9e1dd7.md new file mode 100644 index 000000000..353b526bf --- /dev/null +++ b/content/discover/feed-a5b6de9019e5df42887fd58b8c9e1dd7.md @@ -0,0 +1,142 @@ +--- +title: Atm Card Vs Bitcoin +date: "1970-01-01T00:00:00Z" +description: Debit Card User know Who Is The Best +params: + feedlink: https://saibamais-tecnologia.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: a5b6de9019e5df42887fd58b8c9e1dd7 + websites: + https://saibamais-tecnologia.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - debit card is amazing + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Bit coin Vs Debit Card + last_post_description: |- + The demonstration is planned to produce results in July + 2011, albeit many affected gatherings are campaigning for a one to long-term + expansion to research and write about the impacts of a, + last_post_date: "2021-04-28T17:51:00Z" + last_post_link: https://saibamais-tecnologia.blogspot.com/2021/04/bit-coin-vs-debit-card.html + last_post_categories: + - debit card is amazing + last_post_language: "" + last_post_guid: 4be9b87a0399c2a50cfd2289494b6df7 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a6211e788fc48548cbe78ed6d6fdef37.md b/content/discover/feed-a6211e788fc48548cbe78ed6d6fdef37.md deleted file mode 100644 index 8916faff8..000000000 --- a/content/discover/feed-a6211e788fc48548cbe78ed6d6fdef37.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Solene'% -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://dataswamp.org/~solene/rss-gopher.xml - feedtype: rss - feedid: a6211e788fc48548cbe78ed6d6fdef37 - websites: - https://dataswamp.org/~solene/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://bsd.network/@solene: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a6224ba01ce59d057a07bc4e77d231a0.md b/content/discover/feed-a6224ba01ce59d057a07bc4e77d231a0.md deleted file mode 100644 index 1e4c5d810..000000000 --- a/content/discover/feed-a6224ba01ce59d057a07bc4e77d231a0.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: joeross.me -date: "1970-01-01T00:00:00Z" -description: Public posts from @joeross@moth.social -params: - feedlink: https://moth.social/@joeross.rss - feedtype: rss - feedid: a6224ba01ce59d057a07bc4e77d231a0 - websites: - https://moth.social/@joeross: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://joeross.lol/: true - https://joeross.me/: false - https://mastodon.social/@joeross: false - https://www.threads.net/@joeross.me: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a64193f25f43565d087b95ffbe8dfffc.md b/content/discover/feed-a64193f25f43565d087b95ffbe8dfffc.md index 639ce965f..01db63817 100644 --- a/content/discover/feed-a64193f25f43565d087b95ffbe8dfffc.md +++ b/content/discover/feed-a64193f25f43565d087b95ffbe8dfffc.md @@ -13,7 +13,7 @@ params: recommender: [] categories: [] relme: - https://www.blogger.com/profile/03386351362681039664: true + https://airlied.blogspot.com/: true last_post_title: 'anv: vulkan av1 decode status' last_post_description: Vulkan Video AV1 decode has been released, and I had some partly working support on Intel ANV driver previously, but I let it lapse.The @@ -21,17 +21,22 @@ params: last_post_date: "2024-02-02T06:41:00Z" last_post_link: https://airlied.blogspot.com/2024/02/anv-vulkan-av1-decode-status.html last_post_categories: [] + last_post_language: "" last_post_guid: ff6db60155b0cfad4c826fbead4e0f8a score_criteria: cats: 0 description: 0 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 7 + score: 10 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-a66d25b01239580ed589d5904fa9bfcc.md b/content/discover/feed-a66d25b01239580ed589d5904fa9bfcc.md deleted file mode 100644 index 97f3b682a..000000000 --- a/content/discover/feed-a66d25b01239580ed589d5904fa9bfcc.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: rem -date: "1970-01-01T00:00:00Z" -description: Public posts from @rem@front-end.social -params: - feedlink: https://front-end.social/@rem.rss - feedtype: rss - feedid: a66d25b01239580ed589d5904fa9bfcc - websites: - https://front-end.social/@rem: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://ffconf.org/: false - https://github.com/remy: true - https://remysharp.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a6712a45445796e74ae0b78519711398.md b/content/discover/feed-a6712a45445796e74ae0b78519711398.md new file mode 100644 index 000000000..3be99b18d --- /dev/null +++ b/content/discover/feed-a6712a45445796e74ae0b78519711398.md @@ -0,0 +1,48 @@ +--- +title: TingPing’s blog +date: "2024-05-23T15:19:56-04:00" +description: Development blog of TingPing +params: + feedlink: https://blog.tingping.se/feed.xml + feedtype: atom + feedid: a6712a45445796e74ae0b78519711398 + websites: + https://blog.tingping.se/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - igalia + - webkit + relme: + https://blog.tingping.se/: true + https://github.com/TingPing: true + https://gitlab.gnome.org/pgriffis: true + last_post_title: Introducing the WebKit Container SDK + last_post_description: Developing WebKitGTK and WPE has always had challenges such + as the amount of dependencies or it’s fairly complex C++ codebase which not all + compiler versions handle well. To help with this we’ve + last_post_date: "2024-05-23T00:00:00-04:00" + last_post_link: https://blog.tingping.se/2024/05/23/Introducing-WebKit-Container-SDK.html + last_post_categories: + - igalia + - webkit + last_post_language: "" + last_post_guid: f143b82b3d146adb0a880e68021f17ed + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a674b6bd4896f9cd6d7379a373f15de1.md b/content/discover/feed-a674b6bd4896f9cd6d7379a373f15de1.md deleted file mode 100644 index ca98e98b4..000000000 --- a/content/discover/feed-a674b6bd4896f9cd6d7379a373f15de1.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: '@lenesaile.com - Lene' -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://bsky.app/profile/did:plc:aofepw2qldkjjrx43rclhprj/rss - feedtype: rss - feedid: a674b6bd4896f9cd6d7379a373f15de1 - websites: - https://bsky.app/profile/lenesaile.com: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a6791147697640c64f3277a6cdd89c1e.md b/content/discover/feed-a6791147697640c64f3277a6cdd89c1e.md new file mode 100644 index 000000000..50c609068 --- /dev/null +++ b/content/discover/feed-a6791147697640c64f3277a6cdd89c1e.md @@ -0,0 +1,40 @@ +--- +title: wjt +date: "2024-07-09T03:23:52Z" +description: Remembering how to write about something other than computer +params: + feedlink: https://write.wjt.me.uk/feed/ + feedtype: rss + feedid: a6791147697640c64f3277a6cdd89c1e + websites: + https://write.wjt.me.uk/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://write.wjt.me.uk/: true + last_post_title: Roberts Radio Pillow Talk speaker + last_post_description: "" + last_post_date: "2023-10-16T14:52:15Z" + last_post_link: https://write.wjt.me.uk/roberts-radio-pillow-talk-speaker?pk_campaign=rss-feed + last_post_categories: [] + last_post_language: "" + last_post_guid: fdc54966cb723b8f95d61cc69aa5ebd2 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a6876d31dcc99ddb1326e04b51a4c963.md b/content/discover/feed-a6876d31dcc99ddb1326e04b51a4c963.md new file mode 100644 index 000000000..c2845ccb9 --- /dev/null +++ b/content/discover/feed-a6876d31dcc99ddb1326e04b51a4c963.md @@ -0,0 +1,42 @@ +--- +title: Status updates from Jonathan Hartley +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://bookwyrm.social/user/tartley/rss + feedtype: rss + feedid: a6876d31dcc99ddb1326e04b51a4c963 + websites: + https://bookwyrm.social/user/tartley: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://bookwyrm.social/user/tartley: true + last_post_title: 'Jonathan Hartley finished reading Miracleman Book 1: A Dream of + Flying by Alan Moore' + last_post_description: 'Jonathan Hartley finished reading Miracleman Book 1: A Dream + of Flying' + last_post_date: "2023-06-06T02:05:29Z" + last_post_link: http://bookwyrm.social/user/tartley/generatednote/1683979 + last_post_categories: [] + last_post_language: "" + last_post_guid: 3fff685146029238f5b34e0beca7c0bd + score_criteria: + cats: 0 + description: 0 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 11 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-a68d3c5272180eabaf9512324ba5c57c.md b/content/discover/feed-a68d3c5272180eabaf9512324ba5c57c.md deleted file mode 100644 index 752cd38a7..000000000 --- a/content/discover/feed-a68d3c5272180eabaf9512324ba5c57c.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Tim Nash -date: "1970-01-01T00:00:00Z" -description: Public posts from @tnash@fosstodon.org -params: - feedlink: https://fosstodon.org/@tnash.rss - feedtype: rss - feedid: a68d3c5272180eabaf9512324ba5c57c - websites: - https://fosstodon.org/@tnash: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://timnash.co.uk/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a6907e3653b89ec8e40b3f7821217dec.md b/content/discover/feed-a6907e3653b89ec8e40b3f7821217dec.md deleted file mode 100644 index 5c4579b6a..000000000 --- a/content/discover/feed-a6907e3653b89ec8e40b3f7821217dec.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: ETOOBUSY -date: "2024-04-28T14:57:26+02:00" -description: 🚀 minimal blogging for the impatient -params: - feedlink: https://github.polettix.it/ETOOBUSY/feed.xml - feedtype: rss - feedid: a6907e3653b89ec8e40b3f7821217dec - websites: - https://github.polettix.it/ETOOBUSY/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - the weekly challenge - - Perl - - RakuLang - relme: {} - last_post_title: PWC239 - Consistent Strings - last_post_description: "TL;DR\n\n\n On with TASK #2 from The Weekly Challenge #239.\nEnjoy!\n\n\nThe - challenge\n\n\n You are given an array of strings and allowed string having distinct\ncharacters.\n\n - \ \n A string is consistent if" - last_post_date: "2023-10-23T06:00:00+02:00" - last_post_link: https://github.polettix.it/ETOOBUSY/2023/10/23/consistent-strings/ - last_post_categories: - - the weekly challenge - - Perl - - RakuLang - last_post_guid: cc73f50aa5d30f8bf46c13bead476e35 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a699df31a4ed5750806f19501ba4f558.md b/content/discover/feed-a699df31a4ed5750806f19501ba4f558.md deleted file mode 100644 index c7c7a5ee2..000000000 --- a/content/discover/feed-a699df31a4ed5750806f19501ba4f558.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: libcrush – Loïc Dachary -date: "1970-01-01T00:00:00Z" -description: Free Software developer journey -params: - feedlink: https://blog.dachary.org/category/libcrush/feed/ - feedtype: rss - feedid: a699df31a4ed5750806f19501ba4f558 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - ceph - - crush - - libcrush - relme: {} - last_post_title: An algorithm to fix uneven CRUSH distributions in Ceph - last_post_description: The current CRUSH implementation in Ceph does not always - provide an even distribution. The most common cause of unevenness is when only - a few thousands PGs, or less, are mapped. This is not enough - last_post_date: "2017-05-12T11:08:49Z" - last_post_link: https://blog.dachary.org/2017/05/12/an-algorithm-to-fix-uneven-crush-distributions-in-ceph/ - last_post_categories: - - ceph - - crush - - libcrush - last_post_guid: f9ec4d11ee67c398813ad3c7309028d0 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a6b1538bbfa46e9aceca3dd25d8f14a6.md b/content/discover/feed-a6b1538bbfa46e9aceca3dd25d8f14a6.md new file mode 100644 index 000000000..485c932d3 --- /dev/null +++ b/content/discover/feed-a6b1538bbfa46e9aceca3dd25d8f14a6.md @@ -0,0 +1,63 @@ +--- +title: About Thomas Leigh +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://aboutthomasleigh.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: a6b1538bbfa46e9aceca3dd25d8f14a6 + websites: + https://aboutthomasleigh.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - IT + - język angielski + - język polski + - lingwistyka + - mobile + - podcasting + - poezja + - publicystyka + - rozwój osobisty + relme: + https://aboutthomasleigh.blogspot.com/: true + https://handynewsreader.blogspot.com/: true + https://jaktamjaponski.blogspot.com/: true + https://moliumpodcast.blogspot.com/: true + https://smartthemesfor.blogspot.com/: true + https://thomascafepodcast.blogspot.com/: true + https://thomasleighthemes.blogspot.com/: true + https://thomasleighuniverse.blogspot.com/: true + https://www.blogger.com/profile/01268074830941697525: true + https://zrodlokreacji.blogspot.com/: true + last_post_title: Ciekawy Android z pomysłem - konspekt artykułów + last_post_description: 'Zbiór wnikliwych artykułów nt. najbardziej rozbudowanej + wizji Androida na rynku: MIUI autorstwa Xiaomi.Dzięki temu opracowaniu:poznasz + najbardziej drobiazgowe funkcje MIUI, o których' + last_post_date: "2017-10-26T17:51:00Z" + last_post_link: https://aboutthomasleigh.blogspot.com/2017/10/ciekawy-android-z-pomysem-konspekt.html + last_post_categories: + - IT + - mobile + - publicystyka + last_post_language: "" + last_post_guid: 595e15cdd310c4fcf83f7aaad5a669bc + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a6b23d37fbeb698d2e832c6e295e137f.md b/content/discover/feed-a6b23d37fbeb698d2e832c6e295e137f.md deleted file mode 100644 index ad15031f6..000000000 --- a/content/discover/feed-a6b23d37fbeb698d2e832c6e295e137f.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: '@adactio.com - Jeremy Keith' -date: "1970-01-01T00:00:00Z" -description: |- - Mediocre middle-aged white man from Ireland living in Brighton, England working with Clearleft. - - I play traditional Irish music on mandolin and I play slide bouzouki in the band Salter Cane. - - https -params: - feedlink: https://bsky.app/profile/did:plc:r4p4qrbwfv7fbvpem5hjdmvl/rss - feedtype: rss - feedid: a6b23d37fbeb698d2e832c6e295e137f - websites: - https://bsky.app/profile/adactio.com: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a6ce0a7f772a4a79e6590681d6439664.md b/content/discover/feed-a6ce0a7f772a4a79e6590681d6439664.md deleted file mode 100644 index dd6a75697..000000000 --- a/content/discover/feed-a6ce0a7f772a4a79e6590681d6439664.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Nottingham Hackspace -date: "1970-01-01T00:00:00Z" -description: Public posts from @nottinghack@hachyderm.io -params: - feedlink: https://hachyderm.io/@nottinghack.rss - feedtype: rss - feedid: a6ce0a7f772a4a79e6590681d6439664 - websites: - https://hachyderm.io/@NottingHack: false - https://hachyderm.io/@nottinghack: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/approved/: false - https://nottinghack.org.uk/: true - https://www.eventbrite.co.uk/e/nottingham-hackspace-tour-tickets-421624599527: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a6dccba11a81687691569139d679a1e4.md b/content/discover/feed-a6dccba11a81687691569139d679a1e4.md deleted file mode 100644 index cf9c5221d..000000000 --- a/content/discover/feed-a6dccba11a81687691569139d679a1e4.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Robb Knight -date: "1970-01-01T00:00:00Z" -description: Public posts from @robb@social.lol -params: - feedlink: https://social.lol/@robb.rss - feedtype: rss - feedid: a6dccba11a81687691569139d679a1e4 - websites: - https://social.lol/@robb: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://echofeed.app/: true - https://rknight.me/: true - https://ruminatepodcast.com/: true - https://wegot.family/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a6e844de5d25a1e3e12f1cef617c14d2.md b/content/discover/feed-a6e844de5d25a1e3e12f1cef617c14d2.md index e8ad50242..1bb0b5882 100644 --- a/content/discover/feed-a6e844de5d25a1e3e12f1cef617c14d2.md +++ b/content/discover/feed-a6e844de5d25a1e3e12f1cef617c14d2.md @@ -13,36 +13,45 @@ params: - http://scripting.com/rss.xml - http://scripting.com/rssNightly.xml categories: - - Commentary - - Newsletters - - Sally Buzbee - - The Poynter Report - - The Washington Post + - AI + - Artificial Intelligence + - Ethics + - Ethics & Trust + - Hacks/Hackers + - Reporting & Editing + - digital tools relme: {} - last_post_title: Inside Sally Buzbee’s departure and what’s next for The Washington - Post - last_post_description: Aftershocks from the earthquake that hit The Washington Post - newsroom Sunday night were still being felt on Monday. Sally Buzbee’s abrupt resignation - as executive editor, as well as the plan - last_post_date: "2024-06-04T11:30:57Z" - last_post_link: https://www.poynter.org/commentary/2024/why-sally-buzbees-resign-what-next-washington-post/ + last_post_title: 'The assignment: Build AI tools for journalists – and make ethics + job one' + last_post_description: |- + Imagine you had virtually unlimited money, time and resources to develop an AI technology that would be useful to journalists. What would you dream, pitch and design? And how would […] + The post The + last_post_date: "2024-07-08T13:00:26Z" + last_post_link: https://www.poynter.org/ethics-trust/2024/the-assignment-build-ai-tools-for-journalists-and-make-ethics-job-one/ last_post_categories: - - Commentary - - Newsletters - - Sally Buzbee - - The Poynter Report - - The Washington Post - last_post_guid: b69335d0413990b225fdd8ef76b1894b + - AI + - Artificial Intelligence + - Ethics + - Ethics & Trust + - Hacks/Hackers + - Reporting & Editing + - digital tools + last_post_language: "" + last_post_guid: 4e45082cf9d9f2ba2ce0217a8d0e8f34 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 14 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-a70037e61e8af3feed682022e54d78d5.md b/content/discover/feed-a70037e61e8af3feed682022e54d78d5.md index 71e90f590..df3177209 100644 --- a/content/discover/feed-a70037e61e8af3feed682022e54d78d5.md +++ b/content/discover/feed-a70037e61e8af3feed682022e54d78d5.md @@ -14,30 +14,39 @@ params: - https://colinwalker.blog/livefeed.xml categories: - Personal - - dogs - - pets + - ai + - chatbots + - published on gemini + - wikipedia relme: {} - last_post_title: '[Note] Proud Pup' - last_post_description: This young lady's so proud of herself! This morning, she - was up in time to catch in-the-act the burglar who visits us three times a week - and steals the empty glass bottles we leave on our doorstep. - last_post_date: "2024-05-24T09:24:54+01:00" - last_post_link: https://danq.me/2024/05/24/proud-pup/ + last_post_title: '[Note] Information Trajectory' + last_post_description: "Humans invented Wikipedia, which made accessing information + highly-convenient, at the risk of questions about its authenticity. \nThen humans + invented GPTs, which made accessing information even more" + last_post_date: "2024-07-01T19:44:19+01:00" + last_post_link: https://danq.me/2024/07/01/information-trajectory/ last_post_categories: - Personal - - dogs - - pets - last_post_guid: 4296114137205c23a742f99b6ffd8e47 + - ai + - chatbots + - published on gemini + - wikipedia + last_post_language: "" + last_post_guid: ec89842abf291cd9e513152c2a614c6b score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 14 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-a70d641c53f66418c7304340db729ac1.md b/content/discover/feed-a70d641c53f66418c7304340db729ac1.md new file mode 100644 index 000000000..c6160029f --- /dev/null +++ b/content/discover/feed-a70d641c53f66418c7304340db729ac1.md @@ -0,0 +1,41 @@ +--- +title: Comments for Just Jeremy +date: "1970-01-01T00:00:00Z" +description: just my thoughts +params: + feedlink: https://jeremy.bicha.net/comments/feed/ + feedtype: rss + feedid: a70d641c53f66418c7304340db729ac1 + websites: + https://jeremy.bicha.net/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://jeremy.bicha.net/: true + last_post_title: Comment on Ubuntu bug fix anniversary by OliverPropst + last_post_description: Nice blog post Jeremy I think your story and journey can + serve as an important inspiration for every inspiring open source developer:) + last_post_date: "2022-10-18T07:43:45Z" + last_post_link: https://jeremy.bicha.net/2022/10/17/ubuntu-bug-fix-anniversary/#comment-8967 + last_post_categories: [] + last_post_language: "" + last_post_guid: 9878085a51dc0532310d3543ec9f604c + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a733b48682012bcfe2396f93d6c979e4.md b/content/discover/feed-a733b48682012bcfe2396f93d6c979e4.md new file mode 100644 index 000000000..01dd1c7e5 --- /dev/null +++ b/content/discover/feed-a733b48682012bcfe2396f93d6c979e4.md @@ -0,0 +1,140 @@ +--- +title: Mahir Area Code +date: "1970-01-01T00:00:00Z" +description: Get all information about Area Code and keep visit to my blogspot. +params: + feedlink: https://elektronikcilerdunyasi.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: a733b48682012bcfe2396f93d6c979e4 + websites: + https://elektronikcilerdunyasi.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: New area Code + last_post_description: |- + Even though there are various varieties of + this con, 855 area code location the ongoing idea is that the con artist endeavors to make a need to + keep moving. When you get the telephone, the guest + last_post_date: "2022-01-13T10:23:00Z" + last_post_link: https://elektronikcilerdunyasi.blogspot.com/2022/01/new-area-code.html + last_post_categories: [] + last_post_language: "" + last_post_guid: bb0b105036f832cf5dd5afc80cb15960 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a73bb545a4706ef74e8eb073d49912c1.md b/content/discover/feed-a73bb545a4706ef74e8eb073d49912c1.md deleted file mode 100644 index 47d744786..000000000 --- a/content/discover/feed-a73bb545a4706ef74e8eb073d49912c1.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Edward Hervey -date: "1970-01-01T00:00:00Z" -description: GStreamer hacking, FOSS ramblings and sometimes cheese-related posts -params: - feedlink: https://blogs.gnome.org/edwardrv/feed/ - feedtype: rss - feedid: a73bb545a4706ef74e8eb073d49912c1 - websites: - https://blogs.gnome.org/edwardrv/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - General - relme: {} - last_post_title: Wow, 7 years…. - last_post_description: 'Originally post to Collabora co-workers: 7 years since starting - the Collabora Multimedia adventure,7 years of challenges, struggles, and proving - we could tackle them7 years of success, pushing FOSS' - last_post_date: "2014-08-29T05:09:22Z" - last_post_link: https://blogs.gnome.org/edwardrv/2014/08/29/wow-7-years/ - last_post_categories: - - General - last_post_guid: 70ed162e136fc25a205a455d989eca98 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a7743788c66be71cc4db6ec49994fd46.md b/content/discover/feed-a7743788c66be71cc4db6ec49994fd46.md deleted file mode 100644 index 9175180b6..000000000 --- a/content/discover/feed-a7743788c66be71cc4db6ec49994fd46.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Leon Goes Outside -date: "1970-01-01T00:00:00Z" -description: Software Developer and occasional writer of music. Based in Melbourne, - Australia. -params: - feedlink: https://lmika.day/podcast.xml - feedtype: rss - feedid: a7743788c66be71cc4db6ec49994fd46 - websites: - https://lmika.day/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Society & Culture - relme: - https://github.com/lmika: false - https://micro.blog/lmika: false - https://twitter.com/_leonmika: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 1 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 10 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-a77ee0127fcc74aac4333d6c59007923.md b/content/discover/feed-a77ee0127fcc74aac4333d6c59007923.md deleted file mode 100644 index 4b6e28af6..000000000 --- a/content/discover/feed-a77ee0127fcc74aac4333d6c59007923.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: 'DEV Community: Phil Nash' -date: "1970-01-01T00:00:00Z" -description: The latest articles on DEV Community by Phil Nash (@philnash). -params: - feedlink: https://dev.to/feed/philnash - feedtype: rss - feedid: a77ee0127fcc74aac4333d6c59007923 - websites: - https://dev.to/philnash: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - javascript - relme: - https://github.com/philnash: false - https://philna.sh/: true - https://twitter.com/philnash: false - last_post_title: JavaScript is getting array grouping methods - last_post_description: Grouping items in an array is one of those things you've - probably done a load of times. Each time you would have written a grouping function - by hand or perhaps reached for lodash's groupBy function - last_post_date: "2023-09-14T00:00:00Z" - last_post_link: https://dev.to/philnash/javascript-is-getting-array-grouping-methods-170m - last_post_categories: - - javascript - last_post_guid: c874fceeac0aaf46c2312d5cf882a06b - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a78d145632fed24ae1c47a3e68f15b7f.md b/content/discover/feed-a78d145632fed24ae1c47a3e68f15b7f.md deleted file mode 100644 index 214771b0f..000000000 --- a/content/discover/feed-a78d145632fed24ae1c47a3e68f15b7f.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Eddie -date: "1970-01-01T00:00:00Z" -description: Public posts from @eddiedale@mastodon.social -params: - feedlink: https://mastodon.social/@eddiedale.rss - feedtype: rss - feedid: a78d145632fed24ae1c47a3e68f15b7f - websites: - https://mastodon.social/@eddiedale: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://www.eddiedale.com/: true - https://www.vasser.no/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a79a033a7cfed06bca315d1b550888f7.md b/content/discover/feed-a79a033a7cfed06bca315d1b550888f7.md new file mode 100644 index 000000000..e80661be9 --- /dev/null +++ b/content/discover/feed-a79a033a7cfed06bca315d1b550888f7.md @@ -0,0 +1,47 @@ +--- +title: Carl Chenet's Blog +date: "1970-01-01T00:00:00Z" +description: Free Software Indie Hacker +params: + feedlink: https://carlchenet.com/feed/ + feedtype: rss + feedid: a79a033a7cfed06bca315d1b550888f7 + websites: + https://carlchenet.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - cloud + relme: + https://carlchenet.com/: true + https://gitlab.com/chaica/: true + https://mastodon.social/@carlchenet: true + https://pixelfed.social/chaica: true + last_post_title: Réussir sa migration vers le cloud + last_post_description: Migrer vers le cloud n’a rien de trivial. Selon la taille + de votre infrastructure existante, la complexité de l’opération pourra devenir + rapidement ingérable si elle n’est pas menée + last_post_date: "2023-08-10T09:36:59Z" + last_post_link: https://carlchenet.com/reussir-sa-migration-vers-le-cloud/ + last_post_categories: + - cloud + last_post_language: "" + last_post_guid: 6a9ca176ed407bea07223ed4ae45602d + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: fr +--- diff --git a/content/discover/feed-a7ab97161275ccbd0fa87a9c85e10259.md b/content/discover/feed-a7ab97161275ccbd0fa87a9c85e10259.md deleted file mode 100644 index 2366638f6..000000000 --- a/content/discover/feed-a7ab97161275ccbd0fa87a9c85e10259.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Sentiers -date: "1970-01-01T00:00:00Z" -description: Your Futures Thinking Observatory. A carefully curated weekly newsletter - finding signals of change and imagining better futures in technology, society, and - culture. -params: - feedlink: https://sentiers.media/rss/ - feedtype: rss - feedid: a7ab97161275ccbd0fa87a9c85e10259 - websites: - https://sentiers.media/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Newsletter - relme: {} - last_post_title: Collective Intelligence, not AI. ⊗ Seven exponential policies ⊗ - Getting materials out of the lab - last_post_description: No.313 — Fantasy of technology ⊗ EU commission establishes - AI Office ⊗ A sociotechnical approach to AI policy ⊗ Giant offshore freshwater - aquifers - last_post_date: "2024-06-02T10:00:33Z" - last_post_link: https://sentiers.media/collective-intelligence-not-ai-seven-exponential-policies-getting-materials-out-of-the-lab-no-313/ - last_post_categories: - - Newsletter - last_post_guid: 9ab02e63bd5fad2682bd39f7615440e4 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a7b3fd5f11e15d6ba8d0fbaa8f78780c.md b/content/discover/feed-a7b3fd5f11e15d6ba8d0fbaa8f78780c.md deleted file mode 100644 index edbb5444d..000000000 --- a/content/discover/feed-a7b3fd5f11e15d6ba8d0fbaa8f78780c.md +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: FewBar.com - Make It Good -date: "2023-10-18T17:56:00Z" -description: This is the personal website of Clint Byrum. Any words on here are expressly - Clint's, and not those of whatever employer he has at the moment. Copyright (c) - Clint Byrum, 2020 -params: - feedlink: https://fewbar.com/feed.xml - feedtype: rss - feedid: a7b3fd5f11e15d6ba8d0fbaa8f78780c - websites: - https://fewbar.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - maintenance - - oncall - - ops - - incidents - - Technology - relme: {} - last_post_title: Clean Out Your Services' Rain Gutters - last_post_description: On New Year’s Eve 2022, while many were watching the ball - drop in NYC, or fireworks in Las Vegas, I found myself outside in the rain, holding - a screw gun and cursing like a sailor, watching my pool - last_post_date: "2023-01-02T00:00:00Z" - last_post_link: http://fewbar.com/2023/01/rain-gutters-in-a-drought/ - last_post_categories: - - maintenance - - oncall - - ops - - incidents - - Technology - last_post_guid: 6d84203192cdae5765f6fc3aefa2f193 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a7c1b1e12a1766623ba7c5949f3564aa.md b/content/discover/feed-a7c1b1e12a1766623ba7c5949f3564aa.md deleted file mode 100644 index 65ba275b4..000000000 --- a/content/discover/feed-a7c1b1e12a1766623ba7c5949f3564aa.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: 'Zach Leatherman :11ty:' -date: "1970-01-01T00:00:00Z" -description: Public posts from @zachleat@zachleat.com -params: - feedlink: https://fediverse.zachleat.com/@zachleat.rss - feedtype: rss - feedid: a7c1b1e12a1766623ba7c5949f3564aa - websites: - https://fediverse.zachleat.com/@zachleat: true - https://zachleat.com/@zachleat: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://fosstodon.org/@eleventy: false - https://www.11ty.dev/: false - https://www.zachleat.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a7c9aa0d4d45fd7f060e1fcf6c73b9de.md b/content/discover/feed-a7c9aa0d4d45fd7f060e1fcf6c73b9de.md new file mode 100644 index 000000000..a5e171e61 --- /dev/null +++ b/content/discover/feed-a7c9aa0d4d45fd7f060e1fcf6c73b9de.md @@ -0,0 +1,43 @@ +--- +title: Johan Tibell +date: "1970-01-01T00:00:00Z" +description: Haskell and other things that interest me +params: + feedlink: https://blog.johantibell.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: a7c9aa0d4d45fd7f060e1fcf6c73b9de + websites: + https://blog.johantibell.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://blog.johantibell.com/: true + https://www.blogger.com/profile/06875432206357419172: true + last_post_title: The design of the Strict Haskell pragma + last_post_description: |- + Since the Strict Haskell pragma just landed in HEAD, thanks to the hard work of my GSoC student Adam Sandberg Ericsson, I thought I'd share my thoughts behind the design. + First, is this making + last_post_date: "2015-11-16T10:47:00Z" + last_post_link: https://blog.johantibell.com/2015/11/the-design-of-strict-haskell-pragma.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 958090ca68d3dd021a0ae67079766786 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a7d3b5c4a0a85cbfcb2625fc605efce4.md b/content/discover/feed-a7d3b5c4a0a85cbfcb2625fc605efce4.md deleted file mode 100644 index 4645582c7..000000000 --- a/content/discover/feed-a7d3b5c4a0a85cbfcb2625fc605efce4.md +++ /dev/null @@ -1,57 +0,0 @@ ---- -title: Adrian Roselli -date: "1970-01-01T00:00:00Z" -description: Consultant, Writer, Speaker -params: - feedlink: https://adrianroselli.com/feed - feedtype: rss - feedid: a7d3b5c4a0a85cbfcb2625fc605efce4 - websites: - https://adrianroselli.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - - https://danq.me/comments/feed/ - - https://danq.me/feed/ - - https://danq.me/kind/article/feed/ - - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ - categories: - - RSS - - accessibility - - html - - standards - - usability - - WAI - relme: - https://toot.cafe/@aardrian: false - last_post_title: My Approach to Alt Text - last_post_description: This post is part of RSS Club, rewarding those who still - use RSS to read and/or share content. These posts are embargoed from my regular - post feed and the socials for an arbitrary period of time. You - last_post_date: "2024-05-28T22:25:06Z" - last_post_link: https://adrianroselli.com/2024/05/my-approach-to-alt-text.html - last_post_categories: - - RSS - - accessibility - - html - - standards - - usability - - WAI - last_post_guid: eb4e68f6b656b7da19491fbac95fe352 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 5 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 17 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a7dce016d57ca5936a6b49f0b68c1f70.md b/content/discover/feed-a7dce016d57ca5936a6b49f0b68c1f70.md new file mode 100644 index 000000000..ef1a928d3 --- /dev/null +++ b/content/discover/feed-a7dce016d57ca5936a6b49f0b68c1f70.md @@ -0,0 +1,50 @@ +--- +title: OfficeBuzz +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://cor4office.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: a7dce016d57ca5936a6b49f0b68c1f70 + websites: + https://cor4office.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - LibreOffice + - Marketing + - Presentations + - Writer + - styles + relme: + https://cor4office-nl.blogspot.com/: true + https://cor4office.blogspot.com/: true + https://ger-en-co.blogspot.com/: true + https://www.blogger.com/profile/13875945109269396639: true + last_post_title: Fruit basket + last_post_description: |- + Years and years ago I was visiting the region of Lyon - of course by bike. At one morning I entered a little village early and visited the local market to get me some nice fruit and vegs. + One of the + last_post_date: "2018-10-05T14:38:00Z" + last_post_link: https://cor4office.blogspot.com/2018/10/fruit-basket.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 208b1cef621a201102fcd21216f74ee9 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a7ee472b754401dcdabeb740528fc733.md b/content/discover/feed-a7ee472b754401dcdabeb740528fc733.md deleted file mode 100644 index fb1d4f2bb..000000000 --- a/content/discover/feed-a7ee472b754401dcdabeb740528fc733.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Tailscale -date: "1970-01-01T00:00:00Z" -description: Public posts from @tailscale@hachyderm.io -params: - feedlink: https://hachyderm.io/@tailscale.rss - feedtype: rss - feedid: a7ee472b754401dcdabeb740528fc733 - websites: - https://hachyderm.io/@tailscale: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/approved: true - https://tailscale.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a80ed8423e12246a2e0fb33f191b39ab.md b/content/discover/feed-a80ed8423e12246a2e0fb33f191b39ab.md new file mode 100644 index 000000000..45e0be56d --- /dev/null +++ b/content/discover/feed-a80ed8423e12246a2e0fb33f191b39ab.md @@ -0,0 +1,139 @@ +--- +title: Whiskey With Coca +date: "2024-03-05T04:23:42-08:00" +description: Whiskey and coca make taste awesome. +params: + feedlink: https://7250radioscanning.blogspot.com/feeds/posts/default + feedtype: atom + feedid: a80ed8423e12246a2e0fb33f191b39ab + websites: + https://7250radioscanning.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Coca and whiskey. + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Whiskey And Coca Taste Like + last_post_description: "" + last_post_date: "2021-05-03T11:55:48-07:00" + last_post_link: https://7250radioscanning.blogspot.com/2021/05/whiskey-and-coca-taste-like.html + last_post_categories: + - Coca and whiskey. + last_post_language: "" + last_post_guid: df15136aad83218d6749d6ab64356cea + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a828d199fa86a7a6e604d80f97c154be.md b/content/discover/feed-a828d199fa86a7a6e604d80f97c154be.md index adc5eaf8d..8c4826474 100644 --- a/content/discover/feed-a828d199fa86a7a6e604d80f97c154be.md +++ b/content/discover/feed-a828d199fa86a7a6e604d80f97c154be.md @@ -12,26 +12,32 @@ params: recommender: - https://frankmeeuwsen.com/feed.xml categories: - - Artificial Intelligence + - AR & VR relme: {} - last_post_title: Ways to think about AGI - last_post_description: "How do we think about a fundamentally unknown and unknowable - risk, when the \nexperts agree only that they have no idea?" - last_post_date: "2024-05-04T17:49:00Z" - last_post_link: https://www.ben-evans.com/benedictevans/2024/5/4/ways-to-think-about-agi + last_post_title: The VR winter continues + last_post_description: "Meta has spent at least $50bn on VR and AR so far, but we’re + still in the \nVR winter: the devices aren’t good enough or cheap enough and the + user base \nis flat. But no matter how good the devices" + last_post_date: "2024-07-08T13:57:48Z" + last_post_link: https://www.ben-evans.com/benedictevans/2024/7/8/the-vr-winter-continues last_post_categories: - - Artificial Intelligence - last_post_guid: 79139b6738ec207e91a8e2bd55192db2 + - AR & VR + last_post_language: "" + last_post_guid: a1c531135440daadd29590056e0d2a0f score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 9 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-a82ce470a3eb3ae56658196a52c77fca.md b/content/discover/feed-a82ce470a3eb3ae56658196a52c77fca.md deleted file mode 100644 index 43b5f84c0..000000000 --- a/content/discover/feed-a82ce470a3eb3ae56658196a52c77fca.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: 'Comments on: Home' -date: "1970-01-01T00:00:00Z" -description: Quantum computer scientist & alpinist. -params: - feedlink: https://peterrohde.org/home/feed/ - feedtype: rss - feedid: a82ce470a3eb3ae56658196a52c77fca - websites: - https://peterrohde.org/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a838476f6fffec6fb22523d7c37110a5.md b/content/discover/feed-a838476f6fffec6fb22523d7c37110a5.md deleted file mode 100644 index 299a27ae5..000000000 --- a/content/discover/feed-a838476f6fffec6fb22523d7c37110a5.md +++ /dev/null @@ -1,142 +0,0 @@ ---- -title: Davidlohr Bueso -date: "2024-03-28T19:30:44-07:00" -description: "" -params: - feedlink: http://feeds.feedburner.com/stgolabs/eMGj - feedtype: atom - feedid: a838476f6fffec6fb22523d7c37110a5 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - linux - - kernel - - linux kernel - - performance - - scalability - - performance-goodies - - operating systems - - development - - x86 - - kvm - - partition tables - - architecture - - block devices - - concurrency - - conference - - cpu - - efi - - gpt - - labels - - locks - - memory management - - plumbers - - virtualization - - C programming - - Intel - - LPC 2015 - - SMP - - TLB - - VMX - - algorithms - - assembler - - associateve - - attributes - - auditing - - barriers - - books - - caches - - caching - - compute express link - - computer science - - contention - - cpuid - - critique - - cxl - - data structures - - disks - - dos - - ept - - fdisk - - foss.in - - futex - - fuzzy testing - - google summer of code - - hardware - - hash tables - - india - - limits - - linux inode filename filesystem symlinks - - load acquire - - lpc - - lslk - - lslocks - - master boot record - - mbr - - memory - - memory model - - mmu - - numa - - paging - - partx - - prlimit - - process - - processor - - research - - resources - - security - - shadow pages - - store release - - stressing software - - sun - - synchronization - - system call - - systems - - tags - - target fuzzing - - tasks - - translations - - trinity - - ulimit - - unix - - userspace mutexes - - util-linux - - v4.14 - - v4.15 - - v4.16 - - v4.17 - - v4.18 - - v4.19 - - v4.20 - - v5.0 - - v5.1 - - v5.2 - relme: {} - last_post_title: 'LPC 2023: CXL Microconference' - last_post_description: "" - last_post_date: "2023-12-01T11:14:50-08:00" - last_post_link: http://blog.stgolabs.net/2023/12/lpc-2023-cxl-microconference.html - last_post_categories: - - compute express link - - cxl - - kernel - - linux - - lpc - - memory - - plumbers - last_post_guid: ef8488fbee9bb0c66fe281270ec8bc6f - score_criteria: - cats: 5 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a84d54c32c50a085044966d9de7c3c3b.md b/content/discover/feed-a84d54c32c50a085044966d9de7c3c3b.md deleted file mode 100644 index 7da6b082e..000000000 --- a/content/discover/feed-a84d54c32c50a085044966d9de7c3c3b.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Daring Fireball -date: "1970-01-01T00:00:00Z" -description: Public posts from @daringfireball@mastodon.social -params: - feedlink: https://mastodon.social/@daringfireball.rss - feedtype: rss - feedid: a84d54c32c50a085044966d9de7c3c3b - websites: - https://mastodon.social/@daringfireball: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://daringfireball.net/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a84e4ad47a844417ee3836aef2dc86cd.md b/content/discover/feed-a84e4ad47a844417ee3836aef2dc86cd.md deleted file mode 100644 index 1a43780e3..000000000 --- a/content/discover/feed-a84e4ad47a844417ee3836aef2dc86cd.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: The blackboard of Room 538 -date: "2009-08-03T03:59:45Z" -description: "" -params: - feedlink: https://room538ccpp.wordpress.com/feed/atom/ - feedtype: atom - feedid: a84e4ad47a844417ee3836aef2dc86cd - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - fun stuffs - relme: {} - last_post_title: A hilarious reply to referee. - last_post_description: For some totally irrelevant reason, I found an hilarious - reply to the referee’s report on Martin White’s web page. Fortunately, I haven’t - encountered such funny referees and editors. If you are - last_post_date: "2009-08-03T03:59:45Z" - last_post_link: https://room538ccpp.wordpress.com/2009/08/02/a-hilarious-reply-to-referee/ - last_post_categories: - - fun stuffs - last_post_guid: 7f4e1fe136a3fa04b94d302103906bbc - score_criteria: - cats: 0 - description: 0 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 4 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a85be9e4ac49c62e07f9197e36fcea9c.md b/content/discover/feed-a85be9e4ac49c62e07f9197e36fcea9c.md new file mode 100644 index 000000000..25bfdbf80 --- /dev/null +++ b/content/discover/feed-a85be9e4ac49c62e07f9197e36fcea9c.md @@ -0,0 +1,45 @@ +--- +title: Jotham Lim +date: "1970-01-01T00:00:00Z" +description: Writing about business, tech & mental health. +params: + feedlink: https://jothamlim.com/feed/ + feedtype: rss + feedid: a85be9e4ac49c62e07f9197e36fcea9c + websites: + https://jothamlim.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Blog + relme: + https://github.com/jothamlec: true + https://jothamlim.com/: true + last_post_title: My First 10km Marathon + last_post_description: Ran my first ever 10km marathon — a minor achievement for + veteran runners, but a milestone that will stay with me for a long time. I used + to be the vice president of the bodybuilding club, and + last_post_date: "2024-06-25T11:30:09Z" + last_post_link: https://jothamlim.com/my-first-10km-marathon/ + last_post_categories: + - Blog + last_post_language: "" + last_post_guid: 663686bf85763c6ee7be5ae5cbfc3a71 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-a860fc4e8e63515688217f3515edfd7b.md b/content/discover/feed-a860fc4e8e63515688217f3515edfd7b.md new file mode 100644 index 000000000..f4522acc7 --- /dev/null +++ b/content/discover/feed-a860fc4e8e63515688217f3515edfd7b.md @@ -0,0 +1,42 @@ +--- +title: Python on Humberto Rocha +date: "1970-01-01T00:00:00Z" +description: Recent content in Python on Humberto Rocha +params: + feedlink: https://humberto.io/tags/python/index.xml + feedtype: rss + feedid: a860fc4e8e63515688217f3515edfd7b + websites: + https://humberto.io/tags/python/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://humberto.io/tags/python/: true + last_post_title: Exploring pygame 5 - Movement and Collision + last_post_description: Movement is part of a large portion of games. When jumping + between platforms, shooting against a horde of enemies, piloting a space ship + and running through the streets, we are causing movement and + last_post_date: "2019-09-10T00:00:00Z" + last_post_link: https://humberto.io/blog/exploring-pygame-5-movement-and-collision/ + last_post_categories: [] + last_post_language: "" + last_post_guid: b328aad91c52071cdb948d8ac728dd0e + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-a8670df26fbd704ad1fd338478ce1a8c.md b/content/discover/feed-a8670df26fbd704ad1fd338478ce1a8c.md new file mode 100644 index 000000000..26935e5e4 --- /dev/null +++ b/content/discover/feed-a8670df26fbd704ad1fd338478ce1a8c.md @@ -0,0 +1,52 @@ +--- +title: iteration-zero +date: "1970-01-01T00:00:00Z" +description: Thoughts and articles on developing the free game iteration-zero. +params: + feedlink: https://iteration-zero.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: a8670df26fbd704ad1fd338478ce1a8c + websites: + https://iteration-zero.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - D + - DLisp + - Iteration-Zero + - OPENGL + - RPG + - WTF + relme: + https://gluonic.blogspot.com/: true + https://iteration-zero.blogspot.com/: true + https://www.blogger.com/profile/12067621123008652431: true + https://zweisachen.blogspot.com/: true + last_post_title: dLISP 0.100.0 Released + last_post_description: I am proud to release version o.100.o of dLISP, the LISP + interpreter for D.This is still experimental software, but is used already as + a scripting language for a free game under development. During + last_post_date: "2008-06-14T13:24:00Z" + last_post_link: https://iteration-zero.blogspot.com/2008/06/dlisp-01000-released.html + last_post_categories: + - DLisp + last_post_language: "" + last_post_guid: 40204e29d1c853e3c239d18764bcd594 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a879edd8e5e1ba823fc181d6c099a415.md b/content/discover/feed-a879edd8e5e1ba823fc181d6c099a415.md new file mode 100644 index 000000000..2b26d6201 --- /dev/null +++ b/content/discover/feed-a879edd8e5e1ba823fc181d6c099a415.md @@ -0,0 +1,210 @@ +--- +title: Bat in the Attic +date: "2024-07-08T14:00:46-04:00" +description: A blog on 40 years of gaming and Sandbox Fantasy. +params: + feedlink: https://batintheattic.blogspot.com/feeds/posts/default + feedtype: atom + feedid: a879edd8e5e1ba823fc181d6c099a415 + websites: + https://batintheattic.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - 2300AD + - 4e DD + - 4e gaming + - 5e + - ADnD + - AGE System + - Adventures + - Advice + - Arrows of Indra + - Battle Machine + - Blackmarsh + - Boog + - Borderlands + - COGS Con + - Con on the Cob + - DCC RPG + - D_D Next + - Delving ADnD + - Delving Deeper + - DnD 5e + - DnD 5e DMG + - DnD 5e SRD + - DnD Next + - DnD One + - Dnd 5e Advice + - Dragon Heresy + - DriveThruRPG + - Dungeon Fantasy + - Dwarven Forge + - Dwimmermount + - Eastgate + - Ephemera + - Fantasy Grounds + - Fate + - Fight On + - Fluff + - Frog God Games + - Fudge + - GM Games + - GUMSHOE + - GURPS + - Gaming Ballistic + - Gold Star Anime + - Google Plus + - Gormmah campaign + - Gothridge Manor + - Greyhawk + - Hairsticks + - Hirst Arts + - Hobbit + - Inspiration + - Judges Guild + - Kickstarter + - Kindle + - LARP + - Legacy DnD + - Legends + - Legos + - Lost Book of Magic + - Lost Lands + - Lulu + - Majestic Fantasy RPG + - Majestic Fantasy Realms + - Majestic Stars + - Majestic wilderlands fudge + - Making it your own + - Middle Earth + - Midkemia Press + - Nbos_IPP + - New + - News + - News. Personal + - ODnD + - OS Esstentials + - OSR + - OSR. + - OSRCon + - Old School Esstentials + - Openquest + - Orbiter + - Origins + - Other Systems + - Pateron + - Petty Gods + - Phandelver + - Play + - Playing at the World + - Points of Light + - RPG Blog 2 + - RPG Tech + - Random Party Generator + - Really Funny Stuff + - Reaper + - Referee Rumbles + - Roll20 + - SJ Games + - Sandbox In Detail + - Scourge of the Demon Wolf. + - Software + - Southland + - Space + - Spears of the Dawn + - Stack Overflow + - Star Trek + - Swords Wizardry + - Tabletop + - The Fantasy Trip + - The Manor + - Thieves Guild + - Tolkein + - Tolkien + - Tools + - Traveller + - Viridistan 2017 + - Wanderer + - War System + - Weekly Game + - Wheaton + - White Star + - Wild North + - Wilderlands of High Fantasy + - alternate history + - bat in the attic games + - board games + - building feudal setting + - character sheets + - computers + - cyberpunk + - family + - from the attic + - game stores. + - gaming + - gaming accessory + - gaming convention + - gaming stories + - goodman games + - harn + - hero system + - iPad + - inkscape + - inspiration mapping + - lotfp + - majestic realms rpg + - majestic wilderlands + - making dungeons + - managing sandbox campaigns + - mapping + - miniatures + - minimal dungeons + - movies + - nbos + - news gurps kickstarter + - news kickstarter + - old school + - podcast + - publishing + - refereeing + - religion + - review + - reviews + - runequest + - sandbox fantasy + - scouge of teh Demon Wolf. + - superhero + - wargames + relme: + https://batintheattic.blogspot.com/: true + last_post_title: How to Make a Fantasy Sandbox is the Deal of the Day + last_post_description: "" + last_post_date: "2024-06-27T07:13:59-04:00" + last_post_link: https://batintheattic.blogspot.com/2024/06/how-to-make-fantasy-sandbox-is-deal-of.html + last_post_categories: + - bat in the attic games + - sandbox fantasy + last_post_language: "" + last_post_guid: 906eb1cdc93fc2209db21143c3d20186 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 25 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a8b056459feca2ee7de1ad37bee15abd.md b/content/discover/feed-a8b056459feca2ee7de1ad37bee15abd.md new file mode 100644 index 000000000..089c85435 --- /dev/null +++ b/content/discover/feed-a8b056459feca2ee7de1ad37bee15abd.md @@ -0,0 +1,52 @@ +--- +title: Winchester Fly Fishing +date: "2024-03-04T20:03:42-08:00" +description: "" +params: + feedlink: https://winchesterflyfishing.blogspot.com/feeds/posts/default + feedtype: atom + feedid: a8b056459feca2ee7de1ad37bee15abd + websites: + https://winchesterflyfishing.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Avington + - Itchen + - Meon Springs + - Test + - grayling + - trout + relme: + https://about.me/glyn.normington: true + https://glynblog.blogspot.com/: true + https://underlap.blogspot.com/: true + https://winchesterflyfishing.blogspot.com/: true + https://www.blogger.com/profile/08741529390385812080: true + last_post_title: Grayling fishing at Timsbury + last_post_description: "" + last_post_date: "2011-03-04T05:12:48-08:00" + last_post_link: https://winchesterflyfishing.blogspot.com/2011/03/grayling-fishing-at-timsbury.html + last_post_categories: + - Test + - grayling + last_post_language: "" + last_post_guid: c84788de81668cae524636b7bbebaa97 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a8b5c46a34c491577816f510a7bfdba6.md b/content/discover/feed-a8b5c46a34c491577816f510a7bfdba6.md new file mode 100644 index 000000000..4c03cd420 --- /dev/null +++ b/content/discover/feed-a8b5c46a34c491577816f510a7bfdba6.md @@ -0,0 +1,122 @@ +--- +title: Firebird News +date: "2024-07-03T23:14:41-07:00" +description: Firebird related news +params: + feedlink: https://firebirdnews.blogspot.com/feeds/posts/default + feedtype: atom + feedid: a8b5c46a34c491577816f510a7bfdba6 + websites: + https://firebirdnews.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - .net + - FirebirdConference + - LWN + - access + - amazon + - amd + - apache + - atlassian + - bug + - classic + - cluster + - cvs + - db2 + - dbd-InterBase + - dbi + - debian + - delphi + - dlm + - dotnet + - ec2 + - fedora core + - fedora core 6 + - firebird + - firebird 2.1 + - firebird 2.1.1 + - firebird 2.5 + - firebird bugs + - firebird classic + - firebird conference + - firebird database + - firebird embedded + - firebird vs mssql + - firebird vs mysql + - firebirdnews + - fisheye + - flamerobin + - free pascal + - freebsd + - g++ + - gambas + - gcc + - gfs + - git + - github + - gnome-db + - gtk+ + - hosting + - ibphoenix + - itanium + - jdbc + - kde + - lazarus + - libgda + - linq + - linux + - make + - mssql + - mysql + - odbc + - opteron + - oracle + - pdo + - perl + - php + - pos + - postgresql + - qt + - redhat + - romanian translations + - ruby + - sql + - sqllite + - svn + - ubuntu + - windows + - wordpress + - xen + - xinetd + - xml + - zeos + relme: + https://firebirdnews.blogspot.com/: true + https://mapopa.blogspot.com/: true + https://www.blogger.com/profile/09862886782232467681: true + last_post_title: Django and Firebird support + last_post_description: "" + last_post_date: "2013-09-11T02:06:41-07:00" + last_post_link: https://firebirdnews.blogspot.com/2009/03/django-and-firebird-support.html + last_post_categories: [] + last_post_language: "" + last_post_guid: cb27ca14487983a022d9bc25f6346ea6 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a8c07316dd639e3ea6ce6d65d9419a29.md b/content/discover/feed-a8c07316dd639e3ea6ce6d65d9419a29.md new file mode 100644 index 000000000..234b6f503 --- /dev/null +++ b/content/discover/feed-a8c07316dd639e3ea6ce6d65d9419a29.md @@ -0,0 +1,298 @@ +--- +title: McEs, A Hacker Life +date: "2024-03-07T05:05:14-05:00" +description: Behdad Esfahbod's daily notes on GNOME, Pango, Fedora, Persian Computing, + Bob Dylan, and Dan Bern! +params: + feedlink: https://mces.blogspot.com/feeds/posts/default + feedtype: atom + feedid: a8c07316dd639e3ea6ce6d65d9419a29 + websites: + https://mces.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 10year + - "2.18" + - "2008" + - "2009" + - AFF + - AdaLovelaceDay09 + - AndyOram + - Asimov + - Baldwin + - Ben + - Boston + - Boston Summit + - Bravia + - C + - California + - ChangeLog + - Chris Tyler + - ChrisWilson + - Dan Bern + - Dave + - DavidBolter + - EitanIsaacson + - Fedora + - Finding Ada + - GLyphy + - GNOME foot logo + - GregWilson + - Hollister + - Iran + - IranNastaliq + - Iranian + - Iverson + - Microsoft + - Mozilla Summit + - Nastaliq + - Netflix + - Persian + - PhotoSynth + - Sony + - Teddy bear + - Whistler + - WillieWalker + - a11y + - abock + - ad + - akademy + - amazon + - amsterdam + - andre + - andrewcrause + - animation + - announcement + - apress + - audio + - baris + - behdad + - berlin + - bithacks + - blizzard + - board + - book + - bug + - bug500000 + - bugzilla + - buildbot + - burningman + - cairo + - cairotwisted + - calendar + - cellphone + - censorship + - cfp + - chpe + - cn tower + - code + - coffee + - comedy + - cookbook + - copyfight + - crevette + - cvs + - debian + - desktopsummit + - digital + - dilbert + - doctorow + - documentation + - drm + - dvcs + - elections + - email + - embedded + - entertainment + - evolution + - federico + - ff3 + - firefox + - fontconfig + - fontforge + - fonts + - fsf + - fudconboston2007 + - funny + - g-s-d + - gadgets + - gcc + - gcds + - gedit + - geek + - ghop + - git + - glasgow + - glib + - glyphtracer + - gnome + - gnome 2.18 + - gnome-panel + - gnome-session + - gnome-terminal + - gnome3 + - google + - gopa + - gplv3 + - graffiti + - gridfitting + - gsoc + - gtd + - gtk+ + - gtk-doc + - guadec + - hackfest + - harfbuzz + - hinting + - history + - hsbc + - http + - humor + - ickle + - igalia + - intel + - iq + - iranelection + - istanbul + - jds + - jobs + - justforfun + - kde + - keithp + - kellner + - kenvandine + - kerning + - lazyweb + - lca2014 + - leslie + - lessig + - life + - linux + - linux-utf8 + - linuxcaffe + - litl + - login + - lrl + - lucasr + - luis + - maintenance + - mba + - me + - meme + - microwave + - monty + - motion + - mozilla + - mug + - n'ko + - n800 + - nat + - nazari + - nokia + - obama + - office + - olpc + - onlinux + - ontariolinuxfest + - openmoko + - opentype + - optimization + - overholt + - packagekit + - painting + - pango + - pangocairo + - party + - patents + - pdf + - performance + - pgo + - photos + - programming + - puzzle + - python + - qt + - randr1.2 + - redhat + - refactoring + - reiser + - rhel5 + - rms + - roozbeh + - running + - sari + - screenshot + - shell + - sigh + - skidiving + - skulenight + - skydiving + - slides + - soc + - solution + - spam + - spellcheck + - stillmotion + - survey + - tbf + - techshop + - tehran + - textlayout + - timezone + - toronto + - travel + - tshirt + - tux + - twitter + - typography + - uk + - unicode + - utf8 + - video + - vista + - vte + - vuntz + - warnings + - watch + - web2.0 + - webkit + - win32 + - wine + - winelib + - wingo + - wishlist + - xdc + - xiph.org + - youtube + relme: + https://mces.blogspot.com/: true + last_post_title: How to use custom application fonts with Pango + last_post_description: "" + last_post_date: "2015-05-06T03:10:23-04:00" + last_post_link: https://mces.blogspot.com/2015/05/how-to-use-custom-application-fonts.html + last_post_categories: + - fonts + - gtk+ + - pango + - pangocairo + last_post_language: "" + last_post_guid: db2a42da6fb9c5395b8ddd4ba667792b + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a8d593a749f94dbdc09d773ece798090.md b/content/discover/feed-a8d593a749f94dbdc09d773ece798090.md deleted file mode 100644 index 2cd3827cb..000000000 --- a/content/discover/feed-a8d593a749f94dbdc09d773ece798090.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Comments for Arun's blog -date: "1970-01-01T00:00:00Z" -description: Hack it -params: - feedlink: https://arunsag.wordpress.com/comments/feed/ - feedtype: rss - feedid: a8d593a749f94dbdc09d773ece798090 - websites: - https://arunsag.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Behaviour of ConfigParser.read() – Python by Stan Lucian - last_post_description: Thanks , these really helped me . - last_post_date: "2017-05-15T19:31:05Z" - last_post_link: https://arunsag.wordpress.com/2011/02/07/behaviour-of-configparser-read-python/#comment-2588 - last_post_categories: [] - last_post_guid: f055b3efb4005c5973b97cee87e67288 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a8e419375a39ed772ed1f7953260bbe8.md b/content/discover/feed-a8e419375a39ed772ed1f7953260bbe8.md deleted file mode 100644 index 05ee367eb..000000000 --- a/content/discover/feed-a8e419375a39ed772ed1f7953260bbe8.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: openstack on Stephen Finucane (Fin-oo-can) -date: "1970-01-01T00:00:00Z" -description: Recent content in openstack on Stephen Finucane (Fin-oo-can) -params: - feedlink: https://that.guru/categories/openstack/index.xml - feedtype: rss - feedid: a8e419375a39ed772ed1f7953260bbe8 - websites: - https://that.guru/categories/openstack/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Availability Zones in Openstack and Openshift (Part 2) - last_post_description: |- - After seeing a few too many availability zone-related issues popping up in OpenShift clusters of late, I’ve decided it - might make sense to document the situation with OpenStack AZs on OpenShift - last_post_date: "2024-05-03T00:00:00Z" - last_post_link: https://that.guru/blog/availability-zones-in-openstack-and-openshift-part-2/ - last_post_categories: [] - last_post_guid: a326fc74b1a825df5599b617c3f6c39a - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a8ed0555f22c3321842f6bb390f7d732.md b/content/discover/feed-a8ed0555f22c3321842f6bb390f7d732.md new file mode 100644 index 000000000..b274b386e --- /dev/null +++ b/content/discover/feed-a8ed0555f22c3321842f6bb390f7d732.md @@ -0,0 +1,45 @@ +--- +title: ⛵️Sane Boat +date: "2024-05-31T19:14:01Z" +description: "" +params: + feedlink: https://saneboat.com/posts_feed + feedtype: atom + feedid: a8ed0555f22c3321842f6bb390f7d732 + websites: + https://saneboat.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php + categories: [] + relme: + https://mastodon.social/@saneboat: true + https://saneboat.com/: true + last_post_title: A Reflection on WeblogPoMo2024 + last_post_description: Today is the last day of WeblogPoMo2024, and this is my 31st + post of the series meaning that I managed to get something written everyday! I’m + equally surprised and proud... + last_post_date: "2024-05-31T19:15:48Z" + last_post_link: https://saneboat.com/posts/a-reflection-on-weblogpomo2024 + last_post_categories: [] + last_post_language: "" + last_post_guid: 24dc32d621101a9c8f354a570ca7355f + score_criteria: + cats: 0 + description: 0 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-a901f487f8fd6f25d3ae2ca635116c07.md b/content/discover/feed-a901f487f8fd6f25d3ae2ca635116c07.md index f9104fa45..3d4797f9d 100644 --- a/content/discover/feed-a901f487f8fd6f25d3ae2ca635116c07.md +++ b/content/discover/feed-a901f487f8fd6f25d3ae2ca635116c07.md @@ -13,28 +13,34 @@ params: recommender: - https://colinwalker.blog/dailyfeed.xml - https://colinwalker.blog/livefeed.xml + - https://therealadam.com/feed.xml categories: - General relme: {} - last_post_title: Going Sessile - last_post_description: One of the biggest changes in my personality with middle - age is that I no longer really enjoy travel beyond local weekend getaways. Almost - no destination has a pain/novelty ratio that makes it worth - last_post_date: "2024-05-24T23:55:48Z" - last_post_link: https://www.ribbonfarm.com/2024/05/24/going-sessile/ + last_post_title: Covid and Noun-Memory Effects + last_post_description: 'Ever since I got a bout of Covid a couple of years ago (late + 2022), I’ve noticed memory problems of a very specific sort: Difficulty remembering + names. Especially people names, but also other sorts' + last_post_date: "2024-06-14T19:29:18Z" + last_post_link: https://www.ribbonfarm.com/2024/06/14/covid-and-noun-memory-effects/ last_post_categories: - General - last_post_guid: f0b7acc24cac02f64df4f8bcef91dff4 + last_post_language: "" + last_post_guid: fe632e04b0ebc2187d75d1267359e879 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 14 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-a9020057bc2a6124eced653090f54639.md b/content/discover/feed-a9020057bc2a6124eced653090f54639.md deleted file mode 100644 index c817138c7..000000000 --- a/content/discover/feed-a9020057bc2a6124eced653090f54639.md +++ /dev/null @@ -1,50 +0,0 @@ ---- -title: Andrea Frittoli -date: "1970-01-01T00:00:00Z" -description: Thoughts and Experiences -params: - feedlink: https://andreafrittoli.me/feed/ - feedtype: rss - feedid: a9020057bc2a6124eced653090f54639 - websites: - https://andreafrittoli.me/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Developer Advocacy - - ci/cd - - containers - - ibmcloud - - knative - - pipeline - - tekton - relme: {} - last_post_title: Define a simple CD pipeline with Knative - last_post_description: 'In this blog post I will describe how to setup a simple - CD pipeline using Knative pipeline. The pipeline takes a helm chart from a git - repository and performs the following steps: it builds three' - last_post_date: "2019-02-06T14:50:28Z" - last_post_link: https://andreafrittoli.me/2019/02/06/define-a-simple-cd-pipeline-with-knative/ - last_post_categories: - - Developer Advocacy - - ci/cd - - containers - - ibmcloud - - knative - - pipeline - - tekton - last_post_guid: 146e389050f8ba3b1aaba02fbe209276 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a90291de51af2b30351bec61951b5960.md b/content/discover/feed-a90291de51af2b30351bec61951b5960.md new file mode 100644 index 000000000..11f970af5 --- /dev/null +++ b/content/discover/feed-a90291de51af2b30351bec61951b5960.md @@ -0,0 +1,54 @@ +--- +title: n-heptane lab +date: "2024-02-20T14:10:12-08:00" +description: "" +params: + feedlink: https://nhlab.blogspot.com/feeds/posts/default + feedtype: atom + feedid: a90291de51af2b30351bec61951b5960 + websites: + https://nhlab.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ACID + - AGI + - Asterisk + - FastAGI + - HAppS + - HSP + - HTML + - Haskell + - templating + relme: + https://alchymiastudio.blogspot.com/: true + https://happstack.blogspot.com/: true + https://learnhaskell.blogspot.com/: true + https://musictheoryforeveryone.blogspot.com/: true + https://nhlab.blogspot.com/: true + https://www.blogger.com/profile/18373967098081701148: true + last_post_title: Data Migration with HApps-Data + last_post_description: "" + last_post_date: "2008-12-14T14:20:39-08:00" + last_post_link: https://nhlab.blogspot.com/2008/12/data-migration-with-happs-data.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 646d98a77c8644849d9a2baae6221ac6 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a925c828a8e08b0991f2a5f873b4f5b4.md b/content/discover/feed-a925c828a8e08b0991f2a5f873b4f5b4.md deleted file mode 100644 index 0fc3448ec..000000000 --- a/content/discover/feed-a925c828a8e08b0991f2a5f873b4f5b4.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: ShopTalk -date: "1970-01-01T00:00:00Z" -description: A podcast about web design and development. -params: - feedlink: https://shoptalkshow.com/feed/podcast - feedtype: rss - feedid: a925c828a8e08b0991f2a5f873b4f5b4 - websites: - https://shoptalkshow.com/: false - https://shoptalkshow.com/609/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Technology - relme: {} - last_post_title: '618: Matt Visiwig on SVGBackgrounds' - last_post_description: Show DescriptionMatt Visiwig stops by to chat with us about - his site, SVGBackgrounds.com, a membership site for copy-and-paste website graphics - built around SVG. We talk about why he built the site, - last_post_date: "2024-06-03T08:08:44Z" - last_post_link: https://shoptalkshow.com/618/ - last_post_categories: [] - last_post_guid: 0227d5ab10a34b0fee02ee3dfbc79e2d - score_criteria: - cats: 1 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 8 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-a937d7f933a6269b152cd46d41e55adb.md b/content/discover/feed-a937d7f933a6269b152cd46d41e55adb.md new file mode 100644 index 000000000..abef9d6b4 --- /dev/null +++ b/content/discover/feed-a937d7f933a6269b152cd46d41e55adb.md @@ -0,0 +1,41 @@ +--- +title: Linux Fun +date: "2024-02-20T14:18:52-03:00" +description: Linux pode ser divertido também! Jogos & aplicativos pouco usuais merecem + seu espaço... +params: + feedlink: https://linux-fun.blogspot.com/feeds/posts/default + feedtype: atom + feedid: a937d7f933a6269b152cd46d41e55adb + websites: + https://linux-fun.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://linux-fun.blogspot.com/: true + last_post_title: De volta à ativa, com Linux + Wii + ScummVM + last_post_description: "" + last_post_date: "2009-07-25T21:03:09-03:00" + last_post_link: https://linux-fun.blogspot.com/2009/07/esse-blog-ficou-parado-tempo-demais.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 6117ecc1cbc1d0de48a03f0813d7c426 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a94530ccf01765832f0a57a4ea1e0a89.md b/content/discover/feed-a94530ccf01765832f0a57a4ea1e0a89.md new file mode 100644 index 000000000..817ad03be --- /dev/null +++ b/content/discover/feed-a94530ccf01765832f0a57a4ea1e0a89.md @@ -0,0 +1,50 @@ +--- +title: Software Architecture +date: "2024-02-18T20:27:29-08:00" +description: "" +params: + feedlink: https://on-software-architecture.blogspot.com/feeds/posts/default + feedtype: atom + feedid: a94530ccf01765832f0a57a4ea1e0a89 + websites: + https://on-software-architecture.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://boardgamethoughts.blogspot.com/: true + https://coderthoughts.blogspot.com/: true + https://hikersthoughts.blogspot.com/: true + https://laarderhoogt.blogspot.com/: true + https://lightdarknesspainting.blogspot.com/: true + https://on-software-architecture.blogspot.com/: true + https://osgithoughts.blogspot.com/: true + https://rockabillfilmsoc.blogspot.com/: true + https://rockabillfilmsociety.blogspot.com/: true + https://testblogaswebsite.blogspot.com/: true + https://www.blogger.com/profile/13786738766478890804: true + last_post_title: This is what we're about + last_post_description: "" + last_post_date: "2014-01-13T09:25:29-08:00" + last_post_link: https://on-software-architecture.blogspot.com/2013/10/test.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 235c7f5b5abe247dd1d34f67033a0512 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a9493992728a10a75430c4374f18cbf5.md b/content/discover/feed-a9493992728a10a75430c4374f18cbf5.md deleted file mode 100644 index a2e2b1fd9..000000000 --- a/content/discover/feed-a9493992728a10a75430c4374f18cbf5.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: A Very Good Blog by Keenan -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://gkeenan.co/avgb?format=rss - feedtype: rss - feedid: a9493992728a10a75430c4374f18cbf5 - websites: - https://gkeenan.co/avgb/: true - blogrolls: [] - recommended: [] - recommender: - - https://colinwalker.blog/dailyfeed.xml - - https://colinwalker.blog/livefeed.xml - - https://rknight.me/subscribe/posts/rss.xml - categories: [] - relme: - https://social.lol/@keenan: false - last_post_title: A very masturbatory WeblogPoMo2024 retrospective, featuring me, - your favorite idiot, Keenan - last_post_description: It seems like it was only 35 days ago that I committed myself - to embarking on the challenge of posting on my blog every day for the month of - May. Despite the pessimism wrapped in a nice little - last_post_date: "2024-06-03T21:24:06Z" - last_post_link: https://gkeenan.co/avgb/a-very-masturbatory-weblogpomo2024-retrospective-featuring-me-your-favorite-idiot-keenan - last_post_categories: [] - last_post_guid: 4b316ae61a13ef37eb020eccf20db2e0 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a9733559048b3a182f663302ad53a378.md b/content/discover/feed-a9733559048b3a182f663302ad53a378.md new file mode 100644 index 000000000..3bd60a857 --- /dev/null +++ b/content/discover/feed-a9733559048b3a182f663302ad53a378.md @@ -0,0 +1,141 @@ +--- +title: Ddosing is about Emotions. +date: "1970-01-01T00:00:00Z" +description: all emotions aout to know ddosing. +params: + feedlink: https://kimsuyi.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: a9733559048b3a182f663302ad53a378 + websites: + https://kimsuyi.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ddosing is internet. + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Ddossing have new age of Internet + last_post_description: While searching for the web hosting administrations, it is + critical to look at whether they have the equipment and programming answers for + bringing to the table DDoS assurance to your sites with 99% + last_post_date: "2021-04-17T19:33:00Z" + last_post_link: https://kimsuyi.blogspot.com/2021/04/ddossing-have-new-age-of-internet.html + last_post_categories: + - ddosing is internet. + last_post_language: "" + last_post_guid: f33e647e19a8b9ba3daa00c8928244b3 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a98437b343662f0adb818fcf41e1f341.md b/content/discover/feed-a98437b343662f0adb818fcf41e1f341.md deleted file mode 100644 index 73f0fda49..000000000 --- a/content/discover/feed-a98437b343662f0adb818fcf41e1f341.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Pesky's Blog -date: "1970-01-01T00:00:00Z" -description: Recent content on Pesky's Blog -params: - feedlink: https://blog.pesky.moe/index.xml - feedtype: rss - feedid: a98437b343662f0adb818fcf41e1f341 - websites: - https://blog.pesky.moe/: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: [] - relme: {} - last_post_title: Creating dynamic text on icons in Leaflet using SVG - last_post_description: Leaflet is a popular and feature-rich JavaScript library - for displaying maps. One of these features includes creating and placing markers - on a map with an icon, that could represent a dropped pin or - last_post_date: "2024-06-02T16:33:16Z" - last_post_link: https://blog.pesky.moe/posts/2024-06-02-leaflet-dynamic-icon-text/ - last_post_categories: [] - last_post_guid: b4700827f052de5962b92aad6a9a093b - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a98c2c3ee57d1e9e916c3add18581956.md b/content/discover/feed-a98c2c3ee57d1e9e916c3add18581956.md new file mode 100644 index 000000000..7a5347a34 --- /dev/null +++ b/content/discover/feed-a98c2c3ee57d1e9e916c3add18581956.md @@ -0,0 +1,51 @@ +--- +title: Mäd Meier's Twike Post +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://madmeierstwike.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: a98c2c3ee57d1e9e916c3add18581956 + websites: + https://madmeierstwike.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - insurance + - twike 108 + relme: + https://4urit.blogspot.com/: true + https://huggenberg.blogspot.com/: true + https://madmeiersadventures.blogspot.com/: true + https://madmeierscloud.blogspot.com/: true + https://madmeierslife.blogspot.com/: true + https://madmeierstwike.blogspot.com/: true + https://mmsketches.blogspot.com/: true + https://www.blogger.com/profile/14628306885093928732: true + last_post_title: The Twike + last_post_description: Yesterday I bought a new camera - the Twike is always worth + a picture! + last_post_date: "2011-05-01T11:24:00Z" + last_post_link: https://madmeierstwike.blogspot.com/2011/05/twike.html + last_post_categories: + - twike 108 + last_post_language: "" + last_post_guid: ea36249358823319a1b572a0ed68e52e + score_criteria: + cats: 2 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a9aaaec203a4f83fd446d8fa11628834.md b/content/discover/feed-a9aaaec203a4f83fd446d8fa11628834.md deleted file mode 100644 index ac1a703e9..000000000 --- a/content/discover/feed-a9aaaec203a4f83fd446d8fa11628834.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Comments for OpenStack Nova Developer Rollup -date: "1970-01-01T00:00:00Z" -description: the digest you can digest -params: - feedlink: https://novarollup.wordpress.com/comments/feed/ - feedtype: rss - feedid: a9aaaec203a4f83fd446d8fa11628834 - websites: - https://novarollup.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a9af3e4cd48c352e91a03888811f291e.md b/content/discover/feed-a9af3e4cd48c352e91a03888811f291e.md new file mode 100644 index 000000000..7baa6f1cf --- /dev/null +++ b/content/discover/feed-a9af3e4cd48c352e91a03888811f291e.md @@ -0,0 +1,71 @@ +--- +title: Vincents Random Waffle +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://vincentsanders.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: a9af3e4cd48c352e91a03888811f291e + websites: + https://vincentsanders.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Cats + - Collabora + - Netsurf + - PSU DIY + - bugtracker + - c programming + - car + - catchup + - change + - diy + - entropy + - garage + - holiday snow + - home + - kids + - music + - phones + - programming + - quiet week + - reprap + - software + - sourceforge + - time + - vala + - weekend + - wind + relme: + https://vincentsanders.blogspot.com/: true + last_post_title: Bee to the blossom, moth to the flame; Each to his passion; what's + in a name? + last_post_description: I like the sentiment of Helen Hunt Jackson in that quote + and it generally applies double for computer system names. However I like to think + when I named the first NetSurf VM host server phoenix + last_post_date: "2024-05-09T21:24:00Z" + last_post_link: https://vincentsanders.blogspot.com/2024/05/bee-to-blossom-moth-to-flame-each-to.html + last_post_categories: + - Collabora + - Netsurf + last_post_language: "" + last_post_guid: 659ce21d1a15eaf240d5971dcc28184f + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a9b39ba82e59dd45e6c780f87a0637fa.md b/content/discover/feed-a9b39ba82e59dd45e6c780f87a0637fa.md deleted file mode 100644 index e92db3a36..000000000 --- a/content/discover/feed-a9b39ba82e59dd45e6c780f87a0637fa.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: other -date: "1970-01-01T00:00:00Z" -description: Public posts from @other@vivaldi.net -params: - feedlink: https://social.vivaldi.net/@other.rss - feedtype: rss - feedid: a9b39ba82e59dd45e6c780f87a0637fa - websites: - https://social.vivaldi.net/@other: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://vivaldi.com/team/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-a9d431bade14ada82f2448497688adc4.md b/content/discover/feed-a9d431bade14ada82f2448497688adc4.md new file mode 100644 index 000000000..ef97cd837 --- /dev/null +++ b/content/discover/feed-a9d431bade14ada82f2448497688adc4.md @@ -0,0 +1,253 @@ +--- +title: Throne of Salt +date: "1970-01-01T00:00:00Z" +description: Many Fantastic Things +params: + feedlink: https://throneofsalt.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: a9d431bade14ada82f2448497688adc4 + websites: + https://throneofsalt.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - '#DIY30' + - 1k vampire + - 20 questions + - 40k + - 5e + - 60yearsinspace + - BY A WOMAN'S HAND + - DCC + - DCO with Randos + - DIY + - DM material + - DOG GOD + - Distant Lands of DIY + - FLAILSNAILS + - Folk + - GLOG + - GM Exercises + - Hainish + - Henry Justice Ford + - Knave + - LARGE OPINIONS + - Lancer + - Le Guin + - Lighhouse + - Mother Stole Fire + - Mother Stole the Backgrounds + - OSR + - Orions Arm + - Pen & Tam + - QHW + - RPGaDAY2017 + - SCP + - SSSS + - Salties + - Stars Without Number + - THE HAUL + - Tomb of Annihilation + - UVG + - WEG + - WoTC material + - abandoned project + - actually getting things played + - adventure + - aliens + - animals + - anime + - atumaic mysteries + - avatar + - backgrounds + - bad ideas + - banner saga + - barbarian prince + - bestiary + - biblical + - blood in the chocolate + - bookpost + - books + - call of cthulhu + - challenge + - characters + - chase the black rabbit + - class + - clerics + - conlang + - conlang notebook + - conversion + - cosmology + - critique + - crusader kings + - cyberpunk + - d&d + - dan's fanfiction hour + - danscape + - dawn of worlds + - deep carbon observatory + - deep time + - degenesis + - delta eclipse + - delta green + - design corner + - dog + - download + - dungeon + - dungeon bitches + - dungeon hobo + - eclipse phase + - ecstatic visions + - eerievember + - esoteric enterprises + - essay + - fear and hunger + - fiction + - filler + - food + - foppery and whim + - fwea + - games I made + - games in my folders + - goblinwatch + - gods + - great discape + - great screaming hell + - grimdark future + - guest post + - gvfl + - hack + - hellcrawl + - hexmap + - holiday + - holy shit it's finally done. + - horror + - hot springs island + - hubris + - humble art + - index + - ironsworn + - items + - jackalope + - justice bundle + - kicking it old-school + - lamentations + - language + - lazy dm + - lighthouse + - linguistics + - location + - lore + - magic + - magnus archives + - major project + - map + - mechanics + - minimodules + - minipost + - miscellanea + - monsters + - mothership + - music + - musing + - mutations + - mythos + - new sun + - news + - normal books + - not gaming related + - npc + - one page dungeon contest + - other games + - paladins + - pamphlet + - patreon + - pdf + - play report + - podcasts + - poetry + - pokemon + - progression + - project + - public domain fun + - published work + - pyre + - question and answer + - quick ones + - quiet year + - race + - random tables + - religion + - reread + - review + - revisit + - ruinations + - rules + - santicorn + - scenario + - sci-fi + - scrapped posts + - serious + - setting + - setting on the steppe + - shadow of the eschaton + - silly + - slang + - slush pile + - solarcrawl + - solo game + - solo games + - sorta review + - sotdl + - space + - space politics story + - spaceship + - spells + - star wars + - storytime + - stranger things + - the books were wrong + - tome of beasts + - tower unto heaven + - troika + - unfinished wonders + - unicorn meat + - unused ideas + - update + - video games + - witches + - wizard + - year in review + - yellow king + - zine + relme: + https://throneofsalt.blogspot.com/: true + last_post_title: Mothership Patches 3 + last_post_description: '100 Patches, 100 Trinkets , 100 More Patches, 100 More Trinkets + F.O.M.O.Red giant w/ sunglassesHarpooned heartFerret biting its tailLogo: Iago + Prime Clown ReserveGorilla throwing up the' + last_post_date: "2024-07-07T20:44:00Z" + last_post_link: https://throneofsalt.blogspot.com/2024/07/mothership-patches-3.html + last_post_categories: + - mothership + - random tables + last_post_language: "" + last_post_guid: 028c33d969e83dcdf10a4574cf79a06a + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a9d50a2e9c68d3344bd9b464f7163be9.md b/content/discover/feed-a9d50a2e9c68d3344bd9b464f7163be9.md new file mode 100644 index 000000000..4cca4e912 --- /dev/null +++ b/content/discover/feed-a9d50a2e9c68d3344bd9b464f7163be9.md @@ -0,0 +1,44 @@ +--- +title: Fryzek Concepts +date: "1970-01-01T00:00:00Z" +description: Lucas is a developer working on cool things +params: + feedlink: https://fryzekconcepts.com/feed.xml + feedtype: rss + feedid: a9d50a2e9c68d3344bd9b464f7163be9 + websites: + https://fryzekconcepts.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://fryzekconcepts.com/: true + https://mastodon.social/@hazematman: true + last_post_title: Generating Video + last_post_description: |- + One thing I’m very interested in is computer graphics. This could be + complex 3D graphics or simple 2D graphics. The idea of getting a + computer to display visual data fascinates me. One fundamental + last_post_date: "2020-04-06T23:00:00Z" + last_post_link: https://fryzekconcepts.com/notes/generating-video.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 05d3d7e55ecb355a7a98abc5cb04e779 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-a9e6475340be7058401ea19206137ff1.md b/content/discover/feed-a9e6475340be7058401ea19206137ff1.md index 833a76b95..8723afced 100644 --- a/content/discover/feed-a9e6475340be7058401ea19206137ff1.md +++ b/content/discover/feed-a9e6475340be7058401ea19206137ff1.md @@ -13,23 +13,28 @@ params: recommender: [] categories: [] relme: - https://ryanjerz.com/: false + https://jerz.us/: true last_post_title: Donald Trump is convicted of 34 felonies last_post_description: "" last_post_date: "2024-05-31T18:15:32Z" last_post_link: https://jerz.us/saves/99 last_post_categories: [] + last_post_language: "" last_post_guid: 983c67011392c19998d93838e96b2b6d score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 9 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-a9f7c73d62fe684639fc0522717adcf8.md b/content/discover/feed-a9f7c73d62fe684639fc0522717adcf8.md new file mode 100644 index 000000000..1408aacf2 --- /dev/null +++ b/content/discover/feed-a9f7c73d62fe684639fc0522717adcf8.md @@ -0,0 +1,45 @@ +--- +title: Amnesty International Security Lab +date: "1970-01-01T00:00:00Z" +description: Amnesty International’s Security Lab leads cutting-edge technical investigations + into cyber-attacks against activists and journalists. The Lab builds tools and services + to help protect activists +params: + feedlink: https://securitylab.amnesty.org/feed/ + feedtype: rss + feedid: a9f7c73d62fe684639fc0522717adcf8 + websites: + https://securitylab.amnesty.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://securitylab.amnesty.org/: true + last_post_title: Amnesty International’s Security Lab unveils new tools to support + civil society against digital threats + last_post_description: Amnesty International’s Security Lab has launched new features + on its website, adding to the existing range of tools, resources and research + to support human rights defenders, activists, + last_post_date: "2024-06-05T00:30:00Z" + last_post_link: https://securitylab.amnesty.org/latest/2024/06/amnesty-internationals-security-lab-unveils-new-tools-to-support-civil-society-against-digital-threats/ + last_post_categories: [] + last_post_language: "" + last_post_guid: d0fe54ec05114afa054529f556e34449 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-aa02ba50bdfaa4df13c17d279ad18f00.md b/content/discover/feed-aa02ba50bdfaa4df13c17d279ad18f00.md index 12de81a26..0456a50b4 100644 --- a/content/discover/feed-aa02ba50bdfaa4df13c17d279ad18f00.md +++ b/content/discover/feed-aa02ba50bdfaa4df13c17d279ad18f00.md @@ -14,24 +14,29 @@ params: - https://colinwalker.blog/livefeed.xml categories: [] relme: {} - last_post_title: Today, I pushed a minor release … - last_post_description: Today, I pushed a minor release for Posts Stats plugin that - enables (and defaults to) collapsing the table for the posts by year. You can - expand the table by clicking the “Show Posts by Year” - last_post_date: "2024-05-25T18:45:27+05:30" - last_post_link: https://www.amitgawande.com/2024/05/25/today-i-pushed.html + last_post_title: I have generally been bored of … + last_post_description: I have generally been bored of every experience I have online, + whether it’s reading or writing. Nothing feels exciting or enticing. Writing quick + thoughts is easy, but it’s much more challenging + last_post_date: "2024-07-01T22:45:30+05:30" + last_post_link: https://www.amitgawande.com/2024/07/01/i-have-generally.html last_post_categories: [] - last_post_guid: 12b42fc8d9d5d38de2cc22b7cb113995 + last_post_language: "" + last_post_guid: 4fc3db38dc9a940c58576060ffa2bc57 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 8 + score: 12 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-aa0ac5f5c404b14f06f25d4cbbf05e2b.md b/content/discover/feed-aa0ac5f5c404b14f06f25d4cbbf05e2b.md new file mode 100644 index 000000000..a84b7845a --- /dev/null +++ b/content/discover/feed-aa0ac5f5c404b14f06f25d4cbbf05e2b.md @@ -0,0 +1,50 @@ +--- +title: iteration-zero +date: "2024-03-13T14:55:47-07:00" +description: Thoughts and articles on developing the free game iteration-zero. +params: + feedlink: https://iteration-zero.blogspot.com/feeds/posts/default + feedtype: atom + feedid: aa0ac5f5c404b14f06f25d4cbbf05e2b + websites: + https://iteration-zero.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - D + - DLisp + - Iteration-Zero + - OPENGL + - RPG + - WTF + relme: + https://gluonic.blogspot.com/: true + https://iteration-zero.blogspot.com/: true + https://www.blogger.com/profile/12067621123008652431: true + https://zweisachen.blogspot.com/: true + last_post_title: dLISP 0.100.0 Released + last_post_description: "" + last_post_date: "2008-06-14T09:30:54-07:00" + last_post_link: https://iteration-zero.blogspot.com/2008/06/dlisp-01000-released.html + last_post_categories: + - DLisp + last_post_language: "" + last_post_guid: 8b19cab284d7bc6270857b0dcbf1bbbf + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-aa0f738054dba01e95363455a859c082.md b/content/discover/feed-aa0f738054dba01e95363455a859c082.md deleted file mode 100644 index 6861e33f9..000000000 --- a/content/discover/feed-aa0f738054dba01e95363455a859c082.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Ton Zijlstra -date: "1970-01-01T00:00:00Z" -description: Public posts from @ton@m.tgl.eu -params: - feedlink: https://m.tgl.eu/@ton.rss - feedtype: rss - feedid: aa0f738054dba01e95363455a859c082 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-aa0f8f2af5a8d04a15a5d3b384edec49.md b/content/discover/feed-aa0f8f2af5a8d04a15a5d3b384edec49.md new file mode 100644 index 000000000..0e53d3a41 --- /dev/null +++ b/content/discover/feed-aa0f8f2af5a8d04a15a5d3b384edec49.md @@ -0,0 +1,41 @@ +--- +title: Will's Python Notebook +date: "2024-03-20T05:11:22-04:00" +description: Things I've learned while coding in python. +params: + feedlink: https://willpython.blogspot.com/feeds/posts/default + feedtype: atom + feedid: aa0f8f2af5a8d04a15a5d3b384edec49 + websites: + https://willpython.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - asyncore asynchat threading + relme: + https://willpython.blogspot.com/: true + last_post_title: '"top" in an animated GIF' + last_post_description: "" + last_post_date: "2013-03-10T17:25:12-04:00" + last_post_link: https://willpython.blogspot.com/2013/03/top-in-animated-gif.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 95aac7ed27dff5e6aecb25e7f848e9eb + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-aa0fa22cb78cc798e1fc414d72faabf1.md b/content/discover/feed-aa0fa22cb78cc798e1fc414d72faabf1.md new file mode 100644 index 000000000..bdfd0c1ad --- /dev/null +++ b/content/discover/feed-aa0fa22cb78cc798e1fc414d72faabf1.md @@ -0,0 +1,40 @@ +--- +title: Nicholas Bate +date: "2024-07-08T05:08:48+01:00" +description: Business of Life + Life of Business +params: + feedlink: https://feeds.feedburner.com/NicholasBate + feedtype: atom + feedid: aa0fa22cb78cc798e1fc414d72faabf1 + websites: {} + blogrolls: [] + recommended: [] + recommender: + - https://frankmcpherson.blog/feed.xml + categories: [] + relme: {} + last_post_title: The Greatest Productivity Tips, 112 + last_post_description: Don’t work on your vacation. Instead, explore, write, think, + cook, eat, be, sleep, read, chat…. But no, don’t work. + last_post_date: "2024-07-08T05:08:48+01:00" + last_post_link: https://blog.strategicedge.co.uk/2024/07/the-greatest-productivity-tips-112.html + last_post_categories: [] + last_post_language: "" + last_post_guid: fbc66408e9aeae6f4d7c3759af36b7bc + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 0 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-aa1bd41eea741c9300b3767ee6c9c548.md b/content/discover/feed-aa1bd41eea741c9300b3767ee6c9c548.md new file mode 100644 index 000000000..9a1751539 --- /dev/null +++ b/content/discover/feed-aa1bd41eea741c9300b3767ee6c9c548.md @@ -0,0 +1,56 @@ +--- +title: Erik L. Arneson — Writer and Software Developer +date: "2024-01-18T23:35:36Z" +description: Erik L. Arneson is a freelance writer and software developer located + in Portland, Oregon. +params: + feedlink: https://arnesonium.com/feed.xml + feedtype: atom + feedid: aa1bd41eea741c9300b3767ee6c9c548 + websites: + https://arnesonium.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - emacs + - history + - portland + - programming + - security + relme: + https://arnesonium.com/: true + https://fosstodon.org/@pymander: true + https://github.com/pymander: true + https://sr.ht/~earneson/: true + last_post_title: Many Posts of Interest for January 2024 + last_post_description: Once again, I have collected far too many links over far + too long a period of time. Anyhow, here is a collection of blog posts and links + from around the web that I found to be good reading over the + last_post_date: "2024-01-18T00:00:00Z" + last_post_link: https://arnesonium.com/2024/01/18-many-posts-of-interest.html + last_post_categories: + - emacs + - history + - portland + - programming + - security + last_post_language: "" + last_post_guid: da43b8d9680c67df687b9d1947c2ada0 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-aa1f3c950cac6cae551d4bcc7a2b2624.md b/content/discover/feed-aa1f3c950cac6cae551d4bcc7a2b2624.md index 5c2ddd7cb..866811a86 100644 --- a/content/discover/feed-aa1f3c950cac6cae551d4bcc7a2b2624.md +++ b/content/discover/feed-aa1f3c950cac6cae551d4bcc7a2b2624.md @@ -15,7 +15,8 @@ params: - Motivation - film - moderate - relme: {} + relme: + https://pinholemiscellany.berrange.com/: true last_post_title: Maia (20 Tauri) last_post_description: Maia is a large camera comprising a grid of film canisters shooting 30 images at a time on 35mm film Motivation Design Gallery Motivation @@ -26,17 +27,22 @@ params: - Motivation - film - moderate + last_post_language: "" last_post_guid: 883b5ce0d860318624ae62f3b86641a0 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 11 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-aa1f9dbad5783eef4a0aac5364d9b5e9.md b/content/discover/feed-aa1f9dbad5783eef4a0aac5364d9b5e9.md index dc1d34c51..6092ed491 100644 --- a/content/discover/feed-aa1f9dbad5783eef4a0aac5364d9b5e9.md +++ b/content/discover/feed-aa1f9dbad5783eef4a0aac5364d9b5e9.md @@ -53,6 +53,7 @@ params: - https://granary.io/url?input=html - https://honza.pokorny.ca/index.xml - https://im.farai.xyz/feed.rss.xml + - https://immerweiterlaufen.de/feed - https://jerz.us/rss/?section=micro - https://jimkang.com/weblog/feed.xml - https://joekrall.com/atom.xml @@ -105,6 +106,7 @@ params: - https://www.schneier.com/feed/atom/ - https://www.scottohara.me/feed.xml - https://www.smbc-comics.com/comic/rss + - https://www.strictlyspoiler.com/feed/ - https://www.welivesecurity.com/en/rss/feed/ - https://www.youtube.com/feeds/videos.xml?channel_id=UC-XYsDNh4-886rMNLnnwR_w - https://www.youtube.com/feeds/videos.xml?channel_id=UC2C_jShtL725hvbm1arSV9w @@ -166,11 +168,8 @@ params: - https://benfrain.com/feed/ - https://benfrain.com/home/feed/ - https://blog.humblebundle.com/comments/feed/ - - https://www.buttersafe.com/feed/ - - https://www.buttersafe.com/feed/atom/ - https://colinwalker.blog/dailyfeed.xml - https://cosmicqbit.dev/blog/index.xml - - https://degruchy.org/comments/feed/ - https://derekkedziora.com/feed/essays.xml - https://distributed.blog/comments/feed/ - https://distributed.blog/feed/ @@ -181,9 +180,11 @@ params: - https://frittiert.es/feed/page:feed.xml - https://geoffgraham.me/comments/feed/ - https://geoffgraham.me/feed/ + - https://immerweiterlaufen.de/comments/feed/ + - https://immerweiterlaufen.de/feed/ - https://jerz.us/atom/ - https://jerz.us/rss/ - - https://kevquirk.com/feed + - https://lalunemauve.fr/comments/feed/ - https://ma.tt/comments/feed/ - https://rss.nebula.app/video/channels/minutephysics.rss?plus=true - https://rss.nebula.app/video/channels/philosophytube.rss?plus=true @@ -203,66 +204,62 @@ params: - https://notiz.blog/type/standard/feed/ - https://notiz.blog/type/status/feed/ - https://notiz.blog/type/video/feed/ - - https://oglaf.com/feeds/rss/ - https://polytechnic.co.uk/blog/rss - https://rss.metafilter.com/popular-comments.rss - https://rss.metafilter.com/popular-posts.rss - https://rss.metafilter.com/projects.rss - - https://indieweb.social/@seanmcp.rss - https://sfss.space/feed/ - https://shiflett.org/feeds/links - - https://shkspr.mobi/blog/feed - - https://shkspr.mobi/blog/feed/atom/ - - https://shkspr.mobi/blog/feed/podcast/ - - https://stantonharcourtschool.org.uk/comments/feed/ - - https://stantonharcourtschool.org.uk/feed/ - https://steele.blue/feed - https://stefanbohacek.com/feed - https://textslashplain.com/comments/feed/ + - https://thehistoryoftheweb.com/comments/feed/ - https://tracydurnell.com/comments/feed/ - https://www.alchemists.io/feeds/articles.xml - https://www.alchemists.io/feeds/projects.xml - https://www.alchemists.io/feeds/screencasts.xml - https://www.alchemists.io/feeds/talks.xml + - https://www.blogpocket.com/comments/feed/ - https://www.blogpocket.com/feed/ - https://www.blogpocket.com/feed/podcast - https://rss.metafilter.com/metafilter.rss - - https://www.nathalielawhead.com/candybox/comments/feed - https://www.optipess.com/comments/feed/ - https://www.optipess.com/feed/ - - https://polyamorousmisanthrope.com/wordpress/comments/feed/ - - https://www.schneier.com/comments/feed/ - - https://www.schneier.com/feed/ - https://www.zylstra.org/blog/comments/feed/ - https://xkcd.com/atom.xml - https://youdo.blog/comments/feed/ recommender: [] categories: [] relme: - https://en.pronouns.page/@dan-q: false + https://dan-q.github.io/: true + https://danq.me/: true + https://github.com/Dan-Q: true https://github.com/dan-q/: true https://keybase.io/dq: true https://m.danq.me/@blog: true - https://m.danq.me/@dan: false - https://www.linkedin.com/in/itsdanq/: false - https://www.youtube.com/@DanQ: false - last_post_title: Comment on [Article] Woke Kids by Katie Sutton - last_post_description: I mean, I'm not entirely surprised with a family like yours - around her. - last_post_date: "2024-06-02T15:53:45+01:00" - last_post_link: https://danq.me/2024/06/02/woke-kids/#comment-249520 + https://m.danq.me/@dan: true + last_post_title: Comment on [Article] Quickly Solving Jigidi Puzzles by Metaltrol + last_post_description: Thank you for the quick response Dan, appreciate it. Can't + change it but it works with the other color to. Have a nice day! + last_post_date: "2024-07-05T08:14:37+01:00" + last_post_link: https://danq.me/2021/08/26/jigidi-solver/#comment-251368 last_post_categories: [] - last_post_guid: ac8816316cf5a4d9bb2f759bd19b18ff + last_post_language: "" + last_post_guid: 5bba15fa19c9f417d5d07539e04bf855 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 10 relme: 2 title: 3 website: 2 - score: 20 + score: 23 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-aa34662d840b8b7ad4ebddc1430c0e8f.md b/content/discover/feed-aa34662d840b8b7ad4ebddc1430c0e8f.md new file mode 100644 index 000000000..8466ea48d --- /dev/null +++ b/content/discover/feed-aa34662d840b8b7ad4ebddc1430c0e8f.md @@ -0,0 +1,85 @@ +--- +title: pkisrael-test +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://pkisrael-test.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: aa34662d840b8b7ad4ebddc1430c0e8f + websites: + https://pkisrael-test.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 01.Еврейское наследие + - 02.Лидерский тренинг + - 03.Положение женщины в обществе + - 04.Развитие толерантных отношений + - 05.Здоровье женщины - здоровье нации + - 06.Мой Израиль + - 07.Работа в группах + - 08.Личные истории + - 09.Наши достижения + - 10.Акции в блоге + - 11.Кошерная Кухня + - 12.Народная мудрость + - 13.Гражданская позиция + - 14.Социальные проекты + - 15.Иврит + - 16.Полезные советы + - 17. Технические темы + - 7.Разное + - Александра + - Алла Кучеренко + - Алла Ланцман + - Валентина + - Инна + - Ирина Баркан + - Ирина Лутт + - Ирина Черний + - Ирина-Ривка-Рут + - Катя Рашковская + - Керен + - Лариса Табачник + - Лилия Полозова + - Любовь Малышева + - Людмила Горра + - МааЯна + - Офра + - Светлана-Леора + - Тамара + relme: + https://pkisrael-test.blogspot.com/: true + https://skliarie.blogspot.com/: true + https://skliarieh.blogspot.com/: true + https://teddy-events.blogspot.com/: true + https://www.blogger.com/profile/17337009271103751185: true + last_post_title: '"Виртуальный Песах-2014". Задание 2. "Есть или + не есть, пить или не пить?""' + last_post_description: Во Втором Задание мы поговорим о том, что в ходе Седера не + едят и чего не пьют.Вкушаем ли мы в ходе Седера + last_post_date: "2014-04-03T13:43:00Z" + last_post_link: https://pkisrael-test.blogspot.com/2014/04/2014-2.html + last_post_categories: + - 10.Акции в блоге + - Валентина + last_post_language: "" + last_post_guid: dcef8d36c2437e715073d2929af58607 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-aa78b87c7c3df06536e1eb31625bb086.md b/content/discover/feed-aa78b87c7c3df06536e1eb31625bb086.md new file mode 100644 index 000000000..ed4d15b03 --- /dev/null +++ b/content/discover/feed-aa78b87c7c3df06536e1eb31625bb086.md @@ -0,0 +1,56 @@ +--- +title: Death has no dominion +date: "2024-03-13T19:25:28+01:00" +description: Deutsche und englische Gedichte +params: + feedlink: https://deathhasnodominion.blogspot.com/feeds/posts/default + feedtype: atom + feedid: aa78b87c7c3df06536e1eb31625bb086 + websites: + https://deathhasnodominion.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Dickinson + - Dylan Thomas + - Frost + - Goethe + - Gryphius + - Jessenin + - Joyce + - Lasker-Schüler + - Nietzsche + - Rilke + - Trakl + - Wilde + relme: + https://deathhasnodominion.blogspot.com/: true + https://designeratorblog.blogspot.com/: true + https://strohlehmholz.blogspot.com/: true + https://www.blogger.com/profile/10055440678413337531: true + last_post_title: In deinen Augen + last_post_description: "" + last_post_date: "2011-06-30T10:24:26+02:00" + last_post_link: https://deathhasnodominion.blogspot.com/2011/06/in-deinen-augen.html + last_post_categories: + - Lasker-Schüler + last_post_language: "" + last_post_guid: a5f7e85323ef84120fec4ed801033570 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-aa7fc54b270993a0e9e36a7681b69a03.md b/content/discover/feed-aa7fc54b270993a0e9e36a7681b69a03.md new file mode 100644 index 000000000..416f0916e --- /dev/null +++ b/content/discover/feed-aa7fc54b270993a0e9e36a7681b69a03.md @@ -0,0 +1,42 @@ +--- +title: 20000 frames +date: "2023-11-15T18:51:54+01:00" +description: under the pixels +params: + feedlink: https://20000frames.blogspot.com/feeds/posts/default + feedtype: atom + feedid: aa7fc54b270993a0e9e36a7681b69a03 + websites: + https://20000frames.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://20000frames.blogspot.com/: true + https://tallefjant.blogspot.com/: true + https://www.blogger.com/profile/18257067188039583957: true + last_post_title: MWE2 Workflows using Xtend + last_post_description: "" + last_post_date: "2013-01-31T17:45:37+01:00" + last_post_link: https://20000frames.blogspot.com/2013/01/mwe2-workflows-using-xtend.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 23f8993421f753b1277d2e033c8d4d9b + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-aaa59ca374600c0b9606d8f6827fe89d.md b/content/discover/feed-aaa59ca374600c0b9606d8f6827fe89d.md new file mode 100644 index 000000000..d35de326b --- /dev/null +++ b/content/discover/feed-aaa59ca374600c0b9606d8f6827fe89d.md @@ -0,0 +1,46 @@ +--- +title: 'blog: Don Marti' +date: "1970-01-01T00:00:00Z" +description: Personal blog +params: + feedlink: https://blog.zgp.org/feed.xml + feedtype: rss + feedid: aaa59ca374600c0b9606d8f6827fe89d + websites: + https://blog.zgp.org/: true + https://blog.zgp.org/bio-disclaimer/: false + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://blog.zgp.org/: true + https://federate.social/@dmarti: true + https://github.com/dmarti/: true + https://keybase.io/dmarti: true + last_post_title: 'Big Tech platforms: mall, newspaper, or something else?' + last_post_description: The Pruneyard is “an iconic destination and experience designed + to make the everyday extraordinary.” It’s also, according to the US Supreme Court, + a business establishment that is open to the + last_post_date: "2024-07-06T00:00:00Z" + last_post_link: https://blog.zgp.org/big-tech-mall-or-newspaper/ + last_post_categories: [] + last_post_language: "" + last_post_guid: b59f3c7aa02e00247eb0d7e45f9fd680 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-aaadccb6910a3d9d4c5bd621b713643e.md b/content/discover/feed-aaadccb6910a3d9d4c5bd621b713643e.md new file mode 100644 index 000000000..0496aeb76 --- /dev/null +++ b/content/discover/feed-aaadccb6910a3d9d4c5bd621b713643e.md @@ -0,0 +1,295 @@ +--- +title: BASTIONLAND +date: "2024-07-08T22:07:47+01:00" +description: A BASTION OF ODDITY +params: + feedlink: https://www.bastionland.com/feeds/posts/default + feedtype: atom + feedid: aaadccb6910a3d9d4c5bd621b713643e + websites: + https://www.bastionland.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - "2400" + - 4e + - 5e + - AWR + - Adventure + - Agency + - Alignment + - Animals + - Apocalypse + - Arcana + - Arkbound + - Artifacts + - Ask the Stars + - Astral + - Auldskunterroy + - Automachines + - BASTIONLAND + - BSU + - Bastion + - Big Action Heroes + - Blighters + - Bonehead + - Bricks + - Bugs + - Bureaucracy + - Business + - Characters + - Choice + - Choose Your Own Oddventure + - Classes + - Clerics + - Collaboration + - Community + - Cores + - Crab + - Crusaders + - D&D + - Damage + - Deep Country + - Design + - Dice + - DieBoneheadDie! + - Difficulty + - Dinosaur Cleric + - Discord + - DnD + - EPC + - Editorial + - Electric Bastionland + - Encounters + - FKR + - Facebook + - Failed Cities + - Fallacies + - Far Lands + - Far Theories + - Fear + - Fighter + - Fighters + - Fighting Fantasy + - Five Star Chef + - Foreigners + - Free Game + - GMing + - GRIMLITE + - Game Idea + - Game Release + - Goblinpunch + - Goblins + - Golden Lands + - Google+ + - Hell-Hole + - Hellspace + - Hirelings + - Horror + - Horses + - Hotel + - Human + - ITOR + - Inheritance + - Instant + - Intergalactic Bastionland + - Interview + - Into the Dungeon + - Into the ODnD + - Invisible Eyes + - Islands + - Living Stars + - MOTO + - Mad Max + - Made Up Places + - Mapping + - Mass Appeal + - Mech + - Miniatures + - Mockeries + - Monster + - Mythic Bastionland + - NPC + - OSR + - Odd World + - OddMod + - Oddities + - Oddpendium + - Patreon + - Patrons + - PbP + - Philosophy + - Pigs + - Planes + - Player Advice + - Playtest + - Primordial + - Print & Play + - Random Table + - Rant + - Relic Walkers + - Religion + - Risus + - Rituals + - Robot World + - Rogue + - Rules + - Saves + - Saving throws + - Scarytown + - Sci Fi + - SciFi + - Searchers of the Unknown + - Servers + - Ships + - Skull + - Skullados + - Space + - Spellbook + - Spirits + - Stone Lake + - Street Fighter + - Table + - Teen Island + - The Adventurer's Tale + - The Doomed + - Thief + - Thousand Spears + - Treasure + - Twitter + - Underworld and Overworld + - Unknown! + - Use This + - VOIDHEIST + - WIL + - Wanderhome + - Warfare + - Wizard + - Wuxia + - Xenofringe + - Zombies + - advancement + - aliens + - armour + - art + - birds + - boardgames + - books + - carnival + - chainsaws + - character advancement + - city + - class + - combat + - coop + - cults + - death + - dinosaurs + - dungeon + - dungeon design + - dwarfs + - elves + - enterprise + - equipment + - example of play + - exp + - factory + - failed careers + - fantasy + - feedback + - fighting machines + - flailsnails + - fluff + - foreground growth + - game design + - goals + - gods + - greed + - guns + - hangout + - heroquest + - into the odd + - investigation + - kickstarter + - lessons learned + - lookouts + - magic + - magic items + - mass combat + - matrix game + - mechanics + - media + - module + - monsters + - muppets + - news + - npcs + - one-shot + - orcs + - playtesting + - podcast + - prep + - primeval + - project 10 + - project odd + - psionics + - race + - ramble + - retroclone + - rpg revolution + - sandbox + - setting + - setting design + - spark table + - spells + - sport + - star lands + - starter packs + - suburbia + - sunrise expansion + - swordmountain + - system + - targets + - teaching + - toolkit + - traps + - traveller + - trolls + - undead + - underground + - war + - wargames + - weapons + - weird + - witches + - x-files + relme: + https://www.bastionland.com/: true + last_post_title: Pilots & Commanders + last_post_description: "" + last_post_date: "2024-07-03T08:47:08+01:00" + last_post_link: https://www.bastionland.com/2024/07/pilots-commanders.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 62691bec108fea7fec7942c2f059d84c + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 23 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-aacf3700f1ea2a928f3b384eeba34703.md b/content/discover/feed-aacf3700f1ea2a928f3b384eeba34703.md deleted file mode 100644 index d1703b783..000000000 --- a/content/discover/feed-aacf3700f1ea2a928f3b384eeba34703.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: thomas.apestaart.org -date: "1970-01-01T00:00:00Z" -description: Present Perfect -params: - feedlink: https://thomas.apestaart.org/log/?feed=rss2 - feedtype: rss - feedid: aacf3700f1ea2a928f3b384eeba34703 - websites: - https://thomas.apestaart.org/log/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - The Playlist - - book - - documentary - - music - - newyorkcity - relme: {} - last_post_title: Meet Me in the Bathroom - last_post_description: '"Welcome to pre-9/11 New York City, when the world was unaware - of the profound political and cultural shifts about to occur, and an entire generation - was thirsty for more than the' - last_post_date: "2023-02-27T10:31:06Z" - last_post_link: https://thomas.apestaart.org/log/?p=1688 - last_post_categories: - - The Playlist - - book - - documentary - - music - - newyorkcity - last_post_guid: e515e54cf2459ad1b65f452a815e0b5d - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-aad064b15bd0f0ae137043abdcf88ec3.md b/content/discover/feed-aad064b15bd0f0ae137043abdcf88ec3.md index d2e673160..2741a5879 100644 --- a/content/discover/feed-aad064b15bd0f0ae137043abdcf88ec3.md +++ b/content/discover/feed-aad064b15bd0f0ae137043abdcf88ec3.md @@ -23,17 +23,22 @@ params: last_post_link: https://zijperspace.nl/bladluis-als-fatale-doorgeefluik/ last_post_categories: - zijperpost + last_post_language: "" last_post_guid: 8224989471c286381a45a1c9aab8effd score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 14 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: nl --- diff --git a/content/discover/feed-aadb8848074b8e95ce9ec91007b984c7.md b/content/discover/feed-aadb8848074b8e95ce9ec91007b984c7.md deleted file mode 100644 index 52cae7534..000000000 --- a/content/discover/feed-aadb8848074b8e95ce9ec91007b984c7.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: logbook -date: "1970-01-01T00:00:00Z" -description: logbook Daily Digest -params: - feedlink: https://log.kvl.me/rss-daily.xml - feedtype: rss - feedid: aadb8848074b8e95ce9ec91007b984c7 - websites: - https://log.kvl.me/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Saturday, April 27, 2024 - last_post_description: |- - # Bathroom Reno Update - Much was accomplished yesterday on our main bathroom renovation. While not a complete tear out and new start, it is close. Given limited funds and the likelihood that we’ll - last_post_date: "1970-01-01T00:00:00Z" - last_post_link: https://log.kvl.me/?date=2024-04-27 - last_post_categories: [] - last_post_guid: 7c1389deda26d53b3b10e03d96455e00 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-aaec679a1218798136e7e0df97588574.md b/content/discover/feed-aaec679a1218798136e7e0df97588574.md new file mode 100644 index 000000000..238ab43f6 --- /dev/null +++ b/content/discover/feed-aaec679a1218798136e7e0df97588574.md @@ -0,0 +1,42 @@ +--- +title: Go Free Range Blog +date: "2022-11-09T12:34:00Z" +description: "" +params: + feedlink: https://feeds.gofreerange.com/GoFreeRangeBlog + feedtype: atom + feedid: aaec679a1218798136e7e0df97588574 + websites: + https://feeds.gofreerange.com/: true + https://gofreerange.com/: false + https://gofreerange.com/james-mead: false + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://feeds.gofreerange.com/: true + last_post_title: Supporting open-source software + last_post_description: "" + last_post_date: "2022-11-09T12:34:00Z" + last_post_link: http://gofreerange.com/supporting-open-source-software + last_post_categories: [] + last_post_language: "" + last_post_guid: 88a884aed2d5c1c42be37172dd6394ca + score_criteria: + cats: 0 + description: 0 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 11 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-ab1fb9d9d1c86d17ff0aa61f76b17f4e.md b/content/discover/feed-ab1fb9d9d1c86d17ff0aa61f76b17f4e.md index 621eba776..86e42fca0 100644 --- a/content/discover/feed-ab1fb9d9d1c86d17ff0aa61f76b17f4e.md +++ b/content/discover/feed-ab1fb9d9d1c86d17ff0aa61f76b17f4e.md @@ -15,24 +15,31 @@ params: - https://jeroensangers.com/podcast.xml categories: [] relme: {} - last_post_title: Links (78) - last_post_description: 'Some debate over the merits of Minicircle, the gene therapy - startup. It''s a case of "in theory, it shouldn''t work", with "working" defined - in the most damning way: probably not even raising' - last_post_date: "2024-05-11T00:00:00Z" - last_post_link: https://nintil.com/links-78/ + last_post_title: Links (79) + last_post_description: |- + Michael Lewis (author of a recent book on FTX)'s Blind Side + Xylitol bad? + Demons and Internal Family Systems + GLP1 analogues do not cause muscle loss in excess to what one would expect via caloric + last_post_date: "2024-06-11T00:00:00Z" + last_post_link: https://nintil.com/links-79/ last_post_categories: [] - last_post_guid: d5549a0ff13692d47042a65cd76f4470 + last_post_language: "" + last_post_guid: 9c2e81f2010594395c213fb266ee2d58 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 10 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-ab227e69377329c6500825ec2c75cfa1.md b/content/discover/feed-ab227e69377329c6500825ec2c75cfa1.md deleted file mode 100644 index 65f9bf809..000000000 --- a/content/discover/feed-ab227e69377329c6500825ec2c75cfa1.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: HeydonWorks -date: "1970-01-01T00:00:00Z" -description: Writing and creative coding from Heydon Pickering -params: - feedlink: https://heydonworks.com/feed.xml - feedtype: rss - feedid: ab227e69377329c6500825ec2c75cfa1 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: [] - relme: {} - last_post_title: Testing HTML With Modern CSS - last_post_description: A long time ago, I wrote a reasonably popular bit of open - source code called REVENGE.CSS (the caps are intentional). You should know upfront, - this hasn’t been maintained for years and if I ever did - last_post_date: "2024-04-07T00:00:00Z" - last_post_link: https://heydonworks.com/article/testing-html-with-modern-css/ - last_post_categories: [] - last_post_guid: ed620ef165fecc2d37013ab1ee93e7f4 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ab2fb168720db0708d052e22ec1a9b55.md b/content/discover/feed-ab2fb168720db0708d052e22ec1a9b55.md new file mode 100644 index 000000000..161a6b9b2 --- /dev/null +++ b/content/discover/feed-ab2fb168720db0708d052e22ec1a9b55.md @@ -0,0 +1,72 @@ +--- +title: All Dead Generations +date: "1970-01-01T00:00:00Z" +description: '"[RPGs] make their own history, but they do not make it as they please; + they do not make it under self-selected circumstances, but under circumstances existing + already, given and transmitted from the' +params: + feedlink: https://alldeadgenerations.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: ab2fb168720db0708d052e22ec1a9b55 + websites: + https://alldeadgenerations.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - A Note + - Crystal Frontier + - Design + - Design Principles + - Dungeon23 + - Ethics of Play + - Exploration + - Gygax '75 + - New Games + - Nonsense + - Old Games + - Orienteering + - Plague Ships + - Play Report + - Proceduralism + - Published Items + - Review + - Supply + - Terms + - Threat + - Time + - Tombrobbers + relme: {} + last_post_title: Crystal Frontier - Ongoing Campaign - The Mud Isles + last_post_description: Joseph Grady - The Bank of England - 1830Imagining One's + Capital in Ruins...When the sky is clear and the rain breaks on the coast of Blackacre a + brown smudge beneath dark clouds mars the horizon... + last_post_date: "2024-06-17T14:07:00Z" + last_post_link: https://alldeadgenerations.blogspot.com/2024/06/crystal-frontier-ongoing-campaign-mud.html + last_post_categories: + - A Note + - Crystal Frontier + - Ethics of Play + - Nonsense + last_post_language: "" + last_post_guid: 61e4552fd3917139be42fd1ff57948e2 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 24 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-ab34785b05e8fda18d97296199648970.md b/content/discover/feed-ab34785b05e8fda18d97296199648970.md deleted file mode 100644 index d341a8574..000000000 --- a/content/discover/feed-ab34785b05e8fda18d97296199648970.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Linux Lads Podcast -date: "1970-01-01T00:00:00Z" -description: Public posts from @linuxlads@fosstodon.org -params: - feedlink: https://fosstodon.org/@linuxlads.rss - feedtype: rss - feedid: ab34785b05e8fda18d97296199648970 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ab36fa7747d09154bde42626de094ca2.md b/content/discover/feed-ab36fa7747d09154bde42626de094ca2.md new file mode 100644 index 000000000..e9e0a60bc --- /dev/null +++ b/content/discover/feed-ab36fa7747d09154bde42626de094ca2.md @@ -0,0 +1,41 @@ +--- +title: Posts on robbmann +date: "1970-01-01T00:00:00Z" +description: Recent content in Posts on robbmann +params: + feedlink: https://robbmann.io/posts/index.xml + feedtype: rss + feedid: ab36fa7747d09154bde42626de094ca2 + websites: + https://robbmann.io/posts/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://robbmann.io/posts/: true + last_post_title: Getting Emacs 29 to Automatically Use Tree-sitter Modes + last_post_description: Recently, /u/casouri posted a guide to getting started with + the new built-in tree-sitter capabilities for Emacs 29. + last_post_date: "2023-01-22T00:00:00-05:00" + last_post_link: https://robbmann.io/posts/emacs-treesit-auto/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 5de8c9803b282d58f48d2aebc2215219 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-ab43bea01ddc5d7275eddeb2675d6dcb.md b/content/discover/feed-ab43bea01ddc5d7275eddeb2675d6dcb.md deleted file mode 100644 index 7242e2bcb..000000000 --- a/content/discover/feed-ab43bea01ddc5d7275eddeb2675d6dcb.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: 'Stefan Grund :eay:' -date: "1970-01-01T00:00:00Z" -description: Public posts from @eay@eay.social -params: - feedlink: https://eay.social/@eay.rss - feedtype: rss - feedid: ab43bea01ddc5d7275eddeb2675d6dcb - websites: - https://eay.social/@eay: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://eay.cc/: true - https://eay.li/nks: true - https://stefangrund.eu/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ab4e9ad3f0992cd22723ace077d2f532.md b/content/discover/feed-ab4e9ad3f0992cd22723ace077d2f532.md index 4e27c2f87..3b9220792 100644 --- a/content/discover/feed-ab4e9ad3f0992cd22723ace077d2f532.md +++ b/content/discover/feed-ab4e9ad3f0992cd22723ace077d2f532.md @@ -14,7 +14,7 @@ params: categories: - Society & Culture relme: - https://micro.blog/annahavron: false + https://analogoffice.net/: true last_post_title: 'Office Toy: The Automatic Numbering Machine' last_post_description: |- Okay. So. This truly is an office toy for me. @@ -25,17 +25,22 @@ params: last_post_date: "2022-06-07T16:09:58-04:00" last_post_link: https://analogoffice.net/2022/06/07/office-toy-the.html last_post_categories: [] + last_post_language: "" last_post_guid: ea0259805f390c7750af4e0d445ff3b1 score_criteria: cats: 1 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 10 + score: 15 ispodcast: true isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-ab51d502ea8bf5d63fb34a92801681c7.md b/content/discover/feed-ab51d502ea8bf5d63fb34a92801681c7.md new file mode 100644 index 000000000..7e530d6d6 --- /dev/null +++ b/content/discover/feed-ab51d502ea8bf5d63fb34a92801681c7.md @@ -0,0 +1,51 @@ +--- +title: Moshe on Technology +date: "1970-01-01T00:00:00Z" +description: Software, technology, programming, security, open source and general + thoughts. +params: + feedlink: https://technomosh.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: ab51d502ea8bf5d63fb34a92801681c7 + websites: + https://technomosh.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - General + - OpenSource + - Security + - Technology + relme: + https://technomosh.blogspot.com/: true + https://www.blogger.com/profile/17093538398827635912: true + last_post_title: Securing Your Firefox + last_post_description: While its popularity suffers from a decline in the past year + or two, Firefox is still a great browser which has a lot of things to offer. One + of those things is the ability to control whether a plug + last_post_date: "2013-11-24T20:57:00Z" + last_post_link: https://technomosh.blogspot.com/2013/11/securing-your-firefox.html + last_post_categories: + - OpenSource + - Security + - Technology + last_post_language: "" + last_post_guid: 1938246bdf3c1abb5380c3ee85198604 + score_criteria: + cats: 4 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-ab5bd2ade12d05d8f0ed24a4459834a5.md b/content/discover/feed-ab5bd2ade12d05d8f0ed24a4459834a5.md new file mode 100644 index 000000000..1e814d407 --- /dev/null +++ b/content/discover/feed-ab5bd2ade12d05d8f0ed24a4459834a5.md @@ -0,0 +1,42 @@ +--- +title: Bit Of Cheese +date: "1970-01-01T00:00:00Z" +description: Highlighting interesting packages in the Cheese Shop (aka PyPI) +params: + feedlink: https://bitofcheese.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: ab5bd2ade12d05d8f0ed24a4459834a5 + websites: + https://bitofcheese.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://bitofcheese.blogspot.com/: true + last_post_title: Local PyPI Options + last_post_description: Having a central package repository has helped the Python + community immensely through sharing reusable code. There's a few issues that arise + when you start depending on such a resources though, and + last_post_date: "2013-05-07T21:39:00Z" + last_post_link: https://bitofcheese.blogspot.com/2013/05/local-pypi-options.html + last_post_categories: [] + last_post_language: "" + last_post_guid: becdcfab777f0b272379fedc593baca9 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-ab5cc6a59073af7f69db300b9f8377d6.md b/content/discover/feed-ab5cc6a59073af7f69db300b9f8377d6.md deleted file mode 100644 index 7a7c1bd86..000000000 --- a/content/discover/feed-ab5cc6a59073af7f69db300b9f8377d6.md +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: Blogpocket -date: "1970-01-01T00:00:00Z" -description: Cómo hacer un blog con WordPress -params: - feedlink: https://www.blogpocket.com/feed - feedtype: rss - feedid: ab5cc6a59073af7f69db300b9f8377d6 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - - https://danq.me/comments/feed/ - - https://danq.me/feed/ - - https://danq.me/kind/article/feed/ - - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ - categories: - - Inteligencia artificial - - Links in the rain - relme: {} - last_post_title: 'Links in the rain #18: Sonidos con la IA de IIElevenLabs; De ChatGPT - a Gemini; George Lucas y la IA; y muchas más noticias de IA' - last_post_description: |- - Links in the rain #18: Sonidos con la IA de IIElevenLabs; De ChatGPT a Gemini; George Lucas y la IA; y muchas más noticias de IA - Descubre cómo la Inteligencia Artificial está siendo implementada - last_post_date: "2024-06-04T06:00:00Z" - last_post_link: https://www.blogpocket.com/2024/06/04/links-in-the-rain-18-sonidos-con-la-ia-de-iielevenlabs-de-chatgpt-a-gemini-george-lucas-y-la-ia-y-muchas-mas-noticias-de-ia/ - last_post_categories: - - Inteligencia artificial - - Links in the rain - last_post_guid: 77c49dd7a2869a4dc7e31f195c356d9e - score_criteria: - cats: 0 - description: 3 - postcats: 2 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ab79137956893e935771961a56c51ccf.md b/content/discover/feed-ab79137956893e935771961a56c51ccf.md deleted file mode 100644 index 94cafa599..000000000 --- a/content/discover/feed-ab79137956893e935771961a56c51ccf.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Thomas Pike -date: "1970-01-01T00:00:00Z" -description: Public posts from @thomasp@vivaldi.net -params: - feedlink: https://social.vivaldi.net/@thomasp.rss - feedtype: rss - feedid: ab79137956893e935771961a56c51ccf - websites: - https://social.vivaldi.net/@thomasp: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://thomasp.vivaldi.net/: true - https://vivaldi.com/team/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-abacac3a67c5860a27d08dcc8193f301.md b/content/discover/feed-abacac3a67c5860a27d08dcc8193f301.md new file mode 100644 index 000000000..8db499f39 --- /dev/null +++ b/content/discover/feed-abacac3a67c5860a27d08dcc8193f301.md @@ -0,0 +1,40 @@ +--- +title: Comments for leftyfb's Blog +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://leftyfb.com/comments/feed/ + feedtype: rss + feedid: abacac3a67c5860a27d08dcc8193f301 + websites: + https://leftyfb.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://leftyfb.com/: true + last_post_title: Comment on Earth Hour by Earth hour 2010 + last_post_description: '[…] Mike Rushton: Earth Hour (leftyfb.com) […]' + last_post_date: "2017-06-07T07:59:40Z" + last_post_link: https://leftyfb.com/2010/03/26/earth-hour/comment-page-1/#comment-8423 + last_post_categories: [] + last_post_language: "" + last_post_guid: 15677a8cc2dee25d19cb2b5f9246abfa + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-abc3bbf3f83089df88cc941f031bdd33.md b/content/discover/feed-abc3bbf3f83089df88cc941f031bdd33.md new file mode 100644 index 000000000..7e78b5eb4 --- /dev/null +++ b/content/discover/feed-abc3bbf3f83089df88cc941f031bdd33.md @@ -0,0 +1,40 @@ +--- +title: Zach Leatherman +date: "2024-06-30T00:00:00Z" +description: A web development blog written by @zachleat. +params: + feedlink: https://www.zachleat.com/web/feed/ + feedtype: atom + feedid: abc3bbf3f83089df88cc941f031bdd33 + websites: + https://www.zachleat.com/: false + blogrolls: [] + recommended: [] + recommender: + - https://alexsci.com/blog/rss.xml + categories: [] + relme: {} + last_post_title: The Smorgasbord of Windows Terminal… Windows + last_post_description: "" + last_post_date: "2024-06-30T00:00:00Z" + last_post_link: https://www.zachleat.com/web/smorgasbord-windows-terminal/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 03ba43cdf44282de2d3b3bcae1fedce8 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 1 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-abcca88039198d6c13016c52512e5ea8.md b/content/discover/feed-abcca88039198d6c13016c52512e5ea8.md deleted file mode 100644 index 099355d89..000000000 --- a/content/discover/feed-abcca88039198d6c13016c52512e5ea8.md +++ /dev/null @@ -1,49 +0,0 @@ ---- -title: Ben Frain -date: "1970-01-01T00:00:00Z" -description: Ben Frain – author and web developer -params: - feedlink: https://benfrain.com/feed - feedtype: rss - feedid: abcca88039198d6c13016c52512e5ea8 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - - https://danq.me/comments/feed/ - - https://danq.me/feed/ - - https://danq.me/kind/article/feed/ - - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ - categories: - - Web Dev - - neovim - - Text Editing - relme: {} - last_post_title: Neovim – how to do project-wide find and replace? - last_post_description: There are plenty of occasions when using an LSP to ‘rename’ - a symbol isn’t possible. Perhaps you are amending JSON files, or some other basic - data format like csv or txt. In those instances - last_post_date: "2024-04-12T20:43:49Z" - last_post_link: https://benfrain.com/neovim-how-to-do-project-wide-find-and-replace/ - last_post_categories: - - Web Dev - - neovim - - Text Editing - last_post_guid: 43a07120c07d54393fc9a1b5265ea618 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 14 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-abd785008f8f759c9ea447a4290becd7.md b/content/discover/feed-abd785008f8f759c9ea447a4290becd7.md new file mode 100644 index 000000000..0f622e087 --- /dev/null +++ b/content/discover/feed-abd785008f8f759c9ea447a4290becd7.md @@ -0,0 +1,48 @@ +--- +title: SXEmacsen +date: "2024-07-04T08:42:48+03:00" +description: Блог о SXEmacs на русском языке +params: + feedlink: https://sxemacsen.blogspot.com/feeds/posts/default + feedtype: atom + feedid: abd785008f8f759c9ea447a4290becd7 + websites: + https://sxemacsen.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - bsoy + - ffi + - internals + - macos + - rus + - wand + - xwem + relme: + https://sxemacsen.blogspot.com/: true + last_post_title: Гестуры в xwem + last_post_description: "" + last_post_date: "2010-04-22T23:51:42+04:00" + last_post_link: https://sxemacsen.blogspot.com/2010/04/xwem.html + last_post_categories: + - xwem + last_post_language: "" + last_post_guid: a14c34799b611738be80425428021884 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-abdffb99bf32031ce0103bed90b73def.md b/content/discover/feed-abdffb99bf32031ce0103bed90b73def.md new file mode 100644 index 000000000..be30bc796 --- /dev/null +++ b/content/discover/feed-abdffb99bf32031ce0103bed90b73def.md @@ -0,0 +1,44 @@ +--- +title: Home on Jessica Journals +date: "1970-01-01T00:00:00Z" +description: Recent content in Home on Jessica Journals +params: + feedlink: https://jessicajournals.com/index.xml + feedtype: rss + feedid: abdffb99bf32031ce0103bed90b73def + websites: {} + blogrolls: [] + recommended: [] + recommender: + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php + categories: + - '#WeblogPoMo2024,' + relme: {} + last_post_title: End Of WeblogPoMo 2024 + last_post_description: 'As it is the final day in this year’s month-long #WeblogPoMo2024, + I’ve decided to write today’s post reflecting on the month, what I liked about + participating, what I struggled with, and what I' + last_post_date: "2024-05-31T00:00:00Z" + last_post_link: https://jessicajournals.com/end-of-weblogpomo-2024/ + last_post_categories: + - '#WeblogPoMo2024,' + last_post_language: "" + last_post_guid: 4c5c7062656b02bc99e2e4f8117bccd4 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 1 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 0 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-abfeb353e7dd49a71ef902d36db06df9.md b/content/discover/feed-abfeb353e7dd49a71ef902d36db06df9.md new file mode 100644 index 000000000..219b3faa7 --- /dev/null +++ b/content/discover/feed-abfeb353e7dd49a71ef902d36db06df9.md @@ -0,0 +1,47 @@ +--- +title: Computational Thoughts +date: "1970-01-01T00:00:00Z" +description: The ramblings of a passionate computer scientist +params: + feedlink: https://computationalthoughts.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: abfeb353e7dd49a71ef902d36db06df9 + websites: + https://computationalthoughts.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://ardetnattattha.blogspot.com/: true + https://computationalthoughts.blogspot.com/: true + https://futurealm.blogspot.com/: true + https://ibegynnelsen.blogspot.com/: true + https://josefsblog.blogspot.com/: true + https://www.blogger.com/profile/13272830598221833253: true + last_post_title: Powers of minus one and some bit twiddling + last_post_description: Since the start of this year I'm employed as a postdoc on + a project for designing a new domain specific language for writing dsp algorithms. + The language is called Feldspar and if you want to check + last_post_date: "2010-10-01T19:47:00Z" + last_post_link: https://computationalthoughts.blogspot.com/2010/10/powers-of-minus-one-and-some-bit.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 7d246c7f9a47ac300c7b69a23c9dc28c + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-ac0b0beb1b5a577b13d4e47dfff45304.md b/content/discover/feed-ac0b0beb1b5a577b13d4e47dfff45304.md deleted file mode 100644 index d72d905ee..000000000 --- a/content/discover/feed-ac0b0beb1b5a577b13d4e47dfff45304.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for Enriquetaso -date: "1970-01-01T00:00:00Z" -description: OpenStack-Cinder-Ceph Outreachy FOSS -params: - feedlink: https://enriquetaso.wordpress.com/comments/feed/ - feedtype: rss - feedid: ac0b0beb1b5a577b13d4e47dfff45304 - websites: - https://enriquetaso.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Let’s play with Cinder and RBD (part 2) by enriquetaso - last_post_description: |- - In reply to chewrafa. - - Hola! Perdon por la demora en la respuesta, creo que - last_post_date: "2017-05-25T20:11:30Z" - last_post_link: https://enriquetaso.wordpress.com/2016/07/29/lets-play-with-cinder-and-rbd-part-2/comment-page-1/#comment-52 - last_post_categories: [] - last_post_guid: c02fc7d946071991883176f70191ea18 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ac14a5d4d24416dd7f57e0821dc4b60d.md b/content/discover/feed-ac14a5d4d24416dd7f57e0821dc4b60d.md deleted file mode 100644 index 0cebb0e7e..000000000 --- a/content/discover/feed-ac14a5d4d24416dd7f57e0821dc4b60d.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Delta Chat -date: "1970-01-01T00:00:00Z" -description: Public posts from @delta@chaos.social -params: - feedlink: https://chaos.social/@delta.rss - feedtype: rss - feedid: ac14a5d4d24416dd7f57e0821dc4b60d - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ac1d6c43379c9e65245864f5e7628945.md b/content/discover/feed-ac1d6c43379c9e65245864f5e7628945.md new file mode 100644 index 000000000..474f8607b --- /dev/null +++ b/content/discover/feed-ac1d6c43379c9e65245864f5e7628945.md @@ -0,0 +1,45 @@ +--- +title: Mahmoud Hashemi (@mahmoud@qoto.org) +date: "1970-01-01T00:00:00Z" +description: '60 Toots, 23 Following, 49 Followers · Fintech, FOSS, and fatherhood. + And some photography: http://mahmoud.photos' +params: + feedlink: https://qoto.org/@mahmoud.rss + feedtype: rss + feedid: ac1d6c43379c9e65245864f5e7628945 + websites: + https://qoto.org/@mahmoud: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://qoto.org/@mahmoud: true + https://sedimental.org/: true + last_post_title: 'mahmoud: “Fediverse woes: Just noticed I''m missing a bunch of + updates …”' + last_post_description: 'Fediverse woes: Just noticed I''m missing a bunch of updates + from fosstodon. E.g., @pybay and @djangolondon both show months-dormant accounts + despite having posted in the last 3 days.Not really sure' + last_post_date: "2024-06-26T18:32:20Z" + last_post_link: https://qoto.org/@mahmoud/112684350841039615 + last_post_categories: [] + last_post_language: "" + last_post_guid: 0210f22ba74ccb4b407cb02c7610a62d + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-ac3133d524c55c233add8d1b2b336ca1.md b/content/discover/feed-ac3133d524c55c233add8d1b2b336ca1.md deleted file mode 100644 index d03dded5f..000000000 --- a/content/discover/feed-ac3133d524c55c233add8d1b2b336ca1.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Comments for Anxious Fox -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://anxiousfox.co.uk/comments/feed/ - feedtype: rss - feedid: ac3133d524c55c233add8d1b2b336ca1 - websites: - https://anxiousfox.co.uk/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://octodon.social/@mikesheldon: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ac45f49f2ffb39f042bf978f8536cdfe.md b/content/discover/feed-ac45f49f2ffb39f042bf978f8536cdfe.md new file mode 100644 index 000000000..ff2a5c7e5 --- /dev/null +++ b/content/discover/feed-ac45f49f2ffb39f042bf978f8536cdfe.md @@ -0,0 +1,44 @@ +--- +title: Wen.onweb +date: "2024-05-07T00:00:00Z" +description: Sofware and Development +params: + feedlink: https://melissawen.github.io/feed.xml + feedtype: rss + feedid: ac45f49f2ffb39f042bf978f8536cdfe + websites: + https://melissawen.github.io/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://melissawen.github.io/: true + last_post_title: Get Ready to 2024 Linux Display Next Hackfest in A Coruña! + last_post_description: |- + We’re excited to announce the details of our upcoming 2024 Linux Display Next + Hackfest in the beautiful city of A Coruña, Spain! + + This year’s hackfest will be hosted by Igalia and will take + last_post_date: "2024-05-07T15:33:00+01:00" + last_post_link: https://melissawen.github.io/blog/2024/05/07/get-ready-display-hackfest-2024 + last_post_categories: [] + last_post_language: "" + last_post_guid: f4a8f9c46718195bccad5b19aaa84271 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-ac70b635dd7f8a95834791157e3470d9.md b/content/discover/feed-ac70b635dd7f8a95834791157e3470d9.md deleted file mode 100644 index 78061c05c..000000000 --- a/content/discover/feed-ac70b635dd7f8a95834791157e3470d9.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: meejah -date: "1970-01-01T00:00:00Z" -description: Public posts from @meejah@mastodon.social -params: - feedlink: https://mastodon.social/@meejah.rss - feedtype: rss - feedid: ac70b635dd7f8a95834791157e3470d9 - websites: - https://mastodon.social/@meejah: true - https://mastodon.social/@meejah/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://meejah.ca/about: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ac72301d98ffd24a22d9c0fcb3068042.md b/content/discover/feed-ac72301d98ffd24a22d9c0fcb3068042.md deleted file mode 100644 index b55527479..000000000 --- a/content/discover/feed-ac72301d98ffd24a22d9c0fcb3068042.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Openstack – Adam Young's Web Log -date: "1970-01-01T00:00:00Z" -description: The Notebook of a Programmer Climber Musician Ex-Soldier Woodworker and - a few other things -params: - feedlink: https://adam.younglogic.com/category/software/openstack/feed/ - feedtype: rss - feedid: ac72301d98ffd24a22d9c0fcb3068042 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Openstack - - Software - relme: {} - last_post_title: Running Keystone in development mode on Ubuntu 22.04 - last_post_description: 'Things have diverged a bit from the docs. Just want to document - here what I got working: I had already checked out Keystone and run the unit tests. - I needed uwsgi Then a modified command line to run' - last_post_date: "2024-04-15T18:30:08Z" - last_post_link: https://adam.younglogic.com/2024/04/running-keystone-in-development-mode-on-ubuntu-22-04/ - last_post_categories: - - Openstack - - Software - last_post_guid: 30bb38ee1d9d678d8d3b362ecd1d193a - score_criteria: - cats: 0 - description: 3 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ac7f61816a1cbf9dc68cfe43131acb35.md b/content/discover/feed-ac7f61816a1cbf9dc68cfe43131acb35.md deleted file mode 100644 index 7de36cf9e..000000000 --- a/content/discover/feed-ac7f61816a1cbf9dc68cfe43131acb35.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Nicolas Hoizey -date: "1970-01-01T00:00:00Z" -description: Public posts from @nhoizey@mamot.fr -params: - feedlink: https://mamot.fr/@nhoizey.rss - feedtype: rss - feedid: ac7f61816a1cbf9dc68cfe43131acb35 - websites: - https://mamot.fr/@nhoizey: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://clever-age.com/: false - https://nicolas-hoizey.com/: true - https://nicolas-hoizey.photo/: true - https://play.esviji.com/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ac9b60b7b971acd5dc9a3d9e4dda87a9.md b/content/discover/feed-ac9b60b7b971acd5dc9a3d9e4dda87a9.md deleted file mode 100644 index 02eaa2886..000000000 --- a/content/discover/feed-ac9b60b7b971acd5dc9a3d9e4dda87a9.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: 'Joel :void: :casio:' -date: "1970-01-01T00:00:00Z" -description: Public posts from @joel@fosstodon.org -params: - feedlink: https://fosstodon.org/@joel.rss - feedtype: rss - feedid: ac9b60b7b971acd5dc9a3d9e4dda87a9 - websites: - https://fosstodon.org/@joel: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://joelchrono.xyz/: true - https://joelchrono.xyz/contact: true - https://keyoxide.org/2281776180B00C8FBA30BEA4E23D9C7FA57497A6: false - https://ko-fi.com/joelchrono: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ac9f05b66775dbb3c4a90f11c75c66c4.md b/content/discover/feed-ac9f05b66775dbb3c4a90f11c75c66c4.md index ad6b72486..c0f79bfe8 100644 --- a/content/discover/feed-ac9f05b66775dbb3c4a90f11c75c66c4.md +++ b/content/discover/feed-ac9f05b66775dbb3c4a90f11c75c66c4.md @@ -11,30 +11,34 @@ params: blogrolls: [] recommended: [] recommender: - - https://kevq.uk/feed - - https://kevq.uk/feed.xml - - https://kevq.uk/feed/ - https://kevquirk.com/feed + - https://kevquirk.com/feed/ + - https://kevquirk.com/notes-feed categories: [] relme: {} - last_post_title: Query to check the size of each table in a database - last_post_description: Sometimes the database keeps growing and you want to figure - out which table(s) are causing the issue. It happens sometimes for me on Craft - CMS projects.I then find it useful to be able to isolate the - last_post_date: "2024-05-15T00:00:00Z" - last_post_link: https://www.eddiedale.com/blog/query-to-check-the-size-of-each-table-in-a-database + last_post_title: Sanity Content Lake - Their data, not yours + last_post_description: 'I have an issue with the Sanity Content Lake. The Sanity + Content Lake is where your content is stored and accessed. It runs in the cloud + and is fully managed by us.What I read: your data is ours, and' + last_post_date: "2024-06-12T00:00:00Z" + last_post_link: https://www.eddiedale.com/blog/sanity-content-lake-their-data-not-yours last_post_categories: [] - last_post_guid: 1b1eab247acbadb126b817f6059aa4ea + last_post_language: "" + last_post_guid: 7a03ff8ce4286fde8c55a5b953755415 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 11 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-aca1d2b2a00d9ce4eaff4da512d9a6b8.md b/content/discover/feed-aca1d2b2a00d9ce4eaff4da512d9a6b8.md deleted file mode 100644 index 70f25c10f..000000000 --- a/content/discover/feed-aca1d2b2a00d9ce4eaff4da512d9a6b8.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Barry Frost -date: "1970-01-01T00:00:00Z" -description: Barry Frost's personal website. -params: - feedlink: https://barryfrost.com/rss - feedtype: rss - feedid: aca1d2b2a00d9ce4eaff4da512d9a6b8 - websites: - https://barryfrost.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://barryfrost.com/: true - https://fed.brid.gy/r/https:/barryfrost.com/: false - https://github.com/barryf: true - https://mastodon.social/@barryf: true - last_post_title: Week 145 - Robot - last_post_description: |- - I was happy to be back home after my US trip, with a bank holiday to catch up on sleep. I think I'm just about readjusted now. - It's been half-term holidays for the boys. My in-laws stayed with us for - last_post_date: "2024-06-03T19:08:18Z" - last_post_link: https://barryfrost.com/2024/06/week-145-robot - last_post_categories: [] - last_post_guid: 6a39ffef6a496c5dc031793a0f2c12b8 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-acaff842ea416857401e00fe085dcdc7.md b/content/discover/feed-acaff842ea416857401e00fe085dcdc7.md new file mode 100644 index 000000000..76c951fd9 --- /dev/null +++ b/content/discover/feed-acaff842ea416857401e00fe085dcdc7.md @@ -0,0 +1,52 @@ +--- +title: חיפושים כמשל +date: "1970-01-01T00:00:00Z" +description: אָמִיר אַהֲרוֹנִי לָמַד עִבְרִית, אָמִיר אַהֲרוֹנִי לָמַד עִבְרִית +params: + feedlink: https://haharoni.wordpress.com/feed/ + feedtype: rss + feedid: acaff842ea416857401e00fe085dcdc7 + websites: + https://haharoni.wordpress.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - חלומות + - עברית + - תל אביב + relme: + https://aharoni.wordpress.com/: true + https://aprenent.wordpress.com/: true + https://haharoni.wordpress.com/: true + https://hasagot.wordpress.com/: true + https://meta.wikimedia.org/wiki/User:Amire80: true + https://wikis.world/@aharoni: true + last_post_title: טרטטה + last_post_description: חלמתי שקיבלתי מעיריית תל־אביב מכתב שדורש ממני למלא איזשהו + טופס או לשלם איזשהו קנס. המכתב היה מנומס בצורה + last_post_date: "2024-07-09T02:46:19Z" + last_post_link: https://haharoni.wordpress.com/2024/07/09/tarteta/ + last_post_categories: + - חלומות + - עברית + - תל אביב + last_post_language: "" + last_post_guid: 25090472f3d3bf26d10f80046d9290ea + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: he +--- diff --git a/content/discover/feed-acb953614dedaf84a8d7231d47ed3b0c.md b/content/discover/feed-acb953614dedaf84a8d7231d47ed3b0c.md deleted file mode 100644 index 12b546dc6..000000000 --- a/content/discover/feed-acb953614dedaf84a8d7231d47ed3b0c.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: K-9 Mail -date: "2024-05-16T22:07:11+02:00" -description: K-9 Mail is an open source email client focused on making it easy to - chew through large volumes of email -params: - feedlink: https://k9mail.app/feed.xml - feedtype: atom - feedid: acb953614dedaf84a8d7231d47ed3b0c - websites: - https://k9mail.app/: true - blogrolls: [] - recommended: [] - recommender: - - https://jlelse.blog/.min.rss - - https://jlelse.blog/.rss - - https://jlelse.blog/index.xml - categories: [] - relme: - https://mastodon.online/@thunderbird: false - last_post_title: When Will Thunderbird For Android Be Released? - last_post_description: When it's done. - last_post_date: "2023-12-28T13:00:00+01:00" - last_post_link: https://k9mail.app/2023/12/28/When-will-Thunderbird-for-Android-be-released.html - last_post_categories: [] - last_post_guid: b6388c5968a7550cc1741cfe99819889 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 14 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ace7dc757a28e4ed3a81989ab0f479c1.md b/content/discover/feed-ace7dc757a28e4ed3a81989ab0f479c1.md new file mode 100644 index 000000000..1008dece0 --- /dev/null +++ b/content/discover/feed-ace7dc757a28e4ed3a81989ab0f479c1.md @@ -0,0 +1,42 @@ +--- +title: Serge Beauchamp +date: "2024-03-08T06:07:02-08:00" +description: "" +params: + feedlink: https://sergebeauchamp.blogspot.com/feeds/posts/default + feedtype: atom + feedid: ace7dc757a28e4ed3a81989ab0f479c1 + websites: + https://sergebeauchamp.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://sergebeauchamp.blogspot.com/: true + https://sergesanswers.blogspot.com/: true + https://www.blogger.com/profile/07166227267587165456: true + last_post_title: Have you missed this presentation? + last_post_description: "" + last_post_date: "2013-11-01T08:32:35-07:00" + last_post_link: https://sergebeauchamp.blogspot.com/2011/03/have-you-missed-this-presentation.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 124b43d3b0cab3b3ee6924b04459ea13 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-acea43d10b223f726c7eaef71ff5cf43.md b/content/discover/feed-acea43d10b223f726c7eaef71ff5cf43.md deleted file mode 100644 index 876efd253..000000000 --- a/content/discover/feed-acea43d10b223f726c7eaef71ff5cf43.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: kepano -date: "1970-01-01T00:00:00Z" -description: Public posts from @kepano@mastodon.social -params: - feedlink: https://mastodon.social/@kepano.rss - feedtype: rss - feedid: acea43d10b223f726c7eaef71ff5cf43 - websites: - https://mastodon.social/@kepano: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://obsidian.md/: false - https://stephango.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-acf257f77ab960e73ca974373831874f.md b/content/discover/feed-acf257f77ab960e73ca974373831874f.md new file mode 100644 index 000000000..375991a3f --- /dev/null +++ b/content/discover/feed-acf257f77ab960e73ca974373831874f.md @@ -0,0 +1,139 @@ +--- +title: Uber Memes +date: "1970-01-01T00:00:00Z" +description: Uber is so popular and therefore we have good collection of Uber Memes. +params: + feedlink: https://buzzbgoneus.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: acf257f77ab960e73ca974373831874f + websites: + https://buzzbgoneus.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Get hug collection of Uber Memes. + last_post_description: Uber is inseparable from taxis, with travelers, and to drivers. + It's essentially a reference administration. The application is entrenched in + the business world. Even though we've all pondered where + last_post_date: "2020-11-05T17:17:00Z" + last_post_link: https://buzzbgoneus.blogspot.com/2020/11/get-hug-collection-of-uber-memes.html + last_post_categories: [] + last_post_language: "" + last_post_guid: e2c08be0d4f7838145bad440afeacb63 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-acf7ef31cf7ca2baaff229bc94ce7401.md b/content/discover/feed-acf7ef31cf7ca2baaff229bc94ce7401.md deleted file mode 100644 index f1218631a..000000000 --- a/content/discover/feed-acf7ef31cf7ca2baaff229bc94ce7401.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for Hype Cycles -date: "1970-01-01T00:00:00Z" -description: Things that catch my eye; open source, photography, technology, and more -params: - feedlink: https://hypecycles.com/comments/feed/ - feedtype: rss - feedid: acf7ef31cf7ca2baaff229bc94ce7401 - websites: - https://hypecycles.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Addressing a common misconception regarding OpenStack - Trove security by Architectural nuances of OpenStack. Databases as a Service, - Trove Implementation - TechBurst Magazine - last_post_description: '[…] of components with keys K1, K2, K3. Diagram of Blog - one of the developers, where he explains the security […]' - last_post_date: "2024-02-11T21:46:26Z" - last_post_link: https://hypecycles.com/2017/01/05/addressing-a-common-misconception-regarding-openstack-trove-security/#comment-124835 - last_post_categories: [] - last_post_guid: 1af831ba99f165552bda4ac1c61218f5 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-acfbac925a6376b2fdd1fbbac66ffb86.md b/content/discover/feed-acfbac925a6376b2fdd1fbbac66ffb86.md deleted file mode 100644 index 59042996b..000000000 --- a/content/discover/feed-acfbac925a6376b2fdd1fbbac66ffb86.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Comments for Neon Dystopia -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://www.neondystopia.com/?feed=comments-rss2 - feedtype: rss - feedid: acfbac925a6376b2fdd1fbbac66ffb86 - websites: - https://www.neondystopia.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ad256d8096e2c60ce9b00d9128abe437.md b/content/discover/feed-ad256d8096e2c60ce9b00d9128abe437.md index 2f715e678..7b724956e 100644 --- a/content/discover/feed-ad256d8096e2c60ce9b00d9128abe437.md +++ b/content/discover/feed-ad256d8096e2c60ce9b00d9128abe437.md @@ -1,6 +1,6 @@ --- title: MetaFilter -date: "2024-06-04T10:28:20Z" +date: "2024-07-09T00:15:48Z" description: The past 24 hours of MetaFilter params: feedlink: https://feeds.feedburner.com/Metafilter @@ -10,42 +10,47 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: - - ANSI - - ISO - - keyboard - - layout + - AgainstMe! + - AustinLucas + - Transgender + - country + - punk + - queer relme: {} - last_post_title: Your computer keyboard is prejudiced against some programming languages - last_post_description: German computer user discovered that programming is much - easier on an American ANSI keyboard than his native German ISO-DE keyboard... - in most programming languages except HTML (which is a Markup - last_post_date: "2024-06-04T10:28:20Z" - last_post_link: https://www.metafilter.com/204010/Your-computer-keyboard-is-prejudiced-against-some-programming-languages + last_post_title: I Don't Want to Be Alone in Mephis + last_post_description: Austin Lucas [previously] is a country punk performer whose + soulful and angry music is quite something. Anyway, they have relatively recently + come out as queer and trans.A few songs to get you + last_post_date: "2024-07-09T00:15:48Z" + last_post_link: https://www.metafilter.com/204555/I-Dont-Want-to-Be-Alone-in-Mephis last_post_categories: - - ANSI - - ISO - - keyboard - - layout - last_post_guid: 2766de1fd8cdc4d40ba275428ce7e50f + - AgainstMe! + - AustinLucas + - Transgender + - country + - punk + - queer + last_post_language: "" + last_post_guid: 702d24eea66a449b74f26a93b460afd7 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 14 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-ad31fab46abf95ec346645dcd02f63fc.md b/content/discover/feed-ad31fab46abf95ec346645dcd02f63fc.md deleted file mode 100644 index 8d8dfd53b..000000000 --- a/content/discover/feed-ad31fab46abf95ec346645dcd02f63fc.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: '@letorey.co.uk - Dave Letorey' -date: "1970-01-01T00:00:00Z" -description: |- - Organiser: https://londonwebstandards.org - Dancer: Gigs/Clubs/Festivals - Owner: https://code-red.uk - Wearer: Red Hats -params: - feedlink: https://bsky.app/profile/did:plc:ikhamm6zxx2jptsa45lxomqm/rss - feedtype: rss - feedid: ad31fab46abf95ec346645dcd02f63fc - websites: - https://bsky.app/profile/letorey.co.uk: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ad4e2621e7aa2d66a08e58547ec4c0b3.md b/content/discover/feed-ad4e2621e7aa2d66a08e58547ec4c0b3.md new file mode 100644 index 000000000..eb9be48fb --- /dev/null +++ b/content/discover/feed-ad4e2621e7aa2d66a08e58547ec4c0b3.md @@ -0,0 +1,43 @@ +--- +title: Learning to draw +date: "2024-03-13T04:49:58Z" +description: Shameful beginnings +params: + feedlink: https://i-want-to-paint.blogspot.com/feeds/posts/default + feedtype: atom + feedid: ad4e2621e7aa2d66a08e58547ec4c0b3 + websites: + https://i-want-to-paint.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://foreach-hour-life.blogspot.com/: true + https://i-want-to-paint.blogspot.com/: true + https://jc-rambling-fool.blogspot.com/: true + https://www.blogger.com/profile/02963297031531256476: true + last_post_title: Nature/nurture music and art. + last_post_description: "" + last_post_date: "2012-07-17T13:25:05+01:00" + last_post_link: https://i-want-to-paint.blogspot.com/2012/07/naturenurture-music-and-art.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 1d6ef261a5793c8a3702f54c79dd096c + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-ad5793171cc391ab190a7e44876cb502.md b/content/discover/feed-ad5793171cc391ab190a7e44876cb502.md new file mode 100644 index 000000000..8e4d2e305 --- /dev/null +++ b/content/discover/feed-ad5793171cc391ab190a7e44876cb502.md @@ -0,0 +1,122 @@ +--- +title: Lin.ear th.inking +date: "1970-01-01T00:00:00Z" +description: Because the shortest distance between two thoughts is a straight line +params: + feedlink: https://lin-ear-th-inking.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: ad5793171cc391ab190a7e44876cb502 + websites: + https://lin-ear-th-inking.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - GEOS + - GTFS + - JUMP + - OpenLayers + - QGIS + - REST + - SQL + - algorithms + - big data + - bing + - books + - cartography + - cloud computing + - computation + - computational geometry + - computer art + - computer languages + - conference + - conflation + - coverage + - crime + - data model + - database + - esri + - foss4g + - fractals + - functional programming + - geocoding + - geometry + - geoserver + - geospatial + - geoweb + - gis + - google + - google-earth + - gps + - hardware + - history + - humour + - java + - javascript + - jeql + - json + - jts + - kml + - lisp + - maps + - mathematics + - microsoft + - news + - nostalgia + - ogc simple features + - open source + - opengeo + - openstreetmap + - overlay + - population explosion + - postgis + - postgres + - pre-cambrian-pc + - presentations + - raster + - robotics + - software + - spatial index + - topology + - uml + - visualization + - web + - web mapping + relme: + https://call-of-the-wild.blogspot.com/: true + https://lin-ear-th-inking.blogspot.com/: true + https://www.blogger.com/profile/02383381220154739793: true + last_post_title: RelateNG Performance + last_post_description: A previous post introduced a new algorithm in the JTS Topology + Suite called RelateNG.  It computes topological relationships between geometries + using the Dimensionally-Extended 9 Intersection + last_post_date: "2024-05-27T23:14:00Z" + last_post_link: https://lin-ear-th-inking.blogspot.com/2024/05/relateng-performance.html + last_post_categories: + - GEOS + - algorithms + - computational geometry + - geometry + - geospatial + - jts + - ogc simple features + - topology + last_post_language: "" + last_post_guid: c3e45d949af6acc6597a1b1a0b3d8cf3 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-ad5b8612ecf7e442040412910324a799.md b/content/discover/feed-ad5b8612ecf7e442040412910324a799.md new file mode 100644 index 000000000..dbb59bcfc --- /dev/null +++ b/content/discover/feed-ad5b8612ecf7e442040412910324a799.md @@ -0,0 +1,52 @@ +--- +title: RFS2 +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://rockabillfilmsociety.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: ad5b8612ecf7e442040412910324a799 + websites: + https://rockabillfilmsociety.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://boardgamethoughts.blogspot.com/: true + https://coderthoughts.blogspot.com/: true + https://hikersthoughts.blogspot.com/: true + https://laarderhoogt.blogspot.com/: true + https://lightdarknesspainting.blogspot.com/: true + https://on-software-architecture.blogspot.com/: true + https://osgithoughts.blogspot.com/: true + https://rockabillfilmsoc.blogspot.com/: true + https://rockabillfilmsociety.blogspot.com/: true + https://testblogaswebsite.blogspot.com/: true + https://www.blogger.com/profile/13786738766478890804: true + last_post_title: Spring Season 2023 + last_post_description: 'Dir: Claire Denis, 2022, France, 116 mins, Cert: 16 (IFCO)Cast: + Juliette Binoche, Vincent Lindon, Grégorie ColinLanguage: FrenchTrailer: https://www.youtube.com/watch?v=OBTJTtOiuzgRadio + presenter' + last_post_date: "2023-01-02T17:15:00Z" + last_post_link: https://rockabillfilmsociety.blogspot.com/2023/01/spring-season-2023.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 3df281792ae29e3a1a42f86857b84c92 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-ad6ed094bc1557e47faa510afe010ea4.md b/content/discover/feed-ad6ed094bc1557e47faa510afe010ea4.md new file mode 100644 index 000000000..1766c8cf0 --- /dev/null +++ b/content/discover/feed-ad6ed094bc1557e47faa510afe010ea4.md @@ -0,0 +1,44 @@ +--- +title: open-dev network +date: "1970-01-01T00:00:00Z" +description: Das Netzwerk meiner Devices +params: + feedlink: https://www.open-dev.de/feed/ + feedtype: rss + feedid: ad6ed094bc1557e47faa510afe010ea4 + websites: + https://www.open-dev.de/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - /plays + relme: + https://www.open-dev.de/: true + last_post_title: '/plays: The Division' + last_post_description: Wir sind zurück und haben direkt in die Vollen gegriffen + – Tom Clancy’s The Division ist unser Thema und wir erzählen, was wir von dem + Titel halten. Also – press play to join – und hör uns + last_post_date: "2016-05-18T16:30:14Z" + last_post_link: https://www.open-dev.de/blog/plays/plays-the-division/ + last_post_categories: + - /plays + last_post_language: "" + last_post_guid: 590e8e3e4898c46ea64d901792b172dc + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: de +--- diff --git a/content/discover/feed-ad6ef59f219e679491b1a4557ca43a72.md b/content/discover/feed-ad6ef59f219e679491b1a4557ca43a72.md deleted file mode 100644 index 32b2b8845..000000000 --- a/content/discover/feed-ad6ef59f219e679491b1a4557ca43a72.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Thoughts From Eric -date: "1970-01-01T00:00:00Z" -description: Things that Eric A. Meyer, CSS expert, writes about on his personal Web - site; it's largely Web standards and Web technology, but also various bits of culture, - politics, personal observations, and -params: - feedlink: https://www.meyerweb.com/eric/thoughts/rss2/full - feedtype: rss - feedid: ad6ef59f219e679491b1a4557ca43a72 - websites: - https://www.meyerweb.com/feeds/excuse/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Hacks - - JavaScript - - Tools - - Web - relme: {} - last_post_title: 'Bookmarklet: Load All GitHub Comments' - last_post_description: A quick way to load all the comments on a GitHub issue. - last_post_date: "2024-02-05T14:49:46Z" - last_post_link: https://meyerweb.com/eric/thoughts/2024/02/05/bookmarklet-load-all-github-comments/ - last_post_categories: - - Hacks - - JavaScript - - Tools - - Web - last_post_guid: 3940ed14de157cc79cef1aaf0963fca6 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ad80f29093a8d63c842d6bee6c6ffa55.md b/content/discover/feed-ad80f29093a8d63c842d6bee6c6ffa55.md deleted file mode 100644 index 713735ed5..000000000 --- a/content/discover/feed-ad80f29093a8d63c842d6bee6c6ffa55.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: OpenStack Archives | SUSE Communities -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://www.suse.com/c/tag/openstack/feed/ - feedtype: rss - feedid: ad80f29093a8d63c842d6bee6c6ffa55 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Events - - SUSECON - - Ceph - - Containers - - DevOps - - Kubernetes - - microservices - - OpenStack - relme: {} - last_post_title: Transformation and Future Trends at SUSECON 2019 - last_post_description: At the core of nearly all digital transformation initiatives - is technology that helps companies move faster, drive innovation and fuel growth—all - without missing a beat in day-to-day operations. - last_post_date: "2019-02-28T01:53:46Z" - last_post_link: https://www.suse.com/c/transformation-and-future-trends-at-susecon-2019/ - last_post_categories: - - Events - - SUSECON - - Ceph - - Containers - - DevOps - - Kubernetes - - microservices - - OpenStack - last_post_guid: e47fafa16e711707e14c47bcb4174e8d - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ad950114fc741a2a486cf7dd79f7fc9d.md b/content/discover/feed-ad950114fc741a2a486cf7dd79f7fc9d.md new file mode 100644 index 000000000..a6a632a26 --- /dev/null +++ b/content/discover/feed-ad950114fc741a2a486cf7dd79f7fc9d.md @@ -0,0 +1,137 @@ +--- +title: Uber Fun Refresh +date: "2024-02-07T02:26:41-08:00" +description: This blog is collection of Uber meme. Share for aware. +params: + feedlink: https://memoryrefresh.blogspot.com/feeds/posts/default + feedtype: atom + feedid: ad950114fc741a2a486cf7dd79f7fc9d + websites: + https://memoryrefresh.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Get Numberless Collection on Uber Meme + last_post_description: "" + last_post_date: "2020-11-22T02:33:03-08:00" + last_post_link: https://memoryrefresh.blogspot.com/2020/11/get-numberless-collection-on-uber-meme.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 91d53d213e3e1ab26abd6a20aa9cc1db + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-ad9c6f4e1d2cf7971350628451c73575.md b/content/discover/feed-ad9c6f4e1d2cf7971350628451c73575.md deleted file mode 100644 index c563f073c..000000000 --- a/content/discover/feed-ad9c6f4e1d2cf7971350628451c73575.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Humane Guild -date: "1970-01-01T00:00:00Z" -description: Recent content on Humane Guild -params: - feedlink: https://www.humaneguild.com/index.xml - feedtype: rss - feedid: ad9c6f4e1d2cf7971350628451c73575 - websites: - https://www.humaneguild.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://hachyderm.io/@humaneguild: true - last_post_title: May the bridges I burn light the way - last_post_description: 'Difficult experiences can be compounded by our tendency - to keep them private. It’s no surprise that we do keep uncomfortable experiences - private. There is a lot at stake: hanging on to a paycheck,' - last_post_date: "2023-07-13T00:00:00Z" - last_post_link: http://www.humaneguild.com/post/3-burning-bridges/ - last_post_categories: [] - last_post_guid: 6ccd279ad9816e205e8574e5357c982d - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ad9d9d597abb1abf41eab2ab1eb8beb0.md b/content/discover/feed-ad9d9d597abb1abf41eab2ab1eb8beb0.md new file mode 100644 index 000000000..a7e9b6d7b --- /dev/null +++ b/content/discover/feed-ad9d9d597abb1abf41eab2ab1eb8beb0.md @@ -0,0 +1,48 @@ +--- +title: Bethany Nowviskie +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://nowviskie.org/feed/ + feedtype: rss + feedid: ad9d9d597abb1abf41eab2ab1eb8beb0 + websites: + https://nowviskie.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - administrivia + - digital humanities + - past lives + relme: + https://glammr.us/@nowviskie: true + https://nowviskie.org/: true + last_post_title: remarks (DH@30, UVa) + last_post_description: '[Last week, it was my privilege to participate in an event + celebrating the anniversary of centers and institutes that have...' + last_post_date: "2022-11-18T23:47:47Z" + last_post_link: https://nowviskie.org/2022/remarks-dh30-uva/ + last_post_categories: + - administrivia + - digital humanities + - past lives + last_post_language: "" + last_post_guid: 09a6522939ff38ebf2430f520a29f257 + score_criteria: + cats: 0 + description: 0 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-ada3e6b735de62bd25761f75d8be4c09.md b/content/discover/feed-ada3e6b735de62bd25761f75d8be4c09.md new file mode 100644 index 000000000..e2f5a5623 --- /dev/null +++ b/content/discover/feed-ada3e6b735de62bd25761f75d8be4c09.md @@ -0,0 +1,44 @@ +--- +title: Ploum.net +date: "2024-07-03T07:42:41Z" +description: le blog de Lionel Dricot +params: + feedlink: https://ploum.net/atom.xml + feedtype: atom + feedid: ada3e6b735de62bd25761f75d8be4c09 + websites: + https://ploum.net/: true + https://ploum.net/about.html: false + https://ploum.net/index_en.html: false + https://ploum.net/index_fr.html: false + https://ploum.net/livres.html: false + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://ploum.net/: true + last_post_title: Petit dictionnaire du spammeur + last_post_description: "" + last_post_date: "2024-07-03T00:00:00Z" + last_post_link: https://ploum.net/2024-07-03-dico-du-spam.html + last_post_categories: [] + last_post_language: "" + last_post_guid: b4670674b747057df3d89464057b223e + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: fr +--- diff --git a/content/discover/feed-adbfd3a03857f5d7658553b6b3eaf057.md b/content/discover/feed-adbfd3a03857f5d7658553b6b3eaf057.md deleted file mode 100644 index 9f6a2abf6..000000000 --- a/content/discover/feed-adbfd3a03857f5d7658553b6b3eaf057.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Thibault Saunier's blog -date: "1970-01-01T00:00:00Z" -description: thiblahute hacking web log -params: - feedlink: https://blogs.gnome.org/tsaunier/feed/ - feedtype: rss - feedid: adbfd3a03857f5d7658553b6b3eaf057 - websites: - https://blogs.gnome.org/tsaunier/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: 'GStreamer: one repository to rule them all' - last_post_description: For the last years, the GStreamer community has been analysing - and discussing the idea of merging all the modules into one single repository. - Since all the official modules are released in sync and - last_post_date: "2021-09-29T21:34:13Z" - last_post_link: https://blogs.gnome.org/tsaunier/2021/09/29/gstreamer-one-repository-to-rule-them-all/ - last_post_categories: [] - last_post_guid: f6f569ffe915063dd0beda7570c5cd4e - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-adc6d8dd78750c3d057fc868616e9902.md b/content/discover/feed-adc6d8dd78750c3d057fc868616e9902.md deleted file mode 100644 index 01b8a7440..000000000 --- a/content/discover/feed-adc6d8dd78750c3d057fc868616e9902.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Life as a Physicist -date: "2017-12-28T06:25:21Z" -description: Particle Physicist. In the wild. -params: - feedlink: https://gordonwatts.wordpress.com/feed/atom/ - feedtype: atom - feedid: adc6d8dd78750c3d057fc868616e9902 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Uncategorized - relme: {} - last_post_title: Christmas Project - last_post_description: Every Christmas I try to do some sort of project. Something - new. Sometimes it turns into something real, and last for years. Sometimes it - goes no where. Normally, I have an idea of what I’m going - last_post_date: "2017-12-28T06:25:21Z" - last_post_link: https://gordonwatts.wordpress.com/2017/12/28/christmas-project/ - last_post_categories: - - Uncategorized - last_post_guid: ebd02cfe0a3bc63f85d3105f4003c8ba - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-adc8138bf722bea1debd0277890ade62.md b/content/discover/feed-adc8138bf722bea1debd0277890ade62.md new file mode 100644 index 000000000..471cdea6f --- /dev/null +++ b/content/discover/feed-adc8138bf722bea1debd0277890ade62.md @@ -0,0 +1,44 @@ +--- +title: Stories by Doug Schaefer on Medium +date: "1970-01-01T00:00:00Z" +description: Stories by Doug Schaefer on Medium +params: + feedlink: https://medium.com/feed/@dougschaefer + feedtype: rss + feedid: adc8138bf722bea1debd0277890ade62 + websites: + https://medium.com/@dougschaefer?source=rss-8f7a70438965------2: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - cdt + - eclipse + relme: + https://medium.com/@dougschaefer?source=rss-8f7a70438965------2: true + last_post_title: Time for Change + last_post_description: "" + last_post_date: "2019-09-03T14:56:55Z" + last_post_link: https://medium.com/@dougschaefer/time-for-change-54156200cab8?source=rss-8f7a70438965------2 + last_post_categories: + - cdt + - eclipse + last_post_language: "" + last_post_guid: db551235f32598abfe6389e6a5728b7f + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-ae17439a96723d28d43bd5500c74b3e8.md b/content/discover/feed-ae17439a96723d28d43bd5500c74b3e8.md new file mode 100644 index 000000000..0d8a2ce1a --- /dev/null +++ b/content/discover/feed-ae17439a96723d28d43bd5500c74b3e8.md @@ -0,0 +1,55 @@ +--- +title: The Eclipse Study +date: "2024-03-08T15:02:39+01:00" +description: "" +params: + feedlink: https://the-eclipse-study.blogspot.com/feeds/posts/default + feedtype: atom + feedid: ae17439a96723d28d43bd5500c74b3e8 + websites: + https://the-eclipse-study.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Eclipse; grounded theory; plug-in architectures; open source software development; + software testing; + - GUI Testing; eclipse; testing; study; plug-in systems; best practices; + - eclipse; eclipse day; eclipse day delft; software development; event; + - eclipse; testing; plug-in systems; event; call for papers + - eclipse; testing; study; plug-in systems; best practices; reading + - eclipse; testing; study; plug-in systems; best practices; survey + - eclipse; testing; study; plug-in systems; best practices; test suite understanding + - eclipse; testing; study; plug-in systems; participation + - software engineering + relme: + https://blottingpad.blogspot.com/: true + https://the-eclipse-study.blogspot.com/: true + https://www.blogger.com/profile/08831566630451286674: true + last_post_title: This was the first Eclipse Day Delft - A Summary + last_post_description: "" + last_post_date: "2013-02-07T17:48:57+01:00" + last_post_link: https://the-eclipse-study.blogspot.com/2012/10/this-was-first-eclipse-day-delft.html + last_post_categories: + - Eclipse; grounded theory; plug-in architectures; open source software development; + software testing; + - eclipse; eclipse day; eclipse day delft; software development; event; + last_post_language: "" + last_post_guid: 723e75e2c85f99ff7a5b46345f33d31c + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-ae2165bf175b437ef6bbdf22a884fc4a.md b/content/discover/feed-ae2165bf175b437ef6bbdf22a884fc4a.md new file mode 100644 index 000000000..5fd51dfc6 --- /dev/null +++ b/content/discover/feed-ae2165bf175b437ef6bbdf22a884fc4a.md @@ -0,0 +1,61 @@ +--- +title: opendev on Pixelfed +date: "2023-01-21T07:50:55Z" +description: |- + I’m taking pictures with an iPhone every now and then. + + My Pics are licensed under CC BY-NC-SA 4.0 (https://creativecommons.org/licenses/by-nc-sa/4.0/) + + You can also find me on https://chaos +params: + feedlink: https://pixelfed.de/users/opendev.atom + feedtype: atom + feedid: ae2165bf175b437ef6bbdf22a884fc4a + websites: + https://pixelfed.de/opendev: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - '#northsea' + - '#iPhonePhotography' + - '#sea' + - '#föhr' + - '#föhrliebt' + relme: + https://pixelfed.de/opendev: true + last_post_title: |- + Stormy stairway + + #northsea #iPhonePhotography #sea #föhr #föhrliebt + last_post_description: |- + Stormy stairway + + #northsea #iPhonePhotography #sea #föhr #föhrliebt + last_post_date: "2023-01-21T07:50:55Z" + last_post_link: https://pixelfed.de/p/opendev/522304326220804718 + last_post_categories: + - '#northsea' + - '#iPhonePhotography' + - '#sea' + - '#föhr' + - '#föhrliebt' + last_post_language: "" + last_post_guid: 360d3d7c3259c7f1926e65b937d67a00 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-ae298f2ab519dc8b6d1e94437f19ec53.md b/content/discover/feed-ae298f2ab519dc8b6d1e94437f19ec53.md deleted file mode 100644 index c1aab8836..000000000 --- a/content/discover/feed-ae298f2ab519dc8b6d1e94437f19ec53.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: 'Alchemists: News' -date: "2024-06-02T21:44:34Z" -description: All site wide software engineering related news and information. -params: - feedlink: https://alchemists.io/feeds/news.xml - feedtype: atom - feedid: ae298f2ab519dc8b6d1e94437f19ec53 - websites: - https://alchemists.io/: true - https://alchemists.io/articles: false - https://alchemists.io/projects: false - https://alchemists.io/screencasts: false - https://alchemists.io/talks: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - news - relme: {} - last_post_title: Site Updates - last_post_description: "" - last_post_date: "2024-06-02T21:44:34Z" - last_post_link: https://alchemists.io/articles/site_updates - last_post_categories: - - milestones - last_post_guid: a86718beed8fb077efb302a90a09a5d1 - score_criteria: - cats: 1 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ae2e8045750208d6e5f6bbe547ec06b6.md b/content/discover/feed-ae2e8045750208d6e5f6bbe547ec06b6.md new file mode 100644 index 000000000..a196048b0 --- /dev/null +++ b/content/discover/feed-ae2e8045750208d6e5f6bbe547ec06b6.md @@ -0,0 +1,43 @@ +--- +title: Penelope Trunk Careers +date: "1970-01-01T00:00:00Z" +description: Advice at the intersection of work and life +params: + feedlink: https://feeds.feedburner.com/BrazenCareerist + feedtype: rss + feedid: ae2e8045750208d6e5f6bbe547ec06b6 + websites: {} + blogrolls: [] + recommended: [] + recommender: + - https://frankmcpherson.blog/feed.xml + categories: + - Networking + relme: {} + last_post_title: Questionnaire for everyone who stopped talking to me + last_post_description: I’ve developed a survey to give to people who slipped me + into their not-friend category. Since I’m a person with no ability to cope with + nuance, answers to all questions are yes/no. 1. Were you + last_post_date: "2024-06-09T20:05:11Z" + last_post_link: https://blog.penelopetrunk.com/2024/06/09/questionnaire-for-everyone-who-stopped-talking-to-me/ + last_post_categories: + - Networking + last_post_language: "" + last_post_guid: 13baed1d2b769bc25c14f1c64cf4c110 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 1 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 0 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-ae3614f54278cf73ce25a60df30666d5.md b/content/discover/feed-ae3614f54278cf73ce25a60df30666d5.md new file mode 100644 index 000000000..809363538 --- /dev/null +++ b/content/discover/feed-ae3614f54278cf73ce25a60df30666d5.md @@ -0,0 +1,48 @@ +--- +title: Henri Bergius +date: "1970-01-01T00:00:00Z" +description: Hacker and an occasional adventurer. Author of Create.js and NoFlo, founder + of Flowhub UG. Decoupling software, one piece at a time. This blog tells the story + of that. +params: + feedlink: https://bergie.iki.fi/blog/rss.xml + feedtype: rss + feedid: ae3614f54278cf73ce25a60df30666d5 + websites: + https://bergie.iki.fi/: true + https://bergie.iki.fi/about/: false + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://bergie.iki.fi/: true + https://bergie.iki.fi/about/: true + https://github.com/bergie: true + https://pixelfed.de/bergie: true + last_post_title: Flow-Based Programming, a way for AI and humans to develop together + last_post_description: I think by now everybody reading this will have seen how + the new generation of Large Language Models like ChatGPT are able to produce somewhat + useful code. Like any advance in software + last_post_date: "2023-03-20T00:00:00Z" + last_post_link: https://bergie.iki.fi/blog/fbp-ai-human-collaboration/ + last_post_categories: [] + last_post_language: "" + last_post_guid: ceba177a6a278090cabb5d0af690c9d1 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-ae4f2cdafd5e8618548259ea98595b37.md b/content/discover/feed-ae4f2cdafd5e8618548259ea98595b37.md new file mode 100644 index 000000000..dd4fd35f0 --- /dev/null +++ b/content/discover/feed-ae4f2cdafd5e8618548259ea98595b37.md @@ -0,0 +1,46 @@ +--- +title: gajim activity +date: "2024-07-08T20:54:25Z" +description: "" +params: + feedlink: https://dev.gajim.org/gajim/gajim.atom + feedtype: atom + feedid: ae4f2cdafd5e8618548259ea98595b37 + websites: + https://dev.gajim.org/gajim/gajim: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://dev.gajim.org/gajim/gajim: true + last_post_title: Daniel Brötzmann deleted project branch fix-muc-nick-completion + at gajim / gajim + last_post_description: |- + Daniel Brötzmann + (fb0a92a9) + + at + 08 Jul 20:54 + last_post_date: "2024-07-08T20:54:25Z" + last_post_link: https://dev.gajim.org/gajim/gajim/-/commits/fix-muc-nick-completion + last_post_categories: [] + last_post_language: "" + last_post_guid: 737ac3040ab8747348a2426a20ffb749 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-ae51925c240a7d5696789387f912ef69.md b/content/discover/feed-ae51925c240a7d5696789387f912ef69.md new file mode 100644 index 000000000..dd4537556 --- /dev/null +++ b/content/discover/feed-ae51925c240a7d5696789387f912ef69.md @@ -0,0 +1,42 @@ +--- +title: Ignacy Kuchciński +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://ignapk.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: ae51925c240a7d5696789387f912ef69 + websites: + https://ignapk.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://ignapk.blogspot.com/: true + last_post_title: 'GSoC 2022: Overview' + last_post_description: IntroductionThroughout this summer I've been working on making + the New Documents feature discoverable in Nautilus, a file manager for GNOME as + part of the GSoC project. This post is an overview with + last_post_date: "2022-09-17T11:51:00Z" + last_post_link: https://ignapk.blogspot.com/2022/09/gsoc-2022-overview.html + last_post_categories: [] + last_post_language: "" + last_post_guid: e30c25fe1ce187897afb682f0dbc21d5 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-ae5c727cbdbdfa97ca1835492195fdbd.md b/content/discover/feed-ae5c727cbdbdfa97ca1835492195fdbd.md deleted file mode 100644 index 48fe4cdd4..000000000 --- a/content/discover/feed-ae5c727cbdbdfa97ca1835492195fdbd.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: '@filippo.abyssdomain.expert - Filippo Valsorda' -date: "1970-01-01T00:00:00Z" -description: |- - RC F'13, F2'17 - Cryptogopher / Go cryptography maintainer - Professional open source maintainer - https://filippo.io / https://github.com/FiloSottile - https://mkcert.dev / https://age-encryption.org - https -params: - feedlink: https://bsky.app/profile/did:plc:x2nsupeeo52oznrmplwapppl/rss - feedtype: rss - feedid: ae5c727cbdbdfa97ca1835492195fdbd - websites: - https://bsky.app/profile/filippo.abyssdomain.expert: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ae70b9f59f83a23665812e949a6cc68a.md b/content/discover/feed-ae70b9f59f83a23665812e949a6cc68a.md new file mode 100644 index 000000000..f7e226a6f --- /dev/null +++ b/content/discover/feed-ae70b9f59f83a23665812e949a6cc68a.md @@ -0,0 +1,40 @@ +--- +title: Maria Mavridou +date: "2024-07-03T22:46:08-07:00" +description: "" +params: + feedlink: https://mavridou.blogspot.com/feeds/posts/default + feedtype: atom + feedid: ae70b9f59f83a23665812e949a6cc68a + websites: + https://mavridou.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://mavridou.blogspot.com/: true + last_post_title: OPW final report - Greek Translation + last_post_description: "" + last_post_date: "2014-08-18T16:58:26-07:00" + last_post_link: https://mavridou.blogspot.com/2014/08/opw-final-report-greek-translation.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 03bbda0f28ec3117ebfc47a92a37fcb3 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-ae7209c8ec502a8a62d5b9bd51cb7ed6.md b/content/discover/feed-ae7209c8ec502a8a62d5b9bd51cb7ed6.md deleted file mode 100644 index 244246bfa..000000000 --- a/content/discover/feed-ae7209c8ec502a8a62d5b9bd51cb7ed6.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Open Source JobHub -date: "2024-06-04T10:19:27-05:00" -description: Jobs from Open Source JobHub -params: - feedlink: https://opensourcejobhub.com/rss/ - feedtype: rss - feedid: ae7209c8ec502a8a62d5b9bd51cb7ed6 - websites: - https://opensourcejobhub.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Enterprise Account Executive, DACH (Remote, Germany) - last_post_description: Grafana Labs is looking for Enterprise Account Executive who - will be responsible for prospecting and closing new business across the DACH region. - You will identify, nurture and close opportunities - last_post_date: "2024-06-04T10:17:14-05:00" - last_post_link: https://opensourcejobhub.com/job/16325/enterprise-account-executive-dach-remote-germany/ - last_post_categories: [] - last_post_guid: ccd8db70423c131a7851cee64e1f8b3e - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ae8540107c8ec125be9b04b370848fcf.md b/content/discover/feed-ae8540107c8ec125be9b04b370848fcf.md new file mode 100644 index 000000000..ad5736a2e --- /dev/null +++ b/content/discover/feed-ae8540107c8ec125be9b04b370848fcf.md @@ -0,0 +1,50 @@ +--- +title: Paul B's Eclipse Whiteboard +date: "2024-06-15T13:20:32-05:00" +description: I love my whiteboards that cover my office, and scribble often into them + with designs and dreams that last for months or minutes. This blog is a place to + share what my team has access to for the +params: + feedlink: https://pbwhiteboard.blogspot.com/feeds/posts/default + feedtype: atom + feedid: ae8540107c8ec125be9b04b370848fcf + websites: + https://pbwhiteboard.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - eclipse + - essay + - gef + - java + - zest + relme: + https://pbwhiteboard.blogspot.com/: true + https://www.blogger.com/profile/17253248624712313586: true + last_post_title: Java Lists + last_post_description: "" + last_post_date: "2016-06-15T11:57:02-05:00" + last_post_link: https://pbwhiteboard.blogspot.com/2016/06/java-lists.html + last_post_categories: + - essay + - java + last_post_language: "" + last_post_guid: 73b7642423b79a3db443ffd9bc78bacb + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-ae90e8b3bd6c19e81a91b88fff312906.md b/content/discover/feed-ae90e8b3bd6c19e81a91b88fff312906.md deleted file mode 100644 index 353c8ff7a..000000000 --- a/content/discover/feed-ae90e8b3bd6c19e81a91b88fff312906.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: ochtendgrijs -date: "1970-01-01T00:00:00Z" -description: Mooie, mooie woorden -params: - feedlink: https://ochtendgrijs.be/comments/feed/ - feedtype: rss - feedid: ae90e8b3bd6c19e81a91b88fff312906 - websites: - https://ochtendgrijs.be/: true - https://ochtendgrijs.be/author/ochtendgrijs/: false - https://ochtendgrijs.be/index.php: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/janboddez: false - https://mastodon.vlaanderen/@ochtendgrijs: true - https://ochtendgrijs.be/author/ochtendgrijs/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ae9a6dcc5589ceefa7f04faf6787e939.md b/content/discover/feed-ae9a6dcc5589ceefa7f04faf6787e939.md deleted file mode 100644 index 8a458b89e..000000000 --- a/content/discover/feed-ae9a6dcc5589ceefa7f04faf6787e939.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Set Studio -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://set.studio/feed/ - feedtype: rss - feedid: ae9a6dcc5589ceefa7f04faf6787e939 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: - - The Index - relme: {} - last_post_title: 'The Index: Issue #26' - last_post_description: Happy Monday! I’m doing a bit of admin at the moment in relation - to bringing Piccalilli back. Some of you might remember the Piccalilli newsletter. - It was the precursor to this newsletter. I’m - last_post_date: "2024-01-29T07:24:00Z" - last_post_link: https://set.studio/the-index-issue-26/ - last_post_categories: - - The Index - last_post_guid: 89975373a7ee4c0f81140819eb18288d - score_criteria: - cats: 0 - description: 0 - postcats: 1 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-aea4fcfddf99dd469a822e3b7b59f369.md b/content/discover/feed-aea4fcfddf99dd469a822e3b7b59f369.md new file mode 100644 index 000000000..24b1c1dc7 --- /dev/null +++ b/content/discover/feed-aea4fcfddf99dd469a822e3b7b59f369.md @@ -0,0 +1,62 @@ +--- +title: Happstack +date: "1970-01-01T00:00:00Z" +description: Happstack - A Haskell Web Framework +params: + feedlink: https://happstack.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: aea4fcfddf99dd469a822e3b7b59f369 + websites: + https://happstack.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ANN + - MACID + - acid-state + - database + - happstack + - happstack-lite + - hsx + - jmacro + - persistence + - routing + - safecopy + - templating + - type-safe + - web-routes + relme: + https://alchymiastudio.blogspot.com/: true + https://happstack.blogspot.com/: true + https://learnhaskell.blogspot.com/: true + https://musictheoryforeveryone.blogspot.com/: true + https://nhlab.blogspot.com/: true + https://www.blogger.com/profile/18373967098081701148: true + last_post_title: Announcing Happstack 7 + last_post_description: |- + We are pleased to announce the  release of Happstack 7! + + Happstack is a fast, modern, web application framework written in Haskell. Please check out the brand new happstack.com website to read + last_post_date: "2012-03-29T20:52:00Z" + last_post_link: https://happstack.blogspot.com/2012/03/announcing-happstack-7.html + last_post_categories: [] + last_post_language: "" + last_post_guid: f851c8bbee890f9b67bd65a0c3b5c8c5 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-aec50a56e47d33f070d5decdaaa94ecd.md b/content/discover/feed-aec50a56e47d33f070d5decdaaa94ecd.md deleted file mode 100644 index 343050b2c..000000000 --- a/content/discover/feed-aec50a56e47d33f070d5decdaaa94ecd.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Buttondown -date: "1970-01-01T00:00:00Z" -description: Public posts from @buttondown@mastodon.social -params: - feedlink: https://mastodon.social/@buttondown.rss - feedtype: rss - feedid: aec50a56e47d33f070d5decdaaa94ecd - websites: - https://mastodon.social/@buttondown: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://buttondown.email/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-aedb992c40700680b9062049c9c92f2c.md b/content/discover/feed-aedb992c40700680b9062049c9c92f2c.md deleted file mode 100644 index ea2896d03..000000000 --- a/content/discover/feed-aedb992c40700680b9062049c9c92f2c.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for Azimuth -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://johncarlosbaez.wordpress.com/comments/feed/ - feedtype: rss - feedid: aedb992c40700680b9062049c9c92f2c - websites: - https://johncarlosbaez.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Van der Waals Forces by raphaelberger4f0aa1a9cc - last_post_description: |- - In reply to Raphael Berger. - - Btw, the reference is really excellent! Than you very much for that!! - last_post_date: "2024-06-19T13:48:52Z" - last_post_link: https://johncarlosbaez.wordpress.com/2024/06/17/van-der-waals-forces/#comment-184934 - last_post_categories: [] - last_post_guid: f0440513a3786c9143b4beb51ba634a6 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-aede85dd6f126b82febf8242d46416c7.md b/content/discover/feed-aede85dd6f126b82febf8242d46416c7.md new file mode 100644 index 000000000..26183c3a3 --- /dev/null +++ b/content/discover/feed-aede85dd6f126b82febf8242d46416c7.md @@ -0,0 +1,45 @@ +--- +title: Mrepek +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://mrepek.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: aede85dd6f126b82febf8242d46416c7 + websites: + https://mrepek.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - coderstalk + - merepek + relme: + https://mrepek.blogspot.com/: true + last_post_title: Tengah design template baru untuk Coder's Talk + last_post_description: Aku dah boring dah tengok template Coder's Talk aku tu. Jadi, + aku sedang cuba membuat template baru untuk blog tu. Andaikata engkorang tengok + template blog ni jadi pelik2 dengan tajuk yang merepek + last_post_date: "2011-04-20T02:01:00Z" + last_post_link: https://mrepek.blogspot.com/2011/04/tengah-design-template-baru-untuk.html + last_post_categories: + - coderstalk + last_post_language: "" + last_post_guid: 2f273de4247474a086a0f2e3cdaa21d5 + score_criteria: + cats: 2 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-aee1f88d451fca16c48b9fa11fdf376c.md b/content/discover/feed-aee1f88d451fca16c48b9fa11fdf376c.md new file mode 100644 index 000000000..da5a26460 --- /dev/null +++ b/content/discover/feed-aee1f88d451fca16c48b9fa11fdf376c.md @@ -0,0 +1,43 @@ +--- +title: Dweller of the Forbidden City +date: "2024-07-05T14:49:12-07:00" +description: "" +params: + feedlink: https://dwelleroftheforbiddencity.blogspot.com/feeds/posts/default + feedtype: atom + feedid: aee1f88d451fca16c48b9fa11fdf376c + websites: + https://dwelleroftheforbiddencity.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: [] + relme: + https://dwelleroftheforbiddencity.blogspot.com/: true + last_post_title: Sova + last_post_description: "" + last_post_date: "2023-06-25T20:42:26-07:00" + last_post_link: https://dwelleroftheforbiddencity.blogspot.com/2023/06/building-bhakashal-sova-art-by.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 469a2044a99e874b39cec41dd2a6f881 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-aee2dd780418afc2c66c5d2bcd915a88.md b/content/discover/feed-aee2dd780418afc2c66c5d2bcd915a88.md index a5ea9a08b..00709aeb8 100644 --- a/content/discover/feed-aee2dd780418afc2c66c5d2bcd915a88.md +++ b/content/discover/feed-aee2dd780418afc2c66c5d2bcd915a88.md @@ -11,35 +11,34 @@ params: https://jamesvandyne.com/runs/: false blogrolls: [] recommended: [] - recommender: - - https://jlelse.blog/.min.rss - - https://jlelse.blog/.rss - - https://jlelse.blog/index.xml + recommender: [] categories: [] relme: https://github.com/jamesvandyne/: true - https://micro.blog/jamesvandyne: false - https://www.flickr.com/photos/90515377@N00/: false - https://www.linkedin.com/in/james-van-dyne-2002882/: false - https://www.strava.com/athletes/81031219: false - last_post_title: 'The Week #205' - last_post_description: "\U0001F1FA\U0001F1F8 Guilty on all 34 charges. Unanimously. - We'll see what sentencing actually brings, but justice seems to be working. Curious - how the 3 other trials go. Completely unrelated, can felons vote in" - last_post_date: "2024-06-03T21:26:33Z" - last_post_link: https://jamesvandyne.com/25ee5fe9-4c8a-4245-9639-1c9a3489c2ec + https://jamesvandyne.com/: true + last_post_title: 'The Week #210' + last_post_description: "\U0001F363 There was a time when all sushi didn't rotate + and rotating sushi was different. But times change and now most sushi in Japan + is of the rotating variety and sushi that doesn't rotate is different" + last_post_date: "2024-07-08T21:21:55Z" + last_post_link: https://jamesvandyne.com/ecfbbbd4-18f8-48f4-b50d-e5746992759c last_post_categories: [] - last_post_guid: ee2bd184aa40602b7fe76dbdf7a5598a + last_post_language: "" + last_post_guid: f8d2e88cafc738864de4fea85a89bc88 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 - promoted: 5 + posts: 3 + promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 12 + score: 11 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-af021d75cab519137c5e2919e897a3b0.md b/content/discover/feed-af021d75cab519137c5e2919e897a3b0.md new file mode 100644 index 000000000..27005ffb1 --- /dev/null +++ b/content/discover/feed-af021d75cab519137c5e2919e897a3b0.md @@ -0,0 +1,44 @@ +--- +title: '# python weekly reports' +date: "2024-07-08T23:08:05+02:00" +description: "" +params: + feedlink: https://python-weekly.blogspot.com/feeds/posts/default + feedtype: atom + feedid: af021d75cab519137c5e2919e897a3b0 + websites: + https://python-weekly.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - python + - stackoverflow + relme: + https://python-weekly.blogspot.com/: true + last_post_title: (cccvii) stackoverflow python report + last_post_description: "" + last_post_date: "2021-12-25T16:54:41+01:00" + last_post_link: https://python-weekly.blogspot.com/2021/12/cccvii-stackoverflow-python-report.html + last_post_categories: + - python + - stackoverflow + last_post_language: "" + last_post_guid: 068ee69aaecc32d408f631fc7caa48bf + score_criteria: + cats: 2 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-af03f03af1312d2c32a02c289ae14efd.md b/content/discover/feed-af03f03af1312d2c32a02c289ae14efd.md deleted file mode 100644 index f80bacb54..000000000 --- a/content/discover/feed-af03f03af1312d2c32a02c289ae14efd.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: Crusty Blaa - OpenStack -date: "2017-09-14T11:00:00+01:00" -description: "" -params: - feedlink: https://crustyblaa.com/feeds/openstack.atom.xml - feedtype: atom - feedid: af03f03af1312d2c32a02c289ae14efd - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - misc - - OpenStack - - OpenStack Foundation Board Meeting - relme: {} - last_post_title: September 10th OpenStack Foundation Board Meeting - last_post_description: |- - The OpenStack Foundation met in Denver on September 10th for a Joint - Leadership - Meeting - involving the foundation Board of Directors, the Technical Committee, - and the User Committee. - The usual - last_post_date: "2017-09-14T11:00:00+01:00" - last_post_link: https://crustyblaa.com/september-10-2017-openstack-foundation-board-meeting.html - last_post_categories: - - misc - - OpenStack - - OpenStack Foundation Board Meeting - last_post_guid: 50162715eca31516c2693bfe12ab4908 - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-af55211f0573aea8d8192fbc7f41c7cc.md b/content/discover/feed-af55211f0573aea8d8192fbc7f41c7cc.md deleted file mode 100644 index 15bbbed3a..000000000 --- a/content/discover/feed-af55211f0573aea8d8192fbc7f41c7cc.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Comments for toabctl's blog -date: "1970-01-01T00:00:00Z" -description: Just another weblog -params: - feedlink: https://toabctl.wordpress.com/comments/feed/ - feedtype: rss - feedid: af55211f0573aea8d8192fbc7f41c7cc - websites: - https://toabctl.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Installing Debian Stretch on a Cubox-i by Vlado Plaga - last_post_description: I found this documentation through the Debian Wiki, and I'm - quite happy with the result! Before I had to rely on images produced by others, - and could not get a plain Debian 9. Now, having installed a - last_post_date: "2017-10-07T20:49:53Z" - last_post_link: https://toabctl.wordpress.com/2016/02/07/installing-debian-stretch-on-a-cubox-i/#comment-133 - last_post_categories: [] - last_post_guid: e11dc9d181fc8346cc16f27b3735c8e0 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-af57277d7fa92d39733ce9229e855dac.md b/content/discover/feed-af57277d7fa92d39733ce9229e855dac.md deleted file mode 100644 index e3055d15b..000000000 --- a/content/discover/feed-af57277d7fa92d39733ce9229e855dac.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Calum Ryan - All -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://calumryan.com/feeds/all/rss - feedtype: rss - feedid: af57277d7fa92d39733ce9229e855dac - websites: - https://calumryan.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://fed.brid.gy/r/https:/calumryan.com/: false - https://github.com/calumryan: true - https://indieweb.org/User:Calumryan.com: false - https://micro.blog/calumryan: false - https://toot.cafe/@calumryan: false - last_post_title: June 4th, 2024 - last_post_description: Checked in at Antonio e Gigi Sorbillo - last_post_date: "1970-01-01T00:00:00Z" - last_post_link: https://calumryan.com/checkins/4113 - last_post_categories: [] - last_post_guid: 4ea57a7d34037e3054c3cb90fda0b9b0 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-af5e61cd1ad3573fb32f6c3a0b911248.md b/content/discover/feed-af5e61cd1ad3573fb32f6c3a0b911248.md deleted file mode 100644 index 2cb7bd8ed..000000000 --- a/content/discover/feed-af5e61cd1ad3573fb32f6c3a0b911248.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Comments for John's World Wide Wall Display -date: "1970-01-01T00:00:00Z" -description: Teaching, ict, and suchlike -params: - feedlink: https://johnjohnston.info/blog/comments/feed/ - feedtype: rss - feedid: af5e61cd1ad3573fb32f6c3a0b911248 - websites: - https://johnjohnston.info/blog: true - https://johnjohnston.info/blog/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/troutcolor: false - https://johnjohnston.info/: false - https://micro.blog/johnjohnston: false - https://social.ds106.us/@johnjohnston: false - https://twitter.com/johnjohnston: false - https://www.flickr.com/people/troutcolor: false - last_post_title: Comment on RSS First by John Johnston - last_post_description: |- - @davew RSS as a sort of database. - - . + + I suggest to join the discussion in https://github.com/qgis/qgis-docker/issues/101 + last_post_date: "2024-06-05T17:12:32Z" + last_post_link: https://anitagraser.com/2024/04/20/qgis-server-docker-edition/#comment-25915 + last_post_categories: [] + last_post_language: "" + last_post_guid: e6def8717c2d82e3f35791eb78e74b11 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-b2a0bd2452a0fd780a4a26f1b35bc2de.md b/content/discover/feed-b2a0bd2452a0fd780a4a26f1b35bc2de.md index 9d84dd968..89881cb7e 100644 --- a/content/discover/feed-b2a0bd2452a0fd780a4a26f1b35bc2de.md +++ b/content/discover/feed-b2a0bd2452a0fd780a4a26f1b35bc2de.md @@ -13,36 +13,38 @@ params: recommender: - https://colinwalker.blog/dailyfeed.xml - https://colinwalker.blog/livefeed.xml - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: [] relme: + https://colly.com/: true https://github.com/colly: true https://mastodon.social/@colly: true last_post_title: Delia’s Third Happening - last_post_description: |- - Nottingham, we’re putting on a show! Join us in beautiful St John’s, Carrington, for a high summer evening of Japanophilia on Sat 20th July. Tickets on sale now. - Reply via email - last_post_date: "2024-06-02T12:00:00+01:00" - last_post_link: https://colly.com/stream/delia-s-third-happening + last_post_description: Not long now, Nottingham! Join us in beautiful St John’s, + Carrington, on Saturday 20th July and witness The Young Vanish perform the Lost + in Translation OST, preceded by a 45-minute set from me, + last_post_date: "2024-07-08T12:00:00+01:00" + last_post_link: https://colly.com/stream/delias-third-happening last_post_categories: [] + last_post_language: "" last_post_guid: e3ac7d1718f9914ab65d09a0de9f6ef9 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-b2acdbb7ecafeb6bb3e865b137581ad4.md b/content/discover/feed-b2acdbb7ecafeb6bb3e865b137581ad4.md index c22ca3fb9..6b5205d79 100644 --- a/content/discover/feed-b2acdbb7ecafeb6bb3e865b137581ad4.md +++ b/content/discover/feed-b2acdbb7ecafeb6bb3e865b137581ad4.md @@ -1,6 +1,6 @@ --- title: Logging the Switch -date: "2024-05-30T18:38:03Z" +date: "2024-06-26T14:00:11Z" description: Logging the Switch is een weblog van Christian Luijten, die in 2004 besloot dat hij zou stoppen met PCs en switchen naar de Mac. In eerste instantie was het plan om te switchen van Linux op de PC @@ -18,8 +18,7 @@ params: - sport relme: https://github.com/islandsvinur: true - https://gitlab.com/islandsvinur: false - https://instagram.com/islandsvinur: false + https://luijten.org/: true last_post_title: RSNL Clubkampioenschappen 2024 last_post_description: "Na meer dan veertien jaar heb ik eindelijk weer eens\neen wedstrijd gereden. Het was afwachten wat de overhand zou hebben; de verbetering @@ -28,17 +27,22 @@ params: last_post_link: https://luijten.org/sport/2024/02/20/rsnl-clubkampioenschappen.html last_post_categories: - sport + last_post_language: "" last_post_guid: 6b81a8a5d276a3f766968196531f760b score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 16 + score: 20 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-b2c19c2ba8cdb901a07330e9a2ede524.md b/content/discover/feed-b2c19c2ba8cdb901a07330e9a2ede524.md new file mode 100644 index 000000000..84b895328 --- /dev/null +++ b/content/discover/feed-b2c19c2ba8cdb901a07330e9a2ede524.md @@ -0,0 +1,46 @@ +--- +title: Sporadic Dispatches +date: "2024-03-13T23:01:16-07:00" +description: Stuff that wants to get out of my head. +params: + feedlink: https://sporadicdispatches.blogspot.com/feeds/posts/default + feedtype: atom + feedid: b2c19c2ba8cdb901a07330e9a2ede524 + websites: + https://sporadicdispatches.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - apps + - google + - ietf + - innovation + - mozilla + - webrtc + relme: + https://sporadicdispatches.blogspot.com/: true + last_post_title: 'An Open Letter to Tim Cook: Apple and the Environment' + last_post_description: "" + last_post_date: "2016-03-23T11:15:51-07:00" + last_post_link: https://sporadicdispatches.blogspot.com/2016/03/an-open-letter-to-tim-cook-apple-and.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 9db1af6817864e7d051588d0e4ad39b7 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-b2c3a01063f19e909052d9fa50194edb.md b/content/discover/feed-b2c3a01063f19e909052d9fa50194edb.md deleted file mode 100644 index 5c4b6ba07..000000000 --- a/content/discover/feed-b2c3a01063f19e909052d9fa50194edb.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Notes In The Margin -date: "1970-01-01T00:00:00Z" -description: The Margin Is Too Narrow -params: - feedlink: https://drbacchus.com/feed/ - feedtype: rss - feedid: b2c3a01063f19e909052d9fa50194edb - websites: - https://drbacchus.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Uncategorized - relme: {} - last_post_title: Take more pictures - last_post_description: 'One of my favorite Apache pictures is this one: I’m pretty - sure it was taken by Chris Davis. It’s me and Ken Coar riding up in the elevato - at ApacheCon Stuttgart in 2005. I wish I had more' - last_post_date: "2024-06-25T15:31:15Z" - last_post_link: https://drbacchus.com/take-more-pictures/ - last_post_categories: - - Uncategorized - last_post_guid: e5fe189c224dfd1ea2373e35ed466b91 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-b2c91392918d061668f28766dce527ab.md b/content/discover/feed-b2c91392918d061668f28766dce527ab.md index cc800f486..9e4547041 100644 --- a/content/discover/feed-b2c91392918d061668f28766dce527ab.md +++ b/content/discover/feed-b2c91392918d061668f28766dce527ab.md @@ -16,22 +16,27 @@ params: - https://colinwalker.blog/livefeed.xml categories: [] relme: {} - last_post_title: Held by the sun - last_post_description: and answering the question, "what's here?" - last_post_date: "2024-06-02T14:24:18Z" - last_post_link: https://lisaolivera.substack.com/p/held-by-the-sun + last_post_title: Widening the heart's window + last_post_description: on the spiral of breaking and opening + last_post_date: "2024-06-30T14:06:00Z" + last_post_link: https://lisaolivera.substack.com/p/widening-the-hearts-window last_post_categories: [] - last_post_guid: 0bbce316cfa977309d6068aa7ae6bfdb + last_post_language: "" + last_post_guid: f668c4191d1959fcf8ef32a0865d2d00 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-b2e45ecf5ff69bccf12547f411332921.md b/content/discover/feed-b2e45ecf5ff69bccf12547f411332921.md index 877eeb201..a570d969b 100644 --- a/content/discover/feed-b2e45ecf5ff69bccf12547f411332921.md +++ b/content/discover/feed-b2e45ecf5ff69bccf12547f411332921.md @@ -7,38 +7,46 @@ params: feedtype: rss feedid: b2e45ecf5ff69bccf12547f411332921 websites: - https://wordpress.com/blog: true + https://wordpress.com/blog/: false blogrolls: [] recommended: [] recommender: - http://scripting.com/rss.xml - http://scripting.com/rssNightly.xml categories: - - New Features - - affiliate program - - affiliates + - Features + - Plugins - WordPress + - WordPress Editor + - WordPress developers relme: {} - last_post_title: Become a WordPress.com Affiliate and Elevate Your Earnings - last_post_description: Sign up. Start earning. It's that easy. - last_post_date: "2024-06-03T15:00:00Z" - last_post_link: https://wordpress.com/blog/2024/06/03/become-an-affiliate/ + last_post_title: 6 Surprising Things You Can Do on WordPress.com Without a Plugin + last_post_description: Newsletters? Spam protection? Image galleries? We have you + covered, no plugin needed. + last_post_date: "2024-06-26T15:26:31Z" + last_post_link: https://wordpress.com/blog/2024/06/26/no-plugin-needed/ last_post_categories: - - New Features - - affiliate program - - affiliates + - Features + - Plugins - WordPress - last_post_guid: fc7d15ce83a1cc86acafc93ad5833ea4 + - WordPress Editor + - WordPress developers + last_post_language: "" + last_post_guid: 4654ef2f0b3aa25e7804431627a29805 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 - website: 2 - score: 16 + website: 1 + score: 19 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-b2fd222d62f54ed4aa15530df888fcc8.md b/content/discover/feed-b2fd222d62f54ed4aa15530df888fcc8.md deleted file mode 100644 index e0e9c902b..000000000 --- a/content/discover/feed-b2fd222d62f54ed4aa15530df888fcc8.md +++ /dev/null @@ -1,54 +0,0 @@ ---- -title: OpenStack – Daniel P. Berrangé -date: "1970-01-01T00:00:00Z" -description: Writing about open source software, virtualization & more -params: - feedlink: https://www.berrange.com/topics/openstack/feed/ - feedtype: rss - feedid: b2fd222d62f54ed4aa15530df888fcc8 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Coding Tips - - Fedora - - OpenStack - - Virt Tools - - bios - - byebyebios - - efi - - mbr - - uefi - relme: {} - last_post_title: 'Bye Bye BIOS: a tool for when you need to warn users the VM image - is EFI only' - last_post_description: The x86 platform has been ever so slowly moving towards a - world where EFI is used to boot everything, with legacy BIOS put out to pasture. - Virtual machines in general have been somewhat behind the - last_post_date: "2023-10-06T13:53:20Z" - last_post_link: https://www.berrange.com/posts/2023/10/06/bye-bye-bios-a-tool-for-when-you-need-to-warn-users-the-vm-image-is-efi-only/ - last_post_categories: - - Coding Tips - - Fedora - - OpenStack - - Virt Tools - - bios - - byebyebios - - efi - - mbr - - uefi - last_post_guid: 6d056fb9f18fb443ddcce355b3492147 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-b301e374fcdeb991dcaf7dd5edd39c05.md b/content/discover/feed-b301e374fcdeb991dcaf7dd5edd39c05.md deleted file mode 100644 index a99bcfd7a..000000000 --- a/content/discover/feed-b301e374fcdeb991dcaf7dd5edd39c05.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Javier Peña's technology blog -date: "1970-01-01T00:00:00Z" -description: My articles on technology -params: - feedlink: https://jpenatech.wordpress.com/feed/ - feedtype: rss - feedid: b301e374fcdeb991dcaf7dd5edd39c05 - websites: - https://jpenatech.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - openstack - - centos - relme: {} - last_post_title: Successfully resetting the root password of a CentOS 7 VM in OpenStack - last_post_description: Even in a cloud world, sometimes you need to find a way to - get inside your VM when SSH doesn’t work. Maybe your Ansible script broke the - SSH configuration and you need to debug it, or you lost the - last_post_date: "2017-04-20T09:49:51Z" - last_post_link: https://jpenatech.wordpress.com/2017/04/20/successfully-resetting-the-root-password-of-a-centos-7-vm-in-openstack/ - last_post_categories: - - openstack - - centos - last_post_guid: f077af41c6fe25aafbefa9f660e237a3 - score_criteria: - cats: 0 - description: 3 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-b3163f01fd04c5510bb7f9cd8efb78fe.md b/content/discover/feed-b3163f01fd04c5510bb7f9cd8efb78fe.md index aabc3110b..cb42a0ef8 100644 --- a/content/discover/feed-b3163f01fd04c5510bb7f9cd8efb78fe.md +++ b/content/discover/feed-b3163f01fd04c5510bb7f9cd8efb78fe.md @@ -12,34 +12,13 @@ params: recommended: [] recommender: [] categories: - - paper - - wood - - furniture - - ink - - marker - - food - - table - - wax - - sculpture - - cartoon - - drawing - - dye - - egg - - pen - - beer - - colored pencil - - cube - - desk - - paint - - pencil - - photograph - - print - - stamp - - tool - Fimo + - J + - V - bar - beads - beef + - beer - beet - bible - bowl @@ -49,42 +28,69 @@ params: - candle - candy - carrot + - cartoon - cheese - chocolate - clay + - colored pencil - cooking + - cube + - desk + - drawing + - dye + - egg - experiment - face - font + - food - found - framing + - furniture - girl - glass - glaze + - ink - jewelery - lantern - linoleum + - marker - mathematics - mounting - music - mustard - neon + - paint + - paper - pasta - pattern - peanut butter + - pen + - pencil + - photograph - pipe cleaner - potato + - print - pumpkin - school - science + - sculpture - shelf - sign - software + - stamp - steel - stone - string + - table + - tool + - wax - whiteboard + - wood relme: + https://hoggideas.blogspot.com/: true + https://hoggmaker.blogspot.com/: true + https://hoggresearch.blogspot.com/: true + https://hoggteaching.blogspot.com/: true https://www.blogger.com/profile/18398397408280534592: true last_post_title: stationary last_post_description: "" @@ -95,17 +101,22 @@ params: - paper - print - stamp + last_post_language: "" last_post_guid: 36abaa607393e9082db579d0a20c17c6 score_criteria: cats: 5 description: 3 + feedlangs: 0 postcats: 3 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 18 + score: 21 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-b31662286c942fbad6898feba289550a.md b/content/discover/feed-b31662286c942fbad6898feba289550a.md index 8608d8eb8..1f64450ec 100644 --- a/content/discover/feed-b31662286c942fbad6898feba289550a.md +++ b/content/discover/feed-b31662286c942fbad6898feba289550a.md @@ -13,35 +13,40 @@ params: recommender: [] categories: [] relme: - https://micro.blog/FeldFoto: false - last_post_title: 'The Enchanted Forest: Lost Astronaut' + https://feldfoto.com/: true + last_post_title: Overcast Waters last_post_description: |- - All images were shot with the Olympus OM-D E-M10 Mark IV and Leica DG Summilux 9 F1.7 on 28 May 2024. - Forest Path + All images were taken with the OM System TG-7 at Lake Illawarra and in Kiama on 6 July 2024. + Kiyong to Keira - ƒ/1.8, 1/10s, ISO 1250 + 100mm, ƒ4.9, 1/500s, ISO 100 - Crash Landing + Storm Bay - ƒ/2, 1/800s, ISO 3200 + 25mm, ƒ2, 1/800s, ISO 100 - Meet the - last_post_date: "2024-05-29T16:37:47+10:00" - last_post_link: https://feldfoto.com/2024/05/29/the-enchanted-forest.html + Blurred + last_post_date: "2024-07-07T00:52:46+10:00" + last_post_link: https://feldfoto.com/2024/07/07/overcast-waters.html last_post_categories: [] - last_post_guid: ad3fc69d90932f1bd3411d493750f156 + last_post_language: "" + last_post_guid: 11c81f164d2f9640226e81636a6e9374 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 6 + score: 11 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-b31fc6fa63e0b59ba3e55d3180186318.md b/content/discover/feed-b31fc6fa63e0b59ba3e55d3180186318.md new file mode 100644 index 000000000..367707704 --- /dev/null +++ b/content/discover/feed-b31fc6fa63e0b59ba3e55d3180186318.md @@ -0,0 +1,46 @@ +--- +title: (think) +date: "2024-04-25T04:49:45Z" +description: Bozhidar Batsov's personal blog +params: + feedlink: https://batsov.com/atom.xml + feedtype: atom + feedid: b31fc6fa63e0b59ba3e55d3180186318 + websites: + https://batsov.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Movies + relme: + https://batsov.com/: true + https://github.com/bbatsov: true + https://hachyderm.io/@bbatsov: true + last_post_title: Daniel Craig is my James Bond + last_post_description: 'Note: This article was originally published on “HEY World” + on Oct 25, 2021. I’m moving it to my main blog, as I’ve decided to close my HEY + account.' + last_post_date: "2024-03-21T10:22:00Z" + last_post_link: https://batsov.com/articles/2024/03/21/daniel-craig-is-my-james-bond/ + last_post_categories: + - Movies + last_post_language: "" + last_post_guid: 5115b2bafab288b7333ef8b9c916e0de + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-b3222d6a0bfb8195fb7a8c2c642397dd.md b/content/discover/feed-b3222d6a0bfb8195fb7a8c2c642397dd.md deleted file mode 100644 index 099596e83..000000000 --- a/content/discover/feed-b3222d6a0bfb8195fb7a8c2c642397dd.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: blast-o-rama. -date: "1970-01-01T00:00:00Z" -description: internet human. -params: - feedlink: https://blast-o-rama.com/podcast.xml - feedtype: rss - feedid: b3222d6a0bfb8195fb7a8c2c642397dd - websites: - https://blast-o-rama.com/: true - https://www.blast-o-rama.com/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Society & Culture - relme: - https://instagram.com/blast0rama: false - https://micro.blog/martyday: false - https://twitter.com/blast0rama: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 1 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 10 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-b327a249e2a04b13438851b6add134aa.md b/content/discover/feed-b327a249e2a04b13438851b6add134aa.md new file mode 100644 index 000000000..e6070eb41 --- /dev/null +++ b/content/discover/feed-b327a249e2a04b13438851b6add134aa.md @@ -0,0 +1,42 @@ +--- +title: Johan Ekblad +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://johanekblad.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: b327a249e2a04b13438851b6add134aa + websites: + https://johanekblad.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://johanekblad.blogspot.com/: true + last_post_title: swedeCopy.se + last_post_description: Jag tycker det är dags att vi börjar utnyttja den privatkopieringsersättning + som vi betalar till Copyswede. Den ger ju oss rätt att dela exempelvis musik med + familj och nära vänner. Jag har nu + last_post_date: "2011-11-03T23:57:00Z" + last_post_link: https://johanekblad.blogspot.com/2011/11/swedecopyse.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 0fc603ad9cdcd55c69f72e1378315fa2 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-b330c24451e592301baeac0383268619.md b/content/discover/feed-b330c24451e592301baeac0383268619.md deleted file mode 100644 index 8afbaaadf..000000000 --- a/content/discover/feed-b330c24451e592301baeac0383268619.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Comments for 4 gravitons -date: "1970-01-01T00:00:00Z" -description: The trials and tribulations of four gravitons and a physicist -params: - feedlink: https://4gravitons.com/comments/feed/ - feedtype: rss - feedid: b330c24451e592301baeac0383268619 - websites: - https://4gravitons.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Beyond Elliptic Polylogarithms in Oaxaca by Andrew Oh-Willeke - last_post_description: |- - -

You missed out!

- -

Oaxaca, Mexico is one of the most wonderful places on Earth, although I'm biased, having gone there on my - last_post_date: "2024-06-26T04:39:03Z" - last_post_link: https://4gravitons.com/2024/06/21/beyond-elliptic-polylogarithms-in-oaxaca/#comment-37152 - last_post_categories: [] - last_post_guid: 68d4abe7e9efce3e07ca60d915ee7b7c - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-b336502ee56016d211cf431c31562360.md b/content/discover/feed-b336502ee56016d211cf431c31562360.md new file mode 100644 index 000000000..fc51f66f2 --- /dev/null +++ b/content/discover/feed-b336502ee56016d211cf431c31562360.md @@ -0,0 +1,48 @@ +--- +title: UNIX and OS X +date: "2023-11-15T08:15:15-08:00" +description: A technical blog about UNIX and OS X for advanced OS X users. +params: + feedlink: https://unixosx.blogspot.com/feeds/posts/default + feedtype: atom + feedid: b336502ee56016d211cf431c31562360 + websites: + https://unixosx.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Apple + - Mac + - MacBook Pro + - PC + - Retina + - Thunderbolt + relme: + https://sparcv9.blogspot.com/: true + https://unixosx.blogspot.com/: true + https://www.blogger.com/profile/01676564270085723379: true + last_post_title: Mountain Lion is out + last_post_description: "" + last_post_date: "2012-07-25T13:19:35-07:00" + last_post_link: https://unixosx.blogspot.com/2012/07/mountain-lion-is-out.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 0d382086a068f2d0188d6133a108f1d7 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-b34edfee464bee79df98cc1646d95e3b.md b/content/discover/feed-b34edfee464bee79df98cc1646d95e3b.md deleted file mode 100644 index 4e5f4774f..000000000 --- a/content/discover/feed-b34edfee464bee79df98cc1646d95e3b.md +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: Media services to transcode video and audio in different formats -date: "2024-02-08T12:27:29-08:00" -description: A GSoC work report -params: - feedlink: https://gstmediaservices.blogspot.com/atom.xml - feedtype: atom - feedid: b34edfee464bee79df98cc1646d95e3b - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - gsoc - - gst - - encodingprofiles - - ui - - dialogs - - plugins - - banshee - - pipeline - - alpha - - bug - - comparison - - registry - relme: {} - last_post_title: An alpha for python version - last_post_description: "" - last_post_date: "2008-09-04T17:15:17-07:00" - last_post_link: https://gstmediaservices.blogspot.com/2008/09/alpha-for-python-version.html - last_post_categories: - - alpha - - gsoc - - plugins - last_post_guid: 66063c2e5ea4b2c4cfbd0c44dc7f139f - score_criteria: - cats: 5 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 14 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-b37e3e97c422cbffd631631e0475d11b.md b/content/discover/feed-b37e3e97c422cbffd631631e0475d11b.md deleted file mode 100644 index 4ceda8973..000000000 --- a/content/discover/feed-b37e3e97c422cbffd631631e0475d11b.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: annarama -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://annarama.net/feed.xml - feedtype: rss - feedid: b37e3e97c422cbffd631631e0475d11b - websites: - https://annarama.net/: true - blogrolls: [] - recommended: [] - recommender: - - https://jabel.blog/feed.xml - - https://jabel.blog/podcast.xml - categories: [] - relme: - https://micro.blog/annahavron: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-b38e2276c96c13b108c37324a37cd596.md b/content/discover/feed-b38e2276c96c13b108c37324a37cd596.md deleted file mode 100644 index a53aca999..000000000 --- a/content/discover/feed-b38e2276c96c13b108c37324a37cd596.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: '@bielinski.de - Heiko Bielinski' -date: "1970-01-01T00:00:00Z" -description: "Buch: \"Einfach #autofrei leben\" | #verkehrswende | 1 ❤️ für Bibliotheken - | Vater x2 | Tel. 555-NASE | Feminist in Ausbildung | \U0001F37Aernst\nBlog: bielinski.de" -params: - feedlink: https://bsky.app/profile/did:plc:myart6nwee7w4kgmlubv5szg/rss - feedtype: rss - feedid: b38e2276c96c13b108c37324a37cd596 - websites: - https://bsky.app/profile/bielinski.de: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - '#autofrei' - - '#verkehrswende' - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 2 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-b3ae2b0f5f9b4266491f2a3738336d58.md b/content/discover/feed-b3ae2b0f5f9b4266491f2a3738336d58.md deleted file mode 100644 index c91c0c5aa..000000000 --- a/content/discover/feed-b3ae2b0f5f9b4266491f2a3738336d58.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Comments for Sascha Peilicke -date: "1970-01-01T00:00:00Z" -description: Open Source, All Things Android, (Astro) Photography and Personal Opinion. -params: - feedlink: https://saschpe.wordpress.com/comments/feed/ - feedtype: rss - feedid: b3ae2b0f5f9b4266491f2a3738336d58 - websites: - https://saschpe.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Celestron Firmware Manager on Linux by Mike Clements - last_post_description: Thanks for this useful guide. There’s one more trick I had - to do to make mine work with Ubuntu 16 and a Celestron 6SE. In the CFM software, - Select Options|Connections from the menu. In the dialog - last_post_date: "2017-12-08T04:26:36Z" - last_post_link: https://saschpe.wordpress.com/2017/04/08/celestron-firmware-manager-on-linux/#comment-3595 - last_post_categories: [] - last_post_guid: 9770273309341a3ef16af5441684a848 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-b3b82fe29add998c20f3af3c01ca9837.md b/content/discover/feed-b3b82fe29add998c20f3af3c01ca9837.md new file mode 100644 index 000000000..c719862c8 --- /dev/null +++ b/content/discover/feed-b3b82fe29add998c20f3af3c01ca9837.md @@ -0,0 +1,44 @@ +--- +title: 'Comments for lefred blog: tribulations of a MySQL Evangelist' +date: "1970-01-01T00:00:00Z" +description: There Are 10 Types of People in the World.... +params: + feedlink: https://lefred.be/comments/feed/ + feedtype: rss + feedid: b3b82fe29add998c20f3af3c01ca9837 + websites: + https://lefred.be/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://lefred.be/: true + last_post_title: Comment on MySQL 9.0 – it’s time to abandon the weak authentication + method by lefred + last_post_description: |- + In reply to Sergei. + + Hi Sergei, you are right, but while SHA-1 was explicitly + last_post_date: "2024-07-04T19:02:43Z" + last_post_link: https://lefred.be/content/mysql-9-0-its-time-to-abandon-the-weak-authentication-method/#comment-593443 + last_post_categories: [] + last_post_language: "" + last_post_guid: 495c5d9f8e21a731c84d6312aceeb728 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-b3c82feb6d1ef1c51155ec7128199af4.md b/content/discover/feed-b3c82feb6d1ef1c51155ec7128199af4.md new file mode 100644 index 000000000..b4e3b04a1 --- /dev/null +++ b/content/discover/feed-b3c82feb6d1ef1c51155ec7128199af4.md @@ -0,0 +1,52 @@ +--- +title: "emacs on\n \n \n The Neo-Babbage Files" +date: "1970-01-01T00:00:00Z" +description: |- + Recent content in emacs + on The Neo-Babbage Files +params: + feedlink: https://babbagefiles.xyz/categories/emacs/index.xml + feedtype: rss + feedid: b3c82feb6d1ef1c51155ec7128199af4 + websites: + https://babbagefiles.xyz/categories/emacs/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - elisp + - emacs + - equake + - eshell + relme: + https://babbagefiles.xyz/categories/emacs/: true + last_post_title: 'Equake: A Geas on Gnomish Smiths' + last_post_description: |- + A new version of Equake, the drop-down “terminal emulator” for Emacs, should be hitting Melpa shortly. This version includes a number of bug fixes, and some new features. + Jeff Kowalski added code + last_post_date: "2022-06-08T10:54:00-06:00" + last_post_link: https://babbagefiles.xyz/equake-geas-on-gnomish-smiths/ + last_post_categories: + - elisp + - emacs + - equake + - eshell + last_post_language: "" + last_post_guid: e2c5e191625475c3c0d680143e3245fc + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-b3e451b6344acdfddacf9bc880299fa1.md b/content/discover/feed-b3e451b6344acdfddacf9bc880299fa1.md index 064df62f3..947e30135 100644 --- a/content/discover/feed-b3e451b6344acdfddacf9bc880299fa1.md +++ b/content/discover/feed-b3e451b6344acdfddacf9bc880299fa1.md @@ -14,6 +14,7 @@ params: categories: - Uncategorized relme: + https://blog.dachary.org/: true https://mastodon.online/@dachary: true last_post_title: My Forgejo monthly update – February 2023 last_post_description: This is my personal view of what happened during February @@ -23,17 +24,22 @@ params: last_post_link: https://blog.dachary.org/2023/03/06/my-forgejo-monthly-update-february-2023/ last_post_categories: - Uncategorized + last_post_language: "" last_post_guid: aa46122e79b95a92a9a7c7eb4542b68e score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 11 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-b3f6362ee135eadc4b36eeb04cc82244.md b/content/discover/feed-b3f6362ee135eadc4b36eeb04cc82244.md deleted file mode 100644 index 074edf004..000000000 --- a/content/discover/feed-b3f6362ee135eadc4b36eeb04cc82244.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Behind the Source -date: "2022-12-01T16:16:06Z" -description: A series of interviews with the people behind the websites. These stories - show there isn't only one way into the web -params: - feedlink: https://www.behindthesource.co.uk/rss.xml - feedtype: rss - feedid: b3f6362ee135eadc4b36eeb04cc82244 - websites: - https://www.behindthesource.co.uk/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://hachyderm.io/@mikestreety: true - https://twitter.com/behindsource: false - last_post_title: 'S01E08: Cassidy Williams - I love how fast the industry moves. - It’s kind of a joke to everyone how many frameworks there are but it’s great to - see all of the opportunities to learn' - last_post_description: 'S01E08: Cassidy Williams ~ Cassidy Williams

Cassidy is - the absolute boss when it comes to making web dev memes, newsletters and jokes - (there is one in every Manish. - - Hi Manish, - - Thanks for the question! There are a - last_post_date: "2019-03-21T12:34:38Z" - last_post_link: https://wrestlingpenguins.wordpress.com/2018/09/07/openstack-rocky-for-ubuntu-18-04-lts/comment-page-1/#comment-112 - last_post_categories: [] - last_post_guid: 7ca9c4dc353bdabcc869c9332bff8857 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-b717bd7ce8a436bb784219f38009ff2f.md b/content/discover/feed-b717bd7ce8a436bb784219f38009ff2f.md deleted file mode 100644 index 0d0bee318..000000000 --- a/content/discover/feed-b717bd7ce8a436bb784219f38009ff2f.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: "Dave \U0001F9F1 :cursor_pointer:" -date: "1970-01-01T00:00:00Z" -description: Public posts from @DavidDarnes@mastodon.design -params: - feedlink: https://mastodon.design/@DavidDarnes.rss - feedtype: rss - feedid: b717bd7ce8a436bb784219f38009ff2f - websites: - https://mastodon.design/@DavidDarnes: true - https://mastodon.design/@daviddarnes: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://codepen.io/DavidDarnes: false - https://darn.es/: false - https://github.com/daviddarnes: false - https://twitter.com/daviddarnes: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-b727d1d64859fe1d0fcdc2c72b7cd44f.md b/content/discover/feed-b727d1d64859fe1d0fcdc2c72b7cd44f.md index 4542afa2b..3b438d465 100644 --- a/content/discover/feed-b727d1d64859fe1d0fcdc2c72b7cd44f.md +++ b/content/discover/feed-b727d1d64859fe1d0fcdc2c72b7cd44f.md @@ -12,7 +12,8 @@ params: recommended: [] recommender: [] categories: [] - relme: {} + relme: + https://bookrastinating.com/user/lewisdaleuk: true last_post_title: 'Lewis finished reading The Bullet That Missed : A Thursday Murder Club Mystery by Richard Osman' last_post_description: 'Lewis finished reading The Bullet That Missed : A Thursday @@ -20,17 +21,22 @@ params: last_post_date: "2024-01-27T14:12:33Z" last_post_link: http://bookrastinating.com/user/lewisdaleuk/generatednote/376717 last_post_categories: [] + last_post_language: "" last_post_guid: 125c8f67a11fa00a8bf69ec3165e56a5 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 5 + score: 11 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-b73fb9fe8e3f30ebf6ac637ef54ed32f.md b/content/discover/feed-b73fb9fe8e3f30ebf6ac637ef54ed32f.md new file mode 100644 index 000000000..3e4c16da3 --- /dev/null +++ b/content/discover/feed-b73fb9fe8e3f30ebf6ac637ef54ed32f.md @@ -0,0 +1,44 @@ +--- +title: Comments for OPENGIS.ch +date: "1970-01-01T00:00:00Z" +description: OPEN-SOURCE GEONINJAS +params: + feedlink: https://www.opengis.ch/comments/feed/ + feedtype: rss + feedid: b73fb9fe8e3f30ebf6ac637ef54ed32f + websites: + https://www.opengis.ch/: true + https://www.opengis.ch/blog/: false + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://www.opengis.ch/: true + last_post_title: Comment on QGIS.ch user-day 2024 – A biased review by uber-happy + committers by Tomasz Rychlicki + last_post_description: |- + Great to read about QGIS user meetings and view your presentations. It's always such a big inspiration for my every day work. + I'm really happy hat we are having a QGIS.pl meeting next week in Poznan. + last_post_date: "2024-06-20T07:21:36Z" + last_post_link: https://www.opengis.ch/2024/06/20/qgis-ch-user-day-2024-a-biased-review-by-uber-happy-committers/#comment-1541 + last_post_categories: [] + last_post_language: "" + last_post_guid: c7f27ddb47dec6d945cbb7798cca9b74 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-b749745d40c3502436548604e1f8333f.md b/content/discover/feed-b749745d40c3502436548604e1f8333f.md deleted file mode 100644 index 930b215cb..000000000 --- a/content/discover/feed-b749745d40c3502436548604e1f8333f.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: Matt Leifer -date: "1970-01-01T00:00:00Z" -description: Mathematics -- Physics -- Quantum Theory -params: - feedlink: http://feeds.feedburner.com/MattLeifer - feedtype: rss - feedid: b749745d40c3502436548604e1f8333f - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Quantum Quandaries - - Bell's theorem - - Institute for Quantum Studies - - interpretations - - online - - Popular Science - - quantum - - Travis Norsen - relme: {} - last_post_title: Quantum Mechanics and Nonlocality - last_post_description: A Popular Physics Discussion Travis Norsen in conversation - with Matt Leifer Wednesday October 21, 5pm PST (California Time) The Institute - for Quantum Studies at Chapman University presents an online - last_post_date: "2020-10-05T17:35:56Z" - last_post_link: https://mattleifer.info/2020/10/05/quantum-mechanics-and-nonlocality/ - last_post_categories: - - Quantum Quandaries - - Bell's theorem - - Institute for Quantum Studies - - interpretations - - online - - Popular Science - - quantum - - Travis Norsen - last_post_guid: ef6d51169b39c22325912204e55b2181 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-b74ae91f164766dad5ed02477c93b4b1.md b/content/discover/feed-b74ae91f164766dad5ed02477c93b4b1.md new file mode 100644 index 000000000..8019445bc --- /dev/null +++ b/content/discover/feed-b74ae91f164766dad5ed02477c93b4b1.md @@ -0,0 +1,140 @@ +--- +title: Chegg Answer and Question +date: "1970-01-01T00:00:00Z" +description: Here you Will Get Best links For Chegg Answer where you like It. +params: + feedlink: https://cosmetics-my-live.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: b74ae91f164766dad5ed02477c93b4b1 + websites: + https://cosmetics-my-live.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Live Answer with Chegg Professional + last_post_description: |- + Nonetheless, before joining, check whether your school + offers a portion of similar assets remembered for your educational cost. If + you're an understudy on a careful spending plan, there's no sense in + last_post_date: "2021-05-09T21:13:00Z" + last_post_link: https://cosmetics-my-live.blogspot.com/2021/05/live-answer-with-chegg-professional.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 7c84ce7524fa9c6f74b710422a0d6056 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-b77067b0fed6052af435a9fb9406b2e7.md b/content/discover/feed-b77067b0fed6052af435a9fb9406b2e7.md new file mode 100644 index 000000000..c1fb6a47b --- /dev/null +++ b/content/discover/feed-b77067b0fed6052af435a9fb9406b2e7.md @@ -0,0 +1,44 @@ +--- +title: 'Salvus: Distributed scalable online mathematical software' +date: "2024-03-08T04:51:34-08:00" +description: "" +params: + feedlink: https://salvusmath.blogspot.com/feeds/posts/default + feedtype: atom + feedid: b77067b0fed6052af435a9fb9406b2e7 + websites: + https://salvusmath.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://389a.blogspot.com/: true + https://sagemath.blogspot.com/: true + https://salvusmath.blogspot.com/: true + https://skate389.blogspot.com/: true + https://www.blogger.com/profile/09206974122359022797: true + last_post_title: The Architecture of Salvus (or, a bunch of my favorite programs) + last_post_description: "" + last_post_date: "2012-12-17T21:29:04-08:00" + last_post_link: https://salvusmath.blogspot.com/2012/12/the-architecture-of-salvus-or-bunch-of.html + last_post_categories: [] + last_post_language: "" + last_post_guid: ce4b9f245903ffcf1a55f3f02a4ee931 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-b775a10d37de76d06479a6159a20d74f.md b/content/discover/feed-b775a10d37de76d06479a6159a20d74f.md deleted file mode 100644 index e1ea8c8e2..000000000 --- a/content/discover/feed-b775a10d37de76d06479a6159a20d74f.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Things Drawn By Text Models -date: "1970-01-01T00:00:00Z" -description: Public posts from @ThingsDrawnByTextModels@hachyderm.io -params: - feedlink: https://hachyderm.io/@ThingsDrawnByTextModels.rss - feedtype: rss - feedid: b775a10d37de76d06479a6159a20d74f - websites: - https://hachyderm.io/@ThingsDrawnByTextModels: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/approved/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-b78e12af3a93f92442703b962bc0486b.md b/content/discover/feed-b78e12af3a93f92442703b962bc0486b.md new file mode 100644 index 000000000..807b413bb --- /dev/null +++ b/content/discover/feed-b78e12af3a93f92442703b962bc0486b.md @@ -0,0 +1,46 @@ +--- +title: Ganneff's Little Blog +date: "2022-11-19T15:26:30+01:00" +description: Thoughts of a small and very unimportant Debian Developer +params: + feedlink: https://blog.ganneff.de/atom.xml + feedtype: atom + feedid: b78e12af3a93f92442703b962bc0486b + websites: + https://blog.ganneff.de/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - qnap + - truenas + relme: + https://blog.ganneff.de/: true + last_post_title: From QNAP QTS to TrueNAS Scale + last_post_description: History, SetupSo for quite some time I have a QNAP TS-873x + here, equipped with 8Western Digital Red 10 TB disks, plus 2 WD Blue 500G M2 SSDs. + The QNAPitself has an “AMD Embedded R-Series RX + last_post_date: "2022-11-19T13:20:33+01:00" + last_post_link: https://blog.ganneff.de/2022/11/from-qnap-qts-to-truenas-scale.html + last_post_categories: + - qnap + - truenas + last_post_language: "" + last_post_guid: afdbaf251f0ad39de74eb4915dfd70a6 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-b792977fe38ee6bdc513ed62f8845fc0.md b/content/discover/feed-b792977fe38ee6bdc513ed62f8845fc0.md deleted file mode 100644 index ce7382f95..000000000 --- a/content/discover/feed-b792977fe38ee6bdc513ed62f8845fc0.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Seth's Blog -date: "1970-01-01T00:00:00Z" -description: Seth Godin's Blog on marketing, tribes and respect -params: - feedlink: https://seths.blog/feed - feedtype: rss - feedid: b792977fe38ee6bdc513ed62f8845fc0 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - http://scripting.com/rss.xml - - http://scripting.com/rssNightly.xml - categories: - - Uncategorized - relme: {} - last_post_title: Did you see it in the theater? - last_post_description: We’re in the middle of a huge and unusual shift. The magazine - publisher acted like the best sales were newsstand sales, even though the profit - came from subscriptions and most people simply visited - last_post_date: "2024-06-04T08:22:00Z" - last_post_link: https://seths.blog/2024/06/did-you-see-it-in-the-theater/ - last_post_categories: - - Uncategorized - last_post_guid: edcb5c5cb717b11725022036837ac98f - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 12 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-b79a29eed0b83334fe2e8768c9dc4ed8.md b/content/discover/feed-b79a29eed0b83334fe2e8768c9dc4ed8.md deleted file mode 100644 index 28c671ea8..000000000 --- a/content/discover/feed-b79a29eed0b83334fe2e8768c9dc4ed8.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Comments for The Open Sourcerer -date: "1970-01-01T00:00:00Z" -description: Jeff on technology, business and society -params: - feedlink: https://fortintam.com/blog/comments/feed/ - feedtype: rss - feedid: b79a29eed0b83334fe2e8768c9dc4ed8 - websites: - https://fortintam.com/blog/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Please help test (and fix) GTG’s GTK 4 port by MarkDuyba - last_post_description: I'd like to help, however PR 894 does not apply successfully - to the master branch. - last_post_date: "2023-08-09T20:10:27Z" - last_post_link: https://fortintam.com/blog/call-for-testing-gtg-gtk4-branch/#comment-2534 - last_post_categories: [] - last_post_guid: 28231ada5dd6828d74e0ec4e26665281 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-b8157a6ad2f99c5ba2e4ba51c71a626b.md b/content/discover/feed-b8157a6ad2f99c5ba2e4ba51c71a626b.md new file mode 100644 index 000000000..1eb1aa17e --- /dev/null +++ b/content/discover/feed-b8157a6ad2f99c5ba2e4ba51c71a626b.md @@ -0,0 +1,48 @@ +--- +title: William Stein's Number Theory Research Blog +date: "2023-11-16T03:18:48-08:00" +description: "" +params: + feedlink: https://389a.blogspot.com/feeds/posts/default + feedtype: atom + feedid: b8157a6ad2f99c5ba2e4ba51c71a626b + websites: + https://389a.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - psage + - research + - sage + - software + relme: + https://389a.blogspot.com/: true + https://sagemath.blogspot.com/: true + https://salvusmath.blogspot.com/: true + https://skate389.blogspot.com/: true + https://www.blogger.com/profile/09206974122359022797: true + last_post_title: Higher rank curves with nontrivial Sha + last_post_description: "" + last_post_date: "2011-01-31T11:28:32-08:00" + last_post_link: https://389a.blogspot.com/2011/01/higher-rank-curves-with-nontrivial-sha.html + last_post_categories: [] + last_post_language: "" + last_post_guid: e2f6390e2a8de58270a731f22440c5fa + score_criteria: + cats: 4 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-b8241197360d988b5cc34bd5083d8f62.md b/content/discover/feed-b8241197360d988b5cc34bd5083d8f62.md new file mode 100644 index 000000000..6dda5559d --- /dev/null +++ b/content/discover/feed-b8241197360d988b5cc34bd5083d8f62.md @@ -0,0 +1,357 @@ +--- +title: Coder's Log +date: "1970-01-01T00:00:00Z" +description: Views and journeys of a hopeless programmer, named Zeeshan Ali Khan. +params: + feedlink: https://zee-nix.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: b8241197360d988b5cc34bd5083d8f62 + websites: + https://zee-nix.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - "0.10" + - "3.12" + - "3.2" + - "3.8" + - A Coruña. + - A-GPS + - A/V + - API + - ATM + - AV + - Aero-car + - Android + - Ansku + - Arc + - Automobile + - Automotive + - Berlin + - Boxes + - C + - C# + - C++ + - CV + - Cambridge + - Camera + - Canada + - Cancer + - Cellink + - Chalmers University + - Closures + - Clutter + - Coherence + - Collabora + - Comic + - Conference + - D-Bus + - DIDL-Lite + - DLNA + - DVB + - DVB Daemon + - Desktop Summit + - Developer experience + - Embedded Systems + - EuroKaution + - FOSDEM + - Fedora + - Finland + - Finnish + - Firefox + - Firefox OS + - Flatpak + - Forest + - Free Software + - Friends + - GDP + - GIO + - GIR + - GJS + - GNOME + - GNOME Foundation + - GNOME OS + - GNOME Shell + - GOPW + - GObject + - GPS + - GPSD + - GSSDP + - GSlice + - GSoC + - GStreamer + - GUADEC + - GUADEC 2012 + - GUPnP + - Garbage collection + - Geek + - Genivi + - Geoclue + - Germany + - Git + - Go + - Google + - Gothenburg + - Gtk + - Gtk+ + - Guile + - Helsinki + - Humor + - Huopalahti + - IGD + - IRC + - Istanbul + - Java + - JavaScript + - Jeff Waugh + - Job + - Jolla + - Jussi Kukkonen + - KDE + - KVM + - Karachi + - Karl-Lattimer + - Kinvolk + - LEGO + - Lassi + - Lennart + - Linux + - Lisp + - Logo + - London + - MAFW + - MLS + - MMORPG + - Maemo + - Maintainer + - Mango + - Maps + - Mark Shuttleworth + - Marriage + - MediaRenderer + - MediaServer + - Meego + - Memory Management + - Meritähti + - Mexico + - Microsoft + - Mindstorm + - Modem + - ModemManager + - Mom + - Mono + - Moonlight + - Move + - Mozilla + - Murray Cumming + - Mutex + - N81 + - N900 + - NMEA + - Network + - Network Light + - Nokia + - Nominatim + - OGG + - OHMan + - OPW + - OVF + - Open Source + - OpenStreetMap + - OpenWLANMap + - OpenedHand + - PPL(H) + - PS3 + - Party + - Pelagicore + - Pyhon + - Qemu + - Qt + - Quality + - Rant + - Rc + - Red Hat + - Reference counting + - Remote Access + - Rust + - Rygel + - SQLite + - SSDP + - Sampo + - Sauna + - Scheme + - Scripting + - Security + - Skiing + - South Park + - Spice + - Star trek + - Strasbourg + - Summer + - Sweden + - Swedish + - Thessaloniki + - Tools + - Transcoding + - UK + - UPnP + - USB + - Ubuntu + - Ubuntu phone + - VCS + - VNC + - Vacation + - Vala + - Valgrind + - Vodafone + - Windows 7 + - Windows XP + - WoW + - Xbox + - Xchat + - Z-LASIK + - Zaheer + - Zeeshan + - ZeroConf + - Zhaan + - agent + - async + - automated installation + - bank + - bazaar + - binding + - blog move + - bluetooth + - c't + - canon + - cats + - data + - debian + - depression + - device + - distro + - driving + - driving test + - encryption + - evolution + - exopc + - express installation + - filesystem + - flying + - foundation + - framework + - geocode-glib + - geocoding + - geoip + - geolocation + - gmail + - gnome-continuous + - gnome-system-monitor + - gnome-user-share + - gource + - gps-share + - gypsy + - hackfest + - hardware + - helicopters + - history + - hostel + - hotel + - introspection + - irssi + - italy + - kaisla + - libosinfo + - libsoup + - libvirt + - libvirt-glib + - life + - lifetimes + - location + - love + - malloc + - meme + - mollymalones + - mother + - moving in + - mpeg + - multimedia + - oFono + - operating system + - optimization + - ostikka + - performance + - pets + - pilot + - poo + - portability + - printer + - pulse-audio + - pygtk + - python + - release + - religion + - rover + - science + - screenshots + - segfault + - sh + - skills test + - snapshot + - sound server + - tablet + - talk + - theory + - threads + - thumbnails + - tracker + - video + - virt-manager + - virt-tools + - virtual machine + - virtualization + - visualization + - vorbis + - wedding + - wifi + - wifi-geolocation + - win32 + - windows + - winter + - xml + - zbus + relme: + https://zee-nix.blogspot.com/: true + last_post_title: zbus and Implementing Async Rust API + last_post_description: |- + zbus + As many of the readers already know, for the past (almost) 2 years, I've been developing a + Rust-crate for D-Bus, called zbus. With this being my + first big Rust project to start from scratch done + last_post_date: "2021-02-14T12:40:00Z" + last_post_link: https://zee-nix.blogspot.com/2021/02/zbus-and-implementing-async-rust-api.html + last_post_categories: + - D-Bus + - Rust + - async + - zbus + last_post_language: "" + last_post_guid: a83a419964c79459440672ad3fef6eb7 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-b82f287919d978a13420580acf9784cb.md b/content/discover/feed-b82f287919d978a13420580acf9784cb.md new file mode 100644 index 000000000..ef8c82ea9 --- /dev/null +++ b/content/discover/feed-b82f287919d978a13420580acf9784cb.md @@ -0,0 +1,41 @@ +--- +title: random thoughts of a F/OSS Developer... +date: "2024-02-08T09:58:02-05:00" +description: "" +params: + feedlink: https://tauware.blogspot.com/feeds/posts/default + feedtype: atom + feedid: b82f287919d978a13420580acf9784cb + websites: + https://tauware.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://tauware.blogspot.com/: true + https://www.blogger.com/profile/04887546547450531798: true + last_post_title: Building Packages with Buildah in Debian + last_post_description: "" + last_post_date: "2020-04-25T08:57:43-04:00" + last_post_link: https://tauware.blogspot.com/2020/04/building-packages-with-buildah-in-debian.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 8a758b939d6e70bc07dcf3243620483d + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-b834b7eac2df9c72ec5f26ac39b949c8.md b/content/discover/feed-b834b7eac2df9c72ec5f26ac39b949c8.md deleted file mode 100644 index 8b05a6daf..000000000 --- a/content/discover/feed-b834b7eac2df9c72ec5f26ac39b949c8.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Luis Suarez -date: "1970-01-01T00:00:00Z" -description: Public posts from @elsua@mastodon.social -params: - feedlink: https://mastodon.social/@elsua.rss - feedtype: rss - feedid: b834b7eac2df9c72ec5f26ac39b949c8 - websites: - https://mastodon.social/@elsua: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://elsua.net/: true - https://www.linkedin.com/in/elsua/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-b851b04742f80911c688085a5840b560.md b/content/discover/feed-b851b04742f80911c688085a5840b560.md new file mode 100644 index 000000000..229e7bec4 --- /dev/null +++ b/content/discover/feed-b851b04742f80911c688085a5840b560.md @@ -0,0 +1,53 @@ +--- +title: Pablo Rauzy activity +date: "2023-08-09T17:55:35Z" +description: "" +params: + feedlink: https://invent.kde.org/pablorackham.atom + feedtype: atom + feedid: b851b04742f80911c688085a5840b560 + websites: + https://invent.kde.org/pablorackham: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://invent.kde.org/pablorackham: true + last_post_title: Pablo Rauzy pushed to project branch work/pablo/makefileactions + at Pablo Rauzy / Dolphin Plugins + last_post_description: |- + Pablo Rauzy + (f16d2115) + + at + 09 Aug 17:55 + + + Merge branch dolphin-plugins:master into work/pablo/makefileactions + + + ... and + 1 more commit + last_post_date: "2023-08-09T17:55:35Z" + last_post_link: https://invent.kde.org/pablorackham/dolphin-plugins/-/compare/600e788edc318b79ce8f74d9c604c16dee7c787a...f16d21158636e77150d95b7854f7e7f0a8211d5c + last_post_categories: [] + last_post_language: "" + last_post_guid: bbe31ad5b87688ff80a3696a41b5aead + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-b85a7f63990b868a63649fb84314eff1.md b/content/discover/feed-b85a7f63990b868a63649fb84314eff1.md deleted file mode 100644 index 42e2bb948..000000000 --- a/content/discover/feed-b85a7f63990b868a63649fb84314eff1.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Comments for Thibault Saunier's blog -date: "1970-01-01T00:00:00Z" -description: thiblahute hacking web log -params: - feedlink: https://blogs.gnome.org/tsaunier/comments/feed/ - feedtype: rss - feedid: b85a7f63990b868a63649fb84314eff1 - websites: - https://blogs.gnome.org/tsaunier/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on WebKitGTK and WPE gain WebRTC support back! by hoschi - last_post_description: |- - Hello! - Thanks for your work. Can you tell me, when WebRTC will be available inside WebKit2Gtk, repectivley Epiphany? As it looks currently, Epiphany 3.30 doesn't support WebRTC generllay, - last_post_date: "2018-10-08T08:05:30Z" - last_post_link: https://blogs.gnome.org/tsaunier/2018/07/31/webkitgtk-and-wpe-gains-webrtc-support-back/#comment-4 - last_post_categories: [] - last_post_guid: e0751eaaa0e8fa6f9aaed02bbf5e09a7 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-b85d87b9e941861bd7aee26c50053ebc.md b/content/discover/feed-b85d87b9e941861bd7aee26c50053ebc.md new file mode 100644 index 000000000..1ceb04968 --- /dev/null +++ b/content/discover/feed-b85d87b9e941861bd7aee26c50053ebc.md @@ -0,0 +1,45 @@ +--- +title: Pencarian Jati Diri +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://uwanmr.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: b85d87b9e941861bd7aee26c50053ebc + websites: + https://uwanmr.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Beasiswa + - Lomba + relme: + https://uwanmr.blogspot.com/: true + last_post_title: Info PSB Bina Siswa SMA Plus Cisarua + last_post_description: Pada Tahun Pelajaran 2009/2010 Bina Siswa SMA Plus Cisarua + Yayasan Darmaloka Provinsi Jawa Barat memberikan kesempatan kepada para putra/putri + daerah sebanyak 60 s.d. 70 orang terdiri dari + last_post_date: "2009-04-25T13:49:00Z" + last_post_link: https://uwanmr.blogspot.com/2009/04/info-psb-bina-siswa-sma-plus.html + last_post_categories: + - Beasiswa + last_post_language: "" + last_post_guid: a2c1d34f566e14875b1196a43b58de1b + score_criteria: + cats: 2 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-b85dab6eeb3c83cf7d52bd1245480bb2.md b/content/discover/feed-b85dab6eeb3c83cf7d52bd1245480bb2.md deleted file mode 100644 index 42a581283..000000000 --- a/content/discover/feed-b85dab6eeb3c83cf7d52bd1245480bb2.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Ash Furrow's Blog -date: "1970-01-01T00:00:00Z" -description: Compassionate Software Developer -params: - feedlink: https://ashfurrow.com/feed.xml - feedtype: rss - feedid: b85dab6eeb3c83cf7d52bd1245480bb2 - websites: - https://ashfurrow.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://jlelse.blog/.min.rss - - https://jlelse.blog/.rss - - https://jlelse.blog/index.xml - categories: [] - relme: - https://github.com/ashfurrow: true - https://instagram.com/ashfurrow: false - https://photos.ashfurrow.com/: false - https://twitter.com/ashfurrow: false - last_post_title: New Year, New Me - last_post_description: I've been reluctant to write this post. I have a history - of writing blog posts where I announce my mental health has improved . - But… - last_post_date: "2024-01-15T00:00:00Z" - last_post_link: https://ashfurrow.com/blog/new-year-new-me/ - last_post_categories: [] - last_post_guid: 02152e314dd0c52e1ba13df6d35b5d4f - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 15 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-b880a26b602a5d905e15231de7a6ca58.md b/content/discover/feed-b880a26b602a5d905e15231de7a6ca58.md deleted file mode 100644 index 4ad138d84..000000000 --- a/content/discover/feed-b880a26b602a5d905e15231de7a6ca58.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Mijndert -date: "1970-01-01T00:00:00Z" -description: Public posts from @mijndert@fosstodon.org -params: - feedlink: https://fosstodon.org/@mijndert.rss - feedtype: rss - feedid: b880a26b602a5d905e15231de7a6ca58 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-b88b070115443d4c012b331d0dd9ed66.md b/content/discover/feed-b88b070115443d4c012b331d0dd9ed66.md new file mode 100644 index 000000000..9cb4be4b1 --- /dev/null +++ b/content/discover/feed-b88b070115443d4c012b331d0dd9ed66.md @@ -0,0 +1,142 @@ +--- +title: Best Job Online +date: "1970-01-01T00:00:00Z" +description: We have Best online Job for All but especially for teens. +params: + feedlink: https://oguzhanerenoffical.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: b88b070115443d4c012b331d0dd9ed66 + websites: + https://oguzhanerenoffical.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - online teen + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Get Best Job Online + last_post_description: |- + Essential obligations: One of the least demanding approaches to + bring in cash online is by finishing on the web studies or audits. Huge + organizations are consistently looking for assessments from + last_post_date: "2021-05-13T22:29:00Z" + last_post_link: https://oguzhanerenoffical.blogspot.com/2021/05/get-best-job-online.html + last_post_categories: + - online teen + last_post_language: "" + last_post_guid: bc85bdc13b67c05ccd521e3f53993e92 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-b89065dd4609c3bd4921c0527d8fb8bf.md b/content/discover/feed-b89065dd4609c3bd4921c0527d8fb8bf.md new file mode 100644 index 000000000..b56feb61a --- /dev/null +++ b/content/discover/feed-b89065dd4609c3bd4921c0527d8fb8bf.md @@ -0,0 +1,42 @@ +--- +title: Typed Logic +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://typedlogic.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: b89065dd4609c3bd4921c0527d8fb8bf + websites: + https://typedlogic.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://typedlogic.blogspot.com/: true + last_post_title: Mutable Syntax in Mercury + last_post_description: IntroductionThe Mercury programminglanguage is a compiled, + strict, pure, type-safe logical andfunctional programming language. Its programming + methodology isbased on predicate logic, with syntax and + last_post_date: "2007-12-27T16:59:00Z" + last_post_link: https://typedlogic.blogspot.com/2011/12/ltq.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 199ad73be02ce40a21ee77e311c30524 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-b8ace516e172f984b0a6b4c54ac1262a.md b/content/discover/feed-b8ace516e172f984b0a6b4c54ac1262a.md new file mode 100644 index 000000000..3cb120040 --- /dev/null +++ b/content/discover/feed-b8ace516e172f984b0a6b4c54ac1262a.md @@ -0,0 +1,43 @@ +--- +title: Alan Pope's blog +date: "1970-01-01T00:00:00Z" +description: Recent content on Alan Pope's blog +params: + feedlink: https://popey.com/blog/index.xml + feedtype: rss + feedid: b8ace516e172f984b0a6b4c54ac1262a + websites: + https://popey.com/blog/: true + https://popey.com/blog/post/: false + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://popey.com/blog/: true + last_post_title: The Joy of Code + last_post_description: A few weeks ago, in episode 25 of Linux Matters Podcast I + brought up the subject of ‘Coding Joy’. This blog post is an expanded follow-up + to that segment. Go and listen to that episode - or not - + last_post_date: "2024-04-27T09:00:00+01:00" + last_post_link: https://popey.com/blog/2024/04/the-joy-of-code/ + last_post_categories: [] + last_post_language: "" + last_post_guid: c13c632d9c4bca2332d670b4ac1e4421 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-b8c063272fd9f3f6e175397d669f83cd.md b/content/discover/feed-b8c063272fd9f3f6e175397d669f83cd.md deleted file mode 100644 index 43b1fa92a..000000000 --- a/content/discover/feed-b8c063272fd9f3f6e175397d669f83cd.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Lou Plummer's Obsidian Posts -date: "1970-01-01T00:00:00Z" -description: I jumped back into the IndieWeb after a 25-year absence. I lean towards - Mac flavored tech, but I also enjoy Internet culture, internationalism and not taking - things too seriously. -params: - feedlink: https://amerpie2.micro.blog/podcast.xml - feedtype: rss - feedid: b8c063272fd9f3f6e175397d669f83cd - websites: - https://amerpie2.micro.blog/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Society & Culture - relme: - https://micro.blog/amerpie: false - https://social.lol/@amerpie: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 1 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 10 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-b8cdb2a2dece362dd6727ce3f98255e3.md b/content/discover/feed-b8cdb2a2dece362dd6727ce3f98255e3.md deleted file mode 100644 index ffa9c5212..000000000 --- a/content/discover/feed-b8cdb2a2dece362dd6727ce3f98255e3.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Comments for Kimi Zhang -date: "1970-01-01T00:00:00Z" -description: Cloud Computing, Openstack, Networks -params: - feedlink: https://kimizhang.wordpress.com/comments/feed/ - feedtype: rss - feedid: b8cdb2a2dece362dd6727ce3f98255e3 - websites: - https://kimizhang.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on NFS backend for Openstack Glance/Cinder/Instance-store - by kimizhang - last_post_description: |- - In reply to Akshik. - - Sorry I have no experience with ESXi - last_post_date: "2015-04-15T08:07:40Z" - last_post_link: https://kimizhang.wordpress.com/2015/02/12/nfs-backend-for-openstack-glancecinderinstance-store/comment-page-1/#comment-364 - last_post_categories: [] - last_post_guid: bb2ff0bfe8fba8c7ff7f9157ef12efc8 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-b8d3693c90fde7dde132540e324fd5a1.md b/content/discover/feed-b8d3693c90fde7dde132540e324fd5a1.md deleted file mode 100644 index d0ef83e8f..000000000 --- a/content/discover/feed-b8d3693c90fde7dde132540e324fd5a1.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: pleia2's blog -date: "1970-01-01T00:00:00Z" -description: Elizabeth Krumbach Joseph's public journal about open source, mainframes, - beer, travel, pink gadgets and her life near the city where little cable cars climb - halfway to the stars. -params: - feedlink: https://princessleia.com/journal/feed/ - feedtype: rss - feedid: b8d3693c90fde7dde132540e324fd5a1 - websites: - https://princessleia.com/journal/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - family - - kids - - life - - travel - relme: {} - last_post_title: Father’s Day weekend “down the shore” - last_post_description: The boys love the beach. I’ve had this little fact tucked - away in my head since we brought them to their first beach in San Francisco last - year, but it’s tricky in northern California. Even - last_post_date: "2024-06-21T20:06:41Z" - last_post_link: https://princessleia.com/journal/2024/06/fathers-day-weekend-down-the-shore/ - last_post_categories: - - family - - kids - - life - - travel - last_post_guid: e8bb1d897f5452b84d202851cd8d205a - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-b8d74cb8c1a7acabdc62c67d016e01a8.md b/content/discover/feed-b8d74cb8c1a7acabdc62c67d016e01a8.md new file mode 100644 index 000000000..fe4ccaa9d --- /dev/null +++ b/content/discover/feed-b8d74cb8c1a7acabdc62c67d016e01a8.md @@ -0,0 +1,45 @@ +--- +title: Addio Fornelli +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://addiofornelli.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: b8d74cb8c1a7acabdc62c67d016e01a8 + websites: + https://addiofornelli.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://addiofornelli.blogspot.com/: true + https://phatmuzak.blogspot.com/: true + https://www.blogger.com/profile/09970688239263362080: true + https://zinosat.blogspot.com/: true + last_post_title: Risotto alla zucca + last_post_description: 'Ingredienti (x2 persone): * 170 g riso Arboreo * 180 + g zucca tagliata a fettine * 100 g ricotta * 25 g burro * 340 g acqua * + 1/4 cipolla * 2 cucchiaini di dado bimby * 1/2 mis' + last_post_date: "2009-02-07T18:21:00Z" + last_post_link: https://addiofornelli.blogspot.com/2009/02/risotto-alla-zucca.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 38012519a2bcc6c655a2515d3c5f1a46 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-b8deacf61f5143becc5af7d5d3b96a92.md b/content/discover/feed-b8deacf61f5143becc5af7d5d3b96a92.md deleted file mode 100644 index 5d8239ca9..000000000 --- a/content/discover/feed-b8deacf61f5143becc5af7d5d3b96a92.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: De quão pouco eu me lembro -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://dequaopoucoeumelembro.blogspot.com/feeds/posts/default?alt=rss - feedtype: rss - feedid: b8deacf61f5143becc5af7d5d3b96a92 - websites: - https://dequaopoucoeumelembro.blogspot.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://www.blogger.com/profile/13686446138092176062: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-b8e1f415a1f3ea348da005c71175a298.md b/content/discover/feed-b8e1f415a1f3ea348da005c71175a298.md new file mode 100644 index 000000000..f6fd2ea94 --- /dev/null +++ b/content/discover/feed-b8e1f415a1f3ea348da005c71175a298.md @@ -0,0 +1,42 @@ +--- +title: Stories of a young Racketeer +date: "2024-03-14T04:11:44+01:00" +description: "" +params: + feedlink: https://youngracketeer.blogspot.com/feeds/posts/default + feedtype: atom + feedid: b8e1f415a1f3ea348da005c71175a298 + websites: + https://youngracketeer.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://serras-haskell-gsoc.blogspot.com/: true + https://www.blogger.com/profile/07270771729166536980: true + https://youngracketeer.blogspot.com/: true + last_post_title: Racket boolean sanity + last_post_description: "" + last_post_date: "2013-01-13T14:57:00+01:00" + last_post_link: https://youngracketeer.blogspot.com/2013/01/racket-boolean-sanity.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 6466d17c6d787556584420e5bb6db1f6 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-b8e6ffd21d7009a5d4053b57620b5dcd.md b/content/discover/feed-b8e6ffd21d7009a5d4053b57620b5dcd.md deleted file mode 100644 index 51264a63c..000000000 --- a/content/discover/feed-b8e6ffd21d7009a5d4053b57620b5dcd.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: vegard.wiki - Recent changes [en] -date: "2024-06-30T03:08:55Z" -description: Track the most recent changes to the wiki in this feed. -params: - feedlink: https://vegard.wiki/mediawiki/api.php?hidebots=1&urlversion=1&days=7&limit=50&action=feedrecentchanges&feedformat=atom - feedtype: atom - feedid: b8e6ffd21d7009a5d4053b57620b5dcd - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-b8eca1b5a62883ad8e93d3664fd3e180.md b/content/discover/feed-b8eca1b5a62883ad8e93d3664fd3e180.md deleted file mode 100644 index eac360547..000000000 --- a/content/discover/feed-b8eca1b5a62883ad8e93d3664fd3e180.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: C-Command Software Blog -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://c-command.com/blog/feed/ - feedtype: rss - feedid: b8eca1b5a62883ad8e93d3664fd3e180 - websites: - https://c-command.com/: false - https://c-command.com/blog: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - SpamSieve - relme: {} - last_post_title: SpamSieve 3.0.4 - last_post_description: Update Download Buy SpamSieve Version 3.0.4 of SpamSieve - is now available. Save time by adding powerful spam filtering to the e-mail client - on your Mac. SpamSieve gives you back your inbox, using - last_post_date: "2024-05-17T13:08:34Z" - last_post_link: https://c-command.com/blog/2024/05/17/spamsieve-3-0-4/ - last_post_categories: - - SpamSieve - last_post_guid: 536ccece22de23b5ccf01946706bcca2 - score_criteria: - cats: 0 - description: 0 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-b8ff73b1b525ff387acab0c58104c48b.md b/content/discover/feed-b8ff73b1b525ff387acab0c58104c48b.md deleted file mode 100644 index 26beccc49..000000000 --- a/content/discover/feed-b8ff73b1b525ff387acab0c58104c48b.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: 'Alchemists: Screencasts' -date: "2021-02-15T13:39:41Z" -description: Screencast tutorials for teaching the craft of software engineering. -params: - feedlink: https://www.alchemists.io/feeds/screencasts.xml - feedtype: atom - feedid: b8ff73b1b525ff387acab0c58104c48b - websites: - https://www.alchemists.io/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - screencasts - relme: {} - last_post_title: Shell Exa Screencast - last_post_description: "" - last_post_date: "2021-02-15T13:39:41Z" - last_post_link: https://alchemists.io/screencasts/shell_exa - last_post_categories: - - screencasts - last_post_guid: 0b82e78160a6893f0bcd2d67bb5958ea - score_criteria: - cats: 1 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-b907f5bae0e337b69a8a5bd487858ccb.md b/content/discover/feed-b907f5bae0e337b69a8a5bd487858ccb.md index 3cde3d9a2..bf088cdb0 100644 --- a/content/discover/feed-b907f5bae0e337b69a8a5bd487858ccb.md +++ b/content/discover/feed-b907f5bae0e337b69a8a5bd487858ccb.md @@ -14,7 +14,8 @@ params: recommended: [] recommender: [] categories: [] - relme: {} + relme: + https://weekly.thingelstad.com/: true last_post_title: Weekly Thing 290 / Kino, Krebs, Kagi last_post_description: "Weekly Thing 290 with fifteen links and seven journal entries between May 24, 2024 and May 31, 2024. Sent from Minneapolis, MN.\n\nGood morning! @@ -22,17 +23,22 @@ params: last_post_date: "2024-06-01T13:54:38Z" last_post_link: https://weekly.thingelstad.com/archive/290/ last_post_categories: [] + last_post_language: "" last_post_guid: 6e7da89f715c991daaaae99529aba9ae score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 8 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-b932d147016ae23111873d6dbcb90305.md b/content/discover/feed-b932d147016ae23111873d6dbcb90305.md deleted file mode 100644 index 6d246ecf4..000000000 --- a/content/discover/feed-b932d147016ae23111873d6dbcb90305.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: openstack – Tail -f sbauza.log -date: "1970-01-01T00:00:00Z" -description: Thoughts about Python, Linux, home automation or Openstack -params: - feedlink: https://sbauza.wordpress.com/tag/openstack/feed/ - feedtype: rss - feedid: b932d147016ae23111873d6dbcb90305 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Openstack - - Python - - in - - openstack - relme: {} - last_post_title: How to compare 2 patchsets in Gerrit ? - last_post_description: Reviewing is one of my duties I’m doing daily. I try to dedicate - around 2 hours each day in reading code, understanding the principles, checking - if everything is OK from a Python perspective, - last_post_date: "2014-11-14T10:26:07Z" - last_post_link: https://sbauza.wordpress.com/2014/11/14/how-to-compare-2-patchsets-in-gerrit/ - last_post_categories: - - Openstack - - Python - - in - - openstack - last_post_guid: ae29a3c43bfae677e5743c15c4160170 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-b9383b2e45eb9e7f153bf435ca2c6086.md b/content/discover/feed-b9383b2e45eb9e7f153bf435ca2c6086.md deleted file mode 100644 index 5498140f1..000000000 --- a/content/discover/feed-b9383b2e45eb9e7f153bf435ca2c6086.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Base-Art - Philippe Normand -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://base-art.net/Articles/rss.xml - feedtype: rss - feedid: b9383b2e45eb9e7f153bf435ca2c6086 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - misc - - Projects - - WebKit - - GStreamer - relme: {} - last_post_title: From WebKit/GStreamer to rust-av, a journey on our stack’s layers - last_post_description: |- - In this post I’ll try to document the journey starting from a WebKit issue and - ending up improving third-party projects that WebKitGTK and WPEWebKit depend on. - I’ve been working on WebKit’s - last_post_date: "2024-04-16T22:15:00+02:00" - last_post_link: https://base-art.net/Articles/from-webkitgstreamer-to-rust-av-a-journey-on-our-stacks-layers/ - last_post_categories: - - misc - - Projects - - WebKit - - GStreamer - last_post_guid: 53c0d039c6f3035bde1ba49e1976736d - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-b942e23f295ef33b1b68252a0addc175.md b/content/discover/feed-b942e23f295ef33b1b68252a0addc175.md deleted file mode 100644 index 613c59206..000000000 --- a/content/discover/feed-b942e23f295ef33b1b68252a0addc175.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: tomhazledine -date: "1970-01-01T00:00:00Z" -description: Public posts from @tomhazledine@mastodon.social -params: - feedlink: https://mastodon.social/@tomhazledine.rss - feedtype: rss - feedid: b942e23f295ef33b1b68252a0addc175 - websites: - https://mastodon.social/@tomhazledine: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://aquestionofcode.com/: false - https://rssisawesome.com/: true - https://tomhazledine.com/: true - https://www.youtube.com/tomhazledine: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-b96cd368c7c6e2492a06290a1b296af9.md b/content/discover/feed-b96cd368c7c6e2492a06290a1b296af9.md deleted file mode 100644 index b917d28d3..000000000 --- a/content/discover/feed-b96cd368c7c6e2492a06290a1b296af9.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: OmniOS -date: "1970-01-01T00:00:00Z" -description: Public posts from @omnios@hachyderm.io -params: - feedlink: https://hachyderm.io/@omnios.rss - feedtype: rss - feedid: b96cd368c7c6e2492a06290a1b296af9 - websites: - https://hachyderm.io/@omnios: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/approved/: true - https://github.com/omniosorg/: false - https://omnios.org/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-b97a655e6c829faa7dfcb146f92d3a7e.md b/content/discover/feed-b97a655e6c829faa7dfcb146f92d3a7e.md deleted file mode 100644 index 769d5d92b..000000000 --- a/content/discover/feed-b97a655e6c829faa7dfcb146f92d3a7e.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Reacties voor Zijperspace -date: "1970-01-01T00:00:00Z" -description: Mijn digitaal universum -params: - feedlink: https://zijperspace.nl/comments/feed/ - feedtype: rss - feedid: b97a655e6c829faa7dfcb146f92d3a7e - websites: - https://zijperspace.nl/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Reactie op Optellen door Ton Zijp - last_post_description: |- - In antwoord op Marjolijn. - - Was ik helemaal vergeten dat ik geen mailtje/bericht krijg als iemand gereageerd heeft op 1 van m'n posts. Dus - last_post_date: "2024-05-04T18:44:33Z" - last_post_link: https://zijperspace.nl/optellen/#comment-14039 - last_post_categories: [] - last_post_guid: 505e0793413fb5690bd54119b36f4eb1 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-b97d156b00fd01b02ccebcddac1f64a0.md b/content/discover/feed-b97d156b00fd01b02ccebcddac1f64a0.md deleted file mode 100644 index cc38baa29..000000000 --- a/content/discover/feed-b97d156b00fd01b02ccebcddac1f64a0.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: mon journal - par Vincent - Tag - openstack -date: "2023-01-23T10:27:08Z" -description: mon journal - par Vincent -params: - feedlink: https://www.vuntz.net/journal/feed/tag/openstack/atom - feedtype: atom - feedid: b97d156b00fd01b02ccebcddac1f64a0 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Travail - - openstack - relme: {} - last_post_title: SUSE Ruling the Stack in Vancouver - last_post_description: "" - last_post_date: "2015-05-28T10:21:56+02:00" - last_post_link: https://www.vuntz.net/journal/post/2015/05/26/SUSE-Ruling-the-Stack-in-Vancouver - last_post_categories: - - Travail - - openstack - last_post_guid: ba16376ac29fb3523d2a160e394f9701 - score_criteria: - cats: 0 - description: 3 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-b98d27e71ab9ca63ccc23dcab43fe284.md b/content/discover/feed-b98d27e71ab9ca63ccc23dcab43fe284.md new file mode 100644 index 000000000..e76b9a1be --- /dev/null +++ b/content/discover/feed-b98d27e71ab9ca63ccc23dcab43fe284.md @@ -0,0 +1,45 @@ +--- +title: Alastair Johnston +date: "2024-06-28T12:05:07+01:00" +description: "" +params: + feedlink: https://alastairjohnston.com/feed.xml + feedtype: atom + feedid: b98d27e71ab9ca63ccc23dcab43fe284 + websites: + https://alastairjohnston.com/: false + blogrolls: [] + recommended: [] + recommender: + - https://colinwalker.blog/dailyfeed.xml + - https://colinwalker.blog/livefeed.xml + categories: + - AI + relme: {} + last_post_title: My AI Declaration + last_post_description: My work is made by a human for humans. Nothing on my website, + none of the text or images have been created or developed using any Artificial + Intelligence tools. (With the exception of this single + last_post_date: "2024-06-28T12:05:07+01:00" + last_post_link: https://alastairjohnston.com/ai/ + last_post_categories: + - AI + last_post_language: "" + last_post_guid: 7847998654b66280caa2b93fac4ffec2 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 1 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-b9d5e311eeb8761446556454aac94f9b.md b/content/discover/feed-b9d5e311eeb8761446556454aac94f9b.md deleted file mode 100644 index 5571daeb5..000000000 --- a/content/discover/feed-b9d5e311eeb8761446556454aac94f9b.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: openstack – I'm just sayin -date: "1970-01-01T00:00:00Z" -description: Random thoughts, opinions and the occasional "how-to" -params: - feedlink: https://griffithscorner.wordpress.com/category/openstack/feed/ - feedtype: rss - feedid: b9d5e311eeb8761446556454aac94f9b - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - openstack - - Uncategorized - relme: {} - last_post_title: The problem with SDS under Cinder - last_post_description: It’s been a great Summit here in Atlanta, we’ve had one of - the most exciting and energetic Summit’s that I’ve had the opportunity to participate - in so far.  Now that we’ve cleared the - last_post_date: "2014-05-16T13:47:29Z" - last_post_link: https://griffithscorner.wordpress.com/2014/05/16/the-problem-with-sds-under-cinder/ - last_post_categories: - - openstack - - Uncategorized - last_post_guid: f460aea9db46045b1bd6dfdc65108ef5 - score_criteria: - cats: 0 - description: 3 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ba0cdc2ab330dd7335b47c2edfb8f0f9.md b/content/discover/feed-ba0cdc2ab330dd7335b47c2edfb8f0f9.md new file mode 100644 index 000000000..0b286da44 --- /dev/null +++ b/content/discover/feed-ba0cdc2ab330dd7335b47c2edfb8f0f9.md @@ -0,0 +1,140 @@ +--- +title: Ddos At its Peak +date: "2024-07-08T14:08:03-07:00" +description: All about Ddosing and Attack at one website. Here you get most perfect + content about Ddosing illegal. +params: + feedlink: https://mulheresabias.blogspot.com/feeds/posts/default + feedtype: atom + feedid: ba0cdc2ab330dd7335b47c2edfb8f0f9 + websites: + https://mulheresabias.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ddos + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Get into Ddosing + last_post_description: "" + last_post_date: "2021-04-24T14:49:54-07:00" + last_post_link: https://mulheresabias.blogspot.com/2021/04/get-into-ddosing.html + last_post_categories: + - ddos + last_post_language: "" + last_post_guid: ffacd00a766fb0ebe642c53d0d7fe903 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-ba1264b4c441f378a1ee02b1386b8ec7.md b/content/discover/feed-ba1264b4c441f378a1ee02b1386b8ec7.md deleted file mode 100644 index 28f8cbfa3..000000000 --- a/content/discover/feed-ba1264b4c441f378a1ee02b1386b8ec7.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Blogs on -date: "1970-01-01T00:00:00Z" -description: Recent content in Blogs on -params: - feedlink: https://litestream.io/blog/index.xml - feedtype: rss - feedid: ba1264b4c441f378a1ee02b1386b8ec7 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://jlelse.blog/.min.rss - - https://jlelse.blog/.rss - - https://jlelse.blog/index.xml - categories: [] - relme: {} - last_post_title: Why I Built Litestream - last_post_description: tl;dr—Despite an exponential increase in computing power, - our applications require more machines than ever because of architectural decisions - made 25 years ago. You can eliminate much of your - last_post_date: "2021-02-10T00:00:00Z" - last_post_link: https://litestream.io/blog/why-i-built-litestream/ - last_post_categories: [] - last_post_guid: 999d549983ca49b36fbcd80efa86a453 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ba16522089836f8d07a599a7206bee0f.md b/content/discover/feed-ba16522089836f8d07a599a7206bee0f.md deleted file mode 100644 index 4f1d87ec9..000000000 --- a/content/discover/feed-ba16522089836f8d07a599a7206bee0f.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Overcast -date: "1970-01-01T00:00:00Z" -description: Public posts from @overcastfm@mastodon.social -params: - feedlink: https://mastodon.social/@overcastfm.rss - feedtype: rss - feedid: ba16522089836f8d07a599a7206bee0f - websites: - https://mastodon.social/@overcastfm: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://apps.apple.com/us/app/overcast/id888422857: false - https://overcast.fm/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ba3956bbe101c16045f2234020a70e80.md b/content/discover/feed-ba3956bbe101c16045f2234020a70e80.md deleted file mode 100644 index a39a30452..000000000 --- a/content/discover/feed-ba3956bbe101c16045f2234020a70e80.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Ctrl blog -date: "2023-09-10T22:12:00Z" -description: "" -params: - feedlink: https://feed.ctrl.blog/latest.atom - feedtype: atom - feedid: ba3956bbe101c16045f2234020a70e80 - websites: - https://www.ctrl.blog/: true - https://www.daniel.priv.no/: false - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: - - /topic/microsoft-windows.html - - /topic/web-browsers.html - relme: - https://social.vivaldi.net/@daniel: true - last_post_title: Microsoft has not stopped forcing Edge on Windows 11 users - last_post_description: Microsoft announces vague changes to the default web browser - setting for Windows Insider. Nothing but wishful thinking. Still force-opens web - links in Edge. - last_post_date: "2023-09-10T22:12:00Z" - last_post_link: https://www.ctrl.blog/entry/windows-system-components-default-edge.html - last_post_categories: - - /topic/microsoft-windows.html - - /topic/web-browsers.html - last_post_guid: 4814f8b2fd89867c9075803d40a6ab84 - score_criteria: - cats: 0 - description: 0 - postcats: 2 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 14 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ba3972df791fd240265287856810ea82.md b/content/discover/feed-ba3972df791fd240265287856810ea82.md deleted file mode 100644 index ed67c918c..000000000 --- a/content/discover/feed-ba3972df791fd240265287856810ea82.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: OpenStack – I wanted lifshi.tz -date: "1970-01-01T00:00:00Z" -description: But Tanzania restricts their TLD -params: - feedlink: https://notartom.net/category/openstack/feed/ - feedtype: rss - feedid: ba3972df791fd240265287856810ea82 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - OpenStack - relme: {} - last_post_title: Virtual device role tagging, better explained - last_post_description: Now that Nova’s device role tagging feature talked about - in a previous blog post is getting some real world usage, I’m starting to realise - that it’s woefully under-documented and folks are - last_post_date: "2017-06-20T13:33:45Z" - last_post_link: https://notartom.net/2017/06/20/virtual-device-role-tagging-better-explained/ - last_post_categories: - - OpenStack - last_post_guid: 1ee7c539ba0d44275651a8454e4daba8 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ba44a16669e7d09972ac6a8ba2eb2bdb.md b/content/discover/feed-ba44a16669e7d09972ac6a8ba2eb2bdb.md new file mode 100644 index 000000000..dcfb73104 --- /dev/null +++ b/content/discover/feed-ba44a16669e7d09972ac6a8ba2eb2bdb.md @@ -0,0 +1,55 @@ +--- +title: Mad Meiers Cloud +date: "1970-01-01T00:00:00Z" +description: 'Business and IT are intertwined today. This blog touches both sides + with thoughts on #vr #fintech #IoT #ai and #blockshain.' +params: + feedlink: https://madmeierscloud.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: ba44a16669e7d09972ac6a8ba2eb2bdb + websites: + https://madmeierscloud.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - alexa + - blockchain + - change + - fintech + - voicefirst + relme: + https://4urit.blogspot.com/: true + https://huggenberg.blogspot.com/: true + https://madmeiersadventures.blogspot.com/: true + https://madmeierscloud.blogspot.com/: true + https://madmeierslife.blogspot.com/: true + https://madmeierstwike.blogspot.com/: true + https://mmsketches.blogspot.com/: true + https://www.blogger.com/profile/14628306885093928732: true + last_post_title: Breaking Banks - Brett King and Anthony Jenkins + last_post_description: All working for incumbents in financial services (and for + all other interested in fintech) should listen to the breaking banks talk between + Brett King and Anthony Jenkins. Anthony is the former CE of + last_post_date: "2017-03-11T16:42:00Z" + last_post_link: https://madmeierscloud.blogspot.com/2017/03/breaking-banks-brett-king-and-anthony.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 94d4e1a3653af362c9d201368d3b598e + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-ba4cae267df232b60bfabebe1a9313e3.md b/content/discover/feed-ba4cae267df232b60bfabebe1a9313e3.md deleted file mode 100644 index 6bdac8099..000000000 --- a/content/discover/feed-ba4cae267df232b60bfabebe1a9313e3.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Radio Blogpocket archivos - Blogpocket -date: "1970-01-01T00:00:00Z" -description: Cómo hacer un blog con WordPress -params: - feedlink: https://www.blogpocket.com/podcasts/radio-blogpocket/feed/ - feedtype: rss - feedid: ba4cae267df232b60bfabebe1a9313e3 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Videos Sótano - - WordPress - relme: {} - last_post_title: 'Los vídeos del sótano #16: Studio, Wordfence y Manolo Rodríguez' - last_post_description: |- - Los vídeos del sótano #16: Studio, Wordfence y Manolo Rodríguez - En los Vídeos del sótano se recopilan los antiguos clips de la serie Blogpocketies, lo mejor de HECHO CON BLOQUES, junto a vídeos - last_post_date: "2024-05-31T06:00:00Z" - last_post_link: https://www.blogpocket.com/podcast/los-videos-del-sotano-16-studio-wordfence-y-manolo-rodriguez/ - last_post_categories: - - Videos Sótano - - WordPress - last_post_guid: 53f9864fc4fea31a0f006750242e394b - score_criteria: - cats: 0 - description: 3 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ba6a1a224349777685e8a891cb38c96f.md b/content/discover/feed-ba6a1a224349777685e8a891cb38c96f.md deleted file mode 100644 index 8fc47b07b..000000000 --- a/content/discover/feed-ba6a1a224349777685e8a891cb38c96f.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: StackHPC Ltd -date: "2022-10-26T12:00:00+01:00" -description: "" -params: - feedlink: https://www.stackhpc.com/feeds/stackhpc.atom.xml - feedtype: atom - feedid: ba6a1a224349777685e8a891cb38c96f - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Workloads - - azimuth - - openstack - - slurm - - kubernetes - relme: {} - last_post_title: Azimuth - enabling computational scientists to manage science workflows - in the cloud - last_post_description: Azimuth - enabling scientists to manage science environments - in the cloud. - last_post_date: "2022-10-26T12:00:00+01:00" - last_post_link: https://www.stackhpc.com/azimuth-introduction.html - last_post_categories: - - Workloads - - azimuth - - openstack - - slurm - - kubernetes - last_post_guid: 8a20804f7a08144875d6116d944526f4 - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ba6fd73a8f158a847a9ec19fd6d38284.md b/content/discover/feed-ba6fd73a8f158a847a9ec19fd6d38284.md deleted file mode 100644 index 63d1e0bf6..000000000 --- a/content/discover/feed-ba6fd73a8f158a847a9ec19fd6d38284.md +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: Spinning -date: "1970-01-01T00:00:00Z" -description: Open source. Distributed computing. @spinningmatt -params: - feedlink: https://spinningmatt.wordpress.com/feed/ - feedtype: rss - feedid: ba6fd73a8f158a847a9ec19fd6d38284 - websites: - https://spinningmatt.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Fedora - - Hadoop - - OpenStack - - RDO - - Savanna - - Tutorial - relme: {} - last_post_title: 'Hadoop on OpenStack with a CLI: Creating a cluster' - last_post_description: OpenStack Savanna can already help you create a Hadoop cluster - or run a Hadoop workload all through the Horizon dashboard. What it could not - do until now is let you do that through a command-line - last_post_date: "2014-01-29T12:37:14Z" - last_post_link: https://spinningmatt.wordpress.com/2014/01/29/hadoop-on-openstack-with-a-cli-creating-a-cluster/ - last_post_categories: - - Fedora - - Hadoop - - OpenStack - - RDO - - Savanna - - Tutorial - last_post_guid: 6c96d26b858536adc05943f8d0916a44 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ba7c07ffb79342098b24cedeeff4bf17.md b/content/discover/feed-ba7c07ffb79342098b24cedeeff4bf17.md new file mode 100644 index 000000000..b002654db --- /dev/null +++ b/content/discover/feed-ba7c07ffb79342098b24cedeeff4bf17.md @@ -0,0 +1,143 @@ +--- +title: Fridge and Freezer. +date: "1970-01-01T00:00:00Z" +description: Freezer and fridge benefits. +params: + feedlink: https://shopeetotolinkbaru.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: ba7c07ffb79342098b24cedeeff4bf17 + websites: + https://shopeetotolinkbaru.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - refrigerator and its freez + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Fridge Vs Freezer + last_post_description: |- + Home machines have + turned into a vital part of every single family. They have made our life such a + great deal simpler than it is exceedingly difficult for us to ponder living + without these machines. + last_post_date: "2021-10-17T11:33:00Z" + last_post_link: https://shopeetotolinkbaru.blogspot.com/2021/10/fridge-vs-freezer.html + last_post_categories: + - refrigerator and its freez + last_post_language: "" + last_post_guid: 48c283dd791cb8c1a91a646c1586026f + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-ba813565ba07307bc0974327a21259bd.md b/content/discover/feed-ba813565ba07307bc0974327a21259bd.md deleted file mode 100644 index 011481d1a..000000000 --- a/content/discover/feed-ba813565ba07307bc0974327a21259bd.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Ethan Marcotte -date: "1970-01-01T00:00:00Z" -description: Public posts from @beep@follow.ethanmarcotte.com -params: - feedlink: https://follow.ethanmarcotte.com/@beep.rss - feedtype: rss - feedid: ba813565ba07307bc0974327a21259bd - websites: - https://follow.ethanmarcotte.com/@beep: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://abookapart.com/products/you-deserve-a-tech-union: false - https://ethanmarcotte.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ba8176f69c9b2da428efc991ebb62000.md b/content/discover/feed-ba8176f69c9b2da428efc991ebb62000.md new file mode 100644 index 000000000..f4f557fa6 --- /dev/null +++ b/content/discover/feed-ba8176f69c9b2da428efc991ebb62000.md @@ -0,0 +1,47 @@ +--- +title: '#EmacsA11yTips | pvagner''s Known' +date: "1970-01-01T00:00:00Z" +description: A social website powered by Known +params: + feedlink: https://pvagner.sk/tag/EmacsA11yTips?_t=rss + feedtype: rss + feedid: ba8176f69c9b2da428efc991ebb62000 + websites: + https://pvagner.sk/tag/EmacsA11yTips: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - '#EmacsA11yTips' + - '#Using_the_SSH_server' + relme: + https://pvagner.sk/tag/EmacsA11yTips: true + last_post_title: 'Emacs A11y Tip #3: Emacs with speechd-el running on Termux for + Android' + last_post_description: 'After a long while I am here with another post in my collection + of #EmacsA11yTips.This time I am not going to talk about emacs environment with + speech as provided by speechd-el, I will try to' + last_post_date: "2024-06-23T09:55:36Z" + last_post_link: https://pvagner.sk/2024/emacs-a11y-tip-3-emacs-with-speechd-el-running-on-termux + last_post_categories: + - '#EmacsA11yTips' + - '#Using_the_SSH_server' + last_post_language: "" + last_post_guid: 200a19bd1bb19a1a5e0dec2c2699b9ef + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-ba841aac2816340aee431ccdd08877d1.md b/content/discover/feed-ba841aac2816340aee431ccdd08877d1.md deleted file mode 100644 index e1a4542fe..000000000 --- a/content/discover/feed-ba841aac2816340aee431ccdd08877d1.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: '@hacdias.com - Henrique Dias' -date: "1970-01-01T00:00:00Z" -description: "Portuguese \U0001F1F5\U0001F1F9 software engineer living in The Netherlands - \U0001F1F3\U0001F1F1, interested in web infrastructure, decentralised systems, and - making tools for developers and users. https://hacdias.com." -params: - feedlink: https://bsky.app/profile/did:plc:xsx3bphrwkgeo3qnfjhzmdra/rss - feedtype: rss - feedid: ba841aac2816340aee431ccdd08877d1 - websites: - https://bsky.app/profile/hacdias.com: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ba94cdd6b5509eab279ad78c88271046.md b/content/discover/feed-ba94cdd6b5509eab279ad78c88271046.md index 1d9b6d917..42f6b13fd 100644 --- a/content/discover/feed-ba94cdd6b5509eab279ad78c88271046.md +++ b/content/discover/feed-ba94cdd6b5509eab279ad78c88271046.md @@ -15,25 +15,33 @@ params: - https://rknight.me/subscribe/posts/rss.xml categories: [] relme: - https://social.lol/@adam: false - last_post_title: 'Pokémon Art Appreciation, Day 31: Bidoof 29/39' + https://notes.neatnik.net/: true + last_post_title: Spake last_post_description: |- - This post is part of a series for WeblogPoMo 2024. Each day in May, I’m sharing my appreciation for my favorite Pokémon card art. View all of the posts in this series. - For the final entry in this - last_post_date: "2024-05-31T04:01:00Z" - last_post_link: https://notes.neatnik.net/2024/05/pokmon-art-appreciation-day-31-bidoof-29-39 + Spake + Last week when I was hanging out in the omg.lol chat, I saw this: + There should be a really easy way to audio blog + blogcast? + No I mean like low rent lofi + last_post_date: "2024-07-04T17:06:00Z" + last_post_link: https://notes.neatnik.net/2024/07/spake last_post_categories: [] - last_post_guid: b2e39cd053abe02de86322f37d12856b + last_post_language: "" + last_post_guid: cb6ec622bf634dfc8ac1648cccab78f8 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 14 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-baadc77c534e5e5389aaeb9a1cd4950c.md b/content/discover/feed-baadc77c534e5e5389aaeb9a1cd4950c.md deleted file mode 100644 index cd289e923..000000000 --- a/content/discover/feed-baadc77c534e5e5389aaeb9a1cd4950c.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: 'Amit Gawande :verified_coffee:' -date: "1970-01-01T00:00:00Z" -description: Public posts from @amit@social.lol -params: - feedlink: https://social.lol/@amit.rss - feedtype: rss - feedid: baadc77c534e5e5389aaeb9a1cd4950c - websites: - https://social.lol/@amit: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://amitg.net/: true - https://amitgawande.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-bab1bf5968a44f96ecd5b51d8946f086.md b/content/discover/feed-bab1bf5968a44f96ecd5b51d8946f086.md deleted file mode 100644 index 8e54e9675..000000000 --- a/content/discover/feed-bab1bf5968a44f96ecd5b51d8946f086.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: The Clearleft Podcast -date: "1970-01-01T00:00:00Z" -description: The Clearleft podcast investigates the process of design. We talk to - peers, clients, and customers. Then we share what we learn about the challenges - and rewards of digital design. -params: - feedlink: https://podcast.clearleft.com/podcast.xml - feedtype: rss - feedid: bab1bf5968a44f96ecd5b51d8946f086 - websites: - https://podcast.clearleft.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: - - Technology - relme: - https://castro.fm/podcast/da141a1b-5733-4dde-bf79-fc66190ac2d1: false - https://open.spotify.com/show/5KQLgC4Jg7mBRIKlBS1Xea: false - https://overcast.fm/itunes1520047159/the-clearleft-podcast: false - https://pca.st/8lfq0siv: false - https://podcasts.apple.com/podcast/the-clearleft-podcast/id1520047159: false - https://tunein.com/podcasts/Technology-Podcasts/The-Clearleft-Podcast-p1337646/: false - https://www.deezer.com/en/show/1416122: false - last_post_title: Onboarding - last_post_description: How do you introduce users to product features without alienating - or patronising them? - last_post_date: "2024-04-09T10:00:00Z" - last_post_link: https://podcast.clearleft.com/season04/episode02 - last_post_categories: [] - last_post_guid: 39504352f3e133d662154e34fb290d5a - score_criteria: - cats: 1 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 15 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-bab8d529dbe1c8258839021680182b6b.md b/content/discover/feed-bab8d529dbe1c8258839021680182b6b.md new file mode 100644 index 000000000..ea231a055 --- /dev/null +++ b/content/discover/feed-bab8d529dbe1c8258839021680182b6b.md @@ -0,0 +1,165 @@ +--- +title: XMPP Jingle - The Next Generation VoIP +date: "2024-07-03T22:33:25-07:00" +description: Discussions about VoIP, Jingle, SIP, XMPP and Jingle Nodes +params: + feedlink: https://xmppjingle.blogspot.com/feeds/posts/default + feedtype: atom + feedid: bab8d529dbe1c8258839021680182b6b + websites: + https://xmppjingle.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 3d + - 3g + - EU + - ICE + - IE6 + - IPV4 + - Real Player + - Vista + - add-on + - alternative + - android + - api + - app engine + - apple + - appliance + - block + - bots + - brazil + - browser + - buy + - call + - call center + - cisco + - client + - codec + - commandments + - company + - comparison + - cparty + - dns + - down + - drop.io + - egypt + - ejabberd + - encoding + - erlang + - erlrtpproxy + - facebook + - facetime + - federation + - fisl + - fisl10 + - fisl11 + - flash + - fosdem + - freedom + - fridge + - game + - gips + - gmail + - google + - google voice + - gravity + - gtalk + - hxmpp + - internet + - interoperability + - iphone + - iq + - jabber + - java + - jingle + - jingle gateway + - jingle nodes + - jitsi + - logo + - matrix + - mobile + - mobile voip + - movies + - msn + - nimbuzz + - nlnet + - nodes + - open + - opendiscussionday + - openfire + - opensource + - opus + - oscon + - ouvid.us + - p2p + - p2p nat + - phylosophy + - physics + - plugin + - presentation + - price + - protocol + - python + - quotes + - random + - rapportive + - relay + - rtp + - rtpproxy + - s2s + - services + - shopping + - sip + - sip communicator + - sip gateway + - skype + - srv + - standard + - stun + - summit + - super nodes + - surveillance + - talkr.im + - test + - time + - twilio + - video + - vodafone + - voice + - voip + - vuc + - web + - xbox + - xmpp + relme: + https://xmppjingle.blogspot.com/: true + last_post_title: ouvid.us - Twilio Experiment + last_post_description: "" + last_post_date: "2011-08-07T10:59:05-07:00" + last_post_link: https://xmppjingle.blogspot.com/2011/08/ouvidus-twilio-experiment.html + last_post_categories: + - call center + - ouvid.us + - twilio + - web + last_post_language: "" + last_post_guid: dbc3cd3bff24080fce98378274907ac7 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-babf16fbc59b88fe12cde61fe9c6cbf5.md b/content/discover/feed-babf16fbc59b88fe12cde61fe9c6cbf5.md new file mode 100644 index 000000000..419a56d67 --- /dev/null +++ b/content/discover/feed-babf16fbc59b88fe12cde61fe9c6cbf5.md @@ -0,0 +1,41 @@ +--- +title: Process Developments +date: "2024-04-05T03:10:13+02:00" +description: "" +params: + feedlink: https://processdevelopments.blogspot.com/feeds/posts/default + feedtype: atom + feedid: babf16fbc59b88fe12cde61fe9c6cbf5 + websites: + https://processdevelopments.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://processdevelopments.blogspot.com/: true + https://www.blogger.com/profile/03067067751334471585: true + last_post_title: Workflow For Dataflow? + last_post_description: "" + last_post_date: "2015-09-10T17:44:45+02:00" + last_post_link: https://processdevelopments.blogspot.com/2015/09/workflow-for-dataflow.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 616a7894fc54a8ec3cfd5f0abec43990 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-badae9597eb9cd1621f2c0656f62d2a5.md b/content/discover/feed-badae9597eb9cd1621f2c0656f62d2a5.md deleted file mode 100644 index a3cf3267a..000000000 --- a/content/discover/feed-badae9597eb9cd1621f2c0656f62d2a5.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Robin Berjon -date: "2023-12-01T00:00:00Z" -description: "" -params: - feedlink: https://berjon.com/feed.atom - feedtype: atom - feedid: badae9597eb9cd1621f2c0656f62d2a5 - websites: - https://berjon.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: [] - relme: - https://mastodon.social/@robin: true - last_post_title: The Chimeralogists - last_post_description: Over the past few months I've been having many conversations - with people who all have a particular set of skills but whose job titles are all - over the place. I believe that we form a more coherent - last_post_date: "2023-12-01T00:00:00Z" - last_post_link: https://berjon.com/chimeralogist/ - last_post_categories: [] - last_post_guid: d3a1d9304ff12a568d1eb4e2410b3a34 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 12 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-badf34c611fbd45dc58f0eb46dda474f.md b/content/discover/feed-badf34c611fbd45dc58f0eb46dda474f.md new file mode 100644 index 000000000..595575a5f --- /dev/null +++ b/content/discover/feed-badf34c611fbd45dc58f0eb46dda474f.md @@ -0,0 +1,43 @@ +--- +title: Mrepek +date: "2024-03-12T18:59:14-07:00" +description: "" +params: + feedlink: https://mrepek.blogspot.com/feeds/posts/default + feedtype: atom + feedid: badf34c611fbd45dc58f0eb46dda474f + websites: + https://mrepek.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - coderstalk + - merepek + relme: + https://mrepek.blogspot.com/: true + last_post_title: Tengah design template baru untuk Coder's Talk + last_post_description: "" + last_post_date: "2011-04-19T19:01:42-07:00" + last_post_link: https://mrepek.blogspot.com/2011/04/tengah-design-template-baru-untuk.html + last_post_categories: + - coderstalk + last_post_language: "" + last_post_guid: b86f3b44d329a84f7bf15486ff6b20c7 + score_criteria: + cats: 2 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-badf5ebe4fbb607836c1ef46de616c98.md b/content/discover/feed-badf5ebe4fbb607836c1ef46de616c98.md deleted file mode 100644 index 222738ce2..000000000 --- a/content/discover/feed-badf5ebe4fbb607836c1ef46de616c98.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Douglas Rushkoff -date: "1970-01-01T00:00:00Z" -description: Public posts from @Rushkoff@social.coop -params: - feedlink: https://social.coop/@Rushkoff.rss - feedtype: rss - feedid: badf5ebe4fbb607836c1ef46de616c98 - websites: - https://social.coop/@Rushkoff: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-bae3c0c55110670ca8b8f968ef5a0a0d.md b/content/discover/feed-bae3c0c55110670ca8b8f968ef5a0a0d.md new file mode 100644 index 000000000..00b993665 --- /dev/null +++ b/content/discover/feed-bae3c0c55110670ca8b8f968ef5a0a0d.md @@ -0,0 +1,47 @@ +--- +title: Comments for Philip Withnall +date: "1970-01-01T00:00:00Z" +description: Free software, the outdoors and the environment. +params: + feedlink: https://tecnocode.co.uk/comments/feed/ + feedtype: rss + feedid: bae3c0c55110670ca8b8f968ef5a0a0d + websites: + https://tecnocode.co.uk/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://mastodon.social/@pwithnall: true + https://tecnocode.co.uk/: true + last_post_title: Comment on Getting from the UK to Riga for GUADEC 2023 by Philip + Withnall + last_post_description: |- + In reply to Allan Day. + + tl;dr: seat61.com will get you most of the way. + + My + last_post_date: "2023-08-08T19:17:52Z" + last_post_link: https://tecnocode.co.uk/2023/05/23/getting-from-the-uk-to-riga-for-guadec-2023/comment-page-1/#comment-9578 + last_post_categories: [] + last_post_language: "" + last_post_guid: 79b246b11e259722ca9a31a25c0f1b48 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-bae5a1711ad4e7dd00ecbae493daebdc.md b/content/discover/feed-bae5a1711ad4e7dd00ecbae493daebdc.md new file mode 100644 index 000000000..3451193fc --- /dev/null +++ b/content/discover/feed-bae5a1711ad4e7dd00ecbae493daebdc.md @@ -0,0 +1,45 @@ +--- +title: Peewee Convenor Notes +date: "2024-02-02T07:13:09-08:00" +description: Notes from the Kanata Minor Hockey Association Peewee Convenor for the + 2011-2012 season. +params: + feedlink: https://kmhapeeweeconvenor.blogspot.com/feeds/posts/default + feedtype: atom + feedid: bae5a1711ad4e7dd00ecbae493daebdc + websites: + https://kmhapeeweeconvenor.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - "1:44" + relme: + https://ahuntereclipse.blogspot.com/: true + https://ahunterhunter.blogspot.com/: true + https://kmhapeeweeconvenor.blogspot.com/: true + https://www.blogger.com/profile/03060102622123930690: true + last_post_title: Peewee Playoff Standings as of Fri Apr 13 + last_post_description: "" + last_post_date: "2012-04-13T07:48:11-07:00" + last_post_link: https://kmhapeeweeconvenor.blogspot.com/2012/04/peewee-playoff-standings-as-of-fri-apr.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 74e23cb18f296839dc874ac70810b9fc + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-bae62a0f7ac2e2a4fbdf99d1cde2962f.md b/content/discover/feed-bae62a0f7ac2e2a4fbdf99d1cde2962f.md new file mode 100644 index 000000000..0d8f71908 --- /dev/null +++ b/content/discover/feed-bae62a0f7ac2e2a4fbdf99d1cde2962f.md @@ -0,0 +1,142 @@ +--- +title: Cheeses Perfecte The Life +date: "1970-01-01T00:00:00Z" +description: Chesses make life perfect really...... yeee. +params: + feedlink: https://ihya-der.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: bae62a0f7ac2e2a4fbdf99d1cde2962f + websites: + https://ihya-der.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Chees makes life. + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Cheese is Life + last_post_description: |- + Hard: Cheddars stay perhaps the most generally bought cheeses, and + no cheddar board would be finished without one!. A decent reach would have + those from a year to 2 years in development, and this + last_post_date: "2021-04-27T18:12:00Z" + last_post_link: https://ihya-der.blogspot.com/2021/04/cheese-is-life.html + last_post_categories: + - Chees makes life. + last_post_language: "" + last_post_guid: a739a4e2492e6caa0826c1c4ccbf3a29 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-bb0c2757ced41f5db27a1725a4dde755.md b/content/discover/feed-bb0c2757ced41f5db27a1725a4dde755.md new file mode 100644 index 000000000..48b19135b --- /dev/null +++ b/content/discover/feed-bb0c2757ced41f5db27a1725a4dde755.md @@ -0,0 +1,46 @@ +--- +title: Spanish or Bust in 90 Days +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://spanish90.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: bb0c2757ced41f5db27a1725a4dde755 + websites: + https://spanish90.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://mile-stretcher.blogspot.com/: true + https://ncommander.blogspot.com/: true + https://spanish90.blogspot.com/: true + https://www.blogger.com/profile/17676152296271896899: true + last_post_title: 'Day 32-37: Fun in Costa Rica (or how I bought a bus ticket in + español) ...' + last_post_description: Ugh, I really need to be more diligent in keeping this thing + up to date. So, after departing my week of hell in California, I landed in Costa + Rica, and promptly got screwed by immigration (and my own + last_post_date: "2013-11-08T02:12:00Z" + last_post_link: https://spanish90.blogspot.com/2013/11/day-32-36-fun-in-costa-rica-or-how-i.html + last_post_categories: [] + last_post_language: "" + last_post_guid: e80d3035e679074983c4d5ced350c306 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-bb11130b253f5b4f642102e3f6c7e51c.md b/content/discover/feed-bb11130b253f5b4f642102e3f6c7e51c.md new file mode 100644 index 000000000..6697c533d --- /dev/null +++ b/content/discover/feed-bb11130b253f5b4f642102e3f6c7e51c.md @@ -0,0 +1,131 @@ +--- +title: JP Moresmau's Programming Blog +date: "2024-05-08T21:31:47+02:00" +description: In this blog I talk about some of the personal programming I do as a + hobby. From Java to Rust via Haskell, I've played around with a lot of technologies + and still try to have fun with new languages +params: + feedlink: https://jpmoresmau.blogspot.com/feeds/posts/default + feedtype: atom + feedid: bb11130b253f5b4f642102e3f6c7e51c + websites: + https://jpmoresmau.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Android + - Artificial Intelligence + - Aspects + - Cabal + - Compilation + - Concurrent Programming + - Debugging + - Design By Contract + - Dynamic languages + - Eclipse + - EclipseFP + - FRP + - Flex + - Functional Programming + - GHC + - GUI + - Genetic Programming + - Genetic algorithms + - HGL + - HTML 5 + - Haskell + - Hibernate + - Hoogle + - HughesPJ + - IDE + - JSON + - Java + - JavaFX + - JavaScript + - Linux + - Mobile + - Monads + - NXT + - Network + - Neural Network + - Object Oriented Programming + - Parsec + - PostgreSQL + - Python + - RIA + - Rhino + - Rust + - SQL + - SWT + - Scala + - Scion + - Security + - Software design + - Ubuntu + - WebAssembly + - Windows + - algorithms + - annotations + - bevy + - buildwrapper + - cassandra + - closures + - databases + - development + - docker + - elastic + - fun + - functions + - game + - games + - generics + - golang + - graph databases + - graphql + - hidden markov model + - jobs + - maths + - mazes + - natural language processing + - parsing + - performance + - properties + - rant + - robotics + - scripting + - self-indulgence + - self-pity + - self-publicity + - testing + - tooling + relme: + https://jpmoresmau.blogspot.com/: true + https://www.blogger.com/profile/09964251063221757176: true + last_post_title: Experimenting with car physics in Bevy + last_post_description: "" + last_post_date: "2023-06-16T14:15:14+02:00" + last_post_link: https://jpmoresmau.blogspot.com/2023/06/experimenting-with-car-physics-in-bevy.html + last_post_categories: + - Rust + - bevy + - game + last_post_language: "" + last_post_guid: 09b4e6fe2a915d3cd79fe89d3b1562f7 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-bb1c18f108f8b8b9398559ce6a5090da.md b/content/discover/feed-bb1c18f108f8b8b9398559ce6a5090da.md new file mode 100644 index 000000000..2b36a0d4c --- /dev/null +++ b/content/discover/feed-bb1c18f108f8b8b9398559ce6a5090da.md @@ -0,0 +1,58 @@ +--- +title: Josef "Jeff" Sipek +date: "2024-04-07T00:08:00Z" +description: Josef "Jeff" Sipek +params: + feedlink: https://blahg.josefsipek.net/?feed=rss2 + feedtype: rss + feedid: bb1c18f108f8b8b9398559ce6a5090da + websites: + https://blahg.josefsipek.net/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - AVR + - Atmel + - Electronics + - FreeBSD + - OCXO + - PPS + - chrony + - timekeeping + relme: + https://blahg.josefsipek.net/: true + last_post_title: Unsynchronized PPS Experiment + last_post_description: Late last summer I decided to do a simple experiment—feed + my server a PPS signal that wasn’t synchronized to any timescale. The idea was + to give chrony a reference that is more stable than the + last_post_date: "2024-04-07T00:08:00Z" + last_post_link: https://blahg.josefsipek.net/?p=611 + last_post_categories: + - AVR + - Atmel + - Electronics + - FreeBSD + - OCXO + - PPS + - chrony + - timekeeping + last_post_language: "" + last_post_guid: 70f04f9df127c4c54db6167571cf7816 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-bb4028f633bb2edbcaafe62c3d4df191.md b/content/discover/feed-bb4028f633bb2edbcaafe62c3d4df191.md deleted file mode 100644 index 8c4df8b3c..000000000 --- a/content/discover/feed-bb4028f633bb2edbcaafe62c3d4df191.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Quantum Frontiers -date: "2024-06-10T00:08:59Z" -description: A blog by the Institute for Quantum Information and Matter @ Caltech -params: - feedlink: https://quantumfrontiers.com/feed/atom/ - feedtype: atom - feedid: bb4028f633bb2edbcaafe62c3d4df191 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Reflections - relme: {} - last_post_title: Quantum Frontiers salutes an English teacher - last_post_description: If I ever mention a crazy high-school English teacher to - you, I might be referring to Mr. Lukacs. One morning, before the first bell rang, - I found him wandering among the lockers, wearing a white - last_post_date: "2024-06-10T00:08:59Z" - last_post_link: https://quantumfrontiers.com/2024/06/09/quantum-frontiers-salutes-an-english-teacher/ - last_post_categories: - - Reflections - last_post_guid: e5748f73c9e8ba381bf3993c02c35a58 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-bb59b1049dd13b16796774efa17652a7.md b/content/discover/feed-bb59b1049dd13b16796774efa17652a7.md new file mode 100644 index 000000000..6189302a4 --- /dev/null +++ b/content/discover/feed-bb59b1049dd13b16796774efa17652a7.md @@ -0,0 +1,126 @@ +--- +title: Art Of ApOgEE +date: "2024-03-23T18:15:00+08:00" +description: '.: Art iS eVeRyThiNg WhEn YoU sEE EvErYtHinG iS ArT!! - ApOgEE :.' +params: + feedlink: https://artofapogee.blogspot.com/feeds/posts/default + feedtype: atom + feedid: bb59b1049dd13b16796774efa17652a7 + websites: + https://artofapogee.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Art Of ApOgEE + - Britney Spears + - Bruce Lee + - Colbert + - Conan OBrian + - Creative + - Cross Hatching + - David Letterman + - Designer Resources + - Digital Art + - Digitizer tablet + - EclecticAsylum + - Featured Artists + - GIMP + - Google Reader + - Graphic Tablets + - Graphics Design + - Graphire3 + - Guido Daniele + - Guitar + - Illustration + - Jay Leno + - Joe Lateshow + - Kerawang Collections + - Logo Design + - Martial Arts + - Music + - My List + - Open Source + - Oud + - Phil Hansen + - Photography + - Photoshop + - Photoshop Brushes + - Samtriggy + - Save our child + - TATU + - Talk Show + - Textures + - Tutorials + - Vector Graphics + - Video + - Wacom + - abstract + - actress + - ada + - artwork + - backgrounds + - ballpen on paper + - brands + - cake design + - cartoons + - celebrities + - celebrity + - charcoal on paper + - comics + - download + - drawing + - drawing tablet + - facebook + - free fonts + - free manga screentones + - graffiti + - host + - icon + - inkscape + - linux + - manga + - mybloglog + - oil pastel + - old sketch + - painting + - pen tablet + - pencil on paper + - practice + - reggae + - royalty free vector + - screentones + - ska artworks + - sketch + - soft pastel on paper + - speed painting + - ubuntu + - usb graphic tablet + - wacom sketch + - youtube + relme: + https://artofapogee.blogspot.com/: true + last_post_title: ApOgEE is Blogging Again + last_post_description: "" + last_post_date: "2019-02-27T06:00:12+08:00" + last_post_link: https://artofapogee.blogspot.com/2019/02/apogee-is-blogging-again.html + last_post_categories: [] + last_post_language: "" + last_post_guid: ee35188933472c242e2dd4f553b466b8 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-bb5dafea90127f8f321a49a051ab6570.md b/content/discover/feed-bb5dafea90127f8f321a49a051ab6570.md new file mode 100644 index 000000000..5a6026868 --- /dev/null +++ b/content/discover/feed-bb5dafea90127f8f321a49a051ab6570.md @@ -0,0 +1,51 @@ +--- +title: LordHoto's World +date: "2024-03-14T11:03:50+01:00" +description: "" +params: + feedlink: https://lordhoto.blogspot.com/feeds/posts/default + feedtype: atom + feedid: bb5dafea90127f8f321a49a051ab6570 + websites: + https://lordhoto.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - AdLib + - GSoC 2008 + - GSoC 2009 + - Kyrandia + - Lands of Lore + - SCUMM + - ScummVM + relme: + https://lordhoto.blogspot.com/: true + https://www.blogger.com/profile/05066515259706942164: true + last_post_title: SCUMM v3/v4 AD resource player + last_post_description: "" + last_post_date: "2011-12-10T04:22:23+01:00" + last_post_link: https://lordhoto.blogspot.com/2011/12/scumm-v3v4-ad-resource-player.html + last_post_categories: + - AdLib + - SCUMM + - ScummVM + last_post_language: "" + last_post_guid: e245ccc9e7da1f32dc9fdbd3c4328e58 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-bb6273dd7097fb4917b7b67b36af8d88.md b/content/discover/feed-bb6273dd7097fb4917b7b67b36af8d88.md new file mode 100644 index 000000000..5f0be9cbf --- /dev/null +++ b/content/discover/feed-bb6273dd7097fb4917b7b67b36af8d88.md @@ -0,0 +1,49 @@ +--- +title: SXEmacsen +date: "1970-01-01T00:00:00Z" +description: Блог о SXEmacs на русском языке +params: + feedlink: https://sxemacsen.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: bb6273dd7097fb4917b7b67b36af8d88 + websites: + https://sxemacsen.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - bsoy + - ffi + - internals + - macos + - rus + - wand + - xwem + relme: + https://sxemacsen.blogspot.com/: true + last_post_title: Гестуры в xwem + last_post_description: Совсем забыл про классную фукнциональность в xwem — гестуры + aka strokes. Это когда рисуешь что-нибудь на экране, а + last_post_date: "2010-04-22T19:51:00Z" + last_post_link: https://sxemacsen.blogspot.com/2010/04/xwem.html + last_post_categories: + - xwem + last_post_language: "" + last_post_guid: 0e4c045a8e659945fb8bc3c63a6e9ee6 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-bb6602018e8b4c54277dcc1123dd09fd.md b/content/discover/feed-bb6602018e8b4c54277dcc1123dd09fd.md index 15592bc2a..40fd9e18e 100644 --- a/content/discover/feed-bb6602018e8b4c54277dcc1123dd09fd.md +++ b/content/discover/feed-bb6602018e8b4c54277dcc1123dd09fd.md @@ -11,34 +11,36 @@ params: blogrolls: [] recommended: [] recommender: - - https://jlelse.blog/.min.rss - - https://jlelse.blog/.rss - - https://jlelse.blog/index.xml - https://joeross.me/feed.xml categories: + - labour + - politics - posts - - enshittification - - quora relme: {} - last_post_title: Was Quora ever that good? - last_post_description: Was Quora ever that good? It’s always marketised “knowledge”. - last_post_date: "2024-06-03T06:45:03Z" - last_post_link: https://www.thisdaysportion.com/posts/was-quora-ever-that-good/ + last_post_title: The Labour “narrative” + last_post_description: Business as usual, just better managers. + last_post_date: "2024-07-06T08:26:03Z" + last_post_link: https://www.thisdaysportion.com/posts/the-labour-narrative/ last_post_categories: + - labour + - politics - posts - - enshittification - - quora - last_post_guid: 5682ccc760b19c6cd7c91c4e12426b9b + last_post_language: "" + last_post_guid: 46f970353a0eb76940e4e3977afeea64 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 14 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-bb698bb80aa0d789cd1c5ab2a905d22f.md b/content/discover/feed-bb698bb80aa0d789cd1c5ab2a905d22f.md deleted file mode 100644 index eeec1906b..000000000 --- a/content/discover/feed-bb698bb80aa0d789cd1c5ab2a905d22f.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: A History of Rock Music in 500 Songs -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://500songs.com/feed/ - feedtype: rss - feedid: bb698bb80aa0d789cd1c5ab2a905d22f - websites: - https://500songs.com/: true - https://500songs.com/series/a-history-of-rock-music-in-500-songs/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Uncategorized - relme: {} - last_post_title: Mixcloud Issue - last_post_description: I just got an email from Mixcloud saying my subscription - to Mixcloud Pro has been cancelled (something I never requested). When I looked - at my profile it said “Spam profile disabled”. Just so - last_post_date: "2023-08-29T17:41:09Z" - last_post_link: https://500songs.com/2023/08/29/mixcloud-issue/ - last_post_categories: - - Uncategorized - last_post_guid: 63ae73915cebd734ffedae784e5fa12b - score_criteria: - cats: 0 - description: 0 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-bb92a009917982e1baf55a2211a6828d.md b/content/discover/feed-bb92a009917982e1baf55a2211a6828d.md deleted file mode 100644 index 4bc64a078..000000000 --- a/content/discover/feed-bb92a009917982e1baf55a2211a6828d.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Elizabeth K. Joseph -date: "1970-01-01T00:00:00Z" -description: Public posts from @pleia2@floss.social -params: - feedlink: https://floss.social/@pleia2.rss - feedtype: rss - feedid: bb92a009917982e1baf55a2211a6828d - websites: - https://floss.social/@pleia2: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://princessleia.com/journal: false - https://www.flickr.com/people/pleia2/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-bb9a3819a3f181cd596eb15b776dd005.md b/content/discover/feed-bb9a3819a3f181cd596eb15b776dd005.md new file mode 100644 index 000000000..e88d4719d --- /dev/null +++ b/content/discover/feed-bb9a3819a3f181cd596eb15b776dd005.md @@ -0,0 +1,51 @@ +--- +title: Nithin Bekal +date: "2024-07-04T03:46:35Z" +description: Nithin Bekal's blog about programming - Ruby, Rails, Vim, Elixir. +params: + feedlink: https://nithinbekal.com/feed.xml + feedtype: atom + feedid: bb9a3819a3f181cd596eb15b776dd005 + websites: + https://nithinbekal.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - rails + - ruby + relme: + https://github.com/nithinbekal: true + https://nithinbekal.com/: true + https://ruby.social/@nithinbekal: true + last_post_title: Script to bump Ruby version in Rails app + last_post_description: Any time I need to bump a Ruby version in a Rails repo, I + need to find which files have hardcoded references to the version. The 3 files + that usually have hardcoded versions are Dockerfile, Gemfile + last_post_date: "2024-07-03T00:00:00Z" + last_post_link: https://nithinbekal.com/posts/bump-ruby-script/ + last_post_categories: + - rails + - ruby + last_post_language: "" + last_post_guid: 4029d13da00bcd79b2f43947cbde508e + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-bbcd00a0f1b0382eab45730e985fbced.md b/content/discover/feed-bbcd00a0f1b0382eab45730e985fbced.md deleted file mode 100644 index 8a16ae15d..000000000 --- a/content/discover/feed-bbcd00a0f1b0382eab45730e985fbced.md +++ /dev/null @@ -1,52 +0,0 @@ ---- -title: Ronald Bradford | Enterprise Data Architect | MySQL Subject Matter Expert | Author - | Speaker » » OpenStack -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://ronaldbradford.com/blog/category/cloud/openstack/feed/ - feedtype: rss - feedid: bbcd00a0f1b0382eab45730e985fbced - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Cassandra - - Cloud Computing - - Databases - - DBaaS - - Mongodb - - MySQL - - OpenStack - - Oracle - relme: {} - last_post_title: Utilizing OpenStack Trove DBaaS for deployment management - last_post_description: Trove is used for self service provisioning and lifecycle - management for relational and non-relational databases in an OpenStack cloud. - Trove provides a RESTful API interface that is same regardless - last_post_date: "2016-06-14T18:18:18Z" - last_post_link: http://ronaldbradford.com/blog/utilizing-openstack-trove-dbaas-for-deployment-management-2016-06-14/ - last_post_categories: - - Cassandra - - Cloud Computing - - Databases - - DBaaS - - Mongodb - - MySQL - - OpenStack - - Oracle - last_post_guid: 2d0cd69126f87e465e8cd59d0350b775 - score_criteria: - cats: 0 - description: 0 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-bbd1578d2b135cbae8ff6b2d8d97ea37.md b/content/discover/feed-bbd1578d2b135cbae8ff6b2d8d97ea37.md deleted file mode 100644 index 63603dc83..000000000 --- a/content/discover/feed-bbd1578d2b135cbae8ff6b2d8d97ea37.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Hachyderm -date: "1970-01-01T00:00:00Z" -description: Public posts from @hachyderm@hachyderm.io -params: - feedlink: https://hachyderm.io/@hachyderm.rss - feedtype: rss - feedid: bbd1578d2b135cbae8ff6b2d8d97ea37 - websites: - https://hachyderm.io/@hachyderm: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/: false - https://community.hachyderm.io/approved: true - https://grafana.hachyderm.io/public: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-bbeb0224f03f4a88470e7de3dbdce92b.md b/content/discover/feed-bbeb0224f03f4a88470e7de3dbdce92b.md new file mode 100644 index 000000000..3569d7c5b --- /dev/null +++ b/content/discover/feed-bbeb0224f03f4a88470e7de3dbdce92b.md @@ -0,0 +1,374 @@ +--- +title: Lodahl's blog +date: "1970-01-01T00:00:00Z" +description: LibreOffice, open source software and open standards. These are the three + things you can read about on my blog. I'll try to keep you updated on news and events + in Denmark. +params: + feedlink: https://lodahl.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: bbeb0224f03f4a88470e7de3dbdce92b + websites: + https://lodahl.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - "2.4" + - 2.4.1 + - 2D barcode + - "3.0" + - 3.1.1 + - "4.1" + - API + - Aarhus + - Active Directory + - Adverts + - Alfresco + - Ambitions + - Android + - Animal + - Annual report + - Apache Foundation + - Apache Open Office + - Appeal + - Approval + - Article + - Avoid the pitfalls + - Award + - B103 + - BRM + - Barbecue + - Basic + - Beta + - Bibliographies + - Birthday + - Blog + - Bluetooth + - Bob Sutor + - Bouncer + - Burton Group + - Business + - Business Intelligence + - CBS + - CMIS + - Calc + - Calendar + - Cars + - Certification + - Chart + - Chichewa + - China + - Christmas + - City + - Clip art + - Comments + - Community + - Community Innovation Award Program + - Compatibility + - Complaint + - Composite + - Conference + - Contest + - Crime + - Crop + - Cross reference + - Culture + - DKUUG + - DR1 + - DS + - Danish + - Danish Consumer Agency + - Danish Standards + - Demonstration + - Denmark + - Desktop + - Digitaliser + - Document Foundation + - Download + - Draw + - E-government + - E-mail + - ECMA + - EU + - Education + - Election + - Enterprise + - Entrepreneurs + - Expeditor + - Export + - Extensions + - F/OSS + - FAIR + - Facebook + - Family + - Firefox + - Flash movie + - Forum + - Foundation + - Free + - Free software + - FreeMind + - Freedom + - French + - Friends + - Fun + - Gadgets + - GlassFish + - Google + - Google Docs + - Google Drive + - Government + - Grammar + - Gribskov + - HTC Hero + - HTML + - Hacking + - Help content + - IBM + - ISO + - ISO/IEC JTC 1 + - Impress + - Internet + - Interoperability + - Italian + - JTC + - Java + - KMD + - Knife + - LDraw + - Language + - Language Tools + - LanguageTools + - Learning + - Lego + - LibreOffice + - LibreOffice 4.0. OpenClipart.org + - LibreOffice 4.1 + - License + - Lightning + - LinusForum + - Linux + - LinuxForum + - Localizatio + - Localization + - Lorem Ipsum + - Lotus + - Lotus Notes + - Lotus Symphony + - LotusPhere + - Lyngby-Taarbæk + - MacOS + - Macro + - Magenta ApS + - Malawi + - Maps + - Master thesis + - McKinsey + - Microsoft + - Midsummer + - MindMap + - Minister of Science and Technology + - Mobile + - Monopoly + - Mozilla + - Municipals + - Munipality + - Music + - NOOOXML + - NetBeans + - New Zealand + - New features + - Newsletter + - Nokia + - Norway + - Notes 8.5 + - Novell + - Nuxeo + - OASIS + - OCAL + - ODF + - ODF Alliance + - OOXML + - OOoCon + - OSL + - OSM + - Objections + - Office + - Open + - Open Content + - Open Source + - Open Source Days + - Open Standards + - OpenClipart.org + - OpenDocument Format + - OpenJdk + - OpenOffice + - OpenOffice.org + - OpenOffice.org 3.0 + - OpenOffiice.org + - OpenProj + - OpenSPARC + - OpenSolaris + - OpenStreetMap + - Openness + - PDF + - Parliament + - Personal + - Petition + - Philosophy Knowledge + - Phone + - Pictures + - Pidgin + - Police + - Press + - Progress + - Project + - QMS + - Rambøll + - Raspberry Pi + - Redflag + - Release + - Release candidate + - Reports + - Rødovre + - SSLUG + - SVG + - SVG import + - Schools + - Screencast + - Search + - Settings + - Sharepoint + - Sidebar + - Sidepanel + - SlotusPhere + - Snow + - Software + - Software Fredom Day + - Spain + - Spelling + - Squirrel + - Standards + - Statistics + - Storm + - Styles + - Summer house + - Sun + - Support + - Swift + - Swing Software + - Swiss army knife + - Symfoni Software + - Symfony Software + - System integration + - Technical + - Template changer + - Templates + - The Danish Competition Authority + - The Document Foundation + - Therapy + - Thunderbird + - Track and Trace + - Trade unions + - Training + - Tram + - Translation + - Travel + - Tricks + - Tutorials + - Twitter + - Tønder + - UNI-C + - Ubuntu + - Usability + - Vacation + - Vestas + - Video + - Weather + - WebDAV + - WebODF + - Weblog + - West coast + - Widgets + - Wife + - Wiki + - Windmill + - Windows + - Windows Registry + - Wine + - Witches + - Word count + - Writer + - XML + - XML parser + - Young + - Youtube + - accessibility + - administration + - barcode + - batch + - bootstrap + - change control + - chemestry + - chemical formulas + - clker.com + - commmittee + - copyleft + - crowd source + - design + - donate + - e-learning + - embedded fonts + - extension + - fonts + - formula + - gui + - installation + - integration + - merchandise + - msi + - msiexec + - mst + - openSourceDays + - ownCloud + - poetry + - python + - server + - shop + - silent + - silent install + - task panel + - test + - victory + relme: + https://libreofficedk.blogspot.com/: true + https://lodahl.blogspot.com/: true + https://www.blogger.com/profile/08960229448622236930: true + last_post_title: Templates - Avoid the pitfalls + last_post_description: "" + last_post_date: "2015-09-26T17:55:00Z" + last_post_link: https://lodahl.blogspot.com/2015/09/templates-avoid-pitfalls.html + last_post_categories: + - Avoid the pitfalls + - LibreOffice + - Templates + last_post_language: "" + last_post_guid: 733c85c6b0ed27c3b64382d17a215015 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-bc1980c72b21706969a0a372848194e0.md b/content/discover/feed-bc1980c72b21706969a0a372848194e0.md new file mode 100644 index 000000000..1f09f7faf --- /dev/null +++ b/content/discover/feed-bc1980c72b21706969a0a372848194e0.md @@ -0,0 +1,51 @@ +--- +title: Latest articles from Crooks and Liars +date: "1970-01-01T00:00:00Z" +description: The latest articles from Crooks and Liars +params: + feedlink: https://crooksandliars.com/feeds/latest + feedtype: rss + feedid: bc1980c72b21706969a0a372848194e0 + websites: + https://crooksandliars.com/: true + blogrolls: [] + recommended: [] + recommender: + - http://scripting.com/rss.xml + - http://scripting.com/rssNightly.xml + categories: + - Late Night Open Thread + - Roswell + - UFO's + relme: + https://crooklyn.social/@crooksandliars: true + https://crooksandliars.com/: true + last_post_title: Roswell 1947 Kicked Off The UFO Craze + last_post_description: On this day in 1947, rancher WW Brazel discovered some debris + near Roswell, and the front pages of the Roswell Daily Record reported the RAAF + captured a "flying saucer," which kicked off the UFO + last_post_date: "2024-07-09T03:00:01Z" + last_post_link: https://crooksandliars.com/2024/07/roswell-1947-kicked-ufo-craze + last_post_categories: + - Late Night Open Thread + - Roswell + - UFO's + last_post_language: "" + last_post_guid: 9cee10ee575d39ee9235c2ffa70aca76 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 22 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-bc19a424894ad55af51b564f07ca1883.md b/content/discover/feed-bc19a424894ad55af51b564f07ca1883.md deleted file mode 100644 index f7efa99b9..000000000 --- a/content/discover/feed-bc19a424894ad55af51b564f07ca1883.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: ShopTalk -date: "1970-01-01T00:00:00Z" -description: A podcast about web design and development. -params: - feedlink: https://shoptalkshow.com/feed/podcast/ - feedtype: rss - feedid: bc19a424894ad55af51b564f07ca1883 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: - - Technology - relme: {} - last_post_title: '618: Matt Visiwig on SVGBackgrounds' - last_post_description: Show DescriptionMatt Visiwig stops by to chat with us about - his site, SVGBackgrounds.com, a membership site for copy-and-paste website graphics - built around SVG. We talk about why he built the site, - last_post_date: "2024-06-03T08:08:44Z" - last_post_link: https://shoptalkshow.com/618/ - last_post_categories: [] - last_post_guid: 8a2ab19076f32cc2ba7b0d94385c4f4c - score_criteria: - cats: 1 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 12 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-bc2eaca158ec1df1bf09e6c8c1a9e906.md b/content/discover/feed-bc2eaca158ec1df1bf09e6c8c1a9e906.md deleted file mode 100644 index 808d5cf31..000000000 --- a/content/discover/feed-bc2eaca158ec1df1bf09e6c8c1a9e906.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: Tech – Thoughts From Eric -date: "1970-01-01T00:00:00Z" -description: Things that Eric A. Meyer, CSS expert, writes about on his personal Web - site; it's largely Web standards and Web technology, but also various bits of culture, - politics, personal observations, and -params: - feedlink: https://meyerweb.com/eric/thoughts/category/tech/rss2/full - feedtype: rss - feedid: bc2eaca158ec1df1bf09e6c8c1a9e906 - websites: - https://meyerweb.com/: false - https://meyerweb.com/eric/thoughts: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Hacks - - JavaScript - - Tools - - Web - relme: - https://codepen.io/meyerweb: false - https://dribbble.com/meyerweb: false - https://flickr.com/photos/meyerweb/: false - https://github.com/meyerweb: false - https://mastodon.social/@meyerweb: false - https://www.linkedin.com/in/meyerweb: false - last_post_title: 'Bookmarklet: Load All GitHub Comments' - last_post_description: A quick way to load all the comments on a GitHub issue. - last_post_date: "2024-02-05T14:49:46Z" - last_post_link: https://meyerweb.com/eric/thoughts/2024/02/05/bookmarklet-load-all-github-comments/ - last_post_categories: - - Hacks - - JavaScript - - Tools - - Web - last_post_guid: 12b659133495cb7ecbaeb5cb27993f0d - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 12 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-bc521521242de67129b8c557d26256c1.md b/content/discover/feed-bc521521242de67129b8c557d26256c1.md deleted file mode 100644 index 19d7e09d5..000000000 --- a/content/discover/feed-bc521521242de67129b8c557d26256c1.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Planet – Nicolas' Blog -date: "1970-01-01T00:00:00Z" -description: Yet another Open Source developer blog -params: - feedlink: https://ndufresne.ca/category/planet/feed/ - feedtype: rss - feedid: bc521521242de67129b8c557d26256c1 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Planet - relme: {} - last_post_title: GStreamer Echo Canceller - last_post_description: For a long time I believed that echo cancellers had no place - inside GStreamer. The theory was that GStreamer was too high level and would never - be able to provide accurate enough delay information - last_post_date: "2016-06-30T22:14:06Z" - last_post_link: https://ndufresne.ca/2016/06/gstreamer-echo-canceller/ - last_post_categories: - - Planet - last_post_guid: 810ac82056940eba800ed13691286df7 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-bc6f99fc94602b3ecc281dd0d7a7b6dc.md b/content/discover/feed-bc6f99fc94602b3ecc281dd0d7a7b6dc.md index aae4138ed..a81aeb496 100644 --- a/content/discover/feed-bc6f99fc94602b3ecc281dd0d7a7b6dc.md +++ b/content/discover/feed-bc6f99fc94602b3ecc281dd0d7a7b6dc.md @@ -1,6 +1,6 @@ --- title: everything changes -date: "2024-05-30T10:19:23-04:00" +date: "2024-07-02T15:11:10-04:00" description: Work coaching with Mandy Brown. params: feedlink: https://everythingchanges.us/feed.xml @@ -12,24 +12,30 @@ params: recommended: [] recommender: [] categories: [] - relme: {} - last_post_title: Just jobs - last_post_description: S.E. Smith writes in YES! about the intersections of remote - work and accessibility. - last_post_date: "2024-05-29T14:27:00-04:00" - last_post_link: https://everythingchanges.us/blog/just-jobs/ + relme: + https://everythingchanges.us/: true + last_post_title: Leaving and arriving + last_post_description: “To get there, I had to first understand I’m not cut + for the web industry anymore.â€� + last_post_date: "2024-07-02T14:50:00-04:00" + last_post_link: https://everythingchanges.us/blog/leaving-and-arriving/ last_post_categories: [] - last_post_guid: 50e4a4ec645493767184d34651cf3d5c + last_post_language: "" + last_post_guid: ae5d4bec83e3addfa762d86d803612b5 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 8 + score: 13 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-bc8a0bf7d3f3a6c2181ea12f26918ae9.md b/content/discover/feed-bc8a0bf7d3f3a6c2181ea12f26918ae9.md deleted file mode 100644 index c23b68362..000000000 --- a/content/discover/feed-bc8a0bf7d3f3a6c2181ea12f26918ae9.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Dave Rupert -date: "1970-01-01T00:00:00Z" -description: Public posts from @davatron5000@mastodon.social -params: - feedlink: https://mastodon.social/@davatron5000.rss - feedtype: rss - feedid: bc8a0bf7d3f3a6c2181ea12f26918ae9 - websites: - https://mastodon.social/@davatron5000: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://daverupert.com/: true - https://twitter.com/davatron5000: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-bc9f910b1ee07732b8229c238cb6a7d4.md b/content/discover/feed-bc9f910b1ee07732b8229c238cb6a7d4.md deleted file mode 100644 index cdec25476..000000000 --- a/content/discover/feed-bc9f910b1ee07732b8229c238cb6a7d4.md +++ /dev/null @@ -1,53 +0,0 @@ ---- -title: Peter Rohde -date: "1970-01-01T00:00:00Z" -description: Quantum computer scientist & alpinist. -params: - feedlink: https://peterrohde.org/feed/ - feedtype: rss - feedid: bc9f910b1ee07732b8229c238cb6a7d4 - websites: - https://peterrohde.org/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Cryptography & Security - - cryptography - - encryption - - end-to-end - - messenger - - Meta - - security - - WhatsApp - relme: {} - last_post_title: Meta AI explains the backdoors in Meta Messenger & WhatsApp’s end-to-end - encryption - last_post_description: Hi Peter, my name is Meta Al. Think of me like an assistant - who’s here to help you learn, plan, and connect. I speak English. What can I help - you with today? Are my Messenger conversations now all - last_post_date: "2024-06-26T02:40:00Z" - last_post_link: https://peterrohde.org/meta-ai-explains-the-backdoors-in-meta-messenger-whatsapps-end-to-end-encryption/ - last_post_categories: - - Cryptography & Security - - cryptography - - encryption - - end-to-end - - messenger - - Meta - - security - - WhatsApp - last_post_guid: 064b7365aec13c7b06600e39d72ffe84 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-bcb008a064c9d94d62b27a7401e82fc2.md b/content/discover/feed-bcb008a064c9d94d62b27a7401e82fc2.md new file mode 100644 index 000000000..d8486e013 --- /dev/null +++ b/content/discover/feed-bcb008a064c9d94d62b27a7401e82fc2.md @@ -0,0 +1,163 @@ +--- +title: DSHR's Blog +date: "1970-01-01T00:00:00Z" +description: I'm David Rosenthal, and this is a place to discuss the work I'm doing + in Digital Preservation. +params: + feedlink: https://blog.dshr.org/feeds/posts/default?alt=rss + feedtype: rss + feedid: bcb008a064c9d94d62b27a7401e82fc2 + websites: + https://blog.dshr.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - AGI + - CLOCKSS + - CNI2009spring + - CNI2012Fall + - CNI2013Spring + - CNI2016Spring + - CNI2017Spring + - CNI2018Fall + - CNI2105Fall + - DRM + - ElPub2013 + - EndTimes + - EverCloud + - IoT + - OAIS + - P2P + - PREMIS + - advertising + - amazon + - anadp + - annotations + - anonymity + - anti-trust + - audit + - autonomous vehicles + - benchmarks + - big data + - bitcoin + - blog-science + - chatbots + - cloud economics + - copyright + - crowdfunding + - deduplication + - digital preservation + - distributed web + - e-books + - e-journals + - e-science + - emulation + - fast11 + - fast12 + - fast13 + - fast14 + - fast15 + - fast16 + - fast17 + - fast18 + - fast19 + - fast20 + - fast2009 + - fault tolerance + - format migration + - format obsolescence + - games + - government information + - green preservation + - human error + - hypothes.is + - idcc15 + - idcc2008 + - idcc2013 + - iipc13 + - iipc2016 + - institutional repositories + - intellectual property + - ipres2008 + - ipres2010 + - ipres2013 + - ipres2016 + - ipres2017 + - iso16363 + - jcdl2010 + - kryder's law + - library of congress + - link rot + - linux + - long-lived media + - malware + - memento + - metadata + - metastablecoins + - moore's law + - named data networking + - national hosting + - networking + - normalization + - nvidia + - object storage + - open access + - patent + - pda2011 + - pda2012 + - peer review + - personal + - personal digital preservation + - platform monopolies + - publishing business + - scholarly communication + - seagate + - security + - social networks + - software preservation + - stock buybacks + - storage costs + - storage failures + - storage media + - techno-hype + - terms of service + - theatre + - trac + - twitter + - union mounts + - unix + - venture capital + - web archiving + - web3 + relme: + https://blog.dshr.org/: true + https://dshr-hikes.blogspot.com/: true + https://www.blogger.com/profile/14498131502038331594: true + last_post_title: X Window System At 40 + last_post_description: I apologize that this post is a little late. On 19th June + the X Window System celebrated its 40th birthday. Wikipedia has a comprehensive + history of the system including the e-mail Bob Scheifler sent + last_post_date: "2024-07-02T15:00:00Z" + last_post_link: https://blog.dshr.org/2024/07/x-window-system-at-40.html + last_post_categories: + - personal + last_post_language: "" + last_post_guid: 29d29d4a7bb6eff69dcb345c0cc70d5a + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-bcb9cbd10cc6a153f25cdbd170855956.md b/content/discover/feed-bcb9cbd10cc6a153f25cdbd170855956.md new file mode 100644 index 000000000..721c12dd1 --- /dev/null +++ b/content/discover/feed-bcb9cbd10cc6a153f25cdbd170855956.md @@ -0,0 +1,44 @@ +--- +title: Python on Karan +date: "2024-03-08T01:06:07-08:00" +description: "" +params: + feedlink: https://python-karan.blogspot.com/feeds/posts/default + feedtype: atom + feedid: bcb9cbd10cc6a153f25cdbd170855956 + websites: + https://python-karan.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - command line + - python + relme: + https://python-karan.blogspot.com/: true + last_post_title: joe - A .gitignore magician in your command line + last_post_description: "" + last_post_date: "2015-01-17T12:26:53-08:00" + last_post_link: https://python-karan.blogspot.com/2015/01/joe-gitignore-magician-in-your-command.html + last_post_categories: + - command line + - python + last_post_language: "" + last_post_guid: 5c7c289c11fb9c340753aee99ece20a6 + score_criteria: + cats: 2 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-bcce343f7b35939d3038b799a71d6b5e.md b/content/discover/feed-bcce343f7b35939d3038b799a71d6b5e.md new file mode 100644 index 000000000..2b73a5dc4 --- /dev/null +++ b/content/discover/feed-bcce343f7b35939d3038b799a71d6b5e.md @@ -0,0 +1,44 @@ +--- +title: Nahum Shalman +date: "1970-01-01T00:00:00Z" +description: 'Open Source Software: Operating Systems and Beyond.' +params: + feedlink: https://blog.shalman.org/rss/ + feedtype: rss + feedid: bcce343f7b35939d3038b799a71d6b5e + websites: + https://blog.shalman.org/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://blog.shalman.org/: true + https://github.com/nshalman: true + https://hachyderm.io/@nahumshalman: true + last_post_title: Difficult Hardware + last_post_description: |- + This content can also be found as part of https://github.com/tinkerbell/ipxedust/pull/88 in DifficultHardware.md. + Most modern hardware is capable of PXE booting just fine. Sometimes strange + last_post_date: "2023-09-11T17:25:53Z" + last_post_link: https://blog.shalman.org/difficult-hardware/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 02a39aa852fab1b295729f6c5f151c0f + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-bcd047555d7d79a7413f78202f2c6526.md b/content/discover/feed-bcd047555d7d79a7413f78202f2c6526.md new file mode 100644 index 000000000..0d41e8e64 --- /dev/null +++ b/content/discover/feed-bcd047555d7d79a7413f78202f2c6526.md @@ -0,0 +1,70 @@ +--- +title: Knowledge Base Lumen Robot Friend +date: "1970-01-01T00:00:00Z" +description: Catatan perjalanan thesis mahasiswa Teknologi Media Digital & Game, Magister + Teknik Elektro ITB +params: + feedlink: https://lumen.hendyirawan.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: bcd047555d7d79a7413f78202f2c6526 + websites: + https://lumen.hendyirawan.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - DevOps + - Matematika + - Natural Language Processing + - OpenCog + - Semantic Reasoning + - YAGO + relme: + https://eclipsedriven.blogspot.com/: true + https://emfmodeling.blogspot.com/: true + https://enakmurahkenyang.blogspot.com/: true + https://koperasi-bersama.blogspot.com/: true + https://lumen.hendyirawan.com/: true + https://magentoadmin.blogspot.com/: true + https://manfaatkefir.blogspot.com/: true + https://mobileflashdev.blogspot.com/: true + https://ngenet-dapat-duit.blogspot.com/: true + https://panduanubuntu.blogspot.com/: true + https://phpajaxweb.blogspot.com/: true + https://qt-mobility.blogspot.com/: true + https://rumah-sehat-avicenna.blogspot.com/: true + https://rumahkostdijualbandung.blogspot.com/: true + https://scala-enterprise.blogspot.com/: true + https://spring-java-ee.blogspot.com/: true + https://tutorial-java-programming.blogspot.com/: true + https://ubuntucomputing.blogspot.com/: true + https://www.blogger.com/profile/05192845149798446052: true + https://xdkmobile.blogspot.com/: true + last_post_title: Paper Penelitian Basis Data Semantic YAGO + last_post_description: |- + Berikut link ke paper tentang YAGO semantic knowledge base: http://www.mpi-inf.mpg.de/departments/databases-and-information-systems/research/yago-naga/yago/publications/ + Menurut saya kelebihan + last_post_date: "2015-01-14T10:44:00Z" + last_post_link: https://lumen.hendyirawan.com/2015/01/paper-penelitian-basis-data-semantic.html + last_post_categories: + - Semantic Reasoning + - YAGO + last_post_language: "" + last_post_guid: 64e3ca668d2b0b44f1df6497d22df839 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-bcd613041e90f7bfb374fe424f448262.md b/content/discover/feed-bcd613041e90f7bfb374fe424f448262.md deleted file mode 100644 index daa302c99..000000000 --- a/content/discover/feed-bcd613041e90f7bfb374fe424f448262.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Lea Verou -date: "1970-01-01T00:00:00Z" -description: Public posts from @leaverou@front-end.social -params: - feedlink: https://front-end.social/@leaverou.rss - feedtype: rss - feedid: bcd613041e90f7bfb374fe424f448262 - websites: - https://front-end.social/@leaverou: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/leaverou: true - https://lea.verou.me/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-bcf372857c4323bf1fe6872f68aa9314.md b/content/discover/feed-bcf372857c4323bf1fe6872f68aa9314.md index 94853c2e9..38f8502ef 100644 --- a/content/discover/feed-bcf372857c4323bf1fe6872f68aa9314.md +++ b/content/discover/feed-bcf372857c4323bf1fe6872f68aa9314.md @@ -1,12 +1,13 @@ --- title: David Heinemeier Hansson -date: "2024-06-03T17:32:58Z" +date: "2024-06-08T06:16:45Z" description: "" params: feedlink: https://world.hey.com/dhh/feed.atom feedtype: atom feedid: bcf372857c4323bf1fe6872f68aa9314 - websites: {} + websites: + https://world.hey.com/dhh: true blogrolls: [] recommended: [] recommender: @@ -14,22 +15,27 @@ params: - https://blog.numericcitizen.me/podcast.xml categories: [] relme: {} - last_post_title: Why I retired from the tech crusades + last_post_title: Visions of the future last_post_description: "" - last_post_date: "2024-06-03T17:32:58Z" - last_post_link: https://world.hey.com/dhh/why-i-retired-from-the-tech-crusades-107a51ea + last_post_date: "2024-06-08T06:16:45Z" + last_post_link: https://world.hey.com/dhh/visions-of-the-future-2e23ff85 last_post_categories: [] - last_post_guid: b874590640dd3735165940f57d79f459 + last_post_language: "" + last_post_guid: bc326d267c940622100661876ce43f57 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 - website: 0 - score: 8 + website: 2 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-bcfddd4ad329b08612678acf17c0d3ae.md b/content/discover/feed-bcfddd4ad329b08612678acf17c0d3ae.md deleted file mode 100644 index 446972c90..000000000 --- a/content/discover/feed-bcfddd4ad329b08612678acf17c0d3ae.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Calum Ryan - Notes -date: "2024-04-03T12:00:00Z" -description: "" -params: - feedlink: https://calumryan.com/feeds/notes/atom - feedtype: atom - feedid: bcfddd4ad329b08612678acf17c0d3ae - websites: - https://calumryan.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - . notes . - relme: - https://fed.brid.gy/r/https:/calumryan.com/: false - https://github.com/calumryan: true - https://indieweb.org/User:Calumryan.com: false - https://micro.blog/calumryan: false - https://toot.cafe/@calumryan: false - last_post_title: April 3rd, 2024 - last_post_description: "" - last_post_date: "2024-04-03T12:00:00Z" - last_post_link: https://calumryan.com/notes/3685 - last_post_categories: [] - last_post_guid: 653d7d079015119178e82e6cf284f88b - score_criteria: - cats: 1 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-bd0c9354bf1d0683f8858113fe5f5b63.md b/content/discover/feed-bd0c9354bf1d0683f8858113fe5f5b63.md new file mode 100644 index 000000000..8173adceb --- /dev/null +++ b/content/discover/feed-bd0c9354bf1d0683f8858113fe5f5b63.md @@ -0,0 +1,46 @@ +--- +title: 'Talk Python Training: Courses RSS' +date: "2024-06-18T00:00:00-08:00" +description: Talk Python Training offers premier Python courses. Subscribe to this + RSS feed for new releases. +params: + feedlink: https://training.talkpython.fm/courses/rss + feedtype: rss + feedid: bd0c9354bf1d0683f8858113fe5f5b63 + websites: + https://training.talkpython.fm/: false + https://training.talkpython.fm/courses/all: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Technology + relme: + https://training.talkpython.fm/courses/all: true + last_post_title: Reactive Web Dashboards with Shiny + last_post_description: There are dozens of ways to build web applications in Python. + You can use Django or FastAPI with a Javascript front-end, or build a simple dashboard + using a tool like Streamlit. However, almost all + last_post_date: "2024-06-18T00:00:00-08:00" + last_post_link: https://training.talkpython.fm/courses/reactive-web-dashboards-with-shiny-for-data-science + last_post_categories: + - Technology + last_post_language: "" + last_post_guid: 7492b3c0d2be1d21049c05e93b4e24a8 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-bd1e8961a63a3a1c7de4d3f952b9947d.md b/content/discover/feed-bd1e8961a63a3a1c7de4d3f952b9947d.md new file mode 100644 index 000000000..4f07eaa92 --- /dev/null +++ b/content/discover/feed-bd1e8961a63a3a1c7de4d3f952b9947d.md @@ -0,0 +1,50 @@ +--- +title: MetaGrrrl +date: "1970-01-01T00:00:00Z" +description: Hello. My name is Dinah Sanders. I've been blogging for over twenty years. + I'm a web geek and writer. I like it that way. +params: + feedlink: https://metagrrrl.com/feed/ + feedtype: rss + feedid: bd1e8961a63a3a1c7de4d3f952b9947d + websites: + https://metagrrrl.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://roytang.net/blog/feed/rss/ + categories: + - The Web + - Web/Tech + - warnings & kvetches + relme: + https://metagrrrl.com/: true + last_post_title: So Much For There Being Any Corporate Good Guys + last_post_description: So I just found out that WordPress / Automattic is preparing + to sell user data to Midjourney and OpenAI. So it seems that unless I opt out, + my creative work will be sold for AI training. Sold by the + last_post_date: "2024-02-27T21:26:16Z" + last_post_link: https://metagrrrl.com/2024/02/27/so-much-for-there-being-any-corporate-good-guys/ + last_post_categories: + - The Web + - Web/Tech + - warnings & kvetches + last_post_language: "" + last_post_guid: c1889a82d52932fdbc98e0ea2969cfec + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 22 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-bd4204a38c957499f1109a452240ab04.md b/content/discover/feed-bd4204a38c957499f1109a452240ab04.md new file mode 100644 index 000000000..348f42d2f --- /dev/null +++ b/content/discover/feed-bd4204a38c957499f1109a452240ab04.md @@ -0,0 +1,234 @@ +--- +title: Tales of the Lunar Lands +date: "1970-01-01T00:00:00Z" +description: Musings on Tabletop RPGs, Pop Culture, Perytons, and Other Nonsense +params: + feedlink: https://tales-of-the-lunar-lands.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: bd4204a38c957499f1109a452240ab04 + websites: + https://tales-of-the-lunar-lands.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - 3e + - 5e + - Al-Riyah + - Alternate Bulette Challenge + - British Old School + - Camalos + - Christmas + - City-States + - Company of Boars' Heads + - Covered Path + - DM advice + - Dragon Quest + - Dragon Warriors + - Elementalism + - Empire of the Petal Throne + - Eostre + - Faerie + - Fate + - Flintstonism + - Freeport + - Freikantons + - Friday Encounter + - Games Workshop + - Gods of the Lunar Lands + - Golnir + - Green Ronin + - Gwennert + - Halloween + - Hell + - Highlands + - Hynden + - Keep on the Borderlands + - Kerne + - Kord + - Kvesland + - Land of the Dead + - Lescatie + - Levic Marches + - Lew Pulsipher + - Lunar Lands + - Lynnery + - Madoka Magica + - 'Magic: the Gathering' + - Marseah + - Meili + - Middle-Earth + - Midwinter + - Mimir + - Modern AGE + - Morthanos + - Nehalennia + - Nutcracker + - Nuwapians + - Old Faith + - Olmo + - Orctober + - Quel'Ahma + - Realms Beyond + - Reynard + - Seidra + - Solenna + - Sonderlund + - Swordbrothers + - Taldameer + - The Heavens + - The Lunar Lands Guide to Combat + - The Princess Bride + - Togarmah + - Tolkien + - Torvald + - Ukiah + - Ultraman + - Usalia + - Valossa + - Vardessy + - Voltan + - Warhammer + - West Marches + - Weyland + - White Dwarf + - World Beneath + - Year of the Gazetteer + - adventure design + - adventures + - alchemy + - anime + - antiquity + - art + - backgrounds + - bar brawls + - bard + - bulette + - challenge + - cleric + - combat + - cosmology + - curses + - demons + - dnd + - druid + - dungeons + - dwarves + - economics + - elementals + - encounters + - factions + - fantasy + - feudalism + - folklore + - gambling + - gaming history + - genasi + - genies + - goblins + - halflings + - hexcrawls + - historical + - holidays + - homebrew + - horror + - house rules + - images + - initiative + - inns + - inspiration + - interviews + - kaiju + - languages + - liches + - literature + - locations + - lore + - lotr + - magic + - magic items + - magical girls + - maps + - meaningless kvetching + - medieval + - merp + - meta + - miniatures + - minigames + - modules + - monk + - monsters + - movies + - mythology + - nostalgia + - npcs + - orcs + - organizations + - osr + - owlbear + - paladin + - perytons + - pop culture + - potions + - puzzles + - races + - rat men + - rituals + - roads + - rust monster + - sandbox + - settlements + - sorcerer + - spells + - tables + - terrain + - tokusatsu + - undead + - video games + - warlock + - weebery + - werewolves + - wfrp + - wilderness + - wizard + - worldbuilding + - wotc + relme: + https://tales-of-the-lunar-lands.blogspot.com/: true + last_post_title: 'Friday Encounter: To Catch a Pickpocket' + last_post_description: AladdinThis encounter is best suited for an urban setting + - specifically, an outdoor area where there will be dense crowds of people. A + marketplace is probably the most obvious, but it could just as + last_post_date: "2024-07-05T23:53:00Z" + last_post_link: https://tales-of-the-lunar-lands.blogspot.com/2024/07/friday-encounter-to-catch-pickpocket.html + last_post_categories: + - 5e + - Friday Encounter + - Lunar Lands + - dnd + - encounters + - fantasy + - house rules + - settlements + last_post_language: "" + last_post_guid: 24b9eb6e7f71c7e7f4f796f264b11da7 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 26 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-bd53a3cf9abff9b8432c50a24bc73222.md b/content/discover/feed-bd53a3cf9abff9b8432c50a24bc73222.md new file mode 100644 index 000000000..ff625b7ab --- /dev/null +++ b/content/discover/feed-bd53a3cf9abff9b8432c50a24bc73222.md @@ -0,0 +1,42 @@ +--- +title: emacs, on Will Schenk +date: "1970-01-01T00:00:00Z" +description: Recent content in emacs, on Will Schenk +params: + feedlink: https://willschenk.com/tags/emacs/feed.xml + feedtype: rss + feedid: bd53a3cf9abff9b8432c50a24bc73222 + websites: + https://willschenk.com/tags/emacs/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://willschenk.com/tags/emacs/: true + last_post_title: AI in Emacs + last_post_description: Everything is better with emacs. Lets see how we can plug + in ollama into it. We are going to use ellama and they like the zephyr, so lets + pull that. You can configure it to use other things, but lets + last_post_date: "2024-02-29T10:45:21Z" + last_post_link: https://willschenk.com/labnotes/2024/ai_in_emacs/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 8d0701f1006adadcaf8e4e869c0b58eb + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-bd548510bd225c4c8b1ff8d27d9caad0.md b/content/discover/feed-bd548510bd225c4c8b1ff8d27d9caad0.md new file mode 100644 index 000000000..24a17a2bd --- /dev/null +++ b/content/discover/feed-bd548510bd225c4c8b1ff8d27d9caad0.md @@ -0,0 +1,144 @@ +--- +title: All Area Code +date: "1970-01-01T00:00:00Z" +description: We have all Details About area code information. +params: + feedlink: https://dichvuquangcao247.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: bd548510bd225c4c8b1ff8d27d9caad0 + websites: + https://dichvuquangcao247.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - area + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: City Area Code + last_post_description: |- + What telephone Area code is 800? + + The region code 800 area code goes about as a complementary code for + North America, Canada, the United States, and 22 nations. It is accessible for + American clients + last_post_date: "2022-01-03T15:15:00Z" + last_post_link: https://dichvuquangcao247.blogspot.com/2022/01/city-area-code.html + last_post_categories: + - area + last_post_language: "" + last_post_guid: 4d83cf56f0406d8baf9a5febca155606 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-bd84aa7c3fe6fc065613bce5648d34a4.md b/content/discover/feed-bd84aa7c3fe6fc065613bce5648d34a4.md deleted file mode 100644 index 4909f3275..000000000 --- a/content/discover/feed-bd84aa7c3fe6fc065613bce5648d34a4.md +++ /dev/null @@ -1,49 +0,0 @@ ---- -title: OpenStack – Cloud Architect Musings -date: "1970-01-01T00:00:00Z" -description: Musings On Cloud Computing and Cloud Native Applications -params: - feedlink: https://cloudarchitectmusings.com/tag/openstack/feed/ - feedtype: rss - feedid: bd84aa7c3fe6fc065613bce5648d34a4 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Cloud - - Cloud Computing - - OpenStack - - Private Cloud - - Cloud computing - - OpenStack Summit - - Rackspace - relme: {} - last_post_title: 'OpenStack Summit Day 2 Recap: The Future is Multi-Cloud' - last_post_description: Jonathan Bryce, Executive Director of the OpenStack Foundation, - kicked off day two of the Summit by tying it back to the first day’s keynote about - the challenge of meeting the scalability - last_post_date: "2016-11-22T18:19:08Z" - last_post_link: https://cloudarchitectmusings.com/2016/11/22/openstack-summit-day-2-recap-the-future-is-multi-cloud/ - last_post_categories: - - Cloud - - Cloud Computing - - OpenStack - - Private Cloud - - Cloud computing - - OpenStack Summit - - Rackspace - last_post_guid: fbf028ceee7233365c0e703709a03dd6 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-bd8899a676c96a19bbdb2499b70c4411.md b/content/discover/feed-bd8899a676c96a19bbdb2499b70c4411.md deleted file mode 100644 index 5d399b632..000000000 --- a/content/discover/feed-bd8899a676c96a19bbdb2499b70c4411.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: reverie v. reality -date: "1970-01-01T00:00:00Z" -description: "hello there, wanderer! \\\nI’m (or you can call me ). \n\nhere you - will find a mish-mash of:\n\n\n\n\n\nwelcome, if you are venturing in. \\\n& if - you’re going - ..." -params: - feedlink: https://reverie.bearblog.dev/feed/?type=rss - feedtype: rss - feedid: bd8899a676c96a19bbdb2499b70c4411 - websites: - https://reverie.bearblog.dev/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: listening | january - may 2024 - last_post_description: Figured it's been a minute since my last listening post, - so here are some songs I've been enjoying this year. I've been trying to separate - my songs into monthly playlists on my Spotify, just so I can - last_post_date: "2024-05-30T12:34:41Z" - last_post_link: https://reverie.bearblog.dev/listen-jan-may-24/ - last_post_categories: [] - last_post_guid: ef077b77adddc0a8fc5fc6d147e83ee1 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-bd8a79789b4e58b096c90af5cd0e728f.md b/content/discover/feed-bd8a79789b4e58b096c90af5cd0e728f.md deleted file mode 100644 index ce1c44227..000000000 --- a/content/discover/feed-bd8a79789b4e58b096c90af5cd0e728f.md +++ /dev/null @@ -1,52 +0,0 @@ ---- -title: Phil Nash -date: "2023-09-14T00:00:00Z" -description: Phil Nash is a developer, speaker, blogger, developer advocate, sausage - dog owner and beer lover. -params: - feedlink: https://philna.sh/feed.xml - feedtype: rss - feedid: bd8a79789b4e58b096c90af5cd0e728f - websites: - https://philna.sh/: true - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: - - javascript - relme: - https://bsky.app/profile/philna.sh: false - https://dev.to/philnash: true - https://github.com/philnash: true - https://github.com/philnash/: true - https://hashnode.com/@philnash: false - https://mastodon.social/@philnash: true - https://philna.sh/: true - https://stackoverflow.com/users/28376/philnash: true - https://threads.net/@philnash: false - https://twitch.tv/phil_nash: false - https://twitter.com/philnash: false - https://www.linkedin.com/in/philnash/: false - last_post_title: JavaScript is getting array grouping methods - last_post_description: Grouping items in an array is one of those things you've - probably done a load of times. Each time you would have written a grouping function - by hand or perhaps reached for lodash's groupBy function - last_post_date: "2023-09-14T00:00:00Z" - last_post_link: https://philna.sh/blog/2023/09/14/javascript-array-grouping-methods/ - last_post_categories: - - javascript - last_post_guid: 64d8cdea69c9141a9ece642e1ab76adb - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 16 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-bd9404b357bc06da2a8e9126735b65b2.md b/content/discover/feed-bd9404b357bc06da2a8e9126735b65b2.md new file mode 100644 index 000000000..0b404068a --- /dev/null +++ b/content/discover/feed-bd9404b357bc06da2a8e9126735b65b2.md @@ -0,0 +1,54 @@ +--- +title: Read Write Respond +date: "1970-01-01T00:00:00Z" +description: Read is to write, write is to respond +params: + feedlink: https://readwriterespond.com/type/standard/feed/ + feedtype: rss + feedid: bd9404b357bc06da2a8e9126735b65b2 + websites: + https://readwriterespond.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Health + - Norman Swan + - Politics + - Review + - Ways of Thinking + relme: + https://collect.readwriterespond.com/: true + https://github.com/mrkrndvs: true + https://readwriterespond.com/: true + last_post_title: 'REVIEW: So You Want To Live Younger Longer? (Dr. Norman Swan)' + last_post_description: So many things have bounced back now that COVID is magically + no longer a thing. However, one thing that remains in my life is the presence + of Dr Norman Swan (and Tegan Taylor) via the What's That + last_post_date: "2024-07-01T11:11:31Z" + last_post_link: https://readwriterespond.com/2024/07/review-so-you-want-to-live-younger-longer/ + last_post_categories: + - Health + - Norman Swan + - Politics + - Review + - Ways of Thinking + last_post_language: "" + last_post_guid: 7fbefec4f372a7e6004d18ae7a854829 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-bd98f1a7920b329fb8dbd2c044b3c8f2.md b/content/discover/feed-bd98f1a7920b329fb8dbd2c044b3c8f2.md deleted file mode 100644 index 25e47da67..000000000 --- a/content/discover/feed-bd98f1a7920b329fb8dbd2c044b3c8f2.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: opengers - openstack -date: "1970-01-01T00:00:00Z" -description: Posts categorized as 'openstack' -params: - feedlink: https://opengers.github.io/openstack/feed - feedtype: rss - feedid: bd98f1a7920b329fb8dbd2c044b3c8f2 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: 理解openstack统一认证组件keystoneauth - last_post_description: "openstack api && client\n keystoneauth组件\n keystoneauth的使用 - \ \n 获取token\n 服务发现\n 使用Session对象直接发送api请求\n client集成keystoneauth\n - \ \n " - last_post_date: "2018-06-17T00:00:00Z" - last_post_link: https://opengers.github.io/openstack/openstack-keystoneauth/ - last_post_categories: [] - last_post_guid: c6bebe52a0f17b9a5344e0f538a80d2b - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-bd9f6d8e48966030f23dcf704cc84140.md b/content/discover/feed-bd9f6d8e48966030f23dcf704cc84140.md new file mode 100644 index 000000000..43079f139 --- /dev/null +++ b/content/discover/feed-bd9f6d8e48966030f23dcf704cc84140.md @@ -0,0 +1,61 @@ +--- +title: Go deh! +date: "1970-01-01T00:00:00Z" +description: Mainly Tech projects on Python and Electronic Design Automation. +params: + feedlink: https://paddy3118.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: bd9f6d8e48966030f23dcf704cc84140 + websites: + https://paddy3118.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - J-language programming-language. + - advocacy + - algorithms + - awk + - crunchy python tutorials + - duck typing + - duck typing type python + - europython EDA python + - maths Kaprekar + - meritocracy + - nice community + - python + - python example + - python example training + - python truth-table boolean + - rosettacode + - script + - wide finder + relme: + https://paddy3118.blogspot.com/: true + last_post_title: Recreating the CVM algorithm for estimating distinct elements gives + problems + last_post_description: Someone at work posted a link to this Quanta Magazine article. + It describes a novel, and seemingly straight-forward way to estimate the number + of distinct elements in a datastream. Quanta describes + last_post_date: "2024-05-27T19:06:00Z" + last_post_link: https://paddy3118.blogspot.com/2024/05/recreating-cvm-algorithm-for-estimating.html + last_post_categories: [] + last_post_language: "" + last_post_guid: a3e92d80e59cc45383d7a6e5bf0607cd + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-bda078a6be30a80cdabd4c2761c70d71.md b/content/discover/feed-bda078a6be30a80cdabd4c2761c70d71.md index 40d0d1999..6513f586a 100644 --- a/content/discover/feed-bda078a6be30a80cdabd4c2761c70d71.md +++ b/content/discover/feed-bda078a6be30a80cdabd4c2761c70d71.md @@ -19,20 +19,25 @@ params: last_post_description: Back in the fall, I wrote a series of posts on a particularly horrific episode in Meta’s past. I hadn’t planned to revisit the topic immediately, but here we are, with Threads federation with the - last_post_date: "2023-12-21T21:56:23Z" + last_post_date: "2023-12-21T00:00:00Z" last_post_link: https://erinkissane.com/untangling-threads last_post_categories: [] + last_post_language: "" last_post_guid: aea4bfcf1469287f7a409d429c82456e score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-bdbb6932bfd8c35cdf2c27476078ade7.md b/content/discover/feed-bdbb6932bfd8c35cdf2c27476078ade7.md deleted file mode 100644 index caf1f4213..000000000 --- a/content/discover/feed-bdbb6932bfd8c35cdf2c27476078ade7.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: James (Taylor's Version) -date: "1970-01-01T00:00:00Z" -description: Public posts from @capjamesg@indieweb.social -params: - feedlink: https://indieweb.social/@capjamesg.rss - feedtype: rss - feedid: bdbb6932bfd8c35cdf2c27476078ade7 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-bdc1b96baedaee5c64bd856cc404ed14.md b/content/discover/feed-bdc1b96baedaee5c64bd856cc404ed14.md deleted file mode 100644 index 8ff43254d..000000000 --- a/content/discover/feed-bdc1b96baedaee5c64bd856cc404ed14.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: toddgrotenhuis -date: "1970-01-01T00:00:00Z" -description: Public posts from @toddgrotenhuis@infosec.exchange -params: - feedlink: https://infosec.exchange/@toddgrotenhuis.rss - feedtype: rss - feedid: bdc1b96baedaee5c64bd856cc404ed14 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-bddc8686d2b112211e8f603339615068.md b/content/discover/feed-bddc8686d2b112211e8f603339615068.md deleted file mode 100644 index 2d7bd480c..000000000 --- a/content/discover/feed-bddc8686d2b112211e8f603339615068.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: steve.rss -date: "1970-01-01T00:00:00Z" -description: Public posts from @stevenjmesser@indieweb.social -params: - feedlink: https://indieweb.social/@stevenjmesser.rss - feedtype: rss - feedid: bddc8686d2b112211e8f603339615068 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-bdf031308b8af0c4b9813054fe665c29.md b/content/discover/feed-bdf031308b8af0c4b9813054fe665c29.md new file mode 100644 index 000000000..6b4c0ad86 --- /dev/null +++ b/content/discover/feed-bdf031308b8af0c4b9813054fe665c29.md @@ -0,0 +1,41 @@ +--- +title: Notes from Ash Huang +date: "1970-01-01T00:00:00Z" +description: Tales and random thoughts from a writer +params: + feedlink: https://notes.ashsmash.com/rss + feedtype: rss + feedid: bdf031308b8af0c4b9813054fe665c29 + websites: {} + blogrolls: [] + recommended: [] + recommender: + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php + categories: [] + relme: {} + last_post_title: Every book I read in 2022 + last_post_description: All of the books I read this year, ranging from memoir to + SFF to litfic. Come on in to see my top picks. + last_post_date: "2022-12-23T00:00:00Z" + last_post_link: https://notes.ashsmash.com/entries/2022booklist/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 4c6566ab476d8a9fcd87589e6b4a791f + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 0 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-be04e62fc151e937296c5814bc93ad1a.md b/content/discover/feed-be04e62fc151e937296c5814bc93ad1a.md deleted file mode 100644 index db0585123..000000000 --- a/content/discover/feed-be04e62fc151e937296c5814bc93ad1a.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for Ben Frain -date: "1970-01-01T00:00:00Z" -description: Ben Frain – author and web developer -params: - feedlink: https://benfrain.com/comments/feed/ - feedtype: rss - feedid: be04e62fc151e937296c5814bc93ad1a - websites: - https://benfrain.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on New Web APIs — a popover on top of a dialog element - can’t be interacted with? by Colin - last_post_description: "Hi, \n\nI came across your article as I was having the same - problem, trying to get a popover element to be interactive after being opened - from within a dialog.\n\nThe div element with the popover" - last_post_date: "2024-05-15T06:47:09Z" - last_post_link: https://benfrain.com/failing-with-multiple-dialog-elements-understanding-the-top-layer-and-popovers/#comment-339253 - last_post_categories: [] - last_post_guid: 64d73ffcb9ac1f7eb4347c5135b752b4 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-be0eb3c70ee533dca7d66592c8c7db20.md b/content/discover/feed-be0eb3c70ee533dca7d66592c8c7db20.md deleted file mode 100644 index e18f84453..000000000 --- a/content/discover/feed-be0eb3c70ee533dca7d66592c8c7db20.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: The Nivenly Foundation -date: "1970-01-01T00:00:00Z" -description: Public posts from @nivenly@hachyderm.io -params: - feedlink: https://hachyderm.io/@nivenly.rss - feedtype: rss - feedid: be0eb3c70ee533dca7d66592c8c7db20 - websites: - https://hachyderm.io/@nivenly: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/approved: true - https://nivenly.org/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-be107cae8e7f1755febccf769d7abdbf.md b/content/discover/feed-be107cae8e7f1755febccf769d7abdbf.md new file mode 100644 index 000000000..7819ee017 --- /dev/null +++ b/content/discover/feed-be107cae8e7f1755febccf769d7abdbf.md @@ -0,0 +1,51 @@ +--- +title: AspectJ and Eclipse Programming +date: "2024-03-05T05:40:13-08:00" +description: "" +params: + feedlink: https://andrewclement.blogspot.com/feeds/posts/default + feedtype: atom + feedid: be107cae8e7f1755febccf769d7abdbf + websites: + https://andrewclement.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - annotations + - aspectj + - grails + - groovy + - introductory + - java + - jdt + - ltw + - release + - sts + relme: + https://andrewclement.blogspot.com/: true + https://www.blogger.com/profile/09652435321228153340: true + last_post_title: AspectJ 1.9.0.RC1 released + last_post_description: "" + last_post_date: "2017-10-23T15:26:40-07:00" + last_post_link: https://andrewclement.blogspot.com/2017/10/aspectj-190rc1-released.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 57bca8b56add57a5019bdaf2fb66bafd + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-be116af4bab7bfba573c7b35830978b8.md b/content/discover/feed-be116af4bab7bfba573c7b35830978b8.md deleted file mode 100644 index aa1b72480..000000000 --- a/content/discover/feed-be116af4bab7bfba573c7b35830978b8.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: A little place I know in Cape Town -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://alittleplaceiknowincapetown.blogspot.com/feeds/posts/default?alt=rss - feedtype: rss - feedid: be116af4bab7bfba573c7b35830978b8 - websites: - https://alittleplaceiknowincapetown.blogspot.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://www.blogger.com/profile/11667852535983804885: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-be135da969839e0ec706a7509db83a75.md b/content/discover/feed-be135da969839e0ec706a7509db83a75.md new file mode 100644 index 000000000..7788be845 --- /dev/null +++ b/content/discover/feed-be135da969839e0ec706a7509db83a75.md @@ -0,0 +1,42 @@ +--- +title: Cantabo +date: "2024-02-28T21:01:46Z" +description: "" +params: + feedlink: https://cantabo.blogspot.com/feeds/posts/default + feedtype: atom + feedid: be135da969839e0ec706a7509db83a75 + websites: + https://cantabo.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://cantabo.blogspot.com/: true + https://nattermorphisms.blogspot.com/: true + https://www.blogger.com/profile/05535385464025706733: true + last_post_title: Test Picture + last_post_description: "" + last_post_date: "2005-07-16T20:01:18+01:00" + last_post_link: https://cantabo.blogspot.com/2005/07/test-picture.html + last_post_categories: [] + last_post_language: "" + last_post_guid: ea076b75b4bf69813c4cf0a0eb4fad21 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-be1aea7aa201a2cae52f029f31fdd12e.md b/content/discover/feed-be1aea7aa201a2cae52f029f31fdd12e.md deleted file mode 100644 index e3e28abd3..000000000 --- a/content/discover/feed-be1aea7aa201a2cae52f029f31fdd12e.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: 'Comments on: About' -date: "1970-01-01T00:00:00Z" -description: Summer Study Group 2015 -params: - feedlink: https://cat.boffosocko.com/about/feed/ - feedtype: rss - feedid: be1aea7aa201a2cae52f029f31fdd12e - websites: - https://cat.boffosocko.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-be210fab26cc103745853eabf10c7ee5.md b/content/discover/feed-be210fab26cc103745853eabf10c7ee5.md deleted file mode 100644 index db2ed9329..000000000 --- a/content/discover/feed-be210fab26cc103745853eabf10c7ee5.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Feed of "jbauer" -date: "2024-06-07T11:30:47+01:00" -description: |- - Welcome to my corner of the Merveilles House of Codewares. - Despite my best efforts, I sometimes write code. - I also exist on [Mastodon]. -params: - feedlink: https://git.merveilles.town/jbauer.rss - feedtype: rss - feedid: be210fab26cc103745853eabf10c7ee5 - websites: - https://git.merveilles.town/jbauer: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://www.paritybit.ca/: false - last_post_title: jbauer synced commits to refs/tags/v1.5.0 at jbauer/sbs from mirror - last_post_description: "" - last_post_date: "2024-02-19T21:16:00Z" - last_post_link: https://git.merveilles.town/jbauer/sbs/src/refs/tags/v1.5.0 - last_post_categories: [] - last_post_guid: cfc9922d97d85c1b74424e0ef54e0a00 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-be240d88ac9f41a5dc335ede8c26e038.md b/content/discover/feed-be240d88ac9f41a5dc335ede8c26e038.md new file mode 100644 index 000000000..9db3f0fcd --- /dev/null +++ b/content/discover/feed-be240d88ac9f41a5dc335ede8c26e038.md @@ -0,0 +1,40 @@ +--- +title: Tom Hazledine +date: "2024-07-08T00:00:00Z" +description: Developer. Podcaster. Nerd. +params: + feedlink: https://tomhazledine.com/feed.xml + feedtype: atom + feedid: be240d88ac9f41a5dc335ede8c26e038 + websites: + https://tomhazledine.com/: false + blogrolls: [] + recommended: [] + recommender: + - https://alexsci.com/blog/rss.xml + categories: [] + relme: {} + last_post_title: How do you test the quality of search results? + last_post_description: "" + last_post_date: "2024-07-08T00:00:00Z" + last_post_link: https://tomhazledine.com/assessing-search-quality/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 7bbc4a49e1268cb986cf646e63fe8c02 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 1 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-be30b3677604fa4d038cb6b91bffa74e.md b/content/discover/feed-be30b3677604fa4d038cb6b91bffa74e.md deleted file mode 100644 index 199b4de96..000000000 --- a/content/discover/feed-be30b3677604fa4d038cb6b91bffa74e.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Mac Admins Open Source -date: "1970-01-01T00:00:00Z" -description: Public posts from @macadminsopensource@hachyderm.io -params: - feedlink: https://hachyderm.io/@macadminsopensource.rss - feedtype: rss - feedid: be30b3677604fa4d038cb6b91bffa74e - websites: - https://hachyderm.io/@macadminsopensource: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://community.hachyderm.io/approved/: true - https://github.com/macadmins: true - https://www.macadmins.io/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-be402317ba4b52361d9df0d9b26344cb.md b/content/discover/feed-be402317ba4b52361d9df0d9b26344cb.md deleted file mode 100644 index 7197bc6dd..000000000 --- a/content/discover/feed-be402317ba4b52361d9df0d9b26344cb.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Frills -date: "1970-01-01T00:00:00Z" -description: Public posts from @frills@indieweb.social -params: - feedlink: https://indieweb.social/@frills.rss - feedtype: rss - feedid: be402317ba4b52361d9df0d9b26344cb - websites: - https://indieweb.social/@frills: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://frills.dev/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-be40ba82dee94a8d7d48b8b56c6341b1.md b/content/discover/feed-be40ba82dee94a8d7d48b8b56c6341b1.md new file mode 100644 index 000000000..1364dd9b4 --- /dev/null +++ b/content/discover/feed-be40ba82dee94a8d7d48b8b56c6341b1.md @@ -0,0 +1,45 @@ +--- +title: Haskell for all +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://www.haskellforall.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: be40ba82dee94a8d7d48b8b56c6341b1 + websites: + https://www.haskellforall.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://www.blogger.com/profile/01917800488530923694: true + https://www.haskellforall.com/: true + last_post_title: Quality and productivity are not necessarily mutually exclusive + last_post_description: |- + One of my pet peeves is when people pit quality and + productivity against each other in engineering management discussions + because I don’t always view them as competing priorities. + And I don’t + last_post_date: "2024-07-03T13:05:00Z" + last_post_link: https://www.haskellforall.com/2024/07/quality-and-productivity-are-not.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 34c97fdd98215fc5a9ee6b118cb2eb53 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-be4b881966501544d20c018d9c0656b6.md b/content/discover/feed-be4b881966501544d20c018d9c0656b6.md deleted file mode 100644 index c750e8014..000000000 --- a/content/discover/feed-be4b881966501544d20c018d9c0656b6.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Ian Betteridge -date: "1970-01-01T00:00:00Z" -description: Public posts from @ianbetteridge@mastodon.social -params: - feedlink: https://mastodon.social/@ianbetteridge.rss - feedtype: rss - feedid: be4b881966501544d20c018d9c0656b6 - websites: - https://mastodon.social/@ianbetteridge: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-be56182af6a5e208ccb2113f541edeb4.md b/content/discover/feed-be56182af6a5e208ccb2113f541edeb4.md deleted file mode 100644 index c8aac820d..000000000 --- a/content/discover/feed-be56182af6a5e208ccb2113f541edeb4.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: "Rhys Wynne \U0001F3F4\U000E0067\U000E0062\U000E0077\U000E006C\U000E0073\U000E007F\U0001F1EA\U0001F1FA" -date: "1970-01-01T00:00:00Z" -description: Public posts from @rhyswynne@toot.wales -params: - feedlink: https://toot.wales/@rhyswynne.rss - feedtype: rss - feedid: be56182af6a5e208ccb2113f541edeb4 - websites: - https://toot.wales/@rhyswynne: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://dwinrhys.com/: true - https://instagram.com/rhysieboy84: false - https://twitch.tv/rhyswynne: false - https://www.rhyswynne.co.uk/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-be6dbb9e5ce5c8060777a72eece5a2e0.md b/content/discover/feed-be6dbb9e5ce5c8060777a72eece5a2e0.md deleted file mode 100644 index 645ed7bea..000000000 --- a/content/discover/feed-be6dbb9e5ce5c8060777a72eece5a2e0.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: RÉSONAANCES -date: "2024-06-12T14:09:30+01:00" -description: Particle Physics Blog -params: - feedlink: https://www.blogger.com/feeds/2846514233477399562/posts/default - feedtype: atom - feedid: be6dbb9e5ce5c8060777a72eece5a2e0 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Musing - - Distraction - - Review - - April Fools - - News - - Report - - Jest - relme: {} - last_post_title: 'April Fools''21: Trouble with g-2' - last_post_description: "" - last_post_date: "2022-04-24T08:32:51+01:00" - last_post_link: https://resonaances.blogspot.com/2021/04/trouble-with-g-2.html - last_post_categories: [] - last_post_guid: b314ef04b6bac4078f621ef06d7ce1db - score_criteria: - cats: 5 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-be7691a529eea359e914ed3ecf572106.md b/content/discover/feed-be7691a529eea359e914ed3ecf572106.md new file mode 100644 index 000000000..d7b26324b --- /dev/null +++ b/content/discover/feed-be7691a529eea359e914ed3ecf572106.md @@ -0,0 +1,5642 @@ +--- +title: Swords & Stitchery - Old Time Sewing & Table Top Rpg Blog +date: "1970-01-01T00:00:00Z" +description: A blog about sewing machine repairs,but mainly my hobbies which include + old school role playing games, science fiction,films, horror, and general geekery. + Sit down and stay a spell. +params: + feedlink: https://swordsandstitchery.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: be7691a529eea359e914ed3ecf572106 + websites: + https://swordsandstitchery.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - '" The Complete Psionics Handbook' + - '" The Mad Mansion of Professor Ludlow"' + - '"&" Magazine' + - '"100 Oddities for a Thieves'' Guild"' + - '"100 Signs of Prior Dungeon Explorers (C&C)"' + - '"Al Aaraaf"' + - '"Amazing Planet"' + - '"Basic or Advanced?"' + - '"Black Sword: Pursuit of the White Wolf"' + - '"Coldheart Canyon"' + - '"Doc"' + - '"Empire of the Necromancers" By Clark Aston Smith' + - '"Heroes of Wargaming"' + - '"In Wretched Depravity"' + - '"La Baionnette #32"' + - '"Lair of the White Wyvern" adventure' + - '"Level of the Lost''' + - '"M2: "Vengeance of Alphaks" (1986)' + - '"Marvel-Phile #72 Shanna the She-Devil From the Unofficial Canon Project"' + - '"More Excerpts from the Journals of Hald Sevrin"' + - '"Ogra' + - '"Oh My Lost Darklords' + - '"Quick Vehicle File: Stalwart Class ATV"' + - '"Random Esoteric Creature Generator for Classic Fantasy Role-Playing Games "' + - '"Stealer of Souls: A Quest For Vengeance in Ilmiora "' + - '"The Anthropophagi of Xambaala"' + - '"The Concepts of Spacial' + - '"The Goblins o''f Mount Shadow"' + - '"The Goblins of Mount Shadow"' + - '"The Invisible College" rpg' + - '"The Orcus Tapes"' + - '"The Ruins of Andril"' + - '"The Traveller Core Rulebook Update 2022''' + - '"Thunder Rift" (1992)' + - '"Vice: Sandcove Gets the Blues"' + - '"Wendy''s Guide to the Fleets of Earth Sector' + - '"What Dreams May Come"' + - '"World of Bastards: Furry Bastards"' + - '"Wretched Apocalypse Quickstart rpg "' + - '"Wretched Verses Issue 3: Blood in the Arena"' + - '"X7: "The War Rafts of Kron" (1984)' + - '#1 Shadow of the Necromancer' + - '& Ken St. Andre' + - '& Magazine' + - '& An Encounter With ''Dr. Theophilus'' Traveling Show''' + - '& Heroes' + - '& Heroes By Robert Kuntz & James Ward' + - '& Heroes''' + - '& Independence Games' + - '& Infernal Monsters' + - '& Jodi Moran-Mishler' + - '& John White' + - '& Magazine' + - '& Old School 2d6 Science Fiction Rpg''s' + - '& Private Eyes' + - '& Rolls blog' + - '& Ships of War''' + - '& The Cabal' + - '& Wasteland Kings' + - '''' + - |- + ' + Dig Me No Grave' + - ''' Andrew Marrington' + - ''' Blood A Southern Fantasy ''' + - ''' Cults of Chaos''' + - ''' Free'' material' + - ''' Ghost Ship''' + - ''' House of the Rising Sun'' (Arduin Grimoire volume 6)' + - ''' It Came from the Scriptorium''' + - ''' Outworld Authority''' + - ''' Pay what you want'' adventures' + - ''' Personalities of the Frontiers of Space''' + - ''' Post Cards From Avalidad'' rpg' + - ''' The Thing in the Ice''' + - ''' The Tomb Spawn' + - ''' Thirsty For More''' + - ''' We Hunted the Promethean''' + - '''&" Magazine issue eleven' + - '''&'' Magazine' + - '''''The Wilderlands of High Fantasy''' + - '''A Beacon In The Night''' + - '''A New View on Dwarves''' + - '''A Pay What You Want''' + - '''A Pay What You Want'' Adventure' + - '''A Princess of Mars' + - '''A Shadowed House''' + - '''AC1 The Shady Dragon Inn''' + - '''ACKS and Crafts''' + - '''Abyss''' + - '''Aesirhamar''' + - '''After the Bomb''' + - '''All That Glitters Is Not Gold ''' + - '''And The Sea Shall Give Up Her Dead' + - '''And The sun shined brightly''' + - '''Artificial: Robots in Clement Sector''' + - '''At The Earth''s Core''' + - '''Atlantandria Port City Of Accursed Atlantis''' + - '''B/X Essentials Classes & Equipment''' + - '''B1 The Lost City''' + - '''Back To The Dungeon'' fanzine' + - '''Beneath The Black Moon''' + - '''Black Top Vale''' + - '''Boarding action''' + - '''Chuckles the Clown''' + - '''City Beyond The Gate''' + - '''Codex Celtarum 2nd Printing''' + - '''Crime In The Clement Sector''' + - '''Crimson Escalation''' + - '''Daughters of Darkness' + - '''Dawn of Man''' + - '''Day of the Triffids''' + - '''Day of the Worm' + - '''Death Ziggurat in Zero-G (2015)''' + - '''Dig Me No Grave''' + - '''Dire Invasion''' + - '''Down We Go'' gamezine' + - '''Dwellers Within the Mirage''' + - '''Eldritch Tales: Lovecraftian White Box Role-Playing''' + - '''Flower Liches of the Dragon Boats''' + - '''Free'' material' + - '''Freeze''' + - '''Fugitive (AJ1)' + - '''Game Master Like A $%#$ing Boss''' + - '''Gods' + - '''Guarding Galaxy XXX ''' + - '''Haven 2 Secrets of the Labyrinth''' + - '''His Flesh Becomes My Key''' + - '''Hydra''' + - '''I Come In Peace'' Aka Dark Angel' + - '''In The Shadows of Evil''' + - '''In Wretched Depravity'' adventure' + - '''In the Mouth of Hell''' + - '''Into The Great Sunken Library' + - '''Into the Caves of the Pestilent Abomination: An OSR adventure''' + - '''Issue 4 Wretched Verses ''The Ritual''' + - '''Jewel In Seven Stars ''' + - '''John Carpenter''s Thing'' film' + - '''Journey to The Stars'' source book' + - '''Kevin''' + - '''Lord of All Turpitudes''' + - '''Mage vs Machine''' + - '''Magical Beasts for Fun & Profit'' James Mishler' + - '''Mini Quest: Curse of the Amber Princess''' + - '''Night Shift Veterans of The Supernatural War'' rpg' + - '''Night Shift Veterans of TheSupernatural War'' rpg' + - '''Nosferatu: A Symphony of Horror' + - '''OLDSKULL LIBRARY - The Shadow over Innsmouth''' + - '''Of Gods & Monsters'' By James M. Ward' + - '''Off on A Comet''' + - '''Old Earth' + - '''Old Earth''' + - '''Old Mars' + - '''Old Mars''' + - '''Old Solar System''' + - '''Outworld Authority''' + - '''Pay What You Like''' + - '''Pay What You Like'' titles' + - '''Pay What You Want''' + - '''Pay what you want'' Supplements' + - '''Pay what you want'' adventures' + - '''Pay what you''d like''' + - '''Pay what you''d want''' + - '''Pay what you''d want'' adventures' + - '''Play Your Character Like A Fucking Boss''' + - '''Post Cards From Avalidad'' rpg' + - '''Prelude To Freedom''' + - '''Q'' The Winged Serpent' + - '''Queen Xiombarg''' + - '''Rathgarus The Skull Taker''' + - '''Requiem for Methuselah''' + - '''Ruins: Rotted & risky - but rewarding''' + - '''S3 Expedition to the Barrier Peaks''' + - '''SURVIVE THIS!! What Shadows Hide - Core Rules''' + - '''Sea Kings of Mars''' + - '''Sea Kings of The Of the Purple Towns''' + - '''Signs of Life''' + - '''Silent Running'' OSR Adventure Commentary' + - '''Strange Stars''' + - '''Sword of Cepheus''' + - '''Ten Questions In Gaming''' + - '''Terror under the Sea'' Joseph Mohr' + - '''The Fantasy Gamer''s Compendium' + - '''The Giallo: Orpheum Lofts''' + - '''The Obelisk of Forgotten Memories''' + - '''The Pay What You Want''' + - '''The Voice of El-Lil''' + - '''The Adventurers Spellbook''' + - '''The Balor-Kin Racial Class''' + - '''The Bastard King''' + - '''The Bastions of Balo''' + - '''The Bat''' + - '''The Book of the Dead''' + - '''The Broken Nail'' By The Great Lestrade' + - '''The Case of Charles Dexter Ward''' + - '''The Cepheus Engine''' + - '''The Chaos Cults: Bubonica' + - '''The City That Dripped Blood''' + - '''The Codex Germania''' + - '''The Collectors''' + - '''The Colony of Death''' + - '''The Company of Wolves''' + - '''The Dark Eidolon''' + - '''The Demonic Tome''' + - '''The Devils of The Black Circle''' + - '''The Doom That Came To Sarnath' + - '''The Dragon Magazine issue#8' + - '''The Dreamquest of Unknown Kadath''' + - '''The Drive In Effect''' + - '''The Equinox... A Journey into the Supernatural''' + - '''The Falcon''' + - '''The Giant''s Stair' + - '''The Giants Wrath''' + - '''The Girl Who Dreamed Tomorrow''' + - '''The Gladius Battalion Handbook''' + - '''The Hall of Mystery'' - A Section of the Greenlands Dungeon' + - '''The Hanged Man'' adventure' + - '''The Horror At The Westmore Hotel''' + - '''The Invisible College" rpg' + - '''The Islands of Purple-Haunted Putrescene''' + - '''The Jungle Tomb of the Mummy Bride''' + - '''The Killer Out of Space''' + - '''The Lost Continent''' + - '''The Lost Treasures of Atlantis''' + - '''The Martian Circe''' + - '''The Metallic Tome''' + - '''The Milenian Empire'' OSR Campaign Commentary' + - '''The Milenian Empire'' OSR Campaign Commentary' + - '''The Mist'' film' + - '''The Mound''' + - '''The Mysterious Island''' + - '''The Nameless One''' + - '''The New Marvel - Phile Issue #9 ''The Pages of The Defenders''' + - '''The Pale Lady'' Adventure' + - '''The Politics of Hell'' Books III' + - '''The REF4 The Book of Lairs II (1e)''' + - '''The Rook''' + - '''The Ruins of the River Gates''' + - '''The Sea King''s Malice''' + - '''The Sea-Wolf''s Daughter''' + - '''The Solomons''' + - '''The Starship From Hell''' + - '''The Taming of Brimstone ''' + - '''The Tentacles From Planet X''' + - '''The Thing in the Ice''' + - '''The Time Lost''' + - '''The Tomb Spawn''' + - '''The Vampire"' + - '''The Weird Enclave of Blackmoor'' Sourcebook' + - '''The White Ship Has Come''' + - '''The Wilderlands of High Fantasy''' + - '''The monster That Challenged The World''' + - '''The unofficial canon project Marvel Super Heroes' + - '''The unofficial canon project Marvel Super Heroes Facebook Group' + - '''The unofficial canon project Marvel Super Heroes Rpg' + - '''The unofficial canon project Marvel Super Heroes The Eternals''' + - '''These Stars Are Ours''' + - '''Thieves of Fortress Badaraskor''' + - '''Thieves'' Guild 2''' + - '''Thrill of the Thirties! 2D6 Adventure in the Pulp Era''' + - '''Tourist Trap''' + - '''Twenty Thousand Leagues Under The Sea''' + - '''Under the Sand-Seas''' + - '''V'' Original TV series' + - '''Victorious Hunter & Hunter Catalogue''' + - '''Vitulya Reborn''' + - '''Warrriors of Mars The Warfare of Barsoom in Miniature''' + - '''Welcome To St.Cloud''' + - '''White Wolf: Temples' + - '''Who Goes There''' + - '''Winds of Chance (Arduin Grimoire volume 8)''' + - '''Womb Cult''' + - '''X4 Master of the Desert Nomads''' + - '''the Unofficial Canon Project... Marvel Vampires"' + - '''the Zombie''' + - '''volume of Lexicon Geographicum Arcanum''' + - (In)Sanatorium By Sílvia Clemente + - +Heroes + - |- + - + #0 Village on the Borderlands + - '- Clark Aston Smith''s The Charnal God' + - -The Stone Alignments of Kor Nak - Tankar's Landing Hex 15/12 + - -The Stone Alignments of Kor Nak + - . A. E. van Vogt + - '. Axioms issue #12' + - . Old School Cyberpunk Adventures + - .Godbound + - .retro clone + - .retro clone. terminal space + - 000 Fathoms + - 10 Short Adventures + - 100 Oddities For A Wizard's Tower + - 100 Oddities for a Chaotic Mutation + - 100 Oddities for a Creepy Old House + - 100 Oddities for a Graveyard + - 100 Oddities for a Wizard's Library + - 100 Random Encounters for on the Road or in the Wilderness (C&C) + - 100 Undead (Dark Fantasy) + - 100 Wasteland Urbanites + - 13 Character classes + - 1870 War + - 1950's sci fi cultclassic films + - 1970's 2d6 Retro Rules + - 1970's Sci Fi artwork + - "1976" + - 1978 The Godzilla Power Hour + - 1981 D&D Basic Set + - 1984 Warren Comic Magazines + - 1984) + - 1991 Tales of Lankhmar (LNR2) + - 1E Softcover Book + - 1d10 Random Star Wars Salvage Encounters Table + - 1d20 Random Sword & Sorcery Traits of The Nephilim Background Table + - 1d20 Space Brothel Finds Table + - 1edition AD&D + - 1st Ed AD&D + - 1st Ed AD&D adventures + - 1st Edition AD&D + - 1st Edition AD&D + - 1st Edition AD+D + - 20 bookplate spirits + - 2000 AD + - 2001 A Space Odyssey film + - 2016 Magnificent Seven film + - 21 Vehicles 2nd Edition + - 21 Villains + - "2100" + - 2d6 Cepheus Engine Powered Rpg's + - 2d6 Cepheus Engine rpg + - 2d6 Fantasy Rpging + - 2d6 Magic + - 2d6 Monsters + - 2d6 OSR Campaigns + - 2d6 Old School Rpging + - 2d6 Old School Science Fiction Rpg Campaigns + - 2d6 Old School Science Fiction Rpg + - 2d6 Old School Science Fiction Rpg Campaigns + - 2d6 Old School Science Fiction Rpg's + - 2d6 Old School Science Fiction rpgs + - 2d6 Post Apocalytic Campaigns + - 2d6 Rpg Powdered Games + - 2d6 Rpg Science Fiction + - 2d6 Science Fantasy + - 2d6 Sword & Sorcery + - 2d6 Traveller rpg + - 2d6 Wild West + - 2d6 science fiction rpg's + - 2nd Edition Advanced Dungeons & Dragons + - 2nd Edition Wretched Space Rpg + - 2nd Wretched Space Rpg + - 2nd edition + - 2nd edition (Atlantean Trilogy) + - 3 Toad Stool Publishing + - 3 Toad Stool Publishing + - 3.5 Dungeons & Dragons + - "4" + - 43 A.D. + - 43 A.D. Rpg + - 4C rpg + - 50 Wasteland Caravan Haulers + - 50's Sci Fi + - 5e + - 5th Edition D&D + - 5th Edition Softcover + - 5th edition Amazing Adventures + - 650 Fantasy City Encounter Seeds & Hooks + - 70's sci fi + - "75" + - "76" + - 80's + - 80's Sword + Sorcery + - 80's sci fi + - 90's Godzilla Cartoon + - "91" + - "911" + - ': AD&D 1st Edition' + - ': Actual Play Event' + - ': Advanced Dungeons & Dragons 1st Edition' + - ': Adventure Fodder' + - ': Adventure OSR Campaign Commentary' + - |- + : Adventurer Conquer + or King rpg system + - ': Adventurer Conqueror King rpg system' + - ': Adventures' + - ': Astonishing Swordsmen + Sorcerers of Hyberborea Second Edition' + - ': Astonishing Swordsmen + Sorcerers of Hyberborea Second Edition rpg' + - ': Astonishing Swordsmen + Sorcerers of Hyberborea rpg' + - ': Astonishing Swordsmen + Sorcerers of Hyberborea rpg Third Edition' + - ': Astonishing Swordsmen and Sorcerers of Hyperborea rpg System' + - ': Autarch LLC By This Axe: The Cyclopedia of The Dwarven Civilization' + - ': Barbarian Conquerors of Kanahu' + - ': Campaign Settings' + - ': Carcosa' + - ': Clark Ashton Smith' + - ': Classic Gamma World Modules' + - ': Colonial Troopers: Knight Hawks' + - ': Drugs' + - ': Free Material' + - ': HG Wells' + - ': OSR Campaign Commentary' + - A 'Pay What You Want' title + - A Book of Miscellaneous Spells Volume 2 + - A Druids Lament + - A Fist of Blood & Dust + - A Groats-worth of Grotesques + - A Hundred Hellish Hordlings + - A Martian Odyssey + - A Myriad of Magic Items + - A Night for Jackals + - A Red and Pleasant Land + - A Sweet Serenade) + - A&D 1st Edition + - A'agrybah + - A. Merritt + - A.Bertram Chandler + - A.I. Gods Of The Wastes + - A.Merritt + - 'A0-A4: Against the Slave Lords' + - A1 Slave Pits of The Undercity + - A2 'Slag Heap' + - A2 Secret of The Slaver's Stockade + - 'A2: "Secret of the Slavers Stockade"' + - A3 Assault on the Aerie of the Slave Lords + - A4 In the Dungeons of the Slave Lords + - ABC Warriors + - AC1 The Shady Dragon Inn + - AC10 Bestiary of Dragons & Giants + - AC4 - The Book of Marvelous Magic By Gary Gygax & Frank Mentzer + - AC9 Creature Catalog + - 'AC9: D&D Creature Catalogue' + - 'AC9: D&D Creature Catalogue (Basic)' + - ACK's rpg + - AD 2000 + - AD&D + - AD&D 1st Edition + - AD&D 1st Edition Carnivorous Apes + - AD&D 1st Edition Dungeon Master's Guide + - AD&D Manual of the Planes + - AD&D Rogues Gallery + - AD&D first edition + - AD+D + - AD+D 1st edition + - AFS Magazine + - ANGRY GOLEM GAMES + - AS&SH rpg + - 'AS&SH''s HYPERBOREA: OTHERWORLDLY TALES' + - 'ASE1: Anomalous Subsurface Environment' + - 'ASE2-3 : Anomalous Subsurface Environment' + - 'ASEII: Anomalous Subsurface Environment' + - 'ATTACK SQUADRON: ROSWELL' + - 'AX1: The Sinister Stone of Sakkara' + - 'AX2: Secrets of the Nethercity' + - AX3 The Capital of The Borderlands + - 'AX3: Capital of the Borderlands' + - 'AX4: Ruined City of Cyfandir' + - AX5 Eyrie of the Dread Eye + - 'AX6: Sepulcher of the Sorceress-Queen' + - 'AX6: Sepulcher of the Sorceress-Queen (SoSQ)' + - Aaron Allston + - Aaron Kavli + - Abandon Places + - 'Abandoned Parking Lot: Lot A From Fishwife Games' + - Abyss + - Ac + - Accessory PX2 Extra Planar Primer + - Ace Comics + - Action Toys + - Actual Play + - Actual Play Event + - Actual Play Events + - Actual Play Report + - Ad + - Ad Astra campaign setting book + - Ade Stewart + - Adult Content + - Advanced Ape Class + - Advanced Dungeons & Dragons + - Advanced Dungeons & Dragons 1st Edition + - Advanced Dungeons & Dragons Deities & Demigods + - Advanced Dungeons & Dragons Dungeon Master's Guide + - Advanced Dungeons & Dragons First Edition Dungeon Master's Guide By Gary Gygax + & Mike Carr + - Advanced Dungeons & Dragons first edition + - Advanced Dungeons and Dragons + - Advanced Dungeons and Dragons 1st Edition + - Advanced Dungeons and Dragons 2st Edition + - Advanced Edition Companion (Labyrinth Lord) + - Advanced Labyrinth Lord + - Advdenturer + - Adventuer + - Adventuerer + - Adventure + - Adventure & Campaign Set Up + - Adventure Anthologies + - Adventure Campaign Construction + - Adventure Collections + - Adventure Construction + - Adventure Creation + - Adventure Design + - Adventure Dramune Run + - Adventure Encounter Table + - Adventure Encounters + - Adventure Fodder + - Adventure FodderOld School Sword & Sorcery Gaming + - Adventure Generation + - Adventure Ideas + - Adventure In Lemuria · + - Adventure Incidents + - Adventure Jump Off + - Adventure Location + - Adventure Locations + - Adventure Module + - Adventure Modules + - Adventure OSR Campaign + - Adventure OSR Campaign Commentary + - Adventure OSR Campaign Design + - Adventure OSR Campaign Supplement Reviews + - Adventure OSR Campaign + - Adventure OSR Campaign Commentary + - Adventure Packages + - Adventure Plot Hooks + - Adventure Reviews & Commentaries + - 'Adventure Seeds: Islands' + - Adventure Settings + - Adventure Writing Like A Fucking Boss II + - Adventure arches + - Adventure hook + - Adventure hooks + - Adventure location Fodder + - Adventure location commentary + - Adventure ocations + - Adventure resources + - Adventurer + - Adventurer Conquer or King rpg system + - Adventurer Conqueror King + - Adventurer Conqueror King rpg + - Adventurer Conqueror King rpg system + - Adventurer Conqueror King rpg system Lairs & Encounters + - Adventurers + - Adventures + - Adventures Dark & Deep Swords of Cthulhu + - Adventures Dark & Deep rpg + - Adventures Dark & Deep rpg line + - Adventures In Highwold + - Adventures In Parn blog + - Adventures In The Razor Trade + - Adventures of the Galaxy Rangers + - Adventures on Mars By ODD74 + - After Man + - Afterday rpg setting + - Against the Giants + - Against the Giants G1-2-3 + - Against the Slave Lords + - Age of Conan + - Agents of Shield + - Agents of W.R.E.T.C.H. + - Ahimsa Kerp + - Air Ships + - Aircel Comics + - Al Krombach + - Al-Qadim + - Alan Chamberlain + - Albert Rakowski + - Aleister Crowley + - Alex Johnson + - Alexander Macris + - Alexander Marcis + - Alexander Marcus + - Algernon Henry Blackwood + - Algis Budrys + - Alice In Wonderland + - Alien Ass + - Alien Beast + - Alien Breeds + - Alien Movie + - Alien Races + - Alien Resurrection + - Alien Treasures + - Alien Treasures Treasures + - Aliens + - Aliens Androids & Aberrations + - Alignment + - Allan Dean Foster + - Allan Hammack + - Allen Hammack + - Allen Hammack. + - Allen Quartermain + - Allen Varney + - Alpha Blue + - Alpha Blue Campaign Manager + - Alpha Blue Rpg + - Alphatia + - Alterative Histroy + - Alternative Armies + - Alternative Combat Systems + - Alternative History + - Alternative Players Handbooks + - Althurans + - Amazing Adventure! Rpg + - Amazing Adventure! Rpg OSR Campaign Commentary + - Amazing Adventure! Rpg. OSR Campaign Commentary + - Amazing Adventures + - Amazing Adventures ! rpg + - Amazing Adventures 5E Wild Stars + - Amazing Adventures 5E rpg + - Amazing Adventures Fifth Edition + - Amazing Adventures Manual of Monsters + - Amazing Adventures Manual of Monsters + - Amazing Adventures rpg + - Amazing Adventures! + - Amazing Adventures! Rpg + - Amazing Man + - Amazing Stories + - Amazons + - American Civil War + - American Heroes + - Amtor + - An American Werewolf In London + - An Encounter With 'Dr. Theophilus' Traveling Show' + - An Occurrence at Howling Crater + - An Unfortunate Discovery + - Ancient + Accursed Terra + - Ancient Aliens Theory + - Ancient Kingdoms D20 Mesopotamia + - Ancient Spirits + - Ancient Vaults & Eldritch Secrets + - Ancient Vaults & Eldritch Secrets blog + - Andre Norton + - Andrew Goldstein + - Andrew Hamilton + - Andrew Marrington + - Androids + - Androids For The Frontiers of Space + - Andy Castillo + - Angel Hosts + - Angels + - Anime + - Announcements + - Anomalous Subsurface Environment ASE1 + - Anthologies + - Anthony Pryor (Author) + - Anti paladin + - Anunnaku + - Any system / system-agnostic + - Ape Victorious Rpg + - Apes + - Apes Victorious rpg system + - Apologies + - Appendix 'F' + - Appendix M + - Appendix N + - Appendix S + - Appendix S & S + - Appenix 'S' + - Arachne + - Arachni-Lobster + - Arcanum + - Arch Criminal NPC + - Arch devils + - Architects + - Arduin + - Arduin Eternal + - Arduin Grimoire + - 'Arduin Monster spotlight: Ibathene' + - Arduin Rpg Triliogy + - Arduin rpg + - Arduin's + - Ares Section + - Aresui + - Arioch + - Ark II + - Armchair Planet + - Army books + - Army of Darkness + - Arn Ashliegh Parker + - Art + - Art Commissions + - Art Work + - Arthur C. Clark + - Arthur Conan Doyle + - Arthur Machen + - Arthurian Mythology + - 'Artificial: Robots In The Clement Sector' + - Artists + - Artwork + - Arwork + - Aryxymaraki’s Almanac of Unusual Magic + - Ascendant + - Ascendant rpg + - Ascendant rpg system + - Ashen Void + - Ashes of Sunset + - Asteroid Ships + - Asteroid belt + - Astonishing Swordmen & Sorcerers of Hyperborea second edition + - Astonishing Swordsmen + Sorcerers of Hyberborea Second Edition + - Astonishing Swordsmen + Sorcerers of Hyberborea rpg + - Astonishing Swordsmen & Sorcerers of Hyperborea + - Astonishing Swordsmen & Sorcerers of Hyperborea 2nd edition + - Astonishing Swordsmen & Sorcerers of Hyperborea rpg + - Astonishing Swordsmen + Sorcerers of Hyberborea Second Edition + - Astonishing Swordsmen + Sorcerers of Hyberborea Second Edition rpg + - Astonishing Swordsmen + Sorcerers of Hyberborea rpg + - Astonishing Swordsmen + Sorcerers of Hyberborea rpg 2nd Edition Rpg + - Astonishing Swordsmen + Sorcerers of Hyberborea rpg Third Edition + - Astonishing Swordsmen and Sorcerers of Hyperborea rpg System + - Astral Plane + - Astrologers + - At The Earth's Core + - At The Mountains of Madness + - Atari Force + - Athurian Rpg's + - Atlantandria Port City Of Accursed + - Atlantandria Port City Of Accursed Atlantis + - Atlantandria Port City Of Accursed Atlantis Campaign + - Atlantis + - Atlas/Seaboard + - Atom Age Combat Comics + - Atomic Age Vampire + - Atomic War Comics + - Attack Squadron Roswell + - Auhr Lanse + - Autarc + - Autarch + - Autarch LLC + - 'Autarch LLC By This Axe: The Cyclopedia of The Dwarven Civilization' + - Authors + - Avalon Hill + - Avalon Hill Runequest + - Averoigne + - Aviladad + - Avon Fantasy Reader + - 'Avon Fantasy Reader #14' + - 'Avon Fantasy Reader #5' + - 'Avon Fantasy Reader #7' + - 'Avon Fantasy Reader Issue #1' + - Avon Periodicals + - Awful Good Games + - Axioms Compendium 1-8 + - 'Axioms Issue 10: Grim Heroes and Night Terrors' + - 'Axioms Issue 13: Machinery to the Max' + - 'Axioms Issue 19: Cohorts & Dynasties' + - Axioms issue#1 + - Axioms issue#2 + - B&W Comic Book Implosion + - B.A.T.S. + - B.Poire + - B/X + - B/X Advanced Dungeons & Dragons 1st Edition Hybrid + - B/X Campaign Construction + - B/X D&D + - B/X D&D Adventures + - B/X Dungeons & Dragons + - B/X Essentials + - B/X Essentials:Core Rules Retro-clone rpg systems + - B/X Gangbusters + - B/X Mars + - B/X Retroclones + - B1 In Search of the Unknown + - B1 Insearch of the Uknown Sourcebook + - B1-9 In Search of Adventure + - 'B1-9 In Search of Adventure: The Grand Duchy of Karameikos Anthology' + - B10 Night's Dark Terror + - 'B10: Night’s Dark Terror' + - 'B10: Night’s Dark Terror (1986)' + - B11 King's Festival + - B2 + - B2 Keep on the Borderlands + - B2 The Keep on the Borderlands + - B2.5 Caves of the Unknown + - B3 Palace of the Silver Princess + - B4 The Lost City + - B5 Horror on the Hill + - B5 The Horror on The Hill + - B6 The Veiled Society + - B8 Journey To The Rock + - B9 Castle Caldwell and Beyond + - BASH Rpg System + - BASIC D&D + - BCEMI Dungeons & Dragons system + - BECEMI D&D + - BECMI + - BECMI D&D + - BECMI Dungeons & Dragons + - 'BH2: Lost Conquistador Mine' + - BL1-2 Adventure + - 'BL1-2: The Ruined Hamlet/Terror in the Gloaming' + - BRW Games + - BRW Games LLC + - BTRC + - BX3 The Temple of Mercy + - Baba Yaga's Miraculous Transformation + - Babblers + - Babylon 5 + - Background Traits + - Badge Law Enforcement In The Clement Sector + - Baggage Games + - Baker + - Balo + - Balrogs + - Bandits + - Bandits And Battle Cruisers + - Bandits and Battle Cruisers rpg + - Barbarian Conquerors of Kanahu + - Barbarian Treasures + - Barbarians of Kanahu + - Barbaric + - Barbaric! + - Barbaric! 2nd Edition + - Barbaric! rpg + - Barbian hordes + - Barbie Wilde + - Bard Class + - Bard Games + - Bards + - Barrataria + - Barrataria Games + - Barrel Rider Games + - Barrens of Carcosa + - Barsoom + - Basic Dungeons & Dragons + - Basic Fantasy Rpg + - Battle Beyond The Stars + - Battle For The Purple Islands + - Battle Star Galactica + - Battle Star Galactica. + - Battlestar Galactica + - Be Awesome At Dungeon Design + - Beards + - Beards & Beer rpg + - Bears + - Beast From The Haunted Cave + - Beasties Loathsome Horrors + - Beer + - Beggars + - Beginning Adventures + - Behind The Walls + - Below the Isle of Dread + - Ben Ball + - Ben Bell + - Ben Laurence + - Beneath Black Towen + - Beneath The Comet + - Beneath The Ruins + - Benoist Poire + - Beowulf + - Beserker PC Class + - Best of Dragon Volume 1 + - Best of White Dwarf scenarios volume III + - Beta Heavy Laser Rifle Relic + - Beta Max Black Hartford Edition Campaign + - Better Then Any Man Adventure By James Raggi + - Between Star & Void + - Beyond Belief Games + - Beyond The Ice Fall + - Beyond The Ice Falls + - Bible + - Big Ass Reptile + - Big Geek Emporium + - Big Jim's P.A.C.K. + - Bill Faust + - Bill King + - Bill Owen + - Bill Slavicsek + - Bill Willingham + - Bio Cyberpunk 2d6 Retro Rules + - Birthdays + - Bizarre Old School Adventures + - Black Pudding Heavy Helping Vol. One + - Black Blade of the Demon King + - Black Box Books + - 'Black Box Books -- Tome Three: Cannibals and Confusion' + - Black Dogs 'zine - issue 1 + - Black Dragons + - Black Market Inc. + - 'Black Pudding #1' + - 'Black Pudding #5' + - Black Pyramid + - Black Shield + - Black Star + - Black Streams Rpg + - Black Swan Press + - Black magick rites + - Blackburg Tactical Role Playing Group + - Blackguard + - Blackguards Mini Campaign + - Blackmoor + - Blackwall Games + - Blade Runner + - Blake Mobley + - Blaster Bolts - RPG Omnibus + - 'Blaster Bolts Issue #1' + - Blink Dogs + - Bloat Games + - Bloat Games's SURVIVE THIS!! Vigilante City - Core Rules + - Blog + - Blog Commentary + - BlogAncient + Accursed Terra + - Blogs + - Bloke's Terrible Tomb of Terrors Comic Anthology + - 'Blood & Bronze: rules' + - Blood on the Hands of The Dwarves + - Bloodstone + - Bloody + - Bloody Arduin + - Bloody Bloody Arduin + - Blue Dragon + - Blueholmes + - Boar Thing Kaiju + - Board Games + - Bob Blake + - Bob Bledsaw + - Bob Bledsaw Sr. + - Bob Greyvenstein + - Bogeyman Gaming + - Bond + - Bonnie Dodson + - Book + - Book Influences + - Book of Powers + - Bookmark Guide Spirits + - Bookplate Guardian Spirit + - Boost The Signal + - Boot Hill Rpg + - Border Realms + - 'Bounded Fortune: Independent Merchants in The Clement Sector' + - Bounty Hunter Handbook + - Box Sets + - Bradley K. McDevitt + - Bradley Warnes + - Brains In A Jar + - Bram Stroker + - Brave Halfling + - 'Brave the Labyrinth - Issue #5' + - Bravestarr Cartoon + - Bravestarr cartoom + - Bree Orlock + - Brett Slocum + - Brian Blume + - Brian M. Young + - Brian N. Young + - Brian Shutter + - Brian Young + - British Science Fiction + - Britomart + - Bronze Age Comic books + - Bronze Age Marvel + - Brothels + - Brothers of Man Mini Campaign + - Bruce A. Heard + - Bruce Cordell + - Bruce Heard + - Bruce Humphrey + - Bruce Nesmith + - Bruxelles-class battlecruisers + - Bryan Hinnen + - Bryan Steele + - Bryan Talbot + - Buck Rogers In The 25th Century film + - Bucky The Black Ball + - Bugs + - Bullet Trains + - Bundle of Holding + - Bussard Ram Jet + - By James Mishler + - By Robert Kuntz & James Ward + - 'By This Axe: The Cyclopedia of Dwarven Civilization' + - C&C Adventures + - C.H.U.D.D. + - C.L. Moore + - C.L.Moore + - C.S.Lewis + - C1 "The Hidden Shrine of Tamoachan" + - C1 "The Hidden Shrine of Tamoachan" (1980) + - C1 The Hidden Shrine of Tamoachan + - C1 The Hidden Shrine of Tamoachan Adventure + - C1.5 Ghost City of the Hidden Shrine + - C2 ""The Ghost Tower of Inverness" (1980) + - C2 The Ghost Tower of Inverness + - C3 The Lost Island of Castanamir + - CASTLE OLDSKULL - Oldskull Dragons + - CASTLE OLDSKULL - Oldskull Gonneslingers + - CBI-2 The Thonian Rand Source book + - 'CC1: Creature Compendium' + - CC5 Assault on R'lyeh + - CM1 + - 'CM1: "Test of the Warlords"' + - CM2 + - CM2 Death Rides + - CM2 Death's Ride + - CM3 Sabre River + - CM4 Earthshaker + - CROM FASERIPopedia sourcebook + - CX1 Extra Gnomes + - Caanan + - Cabin In The Woods + - Cabin In The Woods film 2012 + - Cabin in the Woods 2012 + - Cacozealot Class + - Caliban + - Caliban Arduin Dungeon Number One + - Calidar + - Calidar Campaign Setting + - Call of Cthulhu + - Call of Cthulhu rpg + - Camelot + - Camp Cretaceous + - Campaign + - Campaign & Setting + - Campaign Commentary + - Campaign Commentary. + - Campaign Construction + - Campaign Design + - Campaign Idea + - Campaign Ideas + - Campaign Inspiration + - Campaign Resources + - Campaign Session Report + - Campaign Session Report Update + - Campaign Session Reports + - Campaign Set Up + - Campaign Settings + - Campaign Societies + - Campaign Thought Exercises + - Campaign Thoughts + - Campaign Threads + - Campaign Update + - Campaign Updates + - Campaign Workshop + - Campaign Workshops + - Campaign items + - Campaign mini idea + - Campaigns + - CampaignsAstonishing Swordsmen + Sorcerers of Hyberborea rpg + - Candlestick + - Candlestick maker + - Cannibals + - Cannon Films + - 'Capital City Casefiles #1: High Summer' + - 'Capital City Casefiles #2: Served Cold' + - Captain America + - Captain America! + - Carbuncles + - Carcosa + - Carcosa Grimoire + - Carcosa rpg + - Carcosa rpg setting + - Career paths + - 'Career: Nightstalker' + - Careers of The Old West + - Cargo + - Cargoes + - Cargos + - Carl Kolchak + - Carl Sagan + - Carl Sargent + - Carl Smith + - Carlos a.s. Lising + - Carlton comic books + - Carnictis sordicus (Vile Meat-Weasel) + - Carocsa + - Cartography + - Cartridge Games + - Castes & Crusades + - Castle Amber + - Castle Brass (2008) + - Castle Frankenstein Magazine + - Castle Gargantua + - Castle Keeper's Guide + - Castle Old Skull Campaign Setting + - CastleOldSkull + - Castles & Crusade rpg + - Castles & Crusade's Classic Monsters & Treasure book + - Castles & Crusade's The Codex Celtarum + - Castles & Crusades + - Castles & Crusades Adventurers Spellbook + - Castles & Crusades Castle Keeper's Guide + - Castles & Crusades Castle Keeper's Guide Kickstarter + - Castles & Crusades Classic Monsters & Treasure + - Castles & Crusades Classic Monsters & Treasure book + - Castles & Crusades Codex Egyptium + - Castles & Crusades Codex Germania + - Castles & Crusades Codex Nordica + - Castles & Crusades Codex Slavorum + - Castles & Crusades Gods & Legends + - Castles & Crusades Monsters & Treasure book + - Castles & Crusades Monsters & Treasure of Aihrde 3rd printing pdf + - Castles & Crusades Mystical Companions + - Castles & Crusades Mythos Series + - Castles & Crusades Player's Archive + - Castles & Crusades Player's Handbook + - Castles & Crusades Rpgl.Monsters & Treasure Book + - Castles & Crusades Tomb of the Unclean + - Castles & Crusades rpg + - Castles & Crusades rpg Player's Hand book + - 'Castles & Crusades: Brimstone & The Borderhounds RPG Quick Start' + - Castles and Crusades + - Castles and Crusades Of Gods & Monsters + - Cat & Mouse Episode + - Catacombs Of Death + - Catalyst Games + - Catalyst series + - Caterwaul + - Cats + - Caveman + - Cavemen + - Cecil B. Demille + - Celestials + - Celtic Mythology + - Cepheue Engine rpg + - Cepheus Atom + - Cepheus Atom rpg + - Cepheus Barbaric! + - Cepheus Barbaric! Rpg + - Cepheus Deluxe + - Cepheus Deluxe Rpg + - Cepheus Engine + - Cepheus Engine rpg + - 'Cepheus Engine Journal Issue #11' + - 'Cepheus Engine Journal Issue #16' + - 'Cepheus Engine Journal issue #8' + - 'Cepheus Engine Journal issue #9' + - Cepheus Engine Lite + - Cepheus Engine Modern rpg supplement + - Cepheus Engine Powered 2d6 Rpg's + - Cepheus Engine Rpg Vehicle Design Guide + - Cepheus Engine Rpg Vehicle Design Guide + - Cepheus Engine Universal + - Cepheus Engine based Rpg's + - Cepheus Engine rpg + - Cepheus Engine rpg Games + - Cepheus Engine rpg powered games + - Cepheus Engine rpg system + - Cepheus Journal + - 'Cepheus Journal issue #007' + - 'Cepheus Journal issue #10' + - Cepheus Journal issue#8 + - 'Cepheus Journal – Issue #012' + - 'Cepheus Journal – Issue #015' + - Cepheus Light rpg + - Cepheus Modern + - Cepheus Quantum rpg system + - Cepheus Universal Rpg + - 'Cepheus Universal: Player''s Book' + - Cepheus lite + - Cha'alt + - Cha'alt Chartreasure Shadows + - Cha'alt Ascended + - Cha'alt Campaign setting + - Cha'alt Chartreasure Shadows + - Cha'alt Fuchia Mailaise + - Cha'alt Pre-Generated + - Cha'alt X-Cards + - Cha'alt mega dungeon + - Cha'alt rpg + - Cha'alt rpg setting + - Cha'alt setting + - Cha'alt trilogy + - 'Cha''alt: Chartreuse Shadows' + - 'Cha''alt: Fuchsia Malaise' + - 'Cha''alt: Fuchsia Malaise hard back' + - 'Cha''alt: Fuchsia Malaise hard back' + - Chad Bowser + - Chainsaw + - Chal'alt + - Challenge of the Frog God + - Chance & Seven Eleven + - Chandler + - Chaos + - Chaos Fey + - Chaos Gods Come To Meatlandia + - Chaos Rift + - Chaos vs Law + - Chaosium + - Chaosium Hawkmoon Box Set + - Chaosuim's Thieves World 1981 Box Set + - Character Classes + - Character Creation + - Character Workshops + - Charity + - Charles Green + - Charlie Krank + - Charlie Mason + - Charlton + - Charlton Comics + - Chartreuse Shadows + - Children of The Gods + - Children of the Wolf (Cardstock Characters™) + - Chopping Mall movie + - Chris Claremont + - Chris Cotgrove + - Chris Gonnerman + - Chris Kutalik + - Chris McDowall + - Chris Tamm + - Chris Van Deleen + - Christmas Hauls + - Christmas Mini Campaign + - Christopher Shy + - Christopher Tamm + - Chronicles of Mhoriedh Map 00 Olden Lands Continent + - Chronicles of Yerth + - Chthonic Codex + - Church of Starry Wisdom + - Cities Without Number rpg + - City State of the Invincible Overlord + - Citybook I Butcher + - Citybook VI Up Town + - 'Citybook VI: Up Town' + - Citybook series + - CitybookI Butcher + - Citystate of the Invincible Overlord + - Clark + - Clark Ashton Smith + - Clark Ashton Smith Hyperborea Cycle + - Clark Ashton Smith Zothique Cycle + - Clark Ashton Smith's + - Clark Ashton Smith's 'The Seven Geases' + - Clark Aston Smith + - Clash of the Titans + - Clash of the Titans 1981 film + - Classes + - Classic AD&D Modules + - Classic AD&D monsters + - Classic CT- DT-Deluxe Traveller + - Classic D&D Modules + - 'Classic Dragon magazine isssu #54' + - Classic Era TSR + - Classic Gamma World Modules + - Classic Gamma. World Modules + - Classic Horror Films + - Classic Marvel Super Heroes Rpg + - 'Classic Module Twist Up #1: The Desert of Desolation' + - Classic Modules + - Classic Old School Post Apocalyptic Rpging + - Classic Role Playing + - Classic Sci Fi Art + - Classic Sci Fi Television and Movies + - Classics + - Claude M. LeBrun + - Claw Carver + - Claw’s Carvery + - Claw’s Carvery 1 + - Clement Sector + - 'Clement Sector 13: Strikemaster Class Brig' + - Clement Sector Campaign Setting + - Clement Sector Core Setting Book + - Clement Sector Setting + - Clement Sector rpg + - Clement Sector rpg & setting + - Clement Sector third Edition rpg Setting + - Clerics + - Clint Krause + - Clint Staple + - Clint Staples + - Clint and Cassie Krause + - Clinton R. Nixon + - Clipart Critters 609-OSR Goat Fiend + - Clive Barker + - Clones + - Clukkatrix + - Codex Classicum + - Codex Egyptium + - Codex Slavorum + - Cold Drake Canyon Adventure + - Colin Dunn + - Colin McComb + - Colonial Troopers + - Colonial Troopers Rpg + - 'Colonial Troopers: Knight Hawks' + - Colony Builder + - Colony Death + - Colony Earth + - Colony Wars + - Colony World - Earth + - Colony Worlds + - Colosseum + - Colour Out Of Space + - Combat Rules + - Come To Daddy + - Comes Chaos + - Comic Book Anthologies + - Comic Book artists + - Comic Books + - Comics + - Comlink + - Commentaries + - Commentary + - Commentary On Vornheim The Complete City Kit From Zak Smith & The Lamentations + Of The Flame Princess Rpg For Your Old School Campaigns + - Comments + - Common Sense + - Community Projects + - Companion Expansion + - Companion Level Adventures + - Complete Campaign Settings + - Complete Game Systems + - Conan + - Connecticut + - Cononal Troopers rpg + - Conqeuror + - Conqueror + - Conspiracy Rules Rpg + - Conspiracy theory + - Consumerism + - Content thief + - Contraband + - Convention Event Set Up + - Conversions + - Converting Material + - Cordwainer Smith + - Corey Ryan Walden + - Corner Stones of the Hobby + - Corpse Tearer + - Corum 'The Prince With A Silver Hand' + - Corum Heroic Adventures Across The Five Planes 2001 + - Corum rpg + - Cosmic Balance + - Cosmic Enforcers + - Cosmic Entities + - Cosmic Tales + - Cosmic level heroes + - Council of Wyrms + - Count Zaroff + - Courtney Campbell + - Courtney Campbell's Eyrie of the Dread Eye + - Cover Art + - Crash & Burn + - CrawlJammer Issue + - 'CrawlJammer Issue #1' + - 'CrawlJammer Issue #3' + - CrawlJammer Issues + - Crawling Under A Broken Moon + - 'Crawling Under A Broken Moon Issue # 13' + - 'Crawling Under A Broken Moon Issue #10' + - 'Crawling Under A Broken Moon Issue #11' + - 'Crawling Under A Broken Moon Issue #12' + - 'Crawling Under A Broken Moon Issue #17' + - 'Crawling Under A Broken Moon Issue #2' + - Crawling Under A Broken Moon The Unamerican Survival Guide + - Creations Unlimited + - Creative Mountain Games + - Creature Catalog + - Creature Catalog II + - Creatures & Foes + - Creatures from Unknown Lands + - Creep Show Film + - Creeping Eddies + - Creeping Pete The Menace From Reno + - Crew Expendable + - Crime Pays + - 'Crimson Blades 2: The Dark Fantasy RPG' + - Crimson Blades Rpg + - Crimson Dragon Slayer rpg + - Crom + - Crows + - Crusader's Handbook + - Crying Blades + - Cryptic Creatures By Paolo Greco + - Crypts + - Crypts & Things rpg + - Crypts + Things + - Crypts +Things + - Crystal Egg + - Crystal Skull + - Cthulhu + - Cthulhu Invictus rpg + - Cthulhu Live + - Cthulhu Mythos + - Cthulhu Now + - Cult Classic Films + - Cult Classic Movies + - Cult Classic Television Shows + - Cult Classic Televison Shows + - Cult Classics + - Cult ecology + - Cult of Darkness + - 'Cult of Diana: The Amazon Witch book' + - Cult of the Blue Crab + - Cultclassic Seventies TV Series + - Cultclassic Seventies TV Series Reimagined + - Cultclassic Eighties Films + - Cultclassic Films + - Cultclassic Lovecraft Films + - Cultclassic Science Fiction Films + - Cultclassic Seventies TV Series + - Cultclassic movies + - Cults + - Cults of Chaos + - Curse of Xanathon + - Curtis Horror Magazine Imprint + - Cyberknight + - Cybernetics + - Cyberpunk 2020 + - Cybersneaks Hacking In The Clement Sector + - Cyclopean Games + - Cyclops + - Cylon Raider Mark I + - D&D + - D&D Cartoon + - D&D Companion Rules + - D&D Companion Set + - D&D Encyclopedia + - D&D Inspiration + - D&D Rules Cyclopedia + - D&D Rules Cyclopedia (Basic) + - D- Infinity + - D-oom Products + - D.C. Heroes rpg + - 'D1-2: Descent into the Depths of the Earth' + - D100 Minor Magical Items + - 'D1: Descent into the Depths of the Earth' + - D2 "Shrine of the Kuo-Toa" + - D20 + - D20 Conan + - D20 Games + - D20 Modern + - D20 Zothique + - D3 Adventures + - D3 Vault of the Drow + - DA1 Adventures In Blackmoor + - DA2 + - DA2 Temple of the Frog + - DA2 The Temple of the Frog + - DA3 City Of The Gods + - DARK PLACES & DEMOGORGONS - Survive This!! Rpg + - DC + - DC Comic books + - DCC + - DCC Rpg + - DCC fanzine + - DDA1 Arena of Thyatis + - DDA2 Legions of Thyatis + - 'DDA2: "Legions of Thyatis" (1990)' + - 'DDA3: "Eye of Traldar"' + - DF18 Where The Fallen Jarls Sleep + - DF33 Stele of the Silver Thane + - DF5 - Horror of Spider Point + - DM Paul + - DM Raj + - DM Steve + - DM Steve. Retroclones + - DM advice + - DM drama + - DM's. + - DMing advice + - DOM Publishing + - DSR1 Slave Tribes + - DSR2 Dune Traders + - DYI D&D + - DYI Post Apocalyptic Campaigns + - DYI Retro Future Campaigns + - DYI Retro Future Campaigns + - DYI Science Fantasy + - DYI Torg + - Dagar The Invincible + - Daimon Games. + - Dale "Slade" Henson + - Damned Souls + - Dan Proctor + - Danger At Dunwater + - Dangerous Monsters & Creatures + - Daniel J. Bishop + - Daniel James Hanley + - Dante Alighieri + - Darcsyde Productions + - Dare Devil Trailer + - Dark + - Dark Albion + - Dark Ablion Cults of Chaos + - Dark Agnes + - Dark Albion + - Dark Albion Cults of Chaos + - Dark Albion rpg Campaign Setting + - 'Dark Albion: The Rose War' + - 'Dark Albion: The Rose War Campaign' + - Dark Colony + - Dark Conspiracy + - Dark Conspiracy rpg + - Dark Cults + - Dark Dreams (Arduin Grimoire volume 5) + - Dark Dungeons + - Dark Fantasy + - Dark Fantasy Role Playing + - Dark Folk + - Dark Horse + - Dark Horse Comics + - 'Dark Lonesome: The Ariel Sector Sourcebook' + - Dark Naga Adventures + - Dark Outpost Adventure + - Dark Shadows + - Dark Sun + - Dark Sun Campaign Setting + - Dark Tek + - Dark Tower + - Dark Visitor + - Dark Water Press + - Dark Wizard Games + - Dark Wizard Games Mail Call! + - 'Darker Paths 3: The Demonolater' + - Darktek + - Darren Wheeler + - Darrin Drader + - Darsysde Productions + - Dave Anderson + - Dave Arneson + - Dave Arneson Game Day 2014 + - Dave Arneson's Birthday + - Dave Brockie + - Dave Cook + - Dave Davenport + - Dave Hargrave + - Dave J Brown + - Dave J. Browne + - Dave Sering + - Dave Sutherland III + - Dave Woodrum + - David "Zeb" Cook + - David 'Zeb' Cook + - David A. Hargrave + - David Bay Miller + - David Baymiller + - David C. Sutherland III + - David Cook + - David Cooper + - David Drake + - David Guyll + - David Hargrave + - David J. Ritchie + - David Kickasola + - David Lance Arneson + - David Prata + - David Trampier + - David Woodrum + - Davis Chenault + - Davis Chenault. + - Daylight's End 2017 film + - 'Dead Names: Lost Races and Forgotten Ruins' + - Deamons + - Death Angel's Shadow + - Death Frost Doom Adventure + - Death Hawk + - 'Death Race: Fury Road' + - Death Stalkers of Antediluvia + - Death Valley + - Death of Ilalotha + - Death's Ride + - Deaths + - Deathworld + - Deep Carbon Observatory + - Deep Dive + - Deep Ones + - Defiance + - Deities + - Deities & Demigods + - Del Teigeler + - Dell Comics + - Delos + - Delta Green Rpg + - Delta's D&D Hotspot + - DemiGods & Heroes + - Demigods + - Demogorgon + - Demolition Man + - Demon Goblins + - Demon Hunters Handbook + - Demon Lords + - Demon Magic The Second Stormbringer Campanion + - Demon Slayer + - Demon Swords + - Demon spawn + - Demon weapons + - Demonic Masks of OOR'rshu + - Demonic Resurrections + - Demonic Skeletal Ghouls + - Demonic Tome + - Demonlogy + - Demons + - Demons Box Set + - Demons of the Outer Void + - Denizen's of Verekna + - Deodanths + - Deodaths + - Deplector + - Der Ring des Nibelungen (The Ring of the Nibelung) + - Der Ring des Nibelungen (The Ring of the Nibelung)' + - Derek Holland + - Deriative Wretchedverse RPG + - Dervish + - Descent Into The Caves Of The Unknown + - Descent into the Candy Crypts + - Descent into the Depths of the Earth + - Desert Denizens + - Desert encounters + - Designer Notes + - Devas + - Devil Slayer + - Devils + - Didier Poli (Illustrator) + - Dieties & Demigod + - Dieties & Demigods + - Different Worlds + - Different Worlds Publishing + - 'Different Worlds issue #31' + - Dinosaurs Cowboys Human Space Empires Worlds + - Dio + - Direbane blog + - Dirty Wars Corporate Armies + - Disney + - Disney movies + - Disoriented Ranger Publishing + - Distant Lights + - 'Diverse Roles Third Edition : A Clement Sector Career Catalog' + - Diversions of the Groovy Kind + - Divinities + - Doc's Adventures On Mars + - Doctor Strange + - Documentaries + - Dolmwood + - Domain Level Play + - Domain's of Dread + - Dominick Pelletier + - Dominique Crouzet + - Domino Masks + - Don Trumball + - Don Trunabull + - Don Turnbull + - Doom Products + - Doppelgangers + - Double Feature (The Old House + - Doug Bradely + - Doug Niles + - Dougal Dixon + - Douglas Niles + - Down Dark Trails + - Down Darker Trails rpg + - Dr. Hans Reinhardt + - Dr. Hyde + - Dr.Eric Lis + - Dr.La Sing + - Dr.Strange + - Draconian Fighter Space Craft + - Draconic Magazine + - Dragon (Issue 31 - Nov 1979) + - Dragon (Issue 54 - Oct 1981) + - Dragon Bat + - 'Dragon Issue #62' + - Dragon Magazine + - Dragon Magazine 138 + - Dragon Magazine 159 + - Dragon Magazine 182 + - Dragon Magazine 211 + - 'Dragon Magazine issue #56' + - 'Dragon Magazine issue #70' + - Dragon Magazine issue#42 + - Dragon NPC's. Mystara + - Dragon Tree Press + - 'Dragon issue #20' + - 'Dragon issue #21' + - 'Dragon issue #28' + - 'Dragon issue #42' + - 'Dragon issue #63' + - 'Dragon issue #71' + - 'Dragon issue #75' + - Dragon issue 68 + - Dragon issue 81 + - Dragon issue Issue 94 + - Dragon issue#12 + - 'Dragon magazine #97' + - Dragon magazine 101 + - Dragon magazine 108 + - Dragon magazine 109 + - Dragon magazine 183 + - 'Dragon magazine issue #112' + - 'Dragon magazine issue #113' + - 'Dragon magazine issue #119' + - 'Dragon magazine issue #18' + - 'Dragon magazine issue #4' + - 'Dragon magazine issue #90' + - Dragon magazine issue 116 + - Dragon magazine issue 182 + - Dragon magazine issue 183 + - Dragon magazine issue 212 + - Dragon magazine issue 28 + - Dragon magazine issue#104 + - Dragon magazine issue#20 + - Dragon magazine issue#75 + - Dragon's foot + - Dragonborn + - Dragonfoot.org + - Dragonhawks + - Dragons + - Dread Gods + - Dreamlands + - Dreams in the Witch House + - Dreamscape Design + - Drelzna + - Dresdner Multipurpose Corvette + - Driders + - Driftwood Verses + - Drives + - Drivethrurpg + - 'Drongo: Ruins of the Witch Kingdoms' + - Drow + - Druaga + - Drugs + - Druillet + - Dune + - Dungeon + - Dungeon Adventure Kits + - Dungeon Alternatives + - 'Dungeon Crawl Classics #79: Frozen In Time' + - 'Dungeon Crawl Classics #84: Peril On The Purple Planet (box set)' + - Dungeon Crawl Classics Rpg + - Dungeon Crawl fanzine + - Dungeon Crawl fanzine. + - Dungeon Crawls + - Dungeon Design + - Dungeon Dressing + - Dungeon Ecology + - Dungeon Ecology & Set Up + - Dungeon Finds + - Dungeon Hazards + - Dungeon Lord Blog + - Dungeon Master Motivation + - Dungeon Master Stuff + - Dungeon Master's Guide + - Dungeon Master's Workshop Session Zero Preparation + - Dungeon Module A7 – Marquessa + - 'Dungeon issue #69' + - Dungeon of The Unknown + - Dungeoneer + - Dungeonland + - Dungeonlord Blog + - Dungeons + - Dungeons + Dragons + - Dungeons Dragons + - 'Dungeons & Delvers: Black Book' + - Dungeons & Dragons + - Dungeons & Dragons Cartoon + - Dungeons & Dragons Cyclopedia + - Dungeons & Dragons Rules Cyclopedia + - 'Dungeons & Dragons Set1: Basic Rules' + - Dungeons & Dragons races + - Dungeons + Dragons + - Dungeons and Dragons + - Dungeons and Dragons Cartoon + - Dungeons of Dread + - Dwarves + - Dwellers In The Mirage + - Dwimmermount (ACKS version) + - Dying Earth + - Dyson Logos + - E. R. Eddison + - E.D.D.I.E. Cybernetic Units + - E.Gary Gygax + - EC comics + - EPIC! Silvia Clemente + - EX1 + - EX1 Dungeonland + - EX1 Isle of Dread + - EX2 + - EX2 Land Beyond The Magic Mirror + - Earth + - Earth 1870 + - Earth 4635x + - Earth Sector + - Earth Sector rpg + - Earth Vs the Flying Saucer + - Easy of Play + - Ebon Gryphon Games + - Echohawk + - Echohawk's RPG Musings + - Ecology + - Ed Greenwood + - Edgar Allen Poe + - Edgar Rice Borroughs + - Edgar Rice Burroughs + - Edward Hamilton + - Effing Cool Miniatures + - Egg of Coot + - Egypt + - Eighties + - Eighty One + - El Cid + - Elder Gods + - Elder Things + - Eldritch Enterprises + - Eldritch Entertainment + - 'Eldritch Tales: Lovecraftian White Box Role-Playing' + - 'Eldritch Tales: Lovecraftian White Box Role-Playing game' + - Eldritch Wizardry + - Eldritch Wizardry 1976 + - Electrical Experimenter + - Elemental Demonic Patrons + - Elemental Spells + - Elf Lair Games + - Elf Lair Publishing + - Elfmaids & Octopi + - Elfmaids & Octopi blog + - Eloi + - Elric + - Elric mythos + - Elric of Melnibone + - Elric of Melnibone rpg + - Elric rpg + - Elves + - Emily Blunt + - Emperor's Choice + - Emperor's Choice Games + - Empire of The Petal Throne + - Empire of The Petal Throne Rpg + - Empire of Time rpg supplement + - Encounter Fanzine + - Encounter Tables + - Encounters + - Engineering Castles + - Engineering Dungeons + - England Upturn'd + - Epsilon City + - Equipment + - Eric Bloat + - Erick Wujcik + - Eris + - Ernie Gygax + - Erol Otus + - 'Escape From The Psiborg I.C.E. Prison #134' + - Esoteries + - Essence Of Evil + - Eternal Champion + - Eternals + - Ettercaps + - Europa + - Events + - Evil Dead + - Evil Dead Television Series + - Evil Elemental Rulers + - Exalted + - Excalibur movie 1981 + - Exhibit Species 667 - The Nihilist + - Exhumed Obscura + - Expanded Dragons + - Expanded Dragons – Hatchlings to Elder Wyrms + - 'Expanded Monsters: Eldritch Eyes' + - 'Expanded Races: Thanians - A Shadowdark Supplement' + - Expanded Wretched Rpg + - Expanding Character Classes + - Expanding Classes + - Expansions + - Expediation to the Crystal Cavern + - Expedition To the Barrier Peaks + - Expeditious Retreat Press + - Expert Dungeons & Dragons + - Explorers + - Exterminator Cyborgs + - Exterminators + - Eye Of Fear and Flame + - F Zozer Games + - F1 Zombie Curse + - FASERIPodedia rpg + - FASRIP rpg's + - FM-1 Baba Smerta + - Facebook + - Factions + - Fainting Goat Games + - Fairies + - Fairies Fair and Foul Vol. 01 + - Fairy + - Fairy Tales + - Fairylands + - False Machine Publishing + - Famine In Far-Go + - Fan Created Material + - Fan Films + - Fan Theories + - Fangs of the Fatherland + - Fantastic Adventures + - Fantastic Heroes & Witchery Rpg + - Fantastic Treasures + - 'Fantastic Treasures: Hundreds of Enchanted Weapons and Items From Myth & Folklore' + - Fantasy + - Fantasy Accessories + - Fantasy Master + - Fantasy Movies + - Far Future Enterprises + - Far Horizon + - Far Out Space Nuts + - Fasa Star Trek + - Faster Monkey Games + - Faster Then Light Nomad Rpg + - Fawcett Comics + - Feathered Laser Raptors + - Featured Artist + - Featured Artist of The Day + - Fen Roc + - Fever-Dreaming Marlinko + - Fey + - Fiend Folio + - Fifth Edition + - Fifth Edition Dungeons & Dragons + - Fight On Magazine + - Fight On! (Issue 3 - Fall 2008) + - Fighters + - Film Commentary + - Film Inspiration + - Film campaign Rpg inspiration + - Films + - Fire & Ice Film + - Fire Arms + - Fire Cracker Goblins + - Fire Mountain + - Fire on The Velvet Horizen + - Fireside Games + - 'First Edition Fantasy: Dungeon Hazards' + - First Edition Stormbringer rpg + - First Fantasy Campaign + - First Impressions + - Fish Wife Games + - Five Cultclassic Eighties Fantasy Films + - Five Cultclassic Eighties Films + - Five Swords + - Five Ways To Screw With + - Flash Gordon + - Flash Gordon The Greatest Adventure of All + - Flint Henry + - Flood of '55 + - Flying Buffalo + - Flying Polyps + - Flying Saucers + - Followers of The Pandorics + - Fomorian + - 'Foot Print Magazine issue #22' + - Footprint Magazine + - Footprints (Issue 24 - Jan 2019) + - Forbidden Planet + - 'Forbidden Worlds #2' + - 'Ford''s Faeries: A Bestiary' + - 'Ford''s Faeries: A Bestiary Inspired by Henry Justice Ford' + - Forrest Aguirre + - Fortress (1992) + - Fourth of July + - Frank Belknap Long + - Frank Frazetta + - Frank Mentzer + - Frank Schmidt + - Frank Skeivoll Romsvig + - Frankencampaign + - Fred Fields + - Frederick Arnold Kummer + - Free 2d6 rpg material + - Free Adventure + - Free Adventure pdf's + - Free Adventures + - Free Cepheus Engine rpg + - Free Cepheus Engine rpg material + - Free City of Greyhawk + - Free Comic books + - Free Download + - Free Download Review & Commentary + - Free Downloads + - Free Fanzines + - Free Goblinoid Games + - Free Goblinoid Games Realms of Crawling Chaos + - Free Goblinoid Games material + - Free Material + - Free Material. + - Free Mini Module + - Free Modules + - Free OSR Adventure + - Free OSR PDF + - Free OSR PDF's + - 'Free OSR Resource - & Magazine #11 For Your Advanced Dungeons & Dragons 1st Edition + or OSRIC rpg systems' + - Free OSR Resources + - Free OSR Rpg games + - Free OSR Sourcebooks + - Free OSR Supplements + - Free OSR material + - Free OSR modules + - Free PDF + - Free PDF's + - Free PDFs + - Free Pulp Download + - Free Resources + - Free Retroclone Adventures + - Free Rpg Day + - Free Space Craft Plans + - Free Sword & Sorcery Campaigns + - Free Wargames + - Freez'rea + - French Comic Books + - Friends + - Frog God Games + - From Stellagama Publishing + - From The Ashes Box Set + - From The Beyond + - From The Vat + - From The Vats + - Frosty Overlords + - Frugal DM + - Fungus + - Funnels + - G Edward Patterson III + - G-Core + - G. Edward Patterson III + - G.I. Joe + - G1 Steading of the Hill Giant Chief + - G2 Glacial Rift of the Frost Giant Jarl + - G3 Hall of the Fire Giant King + - 'GAZ1: "The Grand Duchy of Karameikos" Frank Mentzer' + - GBM-1 Joe's Diner + - 'GEAR : General Equipment Adventurers Require' + - GM Games + - 'GMA1: Cult of The Rat God' + - 'GMA2: They Devour' + - GP Adventures + - GP Adventures LLC + - GW3 The Cleansing War of Garik Blackhand + - GW5 Rapture Of The Deep + - Gallant Comics + - Gallant Games + - Gallant Knight Games + - Game Designer's Workshop + - Game Lords + - Game Lords LTD + - Game Lords LTD. + - Game Play + - Game Science + - Game Session Report + - Gamefound + - Gamer ADHD + - Games Glades of Death + - Games Workshop + - Gaming + - Gaming Commentary + - Gaming Groups + - Gaming Memories + - Gaming Product + - Gaming Resources + - Gaming Session Reports + - Gamma World + - Gamma Terra + - 'Gamma Turquoise: Santa Fe Starport' + - Gamma World + - Gamma World 1st + - Gamma World 1st + 2nd Edition + - Gamma World 1st edition + - Gamma World 2nd edition rpg + - Gamma World 4th edition + - Gamma World First Edition + - Gamma World Fourth Edition + - Gamma World Gamma Knights + - Gamma World Rpg + - Gamma World Second Edition + - Gamma World rpg 1st + - 'Gamma World: Legion of Gold GW1 Exploration Module 1981' + - 'Gamma World: Legion of Gold GW1 Exploration Module 1981.' + - Gangbusters rpg + - Garden of the Plant Master + - Gargoyle 74 Rpg + - Gargoyles + - Garry Spiegle + - Garske Games + - Gary "Jake" Jaquet + - Gary Con + - Gary Fields + - Gary Gygax + - Gary Gygax Timothy Brannan + - Gary Gygax day + - Gary Vs The Monsters + - Gavin Norman + - Gavriel Quiroga + - Gaynar the Damned + - Gelatinous Cubes + - Generators + - Generic Adventures + - Gennifer Bone + - Geoffrey McKinney Carcosa + - Geoffrey McKinney Carcosa rpg + - Geoffrey McKinney + - Geoffrey O'Dale + - Geoffry O'Dale's Judge's Guild Inferno + - George Ebersole + - George Pal + - Germanic Norse mythology + - Gerry Andersen + - Gerry Anderson + - Gerry Spiegle + - Gethsemane Games + - Getting New D&D Players + - Ghost City + - Ghost Ship of the Desert Dunes + - Ghost of Lion Castle + - Ghosts + - Ghosts of Salt Marsh + - Ghosts the Incorporal Undead + - Ghou'ld + - Ghouls + - Giant Alien Skeleton Warriors + - Giant Bats + - Giant Bugs + - Giant Leopard Seal + - Giant Monster Movies + - Giant Monsters + - Giant Mutant Lemurian Ripper + - Giant Mutated Vampire Crabs + - Giant Robots + - Giant Series + - Giants + - Giants of the Rpg Hobby + - Gibberlings + - Gifts + - Gillette Castle State Park + - Girls Gone Rogue + - Gladiators + - Glantri + - Glenn Seal + - Glynn Seal + - Gnolls + - Gnomes 1977 Book + - Go Fund Me + - Goblinoid Games + - Goblins + - Goblioid Games + - Godbound + - Godbound rpg + - 'Godbound: A Game of Divine Heroes' + - Gods + - Gods & Demons - Hawkmoor - Aedle Magder + - Gods Demi Gods + Heroes + - Gods of Law in the New Kingdoms' + - Godstar + - Godstar Campaign Setting + - Godzilla + - Godzilla King of the Monsters 2019 + - 'Godzilla: The Series' + - Gold Key Comics + - Gold Rush! + - Golden Age of Gaming + - Goldenrod's Guide To Combat + - Gonzo Adventures + - Gonzo Nightshift Veterans of the Supernatural Wars Rpg Campaign + - Goodman Games + - Goodman Games Original Adventures Reincarnated series 2 The Isle of Dread + - Goodman Games Original Adventures Reincarnated series S3 Expedition To The Barrier + Peaks + - 'Goodman Games Classics Reimagined #2 Isle of Dread' + - Goodman Games Original Adventures Reincarnated series 2 The Isle of Dread + - Gord the Rogue + - Gordon R. Dickson + - Gorgo + - Gorgon Entertainment + - Gorgon Milk + - Gorgons + - Gothic Literature + - Graeme Morris + - Grand Father's Rain + - Grant S Parrinello (Author) + - Graphic Novels + - Gravity + - Grayhawk + - Grays + - Great Figures + - Great Khan Games + - Great Race of Yith + - Greco Roman Mythology + - 'Green Devil Face #1' + - Green Lantern Comic books + - Green Ronin Games + - Green Skeleton Gaming Guild + - Green Sorceress + - Greg Daley + - Greg Gorgonmilk + - Greg Porter + - Greg Stafford + - Gregg Stafford + - Gregorius21778 + - 'Gregorius21778: 10 Demons of Hell From Kai Pütz a.k.a Gregorius21778' + - 'Gregorius21778: 20 Encounters in the Ruins of the Elder Beings By Kai Pütz a.k.a. + Gregorius21778' + - 'Gregorius21778: 20 Sacred Sites' + - 'Gregorius21778: 30 Items of the Dwarfs' + - 'Gregorius21778: Looks & Details Of Post-Apocalyptic Marauders' + - Gremllins 1984 + - Grenadier Models + - Grendal + - Grey Elf's Original Dungeons & Dragons Resources + - Grey Widowers + - Greyhawk + - Greyhawk Adventures + - Greyhawk Campaign Setting + - Greyhawk Grognard blog + - Greyhawk Original Dungeons & Dragons + - Greyhawk canon + - Greys + - Griffon Publishing + - Griffon Publishing Studio + - Grim Jim + - Grimjack + - 'Grimjack (1984) #76' + - Grimm Aramil Publishing + - Grimoire Games + - Grimtooth's Ultimate Traps Collection + - Grind House + - Ground Zero Games + - Groups + - Grunt + - Guardians + - Guardians of the Galaxy Marvel Movie + - Guardians rpg + - Guilds + - Guilds and Orders + - Gunboats and Shuttles + - Gunhed + - Guns + - Guns of War + - Guns! + - Gunslinger rpg + - Gunstar One + - Gurbintroll Games + - Gus LaRu + - Guy Ritchie + - Gygax + - Gygax Magazine + - H.B. Piper + - H.G. Wells + - H.P. Lovecraft + - H.P.Lovecraft + - H.Rider Haggard + - HD2 The Shrine of the Black Ones + - HG Wells + - 'HM6: The Equinox Demon' + - HOSTILE Situation Report 007 + - HOSTILE Situation Report 007 - The Ark + - HOSTILE Situation Report 011 - Black Moon + - HP Lovecraft + - HR1-HR7 Historical Reference Series + - HS1 The Lost Shrine of Sirona + - HS3 Incursion of the Chain Devils + - Hack & Slash Blog + - Hack & Slash Compendium II + - Hacker + - Hades + - Hainitugobae + - Half Ogres + - Half Orcs + - Halloween + - Halloween game. + - Halls of the Nephilim + - Hammer Movies + - Hammers Slammers + - Hanging Coffins of the Vampire Queen + - Hanna Barbara Studios + - Hannah Saunders + - Hapless Henchmen Games + - Happy International Gary Gygax Day + - Happy Mayday! + - Harbinger + - Harbinger Crew Expendable + - Harbinger Down + - Harbinger Games + - Hardware + - Hardware film + - Harpoon Cannon Gaming + - Harry Harrison + - Harry Nuckols + - Harry Potter + - Harvard Blackmoor + - Harvest Moon + - Hauls + - Havard Blackmoor + - Havard Blackmoor Blog + - Havard's Blackmoor blog + - Have Death Ray + - Haven The Free City + - Hawk Maiden + - Hawk The Slayer + - Hawk The Slayer Film + - Hawkmoon rpg + - Hawkmoon rpg box set + - 'Hawkmoon: The Roleplaying Game' + - Hawkmoor Geographica -- A Shadowdark Campaign Setting + - Heavy Metal Magazine + - Helix + - Hell + - Hell Night Hijinks + - Hell' Paradise + - Hellbound Media + - Help Needed + - Helping To Spread The Word + - Henchmen Sing the Blues + - Henry Justic e Ford + - Henry Kuttner + - 'Hercynian Grimoire #1' + - Hereos + - Hereticwerks + - Hereticworks + - Heroes + - Heroic Fantasy Handbook + - Heward + - Heward's Mystical Organ + - Hex Crawling + - High Level Encounters + - High Tech Mysticism & High Caliber + - High Tech Mysticism & High Caliber Adventure + - High Tech Mysticism & High Caliber Adventure OSR Campaign + - High Tech Mysticism & High Caliber Adventure OSR Campaign + - High Tech Mysticism & High Caliber Adventures + - High Weirdness + - High level Adventures + - High level Treasures + - Hill Cantons + - 'Historical Ships of Clement Sector 1: Trent-class Destroyer' + - Hobgoblins + - Holidays + - Hollow World + - Holmes + - Holmes D&D + - Home brew adventures + - Homebrew campaign + - Horde Wars Basic D12 Rpg System + - Hordlings + - Horib + - Horizons Survey space craft + - Horror Comic Books + - Horror Express + - Horror Movies + - Horror On The Hill + - Horror Rpging + - Horror Rpgs + - Horror Stories + - Horror moves + - Horrors + - Hostil rpg setting + - Hostile + - Hostile Explorers + - Hostile Redesign + - Hostile Rough Necks + - Hostile Roughhecks + - Hostile Roughnecks + - Hostile Rules + - Hostile Session Report 001 Ghostship + - 'Hostile Situation Report #010 Street Scum' + - Hostile Solo rpg + - Hostile rpg + - Hostile rpg setting + - Hostile setting book + - Hostile universe + - Hostile's Crew Expendible + - Hotzone + - Hour of the Dragon + - House 1985 + - House Dungeons & Dragons Systems + - House II + - House Rules + - House Two The Second Story + - House of the Rising Sun (Arduin Grimoire volume 6) + - House on Hangman's Hill + - How To Game Master Like A F$#$ing Boss + - How To Game Master Like A Fucking Boss + - How To Hexcrawl + - How To Write Adventures Like A F$#$ing Boss + - Howard Hawks + - Hubris + - Hulks & Horrors rpg + - Hulks + Horrors + - Human Space Empires + - Human Space Empire + - Human Space Empires + - Humanoid Races + - Humanoids From The Nightmare World + - Humor + - Hundred Years War + - Hunt In The Dark + - Hunter I + - Hunter Rose + - Hyberborea Rpg + - Hyboria Gazetteer + - Hydra + - Hydra Collective + - Hydra Cooperative + - Hydras + - Hydrogen Gas + - Hyperborea + - Hyperborea Adventure Three-Pack by Jeffrey Talanian + - Hyperborea Otherworldly Tales + - Hyperborea Rpg system + - Hyperborea rpg + - Hyperborea rpg third edition + - Hyperborea third edition rpg + - Hyperspace + - I Important NPC's + - I1 "Dwellers of the Forbidden City" + - I1 "The Hidden Shrine of Tamoachan" + - I1 Dwellers In The Forbidden City + - I1 Dwellers of the Forbidden City + - 'I10: "Ravenloft II: House on Gryphon Hill"' + - 'I11: "Needle"' + - I12 Egg Of The Phoenix By Frank Mentzer And Paul Jaquays + - 'I13: Adventure Pack I' + - I2 Tomb of the Lizard King + - I3 Pharaoh + - I3 Pharoah + - I3-5 Desert of Desolation + - I4 Oasis of the White Palm (1e) + - I5 Lost Tomb of Martek + - I6 RAVENLOFT + - I7 Baltron's Beacon + - I7 Baltron's Beacon (1e) + - IM1 Immortal Storm + - IM2 The Wrath of Olympus (Basic) + - Ian Melluish + - Ian Stead + - Ian Stead Tim Price Ade Stewart + - Ice Borers + - Ice Kingdoms Map + - Ideas + - Illusionists + - Ilusionists + - Imagine Magazine + - 'Imagine magazine #12 ~ TSR (March' + - Immortal Rules + - Immortality Inc + - Immortals Box set + - Immortals Companion + - Important NPC's + - In Memorium + - In Search Of The Unknown + - In Search of Games + - In The Cities Word Press + - In The Mouth Of Madness + - Incredible Science Fiction + - Independance Games + - Independence Games + - Independence Games Clement Sector + - Independent Gaming + - Indiegogo + - Inferno + - Inferno Bestiary + - Inferno By Geoffry O. Dale + - Infinite Stars Issue#1 + - Infinite Stars Issue#2 + - Influences + - Inhumanoids + - Inner Earth + - Inspirations + - 'Insults & Injuries: A Pathfinder Sourcebook for Medical Maladies' + - 'Interface: Cybernetics' + - 'Interface: Cybernetics in Clement Sector' + - 'Interface: Cybernetics in Clement Sector. Michael Johnson' + - International Crimson Dragon Slayer Day! + - International Dave Hargrave Day + - Internet Archive + - Interstellar Colonies + - Interviews + - Into The Odd + - Introductory Adventure + - Inzae + - Io + - Io9 + - Iron Maiden + - Ishihara Gōjin + - Islands In The Stream + - Islands of Purple Putrescence + - Isle Of The Unknown + - Isle of Dread + - Isle of the Torturers + - 'Issue #2 of the Wretched Verses' + - Issue 27 + - Issue 3 Single Issue Magazine - January 1 + - Issue 32 + - Italian folklore + - Ivan Cantero Muñoz "The Fictionaut" + - Ivanhoe Unbound + - Ixian Wizards + - Ixians + - J Major Influences + - J. Eric Holmes + - J. Miskimen + - J.D. Neal + - J.G. Ballard + - J.G. Desborough + - J.J. Abrams + - J.K. Rowlings + - JG 88 Dark Tower + - 'JG3: Dark Tower D20' + - JN2 Monkey Isle + - Jabberwocky + - Jack 'King of Comics' Kirby + - Jack Kirby + - Jack Kirby's Fourth World Omibus + - Jack London + - Jack O' Lantern's MSH Blog + - Jack She + - Jack Shear + - Jack Vance + - Jame M. Ward + - James & Jodi Mishler + - James & Jodi Moran - Mishler + - James D. Kramer + - James Edward Raggi IV + - James M Spahn + - James M. Spahn + - James M. Ward + - James M. Ward Run + - James M.Ward + - James McKinney's Carcosa + - James Mishler + - James Mishler & Jodi Moran-Mishler + - James Mishler Games + - James Mishler Games Short Cuts to Adventure The Lost Gnome Mine + - James Mishler. Jodi Moran-Mishler + - James Mishlers Games + - James Panarella + - James Raggi + - James Spahn + - James V West + - James V. West + - James Ward + - James Wards + - James Wards Tainted Lands + - January 1941 issue + - Japan + - Jason & The Argonauts + - Jason Kuhl + - Jason Marker + - Jason Sholtis + - Jason Vey + - Jean Rabe + - Jean Wells + - Jeff Bowes + - Jeff Dee + - Jeff Grubb + - Jeff Grubbs + - Jeff Rients + - Jeff Talanian + - Jeffrey Talanian + - Jennell Jaquays + - Jeremy Reaban + - Jerry Cornelius + - Jerry Stratton + - Jim Bambra + - Jim Hensen's Labyrinth + - Jim Holloway + - Jim McGurk + - Jimm Johnson + - Jinn + - Jirel of Joiry + - Jobe Bittman + - Jodi Moran Misher + - Jodi Moran-Mishler + - Joe Coombs + - Joe Johnston + - Joe Pearce + - Joe's Diner + - John Aman + - John Berkey + - John Bolton + - John Boorman + - John Brunner + - John Campell + - John Carpenter + - John Carpenter's The Thing + - John Carter Of Mars + - John Carter Warlord of Mars + - John Cocking + - John D. Rateliff + - John Keefe + - John Large + - John Nephew + - John Ostrander + - John S. Berry III + - John Watt + - John Watts + - John Watts 'Clement sector' + - John Wood Campbell Jr. + - John Wyndham + - Johnny Melniboné + - Johnny Rook Games + - Jon Mattson + - Jonathan Becker + - Jonathan Nolan + - Jonathan Rowe + - Jordoba + - Jorge Luis Borges + - Joseph A. Mohr + - Joseph Bloch + - Joseph D. Salvador + - Joseph Moar. + - Joseph Mohr + - Joseph Salvador + - Josh Palmer + - Josh Peters + - Josh Sinsapaugh + - Jotunn + - Journey To The Center of The Earth + - Journey through Malebolge Book One + - Journey through Malebolge Book Two + - Jr + - Jr. + - Judge's Guild + - Judge's Guild Products + - Judge's Guild Products. + - Judge's Guild modules + - Judge's Guild's The Wilderlands of High Fantasy + - Judge's Guilds The Wilderlands of High Fantasy + - Judges Guild + - Judges Guild modules + - Juiblex + - Jules Verne + - Julien Blondel (Author) + - Jungle Tomb of the Mummy Bride + - Jungles of the K'naanothoa + - Justice Denied + - Justice Machine + - Justin Davis + - Kabuki Kaiser + - Kai Pütz a.k.a Gregorius21778 + - Kaiju + - Kaiju Disaster Response Vehicle + - Kalthalax + - Kamadan + - Kane + - Kane of Old Mars + - 'Karameikos: Kingdom of Adventure box set' + - Karen S. Boomgarden + - Karl Edward Wagner + - Karl Gustav + - Kasimir Urbanski + - Kayla Lee + - Keep Off The Borderlands + - Keep On The Borderlands + - Keith Kilburn + - Kellri + - Ken Kelly + - Ken Rolston + - Ken St. Andre + - Kenner Toy Company + - Kennith Hite + - Kent David Kelly + - Kerry Lloyd + - Kevin Crawford + - Kevin Culp + - Kevin Freeman + - Kevin Hassall + - Kevin Siembieda + - Kevin Watson + - Keys & Gates + - Kick Starter + - Kickstarrter + - Kickstarter + - Kickstarters + - Kickstater + - Kicstarter + - Kiel Chenier + - Kill Kittens + - Killraven + - Kim Hartsfield + - King + - King In The Mountain + - King Kong + - King Kong (2005 film) + - King Kull + - King Lu-gan + - King Retroclone System + - King Rpg Companion + - King Rpg system + - King Solomon's Mines + - King System + - King rpg + - King's rpg + - Kingdoms of the Undead + - Kirby and Morris. + - Kirt A.Dankmyer + - Knightly Orders + - Kolchak The Night Stalker + - Kong Skull Island + - Konstantin Tsiolkovsky + - Kopru + - Kort'thalis Publishing + - Kort'thalis Publishing. Old school Horror gaming + - Kortthalis Publishing + - Kort’thalis Publishing + - Kos + - Kosmos 68 + - Kosmos 68 blog + - Krull + - Kuiju + - Kuiper belt + - Kull of Atlantis + - Kult + - Kult Rpg + - Kuntz & Wards Gods + - K’nyanian Atomic Healing Chamber of The Black Gulf + - L.O.O.K.E.R. Gun Relic + - L1 'The Secret of Bone Hill' + - L1 'The Secret of Bone Hill'.Venger Satanis + - L1 Dwellers of the Forbidden City + - L1 The Secret Of Bone Hill + - L4 Devil's Spawn + - 'L5B: The Kroten Adventures' + - 'LG1: Terror Terror in the Forest of Gizzick' + - 'LG1: Terror in the Forest of Gizzick' + - 'LG3: Evil in the Borderlands' + - LLC + - LNA1 Thieves of Lankhmar. OSR Commentary + - LNR1 Wonders of Lankhmar + - Labyrinth Lord + - Labyrinth Lord Advanced book + - Labyrinth Lord Advanced + - Labyrinth Lord rpg + - Lady Adventurers + - Lady Satan 1974 + - Lair of the Freebooters + - Lairs & Encounters + - Lamenations of the Flame Princess rpg + - Lamentations Of The Flame Princesses + - Lamentations Of The Flame Princesses Rpg + - Lamentations of The Flame Princess + - Lamentations of the Flame Princes rpg + - Lamentations of the Flame Princess Reference Book + - Lamentations of the Flame Princess rpg + - Lamentations of the Napoleonic Princess Campaign Idea + - Lance-class Gunboat + - Land of the Lost + - Lands Beyond Kos + - Landscape Giants + - Lankhmar + - 'Lankhmar: City of Adventure (2nd edition)' + - Larry DiTillio + - Larry Elmore + - Larry Smith + - Last Gasp Grimoire + - Last Starfighter 1984 film + - Laura Hickman + - Laurel Nicholson + - Law Vs Chaos + - Lawrence Schick + - Lawrence Whitaker + - Legacy Of The Gods + - Legacy Of The Lost Grimiore (Arduin Grimoire volume 4 + - Legendary Lands of Arduin + - Legion of Gold + - Leigh Brackett + - Lemurian Death Angels + - Lenard "Len" Lakofka + - Lenard Lakofka + - Leonard Lakofka + - Leopoldo Rueda + - Lesser Gnome Games + - Lesser Gnome's Creature Catalog + - Levels 1-3 + - Levi Combs + - Leviathan Publishing + - Lewis Carol + - Liar + - Liberation of the Demon Slayer + - Liches + - Light House + - Linnoworms + - Lion & Dragon + - Lion & Dragon retroclone system + - Lion & Dragon rpg + - Lions & Dragon rpg + - Literary Influences + - Lizardmen + - Lizardmen Empire + - LoFP Carcosa + - LoFP's Carcosa + - Loan Sloane + - Lobo Blanco + - Locations + - Logan's Run + - Lomar + - Lone Animator + - Lone Play + - Loot + - Lord Dunsany + - Lord Dusany + - Lord Matteus + - Lord Randy Be Praised! + - Lord of Illusions + - Lords of Order + - Lost Carcosa + - Lost Caverns of Tsojconth (1976) + - Lost Finds + - Lost In Space + - Lost Orders + - Lost Pages + - Lost Worlds + - Lou Ferrigno + - Lovecraft + - Lovecraftian Monster Ecology + - Lovecraftian Monsters + - Lovecraftian Adventures + - Lovecraftian Campaign Settings + - Lovecraftian Commentary + - Lovecraftian Dream Monsters + - Lovecraftian Encounters + - Lovecraftian Factions + - Lovecraftian Monster Ecology + - Lovecraftian Monsters + - Lovecraftian Role Playing + - Lovecraftian Space Opera + - Lovecraftian Spells + - Lovecraftian Sword & Sorcery + - Lovecraftian Treasures + - Lovecraftian artifacts + - Lovecraftian relics + - Low Level Cosmic Ritual Spells + - Low Level Occult Adventure Locations + - LudiCreations + - Lulu + - Lulu. + - Lum The Mad + - Luna + - 'Luther Arkwright: Roleplaying Across the Parallels' + - Luz + - Luz The Evil + - Lycanoid Mutates + - Lynn Sellers + - M.A.R. Barker + - M.A.R.K. 13 + - M1 Into the Maelstrom Beatrice Heard + - 'M2 Marvel Super Heroes RPG: The Unofficial Canon Project Darkhold' + - M4 Five Coins For A Kingdom + - M6 The Unofficial Canon Project Marvel Superheroes Werewolf By Night Supplement + - M6 Werewolf by Night for the Marvel Super Heroes RPG + - MA 10 The Unofficial Canon Project Marvel Super Hereos Reed Richard's Guide To + The Universe + - MA11 The Unofficial Marvel Super Heroes Rpg Marvel Vampires By The Unofficial + Cannon Project + - 'MA12 the Marvel Super Heroes RPG: The Unofficial Canon Project Monsters Unleashed + Pdf' + - MA15 The Unofficial Canon Project Marvel Super Heroes Rpg Heroes of The North + - MA6 The Silver Age Sourcebook + - 'MHL3: Imperious Rex! Realms of the Deep' + - MHR6 Conan The Barbarian Box Set + - ML Straus + - MM#7 Dread Swamp of the Banshee + - MUTT Powered Armor + - MX1 Nightmares of Future Past + - Macbeth + - Machin Level + - Machinations of the Space Princess + - Mad God's Jest + - Mad Martian Games + - Mad Max + - Mad Monks of Kwantoom + - Mad Scribe Games + - Mad Scribe Games. OSR Commentary + - Magazines + - Magic + - Magic Item Generator + - Magic Items + - Magic Pig Media + - Magic Systems + - Magic of the Old West + - Magical Caskets of the Damned & Unclaimed + - Magical Ceremonies + - Magical Chalices + - Magnificent Miscellaneum Volume two + - Mail Call + - Major Events + - Major Figures + - Major Figures! + - Major Influences + - Major Items + - Major NPC's + - Major Plot + - Maker + - Malcon's Tome of Infinite Spells + - Mammon + - Man After Man + - Mandy + - Manga + - Manifest Destiny + - Manticores + - Manual of the Planes + - Manuel Sousa + - Manuel Souza + - Map + - Map pack + - Mapping + - Maps + - |- + Mar 1974 + Science Fiction Adventure Classics (1969 Ultimate) Pulp + - Marc Miller + - Marcelo P Augusto + - Marine Corps Handbook 2215 + - Mark A.Hunt + - Mark Acres + - Mark Adams + - Mark Allen + - Mark Charters + - Mark Ellis + - Mark Harris + - Mark Hess + - Mark Hunt + - Mark Janselewitz + - Mark Sandy + - Mark Taormino + - 'Mark Taormino''s Maximum Mayhem Dungeons #0 Village of the Borderlands Module' + - Mark of Amber + - Marmoreal Tomb Campaign Starter + - Marrow Gnome + - Mars + - Mars Actual Play + - Mars. + - Martial Arts + - Martians + - Martin F. King + - Martin Hirchak + - Marv + - Marvel + - Marvel Cinematic Universe + - Marvel Conan + - Marvel Movie + - Marvel Movies + - Marvel Star Wars Comics + - Marvel Super Hero Role Playing + - Marvel Super Heroes + - 'Marvel Super Heroes RPG: The Unofficial Canon Project' + - Marvel Super Heroes Rpg + - Marvel Super Heroes The Golden Age + - Marvel comics + - Master of the Desert Nomads + - Masters of the Universe Film + - Mathew Skail + - Matt Finch + - Matt Wagner + - Matt Williams + - Mattel + - Matthew Schmeer's Die Drop Tables + - Matthew Schmeer's Magic Ring Die Drop Table + - Mature Content + - 'Maximum Mayhem Dungeon #2: Secret Machines of the Star Spawn' + - Maximum Mayhem Dungeons + - 'Maximum Mayhem Dungeons #0: Village on the Borderlands' + - 'Maximum Mayhem Dungeons #10: Fantastic Quest of the Whimsical One' + - 'Maximum Mayhem Dungeons #3: Villains of the Undercity"' + - 'Maximum Mayhem Dungeons #4: Vault of the Dwarven King' + - 'Maximum Mayhem Dungeons #5 Palace of the Dragon’s Princess' + - 'Maximum Mayhem Dungeons #7: Dread Swamp of the Banshee' + - 'Maximum Mayhem Dungeons #8: Funhouse of the Puppet Jester' + - 'Maximum Mayhem Dungeons - Mini Adventure #2: Slime Pits of the Sewer Witch' + - 'Maximum Mayhem Dungeons Monsters of Mayhem #1' + - 'Maxinum Mayhem''s #0: Village on the Borderland' + - May 1983 + - Mayfair Demons II Box Set (Role Aids) + - Mayfair Games + - Mazinger Z + - Mead and Mayhem + - Mecha + - Mecha Caper + - Mechanized Men of Mars + - Medicine + - Medusa + - Mega City One + - Mega Corporations + - Mega Dungeon + - Mega Dungeons + - Mega structures + - 'Megadungeon issue #1' + - Megapede + - Megavolt Monsters episode + - Mekton Rpg + - Melissa Fisher + - Melsonian Arts Council + - Men & Monsters of Ethiopia + - Mentalists + - Mentzer Dungeons & Dragons + - Mephits + - Mercenaries + - Mercenary Armies + - Merle M. Rasmussen + - Metal Earth blog + - Metal Hurlant + - Metallic Tome + - Metamorphosis + - Metamorphosis Alpha + - Metamorphosis Alpha 1st edition + - Metamorphosis Alpha 1st edition 'The House on the Hill + - Metamorphosis Alpha Rpg + - Methods & Madness blog + - Mexico + - Mi Go + - MiGo + - Michael Allen Straus + - Michael Brown + - Michael Curtis + - Michael H. Stone + - Michael Johnson + - Michael L Staus + - Michael L Straus + - Michael L. Gray + - Michael Malone + - Michael Moorcock + - 'Michael Moorcock''s Elric Vol. 1: The Ruby Throne Hardcover' + - Michael Price + - Michael Stackpole + - Michael Tierney + - Michael Watkins + - Micheal Moorcock's Elric + - Midderlands Campaign Setting + - Midderzine + - Miguel Ribeiro + - Mike Carr + - Mike Evans + - Mike Nystul + - Mike Stewart + - Military Assets + - Military Science Fiction + - Milk Run + - Mind Flayers + - Mindok The Mind Menace + - Mini Adventure + - Mini Campaigns + - 'Mini Quest: Madness of the Mouther' + - Mini campaign settings + - Mini game + - Mini series + - Mini series. + - Miniatures + - Minor Infernal Treasures + - Minor Items + - Minor Magic Items + - Minor Relics + - Mishler Games + - Mission to Alcazzar (SF4) + - Misty Isles of the Eld + - Mnar + - Mobius + - Modern Combat rpg + - Modern OSR + - Modern War + - Modern War rpg + - 'Modern War: 1944 Fortress Europe' + - 'Modern War: Conversion System' + - Modron + - Module X1 Isle of Dread + - Module Xs2 Thunderdelve Mountain + - Modules + - Modvay & Cook Edition D&D + - Moldvay & Cook Edition D&D + - Moldvay Dungeons & Dragons + - Moloch + - Monastic Knights + - Mongo + - Mongoose Games + - Mongoose Publications + - Mongoose Traveller + - Monkey Blood Design + - MonkeyBlood Design + - Monster Ecologies + - Monster Ecology + - Monster Encounters + - Monster Manual + - Monster Manual II + - Monster Placement + - Monster books + - Monster of Law + - Monsters & Treasure + - Monsters & Treasures + - Monsters Ecology + - Monsters of Mayhem + - 'Monsters of Mayhem #1' + - Monsters of Myth & Legend + - 'Monstrous Miscellany #01' + - 'Monstrous Miscellany #02' + - Monte Cook + - Moon Toad Publishing + - Moon Toad Publishing' + - Moonglum + - Moontoad Publishing + - Mordiggian + - More 3G3 Rpg + - More G3G book + - More Guns 3G3 sourcebook + - Morgan Le Fey + - Morlocks + - Morrow Project Rpg 4th Edition + - Mournblade + - Mov + - Movie + - Movie Influences + - Movie Inspirations + - Movie Themes + - Movies + - Movies Influences + - Movies Influences + - Movies inspirations + - Multivers + - Mummies + - Murcanto's Lair + - Murderbots + - Murray Leinster + - Music + - Mutant Crawl Classics + - Mutant Epoch + - Mutant Epoch Rpg + - Mutant Future + - Mutant Future Retroclone Rpg + - Mutant Future Rpg + - Mutant Menaces + - Mutant Monster Menace + - Mutant Monsters + - Mutant Plant Monsters + - Mutants + - Mutation Solution II + - Mutations + - Mystara + - Mystery At Port Greely + - Mystic Ancestor Mammoth + - Mystic Bull Games + - Mythology + - Mythos Bundle + - Mythos Wars + - Mythos series + - N'rsae Worm Zomvies + - N1 Against the Cult of the Reptile God + - N2 ' The Forest Oracle' + - N2 The Forest Oracle + - N3 series of adventures + - N3 'Destiny of Kings' + - N3 Destiny of Kings + - N3 series of adventures + - 'N8: ''Monsters in the Mist''' + - NEON LORDS OF THE TOXIC WASTELAND rpg + - NPC Adventuresses + - NPC Alien Factions + - NPC Classes + - NPC Classics + - NPC Occult Factions + - NPC builds + - NPC's + - NPCs + - NTRPG CON 2017 Module KK2 The Mystic Cup of Gygax + - NUELOW games + - Named Relics + - Named Weapons + - Names + - Narcosa + - Narcosa rpg supplement + - Nash Press + - Nazi Mega Dungeons of Antarctica + - Near Clones + - Necromancer Class + - Necromancer Class – Masters of Death and Undeath + - Necromancer Games + - Necromancy + - Necrotic Gnome + - Necrotic Gnome Productions + - Nellysyr manor + - Neo Trerrax Strikes Back! + - Neo England + - Neo Ibbians + - Neo Traxx + - Neo-Terraxx + - NeoPlastic + - Neoplastic Press + - Neoplastic Press's Night of the Slashers + - Nephilim Mummies + - Neutra-Laser + - New Big Dragon Games Unlimited + - New Drow City + - New England Bouys + - New Episode + - New Free Starship Maps From 'The Girls Gone Rogue' Kickstarter By Venger Satanis + - New Infinities + - New Liberty + - New Liberty campaign setting + - New Marvel Phile + - New Monsters + - New Players + - New School Gaming + - New Spells + - New Worl + - 'New World: 2D6 Adventure in a Cyberpunk America' + - New York + - New York City Monsters + - New material + - Newt Newport + - Nexus The Infinite City + - Nicholas Cage + - Nick LS Whelan + - Nicolas Dessaux + - Nicolas Kaczmarczyk + - Nigel D.Finley + - 'Night Land and Other Perilous Romances: The Collected Fiction of William Hope + Hodgson' + - Night Owl Workshop + - Night Owl Workshp + - Night Roads + - 'Night Shift: Veterans of the Supernatural Wars Quick Start Kit' + - Night Stalkers + - Nighterror + - Nightowl Workshop + - Nightscreams + - Nightshift Veterans Supernatural Wars rpg + - Nightshift Veterans of the Supernatural Wars rpg + - Nightstalker + - Ningen + - Ninja Beat Down + - Ninja City! + - No Comments Needed + - No Escape From New York + - No Salvation For Witches + - 'No comments:' + - Noah Stevens + - Noble Knight Games + - Nodens + - Noir + - Norse Gods + - North West Smith + - North Wind Adventures + - Northern Edge + - Novanexus + - Novellas + - Novels + - O1 The Gem and the Staff (Basic) + - 'O2: "Blade of Vengeance" (1985)' + - O5R + - OB3 The Legend of the White Snake + - OD&D + - OD&D Campaigns + - 'OD&D Supplement III: Eldritch Wizardry' + - OD+D + - 'OP: Tales of the Outer Planes' + - ORGE Rpg System + - OSR + - OSR Campaign Commentary + - OSR Review & Commentary + - OSR Reviews + - OSR 'Pay What You Want' Rpgs + - OSR Adventure Campaign Commentary + - OSR Adventure Commentary + - OSR Adventure Review + - OSR Adventure Reviews + - OSR Adventure Settings + - OSR Adventures + - OSR Applications + - OSR Blogs + - OSR Campaign + - OSR Campaign Commentarty + - OSR Campaign Commentary + - OSR Campaign Construction + - OSR Campaign Design + - OSR Campaign Hostile Update + - OSR Campaign One Shot Commentary + - OSR Campaign Set- Up + - OSR Campaign Setting Review + - OSR Campaign Update + - OSR Campaigns + - OSR Comentary + - OSR Commenary + - OSR Commentar + - OSR Commentaries + - OSR Commentarty + - OSR Commentary + - OSR Commentary & Reviews + - OSR Commentary & Review + - OSR Commentary - Weird Tales Judges Guild Wilderlands of High Fantasy- B1 In Search + of the Unknown By Mike Carr + - 'OSR Commentary No comments:' + - OSR Commentary and Reviews + - OSR Commentary. + - OSR Commentary. Lamentations of the Flame Princess + - OSR Encounters + - OSR Factions + - OSR Hacks + - OSR Hauls + - OSR Horror Gaming + - OSR Horror rpg + - OSR Investigative Horror + - OSR Lost Ruins + - OSR Magazines + - OSR Martian Campaign + - OSR Material + - OSR Mega Campaign Commentary + - OSR Mini Campaign + - OSR Monster Books + - OSR Occult Rpging + - OSR Opinion + - OSR PC Classes + - OSR Post Apocalyptic Gaming + - OSR Random Tables + - OSR Reference + - OSR Resources + - OSR Retroclone Campaign Setting + - OSR Review & Application + - OSR Review & Commentaries + - OSR Review & Commentary + - OSR Review & Commentary On + - OSR Review & Commentary On All Bets Are Off (Wretched Version) + - OSR Review & Commentarys + - OSR Reviews + - OSR Reviews & Commentary + - OSR Round Up + - OSR Rpg's + - OSR Science Fantasy + - OSR Science Fiction rpg + - OSR Setting Commentary + - OSR Setting Reviews + - OSR Settings + - OSR Solo Play + - OSR Space Monsters + - OSR Space Opera Inspiration + - OSR Star Trek campaign Settings + - OSR Sword & Sorcery Commentary + - OSR Sword & Sorcery Adventure + - OSR Sword & Sorcery Adventures + - OSR Thoughts + - OSR Underground + - OSR Urban Fantasy + - OSR Wretch Rpg + - OSR Write Ups + - OSR Zines + - OSR campaign Horror Hook + - OSR campaign commentary & workshop + - OSR games + - OSR gaming + - OSR monster book review + - OSR monsters + - OSR retroclones + - OSR setting + - OSR style games + - OSRIC + - OSRIC Supplement + - OSRIC 1st + - OSRIC 1st Ed + - OSRIC 1st Ed AD&D + - OSRIC 2nd edition + - OSRIC PC material + - OSRIC Player's Guide + - OSRIC Rpg + - OSRIC Supplement + - OSRIC material + - OSRIC retroclone + - OSRIC/1E + - Objects of occult power + - Obscene Serpent Religion + - Occult Relics + - Occult Wars + - Odin + - Ogres + - Ogres of the Olden Lands + - Olathoe + - Old School Science Fiction gaming + - Old School Sword & Sorcery Adventures + - Old Campaigns + - Old Earth' + - Old Fantasy Gaming + - Old Hrolmar + - Old Mars + - Old Post Apocalyptic Gaming + - Old School Post Apocalyptic Gaming + - Old School Pulp Adventure Gaming + - Old School 2d6 Science Fiction + - Old School 2d6 Science Fiction Campaigns + - Old School 2d6 Science Fiction Games + - Old School 2d6 Science Fiction Rpg Campaigns + - Old School 2d6 Science Fiction rpg's + - Old School 2d6 rpg's + - Old School Advanced Dungeons & Dragons + - Old School Adventure Commentary + - Old School Adventures + - Old School B/X Adventure systems + - Old School Campaign + - Old School Campaign Settings + - Old School Campaigns + - Old School Combat + - Old School Cyberpunk Adventures + - Old School Essentials + - Old School Fantasy Gaming + - Old School Gaming + - Old School Horror Role Playing + - Old School Influence + - Old School Lost World Adventures + - Old School Lovecraftian Adventures + - Old School Old School Horror Gaming + - Old School PDF + - Old School PDFs + - Old School Post Apocalyptic Gaming + - Old School Post Apocalyptic Rpgs + - Old School Post Post Apocalyptic Campaigns + - Old School Pulp Adventure Gaming + - Old School Pulp Role Playing + - Old School Pulp RolePlaying + - Old School Relics + - Old School Retro-clone rpg systems + - Old School Retro-clone systems + - Old School Revival +3 Adventures + - Old School Role Playing + - Old School Science Fantasy Gaming + - Old School Science Fiction + - Old School Science Fiction Comic Books + - Old School Science Fiction Gaming + - Old School Space Based Campaigns + - Old School Space Fantasy Adventures + - Old School Space Fantasy Campaigns + - Old School Space Opera + - Old School Space Opera Campaigns + - Old School Super Hero Gaming + - Old School Superhero rpg + - Old School Sword & Planet RPG Adventures + - Old School Sword & Sorcery + - Old School Sword & Sorcery Adventures + - Old School Sword & Sorcery Campaigns + - Old School Sword & Sorcery Gaming + - Old School Sword and Sorcery Adventures + - Old School Swords & Sorcery + - Old School Traveller + - Old School Traveller rpg + - Old School Urban/Horror Campaigning + - Old Science Fantasy Gaming + - Old Shanghai Source book + - Old Solar System + - Old Venus + - Old West Rpgs + - Old West setting + - Old school + - Old school Gaming Fodder + - Old school Horror Comics + - Old school Horror gaming + - Olivar Tripas + - Omar Golan-Joel + - Omega 99 + - Omer Golan-Joel + - Omer Joel + - 'On Axioms Compendium Volume 2: 9 - 16' + - 'On Vice: Sandcove Under Fire' + - One Day Digs + - 'One Day Digs 7: The Ascent' + - One Page Dungeon Contest + - One Shot + - One Shot Adventures + - One Shot Encounters + - One Shot Games + - One Shot RPG + - One Thousand Items of Salvage For the Frontiers of Space + - Open Game Content + - Open Source Games + - Open Space Graphic Novels. + - Opera + - Operation Unfathomable + - Operation White Box + - Opinions + - Opus Magi rpg + - 'Opus Magi: Anima Machinae' + - 'Opus Magi: Psions' + - Orbital 2100 rpg + - Orbital Decay Revised + - Orbital Decay Rpg Supplement + - Orbital Platforms + - Orcs + - Orcus + - Ordo Arcanorum + - Oriental Stories + - Original Dungeon & Dragons + - Original Dungeons + - Original Dungeons & Dragons + - Original Dungeons & Dragons Monsters & Treasure Volume Three + - Original Dungeons & Dragons Supplement I Greyhawk + - Original Dungeons + Dragons + - Original Dungeons + Dragons Setting + - Original Dungeons + Dragons + - Original Dungeons + Dragons Setting + - Original Dungeons And Dragons + - Original Dungeons Dragons + - Original Dungeons and dragons - Book 3 - The underworld & Wilderness Adventures + by Gary Gygax & Dave Arneson. + - Original Star Trek + - Original TV series + - Original Traveller + - Original Traveller rpg + - Original Travller rpg + - Orion III Spaceplane + - Oscar Wilde + - Oswald + - Other Blogs + - Other Cepheus Engine Rpg Campaigns + - Other Dimensional Keys and Gates + - Other Dust + - Other Game Systems + - Other OSR Campaign Settings + - Other OSR Horror Rpg's + - Other OSR Retroclone Rpg Systems + - Other Old School 2d6 Science Fiction Rpgs + - Other Wild West OSR Games + - Other World Television Television show + - Other Wretchedverse Rpg's + - Otherside Blog + - Otherside of the Blog + - Otherworldly Death Druglord + - Otto Von Bismarck + - Out of Blackest Earth + - 'Outer Space Raiders Volume 2: Aliens' + - 'Outer Space Raiders: The Norni' + - 'Outer Space Raiders: Zeloxians' + - Outland Arts + - Outlanders + - 'Outlaw: Crime in Clement Sector' + - Outpost Mars + - Over The Edge + - Overview + - Overviews + - Ovions + - P Craig Russell + - PA1 Vault of the Faceless Giants + - PC Character Creation + - PC Character Creations + - PC Classes + - PC Options + - PC Races + - PC Races The Elves + - PC careers + - PC funnels + - PC's + - PC14 - The OSR Shadowdancer + - PDF's + - PDFs + - Pacesetter's Temple of Mercy + - Pacific Rim + - Pagan Publishing + - Palace of The Silver Princess + - Palladium Games + - Pallid Stallions + - 'Pamphlet 1: Fields of Forsaken' + - Pan Tang + - Paranoia rpg + - Particle Beam Weapons + - Passing of Friends + - Pat Mills + - Pathfinder + - Patricio González + - Patrick Stuart + - Patrick Wetmore + - 'Patrick Wetmore''s ASE1: Anomalous Subsurface Environment' + - Patrons + - Paul Anderson + - Paul Drye + - Paul Eilliot + - Paul Elliot + - Paul Elliott + - Paul F de Valera (Author) + - Paul Kirk + - Paul Mosher + - Paul Nevins + - Pay + - Pay What You Want + - Pay What You want adventures + - Peddlers + - Pegsus magazine + - Pellucidar + - Penney Towers + - Perils of the Young Kingdoms + - Pete Nash + - Peter Adkison + - Peter C. Spahn + - Peter Jackson + - Peter Mennigen + - Peter Plastic + - Peter S. Williams + - Peter S. Williams Sword & Sorcery + - Peter's Death + - Petersen Games + - Petty Barbarian Warlords + - Petty Gods + - 'Petty Gods: Revised & Expanded Edition' + - Peusdo Thugg Assassin Cults + - Phaiano-phatu + - Phantasm Film Homage + - Phantasm II + - Phil Gallagher + - Phil Gallagher. + - Philip Jose Farmer + - Philip K Dick + - Philip Meyers + - Philip Reed + - Philippe Druillet + - Picts + - Pike & Shot + - Pioneer Class Space Station + - Piracy and Privateering + - Pirates + - Pitford Gateway To The Ruins + - Places + - Plaid Stallions + - Plane of Water + - Planes + - Planet Algol blog + - Planet Comics + - Planet Kaiju + - Planet Psychon + - Planet X Games + - Planet of The Apes + - Planets + - Play Report + - Play Session Report + - Play Session Reports + - Play Sessions + - Player Character Commentary + - Player Characters + - Player's Guide's + - Pluto + - Pod Cast At Ground Zero + - Poetry + - Point Crawls + - Polaris + - Police Dispatches + - Politics + - Port of Entry + - Port of Entry Starports In The Clement Sector + - Portals of Tosh + - Portals of Twilight + - Poseidonis + - Post Apocalypse + - Post Apocalypse Mars + - Post Apocalypse Mars Actual Play + - Post Apocalypse Mercury + - Post Apocalypse Rpgs + - Post Apocalyptic Encounter + - Post Apocalyptic Florida + - Post Apocalyptic Gaming + - Post Apocalyptic Mars + - Post Apocalyptic Rpgs + - Post Apocalytic Gaming + - Post Apocalytic Mars + - Post Apocalytic Rpgs + - Post Mortem Studios + - Post-Apocalypse Race + - Postcards From Aviladad + - Postcards from Avalidad rpg + - Postmortem Studios + - Poul Anderson + - Power Armor + - Powered Armor + - Prayer Breakfast White Star Rpg Session Report 1 + - Precis Intermedia + - Prehistoric Mutant Menaces + - Prehistoric Monsters + - Prehistoric Mutant Menaces + - Press The Flesh + - Previews + - Prince of Darkness + - Privait Con 2017 + - Problem Players + - Product Commentary + - Professor MAR Barker + - Professor Moriarty + - Prohibition + - Prometheus + - Props + - Proto dimension magazine. + - Protodimension magazine + - Protodimension magazine. + - Protodimensions supplement + - Pseudo Historical settings + - Psyche Lasher + - Psychedelic Fantasies + - Psychic powers + - Psychotronic Monster Movie Monday + - Psychotrophic Influence + - Public Domain + - Public Domain Books + - Public Domain Super Heroes + - Pulp Crazy + - Pulp Cthlhu rpg + - Pulp Inspiration + - Pulp era Gaming + - Pulps + - Pär Olofsson + - Q1 Queen of the Spiders Super Module + - Qelong + - Quagmire! + - Quantum Dark + - Quantum Dark Rpg System + - 'Quantum Dark: Alien Companion' + - Quantum Engine + - Quantum Flux:Unique Superscience Artifacts + - Quantum Starfarer rpg + - Quasar Dragon Games + - Quasit + - Queen of the Panther World + - Quetzalcoatl + - Quick Reviews + - 'Quick Ship File: Gwad Urm Class System Defence Destroyer' + - RA1 'Feast of Goblyns' + - RC Pinnell + - 'REF3: The Book of Lairs' + - REF5 Lords of Darkness + - RL1 - The Craft Dungeon of Reynaldo Lazendry + - RPG Commentary + - 'RPGPundit Presents #9: The Book of the Art of Hours.' + - 'RPGPundit Presents: The Old School Companion 1' + - 'RPGPundit Presents: The Old School Companion 1 From Spectre Press' + - 'RPGPundit Presents: The Old School Companion 1 From Spectre Press.' + - 'RQ1: "Night of the Walking Dead"' + - RW Chambers + - Racial Character Classes + - Radiation Hazards + - Radio Police Automaton + - Rafael Chandler + - Ragnarok + - Raiders + - Raiders Of The Lost Ark + - Raiders of the Lost Artifact + - Raiders of the Lost Artifacts Rpg + - Raiders! of the Lost Artifacts Rpg System + - Ralph Bakshi + - Rambo Action Figures + - Ramon F Jones + - Random Adventure Locations Table + - Random Affects + - Random Alien Devices + - Random Charts + - Random Debris + - Random Demonic & Devil Encounters + - Random Encounter Charts + - Random Encounters + - Random Finds + - Random Item Tables + - Random Monster Generator + - Random Mutations + - Random Order Creations + - Random Relics + - Random Sleazoid Professions Table + - Random Super Science Items + - Random Sword & Sorcery Encounters Table + - Random Table. + - Random Treasure + - Random Treasures + - Random table.retro clone. terminal space + - Random tables + - Randy Nichols + - Rant + - Rappan Athuk + - Rapture + - Rapture Of The Deep + - Raven God Games + - Raven Wulfgar + - Ravenloft + - Ravenloft Campaign Setting + - Ravenscrag + - Ray Bradbury + - Ray Harryhausen + - Reading + - Ready Reference Sheets + - Real Life + - Real Life Inspiration + - Real World History + - Really Big Island Of Adventure! + - Realm of The Technomancer + - Realms of Chaos + - Realms of Crawling Chaos + - Realms of Horror + - Realms of Unbound Fantasy + - Reaper Miniatures + - Red Arrow + - Red Moon Medicine Show + - Red Room + - Red Shadows + - Red Tam's Bones By John Turcotte + - Red Tide + - Red and Pleasant Land + - Redemption + - Reference + - Relic Living Metallic Tissue Armor + - Relics + - Relics & Treasures of Beelzebul + - Relics of the Akaschics + - Relics of the Lost + - Religion + - Religions + - Remanent Guardians + - Rended Press Blog + - Renegade Heroes + - Reporter X + - Requests + - Resort of the Dead Miguel Ribeiro + - Resources + - Ressources + - Rest In Peace + - Reticulans + - Retoclones + - Retrclone + - Retrclone Systems + - Retreoclone systems + - Retro Clone Adventures + - Retro Clone Rpgd + - Retro Future + - Retro Future Campaigns + - Retro Pulp Venus + - Retro clone + - Retro clone Magic Systems + - Retro clone Monster Systems + - Retro clone Rpg Systems + - Retro clone Systems + - Retro clones + - Retro gaming + - Retro-clone rpg systems + - Retro-clone systems + - Retrocclones + - Retroclo + - Retroclone + - Retroclone Adventure Resources + - Retroclone Adventure's Resource + - Retroclone Adventures + - Retroclone Adventures Resource + - Retroclone Adventures Resources + - Retroclone Game Systems + - Retroclone Influence + - Retroclone Sword & Sorcery Encounters + - Retroclone System + - Retroclone rpg + - Retroclone rpg systems + - Retroclone systems + - Retroclones + - Retroclones System + - Retroclones Terminal Space + - Retroclones rpg + - Retroclones systems + - Retroclones. + - Retroclonesl + - Retroclonesm + - Retrolclone Systems + - Retrolclones + - Retrroclones + - Return to the Keep on the Borderlands + - Rev. Joey Royale + - Rev.Ryan J Thompson + - Revelry In Torth + - Revenant PC's + - Revenge of the Ant God + - Review + - Review & Commentary + - Review & Commentary of "Crime City Blues Part II Knuckles of Steel" + - Review & Commentary On Manavores -- A Shadowdark Supplement + - Review & OSR Commentary + - Review and Commentary + - Reviews + - Reviews & Commentary + - Reviews Old School Gaming + - Reviews. + - Reviiew & Commentary + - Revised and Expanded' + - Rewind + - Rich Watts + - Richard Hazelwood + - Richard Hazlewood + - Richard J. LeBlanc + - Richard Le Blanc JR + - Richard Lee Byers + - Richard Matheson + - Richard Meyer + - Richard T. Meyer + - Richard Watts + - Rick Loomis + - Rick Random + - Rick Rose + - Rider rpg + - Rien Poortvliet + - Rifts + - 'Rifts Dimension Book One: Wormwood' + - Rifts Manhunter rpg + - Rifts rpg + - Rings + - Rise of the Red God + - Rite of the Faceless Queeen + - Ritual Spells + - Riven Gulch + - Rob Couture + - Robert Doyel + - Robert E. Howard + - Robert E.Howard + - Robert Garitta + - Robert Howard + - Robert J. Blake. + - Robert J.Kuntz + - Robert Kuntz + - Robert Kuntz & James Ward + - Robert L.S. Weaver + - Robert McCall + - Robert Parker + - Robertson Games + - Robin Recht (Illustrator) + - Robo Joxs + - Roboskull Mark II + - Robot + - Robotech + - Robots + - Rock Critters + - Rodney Mathews + - Roger Corman + - Roger E. Moore + - Roger S.G. Sorolla + - Rogue + - Rogue Mistress + - Rogue Mistress Campaign + - Rogue Moon + - Rogue Space + - Rogue Trader adventure + - Rogues + - Rogues Gallery + - Role Aids + - Role Playing + - Role Playing Games + - Roles + - Rom The Space Knight + - Roman Occupied Britian + - Ron Turner + - Rose War + - Roughnecks + - Rpg Campaign Elevator Pitch + - Rpg Pundit + - Rpg Pundit Presents + - Rpg Pundit's The Invisible College rpg + - Rpgpundit + - Rreviews + - Rudy Craft + - Ruins + - Ruins And Ronin + - Ruins of Arduin + - Ruins of Arduin retroclone + - Ruins of Pitzburke + - Rules + - Rules Cyclopedia + - Rumble In the Jungle + - Runelore + - Runemaster Class + - Runequest Cities + - Runequest third Edition + - Running Beagle Games + - Rusty Gold + - Ryan David + - Ryan Denison + - S.C.A.R.B. + - S.N.A.K.E.'s + - S1 Heart of Glass + - S1 Tomb of Horrors + - S1-4 Realms of Horror + - 'S1: Tomb of Horrors' + - 'S2 ''Castles and Crusades: Dwarven Glory''' + - S2 White Plume Mountain + - 'S2: White Plume Mountain' + - S3 'Expediation To The Barrier Peaks' + - S3 'Expediation to The Barrier Peaks' by Gary Gygax + - S3 'The Expedition to the Barrier Peaks' + - S3 Expedition to the Barrier Peaks + - 'S3: Expedition to the Barrier Peaks' + - S4 The Lost Caverns of Tsojcanth + - 'S4: The Lost Caverns of Tsojcanth' + - S7 Stains Upon The Green + - S7 Stains Upon The Green. + - 'S9: Ransom of the Riverboat Queen' + - SAMAS armor + - STARS WITHOUT NUMBER - TRADE GOODS GENERATOR 300 + - SURVIVE THIS!! Vigilante City - Core Rules Rp + - SURVIVE THIS!! Vigilante City - Core Rules Rpg + - SURVIVE THIS!! Vigilante City - Villain's Guide From Bloat Games + - SURVIVE THIS!! Vigilante City - Villain’s Guide + - SURVIVE THIS!! What Shadows Hide - Cthulhu Sourcebook + - Sabre River (CM3) + - Sacks + - Sacrosanct Games + - Saga Mini Game + - Saga of Crystar 1983 Comic Book + - Saga of the Giants + - Saga of the Victims + - Salem's Lot + - Salt Flats + - Salvage + - Salvage Rite + - Salvatoris + - Samwise Seven + - Sand Rats + - Sandbox + - Sandy Petersen + - Santa Claus Conquers The Martians + - Santa is Dead + - Satan + - Satanis + - Saturday Mail Call + - Saturday Matinee Inspirations + - Saturday Morning + - Saturday Morning Cartoons + - Saturn 3 + - Saturnalia + - Save Yourself From Hell + - Saving Cha'alt + - Scale Ships + - Scaling Ships + - Scarlet Heroes Rpg Systems + - Schweig's Themed Dungeon Generator + - Sci fi books + - Sci fi books + - Science Fantasy Gaming + - 'Science Fiction Adventure Classics #01 (1967 Summer)' + - Science Fiction Rpgs + - Science Fiction rpg Gaming + - Science Fiction rpg Gaming. + - Science Fiction shows + - Scorched Rpg + - Scott Fulton + - Scott Hover + - Scott Myers + - Scourage of the Slave Lords + - Scrap Princess + - Scream magazine Issue 6 + - Screamers + - 'Season 1 Episode # 3 18 October 1980' + - Season One + - Season Two + - Seattle Hill Games + - Second Edition + - Second Edition Advanced Dungeons & Dragons + - Secret Organizations + - Secrets Fanzine + - Secrets of the Archeon + - Secrets of the Immortals + - Secrets of the Shadow End blog + - Secrets of the Undercity + - Secrets of the Witchkind + - Sentinels + - September 11 + - Serpent Men + - Serpentmen + - Session Account + - Session Report + - |- + Session Report + No comments: + - Session Report One + - Session Report Update + - Session Reports + - Session report. + - Set + - Setting + - Setting & Campaign Book + - Severed Fate + - Shadow Dark rpg + - Shadow Deep + - Shadowdark + - Shadowdark RPG + - Shadowfall campaign setting + - Shadowfell + - Shadowlands (Arduin Grimoire volume 7) + - Shadows Over Olisipo + - Shakespeare + - Shambleau + - Shane Ward + - Shawn Fisher + - Sheet Ghouls + - Sheet Phantoms + - Shemarrian Nation Adventure Rifts Sourcebook + - Shield Maidens of Sea Rune (JG1010) + - Shield Maidens of Sea Rune + - Shield of Faith Studios + - Shieldmaidens of Sea Rune + - Shiny Object Syndrome + - 'Ship Book: Chiron Class Hunter' + - Ship Book:A2L Far Trader + - Ship Book:Panga Class Merchant + - Ship Book:Type S Scout/Courier + - 'Ship Files: RAX Type Protected Merchant' + - 'Ships of Clement Sector 10-12: Workhorses' + - 'Ships of Clement Sector 15: Milligan-class Hospital Ship' + - 'Ships of Clement Sector 16: Rucker-class Merchant' + - Ships of the Clement Sector rpg 10-12 + - ShireCon + - Shockwave Rider + - Shogun Warriors + - Short + - Short Stories + - Short films + - 'Shortcuts to Adventure #01: Shrine of the Slime God' + - 'Shortcuts to Adventure #3: Monstrous Reflections' + - Shot & the Weird + - Shoulder of Orion + - Shoulder of Orion campaign + - Shub niggurath + - Shub-Niggurath + - Sick Stick Relic + - Side Abilites + - Siege Engine + - Silent Legions Rpg + - Silvia Clemente + - Silvia Moreno Garcia + - Simian Apes + - Simon Washbourne + - Simple Modernity + - Sin City 2005 + - Sinbad & The Eye of The Tiger + - Sine Nomine Publishing + - Sinful Whispers + - Sir Arthur Conan Doyle + - Sites + - 'Sixteen Stars: Creating Places of Perilous Adventure' + - Sixties Marvel Comic Books + - Skalds + - Skeeter Green + - Skimisher Games + - Skirmisher Games + - Skirmisher Publishing + - Skull Crawlers + - Skull Faced Formorians + - Skull Mountain + - Skull The Slayer + - 'Skull and Crossbones: Piracy in Clement Sector' + - Skulls of Thasaidon + - Sky Ships + - Skywald Publishing + - Skywald PublishingCampaign Settings + - Slaughter Grid + - 'Slave Girl Comics Issue #1' + - 'Slave Girl Comics Issue #2' + - Slave Raiders From Mercury + - Slave Vats of the Yuan-ti + - Slaves of Tsathoggua + - Slavic Mythology + - Sleeping Giant + - Sleeping Giant Adventure + - Slippery When Wet + - Small But Vicious Dog + - Small Niche Games + - Smart Disk Relic + - Smithian Monsters + - Smiths + - Smoldering Dung Games + - Snotgurgle + - Social Media + - Social Sci-Fi + - Sol Bianca + - Solar Sagas + - Sole Survivor + - Solomon Kane + - Something Stinks in Stilton + - Something Wretched This Way Comes + - Something Wretched This Way Comes 1.2 + - Sonic Energizer + - Sonic Shot Gun Relic + - Sonic Tube of Destruction Weapon + - Sons of Hercules + - Sorcerers of Pan Tang + - Souless Children + - Sound Tracks + - Source book + - Source books + - Spacbased Games + - Space + - Space 1999 + - Space 1999 comic book + - Space 1999 comic book Retroclones Rpg systems + - Space Adventures + - Space Adventures X + - Space Age Sorcery + - Space Base Games + - Space Based Games + - Space Based Games Retro clones + - Space Based Games. Retro clones + - Space Brothels + - Space Craft + - Space Dungeons + - Space Family Robinson + - Space Gamer + - Space Games + - Space Games.. + - Space Games..Monsters + - Space Gods + - Space Hunter Adventures In The Forbidden Zone + - Space Opera + - Space Pirates + - Space Precinct + - Space Ships + - Space Shuttles + - Space Travel + - Space Truckers + - Space Vikings + - Space Western + - Space Westerns + - Space wreck + - Space wrecks + - Space wrecksThe Derro + - Spacebased Games + - Spaced based Games + - Spears of the Dawn + - Species V + - Spectral Samurai + - Spectre Press + - Spell Casters + - Spellbook games + - Spelljammer + - Spells + - Spies + - Spies of Light Elf + - Spirits of Heaven & Hell + - Spy Novels + - St.Stephen + - Stalker Rpg + - Stand Alone Games + - Stand on Zanzibar + - Stange Stars + - Stanley G. Weinbaum + - Star & Void + - Star Frontiers + - Star Grunt II + - Star Knights + - Star Log Magazine + - Star Seige + - Star Seige Rpg + - Star Ship From Hell + - Star Ships + - Star Ships & Spacemen second edition. + - Star Ships + Space Men + - Star Ships + Space Men Second Edition + - Star Spiders + - Star Trek + - Star Trek Continues + - 'Star Trek: Alpha Quadrant' + - Star Wars + - Star Wars Return of The Jedi + - Star Wars Rpg + - Star Wars Tie Fighter + - Star Wars movie + - Star Without Numbers Revised + - Stardust the Super Wizard (2016) + - Stargate + - Staritstan 8 + - Stark Space + - Starling Stories + - Starlog + - Starlog Magazine + - Starlog Photo Guidebook:Weapons + - Stars With Number Revised + - Stars With Number Revised rpg + - Stars Without Number + - Stars Without Number Revised Rpg + - Stars Without Number Rpg + - 'Stars Without Number: Revised Edition' + - Stars Without Numbers Revised + - Stars Without Numbers Rpg + - Starseige + - Starship + - Starship Construction + - Starship Warden rpg + - Starships + - Starships & Spacemen Second Edition + - Starsiege rpg + - 'Starvation Cheap: Planetary Warfare for Stars Without Number' + - Stat Spider + - Statless Adventures + - Status Update + - Steading of the Nergalites Adventure + - Steal This Game + - Steampunk + - Stele of the Silver Thane + - Stellagama Publishing + - Stephan Michael Sechi + - Stephen A McCavour + - Stephen Amber (Etienne d'Amberville) + - Stephen Bourne + - Stephen Chenault + - Stephen Chenault with Todd Gray + - Stephen King + - Stephen T. Bourne + - Steve Crampton + - Steve Jolly + - Steve Marsh + - Steve Miller + - Steve Miller Secrets of the Immortals + - Steve Perrin + - Steve Robertson + - Steve Sullivan + - Steve Winter + - Steven A. Cook’s Chaos Hordes + - Steven Cordovano + - Stewart Wieck + - Stone Age Gang + - Stone Age Occult + - Stone Age Sorcery + - Stories + - Storm Bringer + - Storm Bringer Rpg + - Stormbringer + - Stormbringer Companion One + - Stormbringer Rpg + - Stormbringer Rpg 5th edition + - Stormbringer fifth edition + - Stormbringer forth edition + - Stormbringer fourth edition + - Stormbringer rpg 4th Edition + - Stormbringer rpg adventures + - Stormbringer rpg commentary + - Stormbringer rpg fifth edition + - Stormbringer! Guide To Old Hrolmar + - Stormlord Publishing + - Stouthearted Games + - Strange Aeons + - Strange Stars + - Strange Stars Session Report + - 'Strange Worlds Issue #3' + - Stranger Things + - Stripe NPC + - Stromhaven + - Stuart Marshall + - Studio Denmark + - Studio St. Germain + - Sub Umbra + - 'Subsector Sourcebook 2: Franklin' + - 'Subsector Sourcebook 2: Franklin third edition' + - 'Subsector Sourcebook: Adroanzi' + - 'Subsector Sourcebook: Artemis' + - 'Subsector Sourcebook: Cascadia' + - 'Subsector Sourcebook: Durga' + - 'Subsector Sourcebook: Hub' + - Subzero Manta + - Succubi + - Sudden Dawn Adventure + - Suicide + - Summertime campaign update + - Summertime campaign update. + - Summon Gremlins of Nightmare + - Summoning Spells + - Summoning tools + - Suns of Gold + - Super Heroes + - Super Savage Systems + - Super Science Faction + - Super Science Groups + - Super Science Item + - Super Science Items + - Super Science Powers + - Super Science Stories + - Superhero Rpgs + - Supermax + - Superpowered! Rpg + - Supheroes Unlimited + - Supplements + - Survival Horror + - Svartkonst + - Sword & Car + - Sword & Caravan + - Sword & Caravan Rpg + - Sword & Planet + - Sword & Saucer OSR rpg play + - Sword & Sorcery Campaign Update + - Sword & Sorcery Campaigns + - Sword & Sorcery Influence + - Sword & Sorcery Monsters + - Sword & Sorcery campaign + - Sword & Sorcery tales + - Sword and Planet + - Sword and Sorcery + - Sword and Sorcery Movies + - Sword and Sorcery Rpgs + - Sword of Cepheus + - Sword of Cepheus rpg + - Sword of Chepheus rpg + - Sword of Kos campaign Setting + - Sword+1 blog + - Swords + - Swords & Wizardry + - Swords & Sorcery + - Swords & Sorcery Adventure Setting + - Swords & Sorcery artwork Influences + - Swords & Super-Science of Xuhlan + - Swords & Wizardry + - Swords & Wizardry Light Rpg + - Swords & Wizardry Light and Swords + - Swords & Wizardry Retroclones + - Swords & Wizardry Retroclones System + - Swords & Wizardry rpg + - Swords + Sorcery Fiction + - Swords + Sorcery Gaming + - Swords + Sorcery artwork + - Swords + Wizardry + - Swords and Sorcery + - Swords and Spells + - Swords and Stitchery + - Swords and Wizardry + - Swords of Cthulhu rpg Kickstarter + - Swords of Kos Setting + - Swords of the Petal Throne .03 beta rules + - Swordsmen + Sorcerers of Hyberborea rpg + - Synethtics + - Synthetics + - System Neutral + - System Reference Documents + - Sílvia Clemente + - T + - T.H.U.N.D.E.R. Agents + - T1 The Village of Hommlet + - T1-4 + - T1-4 The Temple of Elemental Evil + - T2000 V2 Twilight Nightmares + - TGK1 Assault on Theramour Keep + - THE HIDDEN TOMB OF SLAGOTH THE NECROMANCER + - THOT Police + - THe OSR Library + - TM1 The Ogress of Anubis + - TORG + - 'TSAO: Liberty Ship' + - |- + TSAO: These Stars Are Ours! + Setting + - "TSAO: These Stars Are Ours! Campaign \nSetting" + - 'TSAO: These Stars Are Ours! Setting' + - 'TSAO: Wreck in the Ring' + - TSR + - TSR Marvel Super Heroes + - TSR U.K. + - TSR U.K.3 The Gauntlet + - TSRPG (Travel-Sized RPG) + - TU1 Gamer's Handbook of the Marvel Universe Godzilla King Of The Monsters + - Table Top Rpgs + - Taco Bell + - Tainted Conception + - Tainted Lands + - Taken From Dunwich + - Tales From The Game Tavern + - Tales From The Laughing Dragon + - Tales Of The Scarecrow + - Tales of Gothic Earth + - Tales of The Grotesque And Dungeonesque + - Tales of the Dying Earth + - Tall Tails B/X Wild West + - Tall Witch + - Talon Sector + - Talon Sector Factions + - Tamir Levi + - Tangent! The Grey Man of Chapel Weir Adventure + - Tarantis + - Tarasconus + - Tariq Raheem + - Tartarus + - Taskboy Games + - Tau Ceti + - Tears of Belphegor + - Techno Wizard + - Technology + - Teenage Mutant Ninja Turtles & Other Strangeness rpg + - Tegal Manor + - Tegel Manor + - Tekumel + - Tele force weapons + - Telepathic Encounters + - Television Influences + - Television Shows + - Temple of Death + - Temple of the Frog + - Temporal Adventuring + - Temporal and Physical Relationships in D&D" + - Tenkar's Tavern + - Tenser + - Teratic Tome + - Terminal Spac + - Terminal Space + - Terra Arisen + - Terran Trade Authority Space Craft 2001-2100 AD Book + - Terror Tales - X! + - Terrors of Egypt + - Test of the Warlords + - Thasaidon + - Thaumiel Nerub + - The + - The Agents of W.R.E.T.C.H. Rpg Supplement + - The Elric of Melnibone RPG + - The Haunted Ruins of Koris Nesh + - The Hercules class Heavy Frieghter + - The Marvel Superheroes Roleplaying Game Unofficial Canon Project’s Marvelous + Locations series + - The OSR Library + - The OSRIC Rpg + - The Stars Without Number Equipment Database' + - The Wretched Époque rpg + - The Zozer Games + - The 'Battle Cry of the Reptiliads' + - The 'On the Plane of Magma' (A Fantasy Scenario for TSRPG) + - The 'Strange Stars OSR Rule Book' + - The 'UFOs' Source Book + - The 'Witches of Court Marshes' + - The (1937) + - The Abyss + - The Advanced Labyrinth Lord Adventure Record Sheets + - The Adventurer + - The Adventurer Series + - The Age of Pike + - The Agents of W.R.E.T.C.H. Rpg Supplement + - The Alcyone-class Interstellar Freighter + - The Ankheg + - The Arduin Grimoire + - The Arduin Grimoire series + - The Arena of Thyatis (DDA1) + - The Ares Section of Dragon Magazin + - The Ares Section of Dragon Magazine + - The Ascendant Rpg systemm + - The Astral Plane + - The Automatic Soldier Drone + - The Axe of the Dwarven Lords + - The BLUEHOLME™ Journeymanne Rules + - The Basic Field Guide + - The Beast From 20 + - The Beasts of Kraggoth Manor + - The Beserker PC class + - The Best Of Dragon Magazine Volume I + - The Best Of Dragon Magazine Volume II + - The Best Of Vol. 4 + - The Best Of Vol. 5 + - The Bestiary of Cryptofauna + - The Beyond + - The Black Gem + - The Black Hole + - The Black Hole 1979 + - The Black Hole 1979 movie + - The Black Lodge + - The Black Moss Hag of Lug + - The Black Ruins + - The Black Spot + - The Black Tower Adventure + - The Blackapple Brugh + - The Bloodsoaked Boudoir of Velkis the Vile + - The Book of Artifacts + - The Book of Ebon Bindings + - The Book of Imaginary Beings + - The Book of Low Level Lairs + - The Book of Wonder + - The Bridgetown-class Escort and Cape-class System Defense Boat + - The Buried Zikurat + - The Case of Charles Dexter Ward + - The Castles & Crusades Castle Keepers Guide 3rd Printing + - The Castles & Crusades rpg + - The Caverns Measureless To Man Blog + - The Caves of the Unknown + - The Centaur Race + - The Cepheus Deluxe Rpg + - The Cepheus Engine + - The Cephius Engine Rpg + - 'The Cha''alt Experience: Designing Worlds Like A F*cking Boss' + - The Cha'alt Rpg + - The Cities Without Number + - The Cities Without Number Kickstarter + - The City of Greyhawk + - The Clasic TSR Marvel Super Heroes Rpg + - The Clasic TSR Marvel Super Heroes Rpg + - The Cleansing War of Garik Blackhand (Gamma World Adventure GW3) + - "The Clement \n Sector" + - The Clement Sector + - The Clement Sector Campaign Setting + - The Clement Sector Core Setting Book + - The Cobra Crown + - The Codex Slavorum + - The Coeurl + - The Colour Out of Space + - The Compleat Adventurer + - The Compleat Alchemist + - The Compleat Spell Caster + - The Compleate Alchemist + - The Complete Book of Beholders + - The Complete Vivimancer + - The Coner Class Trader + - The Convent Of Saint Leona + - The Copeline-class Merchant Vessel + - The Cosmic Computer + - The Crate + - The Cult Of The Dreaming Lizard + - The Cult of Typhon + - The Curtiss- Wright Bee 2 Passenger Air Car + - The D&D Master Rules Set + - The Damned + - The Dark Albion Campaign Setting + - The Dark Tower + - The Dark Visitor Adventure + - The Darker rpg + - The Declaration Class Enterprise Star Ship + - The Demon Stones + - The Demonic Tome + - The Derro + - The Design Mechanism + - The Devil In The Crypt + - The Devil King Thasaidon 'ruler of the Seven Hells' + - The Devil's Tower + - The Divine Comedy + - The Doom That Came To Sarnath + - The Dragon + - 'The Dragon #19' + - 'The Dragon #73' + - The Dragon Magazine + - 'The Dragon Magazine issue #35' + - 'The Dragon issue #57' + - The Dragon issue 45 + - 'The Dragon magazine issue #51' + - The Dragon magazine#27 + - The Drawing of the Three + - The Dread Swamp of The Banshee + - The Dreamlands + - The Druidess + - The Dungeon Dozens + - The Dungeon Of Signs Blog + - The Dungeon of Crows 2 - Avatar of Yog Sutekhis + - The Dungeons & Dragons Cartoon + - The EMA-1 Modular Gun System (MGS) + - The Earth Sector + - The Ebony Lodges Of Mu + - The Eerie West - X! + - The Egg of Coot + - The El Circo De Los Monstruos y Memonios + - 'The Eldritch Inquirer #1 By Joseph D. Salvador' + - The Elf OSR Class + - The Eloi + - The Encyclopedia Subterranica Version 1.1 + - The Eternal Champion + - The Eternal Champions - The Swords of Heaven + - 'The Eternals: The Complete Saga Omnibus' + - The Ethereal plane + - The Expanded 20-Level Core Four Classes + - The Expanse + - The Expended Wretched Rpg + - The F'dech Fo's Tomb + - The FASERIPopedia Rpg + - The Face In The Abyss + - The Fantastic Journey television series + - The Fiend Folio + - The First Fantasy Campaign + - The Fisher Men of Ti Sung + - The Fishermen From Space + - The Flayed King + - The Flowers of Hell + - The Forbidden Book of Tangible Reality + - The Forces Beyond + - The Forgotten Fane of the Coiled Goddess + - The Forgotten Temple of Tharizdun + - The Found Folio + - The Free AD&D 1st Edition + - 'The Free Cepheus Journal – Issue #013' + - The Free City of Haven + - 'The Free Full Thrust: Project Continuum rules' + - The Free Gamma World Adventure GW5 'Rapture From the Deep' + - The Free Introductory Adventure Wretched Verses Issue 19 – Ten Thousand Miles + to Fiji + - The Front Rpg + - The Fungus Forest + - The Gar’Haden Family Crypt + - The Gate Movie 1987 film + - The Giant Behemoth + - The Gibbering Tower + - The Gilded Age + - The Glain Campaign + - The Gnome Racial Class + - The Gnomes of Levnec Adventure + - The Goat Lady + - The Gods of Mars + - The Golden Voyage Of Sinbad + - The Gong Farmer's Almanac + - The Great God Pan + - The Great Martian War + - The Green Jewel They Must Possess + - The Greys + - The HOSTILE Situation Report 006 + - The HOSTILE Situation Report 006 - Hunted + - The Hapless Henchmen Blog + - The Haunted Highlands + - The Haunted Palace + - The Hell House Beckons + - 'The Hercynian Grimoire #1' + - The Heroic Fantasy Handbook + - The Hidden In Shadows blog + - The Hidden Serpent + - The Hill Cantons + - The Hmelatharchuro + - The Holiday Scrapbook Murders Affair + - The Hollow World + - The Holy Grail + - The Holy Therns + - The Honest and Plain Village of Scio' + - The Hostile Rpg + - The Hostile Rpg Referee Screen + - The Hostile Setting + - The Hostile Technical Manual + - The Hostile Tool kit + - The House On The Borderlands + - The Howler + - The Hub Federation Ground Forces + - The Human Fly + - The Hydra Cooperative + - The Hyperborea Referee Guide + - The Hyperborea Rpg + - The Ice Kingdoms + - The Ice Kingdoms Source book + - The Ice Kingdoms Sourcebook + - The Ice Kingdoms Sourcebook. + - The Idea From Space + - The Ilulircaglut or Medusa's Bane + - The Incompleat Olden Land + - The Internet Archive + - The Island of Purple Haunted Putrescence + - The Islands of Purple-Haunted Putrescence + - The Islands of Purple-Haunted Putrescence' + - The Isle of Dread + - The Jewel Of Bas + - The Jungle Tomb of the Mummy Bride + - The K'nyanian Guardian Beasts + - The Kasaragod Class Liner + - The Keep + - The Kelosinel Or The Mirage Ones From Daggho + - The King In Yellow + - The Knox-class frigate + - The Kraken + - The Kroten Campaign + - The LAM + - 'The Labia: The Strange Case of the Cursed Vagina' + - The Lamentable Companion + - The Land Beyond the Magic Mirror + - The Last Citadel + - The Late Trapper's Lament + - The Legion of Gold + - The Lenore Isles + - The Lexicon Geographicum Arcanum vol 1 Species of the Hollow Earth + - The Lion & Dragon Rpg + - The Living Building + - The Lizardmen of Illzathatch + - The Lost Caverns of Tsojcanth + - The Lost City (B4) + - The Lost Grimoire + - The Lost Lady adventure + - The Lost Saucer + - The Lost Temple of Forgotten Evil + - The Lost Treasure of Atlantis + - The Lost World + - The Lovewitch + - The Lusus Naturae + - The Machine Men of Ardathia Faction + - The Mail Order Hobby Shop + - The Man From Atlantis TV Show + - The Manos Guerrero Indomito Comic Books + - The Manse On Murder Hill + - The Manual of the Planes + - The Marvel Super Hereoes Rpg + - The Marvel Super Hereos rpg Golden Age of Heroes book + - The Marvel Super Heroes Rpg + - The Master Mind Of Mars By Edgar Rice Burroughs + - The Memorial + - The Merry Pirates + - The Metal Monster + - The Metallic Tome + - 'The Michael Moorcock Library: Erekose' + - The Midderlands + - The Mighty Servant of Leuk-o + - The Mines Of Keridav + - The Mirage Hills Chronicles + - The Mist' film + - The Monastery of the Order of the Crimson Monks + - The Moon + - The Moon Pool + - The Most Dangerous Game 1932 + - The Multiverse + - The Murder Knights of Corvendark + - The Myrmidon + - The Mystery At Port Greely + - The Mythos Collection + - The Mythos Society Guide To New England + - The Necropolis of Nuromen + - The Netbook of Classes + - The New Marvel Phile - Deathlok + - The New Easy-to-Master Dungeons & Dragons Game (1991) + - The New England Bouys + - The New Hartford DM's Network + - The New Marvel - Phile Return of the Nova Corps 2 Annual 2019 + - The New Marvel Phile + - The New Marvel Phile 'The Shadowline Saga' + - 'The New Marvel Phile Issue #82 Curtis Horror' + - 'The New Marvel Phile issue #30 Serpents of the World Unite!' + - The Next Frontier + - The Night Lands + - The Nightmare Lands Box Set + - The OSR Amazon Warrior + - The OSR Class The Warlock + - The OSR Exorcist + - The OSR Warlock + - The Octagon of Chaos + - The Old Man + - The Old Solar System + - The Oort Cloud + - The Opus Magi Rpg + - The Ornamental Blade + - The Orpheum Lofts + - The Otherworld + - The Outer Presence + - The Outer Presence rpg + - The Outskirts + - The Palace of the Vampire Queens + - The Paladin's Lion + - The Pan American World Airways Space Division + - The Paranoia Pit + - The People of the Crater + - The Peryton + - The Piazza forums + - The Planes of Existence + - The Player's Companion + - The Pleiades Light Freighter + - The Pleiades-class Light Freighter + - The Possessors + - The Post Apocalyptic Solar System + - The Price of Evil + - The Primal Order + - The Primal Order rpg + - 'The Primal Order: Chess Boards: The Planes of Possibility' + - The Prodigy (Bard) + - The Psionic Hand Book + - The Pulps + - The Purple Spandex Wars + - The Quantum Dark Rpg + - 'The Quick Ship File: Catino Class Fast Armed Trader' + - 'The Quick Ship File: Starguard System Defence Boat' + - The Quixote Type ST Class Scout + - The R'tiqurllothi + - 'The RPG Pundit Files The Invisible College: 1930''s Campaign' + - 'The RPGPundit Presents #92: The Elven Tomb' + - 'The RPGPundit Presents: The Old School Companion 1' + - The Raging Barbarian + - The Raiders of 'Naa-zsh' + - The Rats In The Wall & Other Perils + - The Realms + - The Red Demon In The Vile Fen + - The Red God + - The Red Headed Slurposaur + - The Red Rom + - The Red Room + - The Remberance of Robert E.Howard + - The Resort of the Dead + - The Return of the Blue Baron + - The Rider Rpg + - The Rifter Issue#21 + - The Ritual Mundix + - The Rize and Fall of Zamzer + - The Rock Well Inn + - The Rod Of Vulthoom + - The Rogue's Gallery + - The Rook - Return of an American Legend + - The Roosevelt Intercepter Distroyer + - The Rose War + - The Royalty of Undeath + - The Rump family + - The Rumps + - The S'rulyan Vault + - The S'rulyan Vault II + - The SURVIVE THIS!! Vigilante City - Core Rules + - The Salem Horror + - The Savage Afterworld + - The Savage Sword of Conan + - The Scribes of Sparn + - The Scrying Dutchman + - The Sea Kings of the Purple Town + - The Sea-Wolf's Daughter. + - The Second American Civil War + - The Second Movement Campaign + - The Secret of Cykranosh + - The Seven Sisters of The Sins + - The Seven Sisters of The Sins (Wretched Version + - The Seventh Sister + - The Seventh Voyage of Sinbad + - The Sexual Holocaust Adventure + - The Shade + - The Shadow + - The Shadow Kingdom + - The Shadowdark rpg + - The Sheep Look up + - 'The Ship Files: RAX Type Protected Merchant' + - The Shoulder of Orion + - The Sinister Secret of Saltmarsh + - The Skirmisher Group + - The Skull as a Complete Gentleman Co + - The Sons of Kyuss + - The Sorcerer Scroll + - The Sound of Madness + - The Space Gods + - The Space Noble + - The Space Patrol' + - The Spawn of Pan + - The Special Golden Lhasa Sauce + - The Spinward Marches Campaign + - The Squid + - The Star Ship Warden Kickstarter + - The Starlight Caper + - The Stars Without Number Revised Rpg + - The Stars Without Number The Starship Database + - The Starship From Hell + - The Starship Warden rpg + - The Starship Warden rpg Kickstarter + - The Stellar Legion + - The Stone Alignments of Kor Nak + - The Stormbringer rpg + - The Strategic Review Magazine + - The Stygian Garden of Abelia Prem + - The Swarm + - The Sword & The Sorcerer + - The Sword of Kas + - The Tainted Lands + - The Tallman + - The Talon Sector + - The Talon Sector Treasure + - The Talon Sector Treasures + - The Talon Sector Campaign + - The Tamashī no tanzōrite Rites + - The Tavern from Hell By James Mishler + - The Tech Update 2350 + - The Temple of Elemental Evil + - The Temple of Set Accursed By Ra Adventure + - The Temple of The Ape God + - The Terra Arisen Campaign Setting + - The Thing + - The Time A Tree Saved Me + - The Time Machine + - The Tomb Of Gardag + - The Tomb Spawn + - The Tomb Spawn' + - The Tomorrow People + - The Towers Two + - The Transmaniacon + - The Tribe of Ogg and the Gift of Suss + - The Type R Subsidized Merchant Starship + - The Undead Crypt Ape + - The Underworld + - The Updated & Expanded Castles & Crusades Crusader's Companion + - The Vargouille + - The Vaults of Pandius + - The Vegepygmy + - The Veriddien Crystal Sphere + - The Victorious Rpg + - The Village With No Name + - The Village of Greenhaven + - The Villains of the Undercity + - 'The Violation of Truth: 2D6 Adventure in a World of Spies and Secrets Rpg' + - The Warhound & The World's Pain + - The Warriors of the Red Planet Rpg + - The Way + - The White People + - The White Ship + - The White Star Galaxy Edition Rpg + - The White Star Rpg + - The Whole the MSH RPG Unofficial Canon Project Crew + - 'The Wicked Encounters #1: Slakt the Slayer and the Seven Dread Dwarves' + - The Wilderlands of High Fantasy + - The Winter Between Realms + - The Winter Realms + - The Wizard's Inheritance + - The Wizard's Scroll issue#1 + - The World Book of Khaas + - 'The World Book of Khaas: Legendary Lands of Arduin' + - The World of Thudarr The Barbarian Sourcebook + - The Worm Ouroboros + - The Wrenchploitation rpg + - The Wretch Space Rpg 2nd Edition + - The Wretched Apocalypse Rpg + - The Wretched Bastards Rpg + - The Wretched Bastards Rpg Quick Start + - The Wretched Bastards Second Edition + - The Wretched Bestiary + - The Wretched Country Rpg + - The Wretched Epogue rpg + - The Wretched Flesh Rpg + - The Wretched New Flesh Post Cards From Avalidad rpg + - The Wretched New Flesh Post Cards From Aviladad rpg + - The Wretched New Flesh Post Cards From Aviladad rpg 2nd edition + - The Wretched Role Playing Game + - The Wretched Rpg + - The Wretched Space rpg + - The Wretched Époque Rpg + - The Wretchedverse rpg + - The Wretchedverse rpg System + - The Wretchploitation Rpg + - The Wretchploitation Rpg + - The Wretchploitation role-playing game + - The Yugoloth + - The Zenopus Archive + - The Zozer Games + - The alignment system + - The collectors store + - The free Bi-Ethnic Characters of Hyperborea Phamplet + - The hordes of Hell + - The machine of Lum The Mad + - The third edition of The Anderson and Felix Guide to Naval Architecture + - The Áylgibrá + - Theorems & Thaumaturgy Revised + - These Stars Are Ours + - Thief + - Thieves + - Thieves Guild + - Thieves Guild 2 + - Thieves Guild Rpg Setting & System + - Thieves Guilds + - Thieves World Roleplaying Game + - Thirty Year War + - This Island Earth + - This Magazine Is Haunted + - Thom Wilson + - Thomas Barnes + - Thomas Carnacki + - Thomas Denmark + - Thomas M. Reid + - Thorpe Class Merchant Vessel + - Thouls + - Thowi Games + - Three Hearts & Three Lions + - Three Hearts & Three Lions. Paul Anderson + - Three Hearts & Three Lions. Poul Anderson + - Three Shops article + - Three Toad Stool Games + - Threshold Magazine + - Threshold Magazine Issues 13 & 14 + - 'Threshold Magazine issue #3' + - Thrift Store Finds + - Thrilling Wonder Stories + - Through Sunken Lands and Other Adventures Rpg + - Through Ultan's Door Issue + - |- + Through Ultan's Door Issue + No comment + - Through Ultan's Door Issue 1 + - Through Ultan's Doors + - Thundarr The Barbarian + - Thunder Fighter Space Craft + - Thy Name is Evil + - Tiamat + - Tim Brannan + - Tim Dry + - Tim Harper + - Tim Kask + - Tim Krause + - Tim Price + - Tim Snider + - Tim Truman + - Timeline Ltd + - Timothy Brannan + - To The Vanishing Point + - Todd Hughes + - Tolkien + - Tom Corbett Space Cadet Comics + - Tom Cruise + - Tom Kirby + - Tom Knauss + - Tom Moldvay + - Tom Moldvay. + - Tom Sutton + - Tomb Robber + - Tomb of Doom + - Tomb of Hecate + - Tomb of Horrors + - Tomb of the Over Fiend + - Tombs + - Tombstone (Alpha Playtest) + - 'Tome Eight: Handlist of Horrors' + - 'Tome Seven: Goetics and Gnostics' + - Tome of the Unclean + - Tony Hicks + - Tony Vasinda + - Tope Hooper + - Total War rpg + - Tower of The Star Gazer + - Tower of the Mammoth + - Town of Baldemar + - Towns of The Outlands + - Toy + - Tracy Hickman + - Trade Empire-class Commercial Freighter + - Trading Posts + - Trailers + - Transmaniacon + - Tranzar's Redoubt + - Traps + - Traveller + - Traveller rpg + - Treasue + - Treasure + - Treasure. + - Treasures + - |- + Treasures + No comments: + - Treasures of the Ancients (GWA1) + - 'Tree of Life: Altrants in Clement Sector' + - Trey Causey + - Triffids + - Trinity of Awesome +1 + - Trinity of Awesome Returns + - Tristan Tanner + - Tristen Tanner + - Troll Lord Games + - Troll Lords + - Troll Lords Castle Keeper's Guide 3rd Printing + - Troll Lords Games + - Trolls + - Tumbleweed Tales Volume 1 + - Tunnels & Trolls + - Twenty Rules + - Twilight 2000 rpg + - Twilight Nightmares + - Twisted Christmas + - Tyrannical Conquerors + - 'Tyrannosapien: Creatures of the Apocalypse 11' + - Tyrannosaurus rex. Monster Ecology + - Tyrfing + - U.F.O. television show + - U.K.1 Beyond The Crystal Cave + - U1 Sinister Secret of Saltmarsh + - U1 The Sinister Secret of Salt Marsh + - U1 The Sinister Secret of Saltmarsh + - U2 Danger At Dunwater + - U2 Danger at Dunwater (1e) + - U2 The Final Enemy + - U3 The Final Enemy + - UK series of adventures + - UK1 Beyond The Crystal Cave By Brown + - UK1 The Sinister Secret of Saltmarsh + - UK2 Danger At Dunwater + - UK2 The Sentinel + - UK3 The Final Enemy + - UK3 The Gauntlet + - UK4 When a Star Falls + - UK5 Eye of the Serpent + - USSP + - 'UX02: Mind Games' + - 'Ugotuturch : Limbo Harpy Things' + - 'Ultan''s Door issue #3 Kickstarter' + - Ulysses 31 + - Unboxing + - Undead + - 'Under Western Skies: 2D6 Adventure on America''s Frontier' + - Under Xylarthen’s Tower + - Underworld + - Underworld Campaigns + - Underworld Kingdoms + - Underworld Lore Fanzine + - 'Underworld Lore Issue #4' + - Unholy Land + - Unique + - Universal Exploits + - Unmerciful Frontier + - 'Unmerciful Frontier: The CCA Sourcebook Third Edition' + - Upcoming Products + - Updates + - Upgrade + - Uranium Fever + - Urban Locations + - Usherwood Adventures + - Usherwood Publishing + - 'Using Quick Ship File: Roanoke and Raccoon Class Ships' + - VHS covers + - 'Vacant Ritual Assembly Issue #1' + - 'Vacant Ritual Assembly Issue #2' + - 'Vacant Ritual Assembly Issue #3' + - 'Vacant Ritual Assembly Issue #4' + - 'Vacant Ritual Assembly Issue #5' + - 'Vacant Ritual Assembly Issue #6' + - Valpyrs + - Vampire PC class + - Vampire Queens + - Vampires + - Vampires of the Olden Lands From James Mishler Games + - Vans + - Variant Classes + - Varlets & Vermin + - 'Vault of Cha''alt #1' + - Vault of The Drow + - Vault of the Weaver + - Vaults + - Vaults of Pandius + - Vaults of the Weaver + - Vechicles + - Vehicles + - Venger As'Nas Satanis + - Venger Satanis + - Venus + - Vergama's sphere + - Veterans + - Veterans of the Supernatural Wars Rpg + - Veteres Guardians + - Victorious Hunter & Hunter Catalogue + - Victorious Phantasmagoria + - Victorious Rpg + - Victorious Rule Britania + - 'Victorious: Victorian Role Playing Adventure in the age of Supermankind' + - Videos + - ViewScream Second Edition + - Vigilance Press + - Viking Treasures + - Vikings + - Villain NPC's + - Villains of The Undercity + - Vincent Price + - Viper Mark I Star Fighter + - Void Haven Outpost + - Voidjammers + - Volgan War + - Voltorians + - 'Volume #3 The Underworld & Wilderness Adventures' + - Volume 4 + - Volume 4" + - Vorheim + - Voyage of the Space Beagle + - Vultoom + - Vultursaur Swarm + - WG4 + - WG4 The Forgotten Temple of Tharizdun by Gary Gygax + - 'WG4: The Forgotten Temple of Tharizdun (1982)' + - WGR1 Greyhawk Ruins (2e) + - 'WL1: Tower Hill' + - WW1 + - WWI + - 'WWII: Operation WhiteBox' + - Wagner + - Walkers + - 'Walking the Way: A Mysticism Sourcebook [Swords & Wizardry]' + - Wally Wood + - Wand of Orcus + - War & Pieces + - War Games + - War Machines + - War of Darkness + - War of The Worlds + - War of the Immortals + - War of the Roses + - War of the World + - Warband + - Warduke + - Wargame Commentary + - Wargames + - Wargaming + - Warhammer Fantasy Rpg + - Warhammer Rpg + - Warlords of Atlantis + - Warlords of Atlantis rpg campaign setting + - Warlords of The Outer Worlds + - Warlords of The Outer Worlds Campaign + - Warlords of The Outer Worlds Campaign Setting + - Warp First Comics Series + - Warpland Rpg + - Warren comic books + - Warren publishing magazine + - Warrens of the Great Goblin Chief (Revised and Expanded Edition) + - Warriors + - Warriors Of The Red Planet Rpg System + - Warriors of the Lost Planet + - Warriors of the Red Planet + - Warriors of the Red Planet rpg + - Warriors of the Red Planet Rpg + - Warriors of the White Light Adventure + - Washington Sector + - Waste World rpg + - Waste land horrors! + - Wasted West Hell on Earth Rpg + - Wasteland + - Wasteland Armor + - Wasteland Domain Level Play + - Wasteland Finds + - Wasteland Oracles + - Wasteland Treasures + - Wasteland horrors! + - Watch on Line + - Wayne's Books + - Weaponary + - Weapons + - Weather + - Weird Adventures + - Weird Horror + - Weird Romance + - Weird Tales + - Weird War II + - Weird Westerns + - Weird finds + - Welcome To Rock Junction + - Well of Urd Press + - Welsh Mythology + - Werebears + - Wererats + - Werewolves + - Werewolves and Wretched Hunters + - West End Star Wars + - West World Television show + - Westerns + - Weta-Rex + - Whamagedon + - What's Nuked Scooby Doomsday + - When A Star Falls + - When The Sleeper Wakes + - Where The Fallen Jarls Sleep + - 'White Box : Fantastic Medieval Adventure Game' + - White Box Arcana + - White Box Gothic + - White Box Omnibus [Swords & Wizardry] + - 'White Box: Fantastic Medieval Adventure Game' + - 'White Box: Unearthed Trove' + - White Dwarf + - White Dwarf 095 + - White Dwarf 097 + - White Dwarf issue# 30 + - White Dwarf magazine + - White Plume Mountain + - White Star + - White Star Rpg Retroclone System + - White Star Galaxy Edition + - White Star Rpg Retroclone System + - White Star rpg + - White Wolf + - White Wolf Temples + - Wil Huygen + - Wild Stars Comic book + - Wild West Bounty Generator + - Wilderlands of High Fantasy + - Wilderness + - Wilderness Adventuring + - Will O The Wisps + - Will Travel + - Will Travel Campaign Setting + - William Hooker Gillette + - William Hope Hodgeson + - William McAusland + - William Nolan + - William Thresher + - William Tracy + - Willis E. McNelly + - Willow film (1988) + - Wind Lothamer + - Winds of the Ice Forest From Random Order Creations Adapted To Your Sword and + Sorcery Campaigns As Well As The Astonishing Swordsmen And Sorcerers of Hyperborea + Rpg System + - Winter Monster Ecology + - Wisdom From The Wastelands + - 'Wisdom From The Wastelands Issue # 21' + - 'Wisdom From The Wastelands Issue # 22' + - Wisdom From The Wastelands Issue 51 + - Witch Hunter. + - Witches + - Wizardry Continual Light + - Wizards + - Wizards Mutants Laser Pistols Fanzine Issue 7 + - Wizards movie + - Wizards of the Coast + - Wolf Attack + - Wolves From Strange Aeons + - Womb Cult From Grimm Aramil Publishing + - Wonder & Wickedness + - Wonder Stories Quarterly + - Woodland + - World Building + - World Design + - World Of The Lost + - World War One + - World War Two + - World at Weird War II Rpg + - World of Bastards + - World of Jordoba Player Guide + - World of Ortix blog + - World of Weird War II + - Worlds + - Worlds Unknown + - Worlds Without End rpg + - Worlds Without Number + - Worlds Without Number rpg + - Worm Skin magazine + - Worthy Causes + - Wraith of the Immortals + - Wraiths + - Wreckside District + - Wretched Apocalypse - Second Edition + - Wretched Armageddon Vol.1 War + - Wretched Bastards + - Wretched Bastards Rpg + - Wretched Conspiracies campaign Setting + - Wretched Country second edition Rpg + - Wretched Darkness + - Wretched Darkness 1st edition + - Wretched Darkness Rpg + - |- + Wretched Darkness Rpg + No comments: + - Wretched Darkness Rpg Revised Edition + - Wretched Darkness Rpg second edition + - Wretched Epoque + - Wretched Flesh + - Wretched Game Master's Screen (Landscape Inserts) + - Wretched Interbellum campaign setting + - 'Wretched Minions Issue 7: Wretched Minions from the Beyond' + - Wretched New Flesh - Postcards from Avalidad Rpg + - Wretched New Flesh - Rpg + - Wretched New Flesh Post Cards From Avalidad Rpg + - Wretched New Flesh Second Edition + - Wretched OSR + - Wretched Role Playing Game + - Wretched Rpg + - Wretched Space + - Wretched Space 1.4 rpg + - Wretched Space Revised + - Wretched Space Rpg + - 'Wretched Verses #1' + - Wretched Verses Issue 11 – Vampires + - 'Wretched Verses Issue 18 – Wretched Minions: Cryptids' + - 'Wretched Verses Issue 23: Gangs of Avalidad' + - Wretched Verses issue#14 Undead + - Wretched Vigilantes + - Wretched Vigilantes Campaign Settting + - Wretched Vigilantes rpg + - Wretched World + - Wretched rpg Games + - Wretched Époque + - Wretched Époque Quickstart Rpg + - Wretched Époque Rpg + - Wretchedverse + - Wretchedverse Rpg + - Wretchedverse Rpg Setting + - Wretchedverse rpg Games + - 'Wretchedverses issue #5' + - Wretchploitation Rpg + - Wrethedverse rpg + - X - plorers Box Set + - X plorers + - X plorers Edit | V + - X-Plorers + - X1 Isle of Dread + - X1 Isle of Dread. + - X10 + - X12 Skarda's Mirror + - X13 Crown of Ancient Glory + - 'X1: The Sinister Stone of Sakkara' + - X2 Castle Amber + - X3 + - 'X3: "Curse of Xanathon' + - X4 + - X4 Master of the Desert Nomads + - 'X4: "Master of the Desert Nomads"' + - X5 + - X5 The Temple of Death + - 'X5: "Temple of Death" (1983)' + - X6 + - X6 Quagmire + - X6 Quagmire by Merle M. Rasmussen + - X7 The War Rafts of Kron + - |- + X7 The War Rafts of Kron + No comments: + - X9 The Savage Coast + - XC Catacombs of Death + - 'XL1: "Quest for the Heartstone' + - XQ1 The Castle that Fell from the Sky + - Xenomorphs + - Xiccarph + - Xill + - Xiticix + - Xmen + - Xoth.net publishing + - Xplorers + - Xulhlan + - YOG·SOTHOTH (the key and guardian of the gate) + - YS1 The Outpost of the Outer Ones + - YS1 The Outpost of the Outer Ones by Jeremy Reaban + - 'Yhe Violation of Truth: 2D6 Adventure in a World of Spies and Secrets rpg' + - Yog Sothoth + - You're On Your Own No. 1 + - Young Kingdoms + - Your Old School Campaigns + - 'Yragael: Urm' + - 'ZA1: The Temple Of Chaos' + - 'ZA5: Flayers of the Mind.Free Material' + - 'ZA6: Journey to the Astral Plane' + - 'ZA7: Temple of the Ice Gods' + - ZZ7729 The A.I. Entity + - Zaibatsu rp + - Zaibatsu rpg + - Zaibatsu rpg adventure + - Zak S + - Zak Smith + - Zarak + - Zeb Cook + - Zebulara + - Zenobia rpg setting + - Zenopus Archives + - Zero Session Workshop + - Zombies + - Zone Troopers + - Zor Draxtau + - Zothique + - Zothique D20 + - Zozer Gam + - Zozer Games + - Zozer Games Colonial Freighter + - Zozer Games Hostile campaign Setting + - Zyan + - Zzarchov Kowolski + - ']The RPG Pundit' + - and Homebrew Blog + - and Ships of War + - animation + - arcosa + - art Del Teigeler + - artifacts + - books + - by Bruce Nesmith + - by Gary Gygax + - cartoon + - caskets + - classic Traveller rpg + - comic anthologies + - cult of Druaga + - d-Infinity magazine + - d12 + - demon blades + - dinosaurs + - disease + - etc + - etween The Cracks Of Reality Campaign Set Up + - fanzines + - fanzines. + - funk + - gamezine projects + - iZombie television show + - imonsters + - inspiration + - item Random tables + - items + - kosmos68com.wordpress.com + - lair encounter + - linnorm + - 'ls: Astonishing Swordsmen + Sorcerers of Hyberborea rpg' + - monster + - monsters + - nega Dungeons + - news + - old school 2d6 Science Fiction based rpg's + - or Cosmic Grass... No One Warps For Free + - organizations + - p + - public domain comic books + - random table + - random table Items + - random table.Items + - retro-clones + - rimm Aramil Publishing + - rpg + - rpg book + - 's: Adventures' + - sci fi movies + - science fantasy + - science fiction + - science fiction films + - setting material + - space carriers + - supermodule S1-4 Realms of Horror. + - sword & sorcery + - 'sword & sorcery No comments:' + - system + - techno-sorcery + - television + - 'the "Monster & Treasure Assortment Sets One-Three: Levels One-Nine"' + - the Atlas Orbis Factus est ignis + - the Labyrinth Lord rpg + - the Stairway of V'dreen. + - 'the "Monster & Treasure Assortment Sets One-Three: Levels One-Nine"' + - the 'Arduin Grimoire Trilogy' book + - the 'Vulth' russ' + - the Abbernoth Campaign Setting + - the Belle Époque + - the Belle Époque. The Red Room + - the Cascadia Colonization Authority + - the Castles & Crusades Codex Celtarum 2nd Edition + - the Castles & Crusades Players Guide to Aihrde. + - the Cepheus Engine Rpg + - the Clement Sector rpg + - the D&D Rules Cylopedia + - the Fermi paradox + - the Ghorli + - 'the Glantri: Kingdom of Magic (1995) box set' + - the Grand Duchy of Karameikos + - the Hub Federation Navy + - the Incorporeal Undead + - the Labyrinth Lord Basic + - the Lamentations of the Flame Princess rpg + - 'the Marvel Super Heroes RPG: The Unofficial Canon Project' + - the Original Traveller rpg + - the Original Traveller rpg + - the Orion Mutuality + - the Scooby Apocalypse + - 'the Slavers of A0-A4: Against the Slave Lords' + - the Stairway of V'dreen. + - the Teratic Tome + - the Unofficial Marvel Superheroes Cannon Project's Marvelous Myths & Monsters + volume 6 The Otherworld By Andrew Goldstein + - the Wretched Rpg + - the d'Ambreville family + - the first issue of Ulfire Tablets + - the original Traveller rpg box set + - the sea spirit" + - western + - “Ynys Bach” + relme: + https://swordsandstitchery.blogspot.com/: true + last_post_title: Marvel Super Heroes Rpg Thoughts on Marvel Comics Crystar The Crystal + Warrior Saga + last_post_description: "" + last_post_date: "2024-07-08T19:38:00Z" + last_post_link: https://swordsandstitchery.blogspot.com/2024/07/marvel-super-heroes-rpg-thoughts-on.html + last_post_categories: + - '''The unofficial canon project Marvel Super Heroes Facebook Group' + - Classic Marvel Super Heroes Rpg + - Saga of Crystar 1983 Comic Book + last_post_language: "" + last_post_guid: 41cca03ea05779493e152adc8cd446b1 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-be8922d11d83ac05f28c73bb85e9a213.md b/content/discover/feed-be8922d11d83ac05f28c73bb85e9a213.md deleted file mode 100644 index 4173492e9..000000000 --- a/content/discover/feed-be8922d11d83ac05f28c73bb85e9a213.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Derek Kedziora -date: "1970-01-01T00:00:00Z" -description: Public posts from @derekkedziora@mstdn.social -params: - feedlink: https://mstdn.social/@derekkedziora.rss - feedtype: rss - feedid: be8922d11d83ac05f28c73bb85e9a213 - websites: - https://mstdn.social/@derekkedziora: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://derekkedziora.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-be89259df609f2a3713d07e779b3186a.md b/content/discover/feed-be89259df609f2a3713d07e779b3186a.md deleted file mode 100644 index 749f158ae..000000000 --- a/content/discover/feed-be89259df609f2a3713d07e779b3186a.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: inessential.com -date: "1970-01-01T00:00:00Z" -description: Brent Simmons’s weblog. -params: - feedlink: https://inessential.com/feed - feedtype: rss - feedid: be89259df609f2a3713d07e779b3186a - websites: {} - blogrolls: [] - recommended: [] - recommender: - - http://scripting.com/rss.xml - - http://scripting.com/rssNightly.xml - categories: [] - relme: {} - last_post_title: Reruns - last_post_description: |- - It’s not a bug in your RSS reader if recent articles in this feed all suddenly appeared as unread. You may even have seeming duplicates. - - Sorry about that! It’s due to my changing settings in my - last_post_date: "2024-02-08T08:16:00-08:00" - last_post_link: https://inessential.com/2024/02/08/reruns.html - last_post_categories: [] - last_post_guid: 6967b85c399c3478ae553475ff1f2bcb - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-be8a9cf89a74026255af6be95781c4f9.md b/content/discover/feed-be8a9cf89a74026255af6be95781c4f9.md new file mode 100644 index 000000000..a4a34d0fb --- /dev/null +++ b/content/discover/feed-be8a9cf89a74026255af6be95781c4f9.md @@ -0,0 +1,140 @@ +--- +title: Alarm Its Noise +date: "2024-02-07T21:15:12-08:00" +description: Noisy alarm feels so bad. +params: + feedlink: https://cpffeedindicator.blogspot.com/feeds/posts/default + feedtype: atom + feedid: be8a9cf89a74026255af6be95781c4f9 + websites: + https://cpffeedindicator.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Alarm is so bad + - Famous Area Codes + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Important Area Codes + last_post_description: "" + last_post_date: "2021-11-12T00:16:11-08:00" + last_post_link: https://cpffeedindicator.blogspot.com/2021/11/important-area-codes.html + last_post_categories: + - Famous Area Codes + last_post_language: "" + last_post_guid: 12e8786ac5438bc504bcd26df13963dd + score_criteria: + cats: 2 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-be8b28052253e31d65f330c9fe8e0e6f.md b/content/discover/feed-be8b28052253e31d65f330c9fe8e0e6f.md deleted file mode 100644 index eaa828463..000000000 --- a/content/discover/feed-be8b28052253e31d65f330c9fe8e0e6f.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: SCOTUSblog -date: "1970-01-01T00:00:00Z" -description: Independent News and Analysis on the U.S. Supreme Court -params: - feedlink: https://www.scotusblog.com/feed/ - feedtype: rss - feedid: be8b28052253e31d65f330c9fe8e0e6f - websites: - https://www.scotusblog.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Featured - - Merits Cases - - Cases in the Pipeline - relme: {} - last_post_title: Justices add one new case to next term’s docket - last_post_description: In a list of orders released on Monday morning, the Supreme - Court added one new case to its argument docket for the 2024-25 term. With roughly - one month remaining before the justices’ summer recess - last_post_date: "2024-06-03T14:17:03Z" - last_post_link: https://www.scotusblog.com/2024/06/justices-add-one-new-case-to-next-terms-docket/ - last_post_categories: - - Featured - - Merits Cases - - Cases in the Pipeline - last_post_guid: b1f8705d5fd5a1998633969979d68e13 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-be8e25b211da4a275685e7ed0058de47.md b/content/discover/feed-be8e25b211da4a275685e7ed0058de47.md deleted file mode 100644 index e9164bfd4..000000000 --- a/content/discover/feed-be8e25b211da4a275685e7ed0058de47.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: "Ben Myers \U0001F996" -date: "1970-01-01T00:00:00Z" -description: Public posts from @ben@a11y.info -params: - feedlink: https://a11y.info/@ben.rss - feedtype: rss - feedid: be8e25b211da4a275685e7ed0058de47 - websites: - https://a11y.info/@ben: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://benmyers.dev/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-be9436fc432e548d2fffd82437aacf92.md b/content/discover/feed-be9436fc432e548d2fffd82437aacf92.md new file mode 100644 index 000000000..fe7ee843f --- /dev/null +++ b/content/discover/feed-be9436fc432e548d2fffd82437aacf92.md @@ -0,0 +1,43 @@ +--- +title: 'GSoC 2022: GNOME' +date: "1970-01-01T00:00:00Z" +description: This blog is about my experiences as a contributor for the GNOME Foundation + in GSoC'22. +params: + feedlink: https://utkarsh2401.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: be9436fc432e548d2fffd82437aacf92 + websites: + https://utkarsh2401.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://utkarsh2401.blogspot.com/: true + last_post_title: 'GSoC 2022: Third Update!' + last_post_description: "Hello everyone! \U0001F604 In my previous blog post, I explained + why we use a dialog box and its advantages over the GtkPopoverMenu for the templates + submenu.Since the last update, I'm glad to announce" + last_post_date: "2022-08-10T12:00:00Z" + last_post_link: https://utkarsh2401.blogspot.com/2022/08/gsoc-2022-third-update.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 6cca1f774133054d7906f7f43d393bd0 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-beb57c334e61d6ec968b6685ea8ba92b.md b/content/discover/feed-beb57c334e61d6ec968b6685ea8ba92b.md new file mode 100644 index 000000000..200de8ed6 --- /dev/null +++ b/content/discover/feed-beb57c334e61d6ec968b6685ea8ba92b.md @@ -0,0 +1,45 @@ +--- +title: Robb Knight • Posts • Atom Feed +date: "2024-07-07T18:21:00Z" +description: Maker of web things, Lego builder, sometimes blogger, sporadic pizzaiolo, + fortnightly podcaster. Cat dad and human dad. +params: + feedlink: https://rknight.me/subscribe/posts/atom.xml + feedtype: atom + feedid: beb57c334e61d6ec968b6685ea8ba92b + websites: + https://rknight.me/: false + https://rknight.me/blog/: false + blogrolls: [] + recommended: [] + recommender: + - https://canion.blog/categories/article/feed.xml + - https://canion.blog/feed.xml + - https://canion.blog/podcast.xml + categories: [] + relme: {} + last_post_title: Fetching Achievements and Trophies for my Game Collection Page + last_post_description: How I'm fetching trophy and achievements to show on my game + collection + last_post_date: "2024-07-07T18:21:00Z" + last_post_link: https://rknight.me/blog/fetching-achievements-and-trophies-for-my-game-collection-page/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 70531f03d34c1341dc97d87fdc6bc10b + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 1 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-bec166e79b820f59e36dbb5a8198feae.md b/content/discover/feed-bec166e79b820f59e36dbb5a8198feae.md new file mode 100644 index 000000000..b9ac6edea --- /dev/null +++ b/content/discover/feed-bec166e79b820f59e36dbb5a8198feae.md @@ -0,0 +1,51 @@ +--- +title: Tom Lokhorst's blog +date: "1970-01-01T00:00:00Z" +description: Writings from a happy Swift coder. +params: + feedlink: https://tom.lokhorst.eu/feed + feedtype: rss + feedid: bec166e79b820f59e36dbb5a8198feae + websites: + https://tom.lokhorst.eu/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Swift + - Talk + relme: + https://github.com/nonstrict-hq: true + https://mastodon.social/@mathijskadijk: true + https://mastodon.social/@nonstrict: true + https://mastodon.social/@tomlokhorst: true + https://nonstrict.eu/: true + https://tom.lokhorst.eu/: true + last_post_title: Swift Package Manager Plugins [talk] + last_post_description: Last week, I gave an impromptu talk at the CocoaHeadsNL November + meetup. I’ve recently been working on R.swift version 7, which adds Swift Package + Manager Plugin support. After a brief overview of + last_post_date: "2022-12-02T15:00:00Z" + last_post_link: https://tom.lokhorst.eu/2022/12/swift-package-manager-plugins-talk + last_post_categories: + - Swift + - Talk + last_post_language: "" + last_post_guid: e553b414bab492ac608bd44a5251d2ac + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-bedd4c40925122ec8961de7a7fa9685a.md b/content/discover/feed-bedd4c40925122ec8961de7a7fa9685a.md new file mode 100644 index 000000000..3e04c41ab --- /dev/null +++ b/content/discover/feed-bedd4c40925122ec8961de7a7fa9685a.md @@ -0,0 +1,128 @@ +--- +title: Art Of ApOgEE +date: "1970-01-01T00:00:00Z" +description: '.: Art iS eVeRyThiNg WhEn YoU sEE EvErYtHinG iS ArT!! - ApOgEE :.' +params: + feedlink: https://artofapogee.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: bedd4c40925122ec8961de7a7fa9685a + websites: + https://artofapogee.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Art Of ApOgEE + - Britney Spears + - Bruce Lee + - Colbert + - Conan OBrian + - Creative + - Cross Hatching + - David Letterman + - Designer Resources + - Digital Art + - Digitizer tablet + - EclecticAsylum + - Featured Artists + - GIMP + - Google Reader + - Graphic Tablets + - Graphics Design + - Graphire3 + - Guido Daniele + - Guitar + - Illustration + - Jay Leno + - Joe Lateshow + - Kerawang Collections + - Logo Design + - Martial Arts + - Music + - My List + - Open Source + - Oud + - Phil Hansen + - Photography + - Photoshop + - Photoshop Brushes + - Samtriggy + - Save our child + - TATU + - Talk Show + - Textures + - Tutorials + - Vector Graphics + - Video + - Wacom + - abstract + - actress + - ada + - artwork + - backgrounds + - ballpen on paper + - brands + - cake design + - cartoons + - celebrities + - celebrity + - charcoal on paper + - comics + - download + - drawing + - drawing tablet + - facebook + - free fonts + - free manga screentones + - graffiti + - host + - icon + - inkscape + - linux + - manga + - mybloglog + - oil pastel + - old sketch + - painting + - pen tablet + - pencil on paper + - practice + - reggae + - royalty free vector + - screentones + - ska artworks + - sketch + - soft pastel on paper + - speed painting + - ubuntu + - usb graphic tablet + - wacom sketch + - youtube + relme: + https://artofapogee.blogspot.com/: true + last_post_title: ApOgEE is Blogging Again + last_post_description: My previous last post in this blog is in 2013. Therefore, + it is been 6 years that I didn't write anything on this blog. Perhaps all of my + fellow readers and followers of this blog have already + last_post_date: "2019-02-26T22:00:00Z" + last_post_link: https://artofapogee.blogspot.com/2019/02/apogee-is-blogging-again.html + last_post_categories: [] + last_post_language: "" + last_post_guid: bb326203e2d384e84ff09100a5096ca9 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-bedf19466a39e9a432adc90921ff8a53.md b/content/discover/feed-bedf19466a39e9a432adc90921ff8a53.md new file mode 100644 index 000000000..fcf9bbe20 --- /dev/null +++ b/content/discover/feed-bedf19466a39e9a432adc90921ff8a53.md @@ -0,0 +1,45 @@ +--- +title: GSoC 2013 - Communicating with Mobile Devices +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://gsoc2013cwithmobiledevices.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: bedf19466a39e9a432adc90921ff8a53 + websites: + https://gsoc2013cwithmobiledevices.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://gsoc2013cwithmobiledevices.blogspot.com/: true + https://musicadelosgen.blogspot.com/: true + https://www.blogger.com/profile/15324115095939507036: true + last_post_title: GSoC - Push Notify test examples. + last_post_description: |- + To show a simple usage of push notifications I developed 2 test examples. + I really want to thank FPComplete for giving me the possibility of hosting the Yesod app. + The tests are available online on + last_post_date: "2013-09-23T03:59:00Z" + last_post_link: https://gsoc2013cwithmobiledevices.blogspot.com/2013/09/gsoc-push-notify-test-examples.html + last_post_categories: [] + last_post_language: "" + last_post_guid: c1ed83909483be6c69bb14cdea682f72 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-bedfb3e9b6bae0e33dc4a7208ce69f75.md b/content/discover/feed-bedfb3e9b6bae0e33dc4a7208ce69f75.md new file mode 100644 index 000000000..924bc35f3 --- /dev/null +++ b/content/discover/feed-bedfb3e9b6bae0e33dc4a7208ce69f75.md @@ -0,0 +1,50 @@ +--- +title: Хитрини +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://hitrini.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: bedfb3e9b6bae0e33dc4a7208ce69f75 + websites: + https://hitrini.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - android + - fbreader + - kindle + - локализация + - читанка + relme: + https://hitrini.blogspot.com/: true + https://kaloyanraev.blogspot.com/: true + https://www.blogger.com/profile/01871652990952962890: true + last_post_title: Локализация на български език за Kindle Keyboard (Kindle 3) + last_post_description: Kindle са прекрасни устройства, може би най-добрите електронни + книги, но и те имат някои недостатъци. Един такъв + last_post_date: "2017-04-17T12:18:00Z" + last_post_link: https://hitrini.blogspot.com/2017/04/bg-l10n-kindle-3.html + last_post_categories: + - kindle + - локализация + last_post_language: "" + last_post_guid: 6502f26928ddb01a721f0bdf7e6385cc + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-bf0f1adcd6a71a5162f47f0bc5b54574.md b/content/discover/feed-bf0f1adcd6a71a5162f47f0bc5b54574.md deleted file mode 100644 index d558414ac..000000000 --- a/content/discover/feed-bf0f1adcd6a71a5162f47f0bc5b54574.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Perl on Medium -date: "1970-01-01T00:00:00Z" -description: Latest stories tagged with Perl on Medium -params: - feedlink: https://medium.com/feed/tag/perl - feedtype: rss - feedid: bf0f1adcd6a71a5162f47f0bc5b54574 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - chmod - - asynchronous - - perl - relme: {} - last_post_title: What is causing asynchronous changes of permissions after usage - of chmod in backticks in perl - last_post_description: TL;DR — Go down to the UPDATE for a toy example. The following - was my original question before I was able to reproduce the issue in a…Continue - reading on Medium » - last_post_date: "2024-06-05T23:01:59Z" - last_post_link: https://medium.com/@fixitblog/what-is-causing-asynchronous-changes-of-permissions-after-usage-of-chmod-in-backticks-in-perl-12c0d1ca1cc1?source=rss------perl-5 - last_post_categories: - - chmod - - asynchronous - - perl - last_post_guid: f4da626ab5ac6f377b5373ec4cfc857e - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-bf3a3993009a3709ee6421b0b663b5d9.md b/content/discover/feed-bf3a3993009a3709ee6421b0b663b5d9.md deleted file mode 100644 index b851ed54b..000000000 --- a/content/discover/feed-bf3a3993009a3709ee6421b0b663b5d9.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Matt Stein -date: "1970-01-01T00:00:00Z" -description: Public posts from @mattrambles@t00t.cloud -params: - feedlink: https://t00t.cloud/@mattrambles.rss - feedtype: rss - feedid: bf3a3993009a3709ee6421b0b663b5d9 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-bf5d79369284f39483240a8d661bc7cc.md b/content/discover/feed-bf5d79369284f39483240a8d661bc7cc.md new file mode 100644 index 000000000..08770b303 --- /dev/null +++ b/content/discover/feed-bf5d79369284f39483240a8d661bc7cc.md @@ -0,0 +1,137 @@ +--- +title: All about Cheese +date: "2024-02-19T23:02:14-08:00" +description: Thanks for visiting to our page and keep visiting. +params: + feedlink: https://escoladelideresaprendercomjesus.blogspot.com/feeds/posts/default + feedtype: atom + feedid: bf5d79369284f39483240a8d661bc7cc + websites: + https://escoladelideresaprendercomjesus.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Delecious Cheese + last_post_description: "" + last_post_date: "2022-01-10T03:38:30-08:00" + last_post_link: https://escoladelideresaprendercomjesus.blogspot.com/2022/01/delecious-cheese.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 59e35f4a8cc2ae4f2deb27000efaa5dc + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-bf65b57262eecca534ca9e940d1961c4.md b/content/discover/feed-bf65b57262eecca534ca9e940d1961c4.md deleted file mode 100644 index 60a5ee556..000000000 --- a/content/discover/feed-bf65b57262eecca534ca9e940d1961c4.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Matt Steele -date: "1970-01-01T00:00:00Z" -description: The personal website of Matt Steele -params: - feedlink: https://steele.blue/feed/atom.xml - feedtype: rss - feedid: bf65b57262eecca534ca9e940d1961c4 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - - https://danq.me/comments/feed/ - - https://danq.me/feed/ - - https://danq.me/kind/article/feed/ - - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ - categories: [] - relme: {} - last_post_title: Side projects should be fun - last_post_description: 'Connell McCarthy''s post about "overengineering everything - at his wedding" was a fun read: https://connellmccarthy.com/article/wedding/ I - can…' - last_post_date: "2024-04-28T00:00:00Z" - last_post_link: http://steele.blue//side-projects-should-be-fun - last_post_categories: [] - last_post_guid: c3aa23c51e61b39fc775f7fe88492805 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-bf705552d55b0fdbe37f7aa00939e9a9.md b/content/discover/feed-bf705552d55b0fdbe37f7aa00939e9a9.md index c09d28496..ecfc34ea6 100644 --- a/content/discover/feed-bf705552d55b0fdbe37f7aa00939e9a9.md +++ b/content/discover/feed-bf705552d55b0fdbe37f7aa00939e9a9.md @@ -14,7 +14,8 @@ params: recommender: [] categories: - Maintainer-Stuff - relme: {} + relme: + https://blog.ffwll.ch/: true last_post_title: Upstream, Why & How last_post_description: |- In a different epoch, before the pandemic, I’ve done a presentation about @@ -24,17 +25,22 @@ params: last_post_link: http://blog.ffwll.ch/2024/03/upstream-why-how.html last_post_categories: - Maintainer-Stuff + last_post_language: "" last_post_guid: e531f2cee6f23202ad293c5e5a0e473e score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 1 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 9 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-bf9010bb92cb845bc1b5952ea55fea03.md b/content/discover/feed-bf9010bb92cb845bc1b5952ea55fea03.md new file mode 100644 index 000000000..1ebeac97f --- /dev/null +++ b/content/discover/feed-bf9010bb92cb845bc1b5952ea55fea03.md @@ -0,0 +1,42 @@ +--- +title: python on Stéphane's Blog +date: "1970-01-01T00:00:00Z" +description: Recent content in python on Stéphane's Blog +params: + feedlink: https://wirtel.be/tags/python/index.xml + feedtype: rss + feedid: bf9010bb92cb845bc1b5952ea55fea03 + websites: + https://wirtel.be/tags/python/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://wirtel.be/tags/python/: true + last_post_title: Weekly Update, January 28, 2021 + last_post_description: Weekly Update Past Since January, I have no missions, no + customers. There is some reasons. When you work for a customer, it’s funny because + you can learn a lof of technologies. But you don’t + last_post_date: "2021-01-28T10:19:49+01:00" + last_post_link: https://wirtel.be/post/2021/01/28/2021-january-week-4-weekly-update/ + last_post_categories: [] + last_post_language: "" + last_post_guid: e8d0ea8afeb166e5d0d114e4bc893267 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-bf93d63e50915d4f359dea6711ac172d.md b/content/discover/feed-bf93d63e50915d4f359dea6711ac172d.md new file mode 100644 index 000000000..cb171eae3 --- /dev/null +++ b/content/discover/feed-bf93d63e50915d4f359dea6711ac172d.md @@ -0,0 +1,47 @@ +--- +title: Paul's Eclipse Blog +date: "1970-01-01T00:00:00Z" +description: Musings from a committer in Platform UI +params: + feedlink: https://pweclipse.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: bf93d63e50915d4f359dea6711ac172d + websites: + https://pweclipse.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - build + - eclipse + - test + relme: + https://pweclipse.blogspot.com/: true + https://pwuxtest.blogspot.com/: true + https://www.blogger.com/profile/13481600474889179891: true + last_post_title: Looking at High Availablility with Eclipse Orion + last_post_description: I've had the opportunity to do some work on Eclipse Orion + lately, and I'm really enjoying it.  There are opportunities to learn about technology + on both the server (Java and/or Nodejs) and the + last_post_date: "2014-09-12T20:40:00Z" + last_post_link: https://pweclipse.blogspot.com/2014/09/looking-at-high-availablility-with.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 30a24d4b43c88852a0f6ec7efeaae6df + score_criteria: + cats: 3 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-bfa0b603bfef2c00eb706b36373f3fde.md b/content/discover/feed-bfa0b603bfef2c00eb706b36373f3fde.md new file mode 100644 index 000000000..24a71a7b1 --- /dev/null +++ b/content/discover/feed-bfa0b603bfef2c00eb706b36373f3fde.md @@ -0,0 +1,137 @@ +--- +title: Dda Debit Charming +date: "2024-03-13T08:04:43-07:00" +description: Dda Debit vs IT Carrie at it best. +params: + feedlink: https://peraktotoalternatif.blogspot.com/feeds/posts/default + feedtype: atom + feedid: bfa0b603bfef2c00eb706b36373f3fde + websites: + https://peraktotoalternatif.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Its Like Dda Debit Before + last_post_description: "" + last_post_date: "2021-04-10T11:12:28-07:00" + last_post_link: https://peraktotoalternatif.blogspot.com/2021/04/its-like-dda-debit-before.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 2a4384630a46b81c18143c628f5ed4c3 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-bfc3b7e7d4b0b1090811a54a8ac7b280.md b/content/discover/feed-bfc3b7e7d4b0b1090811a54a8ac7b280.md new file mode 100644 index 000000000..fb2e2c3e6 --- /dev/null +++ b/content/discover/feed-bfc3b7e7d4b0b1090811a54a8ac7b280.md @@ -0,0 +1,47 @@ +--- +title: schuldei.org +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://schuldei.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: bfc3b7e7d4b0b1090811a54a8ac7b280 + websites: + https://schuldei.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Debian + - Debian Debconf + - GTD + - workmeetings + relme: + https://schuldei.blogspot.com/: true + https://www.blogger.com/profile/15099903911534660058: true + last_post_title: Spotify on Linux + last_post_description: After several years of only having Windows and Mac clients, + we at Spotify are really excited to release a qt-based Linux desktop client. The + port was quite smooth after all the work we’ve done for + last_post_date: "2010-07-12T11:59:00Z" + last_post_link: https://schuldei.blogspot.com/2010/07/spotify-on-linux.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 6214df734be9bdae89929b83b78375d0 + score_criteria: + cats: 4 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-bfc4d460d56004b74ac7c5b0ec07a0ae.md b/content/discover/feed-bfc4d460d56004b74ac7c5b0ec07a0ae.md deleted file mode 100644 index 463bf9e9b..000000000 --- a/content/discover/feed-bfc4d460d56004b74ac7c5b0ec07a0ae.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: mariap -date: "1970-01-01T00:00:00Z" -description: Public posts from @mariap@vivaldi.net -params: - feedlink: https://social.vivaldi.net/@mariap.rss - feedtype: rss - feedid: bfc4d460d56004b74ac7c5b0ec07a0ae - websites: - https://social.vivaldi.net/@mariap: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://vivaldi.com/team/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-bfd3aa79fa9284d7e31fac72716d7db7.md b/content/discover/feed-bfd3aa79fa9284d7e31fac72716d7db7.md new file mode 100644 index 000000000..3ad0e96ea --- /dev/null +++ b/content/discover/feed-bfd3aa79fa9284d7e31fac72716d7db7.md @@ -0,0 +1,42 @@ +--- +title: My Mobile Blog +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://jabhay832.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: bfd3aa79fa9284d7e31fac72716d7db7 + websites: + https://jabhay832.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://jabhay832.blogspot.com/: true + https://mlalic.blogspot.com/: true + https://www.blogger.com/profile/15030366957025845249: true + last_post_title: More tests + last_post_description: Testing! + last_post_date: "2010-02-18T17:17:00Z" + last_post_link: https://jabhay832.blogspot.com/2010/02/more-tests.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 4d43d6fb996245d6d8b476cbe082fb9f + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-bfde12abfc051fa233069098b889eb00.md b/content/discover/feed-bfde12abfc051fa233069098b889eb00.md deleted file mode 100644 index 87dba193d..000000000 --- a/content/discover/feed-bfde12abfc051fa233069098b889eb00.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Comments for The Dangling Pointer -date: "1970-01-01T00:00:00Z" -description: Sh*t my brain says and forgets about -params: - feedlink: https://aaron.blog/comments/feed/ - feedtype: rss - feedid: bfde12abfc051fa233069098b889eb00 - websites: - https://aaron.blog/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Hobbies, Accessories, and Unrealized Potential by Chrissie - last_post_description: I run into the same issue. Right now I'm into learning macrame, - and my way of handling it is to not start another thing until I use up the current - cord. Even if I'm only using the last scraps to - last_post_date: "2022-09-15T17:22:59Z" - last_post_link: https://aaron.blog/2022/09/14/hobbies-accessories-and-unrealized-potential/#comment-5771 - last_post_categories: [] - last_post_guid: e6d301c04a90fe53df8bd551c991a325 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-bfe0306ba38272efa1b6d90baa67f459.md b/content/discover/feed-bfe0306ba38272efa1b6d90baa67f459.md deleted file mode 100644 index 549f252e3..000000000 --- a/content/discover/feed-bfe0306ba38272efa1b6d90baa67f459.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: openstack on kaplonski.pl -date: "1970-01-01T00:00:00Z" -description: Recent content in openstack on kaplonski.pl -params: - feedlink: https://kaplonski.pl/tags/openstack/index.xml - feedtype: rss - feedid: bfe0306ba38272efa1b6d90baa67f459 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Using eBPF to trace OpenStack services - last_post_description: eBPF - what is it? eBPF stands for extended Berkeley Packet - Filter and it allows write and run eBPF programs in the virtual machine inside - the Linux kernel. More about it can be found for example on - last_post_date: "2021-08-29T18:25:25+02:00" - last_post_link: http://kaplonski.pl/blog/ebpf-tracing/ - last_post_categories: [] - last_post_guid: fd775df9c129f92a56659f683c9c1deb - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-bfe8aaae2e17eb850fdc88b362db60d0.md b/content/discover/feed-bfe8aaae2e17eb850fdc88b362db60d0.md deleted file mode 100644 index 635ce2544..000000000 --- a/content/discover/feed-bfe8aaae2e17eb850fdc88b362db60d0.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Hugh's Homepage -date: "1970-01-01T00:00:00Z" -description: Digital odds and ends... -params: - feedlink: https://hugh.blemings.id.au/feed/ - feedtype: rss - feedid: bfe8aaae2e17eb850fdc88b362db60d0 - websites: - https://hugh.blemings.id.au/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Open - - Tech - - Uncategorized - relme: {} - last_post_title: Missing Everything Open 2024 :/ - last_post_description: This week sees the second Everything Open conference being - held in Gladstone, Queensland. Alas I’m not there :/ I’ve had the good fortune - to attend CALU-99 as well as something like 20+ years of - last_post_date: "2024-04-15T09:19:34Z" - last_post_link: https://hugh.blemings.id.au/2024/04/15/missing-everything-open-2024/ - last_post_categories: - - Open - - Tech - - Uncategorized - last_post_guid: 8eca7b927b5ed36802c1bade90991a3c - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-bfebbef5353758a0ebc722bc958583d6.md b/content/discover/feed-bfebbef5353758a0ebc722bc958583d6.md deleted file mode 100644 index f7bac427a..000000000 --- a/content/discover/feed-bfebbef5353758a0ebc722bc958583d6.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Leon Mika -date: "1970-01-01T00:00:00Z" -description: Public posts from @lmika@social.lol -params: - feedlink: https://social.lol/@lmika.rss - feedtype: rss - feedid: bfebbef5353758a0ebc722bc958583d6 - websites: - https://social.lol/@lmika: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://leonmika.com/: true - https://lmika.org/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-bff8f72838932fe70635076dffce1758.md b/content/discover/feed-bff8f72838932fe70635076dffce1758.md deleted file mode 100644 index 2e0373c91..000000000 --- a/content/discover/feed-bff8f72838932fe70635076dffce1758.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Comments for Another End of the World is Possible -date: "1970-01-01T00:00:00Z" -description: So the world is ending ... now what? -params: - feedlink: https://anotherendoftheworld.org/comments/feed/ - feedtype: rss - feedid: bff8f72838932fe70635076dffce1758 - websites: - https://anotherendoftheworld.org/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on I’m thinking about the Roman Empire, too. by Karen Lindquist - last_post_description: "I’m a woman and I think about the Roman Empire at least - several times a week, as do a lot of women in my life. \nWe spend a lot of time - comparing the men in our lives and who run things now to the" - last_post_date: "2023-09-26T21:21:26Z" - last_post_link: https://anotherendoftheworld.org/2023/09/26/im-thinking-about-the-roman-empire-too/comment-page-1/#comment-1434 - last_post_categories: [] - last_post_guid: 13fb17e8a8bf50c6abe35a432bbbfea9 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c06f17dda6c66f9ac75e3197246acc01.md b/content/discover/feed-c06f17dda6c66f9ac75e3197246acc01.md deleted file mode 100644 index 85e067006..000000000 --- a/content/discover/feed-c06f17dda6c66f9ac75e3197246acc01.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Sidebar For Tiny Theme -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://sidebar-for-tiny-theme.lmika.dev/feed.xml - feedtype: rss - feedid: c06f17dda6c66f9ac75e3197246acc01 - websites: - https://sidebar-for-tiny-theme.lmika.dev/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/lmika: false - https://micro.blog/lmika: false - https://twitter.com/_leonmika: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c06fd72aede4d72e54959e6f40c1d7c6.md b/content/discover/feed-c06fd72aede4d72e54959e6f40c1d7c6.md new file mode 100644 index 000000000..3df6c4656 --- /dev/null +++ b/content/discover/feed-c06fd72aede4d72e54959e6f40c1d7c6.md @@ -0,0 +1,46 @@ +--- +title: ZX Interface Z +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://zxinterfacez.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: c06fd72aede4d72e54959e6f40c1d7c6 + websites: + https://zxinterfacez.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://assassinosuicida.blogspot.com/: true + https://gta02-core-news.blogspot.com/: true + https://www.blogger.com/profile/17602200301602248416: true + https://zpuino.blogspot.com/: true + https://zxinterfacez.blogspot.com/: true + last_post_title: ZX Interface Z - The Hardware, part 3 + last_post_description: "Let's interact Welcome to the third part of the ZX Interface + Z hardware overview. On the first part\n we looked with some detail at the expansion + connector and the power \nsupplies, the second part\n " + last_post_date: "2020-12-04T16:16:00Z" + last_post_link: https://zxinterfacez.blogspot.com/2020/12/zx-interface-z-hardware-part-3.html + last_post_categories: [] + last_post_language: "" + last_post_guid: f07119a390d1427c7494a1ea934ea8ac + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c0750a533715f63a7f4286953cd35bb3.md b/content/discover/feed-c0750a533715f63a7f4286953cd35bb3.md new file mode 100644 index 000000000..574fc5540 --- /dev/null +++ b/content/discover/feed-c0750a533715f63a7f4286953cd35bb3.md @@ -0,0 +1,45 @@ +--- +title: Norio +date: "2024-06-04T17:11:10+02:00" +description: Norio = Litrik De Roy. I help you build better Android apps for smartphones, + tablets, wearables and many other devices. +params: + feedlink: https://www.norio.be/feed.xml + feedtype: atom + feedid: c0750a533715f63a7f4286953cd35bb3 + websites: + https://www.norio.be/: true + https://www.norio.be/blog/: false + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://github.com/litrik: true + https://mastodon.social/@litrik: true + https://www.norio.be/: true + last_post_title: Tomorrowland 10 + last_post_description: Version 10 of the Tomorrowland app brings hundreds of live + sets and One World Radio shows closer to you. + last_post_date: "2024-06-04T00:00:00+02:00" + last_post_link: https://www.norio.be/blog/tomorrowland-10.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 9179614e1eba74bdb2e07d7451bb39d7 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c07e16b24861e577fd5721fbe6d48884.md b/content/discover/feed-c07e16b24861e577fd5721fbe6d48884.md new file mode 100644 index 000000000..1abfbd9dd --- /dev/null +++ b/content/discover/feed-c07e16b24861e577fd5721fbe6d48884.md @@ -0,0 +1,110 @@ +--- +title: How 2 Map +date: "1970-01-01T00:00:00Z" +description: Design, Discussion and Documentation from around the Java GIS world. +params: + feedlink: https://www.how2map.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: c07e16b24861e577fd5721fbe6d48884 + websites: + https://www.how2map.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Drink-Eat-Enjoy + - api + - australia + - blogging + - book + - boundless + - ccip + - codesprint + - community + - conference + - csw + - developers guide + - documentation + - eclipse + - esri + - foss4g + - foss4gna + - funny + - geoapi + - georabble + - geoserver + - geotools + - git + - history + - incubation + - java + - java apple + - java.net + - jdk + - jts + - latinoware + - lisasoft + - locationtech + - mac + - maven + - netbeans + - ogc + - opengeo + - openlayers + - osgeo + - osgeo livedvd lisasoft + - osgeolive + - osm + - parsing + - picture + - picutre + - pycsw + - qgis + - rcp + - rectangle + - refractions + - schema + - standards + - udig + - udig release + - user guide + - version hell + - welcome + - win32 + - wps + - xml + - xsd + relme: + https://www.blogger.com/profile/10376195727731958785: true + https://www.how2map.com/: true + last_post_title: FOSS4G 2018 + last_post_description: In keeping with conference theme of leave no-one behind the + highlight of the event for me was going around the main auditorium asking and + taking photos of so many wonderful beautiful people. + last_post_date: "2018-11-01T05:22:00Z" + last_post_link: https://www.how2map.com/2018/11/foss4g-2018.html + last_post_categories: + - foss4g + - geoserver + - geotools + - locationtech + - osgeo + last_post_language: "" + last_post_guid: 15d4a30965ed8591371a38d5d6474b8c + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c08ce89fea9ba4eeaeeb6a876090cf6a.md b/content/discover/feed-c08ce89fea9ba4eeaeeb6a876090cf6a.md new file mode 100644 index 000000000..7865bd904 --- /dev/null +++ b/content/discover/feed-c08ce89fea9ba4eeaeeb6a876090cf6a.md @@ -0,0 +1,44 @@ +--- +title: Serge Beauchamp +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://sergebeauchamp.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: c08ce89fea9ba4eeaeeb6a876090cf6a + websites: + https://sergebeauchamp.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://sergebeauchamp.blogspot.com/: true + https://sergesanswers.blogspot.com/: true + https://www.blogger.com/profile/07166227267587165456: true + last_post_title: Have you missed this presentation? + last_post_description: 'Have you missed ''Deadlocks: the beginning of the end" at + EclipseCon last week?Here''s your chance of having your own personal copy in high + definition!' + last_post_date: "2011-03-28T18:21:00Z" + last_post_link: https://sergebeauchamp.blogspot.com/2011/03/have-you-missed-this-presentation.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 0cb98169d6ba5e6cb66eb93072489724 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c0cd335b59af2db77d38752886bc4eca.md b/content/discover/feed-c0cd335b59af2db77d38752886bc4eca.md index 3d4524e3d..6287df343 100644 --- a/content/discover/feed-c0cd335b59af2db77d38752886bc4eca.md +++ b/content/discover/feed-c0cd335b59af2db77d38752886bc4eca.md @@ -13,6 +13,9 @@ params: recommender: [] categories: [] relme: + https://dotsony.blogspot.com/: true + https://dotsonyraceblog.blogspot.com/: true + https://dotsonytinkerblog.blogspot.com/: true https://www.blogger.com/profile/17046865031973847470: true last_post_title: Dusting off the cobwebs... last_post_description: |- @@ -22,17 +25,22 @@ params: last_post_date: "2015-02-19T10:08:00Z" last_post_link: https://dotsonyraceblog.blogspot.com/2015/02/dusting-off-cobwebs.html last_post_categories: [] + last_post_language: "" last_post_guid: 61c7880178153d996670754acd51d585 score_criteria: cats: 0 description: 0 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 7 + score: 10 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-c0d67f3b66315b9c3fd0267fcbcfdef5.md b/content/discover/feed-c0d67f3b66315b9c3fd0267fcbcfdef5.md new file mode 100644 index 000000000..28cfe3edf --- /dev/null +++ b/content/discover/feed-c0d67f3b66315b9c3fd0267fcbcfdef5.md @@ -0,0 +1,42 @@ +--- +title: Commentaires pour [Nÿco's blog] open standards & free/libre/opensource +date: "1970-01-01T00:00:00Z" +description: XMPP/Jabber is coming back, and is here to stay! +params: + feedlink: https://nyco.wordpress.com/comments/feed/ + feedtype: rss + feedid: c0d67f3b66315b9c3fd0267fcbcfdef5 + websites: + https://nyco.wordpress.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://nyco.wordpress.com/: true + last_post_title: Commentaires sur 3 gens of IM, next steps for XMPP par The true + awakening of XMPP | [Nÿco's blog] open standards & free/libre/opensource + last_post_description: '[…] 3 gens of IM, next s… sur FOSDEM 2016: The State of + XMPP… […]' + last_post_date: "2016-06-07T16:14:45Z" + last_post_link: https://nyco.wordpress.com/2016/04/21/3-gens-of-im-next-steps-for-xmpp/#comment-11824 + last_post_categories: [] + last_post_language: "" + last_post_guid: bba625659db515baa1a1043f94f9e626 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c0feca45ddc5eb8840196c07ffc65967.md b/content/discover/feed-c0feca45ddc5eb8840196c07ffc65967.md deleted file mode 100644 index 17924ab8f..000000000 --- a/content/discover/feed-c0feca45ddc5eb8840196c07ffc65967.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Jarrod Blundy -date: "1970-01-01T00:00:00Z" -description: A simple internet typist. I play outside. -params: - feedlink: https://jb.heydingus.net/podcast.xml - feedtype: rss - feedid: c0feca45ddc5eb8840196c07ffc65967 - websites: - https://jarrod.micro.blog/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Society & Culture - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 1 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 8 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-c1414cca427b43b056d8b9efe679ca74.md b/content/discover/feed-c1414cca427b43b056d8b9efe679ca74.md new file mode 100644 index 000000000..25414a198 --- /dev/null +++ b/content/discover/feed-c1414cca427b43b056d8b9efe679ca74.md @@ -0,0 +1,137 @@ +--- +title: My Village Area Code +date: "2024-02-08T07:18:13-08:00" +description: Please keep visiting to blogspot and get information about area code. +params: + feedlink: https://posadzoneizjedzone.blogspot.com/feeds/posts/default + feedtype: atom + feedid: c1414cca427b43b056d8b9efe679ca74 + websites: + https://posadzoneizjedzone.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Country Area Code + last_post_description: "" + last_post_date: "2022-01-16T01:15:43-08:00" + last_post_link: https://posadzoneizjedzone.blogspot.com/2022/01/country-area-code.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 644f989e4f63609fe064274f6860404a + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c1433454a82eae16facb2ce1421aaa5a.md b/content/discover/feed-c1433454a82eae16facb2ce1421aaa5a.md index 2917f658d..472064cd2 100644 --- a/content/discover/feed-c1433454a82eae16facb2ce1421aaa5a.md +++ b/content/discover/feed-c1433454a82eae16facb2ce1421aaa5a.md @@ -13,31 +13,36 @@ params: recommender: - https://frankmeeuwsen.com/feed.xml categories: - - Change - - Organisatieverandering - - Zelforganisatie + - Ethiek + - Film + - Kunstmatige Intelligentie relme: {} - last_post_title: Klaas Ariaans over ‘de sprong’ naar zelforganisatie bij ABN AMRO + last_post_title: The Capture last_post_description: |- - Klaas Ariaans was jarenlang directeur Personal Banking bij ABN AMRO. In 2017 heeft hij in één dag 95% van het […] - Het bericht Klaas Ariaans over ‘de sprong’ naar zelforganisatie bij ABN AMRO - last_post_date: "2024-05-31T11:59:36Z" - last_post_link: https://koneksa-mondo.nl/2024/05/31/klaas-ariaans-over-de-sprong-naar-zelforganisatie-bij-abn-amro/ + In het eerste seizoen maakten we kennis met DI Rachel Carey (gespeeld door Holliday Grainger), die onderzoek doet naar een […] + Het bericht The Capture verscheen eerst op Koneksa Mondo. + last_post_date: "2024-06-23T06:32:11Z" + last_post_link: https://koneksa-mondo.nl/2024/06/23/the-capture/ last_post_categories: - - Change - - Organisatieverandering - - Zelforganisatie - last_post_guid: 91113cf0ca09d3994a50cbdbc5843481 + - Ethiek + - Film + - Kunstmatige Intelligentie + last_post_language: "" + last_post_guid: 6b3d6a99c76dcf4334c8e50c17116128 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 16 + score: 20 ispodcast: false isnoarchive: false + innetwork: true + language: nl --- diff --git a/content/discover/feed-c1488af0350749419449d1c045ced2db.md b/content/discover/feed-c1488af0350749419449d1c045ced2db.md new file mode 100644 index 000000000..244564325 --- /dev/null +++ b/content/discover/feed-c1488af0350749419449d1c045ced2db.md @@ -0,0 +1,46 @@ +--- +title: Yeah! +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://zinosat.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: c1488af0350749419449d1c045ced2db + websites: + https://zinosat.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - fonts + relme: + https://addiofornelli.blogspot.com/: true + https://phatmuzak.blogspot.com/: true + https://www.blogger.com/profile/09970688239263362080: true + https://zinosat.blogspot.com/: true + last_post_title: snip2code + last_post_description: |- + A friend of mine is working on a new project: http://www.snip2code.com + It's very much oriented to programmers: it's the place to go when you're looking for a code snippet and you don't want to + last_post_date: "2012-10-28T10:43:00Z" + last_post_link: https://zinosat.blogspot.com/2012/10/snip2code.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 371be5ab381b718fdde0938ac4892954 + score_criteria: + cats: 1 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 11 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c14b40337647bdac7e9f656142933b20.md b/content/discover/feed-c14b40337647bdac7e9f656142933b20.md new file mode 100644 index 000000000..6240070e7 --- /dev/null +++ b/content/discover/feed-c14b40337647bdac7e9f656142933b20.md @@ -0,0 +1,44 @@ +--- +title: Alexandra's Notebook +date: "1970-01-01T00:00:00Z" +description: Looking for the rainbow +params: + feedlink: https://alexandrawolfe.ca/feed/?type=rss + feedtype: rss + feedid: c14b40337647bdac7e9f656142933b20 + websites: + https://alexandrawolfe.ca/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://alexandrawolfe.ca/: true + https://snaphappy.me/: true + https://social.lol/@alexandra: true + last_post_title: Week Notes July 1-7 + last_post_description: I missed writing this yesterday, let alone posting it, as + this weekend saw the start of our summer holidays. And, with a flotilla of naval + vessels in port for a mini (weekend) tour, we were a little + last_post_date: "2024-07-08T14:32:00Z" + last_post_link: https://alexandrawolfe.ca/week-notes-july-1-7/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 1b5a9482a7006cfd6c04e7edc8976bd0 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c15139e0f2df911eb7f7331832d5a49f.md b/content/discover/feed-c15139e0f2df911eb7f7331832d5a49f.md deleted file mode 100644 index 88c404fd5..000000000 --- a/content/discover/feed-c15139e0f2df911eb7f7331832d5a49f.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: OpenStack – Made by Mikal -date: "1970-01-01T00:00:00Z" -description: Content here is by Michael Still, mikal@stillhq.com. -params: - feedlink: https://www.madebymikal.com/category/openstack/feed/ - feedtype: rss - feedid: c15139e0f2df911eb7f7331832d5a49f - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - OpenStack - - docker - - kerbside - - kolla - - kolla-ansible - - openstack - relme: {} - last_post_title: Issues building Kolla images with recent versions of Python requests - last_post_description: 'If you find yourself having issues building Kolla docker - container images with errors like this: INFO:kolla.common.utils:Using engine: - docker INFO:kolla.common.utils:Found the container image folder' - last_post_date: "2024-06-01T01:02:58Z" - last_post_link: https://www.madebymikal.com/issues-building-kolla-images-with-recent-versions-of-python-requests/ - last_post_categories: - - OpenStack - - docker - - kerbside - - kolla - - kolla-ansible - - openstack - last_post_guid: 3ec219824ae06b17cf593c01957d33b5 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c15330028c3ffaf675bed5dbed2db7d6.md b/content/discover/feed-c15330028c3ffaf675bed5dbed2db7d6.md new file mode 100644 index 000000000..f00ad672a --- /dev/null +++ b/content/discover/feed-c15330028c3ffaf675bed5dbed2db7d6.md @@ -0,0 +1,65 @@ +--- +title: Eclipse Ruminations +date: "2024-07-05T17:13:34-04:00" +description: |- + ruminate (v). 1. To turn a matter over and over in the mind. 2. To chew cud. + + The views displayed here are my own, and do not represent those of my employer. +params: + feedlink: https://eclipse-ruminations.blogspot.com/feeds/posts/default + feedtype: atom + feedid: c15330028c3ffaf675bed5dbed2db7d6 + websites: + https://eclipse-ruminations.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ETF + - declarative + - eclipse + - emma + - equinox + - expressions + - ide + - junit + - osgi + - plugin + - team explorer + - testing + - tfs + - visual studio + - windowtester + - xml + relme: + https://eclipse-ruminations.blogspot.com/: true + https://www.blogger.com/profile/10057954087267715667: true + last_post_title: 'Eclipse to Visual Studio 2010: What I''m Missing' + last_post_description: "" + last_post_date: "2010-12-21T15:43:18-05:00" + last_post_link: https://eclipse-ruminations.blogspot.com/2010/12/eclipse-to-visual-studio-2010-what-im.html + last_post_categories: + - eclipse + - ide + - team explorer + - tfs + - visual studio + last_post_language: "" + last_post_guid: 7eaacd5dc34f7f1ee0828835c6a7b3aa + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c18b1eca14613e71aae809f3a9455e85.md b/content/discover/feed-c18b1eca14613e71aae809f3a9455e85.md new file mode 100644 index 000000000..80a2520a1 --- /dev/null +++ b/content/discover/feed-c18b1eca14613e71aae809f3a9455e85.md @@ -0,0 +1,62 @@ +--- +title: Weapon versus Armor Class +date: "2024-03-12T23:22:21-04:00" +description: Inconstant blogger +params: + feedlink: https://frotz.weaponvsac.space/feeds/posts/default + feedtype: atom + feedid: c18b1eca14613e71aae809f3a9455e85 + websites: + https://frotz.weaponvsac.space/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - "1066" + - Anatola + - Annar + - Apollyon 3E + - Basic 3E + - Character + - HMS Apollyon + - Halbardier + - Halberts + - Helmbarten + - RASP + - Savage Worlds + - Shadowrun + - Work In Progress + - prose.sh + relme: + https://frotz.weaponvsac.space/: true + last_post_title: Halbardier Re-spin + last_post_description: "" + last_post_date: "2023-12-24T12:30:56-05:00" + last_post_link: https://frotz.weaponvsac.space/2023/01/halbardier-re-spin.html + last_post_categories: + - Halbardier + - Helmbarten + - Work In Progress + - prose.sh + last_post_language: "" + last_post_guid: d6cce45bb7f120aabae0f5e99af9d678 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 26 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c18f87b416eef5aa986a2a59ff27c81b.md b/content/discover/feed-c18f87b416eef5aa986a2a59ff27c81b.md deleted file mode 100644 index e455a332a..000000000 --- a/content/discover/feed-c18f87b416eef5aa986a2a59ff27c81b.md +++ /dev/null @@ -1,333 +0,0 @@ ---- -title: Hogg's Research -date: "2024-06-29T04:57:37-04:00" -description: galaxies, stellar dynamics, exoplanets, and fundamental astronomy -params: - feedlink: https://www.blogger.com/feeds/10448119/posts/default?alt=atom - feedtype: atom - feedid: c18f87b416eef5aa986a2a59ff27c81b - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - cosmography - - science - - making - - electricity and magnetism - - correlation - - database - - WMAP - - Kepler - - topology - - usno-b - - P1640 - - baryon acoustic feature - - administration - - observing - - radial velocity - - mentoring - - funding - - sonification - - email - - digital camera - - radio - - kinematics - - nucleosynthesis - - plasma - - code - - linear algebra - - merging - - education - - Moon - - frequentism - - diffraction - - dark sector - - gaia - - HST - - writing - - clothing - - weapons - - Sun - - exomoon - - SDO - - swift - - flickr - - gravity - - literature - - hipparcos - - ASASSN - - astrology - - LSST - - inflation - - particle physics - - phase space - - discussion - - documentation - - seminar - - chaos monkey - - star - - bayes - - cosmology - - law - - spherex - - SVM - - gamma-ray burst - - pipeline - - 2mass - - telescope - - comet - - aliens - - vlt-sphere - - storytime - - theory - - LTFDFCF - - refereeing - - bullshit - - ultraviolet - - reproducibility - - press - - information - - deep learning - - astrobiology - - apass - - JWST - - Earth - - hacking - - PHAT - - nuclear physics - - ZTF - - philosophy - - rant - - Fermi - - open science - - dragonfly - - intelligence - - time - - FRBs - - Planck - - Bart - - Cassini - - classification - - Local Group - - thinking - - point cloud - - engineering - - game - - travel - - proper motion - - PLATO - - spectroscopy - - roweis - - planet - - archetype - - semantics - - citizen science - - VLA - - meta data - - atlas - - visualization - - rave - - geology - - learning - - editing - - balloon - - MCMC - - asteroseismology - - text - - statistics - - neuroscience - - string theory - - proposal - - emotions - - NuSTAR - - intergalactic medium - - catalog - - galaxy - - volcanism - - LMIRcam - - supernova - - drinking - - teaching - - experiment - - compressed sensing - - calibration - - Chandra - - LISA - - post-starburst - - photometry - - binary star - - environment - - ALMA - - signal processing - - Gaussian process - - testing - - eating - - music - - gravitational lensing - - API - - HMF - - model - - quantum mechanics - - sound - - Euclid - - biology - - water - - cosmic ray - - scattering - - clustering - - chemistry - - geometry - - interferometry - - optimization - - galex - - outreach - - osss - - TESS - - ethnography - - point-spread function - - atomic physics - - LAMOST - - amateur - - anthropic - - reading - - DESI - - farm machinery - - sailing - - LIGO - - causation - - minor planet - - selection function - - CoRoT - - quasar - - halo - - robot - - anthropology - - mathematics - - transparency - - polemic - - Saturn - - star formation - - WFIRST - - Solar System - - graphical model - - history - - ring - - talking - - CDM - - ukidss - - not research - - diagnosis - - x-ray - - web 2.0 - - density estimation - - practice - - computing - - group theory - - nasa - - astrometry - - climate - - combinatorics - - regret - - handicapping - - TheCannon - - relativity - - architecture - - design - - units - - compression - - wise - - thresher - - life - - HARPS - - regression - - evolution - - ad hockery - - archive - - disk - - dust - - condensed matter - - PTF - - advice - - daft - - dynamics - - demographics - - brown dwarf - - spitzer - - virtual observatory - - cluster - - fundamental astronomy - - gambling - - pulsar - - GALAH - - coffee - - meeting - - thermodynamics - - frisbee - - polarization - - accretion - - dissertation - - phone - - tractor - - Herschel - - KNN - - black hole - - exoplanet - - confusion - - charge-coupled device - - weather - - ethics - - large-scale structure - - EXPRES - - causality - - LHC - - search - - game theory - - gastrophysics - - sdss - - Milky Way - - primus - - askap - - group meeting - - hardware - - decision - - microscopy - - Terra Hunting - - optics - - gauge - - panstarrs - - Willman 1 - - procrastination - - data - - project management - - parallax - - imaging - - substructure - - noise - - interpolation - - fail - - machine learning - - politics - - interstellar medium - - social media - - white dwarf - relme: {} - last_post_title: submitted! - last_post_description: "" - last_post_date: "2024-03-16T16:28:07-04:00" - last_post_link: https://hoggresearch.blogspot.com/2024/03/submitted.html - last_post_categories: [] - last_post_guid: 2c2052ffe333b90bdd80af116198b350 - score_criteria: - cats: 5 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c195ea1a4bc42a393b6ead6d8bb48ed5.md b/content/discover/feed-c195ea1a4bc42a393b6ead6d8bb48ed5.md deleted file mode 100644 index 68c9dd68e..000000000 --- a/content/discover/feed-c195ea1a4bc42a393b6ead6d8bb48ed5.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: OpenStack Blog | Open Infrastructure Foundation -date: "1970-01-01T00:00:00Z" -description: The latest news and information for the OpenStack Community. -params: - feedlink: https://www.openstack.org/blog/feed/ - feedtype: rss - feedid: c195ea1a4bc42a393b6ead6d8bb48ed5 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Uncategorized - relme: {} - last_post_title: OpenStack global footprint exceeds 45 million compute cores as - users tackle common obstacles - last_post_description: The 10th iteration of the OpenStack User Survey highlights - expanding footprint of OpenStack clouds, reinforcing architecture trends and introducing - new usage patterns   Over the past 10 years, over - last_post_date: "2023-11-16T16:05:01Z" - last_post_link: https://www.openstack.org/blog/openstack-global-footprint-exceeds-45-million-compute-cores-as-users-tackle-common-obstacles/ - last_post_categories: - - Uncategorized - last_post_guid: 72b7d8608fa2a2ffdebb829696481f09 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 7 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c1c2d130176e83230dd2ab27f189ec9c.md b/content/discover/feed-c1c2d130176e83230dd2ab27f189ec9c.md deleted file mode 100644 index 5782b0cf0..000000000 --- a/content/discover/feed-c1c2d130176e83230dd2ab27f189ec9c.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Julia Evans -date: "1970-01-01T00:00:00Z" -description: Public posts from @b0rk@mastodon.social -params: - feedlink: https://mastodon.social/@b0rk.rss - feedtype: rss - feedid: c1c2d130176e83230dd2ab27f189ec9c - websites: - https://mastodon.social/@b0rk: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://jvns.ca/: false - https://wizardzines.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c1d0343d0b74728874973e7fa0c552f7.md b/content/discover/feed-c1d0343d0b74728874973e7fa0c552f7.md deleted file mode 100644 index fd69f60c6..000000000 --- a/content/discover/feed-c1d0343d0b74728874973e7fa0c552f7.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Nathalie Lawhead (alienmelon) -date: "1970-01-01T00:00:00Z" -description: Public posts from @alienmelon@mastodon.social -params: - feedlink: https://mastodon.social/@alienmelon.rss - feedtype: rss - feedid: c1d0343d0b74728874973e7fa0c552f7 - websites: - https://mastodon.social/@alienmelon: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://alienmelon.itch.io/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c1dae64d5f4ebe0b4565331e9e0dfd60.md b/content/discover/feed-c1dae64d5f4ebe0b4565331e9e0dfd60.md new file mode 100644 index 000000000..bc2283d67 --- /dev/null +++ b/content/discover/feed-c1dae64d5f4ebe0b4565331e9e0dfd60.md @@ -0,0 +1,49 @@ +--- +title: Python Academy +date: "2024-07-06T01:12:47-07:00" +description: "" +params: + feedlink: https://python-academy.blogspot.com/feeds/posts/default + feedtype: atom + feedid: c1dae64d5f4ebe0b4565331e9e0dfd60 + websites: + https://python-academy.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Brussels + - EuroSciPy + - HDF5 + - PyCon + - conferences + - courses + - matplotlib + - science + - tutorials + relme: + https://python-academy.blogspot.com/: true + last_post_title: Learn Python and SQLAlchemy in Antwerp, Belgium + last_post_description: "" + last_post_date: "2012-10-24T03:44:08-07:00" + last_post_link: https://python-academy.blogspot.com/2012/10/learn-python-and-sqlalchemy-in-antwerp.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 050c5c631c51759cee76c2009c919631 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c1fce0e41048d0b6fbaedb3c1e853079.md b/content/discover/feed-c1fce0e41048d0b6fbaedb3c1e853079.md new file mode 100644 index 000000000..1a94459f9 --- /dev/null +++ b/content/discover/feed-c1fce0e41048d0b6fbaedb3c1e853079.md @@ -0,0 +1,75 @@ +--- +title: Notes from Underground ... +date: "1970-01-01T00:00:00Z" +description: Notes about Ubuntu and Debian development. +params: + feedlink: https://ncommander.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: c1fce0e41048d0b6fbaedb3c1e853079 + websites: + https://ncommander.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - android + - arm + - armel + - bootstrap + - d-i + - dak + - debian + - dependnencies + - gcc + - goals + - hlfs + - life + - lpia + - panda + - pie + - porting + - ports + - security + - specs + - touch + - travel + - trusted-computing + - ubuntu + - ubuntu-mid + - video + - wii + - wiibuntu + relme: + https://mile-stretcher.blogspot.com/: true + https://ncommander.blogspot.com/: true + https://spanish90.blogspot.com/: true + https://www.blogger.com/profile/17676152296271896899: true + last_post_title: 'Spanish or Bust: Attaining fluency in 90 days or else ...' + last_post_description: |- + "How do you have an adventure?" + + "You take a stupid idea, and follow through ..." + + Perhaps, I've truly lost my mind for once, but I've decided to embark on a personal project to try and achieve some + last_post_date: "2013-06-29T01:38:00Z" + last_post_link: https://ncommander.blogspot.com/2013/06/spanish-or-bust-attaining-fluency-in-90.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 21a6bd1428ad265b93ad271332f733e9 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c201df417dd8886513df9f0dc9d86128.md b/content/discover/feed-c201df417dd8886513df9f0dc9d86128.md deleted file mode 100644 index 9cebf6bfb..000000000 --- a/content/discover/feed-c201df417dd8886513df9f0dc9d86128.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: rebeccatoh.co -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://rebeccatoh.co/feed - feedtype: rss - feedid: c201df417dd8886513df9f0dc9d86128 - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://alexsci.com/blog/rss.xml - categories: - - blog - relme: {} - last_post_title: solitude and humans - last_post_description: Back from Japan (reluctantly). Having a blog makes you realise - how quickly time passes. Easily a month can pass by without any new entries here. - But that month would feel like a blink to me. So I did - last_post_date: "2024-05-10T12:18:53Z" - last_post_link: https://rebeccatoh.co/solitude-and-humans/ - last_post_categories: - - blog - last_post_guid: 32fb32f8958bc3c44a7dcc1e49ceb348 - score_criteria: - cats: 0 - description: 0 - postcats: 1 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c20d1caa1d2b8211d980c7038a331537.md b/content/discover/feed-c20d1caa1d2b8211d980c7038a331537.md deleted file mode 100644 index e78e4165c..000000000 --- a/content/discover/feed-c20d1caa1d2b8211d980c7038a331537.md +++ /dev/null @@ -1,68 +0,0 @@ ---- -title: OpenStack in Production - Archives -date: "2024-06-29T00:16:13-07:00" -description: Now moved to http://techblog.web.cern.ch -params: - feedlink: https://openstack-in-production.blogspot.com/feeds/posts/default - feedtype: atom - feedid: c20d1caa1d2b8211d980c7038a331537 - websites: - https://openstack-in-production.blogspot.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - openstack - - cern - - kubernetes - - kvm - - magnum - - HS06 - - badblocks - - bsod - - ceph - - ceph openstack cern - - cern openstack hyperv kvm numa - - cinder - - cpuburn - - cvmfs - - docker - - ec2 - - eos - - fernet - - fio - - glance - - hdfs - - htcondor - - iperf. iperf3 - - ironic - - keystone - - liberty - - mesos - - mistral - - openlab - - os_type - - rackspace - - swarm - - uuid - - windows - relme: {} - last_post_title: OpenStack In Production - moving to a new home - last_post_description: "" - last_post_date: "2019-01-19T01:31:46-08:00" - last_post_link: https://openstack-in-production.blogspot.com/2019/01/openstack-in-production-moving-to-new.html - last_post_categories: [] - last_post_guid: 911195fbb25b515ed6948fd23c4456f8 - score_criteria: - cats: 5 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c221ba78fb22c90c72e4a753a8f9352f.md b/content/discover/feed-c221ba78fb22c90c72e4a753a8f9352f.md deleted file mode 100644 index 7a3b4058c..000000000 --- a/content/discover/feed-c221ba78fb22c90c72e4a753a8f9352f.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: '#CrossBorderRail' -date: "1970-01-01T00:00:00Z" -description: Run by Trains for Europe - MitOst e.V. -params: - feedlink: https://crossborderrail.trainsforeurope.eu/feed/ - feedtype: rss - feedid: c221ba78fb22c90c72e4a753a8f9352f - websites: - https://crossborderrail.trainsforeurope.eu/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - 2024 projects - - Live Blog - relme: - https://gruene.social/@jon: true - last_post_title: 'Live Blog – #CrossBorderRail South East Europe Day 06 04 Jun 2024 - – Arrival of night train, Budapest – Pécs – Beli Manastir – Osijek – Zagreb' - last_post_description: 'Jump to: Text updates | Summary videos | Latest photos | - Today’s background | Today’s route   The best way to follow #CrossBorderRail as - the trip develops is on social mediaThere are always' - last_post_date: "2024-06-04T00:00:24Z" - last_post_link: https://crossborderrail.trainsforeurope.eu/day06/ - last_post_categories: - - 2024 projects - - Live Blog - last_post_guid: 3da5cc326ce69eb3d1b45525331544f7 - score_criteria: - cats: 0 - description: 3 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 12 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c229954a34c8d9d4152cd4d0ee8a93b1.md b/content/discover/feed-c229954a34c8d9d4152cd4d0ee8a93b1.md new file mode 100644 index 000000000..4b9cb08d0 --- /dev/null +++ b/content/discover/feed-c229954a34c8d9d4152cd4d0ee8a93b1.md @@ -0,0 +1,45 @@ +--- +title: Eclipse Buckminster +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://eclipse-buckminster.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: c229954a34c8d9d4152cd4d0ee8a93b1 + websites: + https://eclipse-buckminster.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://eclipse-buckminster.blogspot.com/: true + https://henrik-eclipse.blogspot.com/: true + https://henrik-lindberg.blogspot.com/: true + https://www.blogger.com/profile/18131140901733897033: true + last_post_title: Buckminster and Corona + last_post_description: Had a very interesting meeting the other day and saw a demo + of the latest version of the Eclipse Corona collaboration project. We found some + very useful functionality that Buckminster and Corona + last_post_date: "2006-12-11T11:27:00Z" + last_post_link: https://eclipse-buckminster.blogspot.com/2006/12/had-very-interesting-meeting-other-day.html + last_post_categories: [] + last_post_language: "" + last_post_guid: c8ad1fd0c6809630a770a7e0751238e3 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c2541963888d56cd2abc66d40e26e287.md b/content/discover/feed-c2541963888d56cd2abc66d40e26e287.md new file mode 100644 index 000000000..48c6634ef --- /dev/null +++ b/content/discover/feed-c2541963888d56cd2abc66d40e26e287.md @@ -0,0 +1,48 @@ +--- +title: About Python Advocacy +date: "1970-01-01T00:00:00Z" +description: A view into my efforts as the Python Advocacy Coordinator, as we work + together to spread the good news about the Python programming language and grow + the community. +params: + feedlink: https://python-advocacy.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: c2541963888d56cd2abc66d40e26e287 + websites: + https://python-advocacy.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - OSCON + - screencasts + - unconference + relme: + https://python-advocacy.blogspot.com/: true + last_post_title: Texas Python Unconference - Sep 15/16 + last_post_description: The first regional Python unconference is coming to Houston + on September 15-16 (Sat-Sun). Being held at the Texas Learning & Computing Center + on the University of Houston main campus, this is a FREE + last_post_date: "2007-09-03T09:30:00Z" + last_post_link: https://python-advocacy.blogspot.com/2007/09/texas-python-unconference-sep-1516.html + last_post_categories: + - unconference + last_post_language: "" + last_post_guid: 97f00a1843a4c2588c78c2eb4071575d + score_criteria: + cats: 3 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c2763b08fa858b783b2bd7965048bfb0.md b/content/discover/feed-c2763b08fa858b783b2bd7965048bfb0.md deleted file mode 100644 index cad296a3e..000000000 --- a/content/discover/feed-c2763b08fa858b783b2bd7965048bfb0.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Hidde -date: "1970-01-01T00:00:00Z" -description: Public posts from @hdv@front-end.social -params: - feedlink: https://front-end.social/@hdv.rss - feedtype: rss - feedid: c2763b08fa858b783b2bd7965048bfb0 - websites: - https://front-end.social/@hdv: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://hidde.blog/: true - https://log.hidde.blog/: true - https://talks.hiddedevries.nl/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c278d76e4fd06eecedc37bb7010f7f34.md b/content/discover/feed-c278d76e4fd06eecedc37bb7010f7f34.md deleted file mode 100644 index 399a3a9cd..000000000 --- a/content/discover/feed-c278d76e4fd06eecedc37bb7010f7f34.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Clifford Beshers -date: "1970-01-01T00:00:00Z" -description: Never let the daily grind make the amazing into the mundane. -params: - feedlink: https://cliffordbeshers.micro.blog/podcast.xml - feedtype: rss - feedid: c278d76e4fd06eecedc37bb7010f7f34 - websites: - https://cliffordbeshers.micro.blog/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Society & Culture - relme: - https://micro.blog/cliffordbeshers: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 1 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 10 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-c2852d793e0edd5258dbae860c41b1e5.md b/content/discover/feed-c2852d793e0edd5258dbae860c41b1e5.md deleted file mode 100644 index cdaa794a8..000000000 --- a/content/discover/feed-c2852d793e0edd5258dbae860c41b1e5.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: gRegorLove.com -date: "2024-06-03T00:44:00Z" -description: "" -params: - feedlink: https://gregorlove.com/articles.atom - feedtype: atom - feedid: c2852d793e0edd5258dbae860c41b1e5 - websites: - https://gregorlove.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://hacdias.com/feed.xml - categories: [] - relme: - https://fed.brid.gy/r/https:/gregorlove.com/: false - https://github.com/gRegorLove: true - https://keybase.io/gregorlove: true - https://micro.blog/gRegorLove: false - https://twitter.com/gRegorLove: false - last_post_title: Adventures in Jury Duty - last_post_description: "" - last_post_date: "2024-06-03T00:44:00Z" - last_post_link: https://gregorlove.com/2024/06/adventures-in-jury-duty/ - last_post_categories: [] - last_post_guid: bc1129a4ff4872d366f0620eb9c0cba8 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 12 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c294940a8d909d0b21001d907888ac4d.md b/content/discover/feed-c294940a8d909d0b21001d907888ac4d.md new file mode 100644 index 000000000..e789a0697 --- /dev/null +++ b/content/discover/feed-c294940a8d909d0b21001d907888ac4d.md @@ -0,0 +1,425 @@ +--- +title: Tech insights +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://lifeofpenguin.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: c294940a8d909d0b21001d907888ac4d + websites: + https://lifeofpenguin.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 3 body problem + - 3D model + - 3D render + - AR + - ASM + - ATI Theater remote + - AWS API + - AWS EC2 + - AWS S3 + - Analytics + - Android Marshmallow + - Animation + - Arabic + - Augmented Reality + - Bengali + - Builder + - CCU + - CEDET + - CID Font + - CSS + - CWM recovery + - Chinese + - Circle Packing + - DB + - DTH + - DTH India + - DVB-C + - DVB-S + - DVB-T + - DVBSky S960 + - DWH&BI + - Dance Central + - Denon + - Denon 2113 + - EDE + - EPG + - Electronic Program Guide + - Elisp snippets + - FBP + - Facebook + - Formula Editor + - GIOChannel + - GNU Linux + - GNU/MINIX + - GeM OS + - Gujarati + - HP3545 + - HTML + - HTML entity + - HTPC + - Hebrew + - Hershey font + - Hindi + - IBM + - IBM Watson + - IDE + - IVR + - Interactive + - IoT + - JSON Path + - Japanese + - Java IDE + - Kannada + - Kent + - Kent maintenance + - Kinect + - Kinect Adventures + - Kodi + - Korean + - LISP interpreter + - LNB + - Linux + - Mi Red 2 Prime + - MinixFS + - Molly kernel + - Motion gaming + - Mozilla Readability + - Mozilla reader mode + - Multiselect + - MySQL + - OMS + - Oculus + - OffscreenWindow + - OpenCV + - Outline view + - PCB + - PDF + - PDF form + - REST API test + - RF Remote + - RO + - SDL + - SES + - SMIL + - SPICE + - STB + - SVG + - SVG 2 + - SVG animation + - SVG font + - Samsung Gear VR + - Satellite Dish + - Semantic + - TV + - Tamil + - Television + - UPnP + - VR + - VRML + - Vim + - Virtual Reality + - Water Purifier + - Windows + - XBMC + - XPath + - Xbox + - Xbox 360 + - Xbox 360 with Kinect + - Xorg + - adblock + - alembic + - amazon api + - aspell + - assembly language + - audio + - auto-suggest + - background + - bigbasket + - blank wallpaper + - bootable + - braille + - browser + - bubble graph + - build + - business intelligence + - c++ + - calc + - calculator + - call tree + - cbr + - cbz + - chronological view + - cms + - code format + - comic book reader + - comics + - comics builder + - compose emoji + - condition variable + - context menu + - cool effect + - cross-compile + - customer care + - data entry + - data science + - data warehousing + - database + - debain stretch + - debian + - desktop widget + - devanagari + - dictionary + - display engine + - donut + - draw + - drupal integration + - ebook + - ecommerce + - editing + - electronics + - elisp + - elle + - eltorrito + - emacs + - emacs theme + - emacsen + - email + - embed application + - emms + - face detection + - fancy fonts + - fastboot + - ffap + - ffmpeg + - file explorer + - filter + - find file at point + - firefox + - firefox reader view + - firefox tags + - flatten + - floating window + - flow based programming + - font-lock + - forms mode + - g++ + - gVim + - gerber + - gestures + - ghostscript + - git + - git graph + - git log + - gnu + - gnu emacs + - gnuplot + - google + - gradient + - grid-tie inverter + - grub + - grub2 + - gtk + - gtkplug + - gtksocket + - hard disk image + - hibernate + - hit-a-hint + - home appliances + - hyperbole + - i18n + - icons + - image library + - image magnifier + - inline-size + - inverter + - java + - javascript + - jee + - jiomart + - jit + - just in time + - kids + - lazy load + - learning exercise + - learning workbook + - lg tv + - librsvg + - line number + - linearized + - listenbrainz + - live preview + - magit + - magnify + - map + - matching game + - maths + - micro emacs + - minix + - minix filesystem + - miracast + - mission control + - mood lighting + - mp3 tag + - mpv + - multimedia editing + - multithread + - multitouch + - mutex + - ncurses + - nested ifdef + - netflix + - ngspice + - nmcli + - no wallpaper + - note taking + - oauth2 + - offscreen rendering + - order management system + - org-mode + - org-roam + - otc/ttc + - otf/ttf + - pattern recognition + - php + - piechart + - presentation + - print + - print CJK + - print image + - print unicode + - privacy + - pwm + - radar + - random color + - random face + - random number + - rclone + - reddit + - retail + - reveal.js + - rgb led + - rpi + - scatter plot + - schematics + - screen casting + - screen mirroring + - scribble + - senator + - shadow + - sheet music + - shell + - shop + - shopping app + - simulation + - slideshow + - slow + - snooping + - social media client + - solar + - spellcheck + - spider plot + - spreadsheet + - sprite sheet + - srecode + - stock heatmap + - streaming media + - stroke font + - surf browser + - swipe + - swype + - symbol library + - syntax-highlight + - table + - tag explorer + - tailor pattern + - telecom + - terminal + - text book + - text sort + - text wrap + - textpath + - thesaurus + - thread + - time series + - time wheel + - tinylisp + - tracking + - tramp + - transliteration + - transponder + - tree widget + - truetype font + - tshirt pattern + - tumblr + - tuning + - twitter + - type hierarchy + - url accelerator + - url hint + - vi + - video + - visualization + - vlc + - weather + - web + - webkit + - webkit2gtk + - webkitgtk2 + - webos + - wheel of time + - widget + - widgets + - wifi display + - wifi p2p + - wpa_cli + - wpa_supplicant + - wrl + - wysiwyg print + - xembed + - xfce + - xfdashboard + - xmltv + - xwidget + - ytdl + - zoom + relme: + https://lifeofpenguin.blogspot.com/: true + last_post_title: Text along a path (GNU Emacs) + last_post_description: SVG 2 specifications allows flowing text along a curve via + textPath element. This opens up possibilities for cool text effects e.g. Formula + Editor in GNU Emacs.GNU Emacs uses librsvg for SVG + last_post_date: "2024-06-22T08:44:00Z" + last_post_link: https://lifeofpenguin.blogspot.com/2024/06/text-along-path-gnu-emacs.html + last_post_categories: + - CSS + - SVG + - SVG 2 + - gnu emacs + - inline-size + - librsvg + - text wrap + - textpath + last_post_language: "" + last_post_guid: 14d38fe0eb2aff46e5edbf26e704c959 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c2ab1dab99e0098d66249884b338663c.md b/content/discover/feed-c2ab1dab99e0098d66249884b338663c.md new file mode 100644 index 000000000..6ca63f548 --- /dev/null +++ b/content/discover/feed-c2ab1dab99e0098d66249884b338663c.md @@ -0,0 +1,42 @@ +--- +title: My Mobile Blog +date: "2024-06-20T16:42:52+01:00" +description: "" +params: + feedlink: https://jabhay832.blogspot.com/feeds/posts/default + feedtype: atom + feedid: c2ab1dab99e0098d66249884b338663c + websites: + https://jabhay832.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://jabhay832.blogspot.com/: true + https://mlalic.blogspot.com/: true + https://www.blogger.com/profile/15030366957025845249: true + last_post_title: More tests + last_post_description: "" + last_post_date: "2010-02-18T18:18:25+01:00" + last_post_link: https://jabhay832.blogspot.com/2010/02/more-tests.html + last_post_categories: [] + last_post_language: "" + last_post_guid: e937ac2150941b71ae210623ec5af581 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c2b3d5348440d5e1a59a58eebd1073ac.md b/content/discover/feed-c2b3d5348440d5e1a59a58eebd1073ac.md new file mode 100644 index 000000000..79d944cf1 --- /dev/null +++ b/content/discover/feed-c2b3d5348440d5e1a59a58eebd1073ac.md @@ -0,0 +1,47 @@ +--- +title: Frederik Braun +date: "2024-07-05T00:00:00+02:00" +description: "" +params: + feedlink: https://frederikbraun.de/feeds/all.atom.xml + feedtype: atom + feedid: c2b3d5348440d5e1a59a58eebd1073ac + websites: + https://frederikbraun.de/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - misc + relme: + https://frederikbraun.de/: true + https://social.security.plumbing/@freddy: true + last_post_title: The Mozilla Monument in San Francisco + last_post_description: |- + For those who don't know, I have provided countless + contributions to the Mozilla project. This is to an extent, that I + have been added to our credits page (type about:credits into Firefox!) + more than + last_post_date: "2024-07-05T00:00:00+02:00" + last_post_link: https://frederikbraun.de/mozilla-monument.html + last_post_categories: + - misc + last_post_language: "" + last_post_guid: fefe24d8d09f9c1b961a7ebcbb70f307 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 11 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c2d8fce410dbc75ce21ee490648e1d70.md b/content/discover/feed-c2d8fce410dbc75ce21ee490648e1d70.md index e554054df..eea9de64c 100644 --- a/content/discover/feed-c2d8fce410dbc75ce21ee490648e1d70.md +++ b/content/discover/feed-c2d8fce410dbc75ce21ee490648e1d70.md @@ -13,37 +13,42 @@ params: - https://www.rhyswynne.co.uk/?well_known_recommendations=1 recommended: - https://timnash.co.uk/feed/ - - https://dwinrhys.com/feed/ + - https://www.retrogarden.co.uk/comments/feed/ - https://www.retrogarden.co.uk/feed/ - https://www.simoncox.com/feed.xml recommender: [] categories: - Digital - - My Life - - Personal + - WordPress relme: + https://dwinrhys.com/: true https://toot.wales/@rhyswynne: true - last_post_title: My Computing History - last_post_description: 'In my birthday post a few months ago (eek!) I mentioned - how I struggle to blog when things are going okay. Spoiler alert: things still - are, however I feel this place has been neglected. One of my' - last_post_date: "2024-05-21T09:51:44Z" - last_post_link: https://www.rhyswynne.co.uk/my-computing-history/ + https://www.rhyswynne.co.uk/: true + last_post_title: The Ballad of The Blogroll + last_post_description: Another lament on a web gone by. I recently had to use The + Link Manager in WordPress. For those of you who are unaware, the Link Manager + was the first high profile thing dropped from WordPress. In + last_post_date: "2024-07-02T10:22:47Z" + last_post_link: https://www.rhyswynne.co.uk/the-ballad-of-the-blogroll/ last_post_categories: - Digital - - My Life - - Personal - last_post_guid: 89809eb011c9fb07bc3a18e219c361f4 + - WordPress + last_post_language: "" + last_post_guid: 12ee8266d33532b860025871b4934e46 score_criteria: cats: 0 description: 3 - postcats: 3 + feedlangs: 1 + postcats: 2 + posts: 3 promoted: 0 promotes: 2 relme: 2 title: 3 website: 2 - score: 15 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-c2e56290b679ac8322311f5a780ae0b8.md b/content/discover/feed-c2e56290b679ac8322311f5a780ae0b8.md new file mode 100644 index 000000000..ff1b44e6f --- /dev/null +++ b/content/discover/feed-c2e56290b679ac8322311f5a780ae0b8.md @@ -0,0 +1,137 @@ +--- +title: Jesus Cheese +date: "2024-03-12T15:23:55-07:00" +description: Keep visiting to our page. +params: + feedlink: https://totonalawahid.blogspot.com/feeds/posts/default + feedtype: atom + feedid: c2e56290b679ac8322311f5a780ae0b8 + websites: + https://totonalawahid.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Love Cheese + last_post_description: "" + last_post_date: "2022-01-10T03:27:08-08:00" + last_post_link: https://totonalawahid.blogspot.com/2022/01/love-cheese.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 8ee45a32dd434e1121d1e3264553770b + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c30faf7148c5f5f8ffeb1ea52f346a37.md b/content/discover/feed-c30faf7148c5f5f8ffeb1ea52f346a37.md index 1f6c2983b..8c950acbd 100644 --- a/content/discover/feed-c30faf7148c5f5f8ffeb1ea52f346a37.md +++ b/content/discover/feed-c30faf7148c5f5f8ffeb1ea52f346a37.md @@ -11,44 +11,47 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: - - web development - - technology - - music - film + - music - photography + - technology + - web development relme: {} - last_post_title: Weeknotes 2nd June 2024 - last_post_description: Back from my holiday, jet lagged to hell, but thinking about - all the good memories.it’s a glorious day, so I’ve done the minimal amount of - gardening to earn the wine I’m now enjoying before - last_post_date: "2024-06-02T15:40:56Z" - last_post_link: https://polytechnic.co.uk/blog/2024/06/weeknotes-2nd-june-2024/ + last_post_title: Design is about humans + last_post_description: God I love this.Design is about humans, about sense-making, + systems thinking, and craft. It’s as much a process of discovery and decision-making + as it is a deep work. ChirpyLogos412 doesn’t give + last_post_date: "2024-07-03T10:25:05Z" + last_post_link: https://polytechnic.co.uk/blog/2024/07/design-is-about-humans/ last_post_categories: - - me - - home - - diary - - weeknotes - - garden - last_post_guid: dd54c4d07d8653faa9a1674d2ca15637 + - artificialintelligence + - creativity + - design + - design thinking + - quotation + - quote + - society + last_post_language: "" + last_post_guid: f52d3ffa49697e8668e5bf70e7af1439 score_criteria: cats: 5 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 19 + score: 23 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-c31423a1760d399f5a9d380651502884.md b/content/discover/feed-c31423a1760d399f5a9d380651502884.md new file mode 100644 index 000000000..398689418 --- /dev/null +++ b/content/discover/feed-c31423a1760d399f5a9d380651502884.md @@ -0,0 +1,44 @@ +--- +title: Extending Matroid Functionality Google Summer of Code 2016 +date: "2024-02-19T08:09:10-08:00" +description: "" +params: + feedlink: https://extendingmatroidfunctionality.blogspot.com/feeds/posts/default + feedtype: atom + feedid: c31423a1760d399f5a9d380651502884 + websites: + https://extendingmatroidfunctionality.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://adventuresofamathphd.blogspot.com/: true + https://extendingmatroidfunctionality.blogspot.com/: true + https://taraadrift.blogspot.com/: true + https://whenivisitedabaptistchurch.blogspot.com/: true + https://www.blogger.com/profile/03187790486376807341: true + last_post_title: Overview of what was done + last_post_description: "" + last_post_date: "2016-08-23T05:39:37-07:00" + last_post_link: https://extendingmatroidfunctionality.blogspot.com/2016/08/overview-of-what-was-done.html + last_post_categories: [] + last_post_language: "" + last_post_guid: d824888496c8f1a5a2c645e52ffef416 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c323bd243cb32521ff79535603022990.md b/content/discover/feed-c323bd243cb32521ff79535603022990.md new file mode 100644 index 000000000..8eff8ffa3 --- /dev/null +++ b/content/discover/feed-c323bd243cb32521ff79535603022990.md @@ -0,0 +1,137 @@ +--- +title: Meme expired Blogs +date: "2024-03-04T20:39:54-08:00" +description: Here we have world best blogs for you. +params: + feedlink: https://memeig.blogspot.com/feeds/posts/default + feedtype: atom + feedid: c323bd243cb32521ff79535603022990 + websites: + https://memeig.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: expired Blog + last_post_description: "" + last_post_date: "2020-02-22T12:54:28-08:00" + last_post_link: https://memeig.blogspot.com/2020/02/expired-blog.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 419387f86180247699598524f823a53f + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c324e852ef7950ea09b83fda001683c5.md b/content/discover/feed-c324e852ef7950ea09b83fda001683c5.md new file mode 100644 index 000000000..55d08a95d --- /dev/null +++ b/content/discover/feed-c324e852ef7950ea09b83fda001683c5.md @@ -0,0 +1,52 @@ +--- +title: Lições do Front +date: "2024-03-18T20:49:04-07:00" +description: "" +params: + feedlink: https://licoesdofront.blogspot.com/feeds/posts/default + feedtype: atom + feedid: c324e852ef7950ea09b83fda001683c5 + websites: + https://licoesdofront.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ajustes obrigatórios + - backup + - css + - google + - html + - lista de desejos + - power shell + - programação + - python + - recuperação + - web framework + - windows 8 + relme: + https://licoesdofront.blogspot.com/: true + last_post_title: Simplificando a vida (coisas que eu não sei se preciso mais) + last_post_description: "" + last_post_date: "2013-05-16T18:22:15-07:00" + last_post_link: https://licoesdofront.blogspot.com/2013/05/simplificando-vida-coisas-que-eu-nao.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 6c843ac3a2ed11b10f4645580d238e10 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c337fe6d31c78b644acb963fd95b76d0.md b/content/discover/feed-c337fe6d31c78b644acb963fd95b76d0.md index a52f702b9..ca6f1979c 100644 --- a/content/discover/feed-c337fe6d31c78b644acb963fd95b76d0.md +++ b/content/discover/feed-c337fe6d31c78b644acb963fd95b76d0.md @@ -8,39 +8,39 @@ params: feedid: c337fe6d31c78b644acb963fd95b76d0 websites: https://gomakethings.com/: false - https://gomakethings.com/articles: true + https://gomakethings.com/articles/: false blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: [] relme: {} - last_post_title: Every dependency is a potential vulnerability + last_post_title: The Japanese Edo period and modern web development last_post_description: |- - Every piece of code is a potential vulnerability, really. Not just dependencies. - But code that you don’t own, that’s outside your control, is particularly vulnerable. - One of the big myths of - last_post_date: "2024-06-03T10:30:00-04:00" - last_post_link: https://gomakethings.com/every-dependency-is-a-potential-vulnerability/ + Over the weekend, I read an article about the Japanese Edo period, and its culture of ecological sustainability… + Partly due to the government’s policy of not trading with outside nations, there + last_post_date: "2024-07-08T10:30:00-04:00" + last_post_link: https://gomakethings.com/the-japanese-edo-period-and-modern-web-development/ last_post_categories: [] - last_post_guid: fc7690a3e65723419a5d8e66670c00a9 + last_post_language: "" + last_post_guid: 7e488463cefa909fb00896a525299bc5 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 - website: 2 - score: 13 + website: 1 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-c3580deaa430f1abafee37f6a65870d2.md b/content/discover/feed-c3580deaa430f1abafee37f6a65870d2.md deleted file mode 100644 index 2fbbae03f..000000000 --- a/content/discover/feed-c3580deaa430f1abafee37f6a65870d2.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: frills -date: "1970-01-01T00:00:00Z" -description: Public posts from @frills@social.lol -params: - feedlink: https://social.lol/@frills.rss - feedtype: rss - feedid: c3580deaa430f1abafee37f6a65870d2 - websites: - https://social.lol/@frills: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c363ae49beb58666864fed75c730184d.md b/content/discover/feed-c363ae49beb58666864fed75c730184d.md new file mode 100644 index 000000000..1c41e4dbf --- /dev/null +++ b/content/discover/feed-c363ae49beb58666864fed75c730184d.md @@ -0,0 +1,47 @@ +--- +title: Only Python +date: "1970-01-01T00:00:00Z" +description: This blog deals almost exclusively with my Python coding activities. +params: + feedlink: https://aroberge.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: c363ae49beb58666864fed75c730184d + websites: + https://aroberge.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - crunchy + - ghop + - i18n + - pycon + - rur-ple + relme: + https://aroberge.blogspot.com/: true + last_post_title: Better NameError messages for Python + last_post_description: Python 3.11 is barely out and already the 3.12 alpha has + some improvements for NameError messages. I suspect that these will be backported + to 3.11 in time for the next release. On Ideas Python + last_post_date: "2022-10-27T19:46:00Z" + last_post_link: https://aroberge.blogspot.com/2022/10/better-nameerror-messages-for-python.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 821d9b295c4cdbd402ff23bde10b6993 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c36cccefb51dc41a2f647f7f6e744e79.md b/content/discover/feed-c36cccefb51dc41a2f647f7f6e744e79.md deleted file mode 100644 index 2b1520afb..000000000 --- a/content/discover/feed-c36cccefb51dc41a2f647f7f6e744e79.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Nicolas' Blog -date: "1970-01-01T00:00:00Z" -description: Yet another Open Source developer blog -params: - feedlink: https://ndufresne.ca/feed/ - feedtype: rss - feedid: c36cccefb51dc41a2f647f7f6e744e79 - websites: - https://ndufresne.ca/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Other - relme: {} - last_post_title: GStreamer support for the RIST Specification - last_post_description: During last few months I had the chance to work with Net - Insight implementing the RIST TR-06-1 Simple Profile support in GStreamer. You - may wonder what this specification is and were it comes from. - last_post_date: "2019-04-09T22:30:28Z" - last_post_link: https://ndufresne.ca/2019/04/gstreamer-support-for-the-rist-specification/ - last_post_categories: - - Other - last_post_guid: 320c2c4aa1e3899b564b977791d52b77 - score_criteria: - cats: 0 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c370d57708126de8ceb625b8e7fe506a.md b/content/discover/feed-c370d57708126de8ceb625b8e7fe506a.md deleted file mode 100644 index 78b01f70c..000000000 --- a/content/discover/feed-c370d57708126de8ceb625b8e7fe506a.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Ana Rodrigues -date: "1970-01-01T00:00:00Z" -description: Public posts from @anarodrigues@front-end.social -params: - feedlink: https://front-end.social/@anarodrigues.rss - feedtype: rss - feedid: c370d57708126de8ceb625b8e7fe506a - websites: - https://front-end.social/@anarodrigues: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/ohhelloana: true - https://ohhelloana.blog/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c372973a31211e4bc0ff28e60cc32363.md b/content/discover/feed-c372973a31211e4bc0ff28e60cc32363.md deleted file mode 100644 index aa9ce673a..000000000 --- a/content/discover/feed-c372973a31211e4bc0ff28e60cc32363.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: NASA -date: "1970-01-01T00:00:00Z" -description: Official National Aeronautics and Space Administration Website -params: - feedlink: https://www.nasa.gov/feed/ - feedtype: rss - feedid: c372973a31211e4bc0ff28e60cc32363 - websites: - https://www.nasa.gov/: true - https://www.nasa.gov/centers/johnson/home/index.html: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - STEM Engagement at NASA - - EPSCoR - - For Colleges & Universities - - Get Involved - - Grants & Opportunities - - ISS Research - - Learning Resources - relme: {} - last_post_title: NASA Awards University Research Projects to Support Agency Missions - last_post_description: NASA announced the recipients of the Established Program - to Stimulate Competitive Research (EPSCoR) grants, which will support scientific - and technical research projects for more than 20 universities - last_post_date: "2024-06-04T14:43:53Z" - last_post_link: https://www.nasa.gov/news-release/nasa-awards-university-research-projects-to-support-agency-missions/ - last_post_categories: - - STEM Engagement at NASA - - EPSCoR - - For Colleges & Universities - - Get Involved - - Grants & Opportunities - - ISS Research - - Learning Resources - last_post_guid: 736d67063581f0d04c5b9ed19d9d836e - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c3984746ffadec300d162e281c545a35.md b/content/discover/feed-c3984746ffadec300d162e281c545a35.md deleted file mode 100644 index c9251b26f..000000000 --- a/content/discover/feed-c3984746ffadec300d162e281c545a35.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: Molly White's Blockchain Reading List -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://www.mollywhite.net/reading/blockchain/feed.xml - feedtype: atom - feedid: c3984746ffadec300d162e281c545a35 - websites: - https://mollywhite.net/: false - https://mollywhite.net/feed: false - https://mollywhite.net/micro: false - https://mollywhite.net/reading/blockchain: true - https://mollywhite.net/reading/shortform: false - https://www.mollywhite.net/: false - https://www.mollywhite.net/feed: false - https://www.mollywhite.net/linktree: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://bsky.app/profile/molly.wiki: false - https://hachyderm.io/@molly0xfff: false - https://twitter.com/molly0xFFF: false - https://www.youtube.com/@molly0xfff: false - last_post_title: With Samourai Indictment, the DOJ is Attacking Your Financial Privacy - last_post_description: '"With Samourai Indictment, the DOJ is Attacking Your Financial - Privacy". David Z. Morris in Dark Markets on April 30, 2024.' - last_post_date: "1970-01-01T00:00:00Z" - last_post_link: https://mollywhite.net/reading/blockchain?search=With%20Samourai%20Indictment%2C%20the%20DOJ%20is%20Attacking%20Your%20Financial%20Privacy - last_post_categories: [] - last_post_guid: eab9f575e0f0f58d679f548a8efa784b - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c39968cf18d5e758160dea9ec305aa5a.md b/content/discover/feed-c39968cf18d5e758160dea9ec305aa5a.md deleted file mode 100644 index 1e04a0fda..000000000 --- a/content/discover/feed-c39968cf18d5e758160dea9ec305aa5a.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Attention Deficit Marketing Disorder (ADMD) -date: "1970-01-01T00:00:00Z" -description: A newsletter about the emotions behind marketing work. -params: - feedlink: https://www.admdnewsletter.com/rss/ - feedtype: rss - feedid: c39968cf18d5e758160dea9ec305aa5a - websites: - https://www.admdnewsletter.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - ADMD - Essays - - SEO - - marketing - relme: - https://hachyderm.io/@mariyadelano: true - last_post_title: It's Not Google's Fault. It's Yours. - last_post_description: According to a recent Google leak, we’re all to blame for - poor quality search results. Summary and thoughts on Rand Fishkin's and Mike King's - dropped dual reports on a large-scale leak of Google - last_post_date: "2024-05-28T07:17:26Z" - last_post_link: https://www.admdnewsletter.com/its-not-googles-fault-its-yours/ - last_post_categories: - - ADMD - Essays - - SEO - - marketing - last_post_guid: 25641380f0e8bd4725c04b901504df06 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 13 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c3a2d9e5284220a784df02a9f10e6f58.md b/content/discover/feed-c3a2d9e5284220a784df02a9f10e6f58.md new file mode 100644 index 000000000..8cd9de891 --- /dev/null +++ b/content/discover/feed-c3a2d9e5284220a784df02a9f10e6f58.md @@ -0,0 +1,57 @@ +--- +title: .::Selam Komputer::. +date: "2024-03-05T21:22:12-08:00" +description: "" +params: + feedlink: https://selamkomputer.blogspot.com/feeds/posts/default + feedtype: atom + feedid: c3a2d9e5284220a784df02a9f10e6f58 + websites: + https://selamkomputer.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - BlueTooth + - Computer + - Gadget + - Jaringan + - Komputer + - News + - Registry Editor + - Techno + - Ubuntu + - Wi-Fi + - Windows + relme: + https://derizal.blogspot.com/: true + https://diggingcomputers.blogspot.com/: true + https://libreofficemaster.blogspot.com/: true + https://selamkomputer.blogspot.com/: true + https://www.blogger.com/profile/09604074690410055948: true + last_post_title: Cara Mengetahui Range IP Address + last_post_description: "" + last_post_date: "2010-10-31T21:27:38-07:00" + last_post_link: https://selamkomputer.blogspot.com/2010/10/cara-mengetahui-range-ip-address.html + last_post_categories: + - Jaringan + - Komputer + last_post_language: "" + last_post_guid: 41eb225f30c7c67374a3bea3914afe18 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c3ca5648e90f830e4bece4b31f01c68f.md b/content/discover/feed-c3ca5648e90f830e4bece4b31f01c68f.md deleted file mode 100644 index 8e6432032..000000000 --- a/content/discover/feed-c3ca5648e90f830e4bece4b31f01c68f.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: mon journal - par Vincent -date: "2023-01-23T10:27:08Z" -description: mon journal - par Vincent -params: - feedlink: https://www.vuntz.net/journal/feed/rss2 - feedtype: rss - feedid: c3ca5648e90f830e4bece4b31f01c68f - websites: - https://www.vuntz.net/journal/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Travail - - openstack - relme: {} - last_post_title: SUSE Ruling the Stack in Vancouver - last_post_description: Last week during the the OpenStack Summit in Vancouver, Intel - organized a Rule the Stack contest. That's the third one, after Atlanta a year - ago and Paris six months ago. In case you missed earlier - last_post_date: "2015-05-26T00:58:00+02:00" - last_post_link: https://www.vuntz.net/journal/post/2015/05/26/SUSE-Ruling-the-Stack-in-Vancouver - last_post_categories: - - Travail - - openstack - last_post_guid: 8f18dd171379aee1491590010763cdb6 - score_criteria: - cats: 0 - description: 3 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c3cace42e8f0beb9e240037e79b7e1dd.md b/content/discover/feed-c3cace42e8f0beb9e240037e79b7e1dd.md new file mode 100644 index 000000000..631d1da08 --- /dev/null +++ b/content/discover/feed-c3cace42e8f0beb9e240037e79b7e1dd.md @@ -0,0 +1,43 @@ +--- +title: Kristoffer Balintona +date: "1970-01-01T00:00:00Z" +description: Recent content on Kristoffer Balintona +params: + feedlink: https://kristofferbalintona.me/index.xml + feedtype: rss + feedid: c3cace42e8f0beb9e240037e79b7e1dd + websites: {} + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: [] + relme: {} + last_post_title: When the Noise Falls Away + last_post_description: I found my room remarkably quiet. I returned passed sunset, + yet my suitemates hadn’t arrive at our dorm yet. I swung my room’s door open and… + nothing. Nothing grand, not that I was expecting + last_post_date: "2023-01-29T01:56:00-06:00" + last_post_link: https://kristofferbalintona.me/posts/202301290156/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 8a22af4ba9e9977b5eb29fe7c654d32e + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 0 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-c3d7a8674e24b46357e31623bc7f2ab7.md b/content/discover/feed-c3d7a8674e24b46357e31623bc7f2ab7.md index ffe8fd3fd..ec5529801 100644 --- a/content/discover/feed-c3d7a8674e24b46357e31623bc7f2ab7.md +++ b/content/discover/feed-c3d7a8674e24b46357e31623bc7f2ab7.md @@ -1,6 +1,6 @@ --- title: xkcd.com -date: "2024-06-03T00:00:00Z" +date: "2024-07-08T00:00:00Z" description: "" params: feedlink: https://xkcd.com/atom.xml @@ -15,22 +15,27 @@ params: - https://jeroensangers.com/podcast.xml categories: [] relme: {} - last_post_title: Cell Organelles + last_post_title: Number Line Branch last_post_description: "" - last_post_date: "2024-06-03T00:00:00Z" - last_post_link: https://xkcd.com/2941/ + last_post_date: "2024-07-08T00:00:00Z" + last_post_link: https://xkcd.com/2956/ last_post_categories: [] - last_post_guid: 178823e56d912af762301e0462f05ec0 + last_post_language: "" + last_post_guid: 5dc8adf286c0ad958ed8ad8ea94db983 score_criteria: cats: 0 description: 0 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 10 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-c402c16387f651795fc9ef06e352620a.md b/content/discover/feed-c402c16387f651795fc9ef06e352620a.md index fa7b8b4b0..c03196f0a 100644 --- a/content/discover/feed-c402c16387f651795fc9ef06e352620a.md +++ b/content/discover/feed-c402c16387f651795fc9ef06e352620a.md @@ -12,14 +12,10 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: [] relme: {} last_post_title: Brushed @@ -27,17 +23,22 @@ params: last_post_date: "2024-06-03T15:33:43Z" last_post_link: https://pbfcomics.com/comics/brushed/ last_post_categories: [] + last_post_language: "" last_post_guid: 6e1927d9800b8f0b3858e4c7a0f131f9 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 13 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-c4075e0894ae014c4c1c74eb691c0902.md b/content/discover/feed-c4075e0894ae014c4c1c74eb691c0902.md new file mode 100644 index 000000000..1cc158669 --- /dev/null +++ b/content/discover/feed-c4075e0894ae014c4c1c74eb691c0902.md @@ -0,0 +1,44 @@ +--- +title: Failures in Fishkeeping +date: "1970-01-01T00:00:00Z" +description: They teach with their lives. +params: + feedlink: https://failuresinfishkeeping.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: c4075e0894ae014c4c1c74eb691c0902 + websites: + https://failuresinfishkeeping.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://failuresinfishkeeping.blogspot.com/: true + https://ghcsparc.blogspot.com/: true + https://www.blogger.com/profile/08287674468193351664: true + last_post_title: 9x Cyprichromis leptosoma Mpulungu fry RIP + last_post_description: March 2011. Nine 7-day old leoptosoma fry were moved to a + 40 litre rearing tank away from the community they were born in. Fry appeared + in good condition the evening of the move, though the following + last_post_date: "2012-10-30T03:27:00Z" + last_post_link: https://failuresinfishkeeping.blogspot.com/2012/10/9x-cyprichromis-leptosoma-mpulungu-fry.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 43e5986d8f5c4781473ac44717816c76 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c40c9dda4ca77fff678082ef5907378b.md b/content/discover/feed-c40c9dda4ca77fff678082ef5907378b.md new file mode 100644 index 000000000..80a3bd089 --- /dev/null +++ b/content/discover/feed-c40c9dda4ca77fff678082ef5907378b.md @@ -0,0 +1,58 @@ +--- +title: Strangerke's Sandbox +date: "2024-05-12T08:52:26+02:00" +description: "" +params: + feedlink: https://strangerke.blogspot.com/feeds/posts/default + feedtype: atom + feedid: c40c9dda4ca77fff678082ef5907378b + websites: + https://strangerke.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Dark Things + - EFH + - GSoC + - Hopkins + - Kingdom + - MADS + - Mortevielle + - Rex + - Robin + - ScummVM + - StarTrek + - Translation + - TsAGE + - Voyeur + - Wasteland + relme: + https://strangerke.blogspot.com/: true + https://www.blogger.com/profile/12856865024254202896: true + last_post_title: Escape from Hell + last_post_description: "" + last_post_date: "2023-01-23T23:06:21+01:00" + last_post_link: https://strangerke.blogspot.com/2023/01/escape-from-hell.html + last_post_categories: + - EFH + - ScummVM + last_post_language: "" + last_post_guid: fa3319f61f17fc8516e1eeee00b0842c + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c4268fecc0076e3b8840c8501094cfdc.md b/content/discover/feed-c4268fecc0076e3b8840c8501094cfdc.md index ec97e7acc..982beab4f 100644 --- a/content/discover/feed-c4268fecc0076e3b8840c8501094cfdc.md +++ b/content/discover/feed-c4268fecc0076e3b8840c8501094cfdc.md @@ -12,82 +12,40 @@ params: recommended: [] recommender: [] categories: - - misconception - - air resistance - - energy - - gravity - - astronomy - - estimate - - textbook - - child - - dimensional analysis - - force - - high school - - mathematics - - Earth - - education research - - elementary school - - kinematics - - problem - - reading - - symmetry - - engineering - - environment - - geometry - - mechanics - - momentum - - numerical integration - - olpc - - pre-health - - rotation - - sport - - statistics - - thermodynamics - - Sun - - astrophysics - - atom - - automobile - - ballistics - - biomechanics - - classroom - - college - - contact force - - drag - - evaluation - - exam - - impedance matching - - information - - optics - - planetarium - - radiation - - regret - - scientific method - - star - - stress - - syllabus - - vector - - weight - Brahe - Copernicus + - Earth - Einstein - Galileo - Hooke - Kepler - Moon + - Sun - admissions + - air resistance - approximation - architecture - arithmetic - assessment + - astronomy + - astrophysics - atmosphere + - atom - attention + - automobile + - ballistics - bayes - bet + - biomechanics - calculus + - child + - classroom - code + - college - collision - computer - constructivism + - contact force - convection - coordinates - coriolis @@ -95,58 +53,104 @@ params: - criticism - data - diagnosis + - dimensional analysis - diversity + - drag - drawing - e-m + - education research + - elementary school - empiricism + - energy + - engineering - entropy + - environment - epistemology + - estimate + - evaluation + - exam - experimental design - feedback - fluid + - force - formal - gender - geography + - geometry - grading + - gravity + - high school - history + - impedance matching + - information - joke + - kinematics - lagrangian + - mathematics - measurement + - mechanics - memory + - misconception + - momentum - movie - neuroscience - non-inertial - nuclear physics + - numerical integration - odds + - olpc + - optics - orbit - paradox - particle physics - photometry + - planetarium - politics + - pre-health - prediction + - problem + - radiation + - reading - reading memo + - regret - rocket + - rotation + - scientific method - society - software - solid - sound - spectroscopy + - sport - spring + - star + - statistics - strain + - stress - structure + - syllabus + - symmetry - testing + - textbook + - thermodynamics - time - torque - transport - units - unschooling + - vector - vision - visualization - water - weaponry - web + - weight - writing relme: + https://hoggideas.blogspot.com/: true + https://hoggmaker.blogspot.com/: true + https://hoggresearch.blogspot.com/: true + https://hoggteaching.blogspot.com/: true https://www.blogger.com/profile/18398397408280534592: true last_post_title: girls aren't the problem; the World is the problem! last_post_description: My whole educational world is sharing this New York Times @@ -161,17 +165,22 @@ params: - gender - statistics - structure + last_post_language: "" last_post_guid: 8972f6457ea0f321d6d7f72157f294fa score_criteria: cats: 5 description: 3 + feedlangs: 0 postcats: 3 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 18 + score: 21 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-c42b3c4484c9e0555f33cb7313853c53.md b/content/discover/feed-c42b3c4484c9e0555f33cb7313853c53.md new file mode 100644 index 000000000..0c492b24c --- /dev/null +++ b/content/discover/feed-c42b3c4484c9e0555f33cb7313853c53.md @@ -0,0 +1,45 @@ +--- +title: vxlabs +date: "1970-01-01T00:00:00Z" +description: Recent content on vxlabs +params: + feedlink: https://vxlabs.com/index.xml + feedtype: rss + feedid: c42b3c4484c9e0555f33cb7313853c53 + websites: + https://vxlabs.com/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: [] + relme: {} + last_post_title: Light-weight setup of LF console file manager with image, source + code and archive previews + last_post_description: lf, or “list files”, is a single binary file manager, inspired + by the ranger file manager, but written in Go. Using this tool, you can navigate + really quickly, build up a mental model of the + last_post_date: "2024-06-01T16:12:00+02:00" + last_post_link: https://vxlabs.com/2024/06/01/gokcehan-lf-image-code-archive-previews/ + last_post_categories: [] + last_post_language: "" + last_post_guid: 05dd3f52d51dabd6799ef68f09ee8be4 + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-c43d1762327f414a184718c2ca6a96f0.md b/content/discover/feed-c43d1762327f414a184718c2ca6a96f0.md deleted file mode 100644 index 7b38ab079..000000000 --- a/content/discover/feed-c43d1762327f414a184718c2ca6a96f0.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Thoughts on automating all the things -date: "2019-11-26T15:11:44Z" -description: Thoughts and notes relating to IT deployment automation, integration, - OpenStack and other Open Source work. -params: - feedlink: https://odyssey4.me/feed.xml - feedtype: atom - feedid: c43d1762327f414a184718c2ca6a96f0 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - ansible - - optimizing - relme: {} - last_post_title: Ansible 2.7+ tag inheritance with includes - last_post_description: The Ansible 2.8 documentation about tags includes a section - about tag inheritance, explaining how it is that tags are inherited when using - include_tasks vs import_tasks. A little more explanation is - last_post_date: "2019-11-26T14:31:11Z" - last_post_link: http://odyssey4me.github.io/2019/11/26/ansible-include-tags.html - last_post_categories: - - ansible - - optimizing - last_post_guid: c13f7cf5fa7aeaca0a99326359ea577a - score_criteria: - cats: 0 - description: 3 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c443754eb11412d2e1d03fe2136549ce.md b/content/discover/feed-c443754eb11412d2e1d03fe2136549ce.md new file mode 100644 index 000000000..02c5ff29e --- /dev/null +++ b/content/discover/feed-c443754eb11412d2e1d03fe2136549ce.md @@ -0,0 +1,41 @@ +--- +title: Comments for Mi blog lah! +date: "1970-01-01T00:00:00Z" +description: Το ιστολόγιό μου +params: + feedlink: https://blog.simos.info/comments/feed/ + feedtype: rss + feedid: c443754eb11412d2e1d03fe2136549ce + websites: + https://blog.simos.info/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://blog.simos.info/: true + last_post_title: Comment on Booting up an AMD EPYC server at packet.net by jack + hicks + last_post_description: You can try something like Micro servers https://serverorbit.com/pc-and-servers/micro-server/ + last_post_date: "2024-07-08T13:35:43Z" + last_post_link: https://blog.simos.info/booting-up-an-amd-epyc-server-at-packet-net/comment-page-1/#comment-411125 + last_post_categories: [] + last_post_language: "" + last_post_guid: 49c41444df411004ed336b324bd09a81 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c44c23a0a6e05cb2cfb8542a1dff8bff.md b/content/discover/feed-c44c23a0a6e05cb2cfb8542a1dff8bff.md new file mode 100644 index 000000000..7a92eb2f6 --- /dev/null +++ b/content/discover/feed-c44c23a0a6e05cb2cfb8542a1dff8bff.md @@ -0,0 +1,44 @@ +--- +title: Torsten Grote activity +date: "2024-07-05T18:11:19Z" +description: "" +params: + feedlink: https://gitlab.com/grote.atom + feedtype: atom + feedid: c44c23a0a6e05cb2cfb8542a1dff8bff + websites: + https://gitlab.com/grote: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://blog.grobox.de/: true + https://chaos.social/@grote: true + https://github.com/grote: true + https://gitlab.com/grote: true + last_post_title: 'Torsten Grote commented on issue #2823 at F-Droid / Client' + last_post_description: 'needs to be fixed in the upstream library providing the + scanner: https://github.com/journeyapps/zxing-android-embedded' + last_post_date: "2024-07-05T18:11:19Z" + last_post_link: https://gitlab.com/fdroid/fdroidclient/-/issues/2823 + last_post_categories: [] + last_post_language: "" + last_post_guid: dc23bfa64a681fa32f137d625543dae9 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c453df845371d85150363c21e8bd5ce0.md b/content/discover/feed-c453df845371d85150363c21e8bd5ce0.md index 054918005..da21aeb0e 100644 --- a/content/discover/feed-c453df845371d85150363c21e8bd5ce0.md +++ b/content/discover/feed-c453df845371d85150363c21e8bd5ce0.md @@ -13,8 +13,7 @@ params: recommender: [] categories: [] relme: - https://github.com/nxadm: false - https://nxadm.apt-get.be/index.xml: false + https://nxadm.apt-get.be/: true last_post_title: 'Mario & Luigi: Superstar Saga (Game Boy Advance, 2003)' last_post_description: 'Mario & Luigi: Superstar Saga is a surprisingly fun game. At its core it’s a role-playing game. But you wouldn’t tell because of the amount @@ -22,17 +21,22 @@ params: last_post_date: "2024-03-21T20:40:00+01:00" last_post_link: https://nxadm.apt-get.be/posts/minute-reviews/games/mario-and-luigi-superstar-saga-gba2003/ last_post_categories: [] + last_post_language: "" last_post_guid: 9266208b6cacb6321acc6541a101a643 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 promotes: 0 - relme: 1 + relme: 2 title: 3 website: 2 - score: 9 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-c45e7c070679964af8719abb92e227c8.md b/content/discover/feed-c45e7c070679964af8719abb92e227c8.md deleted file mode 100644 index de31e88e6..000000000 --- a/content/discover/feed-c45e7c070679964af8719abb92e227c8.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Calum Ryan - Bookmarks -date: "2022-04-12T10:25:00Z" -description: "" -params: - feedlink: https://calumryan.com/feeds/bookmarks/atom - feedtype: atom - feedid: c45e7c070679964af8719abb92e227c8 - websites: - https://calumryan.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - . bookmarks . - relme: - https://fed.brid.gy/r/https:/calumryan.com/: false - https://github.com/calumryan: true - https://indieweb.org/User:Calumryan.com: false - https://micro.blog/calumryan: false - https://toot.cafe/@calumryan: false - last_post_title: CSS :has( ) A Parent Selector Now - last_post_description: "" - last_post_date: "2022-04-12T10:25:00Z" - last_post_link: https://calumryan.com/bookmarks/3588 - last_post_categories: [] - last_post_guid: 8ab63afbb629fedb666b4024cf953073 - score_criteria: - cats: 1 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c468460ef393fdbe63d9da94e5ae3b4b.md b/content/discover/feed-c468460ef393fdbe63d9da94e5ae3b4b.md new file mode 100644 index 000000000..0b776d411 --- /dev/null +++ b/content/discover/feed-c468460ef393fdbe63d9da94e5ae3b4b.md @@ -0,0 +1,129 @@ +--- +title: The Marcella Armstrong Memorial Collection +date: "2024-07-02T19:47:23-07:00" +description: Preserving Family History for Generations to Come +params: + feedlink: https://armstrong-collection.blogspot.com/feeds/posts/default + feedtype: atom + feedid: c468460ef393fdbe63d9da94e5ae3b4b + websites: + https://armstrong-collection.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Aaron Potts + - Administrivia + - Amby Potts + - Amy Potts + - Archiving + - Armstrong siblings + - Beckey Nicholson + - Big Bend Lane + - Bill Lynch + - Brian Potts + - Cameron Ford + - Camp Chedwel + - Carson Ford + - Castro Valley High School + - Chap + - Cindy Clarke + - Civil War + - Clara Bucklin + - Clara Lynch + - Clarke siblings + - Conway + - Cook Forest + - David Joy + - Dennis Armstrong + - Dick Zahner + - Don Joy + - Donald Joy + - Dora Armstrong + - Eatonville + - Ella Bucklin + - Ella Grace Findley + - Elmer Potts + - Fircrest School + - Genealogy + - Grace Potts + - H. Harrison Clarke + - Harrison Bucklin + - Haskell Road + - Hawaii 1996 + - Hazel Bucklin + - Henry Clarke + - Henry Elliot Clarke + - Highmeyer Road + - Isaac Potts + - Isabel Bucklin Clarke + - Joan Joy + - John Bucklin + - Jospeph Clarke + - Katie Ford + - Kees + - Kennewick + - Lenore Frimoth + - Linda Joy + - Marcella Armstrong + - Marshall Bucklin + - Mary Potts + - Maude Bucklin + - Organizing + - Paul R. Potts + - Preservation + - Rhoda Bucklin + - Richard Armstrong + - Richard Potts + - Ruth Beck + - Sally Potts + - Samuel Potts + - Scanning + - Shannon Ford + - Susan Zahner + - Ted Potts + - Tidioute + - Unknown date + - Veronica Potts + - W. E. Bagley + - Wedding of Brian and Amy + - Wedding of Marcella and Richard + - Wedding of Susan and Richard + - Wedding of Susan and Ted + - Wences Witkowski + - Will Clarke + - cyanotypes + relme: + https://armstrong-collection.blogspot.com/: true + https://geeklikemetoo.blogspot.com/: true + https://geekversusguitar.blogspot.com/: true + https://hodgecast.blogspot.com/: true + https://pottscast.blogspot.com/: true + https://praisecurseandrecurse.blogspot.com/: true + https://thebooksthatwroteme.blogspot.com/: true + https://www.blogger.com/profile/04401509483200614806: true + last_post_title: Library of Congress Civil War Photographs + last_post_description: "" + last_post_date: "2010-12-09T05:37:28-08:00" + last_post_link: https://armstrong-collection.blogspot.com/2010/12/library-of-congress-civil-war.html + last_post_categories: + - Civil War + last_post_language: "" + last_post_guid: 5ff78338f6a76551f0e26cd189d30fae + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c486883dd78b6b5df60db46b43dd07fe.md b/content/discover/feed-c486883dd78b6b5df60db46b43dd07fe.md new file mode 100644 index 000000000..8f1b9ad90 --- /dev/null +++ b/content/discover/feed-c486883dd78b6b5df60db46b43dd07fe.md @@ -0,0 +1,72 @@ +--- +title: Ngenet Dapat Duit +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://ngenet-dapat-duit.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: c486883dd78b6b5df60db46b43dd07fe + websites: + https://ngenet-dapat-duit.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - bisnis internet + - bisnis online + - blog + - cari duit lewat internet + - cari uang lewat internet + - internet marketing + - ngeblog dapat duit + - ngenet dapat duit + relme: + https://eclipsedriven.blogspot.com/: true + https://emfmodeling.blogspot.com/: true + https://enakmurahkenyang.blogspot.com/: true + https://koperasi-bersama.blogspot.com/: true + https://lumen.hendyirawan.com/: true + https://magentoadmin.blogspot.com/: true + https://manfaatkefir.blogspot.com/: true + https://mobileflashdev.blogspot.com/: true + https://ngenet-dapat-duit.blogspot.com/: true + https://panduanubuntu.blogspot.com/: true + https://phpajaxweb.blogspot.com/: true + https://qt-mobility.blogspot.com/: true + https://rumah-sehat-avicenna.blogspot.com/: true + https://rumahkostdijualbandung.blogspot.com/: true + https://scala-enterprise.blogspot.com/: true + https://spring-java-ee.blogspot.com/: true + https://tutorial-java-programming.blogspot.com/: true + https://ubuntucomputing.blogspot.com/: true + https://www.blogger.com/profile/05192845149798446052: true + https://xdkmobile.blogspot.com/: true + last_post_title: 'Situs Internet Marketing: Cari Duit Internet .com' + last_post_description: |- + Ada situs bagus untuk mendapatkan informasi cara membuat bisnis online di Internet... namanya Cari Duit Internet .com. + + Selalu up-to-date dengan tips-tips baru dan bermanfaat. Keren nih... + last_post_date: "2009-12-24T12:09:00Z" + last_post_link: https://ngenet-dapat-duit.blogspot.com/2009/12/situs-internet-marketing-cari-duit.html + last_post_categories: + - bisnis online + - internet marketing + last_post_language: "" + last_post_guid: f5b7cb38533fdd05f3b41c3077d9795e + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c4a40c8397c7f5f0f9586b63d79a5834.md b/content/discover/feed-c4a40c8397c7f5f0f9586b63d79a5834.md new file mode 100644 index 000000000..0f050de43 --- /dev/null +++ b/content/discover/feed-c4a40c8397c7f5f0f9586b63d79a5834.md @@ -0,0 +1,56 @@ +--- +title: スウエーデンのブログ +date: "2024-03-06T05:15:24+01:00" +description: In this blog, I'm practicing my small skills in Japanese. I'm just beginning + to learn. Please let me know when I do things wrong. Comments in English, Japanese, + Swedish, German, Norwegian, and Danish +params: + feedlink: https://suweedennoburogu.blogspot.com/feeds/posts/default + feedtype: atom + feedid: c4a40c8397c7f5f0f9586b63d79a5834 + websites: + https://suweedennoburogu.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - japanese + - japanska + - language + - språk + - 日本語 + relme: + https://enteringthefuture.blogspot.com/: true + https://pa-rull.blogspot.com/: true + https://pinkunicornblog.blogspot.com/: true + https://suweedennoburogu.blogspot.com/: true + https://www.blogger.com/profile/00056334737313092043: true + last_post_title: てんきはわるいです + last_post_description: "" + last_post_date: "2007-01-20T17:08:25+01:00" + last_post_link: https://suweedennoburogu.blogspot.com/2007/01/blog-post.html + last_post_categories: + - japanese + - japanska + - language + - språk + - 日本語 + last_post_language: "" + last_post_guid: 455ec3b2bea98af4cc12a1de492535b3 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c4a62bbec182ec27759a3505d51341ef.md b/content/discover/feed-c4a62bbec182ec27759a3505d51341ef.md index 736fd1a31..e72f77d2c 100644 --- a/content/discover/feed-c4a62bbec182ec27759a3505d51341ef.md +++ b/content/discover/feed-c4a62bbec182ec27759a3505d51341ef.md @@ -12,14 +12,12 @@ params: recommended: [] recommender: [] categories: - - uncategorized - - Gmail - Apps Script + - Gmail + - uncategorized relme: https://github.com/stmcginnis: true - https://twitter.com/SeanTMcGinnis: false https://www.ivehearditbothways.com/: true - https://www.linkedin.com/in/sean-mcginnis-4a190b1: false last_post_title: Cleaning up Gmail with App Script last_post_description: After several years working in the open source community, I’ve ended up with a lot of emails from Gerrit code reviews, Google Group mailing @@ -27,20 +25,25 @@ params: last_post_date: "2021-02-22T00:00:00Z" last_post_link: http://www.ivehearditbothways.com/uncategorized/appscript-gmail-cleanup/ last_post_categories: - - uncategorized - - Gmail - Apps Script + - Gmail + - uncategorized + last_post_language: "" last_post_guid: 9537286664172c3e7f9434bc15cb9b71 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 3 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 13 + score: 16 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-c4b565ef78657102ed8ba1e61cf7e9b0.md b/content/discover/feed-c4b565ef78657102ed8ba1e61cf7e9b0.md new file mode 100644 index 000000000..3f838b83d --- /dev/null +++ b/content/discover/feed-c4b565ef78657102ed8ba1e61cf7e9b0.md @@ -0,0 +1,45 @@ +--- +title: Alexandra's Notebook +date: "2024-07-09T03:20:36Z" +description: Looking for the rainbow +params: + feedlink: https://alexandrawolfe.ca/feed/ + feedtype: atom + feedid: c4b565ef78657102ed8ba1e61cf7e9b0 + websites: + https://alexandrawolfe.ca/: true + blogrolls: [] + recommended: [] + recommender: + - https://amerpie.lol/feed.xml + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php + categories: [] + relme: + https://alexandrawolfe.ca/: true + https://snaphappy.me/: true + https://social.lol/@alexandra: true + last_post_title: Week Notes July 1-7 + last_post_description: "" + last_post_date: "2024-07-08T15:40:03Z" + last_post_link: https://alexandrawolfe.ca/week-notes-july-1-7/ + last_post_categories: [] + last_post_language: "" + last_post_guid: ddf5e993362d18a8818b913dc2eb8516 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c4b710b2759a7e2427490c23fc0577f1.md b/content/discover/feed-c4b710b2759a7e2427490c23fc0577f1.md new file mode 100644 index 000000000..bea042ef7 --- /dev/null +++ b/content/discover/feed-c4b710b2759a7e2427490c23fc0577f1.md @@ -0,0 +1,142 @@ +--- +title: SnapChat And What Next +date: "1970-01-01T00:00:00Z" +description: Snap chat and music are tow different things +params: + feedlink: https://skinsheavytruck.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: c4b710b2759a7e2427490c23fc0577f1 + websites: + https://skinsheavytruck.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Snaps snaps + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: SnaPChat And Music + last_post_description: |- + Adolescents are leaving Facebook, and why? Since guardians + are hopping on and getting more associated with the most significant online + media stage worldwide. That doesn't mean your kids have become + last_post_date: "2021-05-04T17:50:00Z" + last_post_link: https://skinsheavytruck.blogspot.com/2021/05/snapchat-and-music.html + last_post_categories: + - Snaps snaps + last_post_language: "" + last_post_guid: 7079ea7d1fefd1b28f603c7efe976703 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c4e5eee60887bcd94baebd3f689ee70c.md b/content/discover/feed-c4e5eee60887bcd94baebd3f689ee70c.md new file mode 100644 index 000000000..369425f0d --- /dev/null +++ b/content/discover/feed-c4e5eee60887bcd94baebd3f689ee70c.md @@ -0,0 +1,54 @@ +--- +title: Cateee +date: "2024-03-13T20:50:27+01:00" +description: "" +params: + feedlink: https://cateee.blogspot.com/feeds/posts/default + feedtype: atom + feedid: c4e5eee60887bcd94baebd3f689ee70c + websites: + https://cateee.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - C + - DNS + - Internet + - Linux kernel autokernconf + - Standards + - blog + - init + - me + - ntp + - shell + - wikipedia + relme: + https://cateee.blogspot.com/: true + https://www.blogger.com/profile/15700217782948121553: true + last_post_title: 'Re: "C and multithreading"' + last_post_description: "" + last_post_date: "2007-11-09T12:29:08+01:00" + last_post_link: https://cateee.blogspot.com/2007/11/re-c-and-multithreading.html + last_post_categories: + - C + - Standards + last_post_language: "" + last_post_guid: cdf94fea90d5b5e602d344a64047d232 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c510263e05fa602246782617451af5b1.md b/content/discover/feed-c510263e05fa602246782617451af5b1.md new file mode 100644 index 000000000..51e8da836 --- /dev/null +++ b/content/discover/feed-c510263e05fa602246782617451af5b1.md @@ -0,0 +1,369 @@ +--- +title: Genealogy +date: "2024-03-07T10:55:51-08:00" +description: Links, advice and articles collected and up-dated. New links and feedback + always welcome. Click for -=INDEX=- Mastodon, Twitter +params: + feedlink: https://genweblog.blogspot.com/feeds/posts/default + feedtype: atom + feedid: c510263e05fa602246782617451af5b1 + websites: + https://genweblog.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 23&me + - 23andme + - Alsace + - Alsatian + - Ancestry + - Ancestry.com + - Armistice Day + - Army nurse + - Australia + - Autosomal DNA + - BMD + - BMDs + - Bas-Rhin + - Baysinger + - Belfort + - Bitche + - Blake + - Booth + - Boyd + - British + - Buller + - CSS + - Callaway + - Canada + - Canada West + - Celtic + - Conaway + - Conferate + - Conway + - Cowan + - DAR + - DNA + - Dane + - Danish + - Danmark + - Death records + - Denmark + - Disney + - Ellis Island + - England + - Europe + - FHC + - FHL + - FTdna + - Family History Library + - FamilySearch + - FamilyTreeDNA + - Ferguson + - FindAGrave + - France + - French + - GEDCOM + - GPS + - Genealogical Proof Standard + - Genetic Genealogy in Practice + - Ger + - German + - German research + - Germany + - Goosic + - Gothic + - Gramps + - Great Hunger + - Harbottle + - Haut-Rhin + - Holden + - Hollingsworth + - Holocaust + - ISOGG + - Ireland + - Jack + - Jamieson + - Jewish + - LDS + - Linkpendium + - Lorraine + - Lothringen + - Lutheran + - Massachusetts + - McAninch + - McBee + - McFarland + - McPhatter + - Meuse + - MitoYdna + - Mormon + - Moselle + - MyHeritage + - NARA + - Naismith + - Norwegian + - Ontario + - POW + - Pfalz + - Potato Famine + - Promethease + - Puritans + - Purple Heart + - Puslinch + - Quebec + - Robertson + - Rootsweb + - Rootsweb mail lists archives search + - Roszell + - SKCGS + - Sawyer + - Scandanavian + - Schell + - Scotch-Irish + - Scotland + - Scots + - Scottish + - Seattle + - Security + - Selkirkshire + - South Carolina + - Suseberry + - Sutterlin + - Sweden + - Swedish + - Thomas W. Jones + - Triplett + - US + - UW + - Union + - Upper Canada + - Veteran's Day + - Vosges + - WWI + - WWII + - Wainman + - Walters + - Warren County Iowa + - Washington State + - Washington State GS + - Whitby + - Wikitree + - YFull + - abbreviations + - accreditation + - acronyms + - address + - alphabet + - anthropology + - archaeology + - archive + - archive.org + - archives + - arhives + - atlas + - auDNA + - authoring + - backup + - biography + - birth + - blogs + - book + - burial records + - carte-de-viste + - cartography + - casualties + - catalog + - cemeteries + - census + - certification + - charts + - cholera + - chromosome + - churchbooks + - citations + - city directory + - civil war + - classes + - communes + - communication + - conclusion + - counties + - cousins + - death + - decipher + - design + - directories + - directory + - disasters + - disease + - divorce + - documents + - draft + - education + - email + - emigration + - enlistment + - enumeration + - epidemics + - ethics + - eudora + - evidence + - exhaustive research + - facts + - family history + - family research + - federal + - firefox + - firewall + - flu + - foreign + - forms + - forum + - free + - friends + - gazeteer + - gazeteers + - gazetteer + - gedmatch + - genealogy + - genetics + - genocide + - genome + - google + - graphics + - gravestones + - handwriting + - history + - html + - humanities + - immigrants + - immigration + - index + - influenza + - international + - jewish research + - knoppix + - land records + - language + - lectures + - linux + - list + - list archives + - lists + - literature + - locality + - maps + - marriage + - medicine + - message boards + - microfiche + - microfilm + - military + - mitosearch + - mozilla + - mtDNA + - mysteries + - naturalization + - newspapers + - newsreaders + - obituaries + - office + - opera + - organization + - original + - orphan + - paleography + - passenger lists + - pc + - pegasus + - periodicals + - photo + - podcasts + - popup + - portaits + - preservation + - primary + - professional + - proof + - prosopography + - public records + - questions + - racism + - railroad + - relatives + - research + - restoration + - scholar + - scholarship + - script + - search + - search engine + - sex + - ships + - slave + - slavery + - socialogy + - soundex + - spyware + - state + - surname + - telephone + - tests + - timelines + - tombstones + - topographical + - towns + - transcribe + - translation + - triangulation + - tutorial + - validation + - veteran + - village + - virus + - vital records + - vocabulary + - war + - war between the states + - web standards + - website + - windows + - workshops + - world + - yDNA + - ysearch + relme: + https://genweblog.blogspot.com/: true + https://linuxgrandma.blogspot.com/: true + https://mastodon.social/@valorie: true + last_post_title: 'Genetic Genealogy: Chapter 8' + last_post_description: "" + last_post_date: "2021-05-05T10:00:00-07:00" + last_post_link: https://genweblog.blogspot.com/2021/05/genetic-genealogy-chapter-8.html + last_post_categories: + - DNA + - citations + - conclusion + - evidence + - proof + last_post_language: "" + last_post_guid: 45fe6937b3d363209d0385d8c52e80d7 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c5125ac16495fcab4fd4193d2eb4e6cf.md b/content/discover/feed-c5125ac16495fcab4fd4193d2eb4e6cf.md deleted file mode 100644 index 0cb71e5fc..000000000 --- a/content/discover/feed-c5125ac16495fcab4fd4193d2eb4e6cf.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Artcasting test feed -date: "2023-11-21T16:55:29Z" -description: A feed to test sending art around the net with RSS 2.0 enclosure elements. -params: - feedlink: http://scripting.com/misc/artfeed.xml - feedtype: rss - feedid: c5125ac16495fcab4fd4193d2eb4e6cf - websites: {} - blogrolls: [] - recommended: [] - recommender: - - https://colinwalker.blog/dailyfeed.xml - - https://colinwalker.blog/livefeed.xml - categories: [] - relme: {} - last_post_title: A ChatGPT diagram of artcasting - last_post_description: After explaining the idea of artcasting, I asked ChatGPT - to draw me a schematic. This is what it came up with. Some people focus on how - wrong it is, but we're watching a mind develop. A few weeks ago - last_post_date: "2023-11-21T16:55:29Z" - last_post_link: https://chat.openai.com/share/cfc1eefe-7c8c-4281-8ea9-4258bc980387/ - last_post_categories: [] - last_post_guid: 118a2d5e5fe895027d4e717dc78393b5 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c52ed318ec675fcb47fc24898fe2675b.md b/content/discover/feed-c52ed318ec675fcb47fc24898fe2675b.md new file mode 100644 index 000000000..7fcbf714a --- /dev/null +++ b/content/discover/feed-c52ed318ec675fcb47fc24898fe2675b.md @@ -0,0 +1,61 @@ +--- +title: Just Code +date: "2023-12-22T14:18:20+01:00" +description: "" +params: + feedlink: https://javaclipse.blogspot.com/feeds/posts/default + feedtype: atom + feedid: c52ed318ec675fcb47fc24898fe2675b + websites: + https://javaclipse.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - anyedit + - debugging + - eclipse + - egit + - findbugs + - fun + - gtk + - java + - java eclipse job + - job + - linux + - mars + - neon + - spotbugs + - swt + - tests + - xtext + relme: + https://javaclipse.blogspot.com/: true + https://www.blogger.com/profile/09548188399628810900: true + last_post_title: Xtext job + last_post_description: "" + last_post_date: "2023-08-15T16:16:51+02:00" + last_post_link: https://javaclipse.blogspot.com/2023/04/xtext-job.html + last_post_categories: + - eclipse + - job + - xtext + last_post_language: "" + last_post_guid: 3f3d1f3745e650be8dc6fcd083efc298 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c538e369f455601f295ceaaee8da1ff0.md b/content/discover/feed-c538e369f455601f295ceaaee8da1ff0.md deleted file mode 100644 index 3f0f71a25..000000000 --- a/content/discover/feed-c538e369f455601f295ceaaee8da1ff0.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Pelle Wessman -date: "1970-01-01T00:00:00Z" -description: Public posts from @voxpelli@mastodon.social -params: - feedlink: https://mastodon.social/@voxpelli.rss - feedtype: rss - feedid: c538e369f455601f295ceaaee8da1ff0 - websites: - https://mastodon.social/@voxpelli: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://github.com/voxpelli: true - https://kodfabrik.se/: true - https://twitter.com/voxpelli: false - https://voxpelli.com/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c550c508de4e5f2500785a76c79ba383.md b/content/discover/feed-c550c508de4e5f2500785a76c79ba383.md index 361f07305..fea8d96c4 100644 --- a/content/discover/feed-c550c508de4e5f2500785a76c79ba383.md +++ b/content/discover/feed-c550c508de4e5f2500785a76c79ba383.md @@ -1,6 +1,6 @@ --- title: Scripting News -date: "2024-06-04T11:31:49Z" +date: "2024-07-08T23:13:50Z" description: Dave Winer, OG blogger, podcaster, developed first apps in many categories. Old enough to know better. It's even worse than it appears. params: @@ -11,32 +11,46 @@ params: http://scripting.com/: true blogrolls: - https://feedland.social/opml?catname=blogroll&screenname=davewiner - - https://feedland.com/opml?catname=blogroll&screenname=davewiner recommended: - http://rolandtanglao.com/feed.xml + - http://scripting.com/podcast.xml + - http://scripting.com/podcast0/rss.xml - http://scripting.com/rss.xml + - http://scripting.com/rssNightly.xml - https://500songs.com/feed/podcast/ - https://about.fb.com/news/category/threads/feed/ + - https://activitypub.ghost.org/rss/ + - https://alexsci.com/blog/rss.xml - https://alistapart.com/main/feed/ - https://anchor.fm/s/ed1f5584/podcast/rss + - https://andreabadgley.blog/feed/ - https://aows.co/blog/rss.xml + - https://aworkinglibrary.com/feed/index.xml - https://battellemedia.com/feed - https://bijansabet.com/feed + - https://blog.joemoreno.com/feeds/posts/default - https://blog.joinmastodon.org/index.xml - https://blog.x.com/feeds/posts/default - https://bsky.app/profile/did:plc:oky5czdrnfjpqslsw2a5iclo/rss - https://bsky.social/about/rss.xml - https://buzzmachine.com/feed/ - https://chriscoyier.net/feed/ + - https://colinwalker.blog/dailyfeed.xml + - https://continuations.com/rss + - https://crooksandliars.com/feeds/latest - https://dangillmor.com/feed/ + - https://daringfireball.net/feeds/main - https://data.feedland.org/feeds/davewiner.xml - https://doc.searls.com/feed + - https://electrek.co/feed/ - https://evgrieve.com/feeds/posts/default?alt=rss - https://fediversereport.com/feed/ - https://feedpress.me/sixcolors - https://feeds.arstechnica.com/arstechnica/index/ - https://feeds.feedburner.com/NiemanJournalismLab + - https://feeds.feedburner.com/TechmemeRideHome - https://feeds.feedburner.com/Torrentfreak + - https://feeds.feedburner.com/johnjohnston - https://feeds.kottke.org/main - https://feeds.megaphone.fm/dailyblast2024 - https://feeds.megaphone.fm/trippishow @@ -48,37 +62,55 @@ params: - https://ghost.org/changelog/rss/ - https://github.blog/feed/ - https://heathercoxrichardson.substack.com/feed + - https://indieweb.org/this-week/feed.xml - https://inessential.com/feed + - https://iwebthings.joejenett.com/feed.xml - https://jabberwocking.com/feed/ + - https://josh.blog/feed - https://kansasreflector.com/feed/ - https://kcpw.org/feed + - https://knowler.dev/feed.xml - https://logicmag.io/rss.xml - https://longreads.com/rss - https://ma.tt/feed/ + - https://machinesociety.ai/feed - https://mastodon.social/@Gargron.rss - https://mastodon.xyz/@johnonolan.rss - https://memex.naughtons.org/feed/ - https://mitchw.blog/feed + - https://neliosoftware.com/rss - https://newsie.social/@ProPublica.rss - https://om.co/feed/ + - https://pluralistic.net/feed/ - https://podcast.posttv.com/itunes/post-reports.xml - https://politicalwire.com/feed/ - https://pressthink.org/feed/ - https://radioopensource.org/feed + - https://restofworld.org/feed - https://rich.blog/feed/ - https://scotusblog.com/feed - https://seths.blog/feed + - https://sheep.horse/rss.xml + - https://simonwillison.net/atom/everything/ - https://socialwarming.substack.com/feed - https://steveschmidt.substack.com/feed + - https://tantek.com/updates.atom - https://tedium.co/feed + - https://thejeshgn.com/rss - https://tomcritchlow.com/feed.xml - https://val.demar.in/feed/ - https://waxy.org/feed/ - https://whatever.scalzi.com/feed/ + - https://wordland.social/scripting/12107055/rss.xml - https://wordpress.com/blog/feed/ - https://wptavern.com/feed + - https://writings.stephenwolfram.com/feed/ + - https://www.404media.co/rss/ + - https://www.allthingsdistributed.com/index.xml - https://www.anildash.com/feed.xml + - https://www.citationneeded.news/rss/ - https://www.editorialboard.com/feed/ + - https://www.emptywheel.net/feed/ - https://www.manton.org/feed - https://www.michaelmoore.com/feed - https://www.omnycontent.com/d/playlist/e73c998e-6e60-432f-8610-ae210140c5b1/4cab918b-b4e7-4a21-8300-aec3011bf3f1/e7682aaf-443f-41d8-945f-aec3011c5127/podcast.rss @@ -87,76 +119,73 @@ params: - https://www.poynter.org/feed/ - https://www.printmag.com/feed - https://www.schneier.com/feed/ + - https://www.smays.com/feed/ + - https://www.tbray.org/ongoing/ongoing.atom - https://www.techdirt.com/feed + - https://www.windley.com/rss - https://www.zachseward.com/blog/rss/ - https://xkcd.com/rss.xml - https://zeldman.com/feed/ - - https://alexsci.com/blog/rss.xml - - https://blog.joemoreno.com/feeds/posts/default - - https://colinwalker.blog/dailyfeed.xml - - https://daringfireball.net/feeds/main - - https://electrek.co/feed/ - - https://feeds.feedburner.com/johnjohnston - - https://indieweb.org/this-week/feed.xml - - https://iwebthings.joejenett.com/feed.xml - - https://neliosoftware.com/rss - - https://pluralistic.net/feed/ - - https://simonwillison.net/atom/everything/ - - https://tantek.com/updates.atom - - https://wordland.social/scripting/12107055/rss.xml - - https://writings.stephenwolfram.com/feed/ - - https://www.allthingsdistributed.com/index.xml - - https://www.tbray.org/ongoing/ongoing.atom - - https://www.windley.com/rss - https://zerothprinciples.substack.com/feed + - https://zettelkasten.de/feed - https://500songs.com/comments/feed/ - https://500songs.com/feed/ - https://500songs.com/feed/podcast - https://500songs.com/feed/podcast/a-history-of-rock-music-in-500-songs - https://500songs.com/series/a-history-of-rock-music-in-500-songs/feed/ - - https://anildash.com/feed.xml + - https://andreabadgley.blog/comments/feed/ - https://aows.co/blog?format=rss - https://feeds.arstechnica.com/arstechnica/index - https://battellemedia.com/comments/feed - https://bijansabet.com/comments/feed/ - https://bijansabet.com/feed/ + - https://feeds.crooksandliars.com/crooksandliars/YaCP - https://dangillmor.com/comments/feed/ - https://doc.searls.com/comments/feed/ - https://doc.searls.com/feed/ + - https://electrek.co/comments/feed/ - https://electrek.co/web-stories/feed/ - https://evgrieve.com/feeds/posts/default - https://fediversereport.com/comments/feed/ + - https://github.blog/comments/feed/ - https://indieweb.org/wiki/index.php?feed=atom&title=Special%3ARecentChanges - https://inessential.com/xml/rss.xml - https://iwebthings.joejenett.com/feed.atom - https://iwebthings.joejenett.com/iwd.atom - https://jabberwocking.com/comments/feed/ - - https://johnjohnston.info/blog/comments/feed/ - - https://johnjohnston.info/blog/feed/ + - https://josh.blog/comments/feed + - https://kansasreflector.com/comments/feed/ + - https://longreads.com/comments/feed/ - https://longreads.com/feed/ - https://ma.tt/comments/feed/ - https://memex.naughtons.org/comments/feed/ - https://mitchw.blog/feed.xml + - https://neliosoftware.com/comments/feed/ - https://neliosoftware.com/feed/ - https://om.co/comments/feed/ - https://pluralistic.net/comments/feed/ - https://politicalwire.com/comments/feed/ + - https://restofworld.org/feed/latest - https://rich.blog/comments/feed/ - https://feed.tedium.co/ - https://feeds.thejeshgn.com/thejeshgn + - https://thejeshgn.com/feed/podcast/ - https://val.demar.in/comments/feed/ - https://whatever.scalzi.com/comments/feed/ - https://wptavern.com/comments/feed - https://wptavern.com/feed/podcast - https://writings.stephenwolfram.com/feed/atom/ - https://www.allthingsdistributed.com/atom.xml + - https://www.editorialboard.com/comments/feed/ - https://www.manton.org/feed.xml - https://www.manton.org/podcast.xml - - https://www.oreilly.com/radar/feed/podcast - https://www.printmag.com/comments/feed/ - https://www.printmag.com/feed/ + - https://rss.art19.com/techmeme-ridehome - https://www.schneier.com/comments/feed/ + - https://www.scotusblog.com/comments/feed/ - https://www.scotusblog.com/feed/ + - https://www.smays.com/comments/feed/ - https://www.techdirt.com/comments/feed/ - https://www.techdirt.com/feed/ - https://www.theframelab.org/latest/rss/ @@ -165,6 +194,8 @@ params: - https://www.wnyc.org/feeds/all/ - https://www.wnyc.org/feeds/shows/bl - https://xkcd.com/atom.xml + - https://zeldman.com/comments/feed/ + - https://zettelkasten.de/feed.atom recommender: - http://scripting.com/rss.xml - http://scripting.com/rssNightly.xml @@ -172,32 +203,38 @@ params: - https://blog.numericcitizen.me/podcast.xml - https://colinwalker.blog/dailyfeed.xml - https://colinwalker.blog/livefeed.xml + - https://frankmcpherson.blog/feed.xml - https://frankmeeuwsen.com/feed.xml - https://joeross.me/feed.xml + - https://josh.blog/comments/feed - https://josh.blog/feed - - https://www.manton.org/feed - https://www.manton.org/feed.xml - https://www.manton.org/podcast.xml categories: [] relme: {} - last_post_title: Trump today - last_post_description: I try not to post pictures of Trump on this blog since he - left office in 2021, but this is too good not to share. Pretty sure this is a - meme, not an actual New Yorker cover. - last_post_date: "2024-06-01T18:36:37Z" - last_post_link: http://scripting.com/2024/06/01/183637.html?title=trumpToday + last_post_title: It's that time + last_post_description: This is the time, every four years, when we have to confront + the corruption of American journalism. Most of the time we can turn our attention + elsewhere, until we get a Bush or Trump in the White + last_post_date: "2024-07-08T13:56:47Z" + last_post_link: http://scripting.com/2024/07/08/135647.html?title=itsThatTime last_post_categories: [] - last_post_guid: 3a503d9da30b4a394fa347f6e4f7cdd7 + last_post_language: "" + last_post_guid: 9ca107a336c6410339eb62341e9e1b02 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 10 relme: 0 title: 3 website: 2 - score: 23 + score: 27 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-c5540498f9879efcc5deba263bac4ccf.md b/content/discover/feed-c5540498f9879efcc5deba263bac4ccf.md new file mode 100644 index 000000000..a244c4b4c --- /dev/null +++ b/content/discover/feed-c5540498f9879efcc5deba263bac4ccf.md @@ -0,0 +1,42 @@ +--- +title: theresmiling has a website +date: "1970-01-01T00:00:00Z" +description: Where I put thoughts to text +params: + feedlink: https://theresmiling.eu/rss.xml + feedtype: rss + feedid: c5540498f9879efcc5deba263bac4ccf + websites: {} + blogrolls: [] + recommended: [] + recommender: + - https://marisabel.nl/feeds/blog.php + - https://marisabel.nl/feeds/tech-blog.php + categories: [] + relme: {} + last_post_title: A List of Interests + last_post_description: Here's a list with all the things (though I probably forgot + some) I have been interested in so far in my life. Some of them I participated + in extensively for many years. Some are just topics of + last_post_date: "1970-01-01T00:00:00Z" + last_post_link: https://theresmiling.neocities.org/blog/2024/05/list-of-interests.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 71858bc7d950fbd80d9eaf066aa29460 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 0 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c576477215b3e0fb7e6d39003f9c7481.md b/content/discover/feed-c576477215b3e0fb7e6d39003f9c7481.md deleted file mode 100644 index 607d42550..000000000 --- a/content/discover/feed-c576477215b3e0fb7e6d39003f9c7481.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Keenan -date: "1970-01-01T00:00:00Z" -description: Public posts from @keenan@social.lol -params: - feedlink: https://social.lol/@keenan.rss - feedtype: rss - feedid: c576477215b3e0fb7e6d39003f9c7481 - websites: - https://social.lol/@keenan: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://gkeenan.co/: true - https://gkeenan.co/avgb: false - https://keenan.omg.lol/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c581d98be375125d0ad8d9a1bc08d8c6.md b/content/discover/feed-c581d98be375125d0ad8d9a1bc08d8c6.md deleted file mode 100644 index 45f820690..000000000 --- a/content/discover/feed-c581d98be375125d0ad8d9a1bc08d8c6.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Calum Ryan -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://calumryan.com/feeds/rss - feedtype: rss - feedid: c581d98be375125d0ad8d9a1bc08d8c6 - websites: - https://calumryan.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: [] - relme: - https://fed.brid.gy/r/https:/calumryan.com/: false - https://github.com/calumryan: true - https://indieweb.org/User:Calumryan.com: false - https://micro.blog/calumryan: false - https://toot.cafe/@calumryan: false - last_post_title: Weeknote 82 - last_post_description: |- - It was another somewhat tiring and stressful week bringing together research from design and tech people on my current project with GDS in order to attempt to map a journey for my prototyping. - Just - last_post_date: "1970-01-01T00:00:00Z" - last_post_link: https://calumryan.com/articles/weeknote-82 - last_post_categories: [] - last_post_guid: f3d6164e6b3bf0d31916e4e600d4aa56 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 12 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c5a0fccc05316496d85282726a60612e.md b/content/discover/feed-c5a0fccc05316496d85282726a60612e.md new file mode 100644 index 000000000..486ddcecd --- /dev/null +++ b/content/discover/feed-c5a0fccc05316496d85282726a60612e.md @@ -0,0 +1,47 @@ +--- +title: Isuru Fernando's blog +date: "2024-03-08T16:12:59-08:00" +description: "" +params: + feedlink: https://isuruf.blogspot.com/feeds/posts/default + feedtype: atom + feedid: c5a0fccc05316496d85282726a60612e + websites: + https://isuruf.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - GSoC + - SymEngine + - SymPy + relme: + https://isuruf.blogspot.com/: true + https://www.blogger.com/profile/03942032424286163820: true + last_post_title: GSoc 2015 Week 12 & 13 + last_post_description: "" + last_post_date: "2015-08-23T08:59:50-07:00" + last_post_link: https://isuruf.blogspot.com/2015/08/gsoc-2015-week-12-13.html + last_post_categories: + - GSoC + - SymEngine + - SymPy + last_post_language: "" + last_post_guid: c20fe4940a4881357d505dfe54bf3b68 + score_criteria: + cats: 3 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c5acd6becaa7a784acaa7cc0f4fe160c.md b/content/discover/feed-c5acd6becaa7a784acaa7cc0f4fe160c.md new file mode 100644 index 000000000..7c867dc0d --- /dev/null +++ b/content/discover/feed-c5acd6becaa7a784acaa7cc0f4fe160c.md @@ -0,0 +1,152 @@ +--- +title: '<coderthoughts />' +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://coderthoughts.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: c5acd6becaa7a784acaa7cc0f4fe160c + websites: + https://coderthoughts.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - .esa + - .esa file + - AOP + - Android + - Apache Camel + - Aspect Oriented Programming + - CXF-DOSGi + - Cloud Discovery + - Cloud Provisioning + - Cloud Repurposing + - Cloud Workshop + - EMF Java text adventure + - Eclipse + - Equinox + - GMF + - IRC + - JAX-RS + - JSR311 + - Jersey + - MTP + - OSGi + - OSGi Java cardgame Eclipse Equinox + - OSGi Remote Services + - OSGi Services + - OpenJDK 8 + - OpenJDK Penrose + - OpenShift + - Penrose + - Photos + - RFC 167 + - Remote Services + - ServiceLoader + - ServiceMix + - Spring-DM + - Swing + - ZooKeeper + - acl + - ajax + - ant + - apache aries + - apache cxf + - apache felix + - applications + - audio + - bnd-maven-plugin + - bndtools + - branch by abstraction + - c905 + - cloud + - crypto currency + - distributed osgi + - eclipse EMF + - eclipse features + - eos + - ethereum + - free software osx + - gogo command + - gogo shell + - google calendar + - handbrake + - handbrake settings + - html5 + - iPod + - jasmine + - java + - java.util.ServiceLoader + - javascript + - jboss + - jmx + - karaf + - karaf command + - karaf features + - karaf shell + - keepass osx + - keepassx + - mac unix + - maven + - mobile devices + - navigator.getUserMedia + - opensource osx + - osgi applications + - osgi subsystems + - raspberry pi + - rfc 119 + - sd card corruption + - security + - service + - services + - smart contract + - subsystems + - unit testing + - unit tests + - video + - virgo plans + - webrtc + - xbmc + relme: + https://boardgamethoughts.blogspot.com/: true + https://coderthoughts.blogspot.com/: true + https://hikersthoughts.blogspot.com/: true + https://laarderhoogt.blogspot.com/: true + https://lightdarknesspainting.blogspot.com/: true + https://on-software-architecture.blogspot.com/: true + https://osgithoughts.blogspot.com/: true + https://rockabillfilmsoc.blogspot.com/: true + https://rockabillfilmsociety.blogspot.com/: true + https://testblogaswebsite.blogspot.com/: true + https://www.blogger.com/profile/13786738766478890804: true + last_post_title: Blockchain Smart Contracts are the new Serverless! + last_post_description: You can even take this a little bit further. As shown with + the CryptoKitty the smart contract does not need to have anything to do with transferring + money from a to b or writing some sort of + last_post_date: "2018-01-29T22:10:00Z" + last_post_link: https://coderthoughts.blogspot.com/2018/01/blockchain-smart-contracts-are-new.html + last_post_categories: + - crypto currency + - eos + - ethereum + - smart contract + last_post_language: "" + last_post_guid: 7ba526ca59c15091da4dcc916b4f087c + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c5b010f89ed2f8434470293760329899.md b/content/discover/feed-c5b010f89ed2f8434470293760329899.md deleted file mode 100644 index 107c6012c..000000000 --- a/content/discover/feed-c5b010f89ed2f8434470293760329899.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Frederik Braun -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://frederik-braun.com/feeds/all.rss.xml - feedtype: rss - feedid: c5b010f89ed2f8434470293760329899 - websites: - https://frederik-braun.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - misc - - websecguide - relme: - https://social.security.plumbing/@freddy: true - last_post_title: How Firefox gives special permissions to some domains - last_post_description: |- - Today, I found someone tweeting about a neat security bug in Chrome, that - bypasses how Chrome disallows extensions from injecting JavaScript into - special domains like chrome.google.com. - The intention - last_post_date: "2024-02-02T00:00:00+01:00" - last_post_link: https://frederik-braun.com/special-browser-privileges-for-some-domains.html - last_post_categories: - - misc - - websecguide - last_post_guid: 4c4a8fa911c49ea1dfe3f8f24d4378c4 - score_criteria: - cats: 0 - description: 0 - postcats: 2 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c5c9a9af2596e37bc3b608cbbbbe6591.md b/content/discover/feed-c5c9a9af2596e37bc3b608cbbbbe6591.md new file mode 100644 index 000000000..7c64826e8 --- /dev/null +++ b/content/discover/feed-c5c9a9af2596e37bc3b608cbbbbe6591.md @@ -0,0 +1,140 @@ +--- +title: Skinny Area Code +date: "1970-01-01T00:00:00Z" +description: you can find here all about 800 area code so keep visiting to my blogspot. +params: + feedlink: https://erisherondalebooks.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: c5c9a9af2596e37bc3b608cbbbbe6591 + websites: + https://erisherondalebooks.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: World Area Code + last_post_description: |- + Challenges / Opportunities of Business + LocationA commercial enterprise, either micro or 800 area code or  small or medium or big, faces several demanding situations/threats. The + essential + last_post_date: "2022-01-17T12:14:00Z" + last_post_link: https://erisherondalebooks.blogspot.com/2022/01/world-area-code.html + last_post_categories: [] + last_post_language: "" + last_post_guid: fb75d5f3a3fd33edfec86837cd188204 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c5ccec1ad3914dd1c63f7a76f6d58227.md b/content/discover/feed-c5ccec1ad3914dd1c63f7a76f6d58227.md index b0d891cb3..bc4c756c7 100644 --- a/content/discover/feed-c5ccec1ad3914dd1c63f7a76f6d58227.md +++ b/content/discover/feed-c5ccec1ad3914dd1c63f7a76f6d58227.md @@ -15,41 +15,53 @@ params: - https://colinwalker.blog/livefeed.xml categories: - Blog - - Ojai - - Aldous Huxley - - besant hill school - - dennis rice - - happy valley school - - HVS - - morning assembly + - CSA + - Seacritters + - audiobooks + - creative practice + - disruption + - life + - neil gaiman - ojai + - practice + - rituals + - routine + - studio relme: {} - last_post_title: Morning Assembly - last_post_description: What is a blog for if not to collect the things that touch - us? - last_post_date: "2024-04-24T18:24:45Z" - last_post_link: https://lucybellwood.com/morning-assembly/ + last_post_title: The Switch + last_post_description: If I don't understand it, anything might switch it off again. + last_post_date: "2024-07-06T17:59:14Z" + last_post_link: https://lucybellwood.com/the-switch/ last_post_categories: - Blog - - Ojai - - Aldous Huxley - - besant hill school - - dennis rice - - happy valley school - - HVS - - morning assembly + - CSA + - Seacritters + - audiobooks + - creative practice + - disruption + - life + - neil gaiman - ojai - last_post_guid: 7cf0ebc9b820d579f68b6ba82cfdeb15 + - practice + - rituals + - routine + - studio + last_post_language: "" + last_post_guid: 6843b4dcd475b74d2b47baad553a791e score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 16 + score: 20 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-c5e2633482914ccd3c913f459db6437c.md b/content/discover/feed-c5e2633482914ccd3c913f459db6437c.md deleted file mode 100644 index 439ffdb14..000000000 --- a/content/discover/feed-c5e2633482914ccd3c913f459db6437c.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Matthias Pfefferle – notizBlog -date: "1970-01-01T00:00:00Z" -description: a weblog mainly about the open, portable, interoperable, small, social, - synaptic, semantic, structured, distributed, (re-)decentralized, independent, microformatted - and federated social web -params: - feedlink: https://notiz.blog/author/matthias-pfefferle/feed/ - feedtype: rss - feedid: c5e2633482914ccd3c913f459db6437c - websites: - https://notiz.blog/about/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Journal - - Art - - ASCII - relme: {} - last_post_title: ASCIIerle - last_post_description: 'Ich besitze jetzt einen echten Doctor Popular! Thanks a - lot @docpop ❤️ …und hier noch zwei weitere Versionen:' - last_post_date: "2024-06-02T14:51:16Z" - last_post_link: https://notiz.blog/2024/06/02/asciierle/ - last_post_categories: - - Journal - - Art - - ASCII - last_post_guid: abb0d8e34af2fd25eb0f0da46f2f0b77 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c5fed29999576ea408f80851c1888320.md b/content/discover/feed-c5fed29999576ea408f80851c1888320.md deleted file mode 100644 index b7bec4c2e..000000000 --- a/content/discover/feed-c5fed29999576ea408f80851c1888320.md +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: openstack – Virtual Andy -date: "2024-01-06T19:09:36Z" -description: Exploring software engineering through the lenses of people, processes, - and technology. -params: - feedlink: https://virtualandy.wordpress.com/tag/openstack/feed/atom/ - feedtype: atom - feedid: c5fed29999576ea408f80851c1888320 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Virtual Andy - - deepdive - - nova - - openstack - - resize - - xenserver - relme: {} - last_post_title: 'Deep Dive: OpenStack Nova Resize Up with XenAPI/Xenserver' - last_post_description: Nova is the Compute engine of the OpenStack project. Based - on the currently available code (commit 114109dbf4094ae6b6333d41c84bebf6f85c4e48 - – 2012-09-13) This is a deep dive into what happens (and - last_post_date: "2024-01-06T19:09:36Z" - last_post_link: https://virtualandy.wordpress.com/2012/09/13/deep-dive-nova-resize-up-xenapi/ - last_post_categories: - - Virtual Andy - - deepdive - - nova - - openstack - - resize - - xenserver - last_post_guid: cd7ca1b991c074ca62ad5badf09a0a8a - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c600edff6f7e46d4f5d90e2ae4496dbc.md b/content/discover/feed-c600edff6f7e46d4f5d90e2ae4496dbc.md new file mode 100644 index 000000000..ba37a8cd3 --- /dev/null +++ b/content/discover/feed-c600edff6f7e46d4f5d90e2ae4496dbc.md @@ -0,0 +1,208 @@ +--- +title: Pater Familias +date: "2024-05-10T01:00:55-05:00" +description: In the 25nd year of providing and protecting +params: + feedlink: https://dauclair.blogspot.com/feeds/posts/default + feedtype: atom + feedid: c600edff6f7e46d4f5d90e2ae4496dbc + websites: + https://dauclair.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Advent + - Amway + - Beki + - Black Lives Matter + - Bravery + - Catholic + - Christianity + - Christmas + - Church + - Coast Guard + - DDR + - DIY + - Diane + - Easter + - Elena Marie + - Family + - Family Life + - 'For Esme: with Love and Squalor' + - God + - Harris Teeter + - Irish Cream + - Isabel + - Left + - Maronite + - Mary + - Memorial Day + - Mr. Darcy + - New Year + - Old English + - Peanuts + - Peppermint Patty + - Pooh + - Right + - Rite + - Salinger + - Service + - Sherlock Holmes + - Spring + - St. Valentine's Day + - Tao + - The South + - Thy Kingdom come + - Utopia + - '`pataphor' + - acknowledgement + - adoration chapel + - adversity + - alcohol + - anniversary + - art + - atozchallenge + - attitude + - azaleas + - baseball + - bible + - birthday + - breakfast + - cancer + - cats + - children + - coffee + - countercultural + - customer service + - dad + - daily schedule + - daughter + - death + - diet + - dignity + - discernment + - dream + - duty + - ecclesiastes + - eulogy + - faith + - feminism + - finances + - flowers + - food + - freedom + - friends + - fun + - gifts + - go + - gratitude + - grieving + - halo + - healing + - home + - homeschooling + - hope + - humor + - intentions + - joy + - kenjutsu + - legacy + - lent + - letters + - life + - liqueur + - love + - manners + - marissa + - marriage + - martyrdom + - masculinity + - meditation + - memorare + - military + - mom + - money + - movies + - music + - musings + - my country + - nostalgia + - number + - ora et labora + - pater familias + - peace + - perspective + - petitions + - pirates ninjas manliness + - poetry + - politics + - prayer + - quantification + - ramen + - recipe + - regrets + - relationships + - reminscence + - review + - sacrifice + - sad + - saints + - salvation + - self-improvement + - shopping + - sin + - sleep + - song + - specific + - starbucks + - story-telling + - submission + - supplication + - teen + - teens + - thanksgiving + - tired + - tradition + - transcendence + - unpopular opinion + - vocation + - work + - writer's life + - zombies + - Übermensch + relme: + https://dauclair.blogspot.com/: true + https://halo-legendz.blogspot.com/: true + https://logicaltypes.blogspot.com/: true + https://odst-geophf.blogspot.com/: true + https://twilight-dad.blogspot.com/: true + https://www.blogger.com/profile/09936874508556500234: true + last_post_title: My mom, and cancer. + last_post_description: "" + last_post_date: "2024-04-08T16:17:43-05:00" + last_post_link: https://dauclair.blogspot.com/2024/04/my-mom-and-cancer.html + last_post_categories: + - cancer + - love + - mom + - reminscence + last_post_language: "" + last_post_guid: 580628116cab6a4fe51d79c284feef3b + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c60635123457e73dc16831d8659e0c7c.md b/content/discover/feed-c60635123457e73dc16831d8659e0c7c.md deleted file mode 100644 index 3c9612714..000000000 --- a/content/discover/feed-c60635123457e73dc16831d8659e0c7c.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Russell Davies -date: "2024-05-25T13:45:42+01:00" -description: |- - Semi-retiring - About | Feed | Archive | Findings - - - (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ - (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s -params: - feedlink: https://russelldavies.typepad.com/planning/index.rdf - feedtype: atom - feedid: c60635123457e73dc16831d8659e0c7c - websites: - https://russelldavies.typepad.com/planning/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Tumbling around in the back seat - last_post_description: 'Related and unrelated, as is the way of blogging. I''ve - been sitting on the harbour beach in Portree, reading this piece in the New Yorker - about Judith Butler. It starts like this: "In January, the' - last_post_date: "2024-05-25T13:45:42+01:00" - last_post_link: https://russelldavies.typepad.com/planning/2024/05/tumbling-around-in-the-back-seat.html - last_post_categories: [] - last_post_guid: 2a22b29c5cd5bf614f62d41f6beda25e - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c62ef425df33a3370b2559c7539fe50c.md b/content/discover/feed-c62ef425df33a3370b2559c7539fe50c.md new file mode 100644 index 000000000..1492041f3 --- /dev/null +++ b/content/discover/feed-c62ef425df33a3370b2559c7539fe50c.md @@ -0,0 +1,141 @@ +--- +title: Ddosing World +date: "1970-01-01T00:00:00Z" +description: All is well when ddosing is written on my blog +params: + feedlink: https://jovemazul.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: c62ef425df33a3370b2559c7539fe50c + websites: + https://jovemazul.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ddos + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: So Ddosing is Really Cool + last_post_description: Like My Ddos PostA DDoS assault is capable when there is + a synergistic exertion to make the network access expected to gather PCs not to + work proficiently. The purposes for the assaults may shift + last_post_date: "2021-04-16T16:00:00Z" + last_post_link: https://jovemazul.blogspot.com/2021/04/so-ddosing-is-really-cool.html + last_post_categories: + - ddos + last_post_language: "" + last_post_guid: 9d359e4d6e9f711a176e38f297c48269 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c64aa195fa193f3f690b3f317bcbcb7c.md b/content/discover/feed-c64aa195fa193f3f690b3f317bcbcb7c.md new file mode 100644 index 000000000..a0b8a7235 --- /dev/null +++ b/content/discover/feed-c64aa195fa193f3f690b3f317bcbcb7c.md @@ -0,0 +1,48 @@ +--- +title: CentOS +date: "1970-01-01T00:00:00Z" +description: All my experiences, bugs, hacks, tricks, ... with CentOS and Linux in + general. +params: + feedlink: https://misterd77.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: c64aa195fa193f3f690b3f317bcbcb7c + websites: + https://misterd77.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - CentOS + - Hardware + - Storage + relme: + https://misterd77.blogspot.com/: true + https://www.blogger.com/profile/08260107826868861056: true + last_post_title: What is up with the CentOS project + last_post_description: Some people may have noticed the open letter to Lance Davis + that has appeared on the CentOS website (www.centos.org) or the CentOS mailing + list (http://lists.centos.org/pipermail/centos/2009 + last_post_date: "2009-07-30T09:03:00Z" + last_post_link: https://misterd77.blogspot.com/2009/07/what-is-up-with-centos-project.html + last_post_categories: + - CentOS + last_post_language: "" + last_post_guid: 86b65821b8d9227a443a0e7531f56eb1 + score_criteria: + cats: 3 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 17 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c65a02591f77024c1646833cdad01196.md b/content/discover/feed-c65a02591f77024c1646833cdad01196.md deleted file mode 100644 index 9ef556d6e..000000000 --- a/content/discover/feed-c65a02591f77024c1646833cdad01196.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: 'Alchemists: Articles' -date: "2024-06-02T21:44:34Z" -description: Articles on the craft of software engineering. -params: - feedlink: https://alchemists.io/feeds/articles.xml - feedtype: atom - feedid: c65a02591f77024c1646833cdad01196 - websites: - https://alchemists.io/: false - https://alchemists.io/articles: true - https://alchemists.io/projects: false - https://alchemists.io/screencasts: false - https://alchemists.io/talks: false - blogrolls: [] - recommended: [] - recommender: [] - categories: - - articles - relme: {} - last_post_title: Site Updates - last_post_description: "" - last_post_date: "2024-06-02T21:44:34Z" - last_post_link: https://alchemists.io/articles/site_updates - last_post_categories: - - milestones - last_post_guid: 649c6723a4d39c66c396d7ddabbfb0be - score_criteria: - cats: 1 - description: 3 - postcats: 1 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c65f0426d524e5e236418181c24a7cf1.md b/content/discover/feed-c65f0426d524e5e236418181c24a7cf1.md new file mode 100644 index 000000000..88e85fbfd --- /dev/null +++ b/content/discover/feed-c65f0426d524e5e236418181c24a7cf1.md @@ -0,0 +1,55 @@ +--- +title: while(nan) +date: "2024-03-08T21:59:58+11:00" +description: What exactly does that do, anyway? +params: + feedlink: https://while-nan.blogspot.com/feeds/posts/default + feedtype: atom + feedid: c65f0426d524e5e236418181c24a7cf1 + websites: + https://while-nan.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - CTFE + - Const + - D 2.0 + - D Nation + - D Programming Language + - Metaprogramming + - Mixins + - Silly buggers + - Software + - Walter says... + - mercuial + - source control + relme: + https://while-nan.blogspot.com/: true + https://www.blogger.com/profile/02909587337938463354: true + last_post_title: NOCOMMIT for Mercurial + last_post_description: "" + last_post_date: "2010-04-15T14:17:14+10:00" + last_post_link: https://while-nan.blogspot.com/2010/04/one-problem-with-dvcses-dvcsii-is-that.html + last_post_categories: + - mercuial + - source control + last_post_language: "" + last_post_guid: 5e313da9b4b9bcba14f7d3e717e4a2e6 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 20 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c6656f199d25349a5a251b04d86d2b88.md b/content/discover/feed-c6656f199d25349a5a251b04d86d2b88.md index 80e27dc0c..0d6e940d5 100644 --- a/content/discover/feed-c6656f199d25349a5a251b04d86d2b88.md +++ b/content/discover/feed-c6656f199d25349a5a251b04d86d2b88.md @@ -16,29 +16,32 @@ params: categories: - Articles - Joe Biden - - the economy relme: {} - last_post_title: Why are you ingrates still whining about the economy? + last_post_title: ‘Deepening divisions’ among Democrats highly exaggerated last_post_description: |- - Biden and the Democrats could acknowledge that the economy is a problem and just blame Republicans, writes Stephen Robinson. - The post Why are you ingrates still whining about the economy? appeared - last_post_date: "2024-06-03T21:04:26Z" - last_post_link: https://www.editorialboard.com/why-are-you-ingrates-still-whining-about-the-economy/ + Of 287 congressional Democrats and governors, five House members have publicly called on Biden to drop out. “The dam is breaking”? No. + The post ‘Deepening divisions’ among Democrats highly + last_post_date: "2024-07-08T20:56:34Z" + last_post_link: https://www.editorialboard.com/deepening-visions-among-democrats-highly-exaggerated/ last_post_categories: - Articles - Joe Biden - - the economy - last_post_guid: 75bae26fd8e6f4c72a8cd1203c4fbce4 + last_post_language: "" + last_post_guid: e570ef8e134c836b2d97825e60a8a563 score_criteria: cats: 0 description: 3 - postcats: 3 + feedlangs: 1 + postcats: 2 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 16 + score: 19 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-c6bdcba3808459d0fa3505f0e3511096.md b/content/discover/feed-c6bdcba3808459d0fa3505f0e3511096.md deleted file mode 100644 index dc2ba32a9..000000000 --- a/content/discover/feed-c6bdcba3808459d0fa3505f0e3511096.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Rach Smith -date: "1970-01-01T00:00:00Z" -description: Public posts from @rachsmith@mastodon.social -params: - feedlink: https://mastodon.social/@rachsmith.rss - feedtype: rss - feedid: c6bdcba3808459d0fa3505f0e3511096 - websites: - https://mastodon.social/@rachsmith: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://codepen.io/rachsmith: false - https://rachsmith.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c6be863c364e6dce72cdce9dbc2d3f27.md b/content/discover/feed-c6be863c364e6dce72cdce9dbc2d3f27.md deleted file mode 100644 index cdbf285e1..000000000 --- a/content/discover/feed-c6be863c364e6dce72cdce9dbc2d3f27.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Valerie Aurora's blog -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://valerieaurora.wordpress.com/feed/ - feedtype: rss - feedid: c6be863c364e6dce72cdce9dbc2d3f27 - websites: - https://valerieaurora.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 5 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c6c0c7cab36340156d3a08ed727f4c67.md b/content/discover/feed-c6c0c7cab36340156d3a08ed727f4c67.md index c3499f90c..1dd6f67bb 100644 --- a/content/discover/feed-c6c0c7cab36340156d3a08ed727f4c67.md +++ b/content/discover/feed-c6c0c7cab36340156d3a08ed727f4c67.md @@ -16,24 +16,29 @@ params: - http://scripting.com/rssNightly.xml categories: [] relme: {} - last_post_title: 'International Trash (This Week in Tech #982)' - last_post_description: Startup Chaos, Breaking Ticketmaster, Ultrasonic CoffeeSpotify - says it will refund Car Thing purchases VC Says "Chaos" Coming for Startups, Ads, - and Online Business as Generative AI Eats - last_post_date: "2024-06-02T19:15:16Z" - last_post_link: https://twit.tv/shows/this-week-in-tech/episodes/982 + last_post_title: 'It''s Called a Movement (Untitled Linux Show #159)' + last_post_description: We take a victory lap for Linux, Cover the SSH vulnerability + in great detail, and discuss Fedora's proposal to include opt-in telemetry. KDE + ships an update, Nexus Mods is coming to Linux, and Meta + last_post_date: "2024-07-07T19:15:00Z" + last_post_link: https://twit.tv/shows/untitled-linux-show/episodes/159 last_post_categories: [] - last_post_guid: d52ed6035552f26870b7bb18df004b32 + last_post_language: "" + last_post_guid: 15109b2b84ac165ff1f7c502cd41cd44 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 0 - score: 11 + score: 15 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-c6cf95a44883460d6537303dc2ac1f56.md b/content/discover/feed-c6cf95a44883460d6537303dc2ac1f56.md deleted file mode 100644 index 7f12909fa..000000000 --- a/content/discover/feed-c6cf95a44883460d6537303dc2ac1f56.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Nick Heer -date: "1970-01-01T00:00:00Z" -description: Public posts from @nickheer@c.im -params: - feedlink: https://c.im/@nickheer.rss - feedtype: rss - feedid: c6cf95a44883460d6537303dc2ac1f56 - websites: - https://c.im/@nickheer: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://bsky.app/profile/nickheer.bsky.social: false - https://pxlnv.com/: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c6e05486dfd7e41c76e6486e64c87869.md b/content/discover/feed-c6e05486dfd7e41c76e6486e64c87869.md deleted file mode 100644 index af674762d..000000000 --- a/content/discover/feed-c6e05486dfd7e41c76e6486e64c87869.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Will Larson -date: "1970-01-01T00:00:00Z" -description: Public posts from @lethain@mastodon.social -params: - feedlink: https://mastodon.social/@lethain.rss - feedtype: rss - feedid: c6e05486dfd7e41c76e6486e64c87869 - websites: - https://mastodon.social/@lethain: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://lethain.com/: true - https://staffeng.com/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c6e399149a6dad56ce3aeb4c947561fb.md b/content/discover/feed-c6e399149a6dad56ce3aeb4c947561fb.md deleted file mode 100644 index a65a6dfc7..000000000 --- a/content/discover/feed-c6e399149a6dad56ce3aeb4c947561fb.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Pablo Morales -date: "1970-01-01T00:00:00Z" -description: About this Podcast This is a podcast called Pablo's Thoughts Podcast. - I'm going to talk about various topics from the IndieWeb to technology,… -params: - feedlink: https://lifeofpablo.com/podcast/page:podcast.xml - feedtype: rss - feedid: c6e399149a6dad56ce3aeb4c947561fb - websites: - https://lifeofpablo.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Music - relme: - https://github.com/pmoralesgarcia: true - https://social.lifeofpablo.com/@pablo: false - last_post_title: S1E4 - Showing Loved Ones Around - last_post_description: Today's episode talks about making a friend on a bus. - last_post_date: "2024-01-29T22:45:00-08:00" - last_post_link: https://lifeofpablo.com/podcast/s1e4-showing-loved-ones-around - last_post_categories: [] - last_post_guid: 42d088bcb9e84806efd1f12fd4e0be87 - score_criteria: - cats: 1 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 11 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-c6f8075a2ced7e0d4a7163476d427454.md b/content/discover/feed-c6f8075a2ced7e0d4a7163476d427454.md index 8fa7000a3..744bccc16 100644 --- a/content/discover/feed-c6f8075a2ced7e0d4a7163476d427454.md +++ b/content/discover/feed-c6f8075a2ced7e0d4a7163476d427454.md @@ -22,17 +22,22 @@ params: last_post_link: https://WWW.pelicancrossing.net/netwars/2023/01/netwars_has_moved.html last_post_categories: - Housekeeping + last_post_language: "" last_post_guid: e82a574682d9b92bb6641f300af5ac42 score_criteria: cats: 0 description: 0 + feedlangs: 0 postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 11 + score: 14 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-c70577f317bb471d2a14451e1a232090.md b/content/discover/feed-c70577f317bb471d2a14451e1a232090.md deleted file mode 100644 index a889f3d43..000000000 --- a/content/discover/feed-c70577f317bb471d2a14451e1a232090.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: OpenStack – Just another Linux geek -date: "1970-01-01T00:00:00Z" -description: Fortiter Et Recte -params: - feedlink: https://blog.christophersmart.com/category/foss/openstack/feed/ - feedtype: rss - feedid: c70577f317bb471d2a14451e1a232090 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Fedora - - FOSS - - OpenStack - - chat - - element - - matrix - relme: {} - last_post_title: Joining a bridged IRC network on Element (Matrix) - last_post_description: Matrix is a great modern, distributed and secure open source - chat platform (I connect through Element), but sometimes you need to connect to - IRC networks. Fortunately, for some common networks […] - last_post_date: "2022-03-20T23:34:03Z" - last_post_link: https://blog.christophersmart.com/2022/03/21/joining-a-bridged-irc-network-on-element-matrix/ - last_post_categories: - - Fedora - - FOSS - - OpenStack - - chat - - element - - matrix - last_post_guid: 04b9b90be8cb50ea668ea048b0d12e61 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c70d3de85a5b89e91e15985092c1d1cb.md b/content/discover/feed-c70d3de85a5b89e91e15985092c1d1cb.md deleted file mode 100644 index 081e9ef91..000000000 --- a/content/discover/feed-c70d3de85a5b89e91e15985092c1d1cb.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: That’s (the) Mood -date: "2024-05-22T12:35:55Z" -description: '{{ site.description }}' -params: - feedlink: https://www.thatsmood.com/feed.xml - feedtype: atom - feedid: c70d3de85a5b89e91e15985092c1d1cb - websites: - https://www.thatsmood.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://chrisburnell.com/feed.xml - categories: - - tools - - platform - - framework - relme: - https://mastodon.social/@ginez_17: true - last_post_title: One platform to rule them all. (Not really) - last_post_description: Is there an off-the-shelf app that can do it all for you? - last_post_date: "2015-01-14T00:00:00Z" - last_post_link: https://www.thatsmood.com//tools/platform/2015/01/14/one-platform-to-rule-them-all.html - last_post_categories: - - tools - - platform - - framework - last_post_guid: af2f017a21649494b5579b40fbe3bf85 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 18 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c725a92b6f89939d32005ebfb22ffe17.md b/content/discover/feed-c725a92b6f89939d32005ebfb22ffe17.md new file mode 100644 index 000000000..6b32bda82 --- /dev/null +++ b/content/discover/feed-c725a92b6f89939d32005ebfb22ffe17.md @@ -0,0 +1,141 @@ +--- +title: Snapchat Pictures. +date: "1970-01-01T00:00:00Z" +description: Snapchat photo makes your life easy. +params: + feedlink: https://microkinetours.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: c725a92b6f89939d32005ebfb22ffe17 + websites: + https://microkinetours.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Snap Chat photos + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: snapchat is Makes Photos Better. + last_post_description: You presumably, as of now, have a "Like us on Facebook" and + "Follow us on Twitter" on your site. So add your snap steaks into similar territory, + connecting the logo to your customized URL, which + last_post_date: "2021-04-19T17:31:00Z" + last_post_link: https://microkinetours.blogspot.com/2021/04/snapchat-is-makes-photos-better.html + last_post_categories: + - Snap Chat photos + last_post_language: "" + last_post_guid: 6a2a2d9f507793066bb8cfec33633921 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c743b8a33235ef7c1077f5452b5f87c1.md b/content/discover/feed-c743b8a33235ef7c1077f5452b5f87c1.md deleted file mode 100644 index 792abba76..000000000 --- a/content/discover/feed-c743b8a33235ef7c1077f5452b5f87c1.md +++ /dev/null @@ -1,54 +0,0 @@ ---- -title: Kuketz IT-Security » Blog + Microblog -date: "1970-01-01T00:00:00Z" -description: IT-Sicherheit | Datenschutz | Hacking -params: - feedlink: https://www.kuketz-blog.de/feed/ - feedtype: rss - feedid: c743b8a33235ef7c1077f5452b5f87c1 - websites: - https://www.kuketz-blog.de/: true - https://www.kuketz-blog.de/chat/: false - blogrolls: [] - recommended: [] - recommender: - - https://ttntm.me/blog/feed.xml - - https://ttntm.me/everything.xml - - https://ttntm.me/likes/feed.xml - categories: - - Artikel - - Android - - Browser - - Datenschutz - - Datensendeverhalten - - Sicherheitsmaßnahme - relme: - https://social.tchncs.de/@kuketzblog: true - last_post_title: 'Sichere und datenschutzfreundliche Browser: Meine Empfehlungen - – Teil 1' - last_post_description: 1. Schlüssel zum Internet Ein Webbrowser ist der »Schlüssel« - zum Internet bzw. zum World Wide Web, mit dem wir unsere privaten und beruflichen - Aufgaben erledigen. Daher ist es wichtig, einen - last_post_date: "2024-06-03T09:24:19Z" - last_post_link: https://www.kuketz-blog.de/sichere-und-datenschutzfreundliche-browser-meine-empfehlungen-teil-1/ - last_post_categories: - - Artikel - - Android - - Browser - - Datenschutz - - Datensendeverhalten - - Sicherheitsmaßnahme - last_post_guid: 28f8ac5a243e136f9b9a8384f932d955 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 5 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 18 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c75a8328ee8b3aad39843b80ff49f13f.md b/content/discover/feed-c75a8328ee8b3aad39843b80ff49f13f.md deleted file mode 100644 index 9fb18f72e..000000000 --- a/content/discover/feed-c75a8328ee8b3aad39843b80ff49f13f.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: David Walbert -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://social.davidwalbert.com/feed.xml - feedtype: rss - feedid: c75a8328ee8b3aad39843b80ff49f13f - websites: - https://social.davidwalbert.com/: true - blogrolls: [] - recommended: [] - recommender: - - https://jabel.blog/feed.xml - - https://jabel.blog/podcast.xml - categories: [] - relme: - https://micro.blog/dwalbert: false - last_post_title: A crowned bird and flower, from inspiration to carving - last_post_description: Here’s a crowned bird and flower design from inspiration - to carving. The original artist is unknown, but little paintings like this one - (c. 1840) were sometimes given by teachers as rewards to - last_post_date: "2024-04-24T16:18:16-05:00" - last_post_link: https://social.davidwalbert.com/2024/04/24/a-crowned-bird.html - last_post_categories: [] - last_post_guid: 3bea4b953d2786352d032fe603f78269 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 5 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c75bb443597aab5bc29a93ea6c319c86.md b/content/discover/feed-c75bb443597aab5bc29a93ea6c319c86.md deleted file mode 100644 index 6313b9b9e..000000000 --- a/content/discover/feed-c75bb443597aab5bc29a93ea6c319c86.md +++ /dev/null @@ -1,58 +0,0 @@ ---- -title: Polytechnic - The personal brain-dump of Garrett Coakley -date: "1970-01-01T00:00:00Z" -description: The personal brain-dump of Garrett Coakley. It tends to focus on such - geekery as web development, technology, music, film, and photography. -params: - feedlink: https://polytechnic.co.uk/blog/rss - feedtype: rss - feedid: c75bb443597aab5bc29a93ea6c319c86 - websites: - https://polytechnic.co.uk/: false - https://polytechnic.co.uk/blog/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - web development - - technology - - music - - film - - photography - relme: - https://bsky.app/profile/garrettc.social: false - https://flickr.com/people/garrettc: false - https://github.com/garrettc: false - https://letterboxd.com/garrettc/: false - https://mastodon.org.uk/@garrettc: false - https://pinboard.in/u:garrettc: false - https://twitter.com/garrettc: false - https://uk.linkedin.com/in/garrettc/: false - https://www.goodreads.com/garrettc%20: false - https://www.last.fm/user/garrettc: false - last_post_title: Weeknotes 2nd June 2024 - last_post_description: Back from my holiday, jet lagged to hell, but thinking about - all the good memories.it’s a glorious day, so I’ve done the minimal amount of - gardening to earn the wine I’m now enjoying before - last_post_date: "2024-06-02T15:40:56Z" - last_post_link: https://polytechnic.co.uk/blog/2024/06/weeknotes-2nd-june-2024/ - last_post_categories: - - me - - home - - diary - - weeknotes - - garden - last_post_guid: 55d6d7bbdbcadf242296b27c8451f3e1 - score_criteria: - cats: 5 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 17 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c75d11ba7dbbe1dd543729a2ddd482ba.md b/content/discover/feed-c75d11ba7dbbe1dd543729a2ddd482ba.md deleted file mode 100644 index d18bd36ad..000000000 --- a/content/discover/feed-c75d11ba7dbbe1dd543729a2ddd482ba.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Frank Meeuwsen -date: "1970-01-01T00:00:00Z" -description: Public posts from @frank@indieweb.social -params: - feedlink: https://indieweb.social/@frank.rss - feedtype: rss - feedid: c75d11ba7dbbe1dd543729a2ddd482ba - websites: - https://indieweb.social/@frank: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://diggingthedigital.com/mastodon/: false - https://frankmeeuwsen.com/: true - https://indieweb.org/User:Diggingthedigital.com: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c7836fe5616f2441a4638a1c177959c8.md b/content/discover/feed-c7836fe5616f2441a4638a1c177959c8.md new file mode 100644 index 000000000..d9c5fed3b --- /dev/null +++ b/content/discover/feed-c7836fe5616f2441a4638a1c177959c8.md @@ -0,0 +1,43 @@ +--- +title: Stranger's Geospatial +date: "2023-11-15T20:13:37+01:00" +description: I will be posting mainly about various geospatial topics concerning the + deegree project. Other topics will include technical details about dealing with + Java, maven and so forth, and possibly other +params: + feedlink: https://strangersgeospatial.blogspot.com/feeds/posts/default + feedtype: atom + feedid: c7836fe5616f2441a4638a1c177959c8 + websites: + https://strangersgeospatial.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://strangersgeospatial.blogspot.com/: true + https://www.blogger.com/profile/09747254309509486454: true + last_post_title: A personal matter + last_post_description: "" + last_post_date: "2013-09-17T11:38:58+02:00" + last_post_link: https://strangersgeospatial.blogspot.com/2013/09/a-personal-matter.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 23168031d52c72c4baaaca618d7b7ce7 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c7aea99ad65b9d3f8472cabc5484a9d5.md b/content/discover/feed-c7aea99ad65b9d3f8472cabc5484a9d5.md new file mode 100644 index 000000000..65c680cdd --- /dev/null +++ b/content/discover/feed-c7aea99ad65b9d3f8472cabc5484a9d5.md @@ -0,0 +1,52 @@ +--- +title: Rascal News +date: "1970-01-01T00:00:00Z" +description: Rascal is a tabletop roleplaying game and culture outlet striving to + sustainably publish voicey journalism that is compelling, deeply-reported, and fearlessly + honest. We’re also a little cheeky. +params: + feedlink: https://www.rascal.news/rss/ + feedtype: rss + feedid: c7aea99ad65b9d3f8472cabc5484a9d5 + websites: + https://www.rascal.news/: true + blogrolls: [] + recommended: [] + recommender: + - https://takeonrules.com/index.xml + - https://takeonrules.com/site-map/updates/index.xml + - https://takeonrules.com/tags/emacs/index.xml + categories: + - ENNIES + - Gen Con + - awards + - culture + relme: {} + last_post_title: Your kind, annual reminder that awards aren’t that important + last_post_description: Let’s all politely clap and get on with our lives. + last_post_date: "2024-07-09T00:10:01Z" + last_post_link: https://www.rascal.news/your-kind-annual-reminder-that-awards-arent-that-important/ + last_post_categories: + - ENNIES + - Gen Con + - awards + - culture + last_post_language: "" + last_post_guid: 149d6cb6719ec0c65054ada54ca3135b + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 2 + score: 19 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c7b4471fcd96c62139b229274bc3bd35.md b/content/discover/feed-c7b4471fcd96c62139b229274bc3bd35.md index 612589225..1819391c1 100644 --- a/content/discover/feed-c7b4471fcd96c62139b229274bc3bd35.md +++ b/content/discover/feed-c7b4471fcd96c62139b229274bc3bd35.md @@ -1,6 +1,6 @@ --- title: BrettTerpstra.com - The Mad Science of Brett Terpstra -date: "2024-06-03T12:12:54-05:00" +date: "2024-07-08T09:30:47-05:00" description: Welcome to The Lab, detailing the coding and automation exploits of Brett Terpstra. params: @@ -15,31 +15,32 @@ params: - https://joeross.me/feed.xml categories: [] relme: - https://brett.trpstra.net/brettterpstra: false https://brettterpstra.com/: true https://github.com/ttscoff: true https://github.com/ttscoff/: true https://nojack.easydns.ca/@ttscoff: true https://nojack.easydns.ca/@ttscoff/: true - https://pinboard.in/u:ttscoff/profile/public/: false - https://twitter.com/ttscoff: false - https://twitter.com/ttscoff/: false - last_post_title: Retrobatch Pro giveaway! + last_post_title: Dropzone giveaway! last_post_description: "" - last_post_date: "2024-06-03T08:00:00-05:00" - last_post_link: https://brett.trpstra.net/link/535/16701743/retrobatch-pro-giveaway + last_post_date: "2024-07-08T09:30:00-05:00" + last_post_link: https://brett.trpstra.net/link/535/16737127/dropzone-giveaway last_post_categories: [] - last_post_guid: 0791512b9934f95c5764a24ad9ae739f + last_post_language: "" + last_post_guid: 806d4d2112ffec16f23a54191fd35fa8 score_criteria: cats: 0 description: 3 + feedlangs: 0 postcats: 0 + posts: 3 promoted: 5 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-c7d1ff02115a27c106dd487a813820b1.md b/content/discover/feed-c7d1ff02115a27c106dd487a813820b1.md deleted file mode 100644 index 9ece06d3b..000000000 --- a/content/discover/feed-c7d1ff02115a27c106dd487a813820b1.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Voyageur's corner -date: "1970-01-01T00:00:00Z" -description: Dammit Jim, I'm a developer, not a doctor. -params: - feedlink: https://blog.cafarelli.fr/feed/ - feedtype: rss - feedid: c7d1ff02115a27c106dd487a813820b1 - websites: - https://blog.cafarelli.fr/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - OpenStack - - RDO - - SFC - - tripleo - relme: {} - last_post_title: Installing networking-sfc RPM in a TripleO setup - last_post_description: After a short detour on how Skydive can help debugging Service - Function Chaining, in this post I will give details on the new RPM files now available - in RDO to install networking-sfc. We will go - last_post_date: "2017-03-30T15:10:58Z" - last_post_link: https://blog.cafarelli.fr/2017/03/installing-networking-sfc-rpm-in-a-tripleo-setup/ - last_post_categories: - - OpenStack - - RDO - - SFC - - tripleo - last_post_guid: 0ae22471170a8da07ea8d45f7d649f24 - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c7d5954fb7707821dd6beb8b773d56ab.md b/content/discover/feed-c7d5954fb7707821dd6beb8b773d56ab.md new file mode 100644 index 000000000..ca6449cfc --- /dev/null +++ b/content/discover/feed-c7d5954fb7707821dd6beb8b773d56ab.md @@ -0,0 +1,137 @@ +--- +title: A check debit card is a bank-given +date: "2023-11-15T06:06:24-08:00" +description: Keep visiting to my blogspot and get all information about debit card. +params: + feedlink: https://90to0100.blogspot.com/feeds/posts/default + feedtype: atom + feedid: c7d5954fb7707821dd6beb8b773d56ab + websites: + https://90to0100.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: What is a Debit Card + last_post_description: "" + last_post_date: "2022-02-11T11:19:15-08:00" + last_post_link: https://90to0100.blogspot.com/2022/02/what-is-debit-card.html + last_post_categories: [] + last_post_language: "" + last_post_guid: fe8ced89fb0c8de4bf5444e8a6677d17 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c7da5abd21d2a8a3d0d1390d1ff3b011.md b/content/discover/feed-c7da5abd21d2a8a3d0d1390d1ff3b011.md new file mode 100644 index 000000000..aeb0c4b67 --- /dev/null +++ b/content/discover/feed-c7da5abd21d2a8a3d0d1390d1ff3b011.md @@ -0,0 +1,52 @@ +--- +title: ':: eat the dots ::' +date: "1970-01-01T00:00:00Z" +description: game over, man +params: + feedlink: https://eatthedots.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: c7da5abd21d2a8a3d0d1390d1ff3b011 + websites: + https://eatthedots.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - database + - ideas + - lepton + - movie + - perlin noise + - postgres + - psycopg + - pyglet + - python + - shader + relme: + https://eatthedots.blogspot.com/: true + last_post_title: The Power to do it Wrong + last_post_description: I believe I am not alone in finding myself, more often then + I might like, having to make less than ideal decisions in the world of software + development. I find myself lamenting inconsistencies and + last_post_date: "2011-10-16T05:26:00Z" + last_post_link: https://eatthedots.blogspot.com/2011/10/power-to-do-it-wrong.html + last_post_categories: [] + last_post_language: "" + last_post_guid: d9f71bf697c563c3d38b9d23c1714f99 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c7f9da98b5dceab1a6224b391b033857.md b/content/discover/feed-c7f9da98b5dceab1a6224b391b033857.md deleted file mode 100644 index 339973f7d..000000000 --- a/content/discover/feed-c7f9da98b5dceab1a6224b391b033857.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for Ronald Bradford | Enterprise Data Architect | MySQL Subject Matter - Expert | Author | Speaker -date: "1970-01-01T00:00:00Z" -description: "" -params: - feedlink: https://ronaldbradford.com/blog/comments/feed/ - feedtype: rss - feedid: c7f9da98b5dceab1a6224b391b033857 - websites: - http://ronaldbradford.com/blog/: false - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Testing MySQL/MariaDB/Percona versions with Docker by - Shantanu Oak - last_post_description: The percona image does not seem to include TokuDB engine. - Is there any way to enable it withing container? - last_post_date: "2017-01-09T05:38:58Z" - last_post_link: http://ronaldbradford.com/blog/testing-mysqlmariadbpercona-versions-with-docker-2016-12-30/comment-page-1/#comment-3143 - last_post_categories: [] - last_post_guid: ebcaf33ac11cb03a0bab2b1a5fa4f176 - score_criteria: - cats: 0 - description: 0 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 1 - score: 4 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c8042c49d4238a424a9b6d6283ea9792.md b/content/discover/feed-c8042c49d4238a424a9b6d6283ea9792.md deleted file mode 100644 index 5756db3df..000000000 --- a/content/discover/feed-c8042c49d4238a424a9b6d6283ea9792.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Marc Thiele -date: "1970-01-01T00:00:00Z" -description: Public posts from @marcthiele@mastodon.social -params: - feedlink: https://mastodon.social/@marcthiele.rss - feedtype: rss - feedid: c8042c49d4238a424a9b6d6283ea9792 - websites: - https://mastodon.social/@marcthiele: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://beyondtellerrand.com/: false - https://marcthiele.com/: true - https://neu-gierig.fm/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c80ef00e0b6236e795e774788fc3c883.md b/content/discover/feed-c80ef00e0b6236e795e774788fc3c883.md index ba71e4e8a..648899a75 100644 --- a/content/discover/feed-c80ef00e0b6236e795e774788fc3c883.md +++ b/content/discover/feed-c80ef00e0b6236e795e774788fc3c883.md @@ -19,7 +19,8 @@ params: - pipewire - pulseaudio - work - relme: {} + relme: + https://arunraghavan.net/: true last_post_title: 'Asymptotic: A 2023 Review' last_post_description: It’s been a busy few several months, but now that we have some breathing room, I wanted to take stock of what we have done over the last @@ -34,17 +35,22 @@ params: - pipewire - pulseaudio - work + last_post_language: "" last_post_guid: 7133974a04d3cc014662f9e40e0b9493 score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 3 + posts: 3 promoted: 0 promotes: 0 - relme: 0 + relme: 2 title: 3 website: 2 - score: 11 + score: 17 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-c812abe781f368100fcc0922f35e59e1.md b/content/discover/feed-c812abe781f368100fcc0922f35e59e1.md index 7f167af7f..92fead637 100644 --- a/content/discover/feed-c812abe781f368100fcc0922f35e59e1.md +++ b/content/discover/feed-c812abe781f368100fcc0922f35e59e1.md @@ -16,47 +16,37 @@ params: recommender: [] categories: [] relme: - https://developers.google.com/profile/u/pfefferle: false https://github.com/pfefferle: true https://gitlab.com/pfefferle: true - https://indieweb.org/User:Notiz.blog: false https://mastodon.social/@pfefferle: true - https://micro.blog/pfefferle: false - https://microformats.org/wiki/User:Pfefferle: false - https://notiz.blog/about/: false - https://openwebpodcast.de/: false - https://packagist.org/packages/pfefferle/: false - https://pfefferle.tumblr.com/: false - https://profiles.wordpress.org/pfefferle: false - https://twitter.com/pfefferle: false - https://wordpress.tv/speakers/matthias-pfefferle/: false - https://www.crunchbase.com/person/matthias-pfefferle: false - https://www.flickr.com/people/pfefferle: false - https://www.linkedin.com/in/pfefferle/: false - https://www.npmjs.com/~pfefferle: false - https://www.slideshare.net/pfefferle: false - https://www.xing.com/profile/Matthias_Pfefferle: false - last_post_title: Kommentar zu ASCIIerle von Matthias Pfefferle + https://notiz.blog/: true + https://notiz.blog/about/: true + https://profiles.wordpress.org/pfefferle/: true + last_post_title: 'Kommentar zu Hier & Jetzt – Open Web 1: Wo das Open Web heute + steht von Matthias Pfefferle' last_post_description: |- - Als Antwort auf Jürgen :verified_gay: :iceshrimp:. - - Ja oder? ☺️ + Als Antwort auf DORN. - (Hmmm, ich muss mal schauen wie ich die Icons/Emojis in deinem Namen - last_post_date: "2024-06-03T15:35:07Z" - last_post_link: https://notiz.blog/2024/06/02/asciierle/#comment-1929492 +

@dorn_art Kumar - Rajamani.\n\nHi, \n\nPlease register for the event: https://planning" - last_post_date: "2023-04-16T11:12:13Z" - last_post_link: https://planning.barcampbangalore.com/barcamp-bangalore-2023-is-happening-in-may-2023/#comment-19305 - last_post_categories: [] - last_post_guid: 0c5435915ccbf49babcd280218010531 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c878683b92321f700724312ba9697317.md b/content/discover/feed-c878683b92321f700724312ba9697317.md index 4739e5ef9..cc37500fc 100644 --- a/content/discover/feed-c878683b92321f700724312ba9697317.md +++ b/content/discover/feed-c878683b92321f700724312ba9697317.md @@ -12,29 +12,26 @@ params: recommended: [] recommender: [] categories: - - programming - - c++ - - fuzzing - - kmemcheck - - linux + - Fedora - afl - audio - - debugging - - opengl - - Fedora - biblatex - bibtex - biology + - c + - c++ - c-reduce - chipmunk - clang - crash - css + - debugging - delta debugging - denmark - diku - free software - freedom + - fuzzing - gcc - gnu - gsoc @@ -45,12 +42,16 @@ params: - java - javascript - kernel + - kmemcheck - latex + - linux - llvm - midi - music + - opengl - openssh - physics + - programming - rustc - sdl - space invaders @@ -59,7 +60,7 @@ params: - testcase minimization relme: https://mastodon.social/@vegard: true - https://www.blogger.com/profile/04821963505711884515: true + https://www.vegardno.net/: true last_post_title: Stigmergy in programming last_post_description: "" last_post_date: "2022-07-07T15:47:34+02:00" @@ -68,17 +69,22 @@ params: - biology - programming - stigmergy + last_post_language: "" last_post_guid: a01ecaebdb4a1faaf2a1a1dadd313b2b score_criteria: cats: 5 description: 0 + feedlangs: 0 postcats: 3 + posts: 3 promoted: 0 promotes: 0 relme: 2 title: 3 website: 2 - score: 15 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: "" --- diff --git a/content/discover/feed-c904f3e6d6f0effbfc434da9fca42aae.md b/content/discover/feed-c904f3e6d6f0effbfc434da9fca42aae.md new file mode 100644 index 000000000..e0be8b6ff --- /dev/null +++ b/content/discover/feed-c904f3e6d6f0effbfc434da9fca42aae.md @@ -0,0 +1,104 @@ +--- +title: Geek Versus Guitar +date: "1970-01-01T00:00:00Z" +description: A Geek. A Guitar. You've Been Warned. +params: + feedlink: https://geekversusguitar.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: c904f3e6d6f0effbfc434da9fca42aae + websites: + https://geekversusguitar.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - 12-string + - Adamas + - Administrivia + - Amplifiers + - Aphorisms + - Babicz + - Bandcamp + - Carvin + - Chords + - Creative Commons + - Demos + - EMG + - Fernandes Telecaster Copy + - Fingerpicking + - Godin + - Godin LG + - Guitar Parts + - Guitar Pron + - Guitar Synth + - Guitars + - Heil PR-40 + - Inverse T. Clown + - Jag-Stang + - Joe "Covenant" Lamb + - Jonathan Coulton + - Lake Superior + - Mackinac Bridge + - Munising Falls + - Ovation + - Parker Fly + - Peavey + - Peavey Limited + - Practice Videos + - Riffs + - Roland Cube Street + - Rush + - Song Fu + - Sony PCM-D1 + - Sony PCM-D50 + - SpinTunes + - Squier Super-Sonic + - Squier Venus + - Steinberger + - Steinberger Synapse + - Steinberger XP + - Synapse + - T-15 + - T-60 + - Tahquamenon Falls + - The Mandelbrot Set + - Today's the Day + - YouTube Video + - eBay + - mandolin + - ukulele + relme: + https://armstrong-collection.blogspot.com/: true + https://geeklikemetoo.blogspot.com/: true + https://geekversusguitar.blogspot.com/: true + https://hodgecast.blogspot.com/: true + https://pottscast.blogspot.com/: true + https://praisecurseandrecurse.blogspot.com/: true + https://thebooksthatwroteme.blogspot.com/: true + https://www.blogger.com/profile/04401509483200614806: true + last_post_title: SpinTunes 8 Round 4 Rankings and Reviews + last_post_description: 'So, the process is a little different for this round: the + finalists are ranked by popular vote and the vote of previous contestants. So + I''m off the hook, a bit, for trying to decide which song of the' + last_post_date: "2014-03-28T18:52:00Z" + last_post_link: https://geekversusguitar.blogspot.com/2014/03/spintunes-8-round-4-rankings-and-reviews.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 4b593a7e48ea23dc51a71b9c1647e200 + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c9196edfac96c22bf654453bd9f2ff6e.md b/content/discover/feed-c9196edfac96c22bf654453bd9f2ff6e.md new file mode 100644 index 000000000..ff68e5682 --- /dev/null +++ b/content/discover/feed-c9196edfac96c22bf654453bd9f2ff6e.md @@ -0,0 +1,44 @@ +--- +title: My Dummy Blog +date: "2024-02-20T11:45:50-08:00" +description: "" +params: + feedlink: https://dummywebsite.blogspot.com/feeds/posts/default + feedtype: atom + feedid: c9196edfac96c22bf654453bd9f2ff6e + websites: + https://dummywebsite.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://dummywebsite.blogspot.com/: true + https://eclipse-info.blogspot.com/: true + https://iosdribbles.blogspot.com/: true + https://mksamuel.blogspot.com/: true + https://www.blogger.com/profile/05191409900046165475: true + last_post_title: Blog 5 + last_post_description: "" + last_post_date: "2012-05-16T04:01:13-07:00" + last_post_link: https://dummywebsite.blogspot.com/2012/05/blog-5.html + last_post_categories: [] + last_post_language: "" + last_post_guid: fa777d6a89fa9480ff775996a71cb847 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c9448c1eeb49869607ed4ad335e0f153.md b/content/discover/feed-c9448c1eeb49869607ed4ad335e0f153.md deleted file mode 100644 index 0fa11dbfe..000000000 --- a/content/discover/feed-c9448c1eeb49869607ed4ad335e0f153.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Wouter -date: "1970-01-01T00:00:00Z" -description: Public posts from @jefklak@dosgame.club -params: - feedlink: https://dosgame.club/@jefklak.rss - feedtype: rss - feedid: c9448c1eeb49869607ed4ad335e0f153 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 6 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c957370fd4e65c9fad2c65452f2fe7cc.md b/content/discover/feed-c957370fd4e65c9fad2c65452f2fe7cc.md new file mode 100644 index 000000000..4c7d24928 --- /dev/null +++ b/content/discover/feed-c957370fd4e65c9fad2c65452f2fe7cc.md @@ -0,0 +1,41 @@ +--- +title: Careful with that axe, Eugene +date: "2024-06-29T00:49:50-05:00" +description: "" +params: + feedlink: https://ltspthinclient.blogspot.com/feeds/posts/default + feedtype: atom + feedid: c957370fd4e65c9fad2c65452f2fe7cc + websites: + https://ltspthinclient.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - documentation + relme: + https://ltspthinclient.blogspot.com/: true + last_post_title: xexit reaches 1.0. Thanks Juha + last_post_description: "" + last_post_date: "2011-03-29T12:29:00-05:00" + last_post_link: https://ltspthinclient.blogspot.com/2011/03/xexit-reaches-10-thanks-juha.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 53c67bbc985530d3037d11869ae4196a + score_criteria: + cats: 1 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 11 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c97684d1036e122ef0eaa74795629579.md b/content/discover/feed-c97684d1036e122ef0eaa74795629579.md new file mode 100644 index 000000000..a86eee868 --- /dev/null +++ b/content/discover/feed-c97684d1036e122ef0eaa74795629579.md @@ -0,0 +1,139 @@ +--- +title: Snapchat Vs OtherApp +date: "2024-03-05T15:42:10-08:00" +description: Snap chat is new age of life for youngster. +params: + feedlink: https://trendmicro-login.blogspot.com/feeds/posts/default + feedtype: atom + feedid: c97684d1036e122ef0eaa74795629579 + websites: + https://trendmicro-login.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - Snap chat is new age of life. + relme: + https://90to0100.blogspot.com/: true + https://123hpcomsetupme.blogspot.com/: true + https://7250radioscanning.blogspot.com/: true + https://aix-administration.blogspot.com/: true + https://antrenmanlarlamatematik.blogspot.com/: true + https://asianpsychiatry.blogspot.com/: true + https://astrofame.blogspot.com/: true + https://bisnislogerr.blogspot.com/: true + https://bluedayschile.blogspot.com/: true + https://bollywooddatabase.blogspot.com/: true + https://buzzbgoneus.blogspot.com/: true + https://caminheiro-mg.blogspot.com/: true + https://canhocaocapvincity.blogspot.com/: true + https://cintiatransexblog.blogspot.com/: true + https://cosmetics-my-live.blogspot.com/: true + https://cpffeedindicator.blogspot.com/: true + https://craftygalslife.blogspot.com/: true + https://daily-expert.blogspot.com/: true + https://dantonewac.blogspot.com/: true + https://darlanshop2.blogspot.com/: true + https://database-axio.blogspot.com/: true + https://deepsky28.blogspot.com/: true + https://dichvuquangcao247.blogspot.com/: true + https://elektronikcilerdunyasi.blogspot.com/: true + https://erisherondalebooks.blogspot.com/: true + https://escoladelideresaprendercomjesus.blogspot.com/: true + https://esirkalemler1.blogspot.com/: true + https://esy-kpdeksoterikou.blogspot.com/: true + https://ex-tremeways.blogspot.com/: true + https://fantasticoempernambuco.blogspot.com/: true + https://frontinformation.blogspot.com/: true + https://googletopplaystoreapps.blogspot.com/: true + https://goresan-pensilku.blogspot.com/: true + https://icbhprvlh.blogspot.com/: true + https://ihya-der.blogspot.com/: true + https://jovemazul.blogspot.com/: true + https://ka432.blogspot.com/: true + https://kedaiproton.blogspot.com/: true + https://kimsuyi.blogspot.com/: true + https://kingheraclious.blogspot.com/: true + https://lauramenendeztic.blogspot.com/: true + https://lgbtcomics.blogspot.com/: true + https://lineage700.blogspot.com/: true + https://livmciver.blogspot.com/: true + https://luisfranciscomacias.blogspot.com/: true + https://lumierefilms.blogspot.com/: true + https://meile-svajoti.blogspot.com/: true + https://memeig.blogspot.com/: true + https://memoryrefresh.blogspot.com/: true + https://miawb.blogspot.com/: true + https://microkinetours.blogspot.com/: true + https://mobincubeapps.blogspot.com/: true + https://mozaikharokahfpi.blogspot.com/: true + https://mulheresabias.blogspot.com/: true + https://newlookservice.blogspot.com/: true + https://nextlevelfood.blogspot.com/: true + https://nhungdieucanbietvevincity.blogspot.com/: true + https://noproblem44.blogspot.com/: true + https://oguzhanerenoffical.blogspot.com/: true + https://ongtotowap.blogspot.com/: true + https://ostseestempeln.blogspot.com/: true + https://palausolitaiplegamans.blogspot.com/: true + https://pasarnomorjitu.blogspot.com/: true + https://pdtotolink.blogspot.com/: true + https://penyelenggarasyariah.blogspot.com/: true + https://peraktotoalternatif.blogspot.com/: true + https://ponfeyesperanzaentuvida.blogspot.com/: true + https://posadzoneizjedzone.blogspot.com/: true + https://prettyartroom.blogspot.com/: true + https://professorajaneandrade.blogspot.com/: true + https://pusatbisnisproduk-starla.blogspot.com/: true + https://rajasthanroutestrails.blogspot.com/: true + https://rofessorajaneandrade.blogspot.com/: true + https://saibamais-tecnologia.blogspot.com/: true + https://seocobweb.blogspot.com/: true + https://shopeetotolinkbaru.blogspot.com/: true + https://shotcit.blogspot.com/: true + https://sinhalalovesms.blogspot.com/: true + https://skinsheavytruck.blogspot.com/: true + https://song-khoe-tu-thien-nhien.blogspot.com/: true + https://survivology101.blogspot.com/: true + https://taisaomuacanhovincity.blogspot.com/: true + https://terceroprimoderivera.blogspot.com/: true + https://thedigiezone.blogspot.com/: true + https://theinspiredquilter.blogspot.com/: true + https://tintacomdo.blogspot.com/: true + https://totonalawahid.blogspot.com/: true + https://trendmicro-login.blogspot.com/: true + https://unamareadilibri.blogspot.com/: true + https://uniquek5.blogspot.com/: true + https://uuuu270uuuu.blogspot.com/: true + https://viajeespiritu.blogspot.com/: true + https://viparaclatransfer.blogspot.com/: true + https://viviantarologa.blogspot.com/: true + https://webrootcomsafez.blogspot.com/: true + https://wezilwalraven.blogspot.com/: true + https://wisebohostory.blogspot.com/: true + https://www.blogger.com/profile/14364853037674421646: true + last_post_title: Snap chat Vs OtherApps + last_post_description: "" + last_post_date: "2021-04-23T13:09:34-07:00" + last_post_link: https://trendmicro-login.blogspot.com/2021/04/snap-chat-vs-otherapps.html + last_post_categories: + - Snap chat is new age of life. + last_post_language: "" + last_post_guid: be5cb3a5d5a015693e5c5d908d975340 + score_criteria: + cats: 1 + description: 3 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c982bf31ee5c3a0648d4706b381b5264.md b/content/discover/feed-c982bf31ee5c3a0648d4706b381b5264.md new file mode 100644 index 000000000..1a38f14e1 --- /dev/null +++ b/content/discover/feed-c982bf31ee5c3a0648d4706b381b5264.md @@ -0,0 +1,40 @@ +--- +title: My GSoC 2012 at jitsi.org +date: "2024-03-13T20:50:55-07:00" +description: "" +params: + feedlink: https://pawel-gsoc2012-jitsi-xmpp.blogspot.com/feeds/posts/default + feedtype: atom + feedid: c982bf31ee5c3a0648d4706b381b5264 + websites: + https://pawel-gsoc2012-jitsi-xmpp.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://pawel-gsoc2012-jitsi-xmpp.blogspot.com/: true + last_post_title: Work summary + last_post_description: "" + last_post_date: "2012-08-20T10:16:24-07:00" + last_post_link: https://pawel-gsoc2012-jitsi-xmpp.blogspot.com/2012/08/work-summary.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 39574d92ae22d2ee53a706a65c662287 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c98cb143e35f12e64e59c059e16391f8.md b/content/discover/feed-c98cb143e35f12e64e59c059e16391f8.md deleted file mode 100644 index 62120c76c..000000000 --- a/content/discover/feed-c98cb143e35f12e64e59c059e16391f8.md +++ /dev/null @@ -1,49 +0,0 @@ ---- -title: OpenStack Archive - Service Engineering (ICCLab & SPLab) -date: "1970-01-01T00:00:00Z" -description: A Blog of the ZHAW Zurich University of Applied Sciences -params: - feedlink: https://blog.zhaw.ch/icclab/category/articles/openstack-2/feed/ - feedtype: rss - feedid: c98cb143e35f12e64e59c059e16391f8 - websites: - https://blog.zhaw.ch/icclab/category/articles/openstack-2/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - '*.*' - - OpenStack - - Ansible - - kolla - - openstack - - upgrade - relme: {} - last_post_title: Experience using Kolla Ansible to upgrade Openstack from Ocata - to Queens - last_post_description: We made a decision to use Kolla-Ansible for Openstack management - approximately a year ago and we’ve just gone through the process of upgrading - from Ocata to Pike to Queens. Here we provide a few - last_post_date: "2018-07-27T13:54:26Z" - last_post_link: https://blog.zhaw.ch/icclab/experience-using-kolla-ansible-to-upgrade-openstack-from-ocata-to-queens/ - last_post_categories: - - '*.*' - - OpenStack - - Ansible - - kolla - - openstack - - upgrade - last_post_guid: 88b37e9626da9395e390497d7d757f4f - score_criteria: - cats: 0 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 11 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c991c4204d5aa641dd78241509671fb0.md b/content/discover/feed-c991c4204d5aa641dd78241509671fb0.md deleted file mode 100644 index 9b96e0ab0..000000000 --- a/content/discover/feed-c991c4204d5aa641dd78241509671fb0.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Michael Tsai -date: "1970-01-01T00:00:00Z" -description: Public posts from @mjtsai@mastodon.social -params: - feedlink: https://mastodon.social/@mjtsai.rss - feedtype: rss - feedid: c991c4204d5aa641dd78241509671fb0 - websites: - https://mastodon.social/@mjtsai: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://c-command.com/: false - https://mjtsai.com/blog/: true - https://twitter.com/mjtsai: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c99d5e3c7b65c3a719e27d22d9f1adc1.md b/content/discover/feed-c99d5e3c7b65c3a719e27d22d9f1adc1.md deleted file mode 100644 index 1dedc3ec9..000000000 --- a/content/discover/feed-c99d5e3c7b65c3a719e27d22d9f1adc1.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Aurae -date: "1970-01-01T00:00:00Z" -description: Public posts from @aurae@hachyderm.io -params: - feedlink: https://hachyderm.io/@aurae.rss - feedtype: rss - feedid: c99d5e3c7b65c3a719e27d22d9f1adc1 - websites: - https://hachyderm.io/@aurae: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://aurae.io/: false - https://community.hachyderm.io/approved: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c9ba54adb282af92bb785dcaac721895.md b/content/discover/feed-c9ba54adb282af92bb785dcaac721895.md index 483a30ab2..f772cab74 100644 --- a/content/discover/feed-c9ba54adb282af92bb785dcaac721895.md +++ b/content/discover/feed-c9ba54adb282af92bb785dcaac721895.md @@ -1,5 +1,5 @@ --- -title: VCP 2.0 +title: vladcampos.com date: "1970-01-01T00:00:00Z" description: IndieWeb, Fediverse, ActivityPub, and note-taking apps and devices, such as Evernote, Obsidian, and Supernote, are some of the topics you can expect to hear @@ -16,32 +16,37 @@ params: - https://indieweb.org/wiki/index.php?feed=atom&title=Special%3ARecentChanges - https://otavio.cc/feed.xml - https://www.manton.org/feed.xml - - https://www.manton.org/podcast.xml recommender: [] categories: - Society & Culture relme: https://github.com/vladcampos: true - https://micro.blog/vladcampos: false - https://twitter.com/vladcampos: false - last_post_title: 'VCP 5 - #Substack: is the honeymoon over?' - last_post_description: If someone is following you on Substack, there is no email - address, and if you want to switch services, you won’t be able to take the followers - with you. That’s not a newsletter. It’s social - last_post_date: "2024-05-02T13:55:12+01:00" - last_post_link: https://vladcampos.com/2024/05/02/vcp-substack-is.html + https://mastodon.social/@vladcampos: true + https://vladcampos.com/: true + last_post_title: 'VCP 6 - Voicenotes: The Inspiring Story & Future Plans (with: + Jijo Sunny)' + last_post_description: In this conversation, we explore the journey of Voicenotes, + from its inspiring origins to its exciting future. Jijo Sunny talks about his + journey and how Buy Me a Coffee and Voicenotes came about. As + last_post_date: "2024-06-14T18:32:03+01:00" + last_post_link: https://vladcampos.com/2024/06/14/vcp-voicenotes-the.html last_post_categories: [] - last_post_guid: 9b7ecb3b15f690297cb78e3be4e29317 + last_post_language: "" + last_post_guid: 58c56308fc0aeae92f0eb01ffc450b69 score_criteria: cats: 1 description: 3 + feedlangs: 1 postcats: 0 + posts: 3 promoted: 0 - promotes: 2 + promotes: 1 relme: 2 title: 3 website: 2 - score: 13 + score: 16 ispodcast: true isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-c9c5e6c3f0d6b4934a16719c0394dff2.md b/content/discover/feed-c9c5e6c3f0d6b4934a16719c0394dff2.md new file mode 100644 index 000000000..4462619c0 --- /dev/null +++ b/content/discover/feed-c9c5e6c3f0d6b4934a16719c0394dff2.md @@ -0,0 +1,48 @@ +--- +title: Librarian of Things +date: "1970-01-01T00:00:00Z" +description: Mita Williams. Her blog. +params: + feedlink: https://librarian.aedileworks.com/feed/ + feedtype: rss + feedid: c9c5e6c3f0d6b4934a16719c0394dff2 + websites: + https://librarian.aedileworks.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - llm + - notes + relme: + https://librarian.aedileworks.com/: true + https://social.coop/@copystar: true + https://www.uwindsor.ca/law/library/mita_williams_law_library: true + last_post_title: Collaborative Intelligence with Scholars Portal + last_post_description: Yesterday I had the honour to be part of the opening panel + of the first half of Scholars Portal Day 2024. Here's my introductory remarks + from that day. + last_post_date: "2024-05-02T17:44:23Z" + last_post_link: https://librarian.aedileworks.com/2024/05/02/collaborative-intelligence-with-scholars-portal/ + last_post_categories: + - llm + - notes + last_post_language: "" + last_post_guid: 10eed15c400ef0efda0f17fd9aecd55d + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 2 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: en +--- diff --git a/content/discover/feed-c9c7f16f8dcd48442cfbfe3c68e183d3.md b/content/discover/feed-c9c7f16f8dcd48442cfbfe3c68e183d3.md new file mode 100644 index 000000000..2c38ffd00 --- /dev/null +++ b/content/discover/feed-c9c7f16f8dcd48442cfbfe3c68e183d3.md @@ -0,0 +1,51 @@ +--- +title: From the Inside Looking In +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://fromtheinsidelookingin.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: c9c7f16f8dcd48442cfbfe3c68e183d3 + websites: + https://fromtheinsidelookingin.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - conference + - foss4g + - live dvd + - postgis + - pug + - speaking + - udig + relme: + https://fromtheinsidelookingin.blogspot.com/: true + https://www.blogger.com/profile/03665634055399186741: true + last_post_title: PostGIS in Action + last_post_description: As an enthusiastic user, advocate and sometimes even developer + on the PostGIS project, I'm always happy to see new material hit the market to + help curious newbies figure out where to start. Unlike + last_post_date: "2010-05-08T03:39:00Z" + last_post_link: https://fromtheinsidelookingin.blogspot.com/2010/05/postgis-in-action.html + last_post_categories: + - postgis + last_post_language: "" + last_post_guid: 5bd734403478345fa230357e15b4fce8 + score_criteria: + cats: 5 + description: 0 + feedlangs: 0 + postcats: 1 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 16 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-c9e788bda207a4c96e023ca18191fa30.md b/content/discover/feed-c9e788bda207a4c96e023ca18191fa30.md deleted file mode 100644 index 5b2c857f1..000000000 --- a/content/discover/feed-c9e788bda207a4c96e023ca18191fa30.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Comments for Techno Delight -date: "1970-01-01T00:00:00Z" -description: Keep Learning and Sharing -params: - feedlink: https://shaifaliagrawal.wordpress.com/comments/feed/ - feedtype: rss - feedid: c9e788bda207a4c96e023ca18191fa30 - websites: - https://shaifaliagrawal.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Switch on to OpenStack :) by bilurkar_namrata - last_post_description: |- - In reply to exploreshaifali. - - Thanks Shaifali, will do. :) - last_post_date: "2015-10-12T07:32:20Z" - last_post_link: https://shaifaliagrawal.wordpress.com/2014/11/16/switch-on-to-openstack/comment-page-1/#comment-21 - last_post_categories: [] - last_post_guid: f6bb49fb9683bb6e090fea468ffdc382 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-c9e8902a3f10185d38bcf0108d60d055.md b/content/discover/feed-c9e8902a3f10185d38bcf0108d60d055.md deleted file mode 100644 index 061510cbb..000000000 --- a/content/discover/feed-c9e8902a3f10185d38bcf0108d60d055.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Linux Kernel Podcast -date: "1970-01-01T00:00:00Z" -description: A periodic summary of Linux Kernel Development -params: - feedlink: https://kernelpodcast.org/feed/podcast/linux-kernel-podcast/ - feedtype: rss - feedid: c9e8902a3f10185d38bcf0108d60d055 - websites: {} - blogrolls: [] - recommended: [] - recommender: [] - categories: - - Technology - relme: {} - last_post_title: Kernel Podcast S2E1 – 2023/01/21 - last_post_description: The Linux "Kernel Podcast" returns from a long hiatus for - a new "season 2". Our host Jon Masters introduces the new season, and summarizes - recent happenings during Linux 6.2 development. - last_post_date: "2023-01-22T09:11:00Z" - last_post_link: https://kernelpodcast.org/podcast/kernel-podcast-s2e1-2023-01-21/ - last_post_categories: [] - last_post_guid: c47c5c9f17f858682dee2d1b660c88a9 - score_criteria: - cats: 1 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 0 - score: 7 - ispodcast: true - isnoarchive: false ---- diff --git a/content/discover/feed-c9f8ad27efb347abc1ae0f783dd4c851.md b/content/discover/feed-c9f8ad27efb347abc1ae0f783dd4c851.md deleted file mode 100644 index 529bfd736..000000000 --- a/content/discover/feed-c9f8ad27efb347abc1ae0f783dd4c851.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: ALAN'S LIST of POLYAMORY EVENTS -date: "2024-06-03T13:37:52-04:00" -description: Poly cons, retreats and other gatherings — regional, national and international -params: - feedlink: https://polyevents.blogspot.com/feeds/posts/default - feedtype: atom - feedid: c9f8ad27efb347abc1ae0f783dd4c851 - websites: - https://polyevents.blogspot.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: - - '#ENMconventions' - - '#PolyConventions' - - '#polyamoryevents' - - '#polycons' - - '#polyevents' - - poly con - - poly events - - poly groups - - polyamory - - polyamory conference - - polyamory convention - - polyamory event - relme: - https://www.blogger.com/profile/16008171792811719945: true - last_post_title: Upcoming Polyamory Events,next 12 months - last_post_description: "Any I missed?  Fixes needed?\n \n \n Write - me at  alan7388 (at) gmail.com\n \n \n —Alan M.,  Polyamory - in the News\n \n \n \n " - last_post_date: "2024-06-03T09:07:05-04:00" - last_post_link: https://polyevents.blogspot.com/2014/08/upcoming-events.html - last_post_categories: - - '#ENMconventions' - - '#polyamoryevents' - - '#polycons' - - '#PolyConventions' - - '#polyevents' - - poly con - - poly events - - poly groups - - polyamory - - polyamory conference - - polyamory convention - - polyamory event - last_post_guid: 0a5e3bcdece705ecd00154aaeebe09b3 - score_criteria: - cats: 5 - description: 3 - postcats: 3 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 18 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ca0021dd7f6b0fdae3d057834140c891.md b/content/discover/feed-ca0021dd7f6b0fdae3d057834140c891.md new file mode 100644 index 000000000..769c6ef18 --- /dev/null +++ b/content/discover/feed-ca0021dd7f6b0fdae3d057834140c891.md @@ -0,0 +1,44 @@ +--- +title: Leitura Espírita +date: "1970-01-01T00:00:00Z" +description: O espiritismo é mais que uma religião; é uma doutrina que procura conciliar + a evolução espiritual e científica da humanidade de uma forma lógica e consistente. + O estudo do espiritismo permite +params: + feedlink: https://leituraespirita.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: ca0021dd7f6b0fdae3d057834140c891 + websites: + https://leituraespirita.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://leituraespirita.blogspot.com/: true + last_post_title: Cano enferrujado + last_post_description: Cuidado com canos enferrujados.A ferrugem se acumula lentamente + dentro de canos antigos, de ferro, e vai bloqueando o fluxo de água. Chega uma + hora em que não passa mais nada. É hora de fazer uma + last_post_date: "2007-12-19T00:30:00Z" + last_post_link: https://leituraespirita.blogspot.com/2007/12/cano-enferrujado.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 2109983d8de89b70294f727c85adc5db + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-ca40607906e823e3b6947050899ef992.md b/content/discover/feed-ca40607906e823e3b6947050899ef992.md new file mode 100644 index 000000000..e1ef57b95 --- /dev/null +++ b/content/discover/feed-ca40607906e823e3b6947050899ef992.md @@ -0,0 +1,226 @@ +--- +title: Its Eclipse in Clips ... +date: "2024-07-08T02:50:58-07:00" +description: This blog site is a symbol of our Passion towards Eclipse and a contribution + to the Eclipse Community ... Eclipse Team, ANCiT Consulting +params: + feedlink: https://eclipseo.blogspot.com/feeds/posts/default + feedtype: atom + feedid: ca40607906e823e3b6947050899ef992 + websites: + https://eclipseo.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - ANT + - ActionSet + - Activator + - Adding Palette Item's In GEF... + - Background Image To GEF Editor + - Build + - Code Generator + - Code RasPIde + - Code to print your Gef Editor + - Command + - Commit Information + - Community Meeting + - Connection in GEF + - ConnectionEndpointLocator + - ContentPane + - Control Decoration + - Custom splash screen templates… + - Decoration + - Demo Camp + - DemoCamp + - DemoCamp09 + - Deploy and Configuration Tool + - Developing RAP Application + - DirectEditing label + - Document Partitioning in TextEditor + - E-Core + - E-Core Properties + - E-Core Properties Unleashed + - ECP + - EMF + - EMF Compare + - EMF Forms + - EMF Validation + - Eclipse + - Eclipse Con + - Eclipse Conference + - Eclipse Day + - Eclipse Demo + - Eclipse Demo Camp + - Eclipse Developer Camp + - Eclipse Editors + - Eclipse Event + - Eclipse Forum India 2008 + - Eclipse GEF + - Eclipse IDE + - Eclipse India Summit + - Eclipse PDE + - Eclipse Plugin Developer + - Eclipse Summit + - Eclipse Training + - Eclipse UI + - Eclipse Utility + - Eclipse jobs + - Eclipsw Day + - Ecore + - Edapt + - Europe + - Extension Point + - FTP + - Field Decoration + - Forking + - Form Editor + - Form UI + - GEF + - GEF Editor Image + - GEF... + - GMF + - Ganymede + - Git + - Git Repositories View + - Github + - Glossary + - Google Search + - Graphical Editor + - Graphiti + - Horizontal to Vertical + - IRC Chat + - Image Registry + - Installing And developing RAP Application + - Installing RAP Application + - IoT + - ItemProviders + - JUnit + - JUnit Programmatically + - Jenkins + - Jobs + - Juno + - Key Binding + - M2M Tools + - Makes Label to Grow Vertically + - Maven + - Maven Tycho Integration + - Mavon + - MidpointLocator + - Model Comparison + - Model Migration + - Model Validation + - Modelling + - Modelling Training + - Multiple ContentPane + - OSGI + - OSGI Server + - PDE + - PDE Build + - PDE TEST + - PI4J + - PROP_DIRTY + - Perspective Customisation + - Plugin + - PreferencePage + - PreferenceStore + - Principles of Eclipse + - Print Gef Editor + - Print your Gef Editor + - Public Classroom + - PullRequest + - PullRequest utility + - RAP Application + - RCP + - RCP Training + - Raspberry PI + - Remote System Explorer + - Removing Actions from Perspective + - Rules of Eclipse + - Run JUnit Programmatically + - SWT + - SWTBOT + - Scroll Panel + - Scroll Panel on Compartment Figure + - Section Creation + - Selection Provider + - Selection Service + - Setting Background Image + - Setting text to the Section + - Sirius + - Spell Check + - Sphinx + - State Persistence + - TableViewer + - Telnet + - Template Feature In Ganymede Edition... + - Terms + - Testing Eclipse Plugins + - TextHover... + - Tips & Tricks + - Toolbar to the Section + - Training + - Tycho + - UI Context + - UI Tester + - Validation + - View + - Visualisation + - Whats New + - Workshop + - Workspace related + - Zest + - ancit + - ancitconsulting + - camp + - connection without overlap in gef + - e4 training + - eGit + - eGit-Extensions + - ecore properties + - github mylyn connector + - github utils + - horizontal and vertical scrolling + - horizontal scrolling + - i18n + - java + - label Grow Vertically + - label to Connection Line + - org.eclipse.ui.preferencePages + - plugins + - translator + - unoverlap connection in gef + - unoverlap figures in gef + - vertical scrolling + relme: + https://eclipseo.blogspot.com/: true + https://meomalai.blogspot.com/: true + https://quickfix-bpm.blogspot.com/: true + https://www.blogger.com/profile/04319454473329758815: true + last_post_title: Eclipse Summit India 2016 @ Bangalore + last_post_description: "" + last_post_date: "2016-06-03T21:47:44-07:00" + last_post_link: https://eclipseo.blogspot.com/2016/06/eclipse-summit-india-2016-bangalore.html + last_post_categories: + - Eclipse Conference + - Eclipse Day + - Eclipse Summit + last_post_language: "" + last_post_guid: eb0a985bb479973ee823e00f24caa53a + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 3 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 21 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-ca47aa780dfa9f77ff3dfaec35d854d1.md b/content/discover/feed-ca47aa780dfa9f77ff3dfaec35d854d1.md deleted file mode 100644 index 372fb06f1..000000000 --- a/content/discover/feed-ca47aa780dfa9f77ff3dfaec35d854d1.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: 'Alwyn Soh :sgflag:' -date: "1970-01-01T00:00:00Z" -description: Public posts from @alwynispat@mastodon.sg -params: - feedlink: https://mastodon.sg/@alwynispat.rss - feedtype: rss - feedid: ca47aa780dfa9f77ff3dfaec35d854d1 - websites: - https://mastodon.sg/@alwynispat: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://ko-fi.com/alwynsoh: false - https://sohwatt.com/alwyn: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ca61ce53dea0448e905453ec271a74a3.md b/content/discover/feed-ca61ce53dea0448e905453ec271a74a3.md deleted file mode 100644 index 311da87da..000000000 --- a/content/discover/feed-ca61ce53dea0448e905453ec271a74a3.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Comments for Collider Blog -date: "1970-01-01T00:00:00Z" -description: Commentary on Research at the Tevatron and the LHC -params: - feedlink: https://muon.wordpress.com/comments/feed/ - feedtype: rss - feedid: ca61ce53dea0448e905453ec271a74a3 - websites: - https://muon.wordpress.com/: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: {} - last_post_title: Comment on Yes ! Discovery of a Higgs boson !! by Alex Giaco - last_post_description: This is a great ppost - last_post_date: "2024-05-22T18:52:16Z" - last_post_link: https://muon.wordpress.com/2012/07/04/yes-discovery-of-a-higgs-boson/#comment-13142 - last_post_categories: [] - last_post_guid: dbfeb78e42a3c66a11ccf966426af509 - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 0 - title: 3 - website: 2 - score: 8 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ca7201e4aee96a8deaf229511950ed08.md b/content/discover/feed-ca7201e4aee96a8deaf229511950ed08.md deleted file mode 100644 index 468aa7243..000000000 --- a/content/discover/feed-ca7201e4aee96a8deaf229511950ed08.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Jurre || DrWhax -date: "1970-01-01T00:00:00Z" -description: Public posts from @drwhax@infosec.exchange -params: - feedlink: https://infosec.exchange/@drwhax.rss - feedtype: rss - feedid: ca7201e4aee96a8deaf229511950ed08 - websites: - https://infosec.exchange/@drwhax: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://hviv.nl/: false - https://jurrevanbergen.nl/: false - https://securitylab.amnesty.org/: false - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 1 - title: 3 - website: 2 - score: 9 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ca7b50a82501c97c622870f344e548bc.md b/content/discover/feed-ca7b50a82501c97c622870f344e548bc.md index b39dc1f76..ca860f11f 100644 --- a/content/discover/feed-ca7b50a82501c97c622870f344e548bc.md +++ b/content/discover/feed-ca7b50a82501c97c622870f344e548bc.md @@ -11,14 +11,10 @@ params: blogrolls: [] recommended: [] recommender: - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ categories: - Uncategorized relme: {} @@ -30,17 +26,22 @@ params: last_post_link: https://fleeblewidget.co.uk/2024/05/the-magic-words/ last_post_categories: - Uncategorized + last_post_language: "" last_post_guid: 3899dbb0d82af6e34afd52fc876ab7bd score_criteria: cats: 0 description: 3 + feedlangs: 1 postcats: 1 + posts: 3 promoted: 5 promotes: 0 relme: 0 title: 3 website: 2 - score: 14 + score: 18 ispodcast: false isnoarchive: false + innetwork: true + language: en --- diff --git a/content/discover/feed-ca7e19f14a59084e4d524081bc618a39.md b/content/discover/feed-ca7e19f14a59084e4d524081bc618a39.md deleted file mode 100644 index 1662d50f4..000000000 --- a/content/discover/feed-ca7e19f14a59084e4d524081bc618a39.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Will Boyd -date: "1970-01-01T00:00:00Z" -description: Public posts from @lonekorean@front-end.social -params: - feedlink: https://front-end.social/@lonekorean.rss - feedtype: rss - feedid: ca7e19f14a59084e4d524081bc618a39 - websites: - https://front-end.social/@lonekorean: true - blogrolls: [] - recommended: [] - recommender: [] - categories: [] - relme: - https://codepen.io/lonekorean: false - https://codersblock.com/: true - https://github.com/lonekorean: true - last_post_title: "" - last_post_description: "" - last_post_date: "" - last_post_link: "" - last_post_categories: [] - last_post_guid: "" - score_criteria: - cats: 0 - description: 3 - postcats: 0 - promoted: 0 - promotes: 0 - relme: 2 - title: 3 - website: 2 - score: 10 - ispodcast: false - isnoarchive: false ---- diff --git a/content/discover/feed-ca8c1db955b9f07d7168bbf68caf3ed2.md b/content/discover/feed-ca8c1db955b9f07d7168bbf68caf3ed2.md new file mode 100644 index 000000000..841165f38 --- /dev/null +++ b/content/discover/feed-ca8c1db955b9f07d7168bbf68caf3ed2.md @@ -0,0 +1,128 @@ +--- +title: /dev/loki +date: "1970-01-01T00:00:00Z" +description: openSUSE, Linux, RPM/packaging, development (Java, C++, PHP, ..) or whatever +params: + feedlink: https://dev-loki.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: ca8c1db955b9f07d7168bbf68caf3ed2 + websites: + https://dev-loki.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: + - EU + - FOSS + - NX + - amarok + - attachmate + - bash + - blender + - board + - collectd + - community + - conference + - deluge + - democracyplayer + - design + - eclipse + - ecology + - ecosia + - elections + - enigmail + - fonts + - fosdem + - freshmeat.net + - froscon + - gaim + - gnome + - groklaw + - hermes + - howto + - irc + - irssi + - java + - jetty + - kde + - life + - linux + - lxde + - meeting + - miro + - mono + - mplayer + - mysql + - novell + - openjdk + - opensource + - opensuse + - opensuse build service + - opensuse conference + - opensuse-community + - oracle + - osc + - packaging + - packman + - perl + - personal + - petition + - php + - pidgin + - planetsuse + - planning + - politics + - postgresql + - python + - rpm + - rtorrent + - screen + - search + - security + - sed + - smart + - smplayer + - softwareportal + - solr + - sudo + - swpats + - sysstat + - thomas + - thunderbird + - twitter + - vnc + - vnstat + - webpin + - wicket + - workshop + - wwf + - zypper + relme: + https://dev-loki.blogspot.com/: true + https://www.blogger.com/profile/15179032995691105618: true + last_post_title: Speaking of Packman mirrors... + last_post_description: Speaking of Packman mirrors... we're in a pretty sorry state + regarding that so if you're aware of sites that do mirror Packman but never told + us (I'm aware of the one at yandex.ru, have to get it on + last_post_date: "2012-05-06T00:59:00Z" + last_post_link: https://dev-loki.blogspot.com/2012/05/speaking-of-packman-mirrors.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 4b313522bcc1f66b4ecbfd9338d5986a + score_criteria: + cats: 5 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 18 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-caa8dece7ae40b0ed198d88e53bfe534.md b/content/discover/feed-caa8dece7ae40b0ed198d88e53bfe534.md new file mode 100644 index 000000000..2aa5f12a5 --- /dev/null +++ b/content/discover/feed-caa8dece7ae40b0ed198d88e53bfe534.md @@ -0,0 +1,42 @@ +--- +title: Paulo Henrique Rodrigues Pinheiro +date: "1970-01-01T00:00:00Z" +description: Blog sobre programação para programadores +params: + feedlink: https://paulohrpinheiro.xyz/feed.xml + feedtype: rss + feedid: caa8dece7ae40b0ed198d88e53bfe534 + websites: + https://paulohrpinheiro.xyz/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://bolha.us/@paulohrpinheiro: true + https://paulohrpinheiro.xyz/: true + last_post_title: Refatoração do repositório genart + last_post_description: Gerando imagens legais, ou arte generativa com uma fórmula + simples em Go (Golang) - a refatoração + last_post_date: "2024-02-04T00:00:00Z" + last_post_link: https://paulohrpinheiro.xyz/texts/go/2024-02-04-refatoracao-do-repositorio-genart.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 0c4d43486a3c1889bafc3e0ebc8f352e + score_criteria: + cats: 0 + description: 3 + feedlangs: 1 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 14 + ispodcast: false + isnoarchive: false + innetwork: true + language: pt +--- diff --git a/content/discover/feed-caa9be4c543fba44bcb7b87c984da0c5.md b/content/discover/feed-caa9be4c543fba44bcb7b87c984da0c5.md new file mode 100644 index 000000000..6fd47381c --- /dev/null +++ b/content/discover/feed-caa9be4c543fba44bcb7b87c984da0c5.md @@ -0,0 +1,40 @@ +--- +title: Cozinheiro de Domingo +date: "2024-02-08T10:13:00-04:00" +description: Experiências culinárias para os domingos em família. +params: + feedlink: https://cozinheiro-de-domingo.blogspot.com/feeds/posts/default + feedtype: atom + feedid: caa9be4c543fba44bcb7b87c984da0c5 + websites: + https://cozinheiro-de-domingo.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://cozinheiro-de-domingo.blogspot.com/: true + last_post_title: Torta de bacalhau + last_post_description: "" + last_post_date: "2006-10-28T13:41:23-04:00" + last_post_link: https://cozinheiro-de-domingo.blogspot.com/2006/10/torta-de-bacalhau.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 5fee4ed029f227440d11f94ac510ee73 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-cacaddc8702ee57ee6296639e416538a.md b/content/discover/feed-cacaddc8702ee57ee6296639e416538a.md new file mode 100644 index 000000000..85234ff40 --- /dev/null +++ b/content/discover/feed-cacaddc8702ee57ee6296639e416538a.md @@ -0,0 +1,42 @@ +--- +title: Ana Rodrigues +date: "2014-06-02T00:00:00Z" +description: A personal blog from Ana Rodrigues. +params: + feedlink: https://ohhelloana.blog/feed.xml + feedtype: atom + feedid: cacaddc8702ee57ee6296639e416538a + websites: + https://ohhelloana.blog/: false + blogrolls: [] + recommended: [] + recommender: + - https://joeross.me/feed.xml + - https://www.manton.org/feed.xml + - https://www.manton.org/podcast.xml + categories: [] + relme: {} + last_post_title: I want it all but, it is impossible + last_post_description: "" + last_post_date: "2024-05-09T00:00:00Z" + last_post_link: https://ohhelloana.blog/i-want-it-all/ + last_post_categories: [] + last_post_language: "" + last_post_guid: af65abd3fd571b7a5dd5b6f86fbab464 + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 5 + promotes: 0 + relme: 0 + title: 3 + website: 1 + score: 15 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-caec556a37541bbd7e010b067c4cc23a.md b/content/discover/feed-caec556a37541bbd7e010b067c4cc23a.md new file mode 100644 index 000000000..d4a3976fe --- /dev/null +++ b/content/discover/feed-caec556a37541bbd7e010b067c4cc23a.md @@ -0,0 +1,42 @@ +--- +title: Dweller of the Forbidden City +date: "1970-01-01T00:00:00Z" +description: "" +params: + feedlink: https://dwelleroftheforbiddencity.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: caec556a37541bbd7e010b067c4cc23a + websites: + https://dwelleroftheforbiddencity.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://dwelleroftheforbiddencity.blogspot.com/: true + last_post_title: Sova + last_post_description: Artstation - https://www.artstation.com/vyacheslav_safronovBhakashal + has it’s version of the 1e AD&D bard, like the AD&D version, it is a triple class + PC, that passes through levels of mercenary + last_post_date: "2023-06-26T02:57:00Z" + last_post_link: https://dwelleroftheforbiddencity.blogspot.com/2023/06/building-bhakashal-sova-art-by.html + last_post_categories: [] + last_post_language: "" + last_post_guid: af82ef9b25ae7184bd6ee1bd78ec5d35 + score_criteria: + cats: 0 + description: 0 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 10 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-caf399cf6ca4f4de45dd51a7db82b95f.md b/content/discover/feed-caf399cf6ca4f4de45dd51a7db82b95f.md new file mode 100644 index 000000000..971e445f7 --- /dev/null +++ b/content/discover/feed-caf399cf6ca4f4de45dd51a7db82b95f.md @@ -0,0 +1,48 @@ +--- +title: Fantasy in Light and Shadow +date: "1970-01-01T00:00:00Z" +description: A journal where I can write down my photography and photoshop discoveries + so I do not forget them. Hopefully you can learn something useful from it too! +params: + feedlink: https://alchymiastudio.blogspot.com/feeds/posts/default?alt=rss + feedtype: rss + feedid: caf399cf6ca4f4de45dd51a7db82b95f + websites: + https://alchymiastudio.blogspot.com/: true + blogrolls: [] + recommended: [] + recommender: [] + categories: [] + relme: + https://alchymiastudio.blogspot.com/: true + https://happstack.blogspot.com/: true + https://learnhaskell.blogspot.com/: true + https://musictheoryforeveryone.blogspot.com/: true + https://nhlab.blogspot.com/: true + https://www.blogger.com/profile/18373967098081701148: true + last_post_title: Photography and Photoshop Journal + last_post_description: I keep forgetting the stuff I have figured out about photography + and photoshop, and so I keep making the same discoveries over and over. So, I + have decided to try keeping a journal, so I can look + last_post_date: "2006-06-11T19:54:00Z" + last_post_link: https://alchymiastudio.blogspot.com/2006/06/photography-and-photoshop-journal.html + last_post_categories: [] + last_post_language: "" + last_post_guid: 75ffca99a8c0c0b91b11d51beb3a446e + score_criteria: + cats: 0 + description: 3 + feedlangs: 0 + postcats: 0 + posts: 3 + promoted: 0 + promotes: 0 + relme: 2 + title: 3 + website: 2 + score: 13 + ispodcast: false + isnoarchive: false + innetwork: true + language: "" +--- diff --git a/content/discover/feed-cafd89527c1201366e267728a12be603.md b/content/discover/feed-cafd89527c1201366e267728a12be603.md index 493a8cc36..db0df0cf8 100644 --- a/content/discover/feed-cafd89527c1201366e267728a12be603.md +++ b/content/discover/feed-cafd89527c1201366e267728a12be603.md @@ -8,7 +8,6 @@ params: feedid: cafd89527c1201366e267728a12be603 websites: https://blog.jim-nielsen.com/: true - https://jim-nielsen.com/: false https://www.jim-nielsen.com/: false blogrolls: [] recommended: [] @@ -16,41 +15,40 @@ params: - https://alexsci.com/blog/rss.xml - https://colinwalker.blog/dailyfeed.xml - https://colinwalker.blog/livefeed.xml - - https://danq.blog/comments/feed/ - - https://danq.blog/feed/ - https://danq.me/comments/feed/ - https://danq.me/feed/ - https://danq.me/kind/article/feed/ - https://danq.me/kind/note/feed/ - - https://danq.uk/comments/feed/ - - https://danq.uk/feed/ - - https://hacdias.com/feed.xml - https://visitmy.website/feed.xml categories: [] relme: - https://dribbble.com/jimniels: false - https://github.com/jimniels: false + https://blog.jim-nielsen.com/: true https://mastodon.social/@jimniels: true - https://twitter.com/jimniels: false - last_post_title: “Just” One Line - last_post_description: |- - From Jeremy Keith’s piece “Responsibility”: - - Dropping in one line of JavaScript seems like a victimless crime. It’s just one small script, right? But JavaScript can import more JavaScript - last_post_date: "2024-06-03T19:00:00Z" - last_post_link: https://blog.jim-nielsen.com/2024/just-one-line/ + https://notes.jim-nielsen.com/: true + https://www.jim-nielsen.com/: true + last_post_title: All About That Button, ’Bout That Button + last_post_description: "In modern SPAs it’s common to immediately escape baked-in + browser behaviors. For example, using +

+ + +
+ + + + + +  -  + + + +
+
+

news items.

+

Powered by RSS.Style

+ + + + + + diff --git a/structs.go b/structs.go index e45c459ef..199eef3d8 100644 --- a/structs.go +++ b/structs.go @@ -27,17 +27,20 @@ type FeedInfoParams struct { LastPostDate string `yaml:"last_post_date"` LastPostLink string `yaml:"last_post_link"` LastPostCategories []string `yaml:"last_post_categories"` + LastPostLanguage string `yaml:"last_post_language"` LastPostGuid string `yaml:"last_post_guid"` ScoreCriteria map[string]int `yaml:"score_criteria"` Score int `yaml:"score"` IsPodcast bool `yaml:"ispodcast"` IsNoarchive bool `yaml:"isnoarchive"` + InNetwork bool `yaml:"innetwork"` + Language string `yaml:"language"` } -func NewFeedInfo(row ScanFeedInfo) *FeedInfo { +func NewFeedInfo(row Feed) *FeedInfo { p := FeedInfoParams{ FeedLink: row.FeedLink, - FeedID: row.FeedID, + FeedID: row.FeedId, FeedType: row.FeedType, Websites: map[string]bool{}, RelMe: map[string]bool{}, @@ -79,12 +82,12 @@ type ScanFeedInfo struct { IsNoarchive bool } -type Link struct { - SourceType int64 - SourceURL string - DestinationType int64 - DestinationURL string -} +//type Link struct { +// SourceType int64 +// SourceURL string +// DestinationType int64 +// DestinationURL string +//} type LinkOnly struct { Link string @@ -94,3 +97,14 @@ type TypedLink struct { Type int64 Link string } + +type RelMeClusterInfo struct { + Title string `yaml:"title"` + Params RelMeClusterParams `yaml:"params"` +} + +type RelMeClusterParams struct { + VerifiedWebsites []string `yaml:"verifiedWebsites"` + UnverifiedWebsites []string `yaml:"unverifiedWebsites"` + Feeds map[string]FeedInfo `yaml:"feeds"` +} diff --git a/utils.go b/utils.go index db0682089..a1bf96dde 100644 --- a/utils.go +++ b/utils.go @@ -9,17 +9,3 @@ func ohno(err error) { panic(fmt.Sprintf("%v", err)) } } - -func min(a, b int) int { - if a < b { - return a - } - return b -} - -func max(a, b int) int { - if a > b { - return a - } - return b -} diff --git a/visualize.go b/visualize.go index ce67e317d..e9e233d42 100644 --- a/visualize.go +++ b/visualize.go @@ -13,7 +13,7 @@ type VisualData struct { type VizNode struct { ID string `json:"id"` - Group int64 `json:"group"` + Group int `json:"group"` } type VizLink struct { @@ -24,31 +24,19 @@ type VizLink struct { func (a *Analysis) Visualize() { viz := VisualData{} - nodes := map[string]int64{} - linkRows, err := a.db.Query(` - SELECT source_url, source_type, destination_url, destination_type - FROM links;`, - ) - ohno(err) - for linkRows.Next() { - var sourceUrl string - var sourceType int64 - var destinationUrl string - var destinationType int64 - err = linkRows.Scan( - &sourceUrl, - &sourceType, - &destinationUrl, - &destinationType, - ) - ohno(err) + nodes := map[string]int{} + + rows := []Link{} + result := a.db.Find(&rows) + ohno(result.Error) + for _, row := range rows { viz.Links = append(viz.Links, VizLink{ - Source: sourceUrl, - Destination: destinationUrl, + Source: row.SourceUrl, + Destination: row.DestinationUrl, }) - nodes[sourceUrl] = sourceType - nodes[destinationUrl] = destinationType + nodes[row.SourceUrl] = row.SourceType + nodes[row.DestinationUrl] = row.DestinationType } for node, nodeType := range nodes {